Merge "stm32mp1: support of STM32MP15x Rev.Z" into integration

This commit is contained in:
Alexei Fedorov 2020-10-13 14:42:09 +00:00 committed by TrustedFirmware Code Review
commit 0e935f00ef
2 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,7 @@
#define STM32MP151A_PART_NB U(0x0500002F)
#define STM32MP1_REV_B U(0x2000)
#define STM32MP1_REV_Z U(0x2001)
/*******************************************************************************
* PACKAGE ID

View File

@ -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;