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