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