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> |
Simon Glass | db41d65 | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 7 | #include <hang.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 11 | #include <asm/io.h> |
| 12 | #include <asm/u-boot.h> |
| 13 | #include <asm/utils.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 14 | #include <image.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 15 | #include <asm/arch/reset_manager.h> |
| 16 | #include <spl.h> |
Chin Liang See | 5d649d2 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 17 | #include <asm/arch/system_manager.h> |
Chin Liang See | 4c54419 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 18 | #include <asm/arch/freeze_controller.h> |
Chin Liang See | 3ab019e | 2014-07-22 04:28:35 -0500 | [diff] [blame] | 19 | #include <asm/arch/clock_manager.h> |
Tien Fong Chee | 011fa5f | 2017-12-05 15:58:08 +0800 | [diff] [blame] | 20 | #include <asm/arch/misc.h> |
Chin Liang See | 3ab019e | 2014-07-22 04:28:35 -0500 | [diff] [blame] | 21 | #include <asm/arch/scan_manager.h> |
Dinh Nguyen | 37ef0c7 | 2015-03-30 17:01:08 -0500 | [diff] [blame] | 22 | #include <asm/arch/sdram.h> |
Ley Foon Tan | 8f4c80c | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 23 | #include <asm/sections.h> |
Simon Goldschmidt | c0b4fc1 | 2018-08-13 09:33:47 +0200 | [diff] [blame] | 24 | #include <debug_uart.h> |
Ley Foon Tan | 8f4c80c | 2017-04-26 02:44:45 +0800 | [diff] [blame] | 25 | #include <fdtdec.h> |
| 26 | #include <watchdog.h> |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 27 | #include <dm/uclass.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 28 | #include <linux/bitops.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 29 | |
| 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 32 | u32 spl_boot_device(void) |
| 33 | { |
Ley Foon Tan | db5741f | 2019-11-08 10:38:20 +0800 | [diff] [blame] | 34 | const u32 bsel = readl(socfpga_get_sysmgr_addr() + |
| 35 | SYSMGR_GEN5_BOOTINFO); |
Marek Vasut | 066ad14 | 2015-07-21 16:11:16 +0200 | [diff] [blame] | 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 |
Harald Seiler | e975906 | 2020-04-15 11:33:30 +0200 | [diff] [blame] | 56 | u32 spl_mmc_boot_mode(const u32 boot_device) |
Ley Foon Tan | c859f2a | 2018-05-24 00:17:27 +0800 | [diff] [blame] | 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 | |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 66 | void board_init_f(ulong dummy) |
| 67 | { |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 68 | const struct cm_config *cm_default_cfg = cm_get_default_config(); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 69 | unsigned long reg; |
Simon Goldschmidt | 40c36f8 | 2018-08-13 09:33:44 +0200 | [diff] [blame] | 70 | int ret; |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 71 | struct udevice *dev; |
Marek Vasut | 6473054 | 2015-07-09 05:36:23 +0200 | [diff] [blame] | 72 | |
Ley Foon Tan | bb25aca | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 73 | ret = spl_early_init(); |
| 74 | if (ret) |
| 75 | hang(); |
| 76 | |
| 77 | socfpga_get_managers_addr(); |
| 78 | |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 79 | /* |
Ley Foon Tan | bb25aca | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 80 | * Clear fake OCRAM ECC first as SBE |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 81 | * and DBE might triggered during power on |
| 82 | */ |
Ley Foon Tan | db5741f | 2019-11-08 10:38:20 +0800 | [diff] [blame] | 83 | reg = readl(socfpga_get_sysmgr_addr() + SYSMGR_GEN5_ECCGRP_OCRAM); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 84 | if (reg & SYSMGR_ECC_OCRAM_SERR) |
| 85 | writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN, |
Ley Foon Tan | db5741f | 2019-11-08 10:38:20 +0800 | [diff] [blame] | 86 | socfpga_get_sysmgr_addr() + SYSMGR_GEN5_ECCGRP_OCRAM); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 87 | if (reg & SYSMGR_ECC_OCRAM_DERR) |
| 88 | writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN, |
Ley Foon Tan | db5741f | 2019-11-08 10:38:20 +0800 | [diff] [blame] | 89 | socfpga_get_sysmgr_addr() + SYSMGR_GEN5_ECCGRP_OCRAM); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 90 | |
Simon Goldschmidt | e4ff842 | 2018-08-13 21:34:35 +0200 | [diff] [blame] | 91 | socfpga_sdram_remap_zero(); |
Marek Vasut | 4a9743f | 2019-02-19 01:07:21 +0100 | [diff] [blame] | 92 | socfpga_pl310_clear(); |
Dinh Nguyen | 0ef44d1 | 2015-04-15 16:44:32 -0500 | [diff] [blame] | 93 | |
Chin Liang See | 4c54419 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 94 | debug("Freezing all I/O banks\n"); |
| 95 | /* freeze all IO banks */ |
| 96 | sys_mgr_frzctrl_freeze_req(); |
| 97 | |
Marek Vasut | bd65fe3 | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 98 | /* Put everything into reset but L4WD0. */ |
| 99 | socfpga_per_reset_all(); |
Simon Goldschmidt | 30bade2 | 2018-10-10 14:55:23 +0200 | [diff] [blame] | 100 | |
| 101 | if (!socfpga_is_booting_from_fpga()) { |
| 102 | /* Put FPGA bridges into reset too. */ |
| 103 | socfpga_bridges_reset(1); |
| 104 | } |
Marek Vasut | bd65fe3 | 2015-07-09 05:21:02 +0200 | [diff] [blame] | 105 | |
Marek Vasut | a71df7a | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 106 | socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0); |
Dinh Nguyen | 9fd565d | 2015-03-30 17:01:06 -0500 | [diff] [blame] | 107 | timer_init(); |
| 108 | |
Chin Liang See | ddfeb0a | 2014-03-04 22:13:53 -0600 | [diff] [blame] | 109 | debug("Reconfigure Clock Manager\n"); |
| 110 | /* reconfigure the PLLs */ |
Ley Foon Tan | de77811 | 2017-04-26 02:44:33 +0800 | [diff] [blame] | 111 | if (cm_basic_init(cm_default_cfg)) |
| 112 | hang(); |
Chin Liang See | ddfeb0a | 2014-03-04 22:13:53 -0600 | [diff] [blame] | 113 | |
Dinh Nguyen | 08e463e | 2015-03-30 17:01:07 -0500 | [diff] [blame] | 114 | /* Enable bootrom to configure IOs. */ |
Marek Vasut | 40687b4 | 2015-07-09 04:40:11 +0200 | [diff] [blame] | 115 | sysmgr_config_warmrstcfgio(1); |
Dinh Nguyen | 08e463e | 2015-03-30 17:01:07 -0500 | [diff] [blame] | 116 | |
Chin Liang See | dc4d4aa | 2014-06-10 01:17:42 -0500 | [diff] [blame] | 117 | /* configure the IOCSR / IO buffer settings */ |
| 118 | if (scan_mgr_configure_iocsr()) |
| 119 | hang(); |
| 120 | |
Marek Vasut | 4a0080d | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 121 | sysmgr_config_warmrstcfgio(0); |
| 122 | |
Chin Liang See | 5d649d2 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 123 | /* configure the pin muxing through system manager */ |
Marek Vasut | 4a0080d | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 124 | sysmgr_config_warmrstcfgio(1); |
Chin Liang See | 5d649d2 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 125 | sysmgr_pinmux_init(); |
Marek Vasut | 4a0080d | 2015-07-09 04:48:56 +0200 | [diff] [blame] | 126 | sysmgr_config_warmrstcfgio(0); |
| 127 | |
Simon Goldschmidt | 430b42f | 2019-05-13 21:16:43 +0200 | [diff] [blame] | 128 | /* Set bridges handoff value */ |
Marek Vasut | c1d4b46 | 2019-04-16 14:19:34 +0200 | [diff] [blame] | 129 | socfpga_bridges_set_handoff_regs(true, true, true); |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 130 | |
Chin Liang See | 4c54419 | 2013-12-02 12:01:39 -0600 | [diff] [blame] | 131 | debug("Unfreezing/Thaw all I/O banks\n"); |
| 132 | /* unfreeze / thaw all IO banks */ |
| 133 | sys_mgr_frzctrl_thaw_req(); |
| 134 | |
Simon Goldschmidt | c0b4fc1 | 2018-08-13 09:33:47 +0200 | [diff] [blame] | 135 | #ifdef CONFIG_DEBUG_UART |
| 136 | socfpga_per_reset(SOCFPGA_RESET(UART0), 0); |
| 137 | debug_uart_init(); |
| 138 | #endif |
| 139 | |
Simon Goldschmidt | 29873c7 | 2019-04-16 22:04:39 +0200 | [diff] [blame] | 140 | ret = uclass_get_device(UCLASS_RESET, 0, &dev); |
| 141 | if (ret) |
| 142 | debug("Reset init failed: %d\n", ret); |
| 143 | |
Marek Vasut | a1a9843 | 2019-11-20 22:36:24 +0100 | [diff] [blame] | 144 | #ifdef CONFIG_SPL_NAND_DENALI |
Marek Vasut | 707c36e | 2020-01-09 10:56:24 +0100 | [diff] [blame] | 145 | clrbits_le32(SOCFPGA_RSTMGR_ADDRESS + RSTMGR_GEN5_PERMODRST, BIT(4)); |
Marek Vasut | a1a9843 | 2019-11-20 22:36:24 +0100 | [diff] [blame] | 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 | } |