Merge tag 'u-boot-stm32-20200117' of https://gitlab.denx.de/u-boot/custodians/u-boot-stm
[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_SPL_I2C_SUPPORT
76         i2c_init_all();
77 #endif
78 #ifdef CONFIG_VID
79         init_func_vid();
80 #endif
81         dram_init();
82 #ifdef CONFIG_SPL_FSL_LS_PPA
83 #ifndef CONFIG_SYS_MEM_RESERVE_SECURE
84 #error Need secure RAM for PPA
85 #endif
86         /*
87          * Secure memory location is determined in dram_init_banksize().
88          * gd->ram_size is deducted by the size of secure ram.
89          */
90         dram_init_banksize();
91
92         /*
93          * After dram_init_bank_size(), we know U-Boot only uses the first
94          * memory bank regardless how big the memory is.
95          */
96         gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
97
98         /*
99          * If PPA is loaded, U-Boot will resume running at EL2.
100          * Cache and MMU will be enabled. Need a place for TLB.
101          * U-Boot will be relocated to the end of available memory
102          * in first bank. At this point, we cannot know how much
103          * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
104          * to avoid overlapping. As soon as the RAM version U-Boot sets
105          * up new MMU, this space is no longer needed.
106          */
107         gd->ram_top -= SPL_TLB_SETBACK;
108         gd->arch.tlb_size = PGTABLE_SIZE;
109         gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
110         gd->arch.tlb_allocated = gd->arch.tlb_addr;
111 #endif  /* CONFIG_SPL_FSL_LS_PPA */
112 #if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT)
113         qspi_ahb_init();
114 #endif
115 }
116
117 #ifdef CONFIG_SPL_OS_BOOT
118 /*
119  * Return
120  * 0 if booting into OS is selected
121  * 1 if booting into U-Boot is selected
122  */
123 int spl_start_uboot(void)
124 {
125         env_init();
126         if (env_get_yesno("boot_os") != 0)
127                 return 0;
128
129         return 1;
130 }
131 #endif  /* CONFIG_SPL_OS_BOOT */
132 #ifdef CONFIG_SPL_LOAD_FIT
133 __weak int board_fit_config_name_match(const char *name)
134 {
135         /* Just empty function now - can't decide what to choose */
136         debug("%s: %s\n", __func__, name);
137
138         return 0;
139 }
140 #endif
141 #endif /* CONFIG_SPL_BUILD */