blob: 382067190ca29737045498ec39a6dd6cc4e83e9a [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 */
5#include <common.h>
6#include <clk.h>
Simon Glass9edefc22019-11-14 12:57:37 -07007#include <cpu_func.h>
Patrick Delaunay320d2662018-05-17 14:50:46 +02008#include <debug_uart.h>
Simon Glass9fb625c2019-08-01 09:46:51 -06009#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020012#include <misc.h>
Simon Glass90526e92020-05-10 11:39:56 -060013#include <net.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010014#include <asm/io.h>
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +020015#include <asm/arch/bsec.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010016#include <asm/arch/stm32.h>
Patrick Delaunay96583cd2018-03-19 19:09:21 +010017#include <asm/arch/sys_proto.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020018#include <dm/device.h>
Patrick Delaunay08772f62018-03-20 10:54:53 +010019#include <dm/uclass.h>
Simon Glasscd93d622020-05-10 11:40:13 -060020#include <linux/bitops.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010021
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010022/* RCC register */
23#define RCC_TZCR (STM32_RCC_BASE + 0x00)
24#define RCC_DBGCFGR (STM32_RCC_BASE + 0x080C)
25#define RCC_BDCR (STM32_RCC_BASE + 0x0140)
26#define RCC_MP_APB5ENSETR (STM32_RCC_BASE + 0x0208)
Patrick Delaunay59a54e32019-02-27 17:01:26 +010027#define RCC_MP_AHB5ENSETR (STM32_RCC_BASE + 0x0210)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010028#define RCC_BDCR_VSWRST BIT(31)
29#define RCC_BDCR_RTCSRC GENMASK(17, 16)
30#define RCC_DBGCFGR_DBGCKEN BIT(8)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010031
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010032/* Security register */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010033#define ETZPC_TZMA1_SIZE (STM32_ETZPC_BASE + 0x04)
34#define ETZPC_DECPROT0 (STM32_ETZPC_BASE + 0x10)
35
36#define TZC_GATE_KEEPER (STM32_TZC_BASE + 0x008)
37#define TZC_REGION_ATTRIBUTE0 (STM32_TZC_BASE + 0x110)
38#define TZC_REGION_ID_ACCESS0 (STM32_TZC_BASE + 0x114)
39
40#define TAMP_CR1 (STM32_TAMP_BASE + 0x00)
41
42#define PWR_CR1 (STM32_PWR_BASE + 0x00)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010043#define PWR_MCUCR (STM32_PWR_BASE + 0x14)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010044#define PWR_CR1_DBP BIT(8)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010045#define PWR_MCUCR_SBF BIT(6)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010046
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010047/* DBGMCU register */
Patrick Delaunay96583cd2018-03-19 19:09:21 +010048#define DBGMCU_IDC (STM32_DBGMCU_BASE + 0x00)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010049#define DBGMCU_APB4FZ1 (STM32_DBGMCU_BASE + 0x2C)
50#define DBGMCU_APB4FZ1_IWDG2 BIT(2)
Patrick Delaunay96583cd2018-03-19 19:09:21 +010051#define DBGMCU_IDC_DEV_ID_MASK GENMASK(11, 0)
52#define DBGMCU_IDC_DEV_ID_SHIFT 0
53#define DBGMCU_IDC_REV_ID_MASK GENMASK(31, 16)
54#define DBGMCU_IDC_REV_ID_SHIFT 16
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010055
Patrick Delaunay59a54e32019-02-27 17:01:26 +010056/* GPIOZ registers */
57#define GPIOZ_SECCFGR 0x54004030
58
Patrick Delaunay08772f62018-03-20 10:54:53 +010059/* boot interface from Bootrom
60 * - boot instance = bit 31:16
61 * - boot device = bit 15:0
62 */
63#define BOOTROM_PARAM_ADDR 0x2FFC0078
64#define BOOTROM_MODE_MASK GENMASK(15, 0)
65#define BOOTROM_MODE_SHIFT 0
66#define BOOTROM_INSTANCE_MASK GENMASK(31, 16)
67#define BOOTROM_INSTANCE_SHIFT 16
68
Patrick Delaunay35d568f2019-02-27 17:01:13 +010069/* Device Part Number (RPN) = OTP_DATA1 lower 8 bits */
70#define RPN_SHIFT 0
71#define RPN_MASK GENMASK(7, 0)
72
73/* Package = bit 27:29 of OTP16
74 * - 100: LBGA448 (FFI) => AA = LFBGA 18x18mm 448 balls p. 0.8mm
75 * - 011: LBGA354 (LCI) => AB = LFBGA 16x16mm 359 balls p. 0.8mm
76 * - 010: TFBGA361 (FFC) => AC = TFBGA 12x12mm 361 balls p. 0.5mm
77 * - 001: TFBGA257 (LCC) => AD = TFBGA 10x10mm 257 balls p. 0.5mm
78 * - others: Reserved
79 */
80#define PKG_SHIFT 27
81#define PKG_MASK GENMASK(2, 0)
82
Patrick Delaunay7e8471c2020-04-30 16:30:20 +020083/*
84 * early TLB into the .data section so that it not get cleared
85 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
86 */
87u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
88
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010089#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunay654706b2020-04-01 09:07:33 +020090#ifndef CONFIG_TFABOOT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010091static void security_init(void)
92{
93 /* Disable the backup domain write protection */
94 /* the protection is enable at each reset by hardware */
95 /* And must be disable by software */
96 setbits_le32(PWR_CR1, PWR_CR1_DBP);
97
98 while (!(readl(PWR_CR1) & PWR_CR1_DBP))
99 ;
100
101 /* If RTC clock isn't enable so this is a cold boot then we need
102 * to reset the backup domain
103 */
104 if (!(readl(RCC_BDCR) & RCC_BDCR_RTCSRC)) {
105 setbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
106 while (!(readl(RCC_BDCR) & RCC_BDCR_VSWRST))
107 ;
108 clrbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
109 }
110
111 /* allow non secure access in Write/Read for all peripheral */
112 writel(GENMASK(25, 0), ETZPC_DECPROT0);
113
114 /* Open SYSRAM for no secure access */
115 writel(0x0, ETZPC_TZMA1_SIZE);
116
117 /* enable TZC1 TZC2 clock */
118 writel(BIT(11) | BIT(12), RCC_MP_APB5ENSETR);
119
120 /* Region 0 set to no access by default */
121 /* bit 0 / 16 => nsaid0 read/write Enable
122 * bit 1 / 17 => nsaid1 read/write Enable
123 * ...
124 * bit 15 / 31 => nsaid15 read/write Enable
125 */
126 writel(0xFFFFFFFF, TZC_REGION_ID_ACCESS0);
127 /* bit 30 / 31 => Secure Global Enable : write/read */
128 /* bit 0 / 1 => Region Enable for filter 0/1 */
129 writel(BIT(0) | BIT(1) | BIT(30) | BIT(31), TZC_REGION_ATTRIBUTE0);
130
131 /* Enable Filter 0 and 1 */
132 setbits_le32(TZC_GATE_KEEPER, BIT(0) | BIT(1));
133
134 /* RCC trust zone deactivated */
135 writel(0x0, RCC_TZCR);
136
137 /* TAMP: deactivate the internal tamper
138 * Bit 23 ITAMP8E: monotonic counter overflow
139 * Bit 20 ITAMP5E: RTC calendar overflow
140 * Bit 19 ITAMP4E: HSE monitoring
141 * Bit 18 ITAMP3E: LSE monitoring
142 * Bit 16 ITAMP1E: RTC power domain supply monitoring
143 */
144 writel(0x0, TAMP_CR1);
Patrick Delaunay59a54e32019-02-27 17:01:26 +0100145
146 /* GPIOZ: deactivate the security */
147 writel(BIT(0), RCC_MP_AHB5ENSETR);
148 writel(0x0, GPIOZ_SECCFGR);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100149}
Patrick Delaunay654706b2020-04-01 09:07:33 +0200150#endif /* CONFIG_TFABOOT */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100151
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100152/*
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100153 * Debug init
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100154 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100155static void dbgmcu_init(void)
156{
157 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
158
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200159 /*
160 * Freeze IWDG2 if Cortex-A7 is in debug mode
161 * done in TF-A for TRUSTED boot and
162 * DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE
163 */
164 if (!IS_ENABLED(CONFIG_TFABOOT) && bsec_dbgswenable())
165 setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100166}
167#endif /* !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) */
168
Patrick Delaunay654706b2020-04-01 09:07:33 +0200169#if !defined(CONFIG_TFABOOT) && \
Patrick Delaunayabf26782019-02-12 11:44:39 +0100170 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100171/* get bootmode from ROM code boot context: saved in TAMP register */
172static void update_bootmode(void)
173{
174 u32 boot_mode;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100175 u32 bootrom_itf = readl(BOOTROM_PARAM_ADDR);
176 u32 bootrom_device, bootrom_instance;
177
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100178 /* enable TAMP clock = RTCAPBEN */
179 writel(BIT(8), RCC_MP_APB5ENSETR);
180
181 /* read bootrom context */
Patrick Delaunay08772f62018-03-20 10:54:53 +0100182 bootrom_device =
183 (bootrom_itf & BOOTROM_MODE_MASK) >> BOOTROM_MODE_SHIFT;
184 bootrom_instance =
185 (bootrom_itf & BOOTROM_INSTANCE_MASK) >> BOOTROM_INSTANCE_SHIFT;
186 boot_mode =
187 ((bootrom_device << BOOT_TYPE_SHIFT) & BOOT_TYPE_MASK) |
188 ((bootrom_instance << BOOT_INSTANCE_SHIFT) &
189 BOOT_INSTANCE_MASK);
190
191 /* save the boot mode in TAMP backup register */
192 clrsetbits_le32(TAMP_BOOT_CONTEXT,
193 TAMP_BOOT_MODE_MASK,
194 boot_mode << TAMP_BOOT_MODE_SHIFT);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100195}
Patrick Delaunay08772f62018-03-20 10:54:53 +0100196#endif
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100197
198u32 get_bootmode(void)
199{
200 /* read bootmode from TAMP backup register */
201 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
202 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100203}
204
205/*
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200206 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
207 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
208 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
209 */
210static void early_enable_caches(void)
211{
212 /* I-cache is already enabled in start.S: cpu_init_cp15 */
213
214 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
215 return;
216
217 gd->arch.tlb_size = PGTABLE_SIZE;
218 gd->arch.tlb_addr = (unsigned long)&early_tlb;
219
220 dcache_enable();
221
222 if (IS_ENABLED(CONFIG_SPL_BUILD))
223 mmu_set_region_dcache_behaviour(STM32_SYSRAM_BASE,
224 STM32_SYSRAM_SIZE,
225 DCACHE_DEFAULT_OPTION);
226 else
227 mmu_set_region_dcache_behaviour(STM32_DDR_BASE, STM32_DDR_SIZE,
228 DCACHE_DEFAULT_OPTION);
229}
230
231/*
Patrick Delaunay08772f62018-03-20 10:54:53 +0100232 * Early system init
233 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100234int arch_cpu_init(void)
235{
Patrick Delaunay320d2662018-05-17 14:50:46 +0200236 u32 boot_mode;
237
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200238 early_enable_caches();
239
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100240 /* early armv7 timer init: needed for polling */
241 timer_init();
242
243#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
244 dbgmcu_init();
Patrick Delaunay654706b2020-04-01 09:07:33 +0200245#ifndef CONFIG_TFABOOT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100246 security_init();
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100247 update_bootmode();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100248#endif
Fabien Dessenne7bff9712019-10-30 14:38:30 +0100249 /* Reset Coprocessor state unless it wakes up from Standby power mode */
250 if (!(readl(PWR_MCUCR) & PWR_MCUCR_SBF)) {
251 writel(TAMP_COPRO_STATE_OFF, TAMP_COPRO_STATE);
252 writel(0, TAMP_COPRO_RSC_TBL_ADDRESS);
253 }
Patrick Delaunayabf26782019-02-12 11:44:39 +0100254#endif
Patrick Delaunay320d2662018-05-17 14:50:46 +0200255
Patrick Delaunay320d2662018-05-17 14:50:46 +0200256 boot_mode = get_bootmode();
257
258 if ((boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
259 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
260#if defined(CONFIG_DEBUG_UART) && \
Patrick Delaunay654706b2020-04-01 09:07:33 +0200261 !defined(CONFIG_TFABOOT) && \
Patrick Delaunay320d2662018-05-17 14:50:46 +0200262 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
263 else
264 debug_uart_init();
265#endif
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100266
267 return 0;
268}
269
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100270void enable_caches(void)
271{
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200272 /* I-cache is already enabled in start.S: icache_enable() not needed */
273
274 /* deactivate the data cache, early enabled in arch_cpu_init() */
275 dcache_disable();
276 /*
277 * update MMU after relocation and enable the data cache
278 * warning: the TLB location udpated in board_f.c::reserve_mmu
279 */
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100280 dcache_enable();
281}
282
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100283static u32 read_idc(void)
284{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200285 /* DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE */
286 if (bsec_dbgswenable()) {
287 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100288
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200289 return readl(DBGMCU_IDC);
290 }
291
292 if (CONFIG_IS_ENABLED(STM32MP15x))
293 return CPU_DEV_STM32MP15; /* STM32MP15x and unknown revision */
294 else
295 return 0x0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100296}
297
Patrick Delaunay7802a442020-03-18 09:24:48 +0100298u32 get_cpu_dev(void)
299{
300 return (read_idc() & DBGMCU_IDC_DEV_ID_MASK) >> DBGMCU_IDC_DEV_ID_SHIFT;
301}
302
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100303u32 get_cpu_rev(void)
304{
305 return (read_idc() & DBGMCU_IDC_REV_ID_MASK) >> DBGMCU_IDC_REV_ID_SHIFT;
306}
307
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100308static u32 get_otp(int index, int shift, int mask)
309{
310 int ret;
311 struct udevice *dev;
312 u32 otp = 0;
313
314 ret = uclass_get_device_by_driver(UCLASS_MISC,
315 DM_GET_DRIVER(stm32mp_bsec),
316 &dev);
317
318 if (!ret)
319 ret = misc_read(dev, STM32_BSEC_SHADOW(index),
320 &otp, sizeof(otp));
321
322 return (otp >> shift) & mask;
323}
324
325/* Get Device Part Number (RPN) from OTP */
326static u32 get_cpu_rpn(void)
327{
328 return get_otp(BSEC_OTP_RPN, RPN_SHIFT, RPN_MASK);
329}
330
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100331u32 get_cpu_type(void)
332{
Patrick Delaunay7802a442020-03-18 09:24:48 +0100333 return (get_cpu_dev() << 16) | get_cpu_rpn();
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100334}
335
336/* Get Package options from OTP */
Patrick Delaunay24cb4582019-07-05 17:20:13 +0200337u32 get_cpu_package(void)
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100338{
339 return get_otp(BSEC_OTP_PKG, PKG_SHIFT, PKG_MASK);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100340}
341
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100342void get_soc_name(char name[SOC_NAME_SIZE])
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100343{
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100344 char *cpu_s, *cpu_r, *pkg;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100345
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100346 /* MPUs Part Numbers */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100347 switch (get_cpu_type()) {
Patrick Delaunay050fed82020-02-26 11:26:43 +0100348 case CPU_STM32MP157Fxx:
349 cpu_s = "157F";
350 break;
351 case CPU_STM32MP157Dxx:
352 cpu_s = "157D";
353 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100354 case CPU_STM32MP157Cxx:
355 cpu_s = "157C";
356 break;
357 case CPU_STM32MP157Axx:
358 cpu_s = "157A";
359 break;
Patrick Delaunay050fed82020-02-26 11:26:43 +0100360 case CPU_STM32MP153Fxx:
361 cpu_s = "153F";
362 break;
363 case CPU_STM32MP153Dxx:
364 cpu_s = "153D";
365 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100366 case CPU_STM32MP153Cxx:
367 cpu_s = "153C";
368 break;
369 case CPU_STM32MP153Axx:
370 cpu_s = "153A";
371 break;
Patrick Delaunay050fed82020-02-26 11:26:43 +0100372 case CPU_STM32MP151Fxx:
373 cpu_s = "151F";
374 break;
375 case CPU_STM32MP151Dxx:
376 cpu_s = "151D";
377 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100378 case CPU_STM32MP151Cxx:
379 cpu_s = "151C";
380 break;
381 case CPU_STM32MP151Axx:
382 cpu_s = "151A";
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100383 break;
384 default:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100385 cpu_s = "????";
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100386 break;
387 }
388
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100389 /* Package */
390 switch (get_cpu_package()) {
391 case PKG_AA_LBGA448:
392 pkg = "AA";
393 break;
394 case PKG_AB_LBGA354:
395 pkg = "AB";
396 break;
397 case PKG_AC_TFBGA361:
398 pkg = "AC";
399 break;
400 case PKG_AD_TFBGA257:
401 pkg = "AD";
402 break;
403 default:
404 pkg = "??";
405 break;
406 }
407
408 /* REVISION */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100409 switch (get_cpu_rev()) {
410 case CPU_REVA:
411 cpu_r = "A";
412 break;
413 case CPU_REVB:
414 cpu_r = "B";
415 break;
Patrick Delaunaycf0818b2020-01-28 10:11:06 +0100416 case CPU_REVZ:
417 cpu_r = "Z";
418 break;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100419 default:
420 cpu_r = "?";
421 break;
422 }
423
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100424 snprintf(name, SOC_NAME_SIZE, "STM32MP%s%s Rev.%s", cpu_s, pkg, cpu_r);
425}
426
427#if defined(CONFIG_DISPLAY_CPUINFO)
428int print_cpuinfo(void)
429{
430 char name[SOC_NAME_SIZE];
431
432 get_soc_name(name);
433 printf("CPU: %s\n", name);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100434
435 return 0;
436}
437#endif /* CONFIG_DISPLAY_CPUINFO */
438
Patrick Delaunay08772f62018-03-20 10:54:53 +0100439static void setup_boot_mode(void)
440{
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100441 const u32 serial_addr[] = {
442 STM32_USART1_BASE,
443 STM32_USART2_BASE,
444 STM32_USART3_BASE,
445 STM32_UART4_BASE,
446 STM32_UART5_BASE,
447 STM32_USART6_BASE,
448 STM32_UART7_BASE,
449 STM32_UART8_BASE
450 };
Patrick Delaunay08772f62018-03-20 10:54:53 +0100451 char cmd[60];
452 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
453 u32 boot_mode =
454 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunaye609e132019-06-21 15:26:39 +0200455 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100456 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100457 struct udevice *dev;
458 int alias;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100459
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100460 pr_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
461 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100462 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
463 case BOOT_SERIAL_UART:
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100464 if (instance > ARRAY_SIZE(serial_addr))
465 break;
466 /* serial : search associated alias in devicetree */
467 sprintf(cmd, "serial@%x", serial_addr[instance]);
468 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev))
469 break;
470 if (fdtdec_get_alias_seq(gd->fdt_blob, "serial",
471 dev_of_offset(dev), &alias))
472 break;
473 sprintf(cmd, "%d", alias);
474 env_set("boot_device", "serial");
Patrick Delaunay08772f62018-03-20 10:54:53 +0100475 env_set("boot_instance", cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100476
477 /* restore console on uart when not used */
478 if (gd->cur_serial_dev != dev) {
479 gd->flags &= ~(GD_FLG_SILENT |
480 GD_FLG_DISABLE_CONSOLE);
481 printf("serial boot with console enabled!\n");
482 }
Patrick Delaunay08772f62018-03-20 10:54:53 +0100483 break;
484 case BOOT_SERIAL_USB:
485 env_set("boot_device", "usb");
486 env_set("boot_instance", "0");
487 break;
488 case BOOT_FLASH_SD:
489 case BOOT_FLASH_EMMC:
490 sprintf(cmd, "%d", instance);
491 env_set("boot_device", "mmc");
492 env_set("boot_instance", cmd);
493 break;
494 case BOOT_FLASH_NAND:
495 env_set("boot_device", "nand");
496 env_set("boot_instance", "0");
497 break;
Patrick Delaunayb664a742020-03-18 09:22:52 +0100498 case BOOT_FLASH_SPINAND:
499 env_set("boot_device", "spi-nand");
500 env_set("boot_instance", "0");
501 break;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100502 case BOOT_FLASH_NOR:
503 env_set("boot_device", "nor");
504 env_set("boot_instance", "0");
505 break;
506 default:
507 pr_debug("unexpected boot mode = %x\n", boot_mode);
508 break;
509 }
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100510
511 switch (forced_mode) {
512 case BOOT_FASTBOOT:
513 printf("Enter fastboot!\n");
514 env_set("preboot", "env set preboot; fastboot 0");
515 break;
516 case BOOT_STM32PROG:
517 env_set("boot_device", "usb");
518 env_set("boot_instance", "0");
519 break;
520 case BOOT_UMS_MMC0:
521 case BOOT_UMS_MMC1:
522 case BOOT_UMS_MMC2:
523 printf("Enter UMS!\n");
524 instance = forced_mode - BOOT_UMS_MMC0;
525 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
526 env_set("preboot", cmd);
527 break;
528 case BOOT_RECOVERY:
529 env_set("preboot", "env set preboot; run altbootcmd");
530 break;
531 case BOOT_NORMAL:
532 break;
533 default:
534 pr_debug("unexpected forced boot mode = %x\n", forced_mode);
535 break;
536 }
537
538 /* clear TAMP for next reboot */
539 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100540}
541
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200542/*
543 * If there is no MAC address in the environment, then it will be initialized
544 * (silently) from the value in the OTP.
545 */
Marek Vasute71b9a62019-12-18 16:52:19 +0100546__weak int setup_mac_address(void)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200547{
548#if defined(CONFIG_NET)
549 int ret;
550 int i;
551 u32 otp[2];
552 uchar enetaddr[6];
553 struct udevice *dev;
554
555 /* MAC already in environment */
556 if (eth_env_get_enetaddr("ethaddr", enetaddr))
557 return 0;
558
559 ret = uclass_get_device_by_driver(UCLASS_MISC,
560 DM_GET_DRIVER(stm32mp_bsec),
561 &dev);
562 if (ret)
563 return ret;
564
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100565 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200566 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700567 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200568 return ret;
569
570 for (i = 0; i < 6; i++)
571 enetaddr[i] = ((uint8_t *)&otp)[i];
572
573 if (!is_valid_ethaddr(enetaddr)) {
Manivannan Sadhasivambc9487d2019-05-02 13:26:45 +0530574 pr_err("invalid MAC address in OTP %pM\n", enetaddr);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200575 return -EINVAL;
576 }
577 pr_debug("OTP MAC address = %pM\n", enetaddr);
578 ret = !eth_env_set_enetaddr("ethaddr", enetaddr);
579 if (!ret)
580 pr_err("Failed to set mac address %pM from OTP: %d\n",
581 enetaddr, ret);
582#endif
583
584 return 0;
585}
586
587static int setup_serial_number(void)
588{
589 char serial_string[25];
590 u32 otp[3] = {0, 0, 0 };
591 struct udevice *dev;
592 int ret;
593
594 if (env_get("serial#"))
595 return 0;
596
597 ret = uclass_get_device_by_driver(UCLASS_MISC,
598 DM_GET_DRIVER(stm32mp_bsec),
599 &dev);
600 if (ret)
601 return ret;
602
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100603 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200604 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700605 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200606 return ret;
607
Patrick Delaunay8983ba22019-02-27 17:01:25 +0100608 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200609 env_set("serial#", serial_string);
610
611 return 0;
612}
613
Patrick Delaunay08772f62018-03-20 10:54:53 +0100614int arch_misc_init(void)
615{
616 setup_boot_mode();
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200617 setup_mac_address();
618 setup_serial_number();
Patrick Delaunay08772f62018-03-20 10:54:53 +0100619
620 return 0;
621}