Skip to content

Commit b8efe7e

Browse files
Yann-lmsPatrice Chotard
authored andcommitted
arm: stm32mp: add Rev.Y and Rev.X support for STM32MP23
Add the display of STM32MP23 SoC revision Y or X. Change-Id: I0c6985bac72a13a9024c4de9bcb11ec4bf391c5f Signed-off-by: Yann Gautier <yann.gautier@foss.st.com> Reviewed-on: https://gerrit.st.com/c/mpu/oe/st/u-boot/+/462914 ACI: CITOOLS <MDG-smet-aci-reviews@list.st.com> Reviewed-by: Patrice CHOTARD <patrice.chotard@foss.st.com> Domain-Review: Patrice CHOTARD <patrice.chotard@foss.st.com> ACI: CIBUILD <MDG-smet-aci-builds@list.st.com>
1 parent e30324e commit b8efe7e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

arch/arm/mach-stm32mp/stm32mp2/stm32mp23x.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,12 @@ void get_soc_name(char name[SOC_NAME_SIZE])
162162
case OTP_REVID_2:
163163
cpu_r = "B";
164164
break;
165+
case OTP_REVID_2_1:
166+
cpu_r = "Y";
167+
break;
168+
case OTP_REVID_2_2:
169+
cpu_r = "X";
170+
break;
165171
default:
166172
break;
167173
}

0 commit comments

Comments
 (0)