test 1.83 KB
Newer Older
Enrico Pozzobon committed
1 2 3 4
#!/usr/bin/env python3

import os
import sys
5
import pylink
6
import serial.tools.list_ports
7 8
from test_common import (
    DeviceUnderTestAeadUARTP,
lwc-tester committed
9
    eprint,
10
    FileMutex,
lwc-tester committed
11
    run_nist_lws_aead_test,
12
)
Enrico Pozzobon committed
13 14


15 16 17 18 19
def get_serial():
    ports = serial.tools.list_ports.comports()
    devices = [
        p.device
        for p in ports
lwc-tester committed
20
        if p.serial_number == '00000000'
21 22 23 24 25 26
    ]
    devices.sort()
    return serial.Serial(
        devices[0],
        baudrate=115200,
        timeout=5)
27 28


29 30
class F7(DeviceUnderTestAeadUARTP):
    RAM_SIZE = 0x50000
lwc-tester committed
31

32 33 34 35 36 37 38
    def __init__(self, build_dir):
        DeviceUnderTestAeadUARTP.__init__(self)

        self.uart_device = get_serial()
        devname = os.path.basename(self.uart_device)
        self.lock = FileMutex('/var/lock/lwc-compare.%s.lock' % devname)
        self.build_dir = build_dir
lwc-tester committed
39
        self.template_path = os.path.dirname(sys.argv[0])
40

41 42
        self.jlink = pylink.JLink()
        self.jlink.open(779340002)
43

lwc-tester committed
44 45 46 47
        self.firmware_path = os.path.join(
            build_dir, 'f7.bin')
        self.ram_pattern_path = os.path.join(
            self.template_path, 'ram_pattern.bin')
48

49 50 51
    def flash(self):
        jlink = self.jlink
        jlink.connect('STM32F746ZG')
lwc-tester committed
52 53 54 55
        jlink.flash_file(self.firmware_path, 0x8000000)
        eprint("Firmware flashed.")
        jlink.flash_file(self.ram_pattern_path, 0x20000000)
        eprint("RAM flashed.")
56 57
        jlink.reset()
        jlink.restart()
58

59 60 61
    def dump_ram(self):
        jlink = self.jlink
        return bytes(jlink.memory_read8(0x20000000, F7.RAM_SIZE))
62

Enrico Pozzobon committed
63

64
def main(argv):
lwc-tester committed
65 66
    if len(argv) != 2:
        print("Usage: test build_dir")
67
        return 1
Enrico Pozzobon committed
68

lwc-tester committed
69 70 71 72
    build_dir = argv[1]
    kat_path = os.path.join(build_dir, 'LWC_AEAD_KAT.txt')

    run_nist_lws_aead_test(kat_path, build_dir, 0x0008, F7)
lwc-tester committed
73
    return 0
Enrico Pozzobon committed
74 75 76 77


if __name__ == "__main__":
    sys.exit(main(sys.argv))