blob: 717f80e9ff3d022492f1369b1b2575ddd64f779b [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 Delaunay7f7deb02018-05-17 15:24:07 +020015#include <misc.h>
Simon Glass90526e92020-05-10 11:39:56 -060016#include <net.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010017#include <asm/io.h>
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +020018#include <asm/arch/bsec.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010019#include <asm/arch/stm32.h>
Patrick Delaunay96583cd2018-03-19 19:09:21 +010020#include <asm/arch/sys_proto.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020021#include <dm/device.h>
Patrick Delaunay08772f62018-03-20 10:54:53 +010022#include <dm/uclass.h>
Simon Glasscd93d622020-05-10 11:40:13 -060023#include <linux/bitops.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010024
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010025/* RCC register */
26#define RCC_TZCR (STM32_RCC_BASE + 0x00)
27#define RCC_DBGCFGR (STM32_RCC_BASE + 0x080C)
28#define RCC_BDCR (STM32_RCC_BASE + 0x0140)
29#define RCC_MP_APB5ENSETR (STM32_RCC_BASE + 0x0208)
Patrick Delaunay59a54e32019-02-27 17:01:26 +010030#define RCC_MP_AHB5ENSETR (STM32_RCC_BASE + 0x0210)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010031#define RCC_BDCR_VSWRST BIT(31)
32#define RCC_BDCR_RTCSRC GENMASK(17, 16)
33#define RCC_DBGCFGR_DBGCKEN BIT(8)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010034
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010035/* Security register */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010036#define ETZPC_TZMA1_SIZE (STM32_ETZPC_BASE + 0x04)
37#define ETZPC_DECPROT0 (STM32_ETZPC_BASE + 0x10)
38
39#define TZC_GATE_KEEPER (STM32_TZC_BASE + 0x008)
40#define TZC_REGION_ATTRIBUTE0 (STM32_TZC_BASE + 0x110)
41#define TZC_REGION_ID_ACCESS0 (STM32_TZC_BASE + 0x114)
42
43#define TAMP_CR1 (STM32_TAMP_BASE + 0x00)
44
45#define PWR_CR1 (STM32_PWR_BASE + 0x00)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010046#define PWR_MCUCR (STM32_PWR_BASE + 0x14)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010047#define PWR_CR1_DBP BIT(8)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010048#define PWR_MCUCR_SBF BIT(6)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010049
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010050/* DBGMCU register */
Patrick Delaunay96583cd2018-03-19 19:09:21 +010051#define DBGMCU_IDC (STM32_DBGMCU_BASE + 0x00)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010052#define DBGMCU_APB4FZ1 (STM32_DBGMCU_BASE + 0x2C)
53#define DBGMCU_APB4FZ1_IWDG2 BIT(2)
Patrick Delaunay96583cd2018-03-19 19:09:21 +010054#define DBGMCU_IDC_DEV_ID_MASK GENMASK(11, 0)
55#define DBGMCU_IDC_DEV_ID_SHIFT 0
56#define DBGMCU_IDC_REV_ID_MASK GENMASK(31, 16)
57#define DBGMCU_IDC_REV_ID_SHIFT 16
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010058
Patrick Delaunay59a54e32019-02-27 17:01:26 +010059/* GPIOZ registers */
60#define GPIOZ_SECCFGR 0x54004030
61
Patrick Delaunay08772f62018-03-20 10:54:53 +010062/* boot interface from Bootrom
63 * - boot instance = bit 31:16
64 * - boot device = bit 15:0
65 */
66#define BOOTROM_PARAM_ADDR 0x2FFC0078
67#define BOOTROM_MODE_MASK GENMASK(15, 0)
68#define BOOTROM_MODE_SHIFT 0
69#define BOOTROM_INSTANCE_MASK GENMASK(31, 16)
70#define BOOTROM_INSTANCE_SHIFT 16
71
Patrick Delaunay35d568f2019-02-27 17:01:13 +010072/* Device Part Number (RPN) = OTP_DATA1 lower 8 bits */
73#define RPN_SHIFT 0
74#define RPN_MASK GENMASK(7, 0)
75
76/* Package = bit 27:29 of OTP16
77 * - 100: LBGA448 (FFI) => AA = LFBGA 18x18mm 448 balls p. 0.8mm
78 * - 011: LBGA354 (LCI) => AB = LFBGA 16x16mm 359 balls p. 0.8mm
79 * - 010: TFBGA361 (FFC) => AC = TFBGA 12x12mm 361 balls p. 0.5mm
80 * - 001: TFBGA257 (LCC) => AD = TFBGA 10x10mm 257 balls p. 0.5mm
81 * - others: Reserved
82 */
83#define PKG_SHIFT 27
84#define PKG_MASK GENMASK(2, 0)
85
Patrick Delaunay7e8471c2020-04-30 16:30:20 +020086/*
87 * early TLB into the .data section so that it not get cleared
88 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
89 */
90u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
91
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010092#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunay654706b2020-04-01 09:07:33 +020093#ifndef CONFIG_TFABOOT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010094static void security_init(void)
95{
96 /* Disable the backup domain write protection */
97 /* the protection is enable at each reset by hardware */
98 /* And must be disable by software */
99 setbits_le32(PWR_CR1, PWR_CR1_DBP);
100
101 while (!(readl(PWR_CR1) & PWR_CR1_DBP))
102 ;
103
104 /* If RTC clock isn't enable so this is a cold boot then we need
105 * to reset the backup domain
106 */
107 if (!(readl(RCC_BDCR) & RCC_BDCR_RTCSRC)) {
108 setbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
109 while (!(readl(RCC_BDCR) & RCC_BDCR_VSWRST))
110 ;
111 clrbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
112 }
113
114 /* allow non secure access in Write/Read for all peripheral */
115 writel(GENMASK(25, 0), ETZPC_DECPROT0);
116
117 /* Open SYSRAM for no secure access */
118 writel(0x0, ETZPC_TZMA1_SIZE);
119
120 /* enable TZC1 TZC2 clock */
121 writel(BIT(11) | BIT(12), RCC_MP_APB5ENSETR);
122
123 /* Region 0 set to no access by default */
124 /* bit 0 / 16 => nsaid0 read/write Enable
125 * bit 1 / 17 => nsaid1 read/write Enable
126 * ...
127 * bit 15 / 31 => nsaid15 read/write Enable
128 */
129 writel(0xFFFFFFFF, TZC_REGION_ID_ACCESS0);
130 /* bit 30 / 31 => Secure Global Enable : write/read */
131 /* bit 0 / 1 => Region Enable for filter 0/1 */
132 writel(BIT(0) | BIT(1) | BIT(30) | BIT(31), TZC_REGION_ATTRIBUTE0);
133
134 /* Enable Filter 0 and 1 */
135 setbits_le32(TZC_GATE_KEEPER, BIT(0) | BIT(1));
136
137 /* RCC trust zone deactivated */
138 writel(0x0, RCC_TZCR);
139
140 /* TAMP: deactivate the internal tamper
141 * Bit 23 ITAMP8E: monotonic counter overflow
142 * Bit 20 ITAMP5E: RTC calendar overflow
143 * Bit 19 ITAMP4E: HSE monitoring
144 * Bit 18 ITAMP3E: LSE monitoring
145 * Bit 16 ITAMP1E: RTC power domain supply monitoring
146 */
147 writel(0x0, TAMP_CR1);
Patrick Delaunay59a54e32019-02-27 17:01:26 +0100148
149 /* GPIOZ: deactivate the security */
150 writel(BIT(0), RCC_MP_AHB5ENSETR);
151 writel(0x0, GPIOZ_SECCFGR);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100152}
Patrick Delaunay654706b2020-04-01 09:07:33 +0200153#endif /* CONFIG_TFABOOT */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100154
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100155/*
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100156 * Debug init
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100157 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100158static void dbgmcu_init(void)
159{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200160 /*
161 * Freeze IWDG2 if Cortex-A7 is in debug mode
162 * done in TF-A for TRUSTED boot and
163 * DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE
164 */
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200165 if (!IS_ENABLED(CONFIG_TFABOOT) && bsec_dbgswenable()) {
166 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200167 setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200168 }
169}
170
171void spl_board_init(void)
172{
173 dbgmcu_init();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100174}
175#endif /* !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) */
176
Patrick Delaunay654706b2020-04-01 09:07:33 +0200177#if !defined(CONFIG_TFABOOT) && \
Patrick Delaunayabf26782019-02-12 11:44:39 +0100178 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100179/* get bootmode from ROM code boot context: saved in TAMP register */
180static void update_bootmode(void)
181{
182 u32 boot_mode;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100183 u32 bootrom_itf = readl(BOOTROM_PARAM_ADDR);
184 u32 bootrom_device, bootrom_instance;
185
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100186 /* enable TAMP clock = RTCAPBEN */
187 writel(BIT(8), RCC_MP_APB5ENSETR);
188
189 /* read bootrom context */
Patrick Delaunay08772f62018-03-20 10:54:53 +0100190 bootrom_device =
191 (bootrom_itf & BOOTROM_MODE_MASK) >> BOOTROM_MODE_SHIFT;
192 bootrom_instance =
193 (bootrom_itf & BOOTROM_INSTANCE_MASK) >> BOOTROM_INSTANCE_SHIFT;
194 boot_mode =
195 ((bootrom_device << BOOT_TYPE_SHIFT) & BOOT_TYPE_MASK) |
196 ((bootrom_instance << BOOT_INSTANCE_SHIFT) &
197 BOOT_INSTANCE_MASK);
198
199 /* save the boot mode in TAMP backup register */
200 clrsetbits_le32(TAMP_BOOT_CONTEXT,
201 TAMP_BOOT_MODE_MASK,
202 boot_mode << TAMP_BOOT_MODE_SHIFT);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100203}
Patrick Delaunay08772f62018-03-20 10:54:53 +0100204#endif
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100205
206u32 get_bootmode(void)
207{
208 /* read bootmode from TAMP backup register */
209 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
210 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100211}
212
213/*
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200214 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
215 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
216 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
217 */
218static void early_enable_caches(void)
219{
220 /* I-cache is already enabled in start.S: cpu_init_cp15 */
221
222 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
223 return;
224
225 gd->arch.tlb_size = PGTABLE_SIZE;
226 gd->arch.tlb_addr = (unsigned long)&early_tlb;
227
228 dcache_enable();
229
230 if (IS_ENABLED(CONFIG_SPL_BUILD))
Patrick Delaunay43fe9d22020-07-24 11:21:51 +0200231 mmu_set_region_dcache_behaviour(
Patrick Delaunay77c077e2020-11-04 09:22:09 +0100232 ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE),
233 ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE),
Patrick Delaunay43fe9d22020-07-24 11:21:51 +0200234 DCACHE_DEFAULT_OPTION);
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200235 else
Patrick Delaunay67f9f112020-09-04 12:55:19 +0200236 mmu_set_region_dcache_behaviour(STM32_DDR_BASE,
237 CONFIG_DDR_CACHEABLE_SIZE,
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200238 DCACHE_DEFAULT_OPTION);
239}
240
241/*
Patrick Delaunay08772f62018-03-20 10:54:53 +0100242 * Early system init
243 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100244int arch_cpu_init(void)
245{
Patrick Delaunay320d2662018-05-17 14:50:46 +0200246 u32 boot_mode;
247
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200248 early_enable_caches();
249
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100250 /* early armv7 timer init: needed for polling */
251 timer_init();
252
253#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunay654706b2020-04-01 09:07:33 +0200254#ifndef CONFIG_TFABOOT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100255 security_init();
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100256 update_bootmode();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100257#endif
Fabien Dessenne7bff9712019-10-30 14:38:30 +0100258 /* Reset Coprocessor state unless it wakes up from Standby power mode */
259 if (!(readl(PWR_MCUCR) & PWR_MCUCR_SBF)) {
260 writel(TAMP_COPRO_STATE_OFF, TAMP_COPRO_STATE);
261 writel(0, TAMP_COPRO_RSC_TBL_ADDRESS);
262 }
Patrick Delaunayabf26782019-02-12 11:44:39 +0100263#endif
Patrick Delaunay320d2662018-05-17 14:50:46 +0200264
Patrick Delaunay320d2662018-05-17 14:50:46 +0200265 boot_mode = get_bootmode();
266
267 if ((boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
268 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
269#if defined(CONFIG_DEBUG_UART) && \
Patrick Delaunay654706b2020-04-01 09:07:33 +0200270 !defined(CONFIG_TFABOOT) && \
Patrick Delaunay320d2662018-05-17 14:50:46 +0200271 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
272 else
273 debug_uart_init();
274#endif
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100275
276 return 0;
277}
278
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100279void enable_caches(void)
280{
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200281 /* I-cache is already enabled in start.S: icache_enable() not needed */
282
283 /* deactivate the data cache, early enabled in arch_cpu_init() */
284 dcache_disable();
285 /*
286 * update MMU after relocation and enable the data cache
287 * warning: the TLB location udpated in board_f.c::reserve_mmu
288 */
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100289 dcache_enable();
290}
291
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100292static u32 read_idc(void)
293{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200294 /* DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE */
295 if (bsec_dbgswenable()) {
296 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100297
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200298 return readl(DBGMCU_IDC);
299 }
300
301 if (CONFIG_IS_ENABLED(STM32MP15x))
302 return CPU_DEV_STM32MP15; /* STM32MP15x and unknown revision */
303 else
304 return 0x0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100305}
306
Patrick Delaunay7802a442020-03-18 09:24:48 +0100307u32 get_cpu_dev(void)
308{
309 return (read_idc() & DBGMCU_IDC_DEV_ID_MASK) >> DBGMCU_IDC_DEV_ID_SHIFT;
310}
311
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100312u32 get_cpu_rev(void)
313{
314 return (read_idc() & DBGMCU_IDC_REV_ID_MASK) >> DBGMCU_IDC_REV_ID_SHIFT;
315}
316
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100317static u32 get_otp(int index, int shift, int mask)
318{
319 int ret;
320 struct udevice *dev;
321 u32 otp = 0;
322
323 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700324 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100325 &dev);
326
327 if (!ret)
328 ret = misc_read(dev, STM32_BSEC_SHADOW(index),
329 &otp, sizeof(otp));
330
331 return (otp >> shift) & mask;
332}
333
334/* Get Device Part Number (RPN) from OTP */
335static u32 get_cpu_rpn(void)
336{
337 return get_otp(BSEC_OTP_RPN, RPN_SHIFT, RPN_MASK);
338}
339
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100340u32 get_cpu_type(void)
341{
Patrick Delaunay7802a442020-03-18 09:24:48 +0100342 return (get_cpu_dev() << 16) | get_cpu_rpn();
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100343}
344
345/* Get Package options from OTP */
Patrick Delaunay24cb4582019-07-05 17:20:13 +0200346u32 get_cpu_package(void)
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100347{
348 return get_otp(BSEC_OTP_PKG, PKG_SHIFT, PKG_MASK);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100349}
350
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100351void get_soc_name(char name[SOC_NAME_SIZE])
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100352{
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100353 char *cpu_s, *cpu_r, *pkg;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100354
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100355 /* MPUs Part Numbers */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100356 switch (get_cpu_type()) {
Patrick Delaunay050fed82020-02-26 11:26:43 +0100357 case CPU_STM32MP157Fxx:
358 cpu_s = "157F";
359 break;
360 case CPU_STM32MP157Dxx:
361 cpu_s = "157D";
362 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100363 case CPU_STM32MP157Cxx:
364 cpu_s = "157C";
365 break;
366 case CPU_STM32MP157Axx:
367 cpu_s = "157A";
368 break;
Patrick Delaunay050fed82020-02-26 11:26:43 +0100369 case CPU_STM32MP153Fxx:
370 cpu_s = "153F";
371 break;
372 case CPU_STM32MP153Dxx:
373 cpu_s = "153D";
374 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100375 case CPU_STM32MP153Cxx:
376 cpu_s = "153C";
377 break;
378 case CPU_STM32MP153Axx:
379 cpu_s = "153A";
380 break;
Patrick Delaunay050fed82020-02-26 11:26:43 +0100381 case CPU_STM32MP151Fxx:
382 cpu_s = "151F";
383 break;
384 case CPU_STM32MP151Dxx:
385 cpu_s = "151D";
386 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100387 case CPU_STM32MP151Cxx:
388 cpu_s = "151C";
389 break;
390 case CPU_STM32MP151Axx:
391 cpu_s = "151A";
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100392 break;
393 default:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100394 cpu_s = "????";
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100395 break;
396 }
397
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100398 /* Package */
399 switch (get_cpu_package()) {
400 case PKG_AA_LBGA448:
401 pkg = "AA";
402 break;
403 case PKG_AB_LBGA354:
404 pkg = "AB";
405 break;
406 case PKG_AC_TFBGA361:
407 pkg = "AC";
408 break;
409 case PKG_AD_TFBGA257:
410 pkg = "AD";
411 break;
412 default:
413 pkg = "??";
414 break;
415 }
416
417 /* REVISION */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100418 switch (get_cpu_rev()) {
419 case CPU_REVA:
420 cpu_r = "A";
421 break;
422 case CPU_REVB:
423 cpu_r = "B";
424 break;
Patrick Delaunaycf0818b2020-01-28 10:11:06 +0100425 case CPU_REVZ:
426 cpu_r = "Z";
427 break;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100428 default:
429 cpu_r = "?";
430 break;
431 }
432
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100433 snprintf(name, SOC_NAME_SIZE, "STM32MP%s%s Rev.%s", cpu_s, pkg, cpu_r);
434}
435
436#if defined(CONFIG_DISPLAY_CPUINFO)
437int print_cpuinfo(void)
438{
439 char name[SOC_NAME_SIZE];
440
441 get_soc_name(name);
442 printf("CPU: %s\n", name);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100443
444 return 0;
445}
446#endif /* CONFIG_DISPLAY_CPUINFO */
447
Patrick Delaunay08772f62018-03-20 10:54:53 +0100448static void setup_boot_mode(void)
449{
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100450 const u32 serial_addr[] = {
451 STM32_USART1_BASE,
452 STM32_USART2_BASE,
453 STM32_USART3_BASE,
454 STM32_UART4_BASE,
455 STM32_UART5_BASE,
456 STM32_USART6_BASE,
457 STM32_UART7_BASE,
458 STM32_UART8_BASE
459 };
Patrick Delaunay08772f62018-03-20 10:54:53 +0100460 char cmd[60];
461 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
462 u32 boot_mode =
463 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunaye609e132019-06-21 15:26:39 +0200464 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100465 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100466 struct udevice *dev;
467 int alias;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100468
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100469 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
470 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100471 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
472 case BOOT_SERIAL_UART:
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100473 if (instance > ARRAY_SIZE(serial_addr))
474 break;
475 /* serial : search associated alias in devicetree */
476 sprintf(cmd, "serial@%x", serial_addr[instance]);
477 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev))
478 break;
479 if (fdtdec_get_alias_seq(gd->fdt_blob, "serial",
480 dev_of_offset(dev), &alias))
481 break;
482 sprintf(cmd, "%d", alias);
483 env_set("boot_device", "serial");
Patrick Delaunay08772f62018-03-20 10:54:53 +0100484 env_set("boot_instance", cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100485
486 /* restore console on uart when not used */
487 if (gd->cur_serial_dev != dev) {
488 gd->flags &= ~(GD_FLG_SILENT |
489 GD_FLG_DISABLE_CONSOLE);
490 printf("serial boot with console enabled!\n");
491 }
Patrick Delaunay08772f62018-03-20 10:54:53 +0100492 break;
493 case BOOT_SERIAL_USB:
494 env_set("boot_device", "usb");
495 env_set("boot_instance", "0");
496 break;
497 case BOOT_FLASH_SD:
498 case BOOT_FLASH_EMMC:
499 sprintf(cmd, "%d", instance);
500 env_set("boot_device", "mmc");
501 env_set("boot_instance", cmd);
502 break;
503 case BOOT_FLASH_NAND:
504 env_set("boot_device", "nand");
505 env_set("boot_instance", "0");
506 break;
Patrick Delaunayb664a742020-03-18 09:22:52 +0100507 case BOOT_FLASH_SPINAND:
508 env_set("boot_device", "spi-nand");
509 env_set("boot_instance", "0");
510 break;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100511 case BOOT_FLASH_NOR:
512 env_set("boot_device", "nor");
513 env_set("boot_instance", "0");
514 break;
515 default:
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100516 log_debug("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100517 break;
518 }
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100519
520 switch (forced_mode) {
521 case BOOT_FASTBOOT:
522 printf("Enter fastboot!\n");
523 env_set("preboot", "env set preboot; fastboot 0");
524 break;
525 case BOOT_STM32PROG:
526 env_set("boot_device", "usb");
527 env_set("boot_instance", "0");
528 break;
529 case BOOT_UMS_MMC0:
530 case BOOT_UMS_MMC1:
531 case BOOT_UMS_MMC2:
532 printf("Enter UMS!\n");
533 instance = forced_mode - BOOT_UMS_MMC0;
534 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
535 env_set("preboot", cmd);
536 break;
537 case BOOT_RECOVERY:
538 env_set("preboot", "env set preboot; run altbootcmd");
539 break;
540 case BOOT_NORMAL:
541 break;
542 default:
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100543 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100544 break;
545 }
546
547 /* clear TAMP for next reboot */
548 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100549}
550
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200551/*
552 * If there is no MAC address in the environment, then it will be initialized
553 * (silently) from the value in the OTP.
554 */
Marek Vasute71b9a62019-12-18 16:52:19 +0100555__weak int setup_mac_address(void)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200556{
557#if defined(CONFIG_NET)
558 int ret;
559 int i;
560 u32 otp[2];
561 uchar enetaddr[6];
562 struct udevice *dev;
563
564 /* MAC already in environment */
565 if (eth_env_get_enetaddr("ethaddr", enetaddr))
566 return 0;
567
568 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700569 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200570 &dev);
571 if (ret)
572 return ret;
573
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100574 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200575 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700576 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200577 return ret;
578
579 for (i = 0; i < 6; i++)
580 enetaddr[i] = ((uint8_t *)&otp)[i];
581
582 if (!is_valid_ethaddr(enetaddr)) {
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100583 log_err("invalid MAC address in OTP %pM\n", enetaddr);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200584 return -EINVAL;
585 }
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100586 log_debug("OTP MAC address = %pM\n", enetaddr);
Patrick Delaunaycf8df342020-04-07 16:07:46 +0200587 ret = eth_env_set_enetaddr("ethaddr", enetaddr);
588 if (ret)
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100589 log_err("Failed to set mac address %pM from OTP: %d\n", enetaddr, ret);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200590#endif
591
592 return 0;
593}
594
595static int setup_serial_number(void)
596{
597 char serial_string[25];
598 u32 otp[3] = {0, 0, 0 };
599 struct udevice *dev;
600 int ret;
601
602 if (env_get("serial#"))
603 return 0;
604
605 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700606 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200607 &dev);
608 if (ret)
609 return ret;
610
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100611 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200612 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700613 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200614 return ret;
615
Patrick Delaunay8983ba22019-02-27 17:01:25 +0100616 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200617 env_set("serial#", serial_string);
618
619 return 0;
620}
621
Patrick Delaunay08772f62018-03-20 10:54:53 +0100622int arch_misc_init(void)
623{
624 setup_boot_mode();
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200625 setup_mac_address();
626 setup_serial_number();
Patrick Delaunay08772f62018-03-20 10:54:53 +0100627
628 return 0;
629}