test.py 3.03 KB
Newer Older
1 2 3 4
#!/usr/bin/env python3

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


15 16 17 18 19 20 21 22
def get_serial():
    ports = serial.tools.list_ports.comports()
    devices = [
        p.device
        for p in ports
        if p.serial_number == 'FT2XCRZ1'
    ]
    devices.sort()
Enrico Pozzobon committed
23
    eprint("Serial port for STM32F1 is %s" % devices[0])
lwc-tester committed
24
    return devices[0]
25 26


Enrico Pozzobon committed
27
class STM32F1(DeviceUnderTestAeadUARTP):
28 29 30
    RAM_SIZE = 0x5000

    def __init__(self, build_dir):
lwc-tester committed
31 32
        DeviceUnderTestAeadUARTP.__init__(self)

33 34 35 36
        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
37
        self.template_path = os.path.dirname(sys.argv[0])
38 39

        self.firmware_path = os.path.join(
lwc-tester committed
40
            build_dir, 'firmware.elf')
41 42
        self.firmware_bin_path = os.path.join(
            build_dir, 'firmware.bin')
43
        self.ram_pattern_path = os.path.join(
lwc-tester committed
44
            self.template_path, 'empty_ram.bin')
45 46 47
        self.ram_dump_path = os.path.join(
            build_dir, 'ram_dump.bin')
        self.openocd_cfg_path = os.path.join(
lwc-tester committed
48
            self.template_path, 'openocd.cfg')
49

lwc-tester committed
50 51
        self.ocd = OpenOcd(self.openocd_cfg_path)

52 53 54 55 56
        self.ser = serial.Serial(
            self.uart_device,
            baudrate=115200,
            timeout=5)

57 58 59
    def firmware_size(self):
        return os.stat(self.firmware_bin_path).st_size

60
    def flash(self):
lwc-tester committed
61 62 63 64
        ocd_cmd = 'program %s verify reset' % self.firmware_path
        res = self.ocd.send(ocd_cmd)
        eprint(res)
        assert res == ''
65 66
        eprint("Firmware flashed.")

lwc-tester committed
67 68 69 70 71 72 73 74 75
        ocd_cmd = 'reset halt'
        res = self.ocd.send(ocd_cmd)
        eprint(res)
        assert res == ''

        ocd_cmd = 'load_image %s 0x20000000' % self.ram_pattern_path
        res = self.ocd.send(ocd_cmd)
        eprint(res)
        assert res == ''
76 77
        eprint("RAM flashed.")

lwc-tester committed
78 79 80 81 82
        ocd_cmd = 'resume'
        res = self.ocd.send(ocd_cmd)
        eprint(res)
        assert res == ''

83 84 85 86 87 88
        self.ser = serial.Serial(
            self.uart_device,
            baudrate=115200,
            timeout=5)
        self.reset()

lwc-tester committed
89 90 91 92 93 94 95
    def reset(self, halt=False):
        ocd_cmd = 'reset halt' if halt else 'reset run'
        res = self.ocd.send(ocd_cmd)
        eprint(res)
        assert res == ''
        eprint("Reset!")

96
    def dump_ram(self):
lwc-tester committed
97 98
        res = self.ocd.send(
            'dump_image %s 0x20000000 0x%x' %
Enrico Pozzobon committed
99
            (self.ram_dump_path, STM32F1.RAM_SIZE))
lwc-tester committed
100 101 102
        eprint(res)
        assert res == ''

103 104 105
        eprint("RAM dumped.")
        with open(self.ram_dump_path, 'rb') as ram:
            ram = ram.read()
Enrico Pozzobon committed
106
            if len(ram) != STM32F1.RAM_SIZE:
107 108
                raise Exception(
                    "RAM dump was %d bytes instead of %d" %
Enrico Pozzobon committed
109
                    (len(ram), STM32F1.RAM_SIZE))
110
            return ram
111 112 113


if __name__ == "__main__":
Enrico Pozzobon committed
114
    sys.exit(test_main(STM32F1, 0x0002, sys.argv))