mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00
stm32mp1: support of STM32MP15x Rev.Z
Add a new revision of STM32MP15x CPU (Rev.Z). Change-Id: I227dd6d9b3fcc43270015cfb21f60aeb0a8ab658 Signed-off-by: Lionel Debieve <lionel.debieve@st.com> Signed-off-by: Yann Gautier <yann.gautier@st.com>
This commit is contained in:
parent
cc392dd858
commit
ffb3f27713
2 changed files with 4 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
#define STM32MP151A_PART_NB U(0x0500002F)
|
||||
|
||||
#define STM32MP1_REV_B U(0x2000)
|
||||
#define STM32MP1_REV_Z U(0x2001)
|
||||
|
||||
/*******************************************************************************
|
||||
* PACKAGE ID
|
||||
|
|
|
@ -261,6 +261,9 @@ void stm32mp_print_cpuinfo(void)
|
|||
case STM32MP1_REV_B:
|
||||
cpu_r = "B";
|
||||
break;
|
||||
case STM32MP1_REV_Z:
|
||||
cpu_r = "Z";
|
||||
break;
|
||||
default:
|
||||
cpu_r = "?";
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue