diff options
author | Paul Fertser <fercerpav@gmail.com> | 2014-02-05 15:08:54 +0400 |
---|---|---|
committer | Andreas Fritiofson <andreas.fritiofson@gmail.com> | 2014-03-07 18:50:55 +0000 |
commit | 42881f95ce6dec09ad317b59ad564a997a766d95 (patch) | |
tree | db41e4e1e43d532242ffc4926fb41cb79a4fbc64 /src/target | |
parent | 77aecd53762f26611e9ae10b2bf3bd8d17496e60 (diff) | |
download | riscv-openocd-42881f95ce6dec09ad317b59ad564a997a766d95.zip riscv-openocd-42881f95ce6dec09ad317b59ad564a997a766d95.tar.gz riscv-openocd-42881f95ce6dec09ad317b59ad564a997a766d95.tar.bz2 |
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>
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/arm_adi_v5.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c index 1f4ade0..4a1e42c 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)"; |