blob: 3a74040b9747f096057e9f7206c3dcebace0778d [file] [log] [blame]
Mingkai Hu0e58b512015-10-26 19:47:50 +08001/*
2 * Copyright 2014-2015 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <spl.h>
9#include <asm/io.h>
10#include <fsl_ifc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080011#include <i2c.h>
York Sunf2aaf842017-05-15 08:52:00 -070012#include <fsl_csu.h>
13#include <asm/arch/fdt.h>
14#include <asm/arch/ppa.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080015
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
Mingkai Hu0e58b512015-10-26 19:47:50 +080029#ifdef CONFIG_SPL_BUILD
Ruchika Guptad6b89202017-04-17 18:07:17 +053030
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
York Sunf2aaf842017-05-15 08:52:00 -070046#ifdef CONFIG_LAYERSCAPE_NS_ACCESS
47 enable_layerscape_ns_access();
48#endif
49#ifdef CONFIG_SPL_FSL_LS_PPA
50 ppa_init();
51#endif
Ruchika Guptad6b89202017-04-17 18:07:17 +053052}
53
Mingkai Hu0e58b512015-10-26 19:47:50 +080054void board_init_f(ulong dummy)
55{
Mingkai Hu0e58b512015-10-26 19:47:50 +080056 /* Clear global data */
57 memset((void *)gd, 0, sizeof(gd_t));
Mingkai Hu0e58b512015-10-26 19:47:50 +080058 board_early_init_f();
59 timer_init();
York Sun4ce6fbf2017-03-27 11:41:01 -070060#ifdef CONFIG_ARCH_LS2080A
Mingkai Hu0e58b512015-10-26 19:47:50 +080061 env_init();
62#endif
63 get_clocks();
64
65 preloader_console_init();
York Suna34ca5f2017-09-28 08:42:10 -070066 spl_set_bd();
Mingkai Hu0e58b512015-10-26 19:47:50 +080067
68#ifdef CONFIG_SPL_I2C_SUPPORT
69 i2c_init_all();
70#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +053071#ifdef CONFIG_VID
72 init_func_vid();
73#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080074 dram_init();
York Sunf2aaf842017-05-15 08:52:00 -070075#ifdef CONFIG_SPL_FSL_LS_PPA
76#ifndef CONFIG_SYS_MEM_RESERVE_SECURE
77#error Need secure RAM for PPA
Mingkai Hu0e58b512015-10-26 19:47:50 +080078#endif
York Sunf2aaf842017-05-15 08:52:00 -070079 /*
80 * Secure memory location is determined in dram_init_banksize().
81 * gd->ram_size is deducted by the size of secure ram.
82 */
83 dram_init_banksize();
84
85 /*
86 * After dram_init_bank_size(), we know U-Boot only uses the first
87 * memory bank regardless how big the memory is.
88 */
89 gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size;
90
91 /*
92 * If PPA is loaded, U-Boot will resume running at EL2.
93 * Cache and MMU will be enabled. Need a place for TLB.
94 * U-Boot will be relocated to the end of available memory
95 * in first bank. At this point, we cannot know how much
96 * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK
97 * to avoid overlapping. As soon as the RAM version U-Boot sets
98 * up new MMU, this space is no longer needed.
99 */
100 gd->ram_top -= SPL_TLB_SETBACK;
101 gd->arch.tlb_size = PGTABLE_SIZE;
102 gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1);
103 gd->arch.tlb_allocated = gd->arch.tlb_addr;
104#endif /* CONFIG_SPL_FSL_LS_PPA */
105}
York Sunffea3e62017-09-28 08:42:14 -0700106
107#ifdef CONFIG_SPL_OS_BOOT
108/*
109 * Return
110 * 0 if booting into OS is selected
111 * 1 if booting into U-Boot is selected
112 */
113int spl_start_uboot(void)
114{
115 env_init();
116 if (env_get_yesno("boot_os") != 0)
117 return 0;
118
119 return 1;
120}
121#endif /* CONFIG_SPL_OS_BOOT */
122#ifdef CONFIG_SPL_LOAD_FIT
123int board_fit_config_name_match(const char *name)
124{
125 /* Just empty function now - can't decide what to choose */
126 debug("%s: %s\n", __func__, name);
127
128 return 0;
129}
130#endif
York Sunf2aaf842017-05-15 08:52:00 -0700131#endif /* CONFIG_SPL_BUILD */