blob: bd2a9fe5aed644ea8290375b9aa4941213a7fb2a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dinh Nguyen77754402012-10-04 06:46:02 +00002/*
3 * Copyright (C) 2012 Altera Corporation <www.altera.com>
Dinh Nguyen77754402012-10-04 06:46:02 +00004 */
5
6#include <common.h>
7#include <asm/io.h>
Marek Vasut4a9743f2019-02-19 01:07:21 +01008#include <asm/pl310.h>
Dinh Nguyen77754402012-10-04 06:46:02 +00009#include <asm/u-boot.h>
10#include <asm/utils.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000011#include <image.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000012#include <asm/arch/reset_manager.h>
13#include <spl.h>
Chin Liang See5d649d22013-09-11 11:24:48 -050014#include <asm/arch/system_manager.h>
Chin Liang See4c544192013-12-02 12:01:39 -060015#include <asm/arch/freeze_controller.h>
Chin Liang See3ab019e2014-07-22 04:28:35 -050016#include <asm/arch/clock_manager.h>
Tien Fong Chee011fa5f2017-12-05 15:58:08 +080017#include <asm/arch/misc.h>
Chin Liang See3ab019e2014-07-22 04:28:35 -050018#include <asm/arch/scan_manager.h>
Dinh Nguyen37ef0c72015-03-30 17:01:08 -050019#include <asm/arch/sdram.h>
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080020#include <asm/sections.h>
Simon Goldschmidtc0b4fc12018-08-13 09:33:47 +020021#include <debug_uart.h>
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080022#include <fdtdec.h>
23#include <watchdog.h>
Simon Goldschmidt29873c72019-04-16 22:04:39 +020024#include <dm/uclass.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000025
26DECLARE_GLOBAL_DATA_PTR;
27
Marek Vasut4a9743f2019-02-19 01:07:21 +010028static struct pl310_regs *const pl310 =
29 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080030static const struct socfpga_system_manager *sysmgr_regs =
Marek Vasut066ad142015-07-21 16:11:16 +020031 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
Marek Vasut232fcc62015-07-09 05:15:40 +020032
Marek Vasut64730542015-07-09 05:36:23 +020033u32 spl_boot_device(void)
34{
Marek Vasut066ad142015-07-21 16:11:16 +020035 const u32 bsel = readl(&sysmgr_regs->bootinfo);
36
Ley Foon Tan8f4c80c2017-04-26 02:44:45 +080037 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) {
Marek Vasut066ad142015-07-21 16:11:16 +020038 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 Vasut066ad142015-07-21 16:11:16 +020045 return BOOT_DEVICE_MMC1;
46 case 0x6: /* QSPI Flash (1.8V) */
47 case 0x7: /* QSPI Flash (3.0V) */
Marek Vasut066ad142015-07-21 16:11:16 +020048 return BOOT_DEVICE_SPI;
49 default:
50 printf("Invalid boot device (bsel=%08x)!\n", bsel);
51 hang();
52 }
Marek Vasut64730542015-07-09 05:36:23 +020053}
54
Ley Foon Tanc859f2a2018-05-24 00:17:27 +080055#ifdef CONFIG_SPL_MMC_SUPPORT
56u32 spl_boot_mode(const u32 boot_device)
57{
Tien Fong Cheef4b40922019-01-23 14:20:05 +080058#if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
Ley Foon Tanc859f2a2018-05-24 00:17:27 +080059 return MMCSD_MODE_FS;
60#else
61 return MMCSD_MODE_RAW;
62#endif
63}
64#endif
65
Marek Vasut4a9743f2019-02-19 01:07:21 +010066static void socfpga_pl310_clear(void)
67{
68 u32 mask = 0xff, ena = 0;
69
70 icache_enable();
71
72 /* Disable the L2 cache */
73 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
74
75 writel(0x111, &pl310->pl310_tag_latency_ctrl);
76 writel(0x121, &pl310->pl310_data_latency_ctrl);
77
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);
83
84 /* Enable the L2 cache */
85 ena = readl(&pl310->pl310_ctrl);
86 ena |= L2X0_CTRL_EN;
87
88 /*
89 * Invalidate the PL310 L2 cache. Keep the invalidation code
90 * entirely in L1 I-cache to avoid any bus traffic through
91 * the L2.
92 */
93 asm volatile(
94 ".align 5 \n"
95 " b 3f \n"
96 "1: str %1, [%4] \n"
97 " dsb \n"
98 " isb \n"
99 " str %0, [%2] \n"
100 " dsb \n"
101 " isb \n"
102 "2: ldr %0, [%2] \n"
103 " cmp %0, #0 \n"
104 " bne 2b \n"
105 " str %0, [%3] \n"
106 " dsb \n"
107 " isb \n"
108 " b 4f \n"
109 "3: b 1b \n"
110 "4: nop \n"
111 : "+r"(mask), "+r"(ena)
112 : "r"(&pl310->pl310_inv_way),
113 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
114 : "memory", "cc");
115
116 /* Disable the L2 cache */
117 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
118}
119
Dinh Nguyen0ef44d12015-04-15 16:44:32 -0500120void board_init_f(ulong dummy)
121{
Marek Vasut64730542015-07-09 05:36:23 +0200122 const struct cm_config *cm_default_cfg = cm_get_default_config();
Dinh Nguyen0ef44d12015-04-15 16:44:32 -0500123 unsigned long reg;
Simon Goldschmidt40c36f82018-08-13 09:33:44 +0200124 int ret;
Simon Goldschmidt29873c72019-04-16 22:04:39 +0200125 struct udevice *dev;
Marek Vasut64730542015-07-09 05:36:23 +0200126
Dinh Nguyen0ef44d12015-04-15 16:44:32 -0500127 /*
128 * First C code to run. Clear fake OCRAM ECC first as SBE
129 * and DBE might triggered during power on
130 */
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);
138
139 memset(__bss_start, 0, __bss_end - __bss_start);
140
Simon Goldschmidte4ff8422018-08-13 21:34:35 +0200141 socfpga_sdram_remap_zero();
Marek Vasut4a9743f2019-02-19 01:07:21 +0100142 socfpga_pl310_clear();
Dinh Nguyen0ef44d12015-04-15 16:44:32 -0500143
Chin Liang See4c544192013-12-02 12:01:39 -0600144 debug("Freezing all I/O banks\n");
145 /* freeze all IO banks */
146 sys_mgr_frzctrl_freeze_req();
147
Marek Vasutbd65fe32015-07-09 05:21:02 +0200148 /* Put everything into reset but L4WD0. */
149 socfpga_per_reset_all();
Simon Goldschmidt30bade22018-10-10 14:55:23 +0200150
151 if (!socfpga_is_booting_from_fpga()) {
152 /* Put FPGA bridges into reset too. */
153 socfpga_bridges_reset(1);
154 }
Marek Vasutbd65fe32015-07-09 05:21:02 +0200155
Marek Vasuta71df7a2015-07-09 02:51:56 +0200156 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
Dinh Nguyen9fd565d2015-03-30 17:01:06 -0500157 timer_init();
158
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -0600159 debug("Reconfigure Clock Manager\n");
160 /* reconfigure the PLLs */
Ley Foon Tande778112017-04-26 02:44:33 +0800161 if (cm_basic_init(cm_default_cfg))
162 hang();
Chin Liang Seeddfeb0a2014-03-04 22:13:53 -0600163
Dinh Nguyen08e463e2015-03-30 17:01:07 -0500164 /* Enable bootrom to configure IOs. */
Marek Vasut40687b42015-07-09 04:40:11 +0200165 sysmgr_config_warmrstcfgio(1);
Dinh Nguyen08e463e2015-03-30 17:01:07 -0500166
Chin Liang Seedc4d4aa2014-06-10 01:17:42 -0500167 /* configure the IOCSR / IO buffer settings */
168 if (scan_mgr_configure_iocsr())
169 hang();
170
Marek Vasut4a0080d2015-07-09 04:48:56 +0200171 sysmgr_config_warmrstcfgio(0);
172
Chin Liang See5d649d22013-09-11 11:24:48 -0500173 /* configure the pin muxing through system manager */
Marek Vasut4a0080d2015-07-09 04:48:56 +0200174 sysmgr_config_warmrstcfgio(1);
Chin Liang See5d649d22013-09-11 11:24:48 -0500175 sysmgr_pinmux_init();
Marek Vasut4a0080d2015-07-09 04:48:56 +0200176 sysmgr_config_warmrstcfgio(0);
177
Marek Vasutc1d4b462019-04-16 14:19:34 +0200178 /* De-assert reset for peripherals and bridges based on handoff */
179 reset_deassert_peripherals_handoff();
180 socfpga_bridges_set_handoff_regs(true, true, true);
Dinh Nguyen77754402012-10-04 06:46:02 +0000181
Chin Liang See4c544192013-12-02 12:01:39 -0600182 debug("Unfreezing/Thaw all I/O banks\n");
183 /* unfreeze / thaw all IO banks */
184 sys_mgr_frzctrl_thaw_req();
185
Simon Goldschmidtc0b4fc12018-08-13 09:33:47 +0200186#ifdef CONFIG_DEBUG_UART
187 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
188 debug_uart_init();
189#endif
190
Simon Goldschmidt40c36f82018-08-13 09:33:44 +0200191 ret = spl_early_init();
192 if (ret) {
193 debug("spl_early_init() failed: %d\n", ret);
194 hang();
195 }
196
Simon Goldschmidt29873c72019-04-16 22:04:39 +0200197 ret = uclass_get_device(UCLASS_RESET, 0, &dev);
198 if (ret)
199 debug("Reset init failed: %d\n", ret);
200
Dinh Nguyen77754402012-10-04 06:46:02 +0000201 /* enable console uart printing */
202 preloader_console_init();
Dinh Nguyen37ef0c72015-03-30 17:01:08 -0500203
Simon Goldschmidt29873c72019-04-16 22:04:39 +0200204 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
205 if (ret) {
206 debug("DRAM init failed: %d\n", ret);
Dinh Nguyen9ad3a4a2015-03-30 17:01:15 -0500207 hang();
208 }
Dinh Nguyen77754402012-10-04 06:46:02 +0000209}