blob: 325d7101009d711c278d7fc330bdbb408257ff90 [file] [log] [blame]
Tom Rini4549e782018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01004 */
Patrick Delaunayeb653ac2020-11-06 19:01:29 +01005
6#define LOG_CATEGORY LOGC_ARCH
7
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01008#include <common.h>
9#include <clk.h>
Simon Glass9edefc22019-11-14 12:57:37 -070010#include <cpu_func.h>
Patrick Delaunay320d2662018-05-17 14:50:46 +020011#include <debug_uart.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060012#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060013#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Patrick Delaunayade4e042021-05-07 14:50:35 +020015#include <lmb.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020016#include <misc.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <net.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010018#include <asm/io.h>
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +020019#include <asm/arch/bsec.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010020#include <asm/arch/stm32.h>
Patrick Delaunay96583cd2018-03-19 19:09:21 +010021#include <asm/arch/sys_proto.h>
Simon Glass401d1c42020-10-30 21:38:53 -060022#include <asm/global_data.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020023#include <dm/device.h>
Patrick Delaunay08772f62018-03-20 10:54:53 +010024#include <dm/uclass.h>
Simon Glasscd93d622020-05-10 11:40:13 -060025#include <linux/bitops.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010026
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010027/* RCC register */
28#define RCC_TZCR (STM32_RCC_BASE + 0x00)
29#define RCC_DBGCFGR (STM32_RCC_BASE + 0x080C)
30#define RCC_BDCR (STM32_RCC_BASE + 0x0140)
31#define RCC_MP_APB5ENSETR (STM32_RCC_BASE + 0x0208)
Patrick Delaunay59a54e32019-02-27 17:01:26 +010032#define RCC_MP_AHB5ENSETR (STM32_RCC_BASE + 0x0210)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010033#define RCC_BDCR_VSWRST BIT(31)
34#define RCC_BDCR_RTCSRC GENMASK(17, 16)
35#define RCC_DBGCFGR_DBGCKEN BIT(8)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010036
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010037/* Security register */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010038#define ETZPC_TZMA1_SIZE (STM32_ETZPC_BASE + 0x04)
39#define ETZPC_DECPROT0 (STM32_ETZPC_BASE + 0x10)
40
41#define TZC_GATE_KEEPER (STM32_TZC_BASE + 0x008)
42#define TZC_REGION_ATTRIBUTE0 (STM32_TZC_BASE + 0x110)
43#define TZC_REGION_ID_ACCESS0 (STM32_TZC_BASE + 0x114)
44
45#define TAMP_CR1 (STM32_TAMP_BASE + 0x00)
46
47#define PWR_CR1 (STM32_PWR_BASE + 0x00)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010048#define PWR_MCUCR (STM32_PWR_BASE + 0x14)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010049#define PWR_CR1_DBP BIT(8)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010050#define PWR_MCUCR_SBF BIT(6)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010051
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010052/* DBGMCU register */
Patrick Delaunay96583cd2018-03-19 19:09:21 +010053#define DBGMCU_IDC (STM32_DBGMCU_BASE + 0x00)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010054#define DBGMCU_APB4FZ1 (STM32_DBGMCU_BASE + 0x2C)
55#define DBGMCU_APB4FZ1_IWDG2 BIT(2)
Patrick Delaunay96583cd2018-03-19 19:09:21 +010056#define DBGMCU_IDC_DEV_ID_MASK GENMASK(11, 0)
57#define DBGMCU_IDC_DEV_ID_SHIFT 0
58#define DBGMCU_IDC_REV_ID_MASK GENMASK(31, 16)
59#define DBGMCU_IDC_REV_ID_SHIFT 16
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010060
Patrick Delaunay59a54e32019-02-27 17:01:26 +010061/* GPIOZ registers */
62#define GPIOZ_SECCFGR 0x54004030
63
Patrick Delaunay08772f62018-03-20 10:54:53 +010064/* boot interface from Bootrom
65 * - boot instance = bit 31:16
66 * - boot device = bit 15:0
67 */
68#define BOOTROM_PARAM_ADDR 0x2FFC0078
69#define BOOTROM_MODE_MASK GENMASK(15, 0)
70#define BOOTROM_MODE_SHIFT 0
71#define BOOTROM_INSTANCE_MASK GENMASK(31, 16)
72#define BOOTROM_INSTANCE_SHIFT 16
73
Patrick Delaunay35d568f2019-02-27 17:01:13 +010074/* Device Part Number (RPN) = OTP_DATA1 lower 8 bits */
75#define RPN_SHIFT 0
76#define RPN_MASK GENMASK(7, 0)
77
78/* Package = bit 27:29 of OTP16
79 * - 100: LBGA448 (FFI) => AA = LFBGA 18x18mm 448 balls p. 0.8mm
80 * - 011: LBGA354 (LCI) => AB = LFBGA 16x16mm 359 balls p. 0.8mm
81 * - 010: TFBGA361 (FFC) => AC = TFBGA 12x12mm 361 balls p. 0.5mm
82 * - 001: TFBGA257 (LCC) => AD = TFBGA 10x10mm 257 balls p. 0.5mm
83 * - others: Reserved
84 */
85#define PKG_SHIFT 27
86#define PKG_MASK GENMASK(2, 0)
87
Patrick Delaunay7e8471c2020-04-30 16:30:20 +020088/*
89 * early TLB into the .data section so that it not get cleared
90 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
91 */
92u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
93
Patrick Delaunayade4e042021-05-07 14:50:35 +020094struct lmb lmb;
95
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010096static void security_init(void)
97{
98 /* Disable the backup domain write protection */
99 /* the protection is enable at each reset by hardware */
100 /* And must be disable by software */
101 setbits_le32(PWR_CR1, PWR_CR1_DBP);
102
103 while (!(readl(PWR_CR1) & PWR_CR1_DBP))
104 ;
105
106 /* If RTC clock isn't enable so this is a cold boot then we need
107 * to reset the backup domain
108 */
109 if (!(readl(RCC_BDCR) & RCC_BDCR_RTCSRC)) {
110 setbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
111 while (!(readl(RCC_BDCR) & RCC_BDCR_VSWRST))
112 ;
113 clrbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
114 }
115
116 /* allow non secure access in Write/Read for all peripheral */
117 writel(GENMASK(25, 0), ETZPC_DECPROT0);
118
119 /* Open SYSRAM for no secure access */
120 writel(0x0, ETZPC_TZMA1_SIZE);
121
122 /* enable TZC1 TZC2 clock */
123 writel(BIT(11) | BIT(12), RCC_MP_APB5ENSETR);
124
125 /* Region 0 set to no access by default */
126 /* bit 0 / 16 => nsaid0 read/write Enable
127 * bit 1 / 17 => nsaid1 read/write Enable
128 * ...
129 * bit 15 / 31 => nsaid15 read/write Enable
130 */
131 writel(0xFFFFFFFF, TZC_REGION_ID_ACCESS0);
132 /* bit 30 / 31 => Secure Global Enable : write/read */
133 /* bit 0 / 1 => Region Enable for filter 0/1 */
134 writel(BIT(0) | BIT(1) | BIT(30) | BIT(31), TZC_REGION_ATTRIBUTE0);
135
136 /* Enable Filter 0 and 1 */
137 setbits_le32(TZC_GATE_KEEPER, BIT(0) | BIT(1));
138
139 /* RCC trust zone deactivated */
140 writel(0x0, RCC_TZCR);
141
142 /* TAMP: deactivate the internal tamper
143 * Bit 23 ITAMP8E: monotonic counter overflow
144 * Bit 20 ITAMP5E: RTC calendar overflow
145 * Bit 19 ITAMP4E: HSE monitoring
146 * Bit 18 ITAMP3E: LSE monitoring
147 * Bit 16 ITAMP1E: RTC power domain supply monitoring
148 */
149 writel(0x0, TAMP_CR1);
Patrick Delaunay59a54e32019-02-27 17:01:26 +0100150
151 /* GPIOZ: deactivate the security */
152 writel(BIT(0), RCC_MP_AHB5ENSETR);
153 writel(0x0, GPIOZ_SECCFGR);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100154}
155
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100156/*
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100157 * Debug init
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100158 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100159static void dbgmcu_init(void)
160{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200161 /*
162 * Freeze IWDG2 if Cortex-A7 is in debug mode
163 * done in TF-A for TRUSTED boot and
164 * DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE
165 */
Patrick Delaunayf42045b2021-10-11 09:52:50 +0200166 if (bsec_dbgswenable()) {
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200167 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200168 setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200169 }
170}
171
172void spl_board_init(void)
173{
Patrick Delaunay97887082021-10-11 09:52:48 +0200174 struct udevice *dev;
175 int ret;
176
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200177 dbgmcu_init();
Patrick Delaunay97887082021-10-11 09:52:48 +0200178
179 /* force probe of BSEC driver to shadow the upper OTP */
180 ret = uclass_get_device_by_driver(UCLASS_MISC, DM_DRIVER_GET(stm32mp_bsec), &dev);
181 if (ret)
182 log_warning("BSEC probe failed: %d\n", ret);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100183}
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100184
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100185/* get bootmode from ROM code boot context: saved in TAMP register */
186static void update_bootmode(void)
187{
188 u32 boot_mode;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100189 u32 bootrom_itf = readl(BOOTROM_PARAM_ADDR);
190 u32 bootrom_device, bootrom_instance;
191
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100192 /* enable TAMP clock = RTCAPBEN */
193 writel(BIT(8), RCC_MP_APB5ENSETR);
194
195 /* read bootrom context */
Patrick Delaunay08772f62018-03-20 10:54:53 +0100196 bootrom_device =
197 (bootrom_itf & BOOTROM_MODE_MASK) >> BOOTROM_MODE_SHIFT;
198 bootrom_instance =
199 (bootrom_itf & BOOTROM_INSTANCE_MASK) >> BOOTROM_INSTANCE_SHIFT;
200 boot_mode =
201 ((bootrom_device << BOOT_TYPE_SHIFT) & BOOT_TYPE_MASK) |
202 ((bootrom_instance << BOOT_INSTANCE_SHIFT) &
203 BOOT_INSTANCE_MASK);
204
205 /* save the boot mode in TAMP backup register */
206 clrsetbits_le32(TAMP_BOOT_CONTEXT,
207 TAMP_BOOT_MODE_MASK,
208 boot_mode << TAMP_BOOT_MODE_SHIFT);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100209}
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100210
211u32 get_bootmode(void)
212{
213 /* read bootmode from TAMP backup register */
214 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
215 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100216}
217
218/*
Patrick Delaunayaad84142021-02-05 13:53:33 +0100219 * weak function overidde: set the DDR/SYSRAM executable before to enable the
220 * MMU and configure DACR, for early early_enable_caches (SPL or pre-reloc)
221 */
222void dram_bank_mmu_setup(int bank)
223{
224 struct bd_info *bd = gd->bd;
225 int i;
226 phys_addr_t start;
227 phys_size_t size;
Patrick Delaunayade4e042021-05-07 14:50:35 +0200228 bool use_lmb = false;
229 enum dcache_option option;
Patrick Delaunayaad84142021-02-05 13:53:33 +0100230
231 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
232 start = ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE);
233 size = ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE);
234 } else if (gd->flags & GD_FLG_RELOC) {
235 /* bd->bi_dram is available only after relocation */
236 start = bd->bi_dram[bank].start;
237 size = bd->bi_dram[bank].size;
Patrick Delaunayade4e042021-05-07 14:50:35 +0200238 use_lmb = true;
Patrick Delaunayaad84142021-02-05 13:53:33 +0100239 } else {
240 /* mark cacheable and executable the beggining of the DDR */
241 start = STM32_DDR_BASE;
242 size = CONFIG_DDR_CACHEABLE_SIZE;
243 }
244
245 for (i = start >> MMU_SECTION_SHIFT;
246 i < (start >> MMU_SECTION_SHIFT) + (size >> MMU_SECTION_SHIFT);
Patrick Delaunayade4e042021-05-07 14:50:35 +0200247 i++) {
248 option = DCACHE_DEFAULT_OPTION;
249 if (use_lmb && lmb_is_reserved_flags(&lmb, i << MMU_SECTION_SHIFT, LMB_NOMAP))
250 option = 0; /* INVALID ENTRY in TLB */
251 set_section_dcache(i, option);
252 }
Patrick Delaunayaad84142021-02-05 13:53:33 +0100253}
254/*
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200255 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
256 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
257 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
258 */
259static void early_enable_caches(void)
260{
261 /* I-cache is already enabled in start.S: cpu_init_cp15 */
262
263 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
264 return;
265
Patrice Chotard23e20b22021-02-24 13:53:27 +0100266 if (!(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))) {
267 gd->arch.tlb_size = PGTABLE_SIZE;
268 gd->arch.tlb_addr = (unsigned long)&early_tlb;
269 }
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200270
Patrick Delaunayaad84142021-02-05 13:53:33 +0100271 /* enable MMU (default configuration) */
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200272 dcache_enable();
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200273}
274
275/*
Patrick Delaunay08772f62018-03-20 10:54:53 +0100276 * Early system init
277 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100278int arch_cpu_init(void)
279{
Patrick Delaunay320d2662018-05-17 14:50:46 +0200280 u32 boot_mode;
281
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200282 early_enable_caches();
283
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100284 /* early armv7 timer init: needed for polling */
285 timer_init();
286
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200287 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
288 security_init();
289 update_bootmode();
Fabien Dessenne7bff9712019-10-30 14:38:30 +0100290 }
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200291/* reset copro state in SPL, when used, or in U-Boot */
292 if (!IS_ENABLED(CONFIG_SPL) || IS_ENABLED(CONFIG_SPL_BUILD)) {
293 /* Reset Coprocessor state unless it wakes up from Standby power mode */
294 if (!(readl(PWR_MCUCR) & PWR_MCUCR_SBF)) {
295 writel(TAMP_COPRO_STATE_OFF, TAMP_COPRO_STATE);
296 writel(0, TAMP_COPRO_RSC_TBL_ADDRESS);
297 }
298 }
Patrick Delaunay320d2662018-05-17 14:50:46 +0200299
Patrick Delaunay320d2662018-05-17 14:50:46 +0200300 boot_mode = get_bootmode();
301
Patrick Delaunay5a05af82021-02-25 13:37:01 +0100302 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) &&
303 (boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
Patrick Delaunay320d2662018-05-17 14:50:46 +0200304 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200305 else if (IS_ENABLED(CONFIG_DEBUG_UART) && IS_ENABLED(CONFIG_SPL_BUILD))
Patrick Delaunay320d2662018-05-17 14:50:46 +0200306 debug_uart_init();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100307
308 return 0;
309}
310
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100311void enable_caches(void)
312{
Patrick Delaunayade4e042021-05-07 14:50:35 +0200313 /* parse device tree when data cache is still activated */
314 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
315
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200316 /* I-cache is already enabled in start.S: icache_enable() not needed */
317
318 /* deactivate the data cache, early enabled in arch_cpu_init() */
319 dcache_disable();
320 /*
321 * update MMU after relocation and enable the data cache
322 * warning: the TLB location udpated in board_f.c::reserve_mmu
323 */
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100324 dcache_enable();
325}
326
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100327static u32 read_idc(void)
328{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200329 /* DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE */
330 if (bsec_dbgswenable()) {
331 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100332
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200333 return readl(DBGMCU_IDC);
334 }
335
336 if (CONFIG_IS_ENABLED(STM32MP15x))
337 return CPU_DEV_STM32MP15; /* STM32MP15x and unknown revision */
338 else
339 return 0x0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100340}
341
Patrick Delaunay7802a442020-03-18 09:24:48 +0100342u32 get_cpu_dev(void)
343{
344 return (read_idc() & DBGMCU_IDC_DEV_ID_MASK) >> DBGMCU_IDC_DEV_ID_SHIFT;
345}
346
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100347u32 get_cpu_rev(void)
348{
349 return (read_idc() & DBGMCU_IDC_REV_ID_MASK) >> DBGMCU_IDC_REV_ID_SHIFT;
350}
351
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100352static u32 get_otp(int index, int shift, int mask)
353{
354 int ret;
355 struct udevice *dev;
356 u32 otp = 0;
357
358 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700359 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100360 &dev);
361
362 if (!ret)
363 ret = misc_read(dev, STM32_BSEC_SHADOW(index),
364 &otp, sizeof(otp));
365
366 return (otp >> shift) & mask;
367}
368
369/* Get Device Part Number (RPN) from OTP */
370static u32 get_cpu_rpn(void)
371{
372 return get_otp(BSEC_OTP_RPN, RPN_SHIFT, RPN_MASK);
373}
374
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100375u32 get_cpu_type(void)
376{
Patrick Delaunay7802a442020-03-18 09:24:48 +0100377 return (get_cpu_dev() << 16) | get_cpu_rpn();
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100378}
379
380/* Get Package options from OTP */
Patrick Delaunay24cb4582019-07-05 17:20:13 +0200381u32 get_cpu_package(void)
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100382{
383 return get_otp(BSEC_OTP_PKG, PKG_SHIFT, PKG_MASK);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100384}
385
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200386static const char * const soc_type[] = {
387 "????",
388 "151C", "151A", "151F", "151D",
389 "153C", "153A", "153F", "153D",
390 "157C", "157A", "157F", "157D"
391};
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100392
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200393static const char * const soc_pkg[] = { "??", "AD", "AC", "AB", "AA" };
394static const char * const soc_rev[] = { "?", "A", "B", "Z" };
395
396static void get_cpu_string_offsets(unsigned int *type, unsigned int *pkg,
397 unsigned int *rev)
398{
399 u32 cpu_type = get_cpu_type();
400 u32 ct = cpu_type & ~(BIT(7) | BIT(0));
401 u32 cm = ((cpu_type & BIT(7)) >> 6) | (cpu_type & BIT(0));
402 u32 cp = get_cpu_package();
403
404 /* Bits 0 and 7 are the ACDF, 00:C 01:A 10:F 11:D */
405 switch (ct) {
406 case CPU_STM32MP151Cxx:
407 *type = cm + 1;
Patrick Delaunay050fed82020-02-26 11:26:43 +0100408 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100409 case CPU_STM32MP153Cxx:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200410 *type = cm + 5;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100411 break;
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200412 case CPU_STM32MP157Cxx:
413 *type = cm + 9;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100414 break;
415 default:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200416 *type = 0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100417 break;
418 }
419
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100420 /* Package */
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200421 switch (cp) {
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100422 case PKG_AA_LBGA448:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100423 case PKG_AB_LBGA354:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100424 case PKG_AC_TFBGA361:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100425 case PKG_AD_TFBGA257:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200426 *pkg = cp;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100427 break;
428 default:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200429 *pkg = 0;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100430 break;
431 }
432
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200433 /* Revision */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100434 switch (get_cpu_rev()) {
435 case CPU_REVA:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200436 *rev = 1;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100437 break;
438 case CPU_REVB:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200439 *rev = 2;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100440 break;
Patrick Delaunaycf0818b2020-01-28 10:11:06 +0100441 case CPU_REVZ:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200442 *rev = 3;
Patrick Delaunaycf0818b2020-01-28 10:11:06 +0100443 break;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100444 default:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200445 *rev = 0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100446 break;
447 }
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200448}
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100449
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200450void get_soc_name(char name[SOC_NAME_SIZE])
451{
452 unsigned int type, pkg, rev;
453
454 get_cpu_string_offsets(&type, &pkg, &rev);
455
456 snprintf(name, SOC_NAME_SIZE, "STM32MP%s%s Rev.%s",
457 soc_type[type], soc_pkg[pkg], soc_rev[rev]);
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100458}
459
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200460/* used when CONFIG_DISPLAY_CPUINFO is activated */
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100461int print_cpuinfo(void)
462{
463 char name[SOC_NAME_SIZE];
464
465 get_soc_name(name);
466 printf("CPU: %s\n", name);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100467
468 return 0;
469}
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100470
Patrick Delaunay08772f62018-03-20 10:54:53 +0100471static void setup_boot_mode(void)
472{
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100473 const u32 serial_addr[] = {
474 STM32_USART1_BASE,
475 STM32_USART2_BASE,
476 STM32_USART3_BASE,
477 STM32_UART4_BASE,
478 STM32_UART5_BASE,
479 STM32_USART6_BASE,
480 STM32_UART7_BASE,
481 STM32_UART8_BASE
482 };
Patrick Delaunay3c1057c2021-07-06 17:19:45 +0200483 const u32 sdmmc_addr[] = {
484 STM32_SDMMC1_BASE,
485 STM32_SDMMC2_BASE,
486 STM32_SDMMC3_BASE
487 };
Patrick Delaunay08772f62018-03-20 10:54:53 +0100488 char cmd[60];
489 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
490 u32 boot_mode =
491 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunaye609e132019-06-21 15:26:39 +0200492 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100493 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100494 struct udevice *dev;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100495
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100496 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
497 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100498 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
499 case BOOT_SERIAL_UART:
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100500 if (instance > ARRAY_SIZE(serial_addr))
501 break;
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100502 /* serial : search associated node in devicetree */
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100503 sprintf(cmd, "serial@%x", serial_addr[instance]);
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100504 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev)) {
Patrick Delaunayb9d5e3a2021-02-25 13:37:02 +0100505 /* restore console on error */
506 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL))
507 gd->flags &= ~(GD_FLG_SILENT |
508 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200509 log_err("uart%d = %s not found in device tree!\n",
510 instance + 1, cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100511 break;
Patrick Delaunayb9d5e3a2021-02-25 13:37:02 +0100512 }
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100513 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100514 env_set("boot_device", "serial");
Patrick Delaunay08772f62018-03-20 10:54:53 +0100515 env_set("boot_instance", cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100516
517 /* restore console on uart when not used */
Patrick Delaunay5a05af82021-02-25 13:37:01 +0100518 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) && gd->cur_serial_dev != dev) {
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100519 gd->flags &= ~(GD_FLG_SILENT |
520 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200521 log_info("serial boot with console enabled!\n");
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100522 }
Patrick Delaunay08772f62018-03-20 10:54:53 +0100523 break;
524 case BOOT_SERIAL_USB:
525 env_set("boot_device", "usb");
526 env_set("boot_instance", "0");
527 break;
528 case BOOT_FLASH_SD:
529 case BOOT_FLASH_EMMC:
Patrick Delaunay3c1057c2021-07-06 17:19:45 +0200530 if (instance > ARRAY_SIZE(sdmmc_addr))
531 break;
532 /* search associated sdmmc node in devicetree */
533 sprintf(cmd, "mmc@%x", sdmmc_addr[instance]);
534 if (uclass_get_device_by_name(UCLASS_MMC, cmd, &dev)) {
535 printf("mmc%d = %s not found in device tree!\n",
536 instance, cmd);
537 break;
538 }
539 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay08772f62018-03-20 10:54:53 +0100540 env_set("boot_device", "mmc");
541 env_set("boot_instance", cmd);
542 break;
543 case BOOT_FLASH_NAND:
544 env_set("boot_device", "nand");
545 env_set("boot_instance", "0");
546 break;
Patrick Delaunayb664a742020-03-18 09:22:52 +0100547 case BOOT_FLASH_SPINAND:
548 env_set("boot_device", "spi-nand");
549 env_set("boot_instance", "0");
550 break;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100551 case BOOT_FLASH_NOR:
552 env_set("boot_device", "nor");
553 env_set("boot_instance", "0");
554 break;
555 default:
Patrick Delaunay8b71b202021-07-08 10:53:56 +0200556 env_set("boot_device", "invalid");
557 env_set("boot_instance", "");
558 log_err("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100559 break;
560 }
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100561
562 switch (forced_mode) {
563 case BOOT_FASTBOOT:
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200564 log_info("Enter fastboot!\n");
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100565 env_set("preboot", "env set preboot; fastboot 0");
566 break;
567 case BOOT_STM32PROG:
568 env_set("boot_device", "usb");
569 env_set("boot_instance", "0");
570 break;
571 case BOOT_UMS_MMC0:
572 case BOOT_UMS_MMC1:
573 case BOOT_UMS_MMC2:
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200574 log_info("Enter UMS!\n");
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100575 instance = forced_mode - BOOT_UMS_MMC0;
576 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
577 env_set("preboot", cmd);
578 break;
579 case BOOT_RECOVERY:
580 env_set("preboot", "env set preboot; run altbootcmd");
581 break;
582 case BOOT_NORMAL:
583 break;
584 default:
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100585 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100586 break;
587 }
588
589 /* clear TAMP for next reboot */
590 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100591}
592
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200593/*
594 * If there is no MAC address in the environment, then it will be initialized
595 * (silently) from the value in the OTP.
596 */
Marek Vasute71b9a62019-12-18 16:52:19 +0100597__weak int setup_mac_address(void)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200598{
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200599 int ret;
600 int i;
601 u32 otp[2];
602 uchar enetaddr[6];
603 struct udevice *dev;
604
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200605 if (!IS_ENABLED(CONFIG_NET))
606 return 0;
607
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200608 /* MAC already in environment */
609 if (eth_env_get_enetaddr("ethaddr", enetaddr))
610 return 0;
611
612 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700613 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200614 &dev);
615 if (ret)
616 return ret;
617
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100618 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200619 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700620 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200621 return ret;
622
623 for (i = 0; i < 6; i++)
624 enetaddr[i] = ((uint8_t *)&otp)[i];
625
626 if (!is_valid_ethaddr(enetaddr)) {
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100627 log_err("invalid MAC address in OTP %pM\n", enetaddr);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200628 return -EINVAL;
629 }
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100630 log_debug("OTP MAC address = %pM\n", enetaddr);
Patrick Delaunaycf8df342020-04-07 16:07:46 +0200631 ret = eth_env_set_enetaddr("ethaddr", enetaddr);
632 if (ret)
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100633 log_err("Failed to set mac address %pM from OTP: %d\n", enetaddr, ret);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200634
635 return 0;
636}
637
638static int setup_serial_number(void)
639{
640 char serial_string[25];
641 u32 otp[3] = {0, 0, 0 };
642 struct udevice *dev;
643 int ret;
644
645 if (env_get("serial#"))
646 return 0;
647
648 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700649 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200650 &dev);
651 if (ret)
652 return ret;
653
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100654 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200655 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700656 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200657 return ret;
658
Patrick Delaunay8983ba22019-02-27 17:01:25 +0100659 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200660 env_set("serial#", serial_string);
661
662 return 0;
663}
664
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200665static void setup_soc_type_pkg_rev(void)
666{
667 unsigned int type, pkg, rev;
668
669 get_cpu_string_offsets(&type, &pkg, &rev);
670
671 env_set("soc_type", soc_type[type]);
672 env_set("soc_pkg", soc_pkg[pkg]);
673 env_set("soc_rev", soc_rev[rev]);
674}
675
Patrick Delaunay08772f62018-03-20 10:54:53 +0100676int arch_misc_init(void)
677{
678 setup_boot_mode();
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200679 setup_mac_address();
680 setup_serial_number();
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200681 setup_soc_type_pkg_rev();
Patrick Delaunay08772f62018-03-20 10:54:53 +0100682
683 return 0;
684}