# SPDX-FileCopyrightText: 2022-2026 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: Unlicense OR CC0-1.0 import os.path import re import time import typing import pexpect import pytest import serial from pytest_embedded_idf import IdfDut from pytest_embedded_idf.utils import idf_parametrize from pytest_embedded_idf.utils import soc_filtered_targets if typing.TYPE_CHECKING: from conftest import OpenOCD def _validate_trace_data(trace_log: list[str], target: str, is_uart: bool = False) -> None: """Validate SysView trace data in log file(s). Args: trace_log: List of trace log paths target: Target chip name (e.g., 'esp32', 'esp32s3') is_uart: If True, also validate STOP record at end of file """ STOP_EVENT_ID = 0x0B # SYSVIEW_EVTID_TRACE_STOP for idx, log in enumerate(trace_log): with open(log, 'rb') as f: content = f.read() search_str = f'N=FreeRTOS Application,D={target},C=core{idx},O=FreeRTOS'.encode() assert search_str in content, f'SysView trace data not found in {log}' # The file must end with a TRACE_STOP record: the STOP event ID # followed by a variable-length timestamp delta. Walk back # over the trailing continuation bytes (0x80 bit set) # to find the event ID, since its offset is not fixed. size = len(content) assert size >= 2, 'Trace file too small to contain STOP record' i = size - 2 while i >= 0 and (content[i] & 0x80): i -= 1 assert i >= 0 and content[i] == STOP_EVENT_ID, 'STOP record does not start with STOP eventID' def _capture_sysview_trace(ser: serial.Serial, trace_log_path: str) -> None: """Capture SysView trace data from serial port. Args: ser: Serial port instance trace_log_path: Path to save the trace log """ START_CMD = b'\x01' STOP_CMD = b'\x02' ser.reset_input_buffer() # Send Start command to start SysView tracing ser.write(START_CMD) with open(trace_log_path, 'w+b') as f: # Capture for 3 seconds end_time = time.time() + 3.0 while time.time() < end_time: try: if ser.in_waiting: f.write(ser.read(ser.in_waiting)) except serial.SerialTimeoutException: assert False, 'Timeout reached while reading from serial port, exiting...' # Give pending trace data a short window to reach the host before requesting STOP. time.sleep(0.2) # Send Stop command ser.write(STOP_CMD) # Capture the final data produced by STOP and the transport flush. end_time = time.time() + 3.0 last_data_time = time.time() while time.time() < end_time and (time.time() - last_data_time) <= 1.0: try: if ser.in_waiting: f.write(ser.read(ser.in_waiting)) last_data_time = time.time() except serial.SerialTimeoutException: assert False, 'Timeout reached while reading from serial port, exiting...' def _test_sysview_tracing_jtag(openocd_dut: 'OpenOCD', dut: IdfDut) -> None: # Construct trace log paths trace_log = [ os.path.join(dut.logdir, 'sys_log0.svdat') # pylint: disable=protected-access ] if not dut.app.sdkconfig.get('ESP_SYSTEM_SINGLE_CORE_MODE') or dut.target == 'esp32s3': trace_log.append(os.path.join(dut.logdir, 'sys_log1.svdat')) # pylint: disable=protected-access trace_files = ' '.join([f'file://{log}' for log in trace_log]) # Prepare gdbinit file gdb_logfile = os.path.join(dut.logdir, 'gdb.txt') gdbinit_orig = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'gdbinit') gdbinit = os.path.join(dut.logdir, 'gdbinit') with open(gdbinit_orig) as f_r, open(gdbinit, 'w') as f_w: for line in f_r: if line.startswith('mon esp sysview start'): f_w.write(f'mon esp sysview start {trace_files}\n') else: f_w.write(line) def dut_expect_task_event() -> None: dut.expect(re.compile(rb'example: Task\[0x[0-9A-Fa-f]+\]: received event \d+'), timeout=30) time.sleep(1) # Wait for the USJ port to be ready dut.expect_exact('example: Hello from sysview_tracing example!', timeout=5) with ( openocd_dut.run() as openocd, open(gdb_logfile, 'w') as gdb_log, pexpect.spawn( f'idf.py -B {dut.app.binary_path} gdb --batch -x {gdbinit}', timeout=60, logfile=gdb_log, encoding='utf-8', codec_errors='ignore', ) as p, ): p.expect_exact('hit Breakpoint 1, app_main ()') dut.expect('example: Created task') # dut has been restarted by gdb since the last dut.expect() dut_expect_task_event() # Do a sleep while sysview samples are captured. time.sleep(3) openocd.write('esp sysview stop') openocd.apptrace_wait_stop() _validate_trace_data(trace_log, dut.target) @pytest.mark.jtag @idf_parametrize('config', ['sysview_jtag'], indirect=['config']) @idf_parametrize('target', ['esp32', 'esp32c2', 'esp32s2'], indirect=['target']) def test_sysview_tracing_jtag(openocd_dut: 'OpenOCD', dut: IdfDut) -> None: _test_sysview_tracing_jtag(openocd_dut, dut) @pytest.mark.usb_serial_jtag @idf_parametrize('config', ['sysview_jtag'], indirect=['config']) @idf_parametrize( 'target', ['esp32s3', 'esp32c3', 'esp32c5', 'esp32c6', 'esp32c61', 'esp32h2', 'esp32p4'], indirect=['target'] ) @idf_parametrize('port', ['/dev/serial_ports/ttyUSB-esp32'], indirect=['port']) def test_sysview_tracing_usj(openocd_dut: 'OpenOCD', dut: IdfDut) -> None: _test_sysview_tracing_jtag(openocd_dut, dut) def _test_sysview_tracing_uart(dut: IdfDut) -> None: dut.serial.close() time.sleep(2) # Wait for the DUT to reboot with serial.Serial(dut.serial.port, baudrate=dut.app.sdkconfig.get('APPTRACE_UART_BAUDRATE'), timeout=3) as ser: trace_log = [os.path.join(dut.logdir, 'sys_log_uart.svdat')] # pylint: disable=protected-access _capture_sysview_trace(ser, trace_log[0]) _validate_trace_data(trace_log, dut.target, is_uart=True) @pytest.mark.generic @idf_parametrize('config', ['sysview_uart'], indirect=['config']) @idf_parametrize('target', ['supported_targets'], indirect=['target']) def test_sysview_tracing_uart(dut: IdfDut) -> None: _test_sysview_tracing_uart(dut) @pytest.mark.usb_serial_jtag @idf_parametrize('target', soc_filtered_targets('SOC_USB_SERIAL_JTAG_SUPPORTED == 1'), indirect=['target']) @pytest.mark.parametrize('config', [pytest.param('sysview_usj')], indirect=True) @idf_parametrize('port', ['/dev/serial_ports/ttyUSB-esp32'], indirect=['port']) def test_sysview_tracing_usj_serial(dut: IdfDut) -> None: time.sleep(1) # wait for USJ port to be ready usj_port = '/dev/serial_ports/ttyACM-esp32' ser = serial.Serial(usj_port, baudrate=1000000, timeout=10) trace_log = [os.path.join(dut.logdir, 'sys_log_usj.svdat')] # pylint: disable=protected-access _capture_sysview_trace(ser, trace_log[0]) _validate_trace_data(trace_log, dut.target, is_uart=True)