aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-stm32mp/include
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2022-05-20 18:24:42 +0200
committerPatrick Delaunay <patrick.delaunay@foss.st.com>2022-06-17 09:58:21 +0200
commit6df271a70f61fd0210af783b63b8ddba3090fd09 (patch)
tree73d3e19301c91e61ad1549a8cb27363bfe7ec412 /arch/arm/mach-stm32mp/include
parent3865a7ec9523122c4932d8e8d4b406d60884e8ae (diff)
downloadu-boot-6df271a70f61fd0210af783b63b8ddba3090fd09.zip
u-boot-6df271a70f61fd0210af783b63b8ddba3090fd09.tar.gz
u-boot-6df271a70f61fd0210af783b63b8ddba3090fd09.tar.bz2
arm: stm32mp: move code for STM32MP15x
Move code and defines only needed for CONFIG_STM32MP15x in stm32mp15x.c when low level init without TFABOOT is supported. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'arch/arm/mach-stm32mp/include')
-rw-r--r--arch/arm/mach-stm32mp/include/mach/sys_proto.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/arch/arm/mach-stm32mp/include/mach/sys_proto.h b/arch/arm/mach-stm32mp/include/mach/sys_proto.h
index dc98f0c..8b61135 100644
--- a/arch/arm/mach-stm32mp/include/mach/sys_proto.h
+++ b/arch/arm/mach-stm32mp/include/mach/sys_proto.h
@@ -36,10 +36,12 @@ u32 get_cpu_rev(void);
/* Get Package options from OTP */
u32 get_cpu_package(void);
-#define PKG_AA_LBGA448 4
-#define PKG_AB_LBGA354 3
-#define PKG_AC_TFBGA361 2
-#define PKG_AD_TFBGA257 1
+/* package used for STM32MP15x */
+#define STM32MP15_PKG_AA_LBGA448 4
+#define STM32MP15_PKG_AB_LBGA354 3
+#define STM32MP15_PKG_AC_TFBGA361 2
+#define STM32MP15_PKG_AD_TFBGA257 1
+#define STM32MP15_PKG_UNKNOWN 0
/* Get SOC name */
#define SOC_NAME_SIZE 20
@@ -53,5 +55,9 @@ int setup_mac_address(void);
/* board power management : configure vddcore according OPP */
void board_vddcore_init(u32 voltage_mv);
+/* weak function */
+void stm32mp_cpu_init(void);
+void stm32mp_misc_init(void);
+
/* helper function: read data from OTP */
u32 get_otp(int index, int shift, int mask);