diff options
| author | Yann Gautier <[email protected]> | 2024-01-15 15:05:45 +0100 |
|---|---|---|
| committer | Patrice Chotard <[email protected]> | 2024-01-19 14:19:42 +0100 |
| commit | 5c769376595ba962a7ffda21d405e3eb3a44f768 (patch) | |
| tree | 644502e7b27b65b431fb23b82696b2f582df9397 | |
| parent | 792122baa7d59b005a7573e52bcd86d172d8ded0 (diff) | |
arm: stm32mp: add Rev.B support for STM32MP25
Add chip revision B support for STM32MP25, for displaying it in trace.
Reviewed-by: Patrice Chotard <[email protected]>
Signed-off-by: Yann Gautier <[email protected]>
Signed-off-by: Patrick Delaunay <[email protected]>
| -rw-r--r-- | arch/arm/mach-stm32mp/stm32mp2/stm32mp25x.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32mp/stm32mp2/stm32mp25x.c b/arch/arm/mach-stm32mp/stm32mp2/stm32mp25x.c index 4b2f70af9cc..7f896a0d65d 100644 --- a/arch/arm/mach-stm32mp/stm32mp2/stm32mp25x.c +++ b/arch/arm/mach-stm32mp/stm32mp2/stm32mp25x.c @@ -167,6 +167,9 @@ void get_soc_name(char name[SOC_NAME_SIZE]) case CPU_REV1: cpu_r = "A"; break; + case CPU_REV2: + cpu_r = "B"; + break; default: break; } |
