aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2014-02-05 15:08:54 +0400
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2014-03-07 18:50:55 +0000
commit42881f95ce6dec09ad317b59ad564a997a766d95 (patch)
treedb41e4e1e43d532242ffc4926fb41cb79a4fbc64
parent77aecd53762f26611e9ae10b2bf3bd8d17496e60 (diff)
target: add CoreSight PMU and an unidentified component to "dap info"
Change-Id: I705eae46b190dbd89ab01bc086c49eb04368d9b3 Reported-by: Brad Riensche <brad.riensche@gmail.com> Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/1928 Tested-by: jenkins Reviewed-by: Brad Riensche <brad.riensche@gmail.com> Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
-rw-r--r--src/target/arm_adi_v5.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c
index 1f4ade09..4a1e42c0 100644
--- a/src/target/arm_adi_v5.c
+++ b/src/target/arm_adi_v5.c
@@ -1366,6 +1366,14 @@ static int dap_rom_display(struct command_context *cmd_ctx,
type = "Cortex-R4 ETM";
full = "(Embedded Trace)";
break;
+ case 0x950:
+ type = "CoreSight Component";
+ full = "(unidentified Cortex-A9 component)";
+ break;
+ case 0x9a0:
+ type = "CoreSight PMU";
+ full = "(Performance Monitoring Unit)";
+ break;
case 0x9a1:
type = "Cortex-M4 TPUI";
full = "(Trace Port Interface Unit)";