blob: 142b60f887d3edce87ba0fdad105b54a086c8388 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00002/*
3 * Copyright (C) 2012 Altera Corporation <www.altera.com>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00004 */
5
6#include <common.h>
7#include <asm/io.h>
Marek Vasut2880c112019-02-19 01:07:21 +01008#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00009#include <asm/u-boot.h>
10#include <asm/utils.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000011#include <image.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000012#include <asm/arch/reset_manager.h>
13#include <spl.h>
Chin Liang See70fa4e72013-09-11 11:24:48 -050014#include <asm/arch/system_manager.h>
Chin Liang See6ae44732013-12-02 12:01:39 -060015#include <asm/arch/freeze_controller.h>
Chin Liang See112cb0d2014-07-22 04:28:35 -050016#include <asm/arch/clock_manager.h>
Tien Fong Cheef3f525c2017-12-05 15:58:08 +080017#include <asm/arch/misc.h>
Chin Liang See112cb0d2014-07-22 04:28:35 -050018#include <asm/arch/scan_manager.h>
Dinh Nguyenea344582015-03-30 17:01:08 -050019#include <asm/arch/sdram.h>
Ley Foon Tan9db517e2017-04-26 02:44:45 +080020#include <asm/sections.h>
Simon Goldschmidtbc698cc2018-08-13 09:33:47 +020021#include <debug_uart.h>
Ley Foon Tan9db517e2017-04-26 02:44:45 +080022#include <fdtdec.h>
23#include <watchdog.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000024
25DECLARE_GLOBAL_DATA_PTR;
26
Marek Vasut2880c112019-02-19 01:07:21 +010027static struct pl310_regs *const pl310 =
28 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan9db517e2017-04-26 02:44:45 +080029static const struct socfpga_system_manager *sysmgr_regs =
Marek Vasut46193c32015-07-21 16:11:16 +020030 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
Marek Vasutaf657612015-07-09 05:15:40 +020031
Marek Vasut1a7728f2015-07-09 05:36:23 +020032u32 spl_boot_device(void)
33{
Marek Vasut46193c32015-07-21 16:11:16 +020034 const u32 bsel = readl(&sysmgr_regs->bootinfo);
35
Ley Foon Tan9db517e2017-04-26 02:44:45 +080036 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) {
Marek Vasut46193c32015-07-21 16:11:16 +020037 case 0x1: /* FPGA (HPS2FPGA Bridge) */
38 return BOOT_DEVICE_RAM;
39 case 0x2: /* NAND Flash (1.8V) */
40 case 0x3: /* NAND Flash (3.0V) */
Marek Vasut796c4c22015-12-20 04:00:42 +010041 socfpga_per_reset(SOCFPGA_RESET(NAND), 0);
Marek Vasut46193c32015-07-21 16:11:16 +020042 return BOOT_DEVICE_NAND;
43 case 0x4: /* SD/MMC External Transceiver (1.8V) */
44 case 0x5: /* SD/MMC Internal Transceiver (3.0V) */
45 socfpga_per_reset(SOCFPGA_RESET(SDMMC), 0);
46 socfpga_per_reset(SOCFPGA_RESET(DMA), 0);
47 return BOOT_DEVICE_MMC1;
48 case 0x6: /* QSPI Flash (1.8V) */
49 case 0x7: /* QSPI Flash (3.0V) */
50 socfpga_per_reset(SOCFPGA_RESET(QSPI), 0);
51 return BOOT_DEVICE_SPI;
52 default:
53 printf("Invalid boot device (bsel=%08x)!\n", bsel);
54 hang();
55 }
Marek Vasut1029caf2015-07-10 00:04:23 +020056}
Ley Foon Tan3305ba72018-05-24 00:17:27 +080057
58#ifdef CONFIG_SPL_MMC_SUPPORT
59u32 spl_boot_mode(const u32 boot_device)
60{
Tien Fong Chee6091dd12019-01-23 14:20:05 +080061#if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
Ley Foon Tan3305ba72018-05-24 00:17:27 +080062 return MMCSD_MODE_FS;
63#else
64 return MMCSD_MODE_RAW;
65#endif
66}
67#endif
Marek Vasut1029caf2015-07-10 00:04:23 +020068
Marek Vasut2880c112019-02-19 01:07:21 +010069static void socfpga_pl310_clear(void)
70{
71 u32 mask = 0xff, ena = 0;
72
73 icache_enable();
74
75 /* Disable the L2 cache */
76 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
77
78 writel(0x111, &pl310->pl310_tag_latency_ctrl);
79 writel(0x121, &pl310->pl310_data_latency_ctrl);
80
81 /* enable BRESP, instruction and data prefetch, full line of zeroes */
82 setbits_le32(&pl310->pl310_aux_ctrl,
83 L310_AUX_CTRL_DATA_PREFETCH_MASK |
84 L310_AUX_CTRL_INST_PREFETCH_MASK |
85 L310_SHARED_ATT_OVERRIDE_ENABLE);
86
87 /* Enable the L2 cache */
88 ena = readl(&pl310->pl310_ctrl);
89 ena |= L2X0_CTRL_EN;
90
91 /*
92 * Invalidate the PL310 L2 cache. Keep the invalidation code
93 * entirely in L1 I-cache to avoid any bus traffic through
94 * the L2.
95 */
96 asm volatile(
97 ".align 5 \n"
98 " b 3f \n"
99 "1: str %1, [%4] \n"
100 " dsb \n"
101 " isb \n"
102 " str %0, [%2] \n"
103 " dsb \n"
104 " isb \n"
105 "2: ldr %0, [%2] \n"
106 " cmp %0, #0 \n"
107 " bne 2b \n"
108 " str %0, [%3] \n"
109 " dsb \n"
110 " isb \n"
111 " b 4f \n"
112 "3: b 1b \n"
113 "4: nop \n"
114 : "+r"(mask), "+r"(ena)
115 : "r"(&pl310->pl310_inv_way),
116 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
117 : "memory", "cc");
118
119 /* Disable the L2 cache */
120 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
121}
122
Dinh Nguyene6a52ca2015-04-15 16:44:32 -0500123void board_init_f(ulong dummy)
124{
Marek Vasut1a7728f2015-07-09 05:36:23 +0200125 const struct cm_config *cm_default_cfg = cm_get_default_config();
Marek Vasut1a7728f2015-07-09 05:36:23 +0200126 unsigned long sdram_size;
Dinh Nguyene6a52ca2015-04-15 16:44:32 -0500127 unsigned long reg;
Simon Goldschmidt17a1c612018-08-13 09:33:44 +0200128 int ret;
Marek Vasut1a7728f2015-07-09 05:36:23 +0200129
Dinh Nguyene6a52ca2015-04-15 16:44:32 -0500130 /*
131 * First C code to run. Clear fake OCRAM ECC first as SBE
132 * and DBE might triggered during power on
133 */
134 reg = readl(&sysmgr_regs->eccgrp_ocram);
135 if (reg & SYSMGR_ECC_OCRAM_SERR)
136 writel(SYSMGR_ECC_OCRAM_SERR | SYSMGR_ECC_OCRAM_EN,
137 &sysmgr_regs->eccgrp_ocram);
138 if (reg & SYSMGR_ECC_OCRAM_DERR)
139 writel(SYSMGR_ECC_OCRAM_DERR | SYSMGR_ECC_OCRAM_EN,
140 &sysmgr_regs->eccgrp_ocram);
141
142 memset(__bss_start, 0, __bss_end - __bss_start);
143
Simon Goldschmidt8e302032018-08-13 21:34:35 +0200144 socfpga_sdram_remap_zero();
Marek Vasut2880c112019-02-19 01:07:21 +0100145 socfpga_pl310_clear();
Dinh Nguyene6a52ca2015-04-15 16:44:32 -0500146
Chin Liang See6ae44732013-12-02 12:01:39 -0600147 debug("Freezing all I/O banks\n");
148 /* freeze all IO banks */
149 sys_mgr_frzctrl_freeze_req();
150
Marek Vasut8784e7e2015-07-09 05:21:02 +0200151 /* Put everything into reset but L4WD0. */
152 socfpga_per_reset_all();
Simon Goldschmidtda13a0a2018-10-10 14:55:23 +0200153
154 if (!socfpga_is_booting_from_fpga()) {
155 /* Put FPGA bridges into reset too. */
156 socfpga_bridges_reset(1);
157 }
Marek Vasut8784e7e2015-07-09 05:21:02 +0200158
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200159 socfpga_per_reset(SOCFPGA_RESET(SDR), 0);
160 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
161 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
Dinh Nguyen2c6fca32015-03-30 17:01:05 -0500162
Dinh Nguyenb47180b2015-03-30 17:01:06 -0500163 timer_init();
164
Chin Liang Seecb350602014-03-04 22:13:53 -0600165 debug("Reconfigure Clock Manager\n");
166 /* reconfigure the PLLs */
Ley Foon Tanec6f8822017-04-26 02:44:33 +0800167 if (cm_basic_init(cm_default_cfg))
168 hang();
Chin Liang Seecb350602014-03-04 22:13:53 -0600169
Dinh Nguyen95a2fd32015-03-30 17:01:07 -0500170 /* Enable bootrom to configure IOs. */
Marek Vasut8306b1e2015-07-09 04:40:11 +0200171 sysmgr_config_warmrstcfgio(1);
Dinh Nguyen95a2fd32015-03-30 17:01:07 -0500172
Chin Liang See63550242014-06-10 01:17:42 -0500173 /* configure the IOCSR / IO buffer settings */
174 if (scan_mgr_configure_iocsr())
175 hang();
176
Marek Vasut6d4a4b42015-07-09 04:48:56 +0200177 sysmgr_config_warmrstcfgio(0);
178
Chin Liang See70fa4e72013-09-11 11:24:48 -0500179 /* configure the pin muxing through system manager */
Marek Vasut6d4a4b42015-07-09 04:48:56 +0200180 sysmgr_config_warmrstcfgio(1);
Chin Liang See70fa4e72013-09-11 11:24:48 -0500181 sysmgr_pinmux_init();
Marek Vasut6d4a4b42015-07-09 04:48:56 +0200182 sysmgr_config_warmrstcfgio(0);
183
Marek Vasut8784e7e2015-07-09 05:21:02 +0200184 /* De-assert reset for peripherals and bridges based on handoff */
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000185 reset_deassert_peripherals_handoff();
Marek Vasut8784e7e2015-07-09 05:21:02 +0200186 socfpga_bridges_reset(0);
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000187
Chin Liang See6ae44732013-12-02 12:01:39 -0600188 debug("Unfreezing/Thaw all I/O banks\n");
189 /* unfreeze / thaw all IO banks */
190 sys_mgr_frzctrl_thaw_req();
191
Simon Goldschmidtbc698cc2018-08-13 09:33:47 +0200192#ifdef CONFIG_DEBUG_UART
193 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
194 debug_uart_init();
195#endif
196
Simon Goldschmidt17a1c612018-08-13 09:33:44 +0200197 ret = spl_early_init();
198 if (ret) {
199 debug("spl_early_init() failed: %d\n", ret);
200 hang();
201 }
202
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000203 /* enable console uart printing */
204 preloader_console_init();
Dinh Nguyenea344582015-03-30 17:01:08 -0500205
206 if (sdram_mmr_init_full(0xffffffff) != 0) {
207 puts("SDRAM init failed.\n");
208 hang();
209 }
210
211 debug("SDRAM: Calibrating PHY\n");
212 /* SDRAM calibration */
213 if (sdram_calibration_full() == 0) {
214 puts("SDRAM calibration failed.\n");
215 hang();
216 }
Dinh Nguyen4b86cbb2015-03-30 17:01:09 -0500217
218 sdram_size = sdram_calculate_size();
219 debug("SDRAM: %ld MiB\n", sdram_size >> 20);
Dinh Nguyen66ea63f2015-03-30 17:01:15 -0500220
221 /* Sanity check ensure correct SDRAM size specified */
222 if (get_ram_size(0, sdram_size) != sdram_size) {
223 puts("SDRAM size check failed!\n");
224 hang();
225 }
Marek Vasut8784e7e2015-07-09 05:21:02 +0200226
Simon Goldschmidtda13a0a2018-10-10 14:55:23 +0200227 if (!socfpga_is_booting_from_fpga())
228 socfpga_bridges_reset(1);
Dinh Nguyenad51f7c2012-10-04 06:46:02 +0000229}