blob: 71bae827a15b3b07df8594c82912da0db33d790b [file] [log] [blame]
Dinh Nguyen77754402012-10-04 06:46:02 +00001/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dinh Nguyen77754402012-10-04 06:46:02 +00005 */
6
7#include <common.h>
8#include <asm/io.h>
Dinh Nguyen0ef44d12015-04-15 16:44:32 -05009#include <asm/pl310.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000010#include <asm/u-boot.h>
11#include <asm/utils.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000012#include <image.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000013#include <asm/arch/reset_manager.h>
14#include <spl.h>
Chin Liang See5d649d22013-09-11 11:24:48 -050015#include <asm/arch/system_manager.h>
Chin Liang See4c544192013-12-02 12:01:39 -060016#include <asm/arch/freeze_controller.h>
Chin Liang See3ab019e2014-07-22 04:28:35 -050017#include <asm/arch/clock_manager.h>
18#include <asm/arch/scan_manager.h>
Dinh Nguyen37ef0c72015-03-30 17:01:08 -050019#include <asm/arch/sdram.h>
Marek Vasut232fcc62015-07-09 05:15:40 +020020#include <asm/arch/scu.h>
21#include <asm/arch/nic301.h>
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080022#include <asm/sections.h>
23#include <fdtdec.h>
24#include <watchdog.h>
25#if defined(CONFIG_TARGET_SOCFPGA_ARRIA10)
26#include <asm/arch/pinmux.h>
27#endif
Dinh Nguyen77754402012-10-04 06:46:02 +000028
29DECLARE_GLOBAL_DATA_PTR;
30
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080031#if defined(CONFIG_TARGET_SOCFPGA_GEN5)
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050032static struct pl310_regs *const pl310 =
33 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Marek Vasut232fcc62015-07-09 05:15:40 +020034static struct scu_registers *scu_regs =
35 (struct scu_registers *)SOCFPGA_MPUSCU_ADDRESS;
36static struct nic301_registers *nic301_regs =
37 (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080038#endif
39
40static const struct socfpga_system_manager *sysmgr_regs =
Marek Vasut066ad142015-07-21 16:11:16 +020041 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
Marek Vasut232fcc62015-07-09 05:15:40 +020042
Marek Vasut64730542015-07-09 05:36:23 +020043u32 spl_boot_device(void)
44{
Marek Vasut066ad142015-07-21 16:11:16 +020045 const u32 bsel = readl(&sysmgr_regs->bootinfo);
46
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080047 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) {
Marek Vasut066ad142015-07-21 16:11:16 +020048 case 0x1: /* FPGA (HPS2FPGA Bridge) */
49 return BOOT_DEVICE_RAM;
50 case 0x2: /* NAND Flash (1.8V) */
51 case 0x3: /* NAND Flash (3.0V) */
Marek Vasutac242e12015-12-20 04:00:42 +010052 socfpga_per_reset(SOCFPGA_RESET(NAND), 0);
Marek Vasut066ad142015-07-21 16:11:16 +020053 return BOOT_DEVICE_NAND;
54 case 0x4: /* SD/MMC External Transceiver (1.8V) */
55 case 0x5: /* SD/MMC Internal Transceiver (3.0V) */
56 socfpga_per_reset(SOCFPGA_RESET(SDMMC), 0);
57 socfpga_per_reset(SOCFPGA_RESET(DMA), 0);
58 return BOOT_DEVICE_MMC1;
59 case 0x6: /* QSPI Flash (1.8V) */
60 case 0x7: /* QSPI Flash (3.0V) */
61 socfpga_per_reset(SOCFPGA_RESET(QSPI), 0);
62 return BOOT_DEVICE_SPI;
63 default:
64 printf("Invalid boot device (bsel=%08x)!\n", bsel);
65 hang();
66 }
Marek Vasut64730542015-07-09 05:36:23 +020067}
68
Marek Vasutd3f34e72015-07-10 00:04:23 +020069#ifdef CONFIG_SPL_MMC_SUPPORT
Marek Vasut2b1cdaf2016-05-14 23:42:07 +020070u32 spl_boot_mode(const u32 boot_device)
Marek Vasutd3f34e72015-07-10 00:04:23 +020071{
72#if defined(CONFIG_SPL_FAT_SUPPORT) || defined(CONFIG_SPL_EXT_SUPPORT)
73 return MMCSD_MODE_FS;
74#else
75 return MMCSD_MODE_RAW;
76#endif
77}
78#endif
79
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080080#if defined(CONFIG_TARGET_SOCFPGA_GEN5)
Marek Vasut232fcc62015-07-09 05:15:40 +020081static void socfpga_nic301_slave_ns(void)
82{
83 writel(0x1, &nic301_regs->lwhps2fpgaregs);
84 writel(0x1, &nic301_regs->hps2fpgaregs);
85 writel(0x1, &nic301_regs->acp);
86 writel(0x1, &nic301_regs->rom);
87 writel(0x1, &nic301_regs->ocram);
88 writel(0x1, &nic301_regs->sdrdata);
89}
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050090
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050091void board_init_f(ulong dummy)
92{
Marek Vasut64730542015-07-09 05:36:23 +020093#ifndef CONFIG_SOCFPGA_VIRTUAL_TARGET
94 const struct cm_config *cm_default_cfg = cm_get_default_config();
95#endif
Marek Vasut64730542015-07-09 05:36:23 +020096 unsigned long sdram_size;
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050097 unsigned long reg;
Marek Vasut64730542015-07-09 05:36:23 +020098
Dinh Nguyen0ef44d12015-04-15 16:44:32 -050099 /*
100 * First C code to run. Clear fake OCRAM ECC first as SBE
101 * and DBE might triggered during power on
102 */
103 reg = readl(&sysmgr_regs->eccgrp_ocram);
104 if (reg & SYSMGR_ECC_OCRAM_SERR)
105 writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN,
106 &sysmgr_regs->eccgrp_ocram);
107 if (reg & SYSMGR_ECC_OCRAM_DERR)
108 writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN,
109 &sysmgr_regs->eccgrp_ocram);
110
111 memset(__bss_start, 0, __bss_end - __bss_start);
112
Marek Vasut232fcc62015-07-09 05:15:40 +0200113 socfpga_nic301_slave_ns();
114
115 /* Configure ARM MPU SNSAC register. */
116 setbits_le32(&scu_regs->sacr, 0xfff);
117
Dinh Nguyen0ef44d12015-04-15 16:44:32 -0500118 /* Remap SDRAM to 0x0 */
Marek Vasut232fcc62015-07-09 05:15:40 +0200119 writel(0x1, &nic301_regs->remap); /* remap.mpuzero */
Dinh Nguyen0ef44d12015-04-15 16:44:32 -0500120 writel(0x1, &pl310->pl310_addr_filter_start);
121
Chin Liang See5d649d22013-09-11 11:24:48 -0500122#ifndef CONFIG_SOCFPGA_VIRTUAL_TARGET
Chin Liang See4c544192013-12-02 12:01:39 -0600123 debug("Freezing all I/O banks\n");
124 /* freeze all IO banks */
125 sys_mgr_frzctrl_freeze_req();
126
Marek Vasutbd65fe32015-07-09 05:21:02 +0200127 /* Put everything into reset but L4WD0. */
128 socfpga_per_reset_all();
129 /* Put FPGA bridges into reset too. */
130 socfpga_bridges_reset(1);
131
Marek Vasuta71df7a2015-07-09 02:51:56 +0200132 socfpga_per_reset(SOCFPGA_RESET(SDR), 0);
133 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
134 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
Dinh Nguyen0812a1d2015-03-30 17:01:05 -0500135
Dinh Nguyen9fd565d2015-03-30 17:01:06 -0500136 timer_init();
137
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -0600138 debug("Reconfigure Clock Manager\n");
139 /* reconfigure the PLLs */
Ley Foon Tande778112017-04-26 02:44:33 +0800140 if (cm_basic_init(cm_default_cfg))
141 hang();
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -0600142
Dinh Nguyen08e463e2015-03-30 17:01:07 -0500143 /* Enable bootrom to configure IOs. */
Marek Vasut40687b42015-07-09 04:40:11 +0200144 sysmgr_config_warmrstcfgio(1);
Dinh Nguyen08e463e2015-03-30 17:01:07 -0500145
Chin Liang Seedc4d4aa2014-06-10 01:17:42 -0500146 /* configure the IOCSR / IO buffer settings */
147 if (scan_mgr_configure_iocsr())
148 hang();
149
Marek Vasut4a0080d2015-07-09 04:48:56 +0200150 sysmgr_config_warmrstcfgio(0);
151
Chin Liang See5d649d22013-09-11 11:24:48 -0500152 /* configure the pin muxing through system manager */
Marek Vasut4a0080d2015-07-09 04:48:56 +0200153 sysmgr_config_warmrstcfgio(1);
Chin Liang See5d649d22013-09-11 11:24:48 -0500154 sysmgr_pinmux_init();
Marek Vasut4a0080d2015-07-09 04:48:56 +0200155 sysmgr_config_warmrstcfgio(0);
156
Chin Liang See5d649d22013-09-11 11:24:48 -0500157#endif /* CONFIG_SOCFPGA_VIRTUAL_TARGET */
158
Marek Vasutbd65fe32015-07-09 05:21:02 +0200159 /* De-assert reset for peripherals and bridges based on handoff */
Dinh Nguyen77754402012-10-04 06:46:02 +0000160 reset_deassert_peripherals_handoff();
Marek Vasutbd65fe32015-07-09 05:21:02 +0200161 socfpga_bridges_reset(0);
Dinh Nguyen77754402012-10-04 06:46:02 +0000162
Chin Liang See4c544192013-12-02 12:01:39 -0600163 debug("Unfreezing/Thaw all I/O banks\n");
164 /* unfreeze / thaw all IO banks */
165 sys_mgr_frzctrl_thaw_req();
166
Dinh Nguyen77754402012-10-04 06:46:02 +0000167 /* enable console uart printing */
168 preloader_console_init();
Dinh Nguyen37ef0c72015-03-30 17:01:08 -0500169
170 if (sdram_mmr_init_full(0xffffffff) != 0) {
171 puts("SDRAM init failed.\n");
172 hang();
173 }
174
175 debug("SDRAM: Calibrating PHY\n");
176 /* SDRAM calibration */
177 if (sdram_calibration_full() == 0) {
178 puts("SDRAM calibration failed.\n");
179 hang();
180 }
Dinh Nguyen89ba8242015-03-30 17:01:09 -0500181
182 sdram_size = sdram_calculate_size();
183 debug("SDRAM: %ld MiB\n", sdram_size >> 20);
Dinh Nguyen9ad3a4a2015-03-30 17:01:15 -0500184
185 /* Sanity check ensure correct SDRAM size specified */
186 if (get_ram_size(0, sdram_size) != sdram_size) {
187 puts("SDRAM size check failed!\n");
188 hang();
189 }
Marek Vasutbd65fe32015-07-09 05:21:02 +0200190
191 socfpga_bridges_reset(1);
Marek Vasut64730542015-07-09 05:36:23 +0200192
Marek Vasut7599b532015-07-12 15:23:28 +0200193 /* Configure simple malloc base pointer into RAM. */
194 gd->malloc_base = CONFIG_SYS_TEXT_BASE + (1024 * 1024);
Dinh Nguyen77754402012-10-04 06:46:02 +0000195}
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +0800196#elif defined(CONFIG_TARGET_SOCFPGA_ARRIA10)
197void spl_board_init(void)
198{
199 /* configuring the clock based on handoff */
200 cm_basic_init(gd->fdt_blob);
201 WATCHDOG_RESET();
202
203 config_dedicated_pins(gd->fdt_blob);
204 WATCHDOG_RESET();
205
206 /* Release UART from reset */
207 socfpga_reset_uart(0);
208
209 /* enable console uart printing */
210 preloader_console_init();
211}
212
213void board_init_f(ulong dummy)
214{
215 /*
216 * Configure Clock Manager to use intosc clock instead external osc to
217 * ensure success watchdog operation. We do it as early as possible.
218 */
219 cm_use_intosc();
220
221 socfpga_watchdog_disable();
222
223 arch_early_init_r();
224
225#ifdef CONFIG_HW_WATCHDOG
226 /* release osc1 watchdog timer 0 from reset */
227 socfpga_reset_deassert_osc1wd0();
228
229 /* reconfigure and enable the watchdog */
230 hw_watchdog_init();
231 WATCHDOG_RESET();
232#endif /* CONFIG_HW_WATCHDOG */
233}
234#endif