mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
cf0818b477
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>
35 lines
867 B
C
35 lines
867 B
C
/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
|
|
/*
|
|
* Copyright (C) 2015-2017, STMicroelectronics - All Rights Reserved
|
|
*/
|
|
|
|
/* ID = Device Version (bit31:16) + Device Part Number (RPN) (bit15:0)*/
|
|
#define CPU_STM32MP157Cxx 0x05000000
|
|
#define CPU_STM32MP157Axx 0x05000001
|
|
#define CPU_STM32MP153Cxx 0x05000024
|
|
#define CPU_STM32MP153Axx 0x05000025
|
|
#define CPU_STM32MP151Cxx 0x0500002E
|
|
#define CPU_STM32MP151Axx 0x0500002F
|
|
|
|
/* return CPU_STMP32MP...Xxx constants */
|
|
u32 get_cpu_type(void);
|
|
|
|
#define CPU_REVA 0x1000
|
|
#define CPU_REVB 0x2000
|
|
#define CPU_REVZ 0x2001
|
|
|
|
/* return CPU_REV constants */
|
|
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
|
|
|
|
/* return boot mode */
|
|
u32 get_bootmode(void);
|
|
|
|
int setup_mac_address(void);
|