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