blob: 3e53084b215dfe8e0572877d89a878dccd229dad [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>
7#include <spl.h>
8#include <asm/io.h>
9#include <fsl_ifc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080010#include <i2c.h>
York Sunf2aaf842017-05-15 08:52:00 -070011#include <fsl_csu.h>
12#include <asm/arch/fdt.h>
13#include <asm/arch/ppa.h>
York Sunbb7d3422018-06-26 14:48:28 -070014#include <asm/arch/soc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080015
16DECLARE_GLOBAL_DATA_PTR;
17
18u32 spl_boot_device(void)
19{
20#ifdef CONFIG_SPL_MMC_SUPPORT
21 return BOOT_DEVICE_MMC1;
22#endif
23#ifdef CONFIG_SPL_NAND_SUPPORT
24 return BOOT_DEVICE_NAND;
25#endif
York Sun3e512d82018-06-26 14:48:29 -070026#ifdef CONFIG_QSPI_BOOT
27 return BOOT_DEVICE_NOR;
28#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080029 return 0;
30}
31
Mingkai Hu0e58b512015-10-26 19:47:50 +080032#ifdef CONFIG_SPL_BUILD
Ruchika Guptad6b89202017-04-17 18:07:17 +053033
34void spl_board_init(void)
35{
36#if defined(CONFIG_SECURE_BOOT) && defined(CONFIG_FSL_LSCH2)
37 /*
38 * In case of Secure Boot, the IBR configures the SMMU
39 * to allow only Secure transactions.
40 * SMMU must be reset in bypass mode.
41 * Set the ClientPD bit and Clear the USFCFG Bit
42 */
43 u32 val;
44 val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
45 out_le32(SMMU_SCR0, val);
46 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
47 out_le32(SMMU_NSCR0, val);
48#endif
York Sunf2aaf842017-05-15 08:52:00 -070049#ifdef CONFIG_LAYERSCAPE_NS_ACCESS
50 enable_layerscape_ns_access();
51#endif
52#ifdef CONFIG_SPL_FSL_LS_PPA
53 ppa_init();
54#endif
Ruchika Guptad6b89202017-04-17 18:07:17 +053055}
56
Mingkai Hu0e58b512015-10-26 19:47:50 +080057void board_init_f(ulong dummy)
58{
York Sunafe58b12018-06-26 14:26:02 -070059 icache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +080060 /* Clear global data */
61 memset((void *)gd, 0, sizeof(gd_t));
Mingkai Hu0e58b512015-10-26 19:47:50 +080062 board_early_init_f();
63 timer_init();
York Sun4ce6fbf2017-03-27 11:41:01 -070064#ifdef CONFIG_ARCH_LS2080A
Mingkai Hu0e58b512015-10-26 19:47:50 +080065 env_init();
66#endif
67 get_clocks();
68
69 preloader_console_init();
York Suna34ca5f2017-09-28 08:42:10 -070070 spl_set_bd();
Mingkai Hu0e58b512015-10-26 19:47:50 +080071
72#ifdef CONFIG_SPL_I2C_SUPPORT
73 i2c_init_all();
74#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +053075#ifdef CONFIG_VID
76 init_func_vid();
77#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080078 dram_init();
York Sunf2aaf842017-05-15 08:52:00 -070079#ifdef CONFIG_SPL_FSL_LS_PPA
80#ifndef CONFIG_SYS_MEM_RESERVE_SECURE
81#error Need secure RAM for PPA
Mingkai Hu0e58b512015-10-26 19:47:50 +080082#endif
York Sunf2aaf842017-05-15 08:52:00 -070083 /*
84 * Secure memory location is determined in dram_init_banksize().
85 * gd->ram_size is deducted by the size of secure ram.
86 */
87 dram_init_banksize();
88
89 /*
90 * After dram_init_bank_size(), we know U-Boot only uses the first
91 * memory bank regardless how big the memory is.
92 */
93 gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
94
95 /*
96 * If PPA is loaded, U-Boot will resume running at EL2.
97 * Cache and MMU will be enabled. Need a place for TLB.
98 * U-Boot will be relocated to the end of available memory
99 * in first bank. At this point, we cannot know how much
100 * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
101 * to avoid overlapping. As soon as the RAM version U-Boot sets
102 * up new MMU, this space is no longer needed.
103 */
104 gd->ram_top -= SPL_TLB_SETBACK;
105 gd->arch.tlb_size = PGTABLE_SIZE;
106 gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
107 gd->arch.tlb_allocated = gd->arch.tlb_addr;
108#endif /* CONFIG_SPL_FSL_LS_PPA */
York Sunbb7d3422018-06-26 14:48:28 -0700109#if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
110 qspi_ahb_init();
111#endif
York Sunf2aaf842017-05-15 08:52:00 -0700112}
York Sunffea3e62017-09-28 08:42:14 -0700113
114#ifdef CONFIG_SPL_OS_BOOT
115/*
116 * Return
117 * 0 if booting into OS is selected
118 * 1 if booting into U-Boot is selected
119 */
120int spl_start_uboot(void)
121{
122 env_init();
123 if (env_get_yesno("boot_os") != 0)
124 return 0;
125
126 return 1;
127}
128#endif /* CONFIG_SPL_OS_BOOT */
129#ifdef CONFIG_SPL_LOAD_FIT
130int board_fit_config_name_match(const char *name)
131{
132 /* Just empty function now - can't decide what to choose */
133 debug("%s: %s\n", __func__, name);
134
135 return 0;
136}
137#endif
York Sunf2aaf842017-05-15 08:52:00 -0700138#endif /* CONFIG_SPL_BUILD */