summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMengsk <[email protected]>2024-08-27 12:13:29 +0200
committerMengsk <[email protected]>2024-08-27 12:13:29 +0200
commitcefee1a743c9eb2134aef2c6e38261aad333aa9b (patch)
tree208f9563f9686b4b427736e75e254cbc192939ef /test
parent95cb319bded7db536edaae24936a825a8524a4a2 (diff)
parent4485bffd139086d3adc40b1b176a59567a0254fc (diff)
Merge remote-tracking branch 'tinyusb/master' into vendor_fifo
Diffstat (limited to 'test')
-rw-r--r--test/hil/hil_test.py347
-rw-r--r--test/hil/rpi.json56
2 files changed, 248 insertions, 155 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py
index bdc48591e..5a4799cfb 100644
--- a/test/hil/hil_test.py
+++ b/test/hil/hil_test.py
@@ -27,21 +27,15 @@
import argparse
import os
+import re
import sys
import time
import serial
import subprocess
import json
import glob
-import platform
-
-# for RPI double reset
-if platform.machine() == 'aarch64':
- try:
- import gpiozero
- except ImportError:
- pass
-
+from multiprocessing import Pool
+import fs
ENUM_TIMEOUT = 30
@@ -60,9 +54,8 @@ def get_serial_dev(id, vendor_str, product_str, ifnum):
return port_list[0]
-# Currently not used, left as reference
+# get usb disk by id
def get_disk_dev(id, vendor_str, lun):
- # get usb disk by id
return f'/dev/disk/by-id/usb-{vendor_str}_Mass_Storage_{id}-0:{lun}'
@@ -79,34 +72,35 @@ def open_serial_dev(port):
# slight delay since kernel may occupy the port briefly
time.sleep(0.5)
timeout = timeout - 0.5
- ser = serial.Serial(port, timeout=1)
+ ser = serial.Serial(port, timeout=5)
break
except serial.SerialException:
pass
time.sleep(0.5)
timeout = timeout - 0.5
- assert timeout, 'Device not available or Cannot open port'
+
+ assert timeout, f'Cannot open port f{port}' if os.path.exists(port) else f'Port {port} not existed'
return ser
-def read_disk_file(id, fname):
- # on different self-hosted, the mount point is different
- file_list = [
- f'/media/blkUSB_{id[-8:]}.02/{fname}',
- f'/media/{os.getenv("USER")}/TinyUSB MSC/{fname}'
- ]
+def read_disk_file(uid, lun, fname):
+ # open_fs("fat://{dev}) require 'pip install pyfatfs'
+ dev = get_disk_dev(uid, 'TinyUSB', lun)
timeout = ENUM_TIMEOUT
while timeout:
- for file in file_list:
- if os.path.isfile(file):
- with open(file, 'rb') as f:
+ if os.path.exists(dev):
+ fat = fs.open_fs(f'fat://{dev}?read_only=true')
+ try:
+ with fat.open(fname, 'rb') as f:
data = f.read()
- return data
-
+ finally:
+ fat.close()
+ assert data, f'Cannot read file {fname} from {dev}'
+ return data
time.sleep(1)
- timeout = timeout - 1
+ timeout -= 1
- assert timeout, 'Device not available'
+ assert timeout, f'Storage {dev} not existed'
return None
@@ -117,7 +111,8 @@ def run_cmd(cmd):
#print(cmd)
r = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
if r.returncode != 0:
- title = 'command error'
+ title = f'COMMAND FAILED: {cmd}'
+ print()
if os.getenv('CI'):
print(f"::group::{title}")
print(r.stdout.decode("utf-8"))
@@ -130,10 +125,11 @@ def run_cmd(cmd):
def flash_jlink(board, firmware):
script = ['halt', 'r', f'loadfile {firmware}.elf', 'r', 'go', 'exit']
- with open('flash.jlink', 'w') as f:
+ f_jlink = f'{board["name"]}_{os.path.basename(firmware)}.jlink'
+ with open(f_jlink, 'w') as f:
f.writelines(f'{s}\n' for s in script)
- ret = run_cmd(f'JLinkExe -USB {board["flasher_sn"]} {board["flasher_args"]} -if swd -JTAGConf -1,-1 -speed auto -NoGui 1 -ExitOnError 1 -CommandFile flash.jlink')
- os.remove('flash.jlink')
+ ret = run_cmd(f'JLinkExe -USB {board["flasher_sn"]} {board["flasher_args"]} -if swd -JTAGConf -1,-1 -speed auto -NoGui 1 -ExitOnError 1 -CommandFile {f_jlink}')
+ os.remove(f_jlink)
return ret
@@ -152,6 +148,52 @@ def flash_openocd(board, firmware):
return ret
+def flash_openocd_wch(board, firmware):
+ # Content of the wch-riscv.cfg file
+ cfg_content = """
+adapter driver wlinke
+adapter speed 6000
+transport select sdi
+
+wlink_set_address 0x00000000
+set _CHIPNAME wch_riscv
+sdi newtap $_CHIPNAME cpu -irlen 5 -expected-id 0x00001
+
+set _TARGETNAME $_CHIPNAME.cpu
+
+target create $_TARGETNAME.0 wch_riscv -chain-position $_TARGETNAME
+$_TARGETNAME.0 configure -work-area-phys 0x20000000 -work-area-size 10000 -work-area-backup 1
+set _FLASHNAME $_CHIPNAME.flash
+
+flash bank $_FLASHNAME wch_riscv 0x00000000 0 0 0 $_TARGETNAME.0
+
+echo "Ready for Remote Connections"
+"""
+ f_wch = f"wch-riscv_{board['uid']}.cfg"
+ if not os.path.exists(f_wch):
+ with open(f_wch, 'w') as file:
+ file.write(cfg_content)
+
+ ret = run_cmd(f'openocd_wch -c "adapter serial {board["flasher_sn"]}" -f {f_wch} '
+ f'-c "program {firmware}.elf reset exit"')
+ return ret
+
+
+def flash_openocd_adi(board, firmware):
+ openocd_adi_script_path = f'{os.getenv("HOME")}/app/openocd_adi/tcl'
+ if not os.path.exists(openocd_adi_script_path):
+ openocd_adi_script_path = '/home/pi/openocd_adi/tcl'
+
+ ret = run_cmd(f'openocd_adi -c "adapter serial {board["flasher_sn"]}" -s {openocd_adi_script_path} '
+ f'{board["flasher_args"]} -c "program {firmware}.elf reset exit"')
+ return ret
+
+def flash_wlink_rs(board, firmware):
+ # wlink use index for probe selection and lacking usb serial support
+ ret = run_cmd(f'wlink flash {firmware}.elf')
+ return ret
+
+
def flash_esptool(board, firmware):
port = get_serial_dev(board["flasher_sn"], None, None, 0)
dir = os.path.dirname(f'{firmware}.bin')
@@ -165,49 +207,48 @@ def flash_esptool(board, firmware):
return ret
-def doublereset_with_rpi_gpio(pin):
- # Off = 0 = Reset
- nrst = gpiozero.LED(pin)
+def flash_uniflash(board, firmware):
+ ret = run_cmd(f'dslite.sh {board["flasher_args"]} -f {firmware}.hex')
+ return ret
- nrst.off()
- time.sleep(0.1)
- nrst.on()
- time.sleep(0.1)
- nrst.off()
- time.sleep(0.1)
- nrst.on()
+# -------------------------------------------------------------
+# Tests: dual
+# -------------------------------------------------------------
-def flash_bossac(board, firmware):
- # double reset to enter bootloader
- if platform.machine() == 'aarch64':
- doublereset_with_rpi_gpio(board["flasher_reset_pin"])
+def test_dual_host_info_to_device_cdc(board):
+ uid = board['uid']
+ declared_devs = [f'{d["vid_pid"]}_{d["serial"]}' for d in board['tests']['dual_attached']]
+
+ port = get_serial_dev(uid, 'TinyUSB', "TinyUSB_Device", 0)
+ ser = open_serial_dev(port)
+ # read from cdc, first line should contain vid/pid and serial
+ data = ser.read(1000)
+ lines = data.decode('utf-8').splitlines()
+ enum_dev_sn = []
+ for l in lines:
+ vid_pid_sn = re.search(r'ID ([0-9a-fA-F]+):([0-9a-fA-F]+) SN (\w+)', l)
+ if vid_pid_sn:
+ print(f'\r\n {l} ', end='')
+ enum_dev_sn.append(f'{vid_pid_sn.group(1)}_{vid_pid_sn.group(2)}_{vid_pid_sn.group(3)}')
+
+ assert(set(declared_devs) == set(enum_dev_sn)), \
+ f'Enumerated devices {enum_dev_sn} not match with declared {declared_devs}'
+ return 0
- port = get_serial_dev(board["uid"], board["flashser_vendor"], board["flasher_product"], 0)
- timeout = ENUM_TIMEOUT
- while timeout:
- if os.path.exists(port):
- break
- else:
- time.sleep(0.5)
- timeout = timeout - 0.5
- assert timeout, 'bossac bootloader is not available'
- # sleep a bit more for bootloader to be ready
- time.sleep(0.5)
- ret = run_cmd(f'bossac --port {port} {board["flasher_args"]} -U -i -R -e -w {firmware}.bin')
- return ret
# -------------------------------------------------------------
-# Tests
+# Tests: device
# -------------------------------------------------------------
-def test_board_test(id):
+def test_device_board_test(board):
# Dummy test
pass
-def test_cdc_dual_ports(id):
- port1 = get_serial_dev(id, 'TinyUSB', "TinyUSB_Device", 0)
- port2 = get_serial_dev(id, 'TinyUSB', "TinyUSB_Device", 2)
+def test_device_cdc_dual_ports(board):
+ uid = board['uid']
+ port1 = get_serial_dev(uid, 'TinyUSB', "TinyUSB_Device", 0)
+ port2 = get_serial_dev(uid, 'TinyUSB', "TinyUSB_Device", 2)
ser1 = open_serial_dev(port1)
ser2 = open_serial_dev(port2)
@@ -226,9 +267,10 @@ def test_cdc_dual_ports(id):
assert ser2.read(100) == str2.upper(), 'Port2 wrong data'
-def test_cdc_msc(id):
+def test_device_cdc_msc(board):
+ uid = board['uid']
# Echo test
- port = get_serial_dev(id, 'TinyUSB', "TinyUSB_Device", 0)
+ port = get_serial_dev(uid, 'TinyUSB', "TinyUSB_Device", 0)
ser = open_serial_dev(port)
str = b"test_str"
@@ -237,7 +279,7 @@ def test_cdc_msc(id):
assert ser.read(100) == str, 'CDC wrong data'
# Block test
- data = read_disk_file(id, 'README.TXT')
+ data = read_disk_file(uid,0,'README.TXT')
readme = \
b"This is tinyusb's MassStorage Class demo.\r\n\r\n\
If you find any bugs or get any questions, feel free to file an\r\n\
@@ -246,57 +288,62 @@ issue at github.com/hathach/tinyusb"
assert data == readme, 'MSC wrong data'
-def test_cdc_msc_freertos(id):
- test_cdc_msc(id)
+def test_device_cdc_msc_freertos(board):
+ test_device_cdc_msc(board)
+
+def test_device_dfu(board):
+ uid = board['uid']
-def test_dfu(id):
# Wait device enum
timeout = ENUM_TIMEOUT
while timeout:
ret = subprocess.run(f'dfu-util -l',
shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout = ret.stdout.decode()
- if f'serial="{id}"' in stdout and 'Found DFU: [cafe:4000]' in stdout:
+ if f'serial="{uid}"' in stdout and 'Found DFU: [cafe:4000]' in stdout:
break
time.sleep(1)
timeout = timeout - 1
assert timeout, 'Device not available'
+ f_dfu0 = f'dfu0_{uid}'
+ f_dfu1 = f'dfu1_{uid}'
+
# Test upload
try:
- os.remove('dfu0')
- os.remove('dfu1')
+ os.remove(f_dfu0)
+ os.remove(f_dfu1)
except OSError:
pass
- ret = subprocess.run(f'dfu-util -S {id} -a 0 -U dfu0',
- shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+ ret = run_cmd(f'dfu-util -S {uid} -a 0 -U {f_dfu0}')
assert ret.returncode == 0, 'Upload failed'
- ret = subprocess.run(f'dfu-util -S {id} -a 1 -U dfu1',
- shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+ ret = run_cmd(f'dfu-util -S {uid} -a 1 -U {f_dfu1}')
assert ret.returncode == 0, 'Upload failed'
- with open('dfu0') as f:
+ with open(f_dfu0) as f:
assert 'Hello world from TinyUSB DFU! - Partition 0' in f.read(), 'Wrong uploaded data'
- with open('dfu1') as f:
+ with open(f_dfu1) as f:
assert 'Hello world from TinyUSB DFU! - Partition 1' in f.read(), 'Wrong uploaded data'
- os.remove('dfu0')
- os.remove('dfu1')
+ os.remove(f_dfu0)
+ os.remove(f_dfu1)
+
+def test_device_dfu_runtime(board):
+ uid = board['uid']
-def test_dfu_runtime(id):
# Wait device enum
timeout = ENUM_TIMEOUT
while timeout:
ret = subprocess.run(f'dfu-util -l',
shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout = ret.stdout.decode()
- if f'serial="{id}"' in stdout and 'Found Runtime: [cafe:4000]' in stdout:
+ if f'serial="{uid}"' in stdout and 'Found Runtime: [cafe:4000]' in stdout:
break
time.sleep(1)
timeout = timeout - 1
@@ -304,10 +351,11 @@ def test_dfu_runtime(id):
assert timeout, 'Device not available'
-def test_hid_boot_interface(id):
- kbd = get_hid_dev(id, 'TinyUSB', 'TinyUSB_Device', 'event-kbd')
- mouse1 = get_hid_dev(id, 'TinyUSB', 'TinyUSB_Device', 'if01-event-mouse')
- mouse2 = get_hid_dev(id, 'TinyUSB', 'TinyUSB_Device', 'if01-mouse')
+def test_device_hid_boot_interface(board):
+ uid = board['uid']
+ kbd = get_hid_dev(uid, 'TinyUSB', 'TinyUSB_Device', 'event-kbd')
+ mouse1 = get_hid_dev(uid, 'TinyUSB', 'TinyUSB_Device', 'if01-event-mouse')
+ mouse2 = get_hid_dev(uid, 'TinyUSB', 'TinyUSB_Device', 'if01-mouse')
# Wait device enum
timeout = ENUM_TIMEOUT
while timeout:
@@ -316,10 +364,10 @@ def test_hid_boot_interface(id):
time.sleep(1)
timeout = timeout - 1
- assert timeout, 'Device not available'
+ assert timeout, 'HID device not available'
-def test_hid_composite_freertos(id):
+def test_device_hid_composite_freertos(id):
# TODO implement later
pass
@@ -327,6 +375,71 @@ def test_hid_composite_freertos(id):
# -------------------------------------------------------------
# Main
# -------------------------------------------------------------
+# all possible tests: board_test is added last to disable board's usb
+all_tests = [
+ 'device/cdc_dual_ports',
+ 'device/cdc_msc',
+ 'device/dfu',
+ 'device/cdc_msc_freertos', # don't test 2 cdc_msc next to each other
+ 'device/dfu_runtime',
+ 'device/hid_boot_interface',
+
+ 'dual/host_info_to_device_cdc',
+ 'device/board_test'
+]
+
+
+def test_board(board):
+ name = board['name']
+ flasher = board['flasher'].lower()
+
+ # default to all tests
+ test_list = list(all_tests)
+
+ if 'tests' in board:
+ board_tests = board['tests']
+ if 'only' in board_tests:
+ test_list = board_tests['only'] + ['device/board_test']
+ if 'skip' in board_tests:
+ for skip in board_tests['skip']:
+ if skip in test_list:
+ test_list.remove(skip)
+
+ err_count = 0
+ for test in test_list:
+ fw_dir = f'cmake-build/cmake-build-{name}/{test}'
+ if not os.path.exists(fw_dir):
+ fw_dir = f'examples/cmake-build-{name}/{test}'
+ fw_name = f'{fw_dir}/{os.path.basename(test)}'
+ print(f'{name:30} {test:20} ... ', end='')
+
+ if not os.path.exists(fw_dir):
+ print('Skip')
+ continue
+
+ # flash firmware. It may fail randomly, retry a few times
+ for i in range(3):
+ ret = globals()[f'flash_{flasher}'](board, fw_name)
+ if ret.returncode == 0:
+ break
+ else:
+ print(f'Flashing failed, retry {i+1}')
+ time.sleep(1)
+
+ if ret.returncode == 0:
+ try:
+ ret = globals()[f'test_{test.replace("/", "_")}'](board)
+ print('OK')
+ except Exception as e:
+ err_count += 1
+ print('Failed')
+ print(f' {e}')
+ else:
+ err_count += 1
+ print('Flash failed')
+ return err_count
+
+
def main():
"""
Hardware test on specified boards
@@ -345,66 +458,16 @@ def main():
with open(config_file) as f:
config = json.load(f)
- # all possible tests: board_test is added last to disable board's usb
- all_tests = [
- 'cdc_dual_ports',
- 'cdc_msc',
- 'cdc_msc_freertos',
- 'dfu',
- 'dfu_runtime',
- 'hid_boot_interface',
- 'board_test'
- ]
-
if len(boards) == 0:
config_boards = config['boards']
else:
config_boards = [e for e in config['boards'] if e['name'] in boards]
- for item in config_boards:
- name = item['name']
- print(f'Testing board:{name}')
- flasher = item['flasher'].lower()
-
- # default to all tests
- if 'tests' in item:
- test_list = item['tests'] + ['board_test']
- else:
- test_list = list(all_tests)
-
- # remove skip_tests
- if 'tests_skip' in item:
- for skip in item['tests_skip']:
- if skip in test_list:
- test_list.remove(skip)
-
- for test in test_list:
- fw_dir = f'cmake-build/cmake-build-{name}/device/{test}'
- if not os.path.exists(fw_dir):
- fw_dir = f'examples/cmake-build-{name}/device/{test}'
- fw_name = f'{fw_dir}/{test}'
- print(f' {test} ... ', end='')
- sys.stdout.flush()
-
- if not os.path.exists(fw_dir):
- print('Skip')
- continue
-
- # flash firmware. It may fail randomly, retry a few times
- for i in range(3):
- ret = globals()[f'flash_{flasher}'](item, fw_name)
- if ret.returncode == 0:
- break
- else:
- print(f'Flashing failed, retry {i+1}')
- time.sleep(1)
-
- assert ret.returncode == 0, 'Flash failed\n' + ret.stdout.decode()
-
- # run test
- globals()[f'test_{test}'](item['uid'])
-
- print('OK')
+ err_count_list = []
+ with Pool(processes=os.cpu_count()) as pool:
+ err_count_list = pool.map(test_board, config_boards)
+ err_count = sum(err_count_list)
+ sys.exit(err_count)
if __name__ == '__main__':
diff --git a/test/hil/rpi.json b/test/hil/rpi.json
index 9520f30e2..7821f1660 100644
--- a/test/hil/rpi.json
+++ b/test/hil/rpi.json
@@ -8,18 +8,21 @@
"flasher_args": "-device nrf52840_xxaa"
},
{
- "name": "itsybitsy_m4",
- "uid": "D784B28C5338533335202020FF044726",
+ "name": "metro_m4_express",
+ "uid": "9995AD485337433231202020FF100A34",
"flasher": "openocd",
- "flasher_sn": "E6614C311B597D32",
- "flasher_args": "-f interface/cmsis-dap.cfg -f target/atsame5x.cfg -c \"adapter speed 5000\""
+ "flasher_sn": "E6633861A3978538",
+ "flasher_args": "-f interface/cmsis-dap.cfg -f target/atsame5x.cfg",
+ "tests": {
+ "dual_attached": [{"vid_pid": "1a86_55d4", "serial": "52D2002130"}]
+ }
},
{
- "name": "metro_m7_1011",
- "uid": "9CE8715DD71137363E00005002004200",
+ "name": "max32666fthr",
+ "uid": "0C81464124010B20FF0A08CC2C",
"flasher": "jlink",
- "flasher_sn": "000611000000",
- "flasher_args": "-device MIMXRT1011xxx5A"
+ "flasher_sn": "000801011822",
+ "flasher_args": "-device max32666"
},
{
"name": "lpcxpresso11u37",
@@ -31,7 +34,9 @@
{
"name": "ra4m1_ek",
"uid": "152E163038303131393346E46F26574B",
- "tests_skip": ["cdc_msc", "cdc_msc_freertos"],
+ "tests": {
+ "skip": ["device/cdc_msc", "device/cdc_msc_freertos"]
+ },
"comment": "MSC is slow to enumerated #2602",
"flasher": "jlink",
"flasher_sn": "000831174392",
@@ -42,7 +47,11 @@
"uid": "E6614C311B764A37",
"flasher": "openocd",
"flasher_sn": "E6614103E72C1D2F",
- "flasher_args": "-f interface/cmsis-dap.cfg -f target/rp2040.cfg -c \"adapter speed 5000\""
+ "flasher_args": "-f interface/cmsis-dap.cfg -f target/rp2040.cfg -c \"adapter speed 5000\"",
+ "tests": {
+ "skip": ["dual/host_info_to_device_cdc"],
+ "dual_attached": [{"vid_pid": "1a86_55d4", "serial": "52D2002470"}]
+ }
},
{
"name": "stm32f072disco",
@@ -61,14 +70,35 @@
],
"boards-skip": [
{
+ "name": "mimxrt1015_evk",
+ "uid": "DC28F865D2111D228D00B0543A70463C",
+ "flasher": "jlink",
+ "flasher_sn": "000726284213",
+ "flasher_args": "-device MIMXRT1015DAF5A"
+ },
+ {
+ "name": "nanoch32v203",
+ "uid": "CDAB277B0FBC03E339E339E3",
+ "flasher": "openocd_wch",
+ "flasher_sn": "EBCA8F0670AF",
+ "flasher_args": ""
+ },
+ {
"name": "espressif_s3_devkitm",
"uid": "84F703C084E4",
- "tests": [
- "cdc_msc_freertos", "hid_composite_freertos"
- ],
+ "tests": {
+ "only": ["device/cdc_msc_freertos", "device/hid_composite_freertos"]
+ },
"flasher": "esptool",
"flasher_sn": "3ea619acd1cdeb11a0a0b806e93fd3f1",
"flasher_args": "-b 921600"
+ },
+ {
+ "name": "max32666fthr",
+ "uid": "0C81464124010B20FF0A08CC2C",
+ "flasher": "openocd_adi",
+ "flasher_sn": "042217023bffc88100000000000000000000000097969906",
+ "flasher_args": "-f interface/cmsis-dap.cfg -f target/max32665.cfg"
}
]
}