blob: cb1b84c9af9adf7e5fb806d3c2650b04a4d2cd3b [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 <clk.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07009#include <cpu_func.h>
Patrick Delaunay82168e82018-05-17 14:50:46 +020010#include <debug_uart.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060011#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Patrick Delaunayc9468742021-05-07 14:50:35 +020014#include <lmb.h>
Patrick Delaunayf3674a42018-05-17 15:24:07 +020015#include <misc.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060016#include <spl.h>
Patrick Delaunay3fa644b2024-01-15 15:05:51 +010017#include <asm/cache.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010018#include <asm/io.h>
19#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>
Simon Glassbdd5f812023-09-14 18:21:46 -060025#include <linux/printk.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010026
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020027/*
28 * early TLB into the .data section so that it not get cleared
29 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
30 */
31u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
32
Patrick Delaunay18660a62019-02-27 17:01:12 +010033u32 get_bootmode(void)
34{
35 /* read bootmode from TAMP backup register */
36 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
37 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunayc5d15652018-03-20 10:54:53 +010038}
39
Igor Opaniuk100e0ec2023-11-06 11:41:52 +010040u32 get_bootauth(void)
41{
42 /* read boot auth status and partition from TAMP backup register */
43 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_AUTH_MASK) >>
44 TAMP_BOOT_AUTH_SHIFT;
45}
46
Patrick Delaunayc5d15652018-03-20 10:54:53 +010047/*
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010048 * weak function overidde: set the DDR/SYSRAM executable before to enable the
49 * MMU and configure DACR, for early early_enable_caches (SPL or pre-reloc)
50 */
51void dram_bank_mmu_setup(int bank)
52{
53 struct bd_info *bd = gd->bd;
54 int i;
55 phys_addr_t start;
Patrice Chotard226dc382024-12-13 14:26:55 +010056 phys_addr_t addr;
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010057 phys_size_t size;
Patrick Delaunayc9468742021-05-07 14:50:35 +020058 bool use_lmb = false;
59 enum dcache_option option;
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010060
Simon Glass85ed77d2024-09-29 19:49:46 -060061 if (IS_ENABLED(CONFIG_XPL_BUILD)) {
Patrick Delaunay123687c2022-05-20 18:24:46 +020062/* STM32_SYSRAM_BASE exist only when SPL is supported */
63#ifdef CONFIG_SPL
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010064 start = ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE);
65 size = ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE);
Patrick Delaunay123687c2022-05-20 18:24:46 +020066#endif
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010067 } else if (gd->flags & GD_FLG_RELOC) {
68 /* bd->bi_dram is available only after relocation */
69 start = bd->bi_dram[bank].start;
70 size = bd->bi_dram[bank].size;
Patrick Delaunayc9468742021-05-07 14:50:35 +020071 use_lmb = true;
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010072 } else {
73 /* mark cacheable and executable the beggining of the DDR */
74 start = STM32_DDR_BASE;
75 size = CONFIG_DDR_CACHEABLE_SIZE;
76 }
77
78 for (i = start >> MMU_SECTION_SHIFT;
79 i < (start >> MMU_SECTION_SHIFT) + (size >> MMU_SECTION_SHIFT);
Patrick Delaunayc9468742021-05-07 14:50:35 +020080 i++) {
Patrice Chotard226dc382024-12-13 14:26:55 +010081 addr = i << MMU_SECTION_SHIFT;
Patrick Delaunayc9468742021-05-07 14:50:35 +020082 option = DCACHE_DEFAULT_OPTION;
Patrice Chotard226dc382024-12-13 14:26:55 +010083 if (use_lmb &&
84 (lmb_is_reserved_flags(i << MMU_SECTION_SHIFT, LMB_NOMAP) ||
85 addr >= gd->ram_top)
86 )
Patrick Delaunayc9468742021-05-07 14:50:35 +020087 option = 0; /* INVALID ENTRY in TLB */
88 set_section_dcache(i, option);
89 }
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010090}
91/*
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020092 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
93 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
94 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
95 */
96static void early_enable_caches(void)
97{
98 /* I-cache is already enabled in start.S: cpu_init_cp15 */
99
100 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
101 return;
102
Bhupesh Sharma58af3fb2023-08-22 13:21:11 +0530103#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
Patrice Chotard18a87162021-02-24 13:53:27 +0100104 gd->arch.tlb_size = PGTABLE_SIZE;
105 gd->arch.tlb_addr = (unsigned long)&early_tlb;
Bhupesh Sharma58af3fb2023-08-22 13:21:11 +0530106#endif
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200107
Patrick Delaunay4ad5a122021-02-05 13:53:33 +0100108 /* enable MMU (default configuration) */
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200109 dcache_enable();
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200110}
111
112/*
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100113 * Early system init
114 */
Patrick Delaunay85b53972018-03-12 10:46:10 +0100115int arch_cpu_init(void)
116{
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200117 early_enable_caches();
118
Patrick Delaunay85b53972018-03-12 10:46:10 +0100119 /* early armv7 timer init: needed for polling */
120 timer_init();
121
Patrick Delaunaye4bdd542022-05-20 18:24:42 +0200122 return 0;
123}
124
125/* weak function for SOC specific initialization */
126__weak void stm32mp_cpu_init(void)
127{
128}
129
130int mach_cpu_init(void)
131{
132 u32 boot_mode;
133
134 stm32mp_cpu_init();
Patrick Delaunay82168e82018-05-17 14:50:46 +0200135
Patrick Delaunay82168e82018-05-17 14:50:46 +0200136 boot_mode = get_bootmode();
137
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100138 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) &&
139 (boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
Patrick Delaunay82168e82018-05-17 14:50:46 +0200140 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
Simon Glass85ed77d2024-09-29 19:49:46 -0600141 else if (IS_ENABLED(CONFIG_DEBUG_UART) && IS_ENABLED(CONFIG_XPL_BUILD))
Patrick Delaunay82168e82018-05-17 14:50:46 +0200142 debug_uart_init();
Patrick Delaunay85b53972018-03-12 10:46:10 +0100143
144 return 0;
145}
146
Patrick Delaunay58e95532018-03-19 19:09:20 +0100147void enable_caches(void)
148{
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200149 /* I-cache is already enabled in start.S: icache_enable() not needed */
150
Patrick Delaunaye880ea62024-10-11 17:31:49 +0200151 /* keep D-cache configuration done before relocation, wait arch_early_init_r*/
152}
153
154int arch_early_init_r(void)
155{
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200156 /* deactivate the data cache, early enabled in arch_cpu_init() */
157 dcache_disable();
158 /*
159 * update MMU after relocation and enable the data cache
160 * warning: the TLB location udpated in board_f.c::reserve_mmu
161 */
Patrick Delaunay58e95532018-03-19 19:09:20 +0100162 dcache_enable();
Patrick Delaunaye880ea62024-10-11 17:31:49 +0200163
164 return 0;
Patrick Delaunay58e95532018-03-19 19:09:20 +0100165}
166
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100167static void setup_boot_mode(void)
168{
Patrick Delaunay18660a62019-02-27 17:01:12 +0100169 const u32 serial_addr[] = {
170 STM32_USART1_BASE,
171 STM32_USART2_BASE,
172 STM32_USART3_BASE,
173 STM32_UART4_BASE,
174 STM32_UART5_BASE,
175 STM32_USART6_BASE,
176 STM32_UART7_BASE,
177 STM32_UART8_BASE
178 };
Patrick Delaunay5c2f6d72021-07-06 17:19:45 +0200179 const u32 sdmmc_addr[] = {
180 STM32_SDMMC1_BASE,
181 STM32_SDMMC2_BASE,
182 STM32_SDMMC3_BASE
183 };
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100184 char cmd[60];
185 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
186 u32 boot_mode =
187 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay1b03eb02019-06-21 15:26:39 +0200188 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100189 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100190 struct udevice *dev;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100191
Patrick Delaunayba779402020-11-06 19:01:29 +0100192 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
193 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100194 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
195 case BOOT_SERIAL_UART:
Rasmus Villemoes6d83f3c2023-03-24 08:55:19 +0100196 if (instance >= ARRAY_SIZE(serial_addr))
Patrick Delaunay18660a62019-02-27 17:01:12 +0100197 break;
Patrick Delaunaye2592992021-02-25 13:37:03 +0100198 /* serial : search associated node in devicetree */
Patrick Delaunay18660a62019-02-27 17:01:12 +0100199 sprintf(cmd, "serial@%x", serial_addr[instance]);
Patrick Delaunaye2592992021-02-25 13:37:03 +0100200 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev)) {
Patrick Delaunay7540d872021-02-25 13:37:02 +0100201 /* restore console on error */
202 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL))
203 gd->flags &= ~(GD_FLG_SILENT |
204 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunay643e4042021-04-06 09:27:39 +0200205 log_err("uart%d = %s not found in device tree!\n",
206 instance + 1, cmd);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100207 break;
Patrick Delaunay7540d872021-02-25 13:37:02 +0100208 }
Patrick Delaunaye2592992021-02-25 13:37:03 +0100209 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay18660a62019-02-27 17:01:12 +0100210 env_set("boot_device", "serial");
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100211 env_set("boot_instance", cmd);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100212
213 /* restore console on uart when not used */
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100214 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) && gd->cur_serial_dev != dev) {
Patrick Delaunay18660a62019-02-27 17:01:12 +0100215 gd->flags &= ~(GD_FLG_SILENT |
216 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunay643e4042021-04-06 09:27:39 +0200217 log_info("serial boot with console enabled!\n");
Patrick Delaunay18660a62019-02-27 17:01:12 +0100218 }
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100219 break;
220 case BOOT_SERIAL_USB:
221 env_set("boot_device", "usb");
222 env_set("boot_instance", "0");
223 break;
224 case BOOT_FLASH_SD:
225 case BOOT_FLASH_EMMC:
Rasmus Villemoes6d83f3c2023-03-24 08:55:19 +0100226 if (instance >= ARRAY_SIZE(sdmmc_addr))
Patrick Delaunay5c2f6d72021-07-06 17:19:45 +0200227 break;
228 /* search associated sdmmc node in devicetree */
229 sprintf(cmd, "mmc@%x", sdmmc_addr[instance]);
230 if (uclass_get_device_by_name(UCLASS_MMC, cmd, &dev)) {
231 printf("mmc%d = %s not found in device tree!\n",
232 instance, cmd);
233 break;
234 }
235 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100236 env_set("boot_device", "mmc");
237 env_set("boot_instance", cmd);
238 break;
239 case BOOT_FLASH_NAND:
240 env_set("boot_device", "nand");
241 env_set("boot_instance", "0");
242 break;
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +0100243 case BOOT_FLASH_SPINAND:
244 env_set("boot_device", "spi-nand");
245 env_set("boot_instance", "0");
246 break;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100247 case BOOT_FLASH_NOR:
248 env_set("boot_device", "nor");
249 env_set("boot_instance", "0");
250 break;
251 default:
Patrick Delaunay02e91972021-07-08 10:53:56 +0200252 env_set("boot_device", "invalid");
253 env_set("boot_instance", "");
254 log_err("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100255 break;
256 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100257
258 switch (forced_mode) {
259 case BOOT_FASTBOOT:
Patrick Delaunay643e4042021-04-06 09:27:39 +0200260 log_info("Enter fastboot!\n");
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100261 env_set("preboot", "env set preboot; fastboot 0");
262 break;
263 case BOOT_STM32PROG:
264 env_set("boot_device", "usb");
265 env_set("boot_instance", "0");
266 break;
267 case BOOT_UMS_MMC0:
268 case BOOT_UMS_MMC1:
269 case BOOT_UMS_MMC2:
Patrick Delaunay643e4042021-04-06 09:27:39 +0200270 log_info("Enter UMS!\n");
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100271 instance = forced_mode - BOOT_UMS_MMC0;
272 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
273 env_set("preboot", cmd);
274 break;
275 case BOOT_RECOVERY:
276 env_set("preboot", "env set preboot; run altbootcmd");
277 break;
278 case BOOT_NORMAL:
279 break;
280 default:
Patrick Delaunayba779402020-11-06 19:01:29 +0100281 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100282 break;
283 }
284
285 /* clear TAMP for next reboot */
286 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200287}
288
Patrick Delaunaye4bdd542022-05-20 18:24:42 +0200289__weak void stm32mp_misc_init(void)
Marek Vasut0eda28c2021-03-31 14:15:09 +0200290{
Igor Opaniuk100e0ec2023-11-06 11:41:52 +0100291}
292
293static int setup_boot_auth_info(void)
294{
295 char buf[10];
296 u32 bootauth = get_bootauth();
297
298 snprintf(buf, sizeof(buf), "%d", bootauth >> 4);
299 env_set("boot_auth", buf);
300
301 snprintf(buf, sizeof(buf), "%d", bootauth &
302 (u32)TAMP_BOOT_PARTITION_MASK);
303 env_set("boot_part", buf);
304
305 return 0;
Marek Vasut0eda28c2021-03-31 14:15:09 +0200306}
307
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100308int arch_misc_init(void)
309{
Igor Opaniuk100e0ec2023-11-06 11:41:52 +0100310 setup_boot_auth_info();
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100311 setup_boot_mode();
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200312 setup_mac_address();
313 setup_serial_number();
Patrick Delaunaye4bdd542022-05-20 18:24:42 +0200314 stm32mp_misc_init();
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100315
316 return 0;
317}
Marek Vasutefdedcb2023-01-12 18:58:40 +0100318
319/*
320 * Without forcing the ".data" section, this would get saved in ".bss". BSS
321 * will be cleared soon after, so it's not suitable.
322 */
323static uintptr_t rom_api_table __section(".data");
324static uintptr_t nt_fw_dtb __section(".data");
325
326/*
327 * The ROM gives us the API location in r0 when starting. This is only available
328 * during SPL, as there isn't (yet) a mechanism to pass this on to u-boot. Save
329 * the FDT address provided by TF-A in r2 at boot time. This function is called
330 * from start.S
331 */
332void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
333 unsigned long r3)
334{
335 if (IS_ENABLED(CONFIG_STM32_ECDSA_VERIFY))
336 rom_api_table = r0;
337
338 if (IS_ENABLED(CONFIG_TFABOOT))
339 nt_fw_dtb = r2;
340
341 save_boot_params_ret();
342}
343
344uintptr_t get_stm32mp_rom_api_table(void)
345{
346 return rom_api_table;
347}
348
349uintptr_t get_stm32mp_bl2_dtb(void)
350{
351 return nt_fw_dtb;
352}
Marek Vasut7cf2c332023-01-12 18:58:41 +0100353
Simon Glass85ed77d2024-09-29 19:49:46 -0600354#ifdef CONFIG_XPL_BUILD
Marek Vasut7cf2c332023-01-12 18:58:41 +0100355void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
356{
357 typedef void __noreturn (*image_entry_stm32_t)(u32 romapi);
358 uintptr_t romapi = get_stm32mp_rom_api_table();
359
360 image_entry_stm32_t image_entry =
361 (image_entry_stm32_t)spl_image->entry_point;
362
363 printf("image entry point: 0x%lx\n", spl_image->entry_point);
364 image_entry(romapi);
365}
366#endif