blob: c0201341ea70a185de840a3c61623bf8971d9726 [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>
Mingkai Hu0e58b512015-10-26 19:47:50 +080011#include <spl.h>
Simon Glass274e0b02020-05-10 11:39:56 -060012#include <asm/cache.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080013#include <asm/io.h>
14#include <fsl_ifc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080015#include <i2c.h>
York Sunf2aaf842017-05-15 08:52:00 -070016#include <fsl_csu.h>
17#include <asm/arch/fdt.h>
18#include <asm/arch/ppa.h>
York Sunbb7d3422018-06-26 14:48:28 -070019#include <asm/arch/soc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080020
21DECLARE_GLOBAL_DATA_PTR;
22
23u32 spl_boot_device(void)
24{
25#ifdef CONFIG_SPL_MMC_SUPPORT
26 return BOOT_DEVICE_MMC1;
27#endif
28#ifdef CONFIG_SPL_NAND_SUPPORT
29 return BOOT_DEVICE_NAND;
30#endif
York Sun3e512d82018-06-26 14:48:29 -070031#ifdef CONFIG_QSPI_BOOT
32 return BOOT_DEVICE_NOR;
33#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080034 return 0;
35}
36
Mingkai Hu0e58b512015-10-26 19:47:50 +080037#ifdef CONFIG_SPL_BUILD
Ruchika Guptad6b89202017-04-17 18:07:17 +053038
39void spl_board_init(void)
40{
Udit Agarwal22ec2382019-11-07 16:11:32 +000041#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_LSCH2)
Ruchika Guptad6b89202017-04-17 18:07:17 +053042 /*
43 * In case of Secure Boot, the IBR configures the SMMU
44 * to allow only Secure transactions.
45 * SMMU must be reset in bypass mode.
46 * Set the ClientPD bit and Clear the USFCFG Bit
47 */
48 u32 val;
49 val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
50 out_le32(SMMU_SCR0, val);
51 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
52 out_le32(SMMU_NSCR0, val);
53#endif
York Sunf2aaf842017-05-15 08:52:00 -070054#ifdef CONFIG_LAYERSCAPE_NS_ACCESS
55 enable_layerscape_ns_access();
56#endif
57#ifdef CONFIG_SPL_FSL_LS_PPA
58 ppa_init();
59#endif
Ruchika Guptad6b89202017-04-17 18:07:17 +053060}
61
Mingkai Hu0e58b512015-10-26 19:47:50 +080062void board_init_f(ulong dummy)
63{
York Sunafe58b12018-06-26 14:26:02 -070064 icache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +080065 /* Clear global data */
66 memset((void *)gd, 0, sizeof(gd_t));
Mingkai Hu0e58b512015-10-26 19:47:50 +080067 board_early_init_f();
68 timer_init();
York Sun4ce6fbf2017-03-27 11:41:01 -070069#ifdef CONFIG_ARCH_LS2080A
Mingkai Hu0e58b512015-10-26 19:47:50 +080070 env_init();
71#endif
72 get_clocks();
73
74 preloader_console_init();
York Suna34ca5f2017-09-28 08:42:10 -070075 spl_set_bd();
Mingkai Hu0e58b512015-10-26 19:47:50 +080076
Biwen Lia8c4e1f2019-12-31 15:33:38 +080077#ifdef CONFIG_SYS_I2C
Mingkai Hu0e58b512015-10-26 19:47:50 +080078#ifdef CONFIG_SPL_I2C_SUPPORT
79 i2c_init_all();
80#endif
Biwen Lia8c4e1f2019-12-31 15:33:38 +080081#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +053082#ifdef CONFIG_VID
83 init_func_vid();
84#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080085 dram_init();
York Sunf2aaf842017-05-15 08:52:00 -070086#ifdef CONFIG_SPL_FSL_LS_PPA
87#ifndef CONFIG_SYS_MEM_RESERVE_SECURE
88#error Need secure RAM for PPA
Mingkai Hu0e58b512015-10-26 19:47:50 +080089#endif
York Sunf2aaf842017-05-15 08:52:00 -070090 /*
91 * Secure memory location is determined in dram_init_banksize().
92 * gd->ram_size is deducted by the size of secure ram.
93 */
94 dram_init_banksize();
95
96 /*
97 * After dram_init_bank_size(), we know U-Boot only uses the first
98 * memory bank regardless how big the memory is.
99 */
100 gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
101
102 /*
103 * If PPA is loaded, U-Boot will resume running at EL2.
104 * Cache and MMU will be enabled. Need a place for TLB.
105 * U-Boot will be relocated to the end of available memory
106 * in first bank. At this point, we cannot know how much
107 * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
108 * to avoid overlapping. As soon as the RAM version U-Boot sets
109 * up new MMU, this space is no longer needed.
110 */
111 gd->ram_top -= SPL_TLB_SETBACK;
112 gd->arch.tlb_size = PGTABLE_SIZE;
113 gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
114 gd->arch.tlb_allocated = gd->arch.tlb_addr;
115#endif /* CONFIG_SPL_FSL_LS_PPA */
York Sunbb7d3422018-06-26 14:48:28 -0700116#if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
117 qspi_ahb_init();
118#endif
York Sunf2aaf842017-05-15 08:52:00 -0700119}
York Sunffea3e62017-09-28 08:42:14 -0700120
121#ifdef CONFIG_SPL_OS_BOOT
122/*
123 * Return
124 * 0 if booting into OS is selected
125 * 1 if booting into U-Boot is selected
126 */
127int spl_start_uboot(void)
128{
129 env_init();
130 if (env_get_yesno("boot_os") != 0)
131 return 0;
132
133 return 1;
134}
135#endif /* CONFIG_SPL_OS_BOOT */
136#ifdef CONFIG_SPL_LOAD_FIT
Michael Wallea08e7132019-11-24 21:13:21 +0100137__weak int board_fit_config_name_match(const char *name)
York Sunffea3e62017-09-28 08:42:14 -0700138{
139 /* Just empty function now - can't decide what to choose */
140 debug("%s: %s\n", __func__, name);
141
142 return 0;
143}
144#endif
York Sunf2aaf842017-05-15 08:52:00 -0700145#endif /* CONFIG_SPL_BUILD */