blob: 897ec13ad819c1f6e305016caeb17d121d684e32 [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunay85b53972018-03-12 10:46:10 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay85b53972018-03-12 10:46:10 +01004 */
Patrick Delaunayba779402020-11-06 19:01:29 +01005
6#define LOG_CATEGORY LOGC_ARCH
7
Patrick Delaunay85b53972018-03-12 10:46:10 +01008#include <common.h>
9#include <clk.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070010#include <cpu_func.h>
Patrick Delaunay82168e82018-05-17 14:50:46 +020011#include <debug_uart.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060012#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Patrick Delaunayf3674a42018-05-17 15:24:07 +020015#include <misc.h>
Simon Glass274e0b02020-05-10 11:39:56 -060016#include <net.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010017#include <asm/io.h>
Patrick Delaunay6332c042020-06-16 18:27:44 +020018#include <asm/arch/bsec.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010019#include <asm/arch/stm32.h>
Patrick Delaunay01e3afe2018-03-19 19:09:21 +010020#include <asm/arch/sys_proto.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Patrick Delaunayf3674a42018-05-17 15:24:07 +020022#include <dm/device.h>
Patrick Delaunayc5d15652018-03-20 10:54:53 +010023#include <dm/uclass.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060024#include <linux/bitops.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010025
Patrick Delaunay58e95532018-03-19 19:09:20 +010026/* RCC register */
27#define RCC_TZCR (STM32_RCC_BASE + 0x00)
28#define RCC_DBGCFGR (STM32_RCC_BASE + 0x080C)
29#define RCC_BDCR (STM32_RCC_BASE + 0x0140)
30#define RCC_MP_APB5ENSETR (STM32_RCC_BASE + 0x0208)
Patrick Delaunayd4ca35c2019-02-27 17:01:26 +010031#define RCC_MP_AHB5ENSETR (STM32_RCC_BASE + 0x0210)
Patrick Delaunay58e95532018-03-19 19:09:20 +010032#define RCC_BDCR_VSWRST BIT(31)
33#define RCC_BDCR_RTCSRC GENMASK(17, 16)
34#define RCC_DBGCFGR_DBGCKEN BIT(8)
Patrick Delaunay85b53972018-03-12 10:46:10 +010035
Patrick Delaunay58e95532018-03-19 19:09:20 +010036/* Security register */
Patrick Delaunay85b53972018-03-12 10:46:10 +010037#define ETZPC_TZMA1_SIZE (STM32_ETZPC_BASE + 0x04)
38#define ETZPC_DECPROT0 (STM32_ETZPC_BASE + 0x10)
39
40#define TZC_GATE_KEEPER (STM32_TZC_BASE + 0x008)
41#define TZC_REGION_ATTRIBUTE0 (STM32_TZC_BASE + 0x110)
42#define TZC_REGION_ID_ACCESS0 (STM32_TZC_BASE + 0x114)
43
44#define TAMP_CR1 (STM32_TAMP_BASE + 0x00)
45
46#define PWR_CR1 (STM32_PWR_BASE + 0x00)
Fabien Dessenne9ebbdc92019-10-30 14:38:30 +010047#define PWR_MCUCR (STM32_PWR_BASE + 0x14)
Patrick Delaunay85b53972018-03-12 10:46:10 +010048#define PWR_CR1_DBP BIT(8)
Fabien Dessenne9ebbdc92019-10-30 14:38:30 +010049#define PWR_MCUCR_SBF BIT(6)
Patrick Delaunay85b53972018-03-12 10:46:10 +010050
Patrick Delaunay58e95532018-03-19 19:09:20 +010051/* DBGMCU register */
Patrick Delaunay01e3afe2018-03-19 19:09:21 +010052#define DBGMCU_IDC (STM32_DBGMCU_BASE + 0x00)
Patrick Delaunay58e95532018-03-19 19:09:20 +010053#define DBGMCU_APB4FZ1 (STM32_DBGMCU_BASE + 0x2C)
54#define DBGMCU_APB4FZ1_IWDG2 BIT(2)
Patrick Delaunay01e3afe2018-03-19 19:09:21 +010055#define DBGMCU_IDC_DEV_ID_MASK GENMASK(11, 0)
56#define DBGMCU_IDC_DEV_ID_SHIFT 0
57#define DBGMCU_IDC_REV_ID_MASK GENMASK(31, 16)
58#define DBGMCU_IDC_REV_ID_SHIFT 16
Patrick Delaunay85b53972018-03-12 10:46:10 +010059
Patrick Delaunayd4ca35c2019-02-27 17:01:26 +010060/* GPIOZ registers */
61#define GPIOZ_SECCFGR 0x54004030
62
Patrick Delaunayc5d15652018-03-20 10:54:53 +010063/* boot interface from Bootrom
64 * - boot instance = bit 31:16
65 * - boot device = bit 15:0
66 */
67#define BOOTROM_PARAM_ADDR 0x2FFC0078
68#define BOOTROM_MODE_MASK GENMASK(15, 0)
69#define BOOTROM_MODE_SHIFT 0
70#define BOOTROM_INSTANCE_MASK GENMASK(31, 16)
71#define BOOTROM_INSTANCE_SHIFT 16
72
Patrick Delaunay45c82d22019-02-27 17:01:13 +010073/* Device Part Number (RPN) = OTP_DATA1 lower 8 bits */
74#define RPN_SHIFT 0
75#define RPN_MASK GENMASK(7, 0)
76
77/* Package = bit 27:29 of OTP16
78 * - 100: LBGA448 (FFI) => AA = LFBGA 18x18mm 448 balls p. 0.8mm
79 * - 011: LBGA354 (LCI) => AB = LFBGA 16x16mm 359 balls p. 0.8mm
80 * - 010: TFBGA361 (FFC) => AC = TFBGA 12x12mm 361 balls p. 0.5mm
81 * - 001: TFBGA257 (LCC) => AD = TFBGA 10x10mm 257 balls p. 0.5mm
82 * - others: Reserved
83 */
84#define PKG_SHIFT 27
85#define PKG_MASK GENMASK(2, 0)
86
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020087/*
88 * early TLB into the .data section so that it not get cleared
89 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
90 */
91u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
92
Patrick Delaunay58e95532018-03-19 19:09:20 +010093#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +020094#ifndef CONFIG_TFABOOT
Patrick Delaunay85b53972018-03-12 10:46:10 +010095static void security_init(void)
96{
97 /* Disable the backup domain write protection */
98 /* the protection is enable at each reset by hardware */
99 /* And must be disable by software */
100 setbits_le32(PWR_CR1, PWR_CR1_DBP);
101
102 while (!(readl(PWR_CR1) & PWR_CR1_DBP))
103 ;
104
105 /* If RTC clock isn't enable so this is a cold boot then we need
106 * to reset the backup domain
107 */
108 if (!(readl(RCC_BDCR) & RCC_BDCR_RTCSRC)) {
109 setbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
110 while (!(readl(RCC_BDCR) & RCC_BDCR_VSWRST))
111 ;
112 clrbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
113 }
114
115 /* allow non secure access in Write/Read for all peripheral */
116 writel(GENMASK(25, 0), ETZPC_DECPROT0);
117
118 /* Open SYSRAM for no secure access */
119 writel(0x0, ETZPC_TZMA1_SIZE);
120
121 /* enable TZC1 TZC2 clock */
122 writel(BIT(11) | BIT(12), RCC_MP_APB5ENSETR);
123
124 /* Region 0 set to no access by default */
125 /* bit 0 / 16 => nsaid0 read/write Enable
126 * bit 1 / 17 => nsaid1 read/write Enable
127 * ...
128 * bit 15 / 31 => nsaid15 read/write Enable
129 */
130 writel(0xFFFFFFFF, TZC_REGION_ID_ACCESS0);
131 /* bit 30 / 31 => Secure Global Enable : write/read */
132 /* bit 0 / 1 => Region Enable for filter 0/1 */
133 writel(BIT(0) | BIT(1) | BIT(30) | BIT(31), TZC_REGION_ATTRIBUTE0);
134
135 /* Enable Filter 0 and 1 */
136 setbits_le32(TZC_GATE_KEEPER, BIT(0) | BIT(1));
137
138 /* RCC trust zone deactivated */
139 writel(0x0, RCC_TZCR);
140
141 /* TAMP: deactivate the internal tamper
142 * Bit 23 ITAMP8E: monotonic counter overflow
143 * Bit 20 ITAMP5E: RTC calendar overflow
144 * Bit 19 ITAMP4E: HSE monitoring
145 * Bit 18 ITAMP3E: LSE monitoring
146 * Bit 16 ITAMP1E: RTC power domain supply monitoring
147 */
148 writel(0x0, TAMP_CR1);
Patrick Delaunayd4ca35c2019-02-27 17:01:26 +0100149
150 /* GPIOZ: deactivate the security */
151 writel(BIT(0), RCC_MP_AHB5ENSETR);
152 writel(0x0, GPIOZ_SECCFGR);
Patrick Delaunay85b53972018-03-12 10:46:10 +0100153}
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +0200154#endif /* CONFIG_TFABOOT */
Patrick Delaunay85b53972018-03-12 10:46:10 +0100155
Patrick Delaunay58e95532018-03-19 19:09:20 +0100156/*
Patrick Delaunay85b53972018-03-12 10:46:10 +0100157 * Debug init
Patrick Delaunay58e95532018-03-19 19:09:20 +0100158 */
Patrick Delaunay85b53972018-03-12 10:46:10 +0100159static void dbgmcu_init(void)
160{
Patrick Delaunay6332c042020-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 Delaunay4c5821d2020-07-24 11:13:31 +0200166 if (!IS_ENABLED(CONFIG_TFABOOT) && bsec_dbgswenable()) {
167 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunay6332c042020-06-16 18:27:44 +0200168 setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
Patrick Delaunay4c5821d2020-07-24 11:13:31 +0200169 }
170}
171
172void spl_board_init(void)
173{
174 dbgmcu_init();
Patrick Delaunay85b53972018-03-12 10:46:10 +0100175}
176#endif /* !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) */
177
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +0200178#if !defined(CONFIG_TFABOOT) && \
Patrick Delaunay5d061412019-02-12 11:44:39 +0100179 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Patrick Delaunay18660a62019-02-27 17:01:12 +0100180/* get bootmode from ROM code boot context: saved in TAMP register */
181static void update_bootmode(void)
182{
183 u32 boot_mode;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100184 u32 bootrom_itf = readl(BOOTROM_PARAM_ADDR);
185 u32 bootrom_device, bootrom_instance;
186
Patrick Delaunay18660a62019-02-27 17:01:12 +0100187 /* enable TAMP clock = RTCAPBEN */
188 writel(BIT(8), RCC_MP_APB5ENSETR);
189
190 /* read bootrom context */
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100191 bootrom_device =
192 (bootrom_itf & BOOTROM_MODE_MASK) >> BOOTROM_MODE_SHIFT;
193 bootrom_instance =
194 (bootrom_itf & BOOTROM_INSTANCE_MASK) >> BOOTROM_INSTANCE_SHIFT;
195 boot_mode =
196 ((bootrom_device << BOOT_TYPE_SHIFT) & BOOT_TYPE_MASK) |
197 ((bootrom_instance << BOOT_INSTANCE_SHIFT) &
198 BOOT_INSTANCE_MASK);
199
200 /* save the boot mode in TAMP backup register */
201 clrsetbits_le32(TAMP_BOOT_CONTEXT,
202 TAMP_BOOT_MODE_MASK,
203 boot_mode << TAMP_BOOT_MODE_SHIFT);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100204}
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100205#endif
Patrick Delaunay18660a62019-02-27 17:01:12 +0100206
207u32 get_bootmode(void)
208{
209 /* read bootmode from TAMP backup register */
210 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
211 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100212}
213
214/*
Patrick Delaunay4ad5a122021-02-05 13:53:33 +0100215 * weak function overidde: set the DDR/SYSRAM executable before to enable the
216 * MMU and configure DACR, for early early_enable_caches (SPL or pre-reloc)
217 */
218void dram_bank_mmu_setup(int bank)
219{
220 struct bd_info *bd = gd->bd;
221 int i;
222 phys_addr_t start;
223 phys_size_t size;
224
225 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
226 start = ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE);
227 size = ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE);
228 } else if (gd->flags & GD_FLG_RELOC) {
229 /* bd->bi_dram is available only after relocation */
230 start = bd->bi_dram[bank].start;
231 size = bd->bi_dram[bank].size;
232 } else {
233 /* mark cacheable and executable the beggining of the DDR */
234 start = STM32_DDR_BASE;
235 size = CONFIG_DDR_CACHEABLE_SIZE;
236 }
237
238 for (i = start >> MMU_SECTION_SHIFT;
239 i < (start >> MMU_SECTION_SHIFT) + (size >> MMU_SECTION_SHIFT);
240 i++)
241 set_section_dcache(i, DCACHE_DEFAULT_OPTION);
242}
243/*
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200244 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
245 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
246 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
247 */
248static void early_enable_caches(void)
249{
250 /* I-cache is already enabled in start.S: cpu_init_cp15 */
251
252 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
253 return;
254
Patrice Chotard18a87162021-02-24 13:53:27 +0100255 if (!(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))) {
256 gd->arch.tlb_size = PGTABLE_SIZE;
257 gd->arch.tlb_addr = (unsigned long)&early_tlb;
258 }
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200259
Patrick Delaunay4ad5a122021-02-05 13:53:33 +0100260 /* enable MMU (default configuration) */
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200261 dcache_enable();
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200262}
263
264/*
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100265 * Early system init
266 */
Patrick Delaunay85b53972018-03-12 10:46:10 +0100267int arch_cpu_init(void)
268{
Patrick Delaunay82168e82018-05-17 14:50:46 +0200269 u32 boot_mode;
270
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200271 early_enable_caches();
272
Patrick Delaunay85b53972018-03-12 10:46:10 +0100273 /* early armv7 timer init: needed for polling */
274 timer_init();
275
276#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +0200277#ifndef CONFIG_TFABOOT
Patrick Delaunay85b53972018-03-12 10:46:10 +0100278 security_init();
Patrick Delaunay18660a62019-02-27 17:01:12 +0100279 update_bootmode();
Patrick Delaunay85b53972018-03-12 10:46:10 +0100280#endif
Fabien Dessenne9ebbdc92019-10-30 14:38:30 +0100281 /* Reset Coprocessor state unless it wakes up from Standby power mode */
282 if (!(readl(PWR_MCUCR) & PWR_MCUCR_SBF)) {
283 writel(TAMP_COPRO_STATE_OFF, TAMP_COPRO_STATE);
284 writel(0, TAMP_COPRO_RSC_TBL_ADDRESS);
285 }
Patrick Delaunay5d061412019-02-12 11:44:39 +0100286#endif
Patrick Delaunay82168e82018-05-17 14:50:46 +0200287
Patrick Delaunay82168e82018-05-17 14:50:46 +0200288 boot_mode = get_bootmode();
289
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100290 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) &&
291 (boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
Patrick Delaunay82168e82018-05-17 14:50:46 +0200292 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
293#if defined(CONFIG_DEBUG_UART) && \
Patrick Delaunayf8fe21d2020-04-01 09:07:33 +0200294 !defined(CONFIG_TFABOOT) && \
Patrick Delaunay82168e82018-05-17 14:50:46 +0200295 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
296 else
297 debug_uart_init();
298#endif
Patrick Delaunay85b53972018-03-12 10:46:10 +0100299
300 return 0;
301}
302
Patrick Delaunay58e95532018-03-19 19:09:20 +0100303void enable_caches(void)
304{
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200305 /* I-cache is already enabled in start.S: icache_enable() not needed */
306
307 /* deactivate the data cache, early enabled in arch_cpu_init() */
308 dcache_disable();
309 /*
310 * update MMU after relocation and enable the data cache
311 * warning: the TLB location udpated in board_f.c::reserve_mmu
312 */
Patrick Delaunay58e95532018-03-19 19:09:20 +0100313 dcache_enable();
314}
315
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100316static u32 read_idc(void)
317{
Patrick Delaunay6332c042020-06-16 18:27:44 +0200318 /* DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE */
319 if (bsec_dbgswenable()) {
320 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100321
Patrick Delaunay6332c042020-06-16 18:27:44 +0200322 return readl(DBGMCU_IDC);
323 }
324
325 if (CONFIG_IS_ENABLED(STM32MP15x))
326 return CPU_DEV_STM32MP15; /* STM32MP15x and unknown revision */
327 else
328 return 0x0;
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100329}
330
Patrick Delaunay79bc6402020-03-18 09:24:48 +0100331u32 get_cpu_dev(void)
332{
333 return (read_idc() & DBGMCU_IDC_DEV_ID_MASK) >> DBGMCU_IDC_DEV_ID_SHIFT;
334}
335
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100336u32 get_cpu_rev(void)
337{
338 return (read_idc() & DBGMCU_IDC_REV_ID_MASK) >> DBGMCU_IDC_REV_ID_SHIFT;
339}
340
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100341static u32 get_otp(int index, int shift, int mask)
342{
343 int ret;
344 struct udevice *dev;
345 u32 otp = 0;
346
347 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700348 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100349 &dev);
350
351 if (!ret)
352 ret = misc_read(dev, STM32_BSEC_SHADOW(index),
353 &otp, sizeof(otp));
354
355 return (otp >> shift) & mask;
356}
357
358/* Get Device Part Number (RPN) from OTP */
359static u32 get_cpu_rpn(void)
360{
361 return get_otp(BSEC_OTP_RPN, RPN_SHIFT, RPN_MASK);
362}
363
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100364u32 get_cpu_type(void)
365{
Patrick Delaunay79bc6402020-03-18 09:24:48 +0100366 return (get_cpu_dev() << 16) | get_cpu_rpn();
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100367}
368
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100369/* Get Package options from OTP */
Patrick Delaunayc74d6342019-07-05 17:20:13 +0200370u32 get_cpu_package(void)
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100371{
372 return get_otp(BSEC_OTP_PKG, PKG_SHIFT, PKG_MASK);
373}
374
Patrick Delaunay3e738f22020-02-12 19:37:43 +0100375void get_soc_name(char name[SOC_NAME_SIZE])
Patrick Delaunay85b53972018-03-12 10:46:10 +0100376{
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100377 char *cpu_s, *cpu_r, *pkg;
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100378
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100379 /* MPUs Part Numbers */
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100380 switch (get_cpu_type()) {
Patrick Delaunaydb33b0e2020-02-26 11:26:43 +0100381 case CPU_STM32MP157Fxx:
382 cpu_s = "157F";
383 break;
384 case CPU_STM32MP157Dxx:
385 cpu_s = "157D";
386 break;
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100387 case CPU_STM32MP157Cxx:
388 cpu_s = "157C";
389 break;
390 case CPU_STM32MP157Axx:
391 cpu_s = "157A";
392 break;
Patrick Delaunaydb33b0e2020-02-26 11:26:43 +0100393 case CPU_STM32MP153Fxx:
394 cpu_s = "153F";
395 break;
396 case CPU_STM32MP153Dxx:
397 cpu_s = "153D";
398 break;
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100399 case CPU_STM32MP153Cxx:
400 cpu_s = "153C";
401 break;
402 case CPU_STM32MP153Axx:
403 cpu_s = "153A";
404 break;
Patrick Delaunaydb33b0e2020-02-26 11:26:43 +0100405 case CPU_STM32MP151Fxx:
406 cpu_s = "151F";
407 break;
408 case CPU_STM32MP151Dxx:
409 cpu_s = "151D";
410 break;
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100411 case CPU_STM32MP151Cxx:
412 cpu_s = "151C";
413 break;
414 case CPU_STM32MP151Axx:
415 cpu_s = "151A";
416 break;
417 default:
418 cpu_s = "????";
419 break;
420 }
421
422 /* Package */
423 switch (get_cpu_package()) {
424 case PKG_AA_LBGA448:
425 pkg = "AA";
426 break;
427 case PKG_AB_LBGA354:
428 pkg = "AB";
429 break;
430 case PKG_AC_TFBGA361:
431 pkg = "AC";
432 break;
433 case PKG_AD_TFBGA257:
434 pkg = "AD";
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100435 break;
436 default:
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100437 pkg = "??";
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100438 break;
439 }
440
Patrick Delaunay45c82d22019-02-27 17:01:13 +0100441 /* REVISION */
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100442 switch (get_cpu_rev()) {
443 case CPU_REVA:
444 cpu_r = "A";
445 break;
446 case CPU_REVB:
447 cpu_r = "B";
448 break;
Patrick Delaunayc8d4afe2020-01-28 10:11:06 +0100449 case CPU_REVZ:
450 cpu_r = "Z";
451 break;
Patrick Delaunay01e3afe2018-03-19 19:09:21 +0100452 default:
453 cpu_r = "?";
454 break;
455 }
456
Patrick Delaunay3e738f22020-02-12 19:37:43 +0100457 snprintf(name, SOC_NAME_SIZE, "STM32MP%s%s Rev.%s", cpu_s, pkg, cpu_r);
458}
459
460#if defined(CONFIG_DISPLAY_CPUINFO)
461int print_cpuinfo(void)
462{
463 char name[SOC_NAME_SIZE];
464
465 get_soc_name(name);
466 printf("CPU: %s\n", name);
Patrick Delaunay85b53972018-03-12 10:46:10 +0100467
468 return 0;
469}
470#endif /* CONFIG_DISPLAY_CPUINFO */
471
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100472static void setup_boot_mode(void)
473{
Patrick Delaunay18660a62019-02-27 17:01:12 +0100474 const u32 serial_addr[] = {
475 STM32_USART1_BASE,
476 STM32_USART2_BASE,
477 STM32_USART3_BASE,
478 STM32_UART4_BASE,
479 STM32_UART5_BASE,
480 STM32_USART6_BASE,
481 STM32_UART7_BASE,
482 STM32_UART8_BASE
483 };
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100484 char cmd[60];
485 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
486 u32 boot_mode =
487 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay1b03eb02019-06-21 15:26:39 +0200488 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100489 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100490 struct udevice *dev;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100491
Patrick Delaunayba779402020-11-06 19:01:29 +0100492 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
493 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100494 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
495 case BOOT_SERIAL_UART:
Patrick Delaunay18660a62019-02-27 17:01:12 +0100496 if (instance > ARRAY_SIZE(serial_addr))
497 break;
Patrick Delaunaye2592992021-02-25 13:37:03 +0100498 /* serial : search associated node in devicetree */
Patrick Delaunay18660a62019-02-27 17:01:12 +0100499 sprintf(cmd, "serial@%x", serial_addr[instance]);
Patrick Delaunaye2592992021-02-25 13:37:03 +0100500 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev)) {
Patrick Delaunay7540d872021-02-25 13:37:02 +0100501 /* restore console on error */
502 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL))
503 gd->flags &= ~(GD_FLG_SILENT |
504 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaye2592992021-02-25 13:37:03 +0100505 printf("uart%d = %s not found in device tree!\n",
Patrick Delaunay7540d872021-02-25 13:37:02 +0100506 instance, cmd);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100507 break;
Patrick Delaunay7540d872021-02-25 13:37:02 +0100508 }
Patrick Delaunaye2592992021-02-25 13:37:03 +0100509 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay18660a62019-02-27 17:01:12 +0100510 env_set("boot_device", "serial");
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100511 env_set("boot_instance", cmd);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100512
513 /* restore console on uart when not used */
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100514 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) && gd->cur_serial_dev != dev) {
Patrick Delaunay18660a62019-02-27 17:01:12 +0100515 gd->flags &= ~(GD_FLG_SILENT |
516 GD_FLG_DISABLE_CONSOLE);
517 printf("serial boot with console enabled!\n");
518 }
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100519 break;
520 case BOOT_SERIAL_USB:
521 env_set("boot_device", "usb");
522 env_set("boot_instance", "0");
523 break;
524 case BOOT_FLASH_SD:
525 case BOOT_FLASH_EMMC:
526 sprintf(cmd, "%d", instance);
527 env_set("boot_device", "mmc");
528 env_set("boot_instance", cmd);
529 break;
530 case BOOT_FLASH_NAND:
531 env_set("boot_device", "nand");
532 env_set("boot_instance", "0");
533 break;
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +0100534 case BOOT_FLASH_SPINAND:
535 env_set("boot_device", "spi-nand");
536 env_set("boot_instance", "0");
537 break;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100538 case BOOT_FLASH_NOR:
539 env_set("boot_device", "nor");
540 env_set("boot_instance", "0");
541 break;
542 default:
Patrick Delaunayba779402020-11-06 19:01:29 +0100543 log_debug("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100544 break;
545 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100546
547 switch (forced_mode) {
548 case BOOT_FASTBOOT:
549 printf("Enter fastboot!\n");
550 env_set("preboot", "env set preboot; fastboot 0");
551 break;
552 case BOOT_STM32PROG:
553 env_set("boot_device", "usb");
554 env_set("boot_instance", "0");
555 break;
556 case BOOT_UMS_MMC0:
557 case BOOT_UMS_MMC1:
558 case BOOT_UMS_MMC2:
559 printf("Enter UMS!\n");
560 instance = forced_mode - BOOT_UMS_MMC0;
561 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
562 env_set("preboot", cmd);
563 break;
564 case BOOT_RECOVERY:
565 env_set("preboot", "env set preboot; run altbootcmd");
566 break;
567 case BOOT_NORMAL:
568 break;
569 default:
Patrick Delaunayba779402020-11-06 19:01:29 +0100570 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100571 break;
572 }
573
574 /* clear TAMP for next reboot */
575 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200576}
577
578/*
579 * If there is no MAC address in the environment, then it will be initialized
580 * (silently) from the value in the OTP.
581 */
Marek Vasut187cae22019-12-18 16:52:19 +0100582__weak int setup_mac_address(void)
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200583{
584#if defined(CONFIG_NET)
585 int ret;
586 int i;
587 u32 otp[2];
588 uchar enetaddr[6];
589 struct udevice *dev;
590
591 /* MAC already in environment */
592 if (eth_env_get_enetaddr("ethaddr", enetaddr))
593 return 0;
594
595 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700596 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200597 &dev);
598 if (ret)
599 return ret;
600
Patrick Delaunay10263a52019-02-27 17:01:29 +0100601 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200602 otp, sizeof(otp));
Simon Glass587dc402018-11-06 15:21:39 -0700603 if (ret < 0)
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200604 return ret;
605
606 for (i = 0; i < 6; i++)
607 enetaddr[i] = ((uint8_t *)&otp)[i];
608
609 if (!is_valid_ethaddr(enetaddr)) {
Patrick Delaunayba779402020-11-06 19:01:29 +0100610 log_err("invalid MAC address in OTP %pM\n", enetaddr);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200611 return -EINVAL;
612 }
Patrick Delaunayba779402020-11-06 19:01:29 +0100613 log_debug("OTP MAC address = %pM\n", enetaddr);
Patrick Delaunay3a8e4062020-04-07 16:07:46 +0200614 ret = eth_env_set_enetaddr("ethaddr", enetaddr);
615 if (ret)
Patrick Delaunayba779402020-11-06 19:01:29 +0100616 log_err("Failed to set mac address %pM from OTP: %d\n", enetaddr, ret);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200617#endif
618
619 return 0;
620}
621
622static int setup_serial_number(void)
623{
624 char serial_string[25];
625 u32 otp[3] = {0, 0, 0 };
626 struct udevice *dev;
627 int ret;
628
629 if (env_get("serial#"))
630 return 0;
631
632 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700633 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200634 &dev);
635 if (ret)
636 return ret;
637
Patrick Delaunay10263a52019-02-27 17:01:29 +0100638 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200639 otp, sizeof(otp));
Simon Glass587dc402018-11-06 15:21:39 -0700640 if (ret < 0)
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200641 return ret;
642
Patrick Delaunayaf5564a2019-02-27 17:01:25 +0100643 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200644 env_set("serial#", serial_string);
645
646 return 0;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100647}
648
649int arch_misc_init(void)
650{
651 setup_boot_mode();
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200652 setup_mac_address();
653 setup_serial_number();
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100654
655 return 0;
656}