blob: b8f05ab97f84845cc595b7c69d68f05f3c1e7715 [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>
Simon Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020022#include <dm/device.h>
Patrick Delaunay08772f62018-03-20 10:54:53 +010023#include <dm/uclass.h>
Simon Glasscd93d622020-05-10 11:40:13 -060024#include <linux/bitops.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010025
Patrick Delaunaycda3dcb2018-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 Delaunay59a54e32019-02-27 17:01:26 +010031#define RCC_MP_AHB5ENSETR (STM32_RCC_BASE + 0x0210)
Patrick Delaunaycda3dcb2018-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 Delaunay2514c2d2018-03-12 10:46:10 +010035
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010036/* Security register */
Patrick Delaunay2514c2d2018-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 Dessenne7bff9712019-10-30 14:38:30 +010047#define PWR_MCUCR (STM32_PWR_BASE + 0x14)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010048#define PWR_CR1_DBP BIT(8)
Fabien Dessenne7bff9712019-10-30 14:38:30 +010049#define PWR_MCUCR_SBF BIT(6)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010050
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010051/* DBGMCU register */
Patrick Delaunay96583cd2018-03-19 19:09:21 +010052#define DBGMCU_IDC (STM32_DBGMCU_BASE + 0x00)
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +010053#define DBGMCU_APB4FZ1 (STM32_DBGMCU_BASE + 0x2C)
54#define DBGMCU_APB4FZ1_IWDG2 BIT(2)
Patrick Delaunay96583cd2018-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 Delaunay2514c2d2018-03-12 10:46:10 +010059
Patrick Delaunay59a54e32019-02-27 17:01:26 +010060/* GPIOZ registers */
61#define GPIOZ_SECCFGR 0x54004030
62
Patrick Delaunay08772f62018-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 Delaunay35d568f2019-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 Delaunay7e8471c2020-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 Delaunaycda3dcb2018-03-19 19:09:20 +010093#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunay654706b2020-04-01 09:07:33 +020094#ifndef CONFIG_TFABOOT
Patrick Delaunay2514c2d2018-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 Delaunay59a54e32019-02-27 17:01:26 +0100149
150 /* GPIOZ: deactivate the security */
151 writel(BIT(0), RCC_MP_AHB5ENSETR);
152 writel(0x0, GPIOZ_SECCFGR);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100153}
Patrick Delaunay654706b2020-04-01 09:07:33 +0200154#endif /* CONFIG_TFABOOT */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100155
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100156/*
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100157 * Debug init
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100158 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100159static void dbgmcu_init(void)
160{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200161 /*
162 * Freeze IWDG2 if Cortex-A7 is in debug mode
163 * done in TF-A for TRUSTED boot and
164 * DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE
165 */
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200166 if (!IS_ENABLED(CONFIG_TFABOOT) && bsec_dbgswenable()) {
167 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200168 setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
Patrick Delaunay97f7e392020-07-24 11:13:31 +0200169 }
170}
171
172void spl_board_init(void)
173{
174 dbgmcu_init();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100175}
176#endif /* !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) */
177
Patrick Delaunay654706b2020-04-01 09:07:33 +0200178#if !defined(CONFIG_TFABOOT) && \
Patrick Delaunayabf26782019-02-12 11:44:39 +0100179 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Patrick Delaunay7f63c1e2019-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 Delaunay08772f62018-03-20 10:54:53 +0100184 u32 bootrom_itf = readl(BOOTROM_PARAM_ADDR);
185 u32 bootrom_device, bootrom_instance;
186
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100187 /* enable TAMP clock = RTCAPBEN */
188 writel(BIT(8), RCC_MP_APB5ENSETR);
189
190 /* read bootrom context */
Patrick Delaunay08772f62018-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 Delaunay7f63c1e2019-02-27 17:01:12 +0100204}
Patrick Delaunay08772f62018-03-20 10:54:53 +0100205#endif
Patrick Delaunay7f63c1e2019-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 Delaunay08772f62018-03-20 10:54:53 +0100212}
213
214/*
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200215 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
216 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
217 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
218 */
219static void early_enable_caches(void)
220{
221 /* I-cache is already enabled in start.S: cpu_init_cp15 */
222
223 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
224 return;
225
Patrice Chotard23e20b22021-02-24 13:53:27 +0100226 if (!(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))) {
227 gd->arch.tlb_size = PGTABLE_SIZE;
228 gd->arch.tlb_addr = (unsigned long)&early_tlb;
229 }
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200230
231 dcache_enable();
232
233 if (IS_ENABLED(CONFIG_SPL_BUILD))
Patrick Delaunay43fe9d22020-07-24 11:21:51 +0200234 mmu_set_region_dcache_behaviour(
Patrick Delaunay77c077e2020-11-04 09:22:09 +0100235 ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE),
236 ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE),
Patrick Delaunay43fe9d22020-07-24 11:21:51 +0200237 DCACHE_DEFAULT_OPTION);
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200238 else
Patrick Delaunay67f9f112020-09-04 12:55:19 +0200239 mmu_set_region_dcache_behaviour(STM32_DDR_BASE,
240 CONFIG_DDR_CACHEABLE_SIZE,
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200241 DCACHE_DEFAULT_OPTION);
242}
243
244/*
Patrick Delaunay08772f62018-03-20 10:54:53 +0100245 * Early system init
246 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100247int arch_cpu_init(void)
248{
Patrick Delaunay320d2662018-05-17 14:50:46 +0200249 u32 boot_mode;
250
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200251 early_enable_caches();
252
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100253 /* early armv7 timer init: needed for polling */
254 timer_init();
255
256#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
Patrick Delaunay654706b2020-04-01 09:07:33 +0200257#ifndef CONFIG_TFABOOT
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100258 security_init();
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100259 update_bootmode();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100260#endif
Fabien Dessenne7bff9712019-10-30 14:38:30 +0100261 /* Reset Coprocessor state unless it wakes up from Standby power mode */
262 if (!(readl(PWR_MCUCR) & PWR_MCUCR_SBF)) {
263 writel(TAMP_COPRO_STATE_OFF, TAMP_COPRO_STATE);
264 writel(0, TAMP_COPRO_RSC_TBL_ADDRESS);
265 }
Patrick Delaunayabf26782019-02-12 11:44:39 +0100266#endif
Patrick Delaunay320d2662018-05-17 14:50:46 +0200267
Patrick Delaunay320d2662018-05-17 14:50:46 +0200268 boot_mode = get_bootmode();
269
Patrick Delaunay5a05af82021-02-25 13:37:01 +0100270 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) &&
271 (boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
Patrick Delaunay320d2662018-05-17 14:50:46 +0200272 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
273#if defined(CONFIG_DEBUG_UART) && \
Patrick Delaunay654706b2020-04-01 09:07:33 +0200274 !defined(CONFIG_TFABOOT) && \
Patrick Delaunay320d2662018-05-17 14:50:46 +0200275 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
276 else
277 debug_uart_init();
278#endif
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100279
280 return 0;
281}
282
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100283void enable_caches(void)
284{
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200285 /* I-cache is already enabled in start.S: icache_enable() not needed */
286
287 /* deactivate the data cache, early enabled in arch_cpu_init() */
288 dcache_disable();
289 /*
290 * update MMU after relocation and enable the data cache
291 * warning: the TLB location udpated in board_f.c::reserve_mmu
292 */
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100293 dcache_enable();
294}
295
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100296static u32 read_idc(void)
297{
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200298 /* DBGMCU access is controlled by BSEC_DENABLE.DBGSWENABLE */
299 if (bsec_dbgswenable()) {
300 setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100301
Patrick Delaunaybd3f60d2020-06-16 18:27:44 +0200302 return readl(DBGMCU_IDC);
303 }
304
305 if (CONFIG_IS_ENABLED(STM32MP15x))
306 return CPU_DEV_STM32MP15; /* STM32MP15x and unknown revision */
307 else
308 return 0x0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100309}
310
Patrick Delaunay7802a442020-03-18 09:24:48 +0100311u32 get_cpu_dev(void)
312{
313 return (read_idc() & DBGMCU_IDC_DEV_ID_MASK) >> DBGMCU_IDC_DEV_ID_SHIFT;
314}
315
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100316u32 get_cpu_rev(void)
317{
318 return (read_idc() & DBGMCU_IDC_REV_ID_MASK) >> DBGMCU_IDC_REV_ID_SHIFT;
319}
320
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100321static u32 get_otp(int index, int shift, int mask)
322{
323 int ret;
324 struct udevice *dev;
325 u32 otp = 0;
326
327 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700328 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100329 &dev);
330
331 if (!ret)
332 ret = misc_read(dev, STM32_BSEC_SHADOW(index),
333 &otp, sizeof(otp));
334
335 return (otp >> shift) & mask;
336}
337
338/* Get Device Part Number (RPN) from OTP */
339static u32 get_cpu_rpn(void)
340{
341 return get_otp(BSEC_OTP_RPN, RPN_SHIFT, RPN_MASK);
342}
343
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100344u32 get_cpu_type(void)
345{
Patrick Delaunay7802a442020-03-18 09:24:48 +0100346 return (get_cpu_dev() << 16) | get_cpu_rpn();
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100347}
348
349/* Get Package options from OTP */
Patrick Delaunay24cb4582019-07-05 17:20:13 +0200350u32 get_cpu_package(void)
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100351{
352 return get_otp(BSEC_OTP_PKG, PKG_SHIFT, PKG_MASK);
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100353}
354
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200355static const char * const soc_type[] = {
356 "????",
357 "151C", "151A", "151F", "151D",
358 "153C", "153A", "153F", "153D",
359 "157C", "157A", "157F", "157D"
360};
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100361
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200362static const char * const soc_pkg[] = { "??", "AD", "AC", "AB", "AA" };
363static const char * const soc_rev[] = { "?", "A", "B", "Z" };
364
365static void get_cpu_string_offsets(unsigned int *type, unsigned int *pkg,
366 unsigned int *rev)
367{
368 u32 cpu_type = get_cpu_type();
369 u32 ct = cpu_type & ~(BIT(7) | BIT(0));
370 u32 cm = ((cpu_type & BIT(7)) >> 6) | (cpu_type & BIT(0));
371 u32 cp = get_cpu_package();
372
373 /* Bits 0 and 7 are the ACDF, 00:C 01:A 10:F 11:D */
374 switch (ct) {
375 case CPU_STM32MP151Cxx:
376 *type = cm + 1;
Patrick Delaunay050fed82020-02-26 11:26:43 +0100377 break;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100378 case CPU_STM32MP153Cxx:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200379 *type = cm + 5;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100380 break;
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200381 case CPU_STM32MP157Cxx:
382 *type = cm + 9;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100383 break;
384 default:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200385 *type = 0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100386 break;
387 }
388
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100389 /* Package */
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200390 switch (cp) {
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100391 case PKG_AA_LBGA448:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100392 case PKG_AB_LBGA354:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100393 case PKG_AC_TFBGA361:
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100394 case PKG_AD_TFBGA257:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200395 *pkg = cp;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100396 break;
397 default:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200398 *pkg = 0;
Patrick Delaunay35d568f2019-02-27 17:01:13 +0100399 break;
400 }
401
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200402 /* Revision */
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100403 switch (get_cpu_rev()) {
404 case CPU_REVA:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200405 *rev = 1;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100406 break;
407 case CPU_REVB:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200408 *rev = 2;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100409 break;
Patrick Delaunaycf0818b2020-01-28 10:11:06 +0100410 case CPU_REVZ:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200411 *rev = 3;
Patrick Delaunaycf0818b2020-01-28 10:11:06 +0100412 break;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100413 default:
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200414 *rev = 0;
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100415 break;
416 }
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200417}
Patrick Delaunay96583cd2018-03-19 19:09:21 +0100418
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200419void get_soc_name(char name[SOC_NAME_SIZE])
420{
421 unsigned int type, pkg, rev;
422
423 get_cpu_string_offsets(&type, &pkg, &rev);
424
425 snprintf(name, SOC_NAME_SIZE, "STM32MP%s%s Rev.%s",
426 soc_type[type], soc_pkg[pkg], soc_rev[rev]);
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100427}
428
429#if defined(CONFIG_DISPLAY_CPUINFO)
430int print_cpuinfo(void)
431{
432 char name[SOC_NAME_SIZE];
433
434 get_soc_name(name);
435 printf("CPU: %s\n", name);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100436
437 return 0;
438}
439#endif /* CONFIG_DISPLAY_CPUINFO */
440
Patrick Delaunay08772f62018-03-20 10:54:53 +0100441static void setup_boot_mode(void)
442{
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100443 const u32 serial_addr[] = {
444 STM32_USART1_BASE,
445 STM32_USART2_BASE,
446 STM32_USART3_BASE,
447 STM32_UART4_BASE,
448 STM32_UART5_BASE,
449 STM32_USART6_BASE,
450 STM32_UART7_BASE,
451 STM32_UART8_BASE
452 };
Patrick Delaunay08772f62018-03-20 10:54:53 +0100453 char cmd[60];
454 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
455 u32 boot_mode =
456 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunaye609e132019-06-21 15:26:39 +0200457 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100458 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100459 struct udevice *dev;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100460
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100461 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
462 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100463 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
464 case BOOT_SERIAL_UART:
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100465 if (instance > ARRAY_SIZE(serial_addr))
466 break;
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100467 /* serial : search associated node in devicetree */
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100468 sprintf(cmd, "serial@%x", serial_addr[instance]);
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100469 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev)) {
Patrick Delaunayb9d5e3a2021-02-25 13:37:02 +0100470 /* restore console on error */
471 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL))
472 gd->flags &= ~(GD_FLG_SILENT |
473 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200474 log_err("uart%d = %s not found in device tree!\n",
475 instance + 1, cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100476 break;
Patrick Delaunayb9d5e3a2021-02-25 13:37:02 +0100477 }
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100478 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100479 env_set("boot_device", "serial");
Patrick Delaunay08772f62018-03-20 10:54:53 +0100480 env_set("boot_instance", cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100481
482 /* restore console on uart when not used */
Patrick Delaunay5a05af82021-02-25 13:37:01 +0100483 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) && gd->cur_serial_dev != dev) {
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100484 gd->flags &= ~(GD_FLG_SILENT |
485 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200486 log_info("serial boot with console enabled!\n");
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100487 }
Patrick Delaunay08772f62018-03-20 10:54:53 +0100488 break;
489 case BOOT_SERIAL_USB:
490 env_set("boot_device", "usb");
491 env_set("boot_instance", "0");
492 break;
493 case BOOT_FLASH_SD:
494 case BOOT_FLASH_EMMC:
495 sprintf(cmd, "%d", instance);
496 env_set("boot_device", "mmc");
497 env_set("boot_instance", cmd);
498 break;
499 case BOOT_FLASH_NAND:
500 env_set("boot_device", "nand");
501 env_set("boot_instance", "0");
502 break;
Patrick Delaunayb664a742020-03-18 09:22:52 +0100503 case BOOT_FLASH_SPINAND:
504 env_set("boot_device", "spi-nand");
505 env_set("boot_instance", "0");
506 break;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100507 case BOOT_FLASH_NOR:
508 env_set("boot_device", "nor");
509 env_set("boot_instance", "0");
510 break;
511 default:
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100512 log_debug("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100513 break;
514 }
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100515
516 switch (forced_mode) {
517 case BOOT_FASTBOOT:
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200518 log_info("Enter fastboot!\n");
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100519 env_set("preboot", "env set preboot; fastboot 0");
520 break;
521 case BOOT_STM32PROG:
522 env_set("boot_device", "usb");
523 env_set("boot_instance", "0");
524 break;
525 case BOOT_UMS_MMC0:
526 case BOOT_UMS_MMC1:
527 case BOOT_UMS_MMC2:
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200528 log_info("Enter UMS!\n");
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100529 instance = forced_mode - BOOT_UMS_MMC0;
530 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
531 env_set("preboot", cmd);
532 break;
533 case BOOT_RECOVERY:
534 env_set("preboot", "env set preboot; run altbootcmd");
535 break;
536 case BOOT_NORMAL:
537 break;
538 default:
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100539 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100540 break;
541 }
542
543 /* clear TAMP for next reboot */
544 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100545}
546
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200547/*
548 * If there is no MAC address in the environment, then it will be initialized
549 * (silently) from the value in the OTP.
550 */
Marek Vasute71b9a62019-12-18 16:52:19 +0100551__weak int setup_mac_address(void)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200552{
553#if defined(CONFIG_NET)
554 int ret;
555 int i;
556 u32 otp[2];
557 uchar enetaddr[6];
558 struct udevice *dev;
559
560 /* MAC already in environment */
561 if (eth_env_get_enetaddr("ethaddr", enetaddr))
562 return 0;
563
564 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700565 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200566 &dev);
567 if (ret)
568 return ret;
569
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100570 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200571 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700572 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200573 return ret;
574
575 for (i = 0; i < 6; i++)
576 enetaddr[i] = ((uint8_t *)&otp)[i];
577
578 if (!is_valid_ethaddr(enetaddr)) {
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100579 log_err("invalid MAC address in OTP %pM\n", enetaddr);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200580 return -EINVAL;
581 }
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100582 log_debug("OTP MAC address = %pM\n", enetaddr);
Patrick Delaunaycf8df342020-04-07 16:07:46 +0200583 ret = eth_env_set_enetaddr("ethaddr", enetaddr);
584 if (ret)
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100585 log_err("Failed to set mac address %pM from OTP: %d\n", enetaddr, ret);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200586#endif
587
588 return 0;
589}
590
591static int setup_serial_number(void)
592{
593 char serial_string[25];
594 u32 otp[3] = {0, 0, 0 };
595 struct udevice *dev;
596 int ret;
597
598 if (env_get("serial#"))
599 return 0;
600
601 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700602 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200603 &dev);
604 if (ret)
605 return ret;
606
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100607 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200608 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700609 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200610 return ret;
611
Patrick Delaunay8983ba22019-02-27 17:01:25 +0100612 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200613 env_set("serial#", serial_string);
614
615 return 0;
616}
617
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200618static void setup_soc_type_pkg_rev(void)
619{
620 unsigned int type, pkg, rev;
621
622 get_cpu_string_offsets(&type, &pkg, &rev);
623
624 env_set("soc_type", soc_type[type]);
625 env_set("soc_pkg", soc_pkg[pkg]);
626 env_set("soc_rev", soc_rev[rev]);
627}
628
Patrick Delaunay08772f62018-03-20 10:54:53 +0100629int arch_misc_init(void)
630{
631 setup_boot_mode();
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200632 setup_mac_address();
633 setup_serial_number();
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200634 setup_soc_type_pkg_rev();
Patrick Delaunay08772f62018-03-20 10:54:53 +0100635
636 return 0;
637}