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