blob: 888c02f6c5d9cb830d2d85e6a37dd402edbe57a2 [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>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <image.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080014#include <spl.h>
Simon Glass274e0b02020-05-10 11:39:56 -060015#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080017#include <asm/io.h>
18#include <fsl_ifc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080019#include <i2c.h>
York Sunf2aaf842017-05-15 08:52:00 -070020#include <fsl_csu.h>
21#include <asm/arch/fdt.h>
22#include <asm/arch/ppa.h>
York Sunbb7d3422018-06-26 14:48:28 -070023#include <asm/arch/soc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080024
25DECLARE_GLOBAL_DATA_PTR;
26
27u32 spl_boot_device(void)
28{
29#ifdef CONFIG_SPL_MMC_SUPPORT
30 return BOOT_DEVICE_MMC1;
31#endif
32#ifdef CONFIG_SPL_NAND_SUPPORT
33 return BOOT_DEVICE_NAND;
34#endif
York Sun3e512d82018-06-26 14:48:29 -070035#ifdef CONFIG_QSPI_BOOT
36 return BOOT_DEVICE_NOR;
37#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080038 return 0;
39}
40
Mingkai Hu0e58b512015-10-26 19:47:50 +080041#ifdef CONFIG_SPL_BUILD
Ruchika Guptad6b89202017-04-17 18:07:17 +053042
Simon Glassb79ff7c2020-12-22 19:30:21 -070043/* Define board data structure */
44static struct bd_info bdata __attribute__ ((section(".data")));
45
Ruchika Guptad6b89202017-04-17 18:07:17 +053046void 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
64#ifdef CONFIG_SPL_FSL_LS_PPA
65 ppa_init();
66#endif
Ruchika Guptad6b89202017-04-17 18:07:17 +053067}
68
Mingkai Hu0e58b512015-10-26 19:47:50 +080069void board_init_f(ulong dummy)
70{
York Sunafe58b12018-06-26 14:26:02 -070071 icache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +080072 /* Clear global data */
73 memset((void *)gd, 0, sizeof(gd_t));
Michael Walle24bd03a2021-03-26 19:40:55 +010074 if (IS_ENABLED(CONFIG_DEBUG_UART))
75 debug_uart_init();
Mingkai Hu0e58b512015-10-26 19:47:50 +080076 board_early_init_f();
77 timer_init();
York Sun4ce6fbf2017-03-27 11:41:01 -070078#ifdef CONFIG_ARCH_LS2080A
Mingkai Hu0e58b512015-10-26 19:47:50 +080079 env_init();
80#endif
81 get_clocks();
82
83 preloader_console_init();
Simon Glassb79ff7c2020-12-22 19:30:21 -070084 gd->bd = &bdata;
Mingkai Hu0e58b512015-10-26 19:47:50 +080085
Biwen Lia8c4e1f2019-12-31 15:33:38 +080086#ifdef CONFIG_SYS_I2C
Mingkai Hu0e58b512015-10-26 19:47:50 +080087#ifdef CONFIG_SPL_I2C_SUPPORT
88 i2c_init_all();
89#endif
Biwen Lia8c4e1f2019-12-31 15:33:38 +080090#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +053091#ifdef CONFIG_VID
92 init_func_vid();
93#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080094 dram_init();
York Sunf2aaf842017-05-15 08:52:00 -070095#ifdef CONFIG_SPL_FSL_LS_PPA
96#ifndef CONFIG_SYS_MEM_RESERVE_SECURE
97#error Need secure RAM for PPA
Mingkai Hu0e58b512015-10-26 19:47:50 +080098#endif
York Sunf2aaf842017-05-15 08:52:00 -070099 /*
100 * Secure memory location is determined in dram_init_banksize().
101 * gd->ram_size is deducted by the size of secure ram.
102 */
103 dram_init_banksize();
104
105 /*
106 * After dram_init_bank_size(), we know U-Boot only uses the first
107 * memory bank regardless how big the memory is.
108 */
109 gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
110
111 /*
112 * If PPA is loaded, U-Boot will resume running at EL2.
113 * Cache and MMU will be enabled. Need a place for TLB.
114 * U-Boot will be relocated to the end of available memory
115 * in first bank. At this point, we cannot know how much
116 * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
117 * to avoid overlapping. As soon as the RAM version U-Boot sets
118 * up new MMU, this space is no longer needed.
119 */
120 gd->ram_top -= SPL_TLB_SETBACK;
121 gd->arch.tlb_size = PGTABLE_SIZE;
122 gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
123 gd->arch.tlb_allocated = gd->arch.tlb_addr;
124#endif /* CONFIG_SPL_FSL_LS_PPA */
York Sunbb7d3422018-06-26 14:48:28 -0700125#if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
126 qspi_ahb_init();
127#endif
York Sunf2aaf842017-05-15 08:52:00 -0700128}
York Sunffea3e62017-09-28 08:42:14 -0700129
130#ifdef CONFIG_SPL_OS_BOOT
131/*
132 * Return
133 * 0 if booting into OS is selected
134 * 1 if booting into U-Boot is selected
135 */
136int spl_start_uboot(void)
137{
138 env_init();
139 if (env_get_yesno("boot_os") != 0)
140 return 0;
141
142 return 1;
143}
144#endif /* CONFIG_SPL_OS_BOOT */
145#ifdef CONFIG_SPL_LOAD_FIT
Michael Wallea08e7132019-11-24 21:13:21 +0100146__weak int board_fit_config_name_match(const char *name)
York Sunffea3e62017-09-28 08:42:14 -0700147{
148 /* Just empty function now - can't decide what to choose */
149 debug("%s: %s\n", __func__, name);
150
151 return 0;
152}
153#endif
York Sunf2aaf842017-05-15 08:52:00 -0700154#endif /* CONFIG_SPL_BUILD */