1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2012 Altera Corporation <www.altera.com>
9 #include <asm/u-boot.h>
10 #include <asm/utils.h>
12 #include <asm/arch/reset_manager.h>
14 #include <asm/arch/system_manager.h>
15 #include <asm/arch/freeze_controller.h>
16 #include <asm/arch/clock_manager.h>
17 #include <asm/arch/misc.h>
18 #include <asm/arch/scan_manager.h>
19 #include <asm/arch/sdram.h>
20 #include <asm/sections.h>
21 #include <debug_uart.h>
24 #include <dm/uclass.h>
26 DECLARE_GLOBAL_DATA_PTR;
28 static struct pl310_regs *const pl310 =
29 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
30 static const struct socfpga_system_manager *sysmgr_regs =
31 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
33 u32 spl_boot_device(void)
35 const u32 bsel = readl(&sysmgr_regs->bootinfo);
37 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) {
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) */
45 return BOOT_DEVICE_MMC1;
46 case 0x6: /* QSPI Flash (1.8V) */
47 case 0x7: /* QSPI Flash (3.0V) */
48 return BOOT_DEVICE_SPI;
50 printf("Invalid boot device (bsel=%08x)!\n", bsel);
55 #ifdef CONFIG_SPL_MMC_SUPPORT
56 u32 spl_boot_mode(const u32 boot_device)
58 #if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
61 return MMCSD_MODE_RAW;
66 static void socfpga_pl310_clear(void)
68 u32 mask = 0xff, ena = 0;
72 /* Disable the L2 cache */
73 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
75 writel(0x111, &pl310->pl310_tag_latency_ctrl);
76 writel(0x121, &pl310->pl310_data_latency_ctrl);
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);
84 /* Enable the L2 cache */
85 ena = readl(&pl310->pl310_ctrl);
89 * Invalidate the PL310 L2 cache. Keep the invalidation code
90 * entirely in L1 I-cache to avoid any bus traffic through
111 : "+r"(mask), "+r"(ena)
112 : "r"(&pl310->pl310_inv_way),
113 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
116 /* Disable the L2 cache */
117 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
120 void board_init_f(ulong dummy)
122 const struct cm_config *cm_default_cfg = cm_get_default_config();
128 * First C code to run. Clear fake OCRAM ECC first as SBE
129 * and DBE might triggered during power on
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);
139 memset(__bss_start, 0, __bss_end - __bss_start);
141 socfpga_sdram_remap_zero();
142 socfpga_pl310_clear();
144 debug("Freezing all I/O banks\n");
145 /* freeze all IO banks */
146 sys_mgr_frzctrl_freeze_req();
148 /* Put everything into reset but L4WD0. */
149 socfpga_per_reset_all();
151 if (!socfpga_is_booting_from_fpga()) {
152 /* Put FPGA bridges into reset too. */
153 socfpga_bridges_reset(1);
156 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
159 debug("Reconfigure Clock Manager\n");
160 /* reconfigure the PLLs */
161 if (cm_basic_init(cm_default_cfg))
164 /* Enable bootrom to configure IOs. */
165 sysmgr_config_warmrstcfgio(1);
167 /* configure the IOCSR / IO buffer settings */
168 if (scan_mgr_configure_iocsr())
171 sysmgr_config_warmrstcfgio(0);
173 /* configure the pin muxing through system manager */
174 sysmgr_config_warmrstcfgio(1);
175 sysmgr_pinmux_init();
176 sysmgr_config_warmrstcfgio(0);
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);
182 debug("Unfreezing/Thaw all I/O banks\n");
183 /* unfreeze / thaw all IO banks */
184 sys_mgr_frzctrl_thaw_req();
186 #ifdef CONFIG_DEBUG_UART
187 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
191 ret = spl_early_init();
193 debug("spl_early_init() failed: %d\n", ret);
197 ret = uclass_get_device(UCLASS_RESET, 0, &dev);
199 debug("Reset init failed: %d\n", ret);
201 /* enable console uart printing */
202 preloader_console_init();
204 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
206 debug("DRAM init failed: %d\n", ret);