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> |
| 8 | #include <asm/u-boot.h> |
| 9 | #include <asm/utils.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 10 | #include <image.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 11 | #include <asm/arch/reset_manager.h> |
| 12 | #include <spl.h> |
Chin Liang See | 5d649d2 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 13 | #include <asm/arch/system_manager.h> |
Chin Liang See | 4c54419 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 14 | #include <asm/arch/freeze_controller.h> |
Chin Liang See | 3ab019e | 2014-07-22 04:28:35 -0500 | [diff] [blame] | 15 | #include <asm/arch/clock_manager.h> |
Tien Fong Chee | 011fa5f | 2017-12-05 15:58:08 +0800 | [diff] [blame] | 16 | #include <asm/arch/misc.h> |
Chin Liang See | 3ab019e | 2014-07-22 04:28:35 -0500 | [diff] [blame] | 17 | #include <asm/arch/scan_manager.h> |
Dinh Nguyen | 37ef0c7 | 2015-03-30 17:01:08 -0500 | [diff] [blame] | 18 | #include <asm/arch/sdram.h> |
Ley Foon Tan | 8f4c80c | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 19 | #include <asm/sections.h> |
Simon Goldschmidt | c0b4fc1 | 2018-08-13 09:33:47 +0200 | [diff] [blame] | 20 | #include <debug_uart.h> |
Ley Foon Tan | 8f4c80c | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 21 | #include <fdtdec.h> |
| 22 | #include <watchdog.h> |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 23 | #include <dm/uclass.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Ley Foon Tan | 8f4c80c | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 27 | static const struct socfpga_system_manager *sysmgr_regs = |
Marek Vasut | 066ad14 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 28 | (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS; |
Marek Vasut | 232fcc6 | 2015-07-09 05:15:40 +0200 | [diff] [blame] | 29 | |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 30 | u32 spl_boot_device(void) |
| 31 | { |
Marek Vasut | 066ad14 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 32 | const u32 bsel = readl(&sysmgr_regs->bootinfo); |
| 33 | |
Ley Foon Tan | 8f4c80c | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 34 | switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) { |
Marek Vasut | 066ad14 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 35 | case 0x1: /* FPGA (HPS2FPGA Bridge) */ |
| 36 | return BOOT_DEVICE_RAM; |
| 37 | case 0x2: /* NAND Flash (1.8V) */ |
| 38 | case 0x3: /* NAND Flash (3.0V) */ |
| 39 | return BOOT_DEVICE_NAND; |
| 40 | case 0x4: /* SD/MMC External Transceiver (1.8V) */ |
| 41 | case 0x5: /* SD/MMC Internal Transceiver (3.0V) */ |
Marek Vasut | 066ad14 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 42 | return BOOT_DEVICE_MMC1; |
| 43 | case 0x6: /* QSPI Flash (1.8V) */ |
| 44 | case 0x7: /* QSPI Flash (3.0V) */ |
Marek Vasut | 066ad14 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 45 | return BOOT_DEVICE_SPI; |
| 46 | default: |
| 47 | printf("Invalid boot device (bsel=%08x)!\n", bsel); |
| 48 | hang(); |
| 49 | } |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 50 | } |
| 51 | |
Ley Foon Tan | c859f2a | 2018-05-24 00:17:27 +0800 | [diff] [blame] | 52 | #ifdef CONFIG_SPL_MMC_SUPPORT |
| 53 | u32 spl_boot_mode(const u32 boot_device) |
| 54 | { |
Tien Fong Chee | f4b4092 | 2019-01-23 14:20:05 +0800 | [diff] [blame] | 55 | #if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4) |
Ley Foon Tan | c859f2a | 2018-05-24 00:17:27 +0800 | [diff] [blame] | 56 | return MMCSD_MODE_FS; |
| 57 | #else |
| 58 | return MMCSD_MODE_RAW; |
| 59 | #endif |
| 60 | } |
| 61 | #endif |
| 62 | |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 63 | void board_init_f(ulong dummy) |
| 64 | { |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 65 | const struct cm_config *cm_default_cfg = cm_get_default_config(); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 66 | unsigned long reg; |
Simon Goldschmidt | 40c36f8 | 2018-08-13 09:33:44 +0200 | [diff] [blame] | 67 | int ret; |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 68 | struct udevice *dev; |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 69 | |
Ley Foon Tan | bb25aca | 2019-11-08 10:38:19 +0800 | [diff] [blame^] | 70 | ret = spl_early_init(); |
| 71 | if (ret) |
| 72 | hang(); |
| 73 | |
| 74 | socfpga_get_managers_addr(); |
| 75 | |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 76 | /* |
Ley Foon Tan | bb25aca | 2019-11-08 10:38:19 +0800 | [diff] [blame^] | 77 | * Clear fake OCRAM ECC first as SBE |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 78 | * and DBE might triggered during power on |
| 79 | */ |
| 80 | reg = readl(&sysmgr_regs->eccgrp_ocram); |
| 81 | if (reg & SYSMGR_ECC_OCRAM_SERR) |
| 82 | writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN, |
| 83 | &sysmgr_regs->eccgrp_ocram); |
| 84 | if (reg & SYSMGR_ECC_OCRAM_DERR) |
| 85 | writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN, |
| 86 | &sysmgr_regs->eccgrp_ocram); |
| 87 | |
Simon Goldschmidt | e4ff842 | 2018-08-13 21:34:35 +0200 | [diff] [blame] | 88 | socfpga_sdram_remap_zero(); |
Marek Vasut | 4a9743f | 2019-02-19 01:07:21 +0100 | [diff] [blame] | 89 | socfpga_pl310_clear(); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 90 | |
Chin Liang See | 4c54419 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 91 | debug("Freezing all I/O banks\n"); |
| 92 | /* freeze all IO banks */ |
| 93 | sys_mgr_frzctrl_freeze_req(); |
| 94 | |
Marek Vasut | bd65fe3 | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 95 | /* Put everything into reset but L4WD0. */ |
| 96 | socfpga_per_reset_all(); |
Simon Goldschmidt | 30bade2 | 2018-10-10 14:55:23 +0200 | [diff] [blame] | 97 | |
| 98 | if (!socfpga_is_booting_from_fpga()) { |
| 99 | /* Put FPGA bridges into reset too. */ |
| 100 | socfpga_bridges_reset(1); |
| 101 | } |
Marek Vasut | bd65fe3 | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 102 | |
Marek Vasut | a71df7a | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 103 | socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0); |
Dinh Nguyen | 9fd565d | 2015-03-30 17:01:06 -0500 | [diff] [blame] | 104 | timer_init(); |
| 105 | |
Chin Liang See | ddfeb0a | 2014-03-04 22:13:53 -0600 | [diff] [blame] | 106 | debug("Reconfigure Clock Manager\n"); |
| 107 | /* reconfigure the PLLs */ |
Ley Foon Tan | de77811 | 2017-04-26 02:44:33 +0800 | [diff] [blame] | 108 | if (cm_basic_init(cm_default_cfg)) |
| 109 | hang(); |
Chin Liang See | ddfeb0a | 2014-03-04 22:13:53 -0600 | [diff] [blame] | 110 | |
Dinh Nguyen | 08e463e | 2015-03-30 17:01:07 -0500 | [diff] [blame] | 111 | /* Enable bootrom to configure IOs. */ |
Marek Vasut | 40687b4 | 2015-07-09 04:40:11 +0200 | [diff] [blame] | 112 | sysmgr_config_warmrstcfgio(1); |
Dinh Nguyen | 08e463e | 2015-03-30 17:01:07 -0500 | [diff] [blame] | 113 | |
Chin Liang See | dc4d4aa | 2014-06-10 01:17:42 -0500 | [diff] [blame] | 114 | /* configure the IOCSR / IO buffer settings */ |
| 115 | if (scan_mgr_configure_iocsr()) |
| 116 | hang(); |
| 117 | |
Marek Vasut | 4a0080d | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 118 | sysmgr_config_warmrstcfgio(0); |
| 119 | |
Chin Liang See | 5d649d2 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 120 | /* configure the pin muxing through system manager */ |
Marek Vasut | 4a0080d | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 121 | sysmgr_config_warmrstcfgio(1); |
Chin Liang See | 5d649d2 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 122 | sysmgr_pinmux_init(); |
Marek Vasut | 4a0080d | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 123 | sysmgr_config_warmrstcfgio(0); |
| 124 | |
Simon Goldschmidt | 430b42f | 2019-05-13 21:16:43 +0200 | [diff] [blame] | 125 | /* Set bridges handoff value */ |
Marek Vasut | c1d4b46 | 2019-04-16 14:19:34 +0200 | [diff] [blame] | 126 | socfpga_bridges_set_handoff_regs(true, true, true); |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 127 | |
Chin Liang See | 4c54419 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 128 | debug("Unfreezing/Thaw all I/O banks\n"); |
| 129 | /* unfreeze / thaw all IO banks */ |
| 130 | sys_mgr_frzctrl_thaw_req(); |
| 131 | |
Simon Goldschmidt | c0b4fc1 | 2018-08-13 09:33:47 +0200 | [diff] [blame] | 132 | #ifdef CONFIG_DEBUG_UART |
| 133 | socfpga_per_reset(SOCFPGA_RESET(UART0), 0); |
| 134 | debug_uart_init(); |
| 135 | #endif |
| 136 | |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 137 | ret = uclass_get_device(UCLASS_RESET, 0, &dev); |
| 138 | if (ret) |
| 139 | debug("Reset init failed: %d\n", ret); |
| 140 | |
Marek Vasut | a1a9843 | 2019-11-20 22:36:24 +0100 | [diff] [blame] | 141 | #ifdef CONFIG_SPL_NAND_DENALI |
| 142 | struct socfpga_reset_manager *reset_manager_base = |
| 143 | (struct socfpga_reset_manager *)SOCFPGA_RSTMGR_ADDRESS; |
| 144 | |
| 145 | clrbits_le32(&reset_manager_base->per_mod_reset, BIT(4)); |
| 146 | #endif |
| 147 | |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 148 | /* enable console uart printing */ |
| 149 | preloader_console_init(); |
Dinh Nguyen | 37ef0c7 | 2015-03-30 17:01:08 -0500 | [diff] [blame] | 150 | |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 151 | ret = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 152 | if (ret) { |
| 153 | debug("DRAM init failed: %d\n", ret); |
Dinh Nguyen | 9ad3a4a | 2015-03-30 17:01:15 -0500 | [diff] [blame] | 154 | hang(); |
| 155 | } |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 156 | } |