Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 2 | /* |
3 | * Copyright 2014-2015 Freescale Semiconductor, Inc. | ||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 4 | */ |
5 | |||||
6 | #include <common.h> | ||||
Simon Glass | 85d6531 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 7 | #include <clock_legacy.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Michael Walle | 24bd03a | 2021-03-26 19:40:55 +0100 | [diff] [blame] | 9 | #include <debug_uart.h> |
Simon Glass | 79fd214 | 2019-08-01 09:46:43 -0600 | [diff] [blame] | 10 | #include <env.h> |
Michael Walle | 97aaa98 | 2021-03-26 19:40:56 +0100 | [diff] [blame] | 11 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 13 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Sean Anderson | 409024e | 2022-03-22 16:59:33 -0400 | [diff] [blame] | 15 | #include <semihosting.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 16 | #include <spl.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 19 | #include <asm/io.h> |
20 | #include <fsl_ifc.h> | ||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 21 | #include <i2c.h> |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 22 | #include <fsl_csu.h> |
23 | #include <asm/arch/fdt.h> | ||||
York Sun | bb7d342 | 2018-06-26 14:48:28 -0700 | [diff] [blame] | 24 | #include <asm/arch/soc.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 25 | |
26 | DECLARE_GLOBAL_DATA_PTR; | ||||
27 | |||||
28 | u32 spl_boot_device(void) | ||||
29 | { | ||||
Sean Anderson | 409024e | 2022-03-22 16:59:33 -0400 | [diff] [blame] | 30 | if (semihosting_enabled()) |
Sean Anderson | 99e1286 | 2022-03-22 17:16:05 -0400 | [diff] [blame] | 31 | return BOOT_DEVICE_SMH; |
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 32 | #ifdef CONFIG_SPL_MMC |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 33 | return BOOT_DEVICE_MMC1; |
34 | #endif | ||||
35 | #ifdef CONFIG_SPL_NAND_SUPPORT | ||||
36 | return BOOT_DEVICE_NAND; | ||||
37 | #endif | ||||
York Sun | 3e512d8 | 2018-06-26 14:48:29 -0700 | [diff] [blame] | 38 | #ifdef CONFIG_QSPI_BOOT |
39 | return BOOT_DEVICE_NOR; | ||||
40 | #endif | ||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 41 | return 0; |
42 | } | ||||
43 | |||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 44 | #ifdef CONFIG_SPL_BUILD |
Ruchika Gupta | d6b8920 | 2017-04-17 18:07:17 +0530 | [diff] [blame] | 45 | |
46 | void spl_board_init(void) | ||||
47 | { | ||||
Udit Agarwal | 22ec238 | 2019-11-07 16:11:32 +0000 | [diff] [blame] | 48 | #if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_LSCH2) |
Ruchika Gupta | d6b8920 | 2017-04-17 18:07:17 +0530 | [diff] [blame] | 49 | /* |
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 Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 61 | #ifdef CONFIG_LAYERSCAPE_NS_ACCESS |
62 | enable_layerscape_ns_access(); | ||||
63 | #endif | ||||
Ruchika Gupta | d6b8920 | 2017-04-17 18:07:17 +0530 | [diff] [blame] | 64 | } |
65 | |||||
Michael Walle | b073820 | 2022-08-23 11:30:14 +0200 | [diff] [blame] | 66 | void 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 Glass | 14f1d29 | 2023-08-21 21:17:00 -0600 | [diff] [blame] | 77 | __weak int init_func_vid(void) |
78 | { | ||||
79 | return 0; | ||||
80 | } | ||||
81 | |||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 82 | void board_init_f(ulong dummy) |
83 | { | ||||
Michael Walle | 97aaa98 | 2021-03-26 19:40:56 +0100 | [diff] [blame] | 84 | int ret; |
85 | |||||
York Sun | afe58b1 | 2018-06-26 14:26:02 -0700 | [diff] [blame] | 86 | icache_enable(); |
Michael Walle | b073820 | 2022-08-23 11:30:14 +0200 | [diff] [blame] | 87 | tzpc_init(); |
88 | |||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 89 | /* Clear global data */ |
90 | memset((void *)gd, 0, sizeof(gd_t)); | ||||
Michael Walle | 24bd03a | 2021-03-26 19:40:55 +0100 | [diff] [blame] | 91 | if (IS_ENABLED(CONFIG_DEBUG_UART)) |
92 | debug_uart_init(); | ||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 93 | board_early_init_f(); |
Michael Walle | 97aaa98 | 2021-03-26 19:40:56 +0100 | [diff] [blame] | 94 | ret = spl_early_init(); |
95 | if (ret) { | ||||
96 | debug("spl_early_init() failed: %d\n", ret); | ||||
97 | hang(); | ||||
98 | } | ||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 99 | timer_init(); |
York Sun | 4ce6fbf | 2017-03-27 11:41:01 -0700 | [diff] [blame] | 100 | #ifdef CONFIG_ARCH_LS2080A |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 101 | env_init(); |
102 | #endif | ||||
103 | get_clocks(); | ||||
104 | |||||
105 | preloader_console_init(); | ||||
Alexandru Gagniuc | 7861f8b | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 106 | spl_set_bd(); |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 107 | |
Tom Rini | 52b2e26 | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 108 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Simon Glass | bccfc2e | 2021-07-10 21:14:36 -0600 | [diff] [blame] | 109 | #ifdef CONFIG_SPL_I2C |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 110 | i2c_init_all(); |
111 | #endif | ||||
Biwen Li | a8c4e1f | 2019-12-31 15:33:38 +0800 | [diff] [blame] | 112 | #endif |
Tom Rini | 89cdcab | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 113 | #if defined(CONFIG_VID) && (defined(CONFIG_ARCH_LS1088A) || \ |
114 | defined(CONFIG_ARCH_LX2160A) || \ | ||||
115 | defined(CONFIG_ARCH_LX2162A)) | ||||
Rajesh Bhagat | f771678 | 2018-01-17 16:13:08 +0530 | [diff] [blame] | 116 | init_func_vid(); |
117 | #endif | ||||
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 118 | dram_init(); |
York Sun | bb7d342 | 2018-06-26 14:48:28 -0700 | [diff] [blame] | 119 | #if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT) |
120 | qspi_ahb_init(); | ||||
121 | #endif | ||||
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 122 | } |
York Sun | ffea3e6 | 2017-09-28 08:42:14 -0700 | [diff] [blame] | 123 | |
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 | */ | ||||
130 | int 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 Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 139 | #endif /* CONFIG_SPL_BUILD */ |