diff options
author | Leo Yan <leo.yan@linaro.org> | 2019-02-05 18:24:53 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-02-08 06:27:36 -0500 |
commit | a0f890aba2be33377f4eb24e13633c4a76a68f38 (patch) | |
tree | ca1d622c62d5482123c4972e9760374072f8fc41 | |
parent | 5539830278fa96b9e78030ad80f9f4cfc3dc29e1 (diff) |
coresight: cpu-debug: Support for CA73 CPUs
This patch is to add the AMBA device ID for CA73 CPU, so that CPU debug
module can be initialized successfully when a SoC contain CA73 CPUs.
This patch has been verified on 96boards Hikey960.
Signed-off-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/hwtracing/coresight/coresight-cpu-debug.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/hwtracing/coresight/coresight-cpu-debug.c b/drivers/hwtracing/coresight/coresight-cpu-debug.c index 45b2460f3166..e8819d750938 100644 --- a/drivers/hwtracing/coresight/coresight-cpu-debug.c +++ b/drivers/hwtracing/coresight/coresight-cpu-debug.c | |||
@@ -668,6 +668,10 @@ static const struct amba_id debug_ids[] = { | |||
668 | .id = 0x000bbd08, | 668 | .id = 0x000bbd08, |
669 | .mask = 0x000fffff, | 669 | .mask = 0x000fffff, |
670 | }, | 670 | }, |
671 | { /* Debug for Cortex-A73 */ | ||
672 | .id = 0x000bbd09, | ||
673 | .mask = 0x000fffff, | ||
674 | }, | ||
671 | { 0, 0 }, | 675 | { 0, 0 }, |
672 | }; | 676 | }; |
673 | 677 | ||