Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Altera Corporation <www.altera.com> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <asm/io.h> |
Marek Vasut | 2880c11 | 2019-02-19 01:07:21 +0100 | [diff] [blame] | 8 | #include <asm/pl310.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 9 | #include <asm/u-boot.h> |
| 10 | #include <asm/utils.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 11 | #include <image.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 12 | #include <asm/arch/reset_manager.h> |
| 13 | #include <spl.h> |
Chin Liang See | 70fa4e7 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 14 | #include <asm/arch/system_manager.h> |
Chin Liang See | 6ae4473 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 15 | #include <asm/arch/freeze_controller.h> |
Chin Liang See | 112cb0d | 2014-07-22 04:28:35 -0500 | [diff] [blame] | 16 | #include <asm/arch/clock_manager.h> |
Tien Fong Chee | f3f525c | 2017-12-05 15:58:08 +0800 | [diff] [blame] | 17 | #include <asm/arch/misc.h> |
Chin Liang See | 112cb0d | 2014-07-22 04:28:35 -0500 | [diff] [blame] | 18 | #include <asm/arch/scan_manager.h> |
Dinh Nguyen | ea34458 | 2015-03-30 17:01:08 -0500 | [diff] [blame] | 19 | #include <asm/arch/sdram.h> |
Ley Foon Tan | 9db517e | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 20 | #include <asm/sections.h> |
Simon Goldschmidt | bc698cc | 2018-08-13 09:33:47 +0200 | [diff] [blame] | 21 | #include <debug_uart.h> |
Ley Foon Tan | 9db517e | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 22 | #include <fdtdec.h> |
| 23 | #include <watchdog.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Marek Vasut | 2880c11 | 2019-02-19 01:07:21 +0100 | [diff] [blame] | 27 | static struct pl310_regs *const pl310 = |
| 28 | (struct pl310_regs *)CONFIG_SYS_PL310_BASE; |
Ley Foon Tan | 9db517e | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 29 | static const struct socfpga_system_manager *sysmgr_regs = |
Marek Vasut | 46193c3 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 30 | (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS; |
Marek Vasut | af65761 | 2015-07-09 05:15:40 +0200 | [diff] [blame] | 31 | |
Marek Vasut | 1a7728f | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 32 | u32 spl_boot_device(void) |
| 33 | { |
Marek Vasut | 46193c3 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 34 | const u32 bsel = readl(&sysmgr_regs->bootinfo); |
| 35 | |
Ley Foon Tan | 9db517e | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 36 | switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) { |
Marek Vasut | 46193c3 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 37 | case 0x1: /* FPGA (HPS2FPGA Bridge) */ |
| 38 | return BOOT_DEVICE_RAM; |
| 39 | case 0x2: /* NAND Flash (1.8V) */ |
| 40 | case 0x3: /* NAND Flash (3.0V) */ |
Marek Vasut | 796c4c2 | 2015-12-20 04:00:42 +0100 | [diff] [blame] | 41 | socfpga_per_reset(SOCFPGA_RESET(NAND), 0); |
Marek Vasut | 46193c3 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 42 | return BOOT_DEVICE_NAND; |
| 43 | case 0x4: /* SD/MMC External Transceiver (1.8V) */ |
| 44 | case 0x5: /* SD/MMC Internal Transceiver (3.0V) */ |
| 45 | socfpga_per_reset(SOCFPGA_RESET(SDMMC), 0); |
| 46 | socfpga_per_reset(SOCFPGA_RESET(DMA), 0); |
| 47 | return BOOT_DEVICE_MMC1; |
| 48 | case 0x6: /* QSPI Flash (1.8V) */ |
| 49 | case 0x7: /* QSPI Flash (3.0V) */ |
| 50 | socfpga_per_reset(SOCFPGA_RESET(QSPI), 0); |
| 51 | return BOOT_DEVICE_SPI; |
| 52 | default: |
| 53 | printf("Invalid boot device (bsel=%08x)!\n", bsel); |
| 54 | hang(); |
| 55 | } |
Marek Vasut | 1029caf | 2015-07-10 00:04:23 +0200 | [diff] [blame] | 56 | } |
Ley Foon Tan | 3305ba7 | 2018-05-24 00:17:27 +0800 | [diff] [blame] | 57 | |
| 58 | #ifdef CONFIG_SPL_MMC_SUPPORT |
| 59 | u32 spl_boot_mode(const u32 boot_device) |
| 60 | { |
Tien Fong Chee | 6091dd1 | 2019-01-23 14:20:05 +0800 | [diff] [blame] | 61 | #if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4) |
Ley Foon Tan | 3305ba7 | 2018-05-24 00:17:27 +0800 | [diff] [blame] | 62 | return MMCSD_MODE_FS; |
| 63 | #else |
| 64 | return MMCSD_MODE_RAW; |
| 65 | #endif |
| 66 | } |
| 67 | #endif |
Marek Vasut | 1029caf | 2015-07-10 00:04:23 +0200 | [diff] [blame] | 68 | |
Marek Vasut | 2880c11 | 2019-02-19 01:07:21 +0100 | [diff] [blame] | 69 | static void socfpga_pl310_clear(void) |
| 70 | { |
| 71 | u32 mask = 0xff, ena = 0; |
| 72 | |
| 73 | icache_enable(); |
| 74 | |
| 75 | /* Disable the L2 cache */ |
| 76 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
| 77 | |
| 78 | writel(0x111, &pl310->pl310_tag_latency_ctrl); |
| 79 | writel(0x121, &pl310->pl310_data_latency_ctrl); |
| 80 | |
| 81 | /* enable BRESP, instruction and data prefetch, full line of zeroes */ |
| 82 | setbits_le32(&pl310->pl310_aux_ctrl, |
| 83 | L310_AUX_CTRL_DATA_PREFETCH_MASK | |
| 84 | L310_AUX_CTRL_INST_PREFETCH_MASK | |
| 85 | L310_SHARED_ATT_OVERRIDE_ENABLE); |
| 86 | |
| 87 | /* Enable the L2 cache */ |
| 88 | ena = readl(&pl310->pl310_ctrl); |
| 89 | ena |= L2X0_CTRL_EN; |
| 90 | |
| 91 | /* |
| 92 | * Invalidate the PL310 L2 cache. Keep the invalidation code |
| 93 | * entirely in L1 I-cache to avoid any bus traffic through |
| 94 | * the L2. |
| 95 | */ |
| 96 | asm volatile( |
| 97 | ".align 5 \n" |
| 98 | " b 3f \n" |
| 99 | "1: str %1, [%4] \n" |
| 100 | " dsb \n" |
| 101 | " isb \n" |
| 102 | " str %0, [%2] \n" |
| 103 | " dsb \n" |
| 104 | " isb \n" |
| 105 | "2: ldr %0, [%2] \n" |
| 106 | " cmp %0, #0 \n" |
| 107 | " bne 2b \n" |
| 108 | " str %0, [%3] \n" |
| 109 | " dsb \n" |
| 110 | " isb \n" |
| 111 | " b 4f \n" |
| 112 | "3: b 1b \n" |
| 113 | "4: nop \n" |
| 114 | : "+r"(mask), "+r"(ena) |
| 115 | : "r"(&pl310->pl310_inv_way), |
| 116 | "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl) |
| 117 | : "memory", "cc"); |
| 118 | |
| 119 | /* Disable the L2 cache */ |
| 120 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
| 121 | } |
| 122 | |
Dinh Nguyen | e6a52ca | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 123 | void board_init_f(ulong dummy) |
| 124 | { |
Marek Vasut | 1a7728f | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 125 | const struct cm_config *cm_default_cfg = cm_get_default_config(); |
Marek Vasut | 1a7728f | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 126 | unsigned long sdram_size; |
Dinh Nguyen | e6a52ca | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 127 | unsigned long reg; |
Simon Goldschmidt | 17a1c61 | 2018-08-13 09:33:44 +0200 | [diff] [blame] | 128 | int ret; |
Marek Vasut | 1a7728f | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 129 | |
Dinh Nguyen | e6a52ca | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 130 | /* |
| 131 | * First C code to run. Clear fake OCRAM ECC first as SBE |
| 132 | * and DBE might triggered during power on |
| 133 | */ |
| 134 | reg = readl(&sysmgr_regs->eccgrp_ocram); |
| 135 | if (reg & SYSMGR_ECC_OCRAM_SERR) |
| 136 | writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN, |
| 137 | &sysmgr_regs->eccgrp_ocram); |
| 138 | if (reg & SYSMGR_ECC_OCRAM_DERR) |
| 139 | writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN, |
| 140 | &sysmgr_regs->eccgrp_ocram); |
| 141 | |
| 142 | memset(__bss_start, 0, __bss_end - __bss_start); |
| 143 | |
Simon Goldschmidt | 8e30203 | 2018-08-13 21:34:35 +0200 | [diff] [blame] | 144 | socfpga_sdram_remap_zero(); |
Marek Vasut | 2880c11 | 2019-02-19 01:07:21 +0100 | [diff] [blame] | 145 | socfpga_pl310_clear(); |
Dinh Nguyen | e6a52ca | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 146 | |
Chin Liang See | 6ae4473 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 147 | debug("Freezing all I/O banks\n"); |
| 148 | /* freeze all IO banks */ |
| 149 | sys_mgr_frzctrl_freeze_req(); |
| 150 | |
Marek Vasut | 8784e7e | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 151 | /* Put everything into reset but L4WD0. */ |
| 152 | socfpga_per_reset_all(); |
Simon Goldschmidt | da13a0a | 2018-10-10 14:55:23 +0200 | [diff] [blame] | 153 | |
| 154 | if (!socfpga_is_booting_from_fpga()) { |
| 155 | /* Put FPGA bridges into reset too. */ |
| 156 | socfpga_bridges_reset(1); |
| 157 | } |
Marek Vasut | 8784e7e | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 158 | |
Marek Vasut | 75f6b5c | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 159 | socfpga_per_reset(SOCFPGA_RESET(SDR), 0); |
| 160 | socfpga_per_reset(SOCFPGA_RESET(UART0), 0); |
| 161 | socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0); |
Dinh Nguyen | 2c6fca3 | 2015-03-30 17:01:05 -0500 | [diff] [blame] | 162 | |
Dinh Nguyen | b47180b | 2015-03-30 17:01:06 -0500 | [diff] [blame] | 163 | timer_init(); |
| 164 | |
Chin Liang See | cb35060 | 2014-03-04 22:13:53 -0600 | [diff] [blame] | 165 | debug("Reconfigure Clock Manager\n"); |
| 166 | /* reconfigure the PLLs */ |
Ley Foon Tan | ec6f882 | 2017-04-26 02:44:33 +0800 | [diff] [blame] | 167 | if (cm_basic_init(cm_default_cfg)) |
| 168 | hang(); |
Chin Liang See | cb35060 | 2014-03-04 22:13:53 -0600 | [diff] [blame] | 169 | |
Dinh Nguyen | 95a2fd3 | 2015-03-30 17:01:07 -0500 | [diff] [blame] | 170 | /* Enable bootrom to configure IOs. */ |
Marek Vasut | 8306b1e | 2015-07-09 04:40:11 +0200 | [diff] [blame] | 171 | sysmgr_config_warmrstcfgio(1); |
Dinh Nguyen | 95a2fd3 | 2015-03-30 17:01:07 -0500 | [diff] [blame] | 172 | |
Chin Liang See | 6355024 | 2014-06-10 01:17:42 -0500 | [diff] [blame] | 173 | /* configure the IOCSR / IO buffer settings */ |
| 174 | if (scan_mgr_configure_iocsr()) |
| 175 | hang(); |
| 176 | |
Marek Vasut | 6d4a4b4 | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 177 | sysmgr_config_warmrstcfgio(0); |
| 178 | |
Chin Liang See | 70fa4e7 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 179 | /* configure the pin muxing through system manager */ |
Marek Vasut | 6d4a4b4 | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 180 | sysmgr_config_warmrstcfgio(1); |
Chin Liang See | 70fa4e7 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 181 | sysmgr_pinmux_init(); |
Marek Vasut | 6d4a4b4 | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 182 | sysmgr_config_warmrstcfgio(0); |
| 183 | |
Marek Vasut | 8784e7e | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 184 | /* De-assert reset for peripherals and bridges based on handoff */ |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 185 | reset_deassert_peripherals_handoff(); |
Marek Vasut | 8784e7e | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 186 | socfpga_bridges_reset(0); |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 187 | |
Chin Liang See | 6ae4473 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 188 | debug("Unfreezing/Thaw all I/O banks\n"); |
| 189 | /* unfreeze / thaw all IO banks */ |
| 190 | sys_mgr_frzctrl_thaw_req(); |
| 191 | |
Simon Goldschmidt | bc698cc | 2018-08-13 09:33:47 +0200 | [diff] [blame] | 192 | #ifdef CONFIG_DEBUG_UART |
| 193 | socfpga_per_reset(SOCFPGA_RESET(UART0), 0); |
| 194 | debug_uart_init(); |
| 195 | #endif |
| 196 | |
Simon Goldschmidt | 17a1c61 | 2018-08-13 09:33:44 +0200 | [diff] [blame] | 197 | ret = spl_early_init(); |
| 198 | if (ret) { |
| 199 | debug("spl_early_init() failed: %d\n", ret); |
| 200 | hang(); |
| 201 | } |
| 202 | |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 203 | /* enable console uart printing */ |
| 204 | preloader_console_init(); |
Dinh Nguyen | ea34458 | 2015-03-30 17:01:08 -0500 | [diff] [blame] | 205 | |
| 206 | if (sdram_mmr_init_full(0xffffffff) != 0) { |
| 207 | puts("SDRAM init failed.\n"); |
| 208 | hang(); |
| 209 | } |
| 210 | |
| 211 | debug("SDRAM: Calibrating PHY\n"); |
| 212 | /* SDRAM calibration */ |
| 213 | if (sdram_calibration_full() == 0) { |
| 214 | puts("SDRAM calibration failed.\n"); |
| 215 | hang(); |
| 216 | } |
Dinh Nguyen | 4b86cbb | 2015-03-30 17:01:09 -0500 | [diff] [blame] | 217 | |
| 218 | sdram_size = sdram_calculate_size(); |
| 219 | debug("SDRAM: %ld MiB\n", sdram_size >> 20); |
Dinh Nguyen | 66ea63f | 2015-03-30 17:01:15 -0500 | [diff] [blame] | 220 | |
| 221 | /* Sanity check ensure correct SDRAM size specified */ |
| 222 | if (get_ram_size(0, sdram_size) != sdram_size) { |
| 223 | puts("SDRAM size check failed!\n"); |
| 224 | hang(); |
| 225 | } |
Marek Vasut | 8784e7e | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 226 | |
Simon Goldschmidt | da13a0a | 2018-10-10 14:55:23 +0200 | [diff] [blame] | 227 | if (!socfpga_is_booting_from_fpga()) |
| 228 | socfpga_bridges_reset(1); |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 229 | } |