Merge branch 'master' of git://git.denx.de/u-boot-socfpga
[oweals/u-boot.git] / arch / arm / cpu / armv8 / fsl-layerscape / spl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2014-2015 Freescale Semiconductor, Inc.
4  */
5
6 #include <common.h>
7 #include <clock_legacy.h>
8 #include <cpu_func.h>
9 #include <env.h>
10 #include <spl.h>
11 #include <asm/io.h>
12 #include <fsl_ifc.h>
13 #include <i2c.h>
14 #include <fsl_csu.h>
15 #include <asm/arch/fdt.h>
16 #include <asm/arch/ppa.h>
17 #include <asm/arch/soc.h>
18
19 DECLARE_GLOBAL_DATA_PTR;
20
21 u32 spl_boot_device(void)
22 {
23 #ifdef CONFIG_SPL_MMC_SUPPORT
24         return BOOT_DEVICE_MMC1;
25 #endif
26 #ifdef CONFIG_SPL_NAND_SUPPORT
27         return BOOT_DEVICE_NAND;
28 #endif
29 #ifdef CONFIG_QSPI_BOOT
30         return BOOT_DEVICE_NOR;
31 #endif
32         return 0;
33 }
34
35 #ifdef CONFIG_SPL_BUILD
36
37 void spl_board_init(void)
38 {
39 #if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_LSCH2)
40         /*
41          * In case of Secure Boot, the IBR configures the SMMU
42          * to allow only Secure transactions.
43          * SMMU must be reset in bypass mode.
44          * Set the ClientPD bit and Clear the USFCFG Bit
45         */
46         u32 val;
47         val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
48         out_le32(SMMU_SCR0, val);
49         val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
50         out_le32(SMMU_NSCR0, val);
51 #endif
52 #ifdef CONFIG_LAYERSCAPE_NS_ACCESS
53         enable_layerscape_ns_access();
54 #endif
55 #ifdef CONFIG_SPL_FSL_LS_PPA
56         ppa_init();
57 #endif
58 }
59
60 void board_init_f(ulong dummy)
61 {
62         icache_enable();
63         /* Clear global data */
64         memset((void *)gd, 0, sizeof(gd_t));
65         board_early_init_f();
66         timer_init();
67 #ifdef CONFIG_ARCH_LS2080A
68         env_init();
69 #endif
70         get_clocks();
71
72         preloader_console_init();
73         spl_set_bd();
74
75 #ifdef CONFIG_SYS_I2C
76 #ifdef CONFIG_SPL_I2C_SUPPORT
77         i2c_init_all();
78 #endif
79 #endif
80 #ifdef CONFIG_VID
81         init_func_vid();
82 #endif
83         dram_init();
84 #ifdef CONFIG_SPL_FSL_LS_PPA
85 #ifndef CONFIG_SYS_MEM_RESERVE_SECURE
86 #error Need secure RAM for PPA
87 #endif
88         /*
89          * Secure memory location is determined in dram_init_banksize().
90          * gd->ram_size is deducted by the size of secure ram.
91          */
92         dram_init_banksize();
93
94         /*
95          * After dram_init_bank_size(), we know U-Boot only uses the first
96          * memory bank regardless how big the memory is.
97          */
98         gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
99
100         /*
101          * If PPA is loaded, U-Boot will resume running at EL2.
102          * Cache and MMU will be enabled. Need a place for TLB.
103          * U-Boot will be relocated to the end of available memory
104          * in first bank. At this point, we cannot know how much
105          * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
106          * to avoid overlapping. As soon as the RAM version U-Boot sets
107          * up new MMU, this space is no longer needed.
108          */
109         gd->ram_top -= SPL_TLB_SETBACK;
110         gd->arch.tlb_size = PGTABLE_SIZE;
111         gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
112         gd->arch.tlb_allocated = gd->arch.tlb_addr;
113 #endif  /* CONFIG_SPL_FSL_LS_PPA */
114 #if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
115         qspi_ahb_init();
116 #endif
117 }
118
119 #ifdef CONFIG_SPL_OS_BOOT
120 /*
121  * Return
122  * 0 if booting into OS is selected
123  * 1 if booting into U-Boot is selected
124  */
125 int spl_start_uboot(void)
126 {
127         env_init();
128         if (env_get_yesno("boot_os") != 0)
129                 return 0;
130
131         return 1;
132 }
133 #endif  /* CONFIG_SPL_OS_BOOT */
134 #ifdef CONFIG_SPL_LOAD_FIT
135 __weak int board_fit_config_name_match(const char *name)
136 {
137         /* Just empty function now - can't decide what to choose */
138         debug("%s: %s\n", __func__, name);
139
140         return 0;
141 }
142 #endif
143 #endif /* CONFIG_SPL_BUILD */