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