blob: 215ed9759e324df9a6cea8d9fe55dc2672385731 [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>
Simon Glass79fd2142019-08-01 09:46:43 -06009#include <env.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060010#include <image.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080013#include <spl.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <asm/cache.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080015#include <asm/io.h>
16#include <fsl_ifc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080017#include <i2c.h>
York Sunf2aaf842017-05-15 08:52:00 -070018#include <fsl_csu.h>
19#include <asm/arch/fdt.h>
20#include <asm/arch/ppa.h>
York Sunbb7d3422018-06-26 14:48:28 -070021#include <asm/arch/soc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080022
23DECLARE_GLOBAL_DATA_PTR;
24
25u32 spl_boot_device(void)
26{
27#ifdef CONFIG_SPL_MMC_SUPPORT
28 return BOOT_DEVICE_MMC1;
29#endif
30#ifdef CONFIG_SPL_NAND_SUPPORT
31 return BOOT_DEVICE_NAND;
32#endif
York Sun3e512d82018-06-26 14:48:29 -070033#ifdef CONFIG_QSPI_BOOT
34 return BOOT_DEVICE_NOR;
35#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080036 return 0;
37}
38
Mingkai Hu0e58b512015-10-26 19:47:50 +080039#ifdef CONFIG_SPL_BUILD
Ruchika Guptad6b89202017-04-17 18:07:17 +053040
Simon Glassb79ff7c2020-12-22 19:30:21 -070041/* Define board data structure */
42static struct bd_info bdata __attribute__ ((section(".data")));
43
Ruchika Guptad6b89202017-04-17 18:07:17 +053044void spl_board_init(void)
45{
Udit Agarwal22ec2382019-11-07 16:11:32 +000046#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_LSCH2)
Ruchika Guptad6b89202017-04-17 18:07:17 +053047 /*
48 * In case of Secure Boot, the IBR configures the SMMU
49 * to allow only Secure transactions.
50 * SMMU must be reset in bypass mode.
51 * Set the ClientPD bit and Clear the USFCFG Bit
52 */
53 u32 val;
54 val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
55 out_le32(SMMU_SCR0, val);
56 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
57 out_le32(SMMU_NSCR0, val);
58#endif
York Sunf2aaf842017-05-15 08:52:00 -070059#ifdef CONFIG_LAYERSCAPE_NS_ACCESS
60 enable_layerscape_ns_access();
61#endif
62#ifdef CONFIG_SPL_FSL_LS_PPA
63 ppa_init();
64#endif
Ruchika Guptad6b89202017-04-17 18:07:17 +053065}
66
Mingkai Hu0e58b512015-10-26 19:47:50 +080067void board_init_f(ulong dummy)
68{
York Sunafe58b12018-06-26 14:26:02 -070069 icache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +080070 /* Clear global data */
71 memset((void *)gd, 0, sizeof(gd_t));
Mingkai Hu0e58b512015-10-26 19:47:50 +080072 board_early_init_f();
73 timer_init();
York Sun4ce6fbf2017-03-27 11:41:01 -070074#ifdef CONFIG_ARCH_LS2080A
Mingkai Hu0e58b512015-10-26 19:47:50 +080075 env_init();
76#endif
77 get_clocks();
78
79 preloader_console_init();
Simon Glassb79ff7c2020-12-22 19:30:21 -070080 gd->bd = &bdata;
Mingkai Hu0e58b512015-10-26 19:47:50 +080081
Biwen Lia8c4e1f2019-12-31 15:33:38 +080082#ifdef CONFIG_SYS_I2C
Mingkai Hu0e58b512015-10-26 19:47:50 +080083#ifdef CONFIG_SPL_I2C_SUPPORT
84 i2c_init_all();
85#endif
Biwen Lia8c4e1f2019-12-31 15:33:38 +080086#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +053087#ifdef CONFIG_VID
88 init_func_vid();
89#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080090 dram_init();
York Sunf2aaf842017-05-15 08:52:00 -070091#ifdef CONFIG_SPL_FSL_LS_PPA
92#ifndef CONFIG_SYS_MEM_RESERVE_SECURE
93#error Need secure RAM for PPA
Mingkai Hu0e58b512015-10-26 19:47:50 +080094#endif
York Sunf2aaf842017-05-15 08:52:00 -070095 /*
96 * Secure memory location is determined in dram_init_banksize().
97 * gd->ram_size is deducted by the size of secure ram.
98 */
99 dram_init_banksize();
100
101 /*
102 * After dram_init_bank_size(), we know U-Boot only uses the first
103 * memory bank regardless how big the memory is.
104 */
105 gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
106
107 /*
108 * If PPA is loaded, U-Boot will resume running at EL2.
109 * Cache and MMU will be enabled. Need a place for TLB.
110 * U-Boot will be relocated to the end of available memory
111 * in first bank. At this point, we cannot know how much
112 * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
113 * to avoid overlapping. As soon as the RAM version U-Boot sets
114 * up new MMU, this space is no longer needed.
115 */
116 gd->ram_top -= SPL_TLB_SETBACK;
117 gd->arch.tlb_size = PGTABLE_SIZE;
118 gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
119 gd->arch.tlb_allocated = gd->arch.tlb_addr;
120#endif /* CONFIG_SPL_FSL_LS_PPA */
York Sunbb7d3422018-06-26 14:48:28 -0700121#if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
122 qspi_ahb_init();
123#endif
York Sunf2aaf842017-05-15 08:52:00 -0700124}
York Sunffea3e62017-09-28 08:42:14 -0700125
126#ifdef CONFIG_SPL_OS_BOOT
127/*
128 * Return
129 * 0 if booting into OS is selected
130 * 1 if booting into U-Boot is selected
131 */
132int spl_start_uboot(void)
133{
134 env_init();
135 if (env_get_yesno("boot_os") != 0)
136 return 0;
137
138 return 1;
139}
140#endif /* CONFIG_SPL_OS_BOOT */
141#ifdef CONFIG_SPL_LOAD_FIT
Michael Wallea08e7132019-11-24 21:13:21 +0100142__weak int board_fit_config_name_match(const char *name)
York Sunffea3e62017-09-28 08:42:14 -0700143{
144 /* Just empty function now - can't decide what to choose */
145 debug("%s: %s\n", __func__, name);
146
147 return 0;
148}
149#endif
York Sunf2aaf842017-05-15 08:52:00 -0700150#endif /* CONFIG_SPL_BUILD */