Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2014-2015 Freescale Semiconductor, Inc. |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 79fd214 | 2019-08-01 09:46:43 -0600 | [diff] [blame] | 7 | #include <env.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 8 | #include <spl.h> |
| 9 | #include <asm/io.h> |
| 10 | #include <fsl_ifc.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 11 | #include <i2c.h> |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 12 | #include <fsl_csu.h> |
| 13 | #include <asm/arch/fdt.h> |
| 14 | #include <asm/arch/ppa.h> |
York Sun | bb7d342 | 2018-06-26 14:48:28 -0700 | [diff] [blame] | 15 | #include <asm/arch/soc.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 16 | |
| 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
| 19 | u32 spl_boot_device(void) |
| 20 | { |
| 21 | #ifdef CONFIG_SPL_MMC_SUPPORT |
| 22 | return BOOT_DEVICE_MMC1; |
| 23 | #endif |
| 24 | #ifdef CONFIG_SPL_NAND_SUPPORT |
| 25 | return BOOT_DEVICE_NAND; |
| 26 | #endif |
York Sun | 3e512d8 | 2018-06-26 14:48:29 -0700 | [diff] [blame] | 27 | #ifdef CONFIG_QSPI_BOOT |
| 28 | return BOOT_DEVICE_NOR; |
| 29 | #endif |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 30 | return 0; |
| 31 | } |
| 32 | |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 33 | #ifdef CONFIG_SPL_BUILD |
Ruchika Gupta | d6b8920 | 2017-04-17 18:07:17 +0530 | [diff] [blame] | 34 | |
| 35 | void spl_board_init(void) |
| 36 | { |
| 37 | #if defined(CONFIG_SECURE_BOOT) && defined(CONFIG_FSL_LSCH2) |
| 38 | /* |
| 39 | * In case of Secure Boot, the IBR configures the SMMU |
| 40 | * to allow only Secure transactions. |
| 41 | * SMMU must be reset in bypass mode. |
| 42 | * Set the ClientPD bit and Clear the USFCFG Bit |
| 43 | */ |
| 44 | u32 val; |
| 45 | val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK); |
| 46 | out_le32(SMMU_SCR0, val); |
| 47 | val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK); |
| 48 | out_le32(SMMU_NSCR0, val); |
| 49 | #endif |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_LAYERSCAPE_NS_ACCESS |
| 51 | enable_layerscape_ns_access(); |
| 52 | #endif |
| 53 | #ifdef CONFIG_SPL_FSL_LS_PPA |
| 54 | ppa_init(); |
| 55 | #endif |
Ruchika Gupta | d6b8920 | 2017-04-17 18:07:17 +0530 | [diff] [blame] | 56 | } |
| 57 | |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 58 | void board_init_f(ulong dummy) |
| 59 | { |
York Sun | afe58b1 | 2018-06-26 14:26:02 -0700 | [diff] [blame] | 60 | icache_enable(); |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 61 | /* Clear global data */ |
| 62 | memset((void *)gd, 0, sizeof(gd_t)); |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 63 | board_early_init_f(); |
| 64 | timer_init(); |
York Sun | 4ce6fbf | 2017-03-27 11:41:01 -0700 | [diff] [blame] | 65 | #ifdef CONFIG_ARCH_LS2080A |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 66 | env_init(); |
| 67 | #endif |
| 68 | get_clocks(); |
| 69 | |
| 70 | preloader_console_init(); |
York Sun | a34ca5f | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 71 | spl_set_bd(); |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 72 | |
| 73 | #ifdef CONFIG_SPL_I2C_SUPPORT |
| 74 | i2c_init_all(); |
| 75 | #endif |
Rajesh Bhagat | f771678 | 2018-01-17 16:13:08 +0530 | [diff] [blame] | 76 | #ifdef CONFIG_VID |
| 77 | init_func_vid(); |
| 78 | #endif |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 79 | dram_init(); |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 80 | #ifdef CONFIG_SPL_FSL_LS_PPA |
| 81 | #ifndef CONFIG_SYS_MEM_RESERVE_SECURE |
| 82 | #error Need secure RAM for PPA |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 83 | #endif |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 84 | /* |
| 85 | * Secure memory location is determined in dram_init_banksize(). |
| 86 | * gd->ram_size is deducted by the size of secure ram. |
| 87 | */ |
| 88 | dram_init_banksize(); |
| 89 | |
| 90 | /* |
| 91 | * After dram_init_bank_size(), we know U-Boot only uses the first |
| 92 | * memory bank regardless how big the memory is. |
| 93 | */ |
| 94 | gd->ram_top = gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size; |
| 95 | |
| 96 | /* |
| 97 | * If PPA is loaded, U-Boot will resume running at EL2. |
| 98 | * Cache and MMU will be enabled. Need a place for TLB. |
| 99 | * U-Boot will be relocated to the end of available memory |
| 100 | * in first bank. At this point, we cannot know how much |
| 101 | * memory U-Boot uses. Put TLB table lower by SPL_TLB_SETBACK |
| 102 | * to avoid overlapping. As soon as the RAM version U-Boot sets |
| 103 | * up new MMU, this space is no longer needed. |
| 104 | */ |
| 105 | gd->ram_top -= SPL_TLB_SETBACK; |
| 106 | gd->arch.tlb_size = PGTABLE_SIZE; |
| 107 | gd->arch.tlb_addr = (gd->ram_top - gd->arch.tlb_size) & ~(0x10000 - 1); |
| 108 | gd->arch.tlb_allocated = gd->arch.tlb_addr; |
| 109 | #endif /* CONFIG_SPL_FSL_LS_PPA */ |
York Sun | bb7d342 | 2018-06-26 14:48:28 -0700 | [diff] [blame] | 110 | #if defined(CONFIG_QSPI_AHB_INIT) && defined(CONFIG_QSPI_BOOT) |
| 111 | qspi_ahb_init(); |
| 112 | #endif |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 113 | } |
York Sun | ffea3e6 | 2017-09-28 08:42:14 -0700 | [diff] [blame] | 114 | |
| 115 | #ifdef CONFIG_SPL_OS_BOOT |
| 116 | /* |
| 117 | * Return |
| 118 | * 0 if booting into OS is selected |
| 119 | * 1 if booting into U-Boot is selected |
| 120 | */ |
| 121 | int spl_start_uboot(void) |
| 122 | { |
| 123 | env_init(); |
| 124 | if (env_get_yesno("boot_os") != 0) |
| 125 | return 0; |
| 126 | |
| 127 | return 1; |
| 128 | } |
| 129 | #endif /* CONFIG_SPL_OS_BOOT */ |
| 130 | #ifdef CONFIG_SPL_LOAD_FIT |
| 131 | int board_fit_config_name_match(const char *name) |
| 132 | { |
| 133 | /* Just empty function now - can't decide what to choose */ |
| 134 | debug("%s: %s\n", __func__, name); |
| 135 | |
| 136 | return 0; |
| 137 | } |
| 138 | #endif |
York Sun | f2aaf84 | 2017-05-15 08:52:00 -0700 | [diff] [blame] | 139 | #endif /* CONFIG_SPL_BUILD */ |