diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-01-28 10:11:06 +0100 |
---|---|---|
committer | Patrick Delaunay <patrick.delaunay@st.com> | 2020-02-13 17:31:08 +0100 |
commit | cf0818b4772b02e63fb980d8c146ef5d780b7940 (patch) | |
tree | 66a60b2f2d63820ace9fc1ec86f4c69787c47215 /arch/arm/mach-stm32mp/cpu.c | |
parent | a21a6ba4337fe14fbe23f2507eae4a11f127f8d5 (diff) | |
download | u-boot-cf0818b4772b02e63fb980d8c146ef5d780b7940.tar.gz |
stm32mp1: support of STM32MP15x Rev.Z
Add support for Rev.Z of STM32MP15x cpu.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'arch/arm/mach-stm32mp/cpu.c')
-rw-r--r-- | arch/arm/mach-stm32mp/cpu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32mp/cpu.c b/arch/arm/mach-stm32mp/cpu.c index de7891b5c4..ea0bd94605 100644 --- a/arch/arm/mach-stm32mp/cpu.c +++ b/arch/arm/mach-stm32mp/cpu.c @@ -342,6 +342,9 @@ int print_cpuinfo(void) case CPU_REVB: cpu_r = "B"; break; + case CPU_REVZ: + cpu_r = "Z"; + break; default: cpu_r = "?"; break; |