blob: 232adfa843a2cce31d95c282e295aa3dc2a368a4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mingkai Hu0e58b512015-10-26 19:47:50 +08002/*
3 * Copyright 2014-2015 Freescale Semiconductor, Inc.
Mingkai Hu0e58b512015-10-26 19:47:50 +08004 */
5
6#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -07007#include <clock_legacy.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07008#include <cpu_func.h>
Michael Walle24bd03a2021-03-26 19:40:55 +01009#include <debug_uart.h>
Simon Glass79fd2142019-08-01 09:46:43 -060010#include <env.h>
Michael Walle97aaa982021-03-26 19:40:56 +010011#include <hang.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060012#include <image.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Sean Anderson409024e2022-03-22 16:59:33 -040015#include <semihosting.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080016#include <spl.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080019#include <asm/io.h>
20#include <fsl_ifc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080021#include <i2c.h>
York Sunf2aaf842017-05-15 08:52:00 -070022#include <fsl_csu.h>
23#include <asm/arch/fdt.h>
York Sunbb7d3422018-06-26 14:48:28 -070024#include <asm/arch/soc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080025
26DECLARE_GLOBAL_DATA_PTR;
27
28u32 spl_boot_device(void)
29{
Sean Anderson409024e2022-03-22 16:59:33 -040030 if (semihosting_enabled())
Sean Anderson99e12862022-03-22 17:16:05 -040031 return BOOT_DEVICE_SMH;
Simon Glassb58bfe02021-08-08 12:20:09 -060032#ifdef CONFIG_SPL_MMC
Mingkai Hu0e58b512015-10-26 19:47:50 +080033 return BOOT_DEVICE_MMC1;
34#endif
35#ifdef CONFIG_SPL_NAND_SUPPORT
36 return BOOT_DEVICE_NAND;
37#endif
York Sun3e512d82018-06-26 14:48:29 -070038#ifdef CONFIG_QSPI_BOOT
39 return BOOT_DEVICE_NOR;
40#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080041 return 0;
42}
43
Mingkai Hu0e58b512015-10-26 19:47:50 +080044#ifdef CONFIG_SPL_BUILD
Ruchika Guptad6b89202017-04-17 18:07:17 +053045
46void spl_board_init(void)
47{
Udit Agarwal22ec2382019-11-07 16:11:32 +000048#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_LSCH2)
Ruchika Guptad6b89202017-04-17 18:07:17 +053049 /*
50 * In case of Secure Boot, the IBR configures the SMMU
51 * to allow only Secure transactions.
52 * SMMU must be reset in bypass mode.
53 * Set the ClientPD bit and Clear the USFCFG Bit
54 */
55 u32 val;
56 val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
57 out_le32(SMMU_SCR0, val);
58 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
59 out_le32(SMMU_NSCR0, val);
60#endif
York Sunf2aaf842017-05-15 08:52:00 -070061#ifdef CONFIG_LAYERSCAPE_NS_ACCESS
62 enable_layerscape_ns_access();
63#endif
Ruchika Guptad6b89202017-04-17 18:07:17 +053064}
65
Michael Walleb0738202022-08-23 11:30:14 +020066void tzpc_init(void)
67{
68 /*
69 * Mark the whole OCRAM as non-secure, otherwise DMA devices cannot
70 * access it. This is for example necessary for MMC boot.
71 */
72#ifdef TZPCR0SIZE_BASE
73 out_le32(TZPCR0SIZE_BASE, 0);
74#endif
75}
76
Simon Glass14f1d292023-08-21 21:17:00 -060077__weak int init_func_vid(void)
78{
79 return 0;
80}
81
Mingkai Hu0e58b512015-10-26 19:47:50 +080082void board_init_f(ulong dummy)
83{
Michael Walle97aaa982021-03-26 19:40:56 +010084 int ret;
85
York Sunafe58b12018-06-26 14:26:02 -070086 icache_enable();
Michael Walleb0738202022-08-23 11:30:14 +020087 tzpc_init();
88
Mingkai Hu0e58b512015-10-26 19:47:50 +080089 /* Clear global data */
90 memset((void *)gd, 0, sizeof(gd_t));
Michael Walle24bd03a2021-03-26 19:40:55 +010091 if (IS_ENABLED(CONFIG_DEBUG_UART))
92 debug_uart_init();
Mingkai Hu0e58b512015-10-26 19:47:50 +080093 board_early_init_f();
Michael Walle97aaa982021-03-26 19:40:56 +010094 ret = spl_early_init();
95 if (ret) {
96 debug("spl_early_init() failed: %d\n", ret);
97 hang();
98 }
Mingkai Hu0e58b512015-10-26 19:47:50 +080099 timer_init();
York Sun4ce6fbf2017-03-27 11:41:01 -0700100#ifdef CONFIG_ARCH_LS2080A
Mingkai Hu0e58b512015-10-26 19:47:50 +0800101 env_init();
102#endif
103 get_clocks();
104
105 preloader_console_init();
Alexandru Gagniuc7861f8b2021-04-08 11:56:11 -0500106 spl_set_bd();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800107
Tom Rini52b2e262021-08-18 23:12:24 -0400108#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glassbccfc2e2021-07-10 21:14:36 -0600109#ifdef CONFIG_SPL_I2C
Mingkai Hu0e58b512015-10-26 19:47:50 +0800110 i2c_init_all();
111#endif
Biwen Lia8c4e1f2019-12-31 15:33:38 +0800112#endif
Tom Rini89cdcab2021-12-12 22:12:31 -0500113#if defined(CONFIG_VID) && (defined(CONFIG_ARCH_LS1088A) || \
114 defined(CONFIG_ARCH_LX2160A) || \
115 defined(CONFIG_ARCH_LX2162A))
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530116 init_func_vid();
117#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800118 dram_init();
York Sunbb7d3422018-06-26 14:48:28 -0700119#if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
120 qspi_ahb_init();
121#endif
York Sunf2aaf842017-05-15 08:52:00 -0700122}
York Sunffea3e62017-09-28 08:42:14 -0700123
124#ifdef CONFIG_SPL_OS_BOOT
125/*
126 * Return
127 * 0 if booting into OS is selected
128 * 1 if booting into U-Boot is selected
129 */
130int spl_start_uboot(void)
131{
132 env_init();
133 if (env_get_yesno("boot_os") != 0)
134 return 0;
135
136 return 1;
137}
138#endif /* CONFIG_SPL_OS_BOOT */
York Sunf2aaf842017-05-15 08:52:00 -0700139#endif /* CONFIG_SPL_BUILD */