trace: add support for 'trace wipe'

Implement a 'trace wipe' command to delete the currently accumulated
trace data. This comes handy when someone needs to trace a particular
command. For example:

  => trace pause; trace wipe
  => trace resume; dhcp; trace pause
  => trace stats
  => trace calls 0x02100000 0x10000000
  => tftpput $profbase $profoffset 192.168.0.16:trace.bin

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
Jerome Forissier
2024-12-13 13:45:36 +01:00
committed by Simon Glass
parent 5410b1b2b7
commit 3415144e53
3 changed files with 40 additions and 14 deletions

View File

@@ -100,6 +100,10 @@ int do_trace(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
case 's':
trace_print_stats();
break;
case 'w':
if (trace_wipe())
return CMD_RET_FAILURE;
break;
default:
return CMD_RET_USAGE;
}
@@ -113,6 +117,7 @@ U_BOOT_CMD(
"stats - display tracing statistics\n"
"trace pause - pause tracing\n"
"trace resume - resume tracing\n"
"trace wipe - wipe traces\n"
"trace funclist [<addr> <size>] - dump function list into buffer\n"
"trace calls [<addr> <size>] "
"- dump function call trace into buffer"