blob: de7891b5c4a0c5354af9bf2bae7c55e4ecd3b102 [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>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020010#include <misc.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010011#include <asm/io.h>
12#include <asm/arch/stm32.h>
Patrick Delaunay96583cd2018-03-19 19:09:21 +010013#include <asm/arch/sys_proto.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020014#include <dm/device.h>
Patrick Delaunay08772f62018-03-20 10:54:53 +010015#include <dm/uclass.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010016
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010017/* RCC register */
18#define RCC_TZCR (STM32_RCC_BASE + 0x00)
19#define RCC_DBGCFGR (STM32_RCC_BASE + 0x080C)
20#define RCC_BDCR (STM32_RCC_BASE + 0x0140)
21#define RCC_MP_APB5ENSETR (STM32_RCC_BASE + 0x0208)
Patrick Delaunay59a54e32019-02-27 17:01:26 +010022#define RCC_MP_AHB5ENSETR (STM32_RCC_BASE + 0x0210)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010023#define RCC_BDCR_VSWRST BIT(31)
24#define RCC_BDCR_RTCSRC GENMASK(17, 16)
25#define RCC_DBGCFGR_DBGCKEN BIT(8)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010026
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010027/* Security register */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010028#define ETZPC_TZMA1_SIZE (STM32_ETZPC_BASE + 0x04)
29#define ETZPC_DECPROT0 (STM32_ETZPC_BASE + 0x10)
30
31#define TZC_GATE_KEEPER (STM32_TZC_BASE + 0x008)
32#define TZC_REGION_ATTRIBUTE0 (STM32_TZC_BASE + 0x110)
33#define TZC_REGION_ID_ACCESS0 (STM32_TZC_BASE + 0x114)
34
35#define TAMP_CR1 (STM32_TAMP_BASE + 0x00)
36
37#define PWR_CR1 (STM32_PWR_BASE + 0x00)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010038#define PWR_MCUCR (STM32_PWR_BASE + 0x14)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010039#define PWR_CR1_DBP BIT(8)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010040#define PWR_MCUCR_SBF BIT(6)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010041
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010042/* DBGMCU register */
Patrick Delaunay96583cd2018-03-19 19:09:21 +010043#define DBGMCU_IDC (STM32_DBGMCU_BASE + 0x00)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010044#define DBGMCU_APB4FZ1 (STM32_DBGMCU_BASE + 0x2C)
45#define DBGMCU_APB4FZ1_IWDG2 BIT(2)
Patrick Delaunay96583cd2018-03-19 19:09:21 +010046#define DBGMCU_IDC_DEV_ID_MASK GENMASK(11, 0)
47#define DBGMCU_IDC_DEV_ID_SHIFT 0
48#define DBGMCU_IDC_REV_ID_MASK GENMASK(31, 16)
49#define DBGMCU_IDC_REV_ID_SHIFT 16
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010050
Patrick Delaunay59a54e32019-02-27 17:01:26 +010051/* GPIOZ registers */
52#define GPIOZ_SECCFGR 0x54004030
53
Patrick Delaunay08772f62018-03-20 10:54:53 +010054/* boot interface from Bootrom
55 * - boot instance = bit 31:16
56 * - boot device = bit 15:0
57 */
58#define BOOTROM_PARAM_ADDR 0x2FFC0078
59#define BOOTROM_MODE_MASK GENMASK(15, 0)
60#define BOOTROM_MODE_SHIFT 0
61#define BOOTROM_INSTANCE_MASK GENMASK(31, 16)
62#define BOOTROM_INSTANCE_SHIFT 16
63
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020064/* BSEC OTP index */
Patrick Delaunay35d568f2019-02-27 17:01:13 +010065#define BSEC_OTP_RPN 1
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020066#define BSEC_OTP_SERIAL 13
Patrick Delaunay35d568f2019-02-27 17:01:13 +010067#define BSEC_OTP_PKG 16
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020068#define BSEC_OTP_MAC 57
69
Patrick Delaunay35d568f2019-02-27 17:01:13 +010070/* Device Part Number (RPN) = OTP_DATA1 lower 8 bits */
71#define RPN_SHIFT 0
72#define RPN_MASK GENMASK(7, 0)
73
74/* Package = bit 27:29 of OTP16
75 * - 100: LBGA448 (FFI) => AA = LFBGA 18x18mm 448 balls p. 0.8mm
76 * - 011: LBGA354 (LCI) => AB = LFBGA 16x16mm 359 balls p. 0.8mm
77 * - 010: TFBGA361 (FFC) => AC = TFBGA 12x12mm 361 balls p. 0.5mm
78 * - 001: TFBGA257 (LCC) => AD = TFBGA 10x10mm 257 balls p. 0.5mm
79 * - others: Reserved
80 */
81#define PKG_SHIFT 27
82#define PKG_MASK GENMASK(2, 0)
83
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010084#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunayabf26782019-02-12 11:44:39 +010085#ifndef CONFIG_STM32MP1_TRUSTED
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010086static void security_init(void)
87{
88 /* Disable the backup domain write protection */
89 /* the protection is enable at each reset by hardware */
90 /* And must be disable by software */
91 setbits_le32(PWR_CR1, PWR_CR1_DBP);
92
93 while (!(readl(PWR_CR1) & PWR_CR1_DBP))
94 ;
95
96 /* If RTC clock isn't enable so this is a cold boot then we need
97 * to reset the backup domain
98 */
99 if (!(readl(RCC_BDCR) & RCC_BDCR_RTCSRC)) {
100 setbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
101 while (!(readl(RCC_BDCR) & RCC_BDCR_VSWRST))
102 ;
103 clrbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
104 }
105
106 /* allow non secure access in Write/Read for all peripheral */
107 writel(GENMASK(25, 0), ETZPC_DECPROT0);
108
109 /* Open SYSRAM for no secure access */
110 writel(0x0, ETZPC_TZMA1_SIZE);
111
112 /* enable TZC1 TZC2 clock */
113 writel(BIT(11) | BIT(12), RCC_MP_APB5ENSETR);
114
115 /* Region 0 set to no access by default */
116 /* bit 0 / 16 => nsaid0 read/write Enable
117 * bit 1 / 17 => nsaid1 read/write Enable
118 * ...
119 * bit 15 / 31 => nsaid15 read/write Enable
120 */
121 writel(0xFFFFFFFF, TZC_REGION_ID_ACCESS0);
122 /* bit 30 / 31 => Secure Global Enable : write/read */
123 /* bit 0 / 1 => Region Enable for filter 0/1 */
124 writel(BIT(0) | BIT(1) | BIT(30) | BIT(31), TZC_REGION_ATTRIBUTE0);
125
126 /* Enable Filter 0 and 1 */
127 setbits_le32(TZC_GATE_KEEPER, BIT(0) | BIT(1));
128
129 /* RCC trust zone deactivated */
130 writel(0x0, RCC_TZCR);
131
132 /* TAMP: deactivate the internal tamper
133 * Bit 23 ITAMP8E: monotonic counter overflow
134 * Bit 20 ITAMP5E: RTC calendar overflow
135 * Bit 19 ITAMP4E: HSE monitoring
136 * Bit 18 ITAMP3E: LSE monitoring
137 * Bit 16 ITAMP1E: RTC power domain supply monitoring
138 */
139 writel(0x0, TAMP_CR1);
Patrick Delaunay59a54e32019-02-27 17:01:26 +0100140
141 /* GPIOZ: deactivate the security */
142 writel(BIT(0), RCC_MP_AHB5ENSETR);
143 writel(0x0, GPIOZ_SECCFGR);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100144}
Patrick Delaunayabf26782019-02-12 11:44:39 +0100145#endif /* CONFIG_STM32MP1_TRUSTED */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100146
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100147/*
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100148 * Debug init
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100149 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100150static void dbgmcu_init(void)
151{
152 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
153
154 /* Freeze IWDG2 if Cortex-A7 is in debug mode */
155 setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
156}
157#endif /* !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) */
158
Patrick Delaunayabf26782019-02-12 11:44:39 +0100159#if !defined(CONFIG_STM32MP1_TRUSTED) && \
160 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100161/* get bootmode from ROM code boot context: saved in TAMP register */
162static void update_bootmode(void)
163{
164 u32 boot_mode;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100165 u32 bootrom_itf = readl(BOOTROM_PARAM_ADDR);
166 u32 bootrom_device, bootrom_instance;
167
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100168 /* enable TAMP clock = RTCAPBEN */
169 writel(BIT(8), RCC_MP_APB5ENSETR);
170
171 /* read bootrom context */
Patrick Delaunay08772f62018-03-20 10:54:53 +0100172 bootrom_device =
173 (bootrom_itf & BOOTROM_MODE_MASK) >> BOOTROM_MODE_SHIFT;
174 bootrom_instance =
175 (bootrom_itf & BOOTROM_INSTANCE_MASK) >> BOOTROM_INSTANCE_SHIFT;
176 boot_mode =
177 ((bootrom_device << BOOT_TYPE_SHIFT) & BOOT_TYPE_MASK) |
178 ((bootrom_instance << BOOT_INSTANCE_SHIFT) &
179 BOOT_INSTANCE_MASK);
180
181 /* save the boot mode in TAMP backup register */
182 clrsetbits_le32(TAMP_BOOT_CONTEXT,
183 TAMP_BOOT_MODE_MASK,
184 boot_mode << TAMP_BOOT_MODE_SHIFT);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100185}
Patrick Delaunay08772f62018-03-20 10:54:53 +0100186#endif
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100187
188u32 get_bootmode(void)
189{
190 /* read bootmode from TAMP backup register */
191 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
192 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100193}
194
195/*
196 * Early system init
197 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100198int arch_cpu_init(void)
199{
Patrick Delaunay320d2662018-05-17 14:50:46 +0200200 u32 boot_mode;
201
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100202 /* early armv7 timer init: needed for polling */
203 timer_init();
204
205#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
206 dbgmcu_init();
Patrick Delaunayabf26782019-02-12 11:44:39 +0100207#ifndef CONFIG_STM32MP1_TRUSTED
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100208 security_init();
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100209 update_bootmode();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100210#endif
Fabien Dessenne7bff9712019-10-30 14:38:30 +0100211 /* Reset Coprocessor state unless it wakes up from Standby power mode */
212 if (!(readl(PWR_MCUCR) & PWR_MCUCR_SBF)) {
213 writel(TAMP_COPRO_STATE_OFF, TAMP_COPRO_STATE);
214 writel(0, TAMP_COPRO_RSC_TBL_ADDRESS);
215 }
Patrick Delaunayabf26782019-02-12 11:44:39 +0100216#endif
Patrick Delaunay320d2662018-05-17 14:50:46 +0200217
Patrick Delaunay320d2662018-05-17 14:50:46 +0200218 boot_mode = get_bootmode();
219
220 if ((boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
221 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
222#if defined(CONFIG_DEBUG_UART) && \
Patrick Delaunayabf26782019-02-12 11:44:39 +0100223 !defined(CONFIG_STM32MP1_TRUSTED) && \
Patrick Delaunay320d2662018-05-17 14:50:46 +0200224 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
225 else
226 debug_uart_init();
227#endif
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100228
229 return 0;
230}
231
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100232void enable_caches(void)
233{
234 /* Enable D-cache. I-cache is already enabled in start.S */
235 dcache_enable();
236}
237
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100238static u32 read_idc(void)
239{
240 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
241
242 return readl(DBGMCU_IDC);
243}
244
245u32 get_cpu_rev(void)
246{
247 return (read_idc() & DBGMCU_IDC_REV_ID_MASK) >> DBGMCU_IDC_REV_ID_SHIFT;
248}
249
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100250static u32 get_otp(int index, int shift, int mask)
251{
252 int ret;
253 struct udevice *dev;
254 u32 otp = 0;
255
256 ret = uclass_get_device_by_driver(UCLASS_MISC,
257 DM_GET_DRIVER(stm32mp_bsec),
258 &dev);
259
260 if (!ret)
261 ret = misc_read(dev, STM32_BSEC_SHADOW(index),
262 &otp, sizeof(otp));
263
264 return (otp >> shift) & mask;
265}
266
267/* Get Device Part Number (RPN) from OTP */
268static u32 get_cpu_rpn(void)
269{
270 return get_otp(BSEC_OTP_RPN, RPN_SHIFT, RPN_MASK);
271}
272
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100273u32 get_cpu_type(void)
274{
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100275 u32 id;
276
277 id = (read_idc() & DBGMCU_IDC_DEV_ID_MASK) >> DBGMCU_IDC_DEV_ID_SHIFT;
278
279 return (id << 16) | get_cpu_rpn();
280}
281
282/* Get Package options from OTP */
Patrick Delaunay24cb4582019-07-05 17:20:13 +0200283u32 get_cpu_package(void)
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100284{
285 return get_otp(BSEC_OTP_PKG, PKG_SHIFT, PKG_MASK);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100286}
287
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100288#if defined(CONFIG_DISPLAY_CPUINFO)
289int print_cpuinfo(void)
290{
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100291 char *cpu_s, *cpu_r, *pkg;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100292
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100293 /* MPUs Part Numbers */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100294 switch (get_cpu_type()) {
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100295 case CPU_STM32MP157Cxx:
296 cpu_s = "157C";
297 break;
298 case CPU_STM32MP157Axx:
299 cpu_s = "157A";
300 break;
301 case CPU_STM32MP153Cxx:
302 cpu_s = "153C";
303 break;
304 case CPU_STM32MP153Axx:
305 cpu_s = "153A";
306 break;
307 case CPU_STM32MP151Cxx:
308 cpu_s = "151C";
309 break;
310 case CPU_STM32MP151Axx:
311 cpu_s = "151A";
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100312 break;
313 default:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100314 cpu_s = "????";
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100315 break;
316 }
317
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100318 /* Package */
319 switch (get_cpu_package()) {
320 case PKG_AA_LBGA448:
321 pkg = "AA";
322 break;
323 case PKG_AB_LBGA354:
324 pkg = "AB";
325 break;
326 case PKG_AC_TFBGA361:
327 pkg = "AC";
328 break;
329 case PKG_AD_TFBGA257:
330 pkg = "AD";
331 break;
332 default:
333 pkg = "??";
334 break;
335 }
336
337 /* REVISION */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100338 switch (get_cpu_rev()) {
339 case CPU_REVA:
340 cpu_r = "A";
341 break;
342 case CPU_REVB:
343 cpu_r = "B";
344 break;
345 default:
346 cpu_r = "?";
347 break;
348 }
349
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100350 printf("CPU: STM32MP%s%s Rev.%s\n", cpu_s, pkg, cpu_r);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100351
352 return 0;
353}
354#endif /* CONFIG_DISPLAY_CPUINFO */
355
Patrick Delaunay08772f62018-03-20 10:54:53 +0100356static void setup_boot_mode(void)
357{
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100358 const u32 serial_addr[] = {
359 STM32_USART1_BASE,
360 STM32_USART2_BASE,
361 STM32_USART3_BASE,
362 STM32_UART4_BASE,
363 STM32_UART5_BASE,
364 STM32_USART6_BASE,
365 STM32_UART7_BASE,
366 STM32_UART8_BASE
367 };
Patrick Delaunay08772f62018-03-20 10:54:53 +0100368 char cmd[60];
369 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
370 u32 boot_mode =
371 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunaye609e132019-06-21 15:26:39 +0200372 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100373 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100374 struct udevice *dev;
375 int alias;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100376
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100377 pr_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
378 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100379 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
380 case BOOT_SERIAL_UART:
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100381 if (instance > ARRAY_SIZE(serial_addr))
382 break;
383 /* serial : search associated alias in devicetree */
384 sprintf(cmd, "serial@%x", serial_addr[instance]);
385 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev))
386 break;
387 if (fdtdec_get_alias_seq(gd->fdt_blob, "serial",
388 dev_of_offset(dev), &alias))
389 break;
390 sprintf(cmd, "%d", alias);
391 env_set("boot_device", "serial");
Patrick Delaunay08772f62018-03-20 10:54:53 +0100392 env_set("boot_instance", cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100393
394 /* restore console on uart when not used */
395 if (gd->cur_serial_dev != dev) {
396 gd->flags &= ~(GD_FLG_SILENT |
397 GD_FLG_DISABLE_CONSOLE);
398 printf("serial boot with console enabled!\n");
399 }
Patrick Delaunay08772f62018-03-20 10:54:53 +0100400 break;
401 case BOOT_SERIAL_USB:
402 env_set("boot_device", "usb");
403 env_set("boot_instance", "0");
404 break;
405 case BOOT_FLASH_SD:
406 case BOOT_FLASH_EMMC:
407 sprintf(cmd, "%d", instance);
408 env_set("boot_device", "mmc");
409 env_set("boot_instance", cmd);
410 break;
411 case BOOT_FLASH_NAND:
412 env_set("boot_device", "nand");
413 env_set("boot_instance", "0");
414 break;
415 case BOOT_FLASH_NOR:
416 env_set("boot_device", "nor");
417 env_set("boot_instance", "0");
418 break;
419 default:
420 pr_debug("unexpected boot mode = %x\n", boot_mode);
421 break;
422 }
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100423
424 switch (forced_mode) {
425 case BOOT_FASTBOOT:
426 printf("Enter fastboot!\n");
427 env_set("preboot", "env set preboot; fastboot 0");
428 break;
429 case BOOT_STM32PROG:
430 env_set("boot_device", "usb");
431 env_set("boot_instance", "0");
432 break;
433 case BOOT_UMS_MMC0:
434 case BOOT_UMS_MMC1:
435 case BOOT_UMS_MMC2:
436 printf("Enter UMS!\n");
437 instance = forced_mode - BOOT_UMS_MMC0;
438 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
439 env_set("preboot", cmd);
440 break;
441 case BOOT_RECOVERY:
442 env_set("preboot", "env set preboot; run altbootcmd");
443 break;
444 case BOOT_NORMAL:
445 break;
446 default:
447 pr_debug("unexpected forced boot mode = %x\n", forced_mode);
448 break;
449 }
450
451 /* clear TAMP for next reboot */
452 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100453}
454
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200455/*
456 * If there is no MAC address in the environment, then it will be initialized
457 * (silently) from the value in the OTP.
458 */
Marek Vasute71b9a62019-12-18 16:52:19 +0100459__weak int setup_mac_address(void)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200460{
461#if defined(CONFIG_NET)
462 int ret;
463 int i;
464 u32 otp[2];
465 uchar enetaddr[6];
466 struct udevice *dev;
467
468 /* MAC already in environment */
469 if (eth_env_get_enetaddr("ethaddr", enetaddr))
470 return 0;
471
472 ret = uclass_get_device_by_driver(UCLASS_MISC,
473 DM_GET_DRIVER(stm32mp_bsec),
474 &dev);
475 if (ret)
476 return ret;
477
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100478 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200479 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700480 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200481 return ret;
482
483 for (i = 0; i < 6; i++)
484 enetaddr[i] = ((uint8_t *)&otp)[i];
485
486 if (!is_valid_ethaddr(enetaddr)) {
Manivannan Sadhasivambc9487d2019-05-02 13:26:45 +0530487 pr_err("invalid MAC address in OTP %pM\n", enetaddr);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200488 return -EINVAL;
489 }
490 pr_debug("OTP MAC address = %pM\n", enetaddr);
491 ret = !eth_env_set_enetaddr("ethaddr", enetaddr);
492 if (!ret)
493 pr_err("Failed to set mac address %pM from OTP: %d\n",
494 enetaddr, ret);
495#endif
496
497 return 0;
498}
499
500static int setup_serial_number(void)
501{
502 char serial_string[25];
503 u32 otp[3] = {0, 0, 0 };
504 struct udevice *dev;
505 int ret;
506
507 if (env_get("serial#"))
508 return 0;
509
510 ret = uclass_get_device_by_driver(UCLASS_MISC,
511 DM_GET_DRIVER(stm32mp_bsec),
512 &dev);
513 if (ret)
514 return ret;
515
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100516 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200517 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700518 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200519 return ret;
520
Patrick Delaunay8983ba22019-02-27 17:01:25 +0100521 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200522 env_set("serial#", serial_string);
523
524 return 0;
525}
526
Patrick Delaunay08772f62018-03-20 10:54:53 +0100527int arch_misc_init(void)
528{
529 setup_boot_mode();
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200530 setup_mac_address();
531 setup_serial_number();
Patrick Delaunay08772f62018-03-20 10:54:53 +0100532
533 return 0;
534}