This is an automated email from Gerrit. Peter Lawrence ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2369
-- gerrit commit d27f555ccf564940ba93db0f596375b0a25fb2e0 Author: Peter Lawrence <[email protected]> Date: Sat Nov 1 17:31:49 2014 -0700 added CoreSight "Single Wire Output" and "Trace Memory Controller" peripheral IDs to dap_rom_display(), which is invoked by the "dap info" command Change-Id: Iea3201007bb98e6376fbb50be40a4a2e031b0a03 Signed-off-by: Peter Lawrence <[email protected]> diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c index a059531..c76cc69 100644 --- a/src/target/arm_adi_v5.c +++ b/src/target/arm_adi_v5.c @@ -1275,6 +1275,10 @@ static int dap_rom_display(struct command_context *cmd_ctx, type = "Coresight ITM"; full = "(Instrumentation Trace Macrocell)"; break; + case 0x914: + type = "Coresight SWO"; + full = "(Single Wire Output)"; + break; case 0x917: type = "Coresight HTM"; full = "(AHB Trace Macrocell)"; @@ -1311,6 +1315,10 @@ static int dap_rom_display(struct command_context *cmd_ctx, type = "CoreSight Component"; full = "(unidentified Cortex-A9 component)"; break; + case 0x961: + type = "CoreSight TMC"; + full = "(Trace Memory Controller)"; + break; case 0x962: type = "CoreSight STM"; full = "(System Trace Macrocell)"; -- ------------------------------------------------------------------------------ _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
