blob: 002e340b4751fd137a132c74239f6a5b94867fa9 [file] [log] [blame]
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00001/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00005 */
6
7#include <common.h>
8#include <asm/io.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +02009#include <fdtdec.h>
10#include <libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020011#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020012#include <miiphy.h>
13#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010014#include <watchdog.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020015#include <asm/arch/reset_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020016#include <asm/arch/system_manager.h>
Pavel Machek529d8a12014-09-08 14:08:45 +020017#include <asm/arch/dwmmc.h>
Marek Vasut56916e42014-09-15 03:58:22 +020018#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020019#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020020#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000021
Marek Vasutf3f8fe22015-07-25 19:33:56 +020022#include <dt-bindings/reset/altr,rst-mgr.h>
23
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000024DECLARE_GLOBAL_DATA_PTR;
25
Marek Vasut56916e42014-09-15 03:58:22 +020026static struct pl310_regs *const pl310 =
27 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Pavel Machek57d75eb2014-09-08 14:08:45 +020028static struct socfpga_system_manager *sysmgr_regs =
29 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
Marek Vasut46fbdf62014-09-08 14:08:45 +020030static struct socfpga_reset_manager *reset_manager_base =
31 (struct socfpga_reset_manager *)SOCFPGA_RSTMGR_ADDRESS;
Marek Vasut56916e42014-09-15 03:58:22 +020032static struct nic301_registers *nic301_regs =
33 (struct nic301_registers *)SOCFPGA_L3REGS_ADDRESS;
Pavel Macheke918e332014-09-08 14:08:45 +020034static struct scu_registers *scu_regs =
35 (struct scu_registers *)SOCFPGA_MPUSCU_ADDRESS;
Pavel Machek57d75eb2014-09-08 14:08:45 +020036
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000037int dram_init(void)
38{
39 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
40 return 0;
41}
Pavel Machek57d75eb2014-09-08 14:08:45 +020042
Marek Vasutd5157942014-09-21 13:57:40 +020043void enable_caches(void)
44{
45#ifndef CONFIG_SYS_ICACHE_OFF
46 icache_enable();
47#endif
48#ifndef CONFIG_SYS_DCACHE_OFF
49 dcache_enable();
50#endif
51}
52
Pavel Machek57d75eb2014-09-08 14:08:45 +020053/*
54 * DesignWare Ethernet initialization
55 */
Simon Glass6e378742015-04-05 16:07:34 -060056#ifdef CONFIG_ETH_DESIGNWARE
Marek Vasutf3f8fe22015-07-25 19:33:56 +020057static void dwmac_deassert_reset(const unsigned int of_reset_id)
Pavel Machek57d75eb2014-09-08 14:08:45 +020058{
Marek Vasutf3f8fe22015-07-25 19:33:56 +020059 u32 physhift, reset;
Pavel Machek57d75eb2014-09-08 14:08:45 +020060
Marek Vasutf3f8fe22015-07-25 19:33:56 +020061 if (of_reset_id == EMAC0_RESET) {
62 physhift = SYSMGR_EMACGRP_CTRL_PHYSEL0_LSB;
63 reset = SOCFPGA_RESET(EMAC0);
64 } else if (of_reset_id == EMAC1_RESET) {
65 physhift = SYSMGR_EMACGRP_CTRL_PHYSEL1_LSB;
66 reset = SOCFPGA_RESET(EMAC1);
67 } else {
68 printf("GMAC: Invalid reset ID (%i)!\n", of_reset_id);
69 return;
70 }
Pavel Machek57d75eb2014-09-08 14:08:45 +020071
72 /* Clearing emac0 PHY interface select to 0 */
73 clrbits_le32(&sysmgr_regs->emacgrp_ctrl,
74 SYSMGR_EMACGRP_CTRL_PHYSEL_MASK << physhift);
75
76 /* configure to PHY interface select choosed */
77 setbits_le32(&sysmgr_regs->emacgrp_ctrl,
78 SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII << physhift);
79
80 /* Release the EMAC controller from reset */
Marek Vasut75f6b5c2015-07-09 02:51:56 +020081 socfpga_per_reset(reset, 0);
Marek Vasutf3f8fe22015-07-25 19:33:56 +020082}
83
84int cpu_eth_init(bd_t *bis)
85{
86 const void *fdt = gd->fdt_blob;
87 struct fdtdec_phandle_args args;
88 int nodes[2]; /* Max. two GMACs */
89 int ret, count;
90 int i, node;
91
92 /* Put both GMACs into RESET state. */
93 socfpga_per_reset(SOCFPGA_RESET(EMAC0), 1);
94 socfpga_per_reset(SOCFPGA_RESET(EMAC1), 1);
95
96 count = fdtdec_find_aliases_for_id(fdt, "ethernet",
97 COMPAT_ALTERA_SOCFPGA_DWMAC,
98 nodes, ARRAY_SIZE(nodes));
99 for (i = 0; i < count; i++) {
100 node = nodes[i];
101 if (node <= 0)
102 continue;
103
104 ret = fdtdec_parse_phandle_with_args(fdt, node, "resets",
105 "#reset-cells", 1, 0,
106 &args);
107 if (ret || (args.args_count != 1)) {
108 debug("GMAC%i: Failed to parse DT 'resets'!\n", i);
109 continue;
110 }
111
112 dwmac_deassert_reset(args.args[0]);
113 }
Pavel Machek57d75eb2014-09-08 14:08:45 +0200114
Marek Vasut5ca99542015-07-25 18:47:02 +0200115 return 0;
Pavel Machek57d75eb2014-09-08 14:08:45 +0200116}
117#endif
Chin Liang Seebff262c2014-06-10 02:23:45 -0500118
Pavel Machek529d8a12014-09-08 14:08:45 +0200119#ifdef CONFIG_DWMMC
120/*
121 * Initializes MMC controllers.
122 * to override, implement board_mmc_init()
123 */
124int cpu_mmc_init(bd_t *bis)
125{
126 return socfpga_dwmmc_init(SOCFPGA_SDMMC_ADDRESS,
127 CONFIG_HPS_SDMMC_BUSWIDTH, 0);
128}
129#endif
130
Marek Vasutdc495ae2015-07-22 05:40:12 +0200131struct {
132 const char *mode;
133 const char *name;
134} bsel_str[] = {
135 { "rsvd", "Reserved", },
136 { "fpga", "FPGA (HPS2FPGA Bridge)", },
137 { "nand", "NAND Flash (1.8V)", },
138 { "nand", "NAND Flash (3.0V)", },
139 { "sd", "SD/MMC External Transceiver (1.8V)", },
140 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
141 { "qspi", "QSPI Flash (1.8V)", },
142 { "qspi", "QSPI Flash (3.0V)", },
Marek Vasutf5688652015-07-21 16:10:13 +0200143};
144
Chin Liang Seebff262c2014-06-10 02:23:45 -0500145/*
146 * Print CPU information
147 */
Marek Vasutdc495ae2015-07-22 05:40:12 +0200148#if defined(CONFIG_DISPLAY_CPUINFO)
Chin Liang Seebff262c2014-06-10 02:23:45 -0500149int print_cpuinfo(void)
150{
Marek Vasutf5688652015-07-21 16:10:13 +0200151 const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7;
Pavel Machek2f983472014-09-08 14:08:45 +0200152 puts("CPU: Altera SoCFPGA Platform\n");
Marek Vasutdc495ae2015-07-22 05:40:12 +0200153 printf("BOOT: %s\n", bsel_str[bsel].name);
154 return 0;
155}
156#endif
157
158#ifdef CONFIG_ARCH_MISC_INIT
159int arch_misc_init(void)
160{
161 const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7;
162 setenv("bootmode", bsel_str[bsel].mode);
Chin Liang Seebff262c2014-06-10 02:23:45 -0500163 return 0;
164}
165#endif
166
167#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
168defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
169int overwrite_console(void)
170{
171 return 0;
172}
173#endif
174
Pavel Machekc7213802014-09-08 14:08:45 +0200175#ifdef CONFIG_FPGA
176/*
177 * FPGA programming support for SoC FPGA Cyclone V
178 */
179static Altera_desc altera_fpga[] = {
180 {
181 /* Family */
182 Altera_SoCFPGA,
183 /* Interface type */
184 fast_passive_parallel,
185 /* No limitation as additional data will be ignored */
186 -1,
187 /* No device function table */
188 NULL,
189 /* Base interface address specified in driver */
190 NULL,
191 /* No cookie implementation */
192 0
193 },
194};
195
196/* add device descriptor to FPGA device table */
197static void socfpga_fpga_add(void)
198{
199 int i;
200 fpga_init();
201 for (i = 0; i < ARRAY_SIZE(altera_fpga); i++)
202 fpga_add(fpga_altera, &altera_fpga[i]);
203}
204#else
205static inline void socfpga_fpga_add(void) {}
206#endif
207
Pavel Machek56a00ab2014-09-09 14:03:28 +0200208int arch_cpu_init(void)
209{
Stefan Roese3bfb5912014-12-19 13:49:10 +0100210#ifdef CONFIG_HW_WATCHDOG
211 /*
212 * In case the watchdog is enabled, make sure to (re-)configure it
213 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
214 * timeout value is still active which might too short for Linux
215 * booting.
216 */
217 hw_watchdog_init();
218#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200219 /*
220 * If the HW watchdog is NOT enabled, make sure it is not running,
221 * for example because it was enabled in the preloader. This might
222 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200223 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200224 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200225 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
226 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200227#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100228
Pavel Machek56a00ab2014-09-09 14:03:28 +0200229 return 0;
230}
231
Pavel Macheke918e332014-09-08 14:08:45 +0200232/*
233 * Convert all NIC-301 AMBA slaves from secure to non-secure
234 */
235static void socfpga_nic301_slave_ns(void)
236{
237 writel(0x1, &nic301_regs->lwhps2fpgaregs);
238 writel(0x1, &nic301_regs->hps2fpgaregs);
239 writel(0x1, &nic301_regs->acp);
240 writel(0x1, &nic301_regs->rom);
241 writel(0x1, &nic301_regs->ocram);
242 writel(0x1, &nic301_regs->sdrdata);
243}
244
Marek Vasut46fbdf62014-09-08 14:08:45 +0200245static uint32_t iswgrp_handoff[8];
246
Marek Vasut54c282e2014-10-18 03:52:36 +0200247int arch_early_init_r(void)
Chin Liang Seebff262c2014-06-10 02:23:45 -0500248{
Marek Vasut46fbdf62014-09-08 14:08:45 +0200249 int i;
Marek Vasutb7e77382015-07-12 15:11:03 +0200250
251 /*
252 * Write magic value into magic register to unlock support for
253 * issuing warm reset. The ancient kernel code expects this
254 * value to be written into the register by the bootloader, so
255 * to support that old code, we write it here instead of in the
256 * reset_cpu() function just before reseting the CPU.
257 */
258 writel(0xae9efebc, &sysmgr_regs->romcodegrp_warmramgrp_enable);
259
Marek Vasut46fbdf62014-09-08 14:08:45 +0200260 for (i = 0; i < 8; i++) /* Cache initial SW setting regs */
261 iswgrp_handoff[i] = readl(&sysmgr_regs->iswgrp_handoff[i]);
262
Pavel Macheke918e332014-09-08 14:08:45 +0200263 socfpga_bridges_reset(1);
264 socfpga_nic301_slave_ns();
265
266 /*
267 * Private components security:
268 * U-Boot : configure private timer, global timer and cpu component
269 * access as non secure for kernel stage (as required by Linux)
270 */
271 setbits_le32(&scu_regs->sacr, 0xfff);
272
Marek Vasut56916e42014-09-15 03:58:22 +0200273 /* Configure the L2 controller to make SDRAM start at 0 */
274#ifdef CONFIG_SOCFPGA_VIRTUAL_TARGET
275 writel(0x2, &nic301_regs->remap);
276#else
277 writel(0x1, &nic301_regs->remap); /* remap.mpuzero */
278 writel(0x1, &pl310->pl310_addr_filter_start);
279#endif
280
Pavel Machekc7213802014-09-08 14:08:45 +0200281 /* Add device descriptor to FPGA device table */
282 socfpga_fpga_add();
Stefan Roeseca6b8fb2014-11-07 13:50:30 +0100283
284#ifdef CONFIG_DESIGNWARE_SPI
285 /* Get Designware SPI controller out of reset */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200286 socfpga_per_reset(SOCFPGA_RESET(SPIM0), 0);
287 socfpga_per_reset(SOCFPGA_RESET(SPIM1), 0);
Stefan Roeseca6b8fb2014-11-07 13:50:30 +0100288#endif
289
Chin Liang Seebff262c2014-06-10 02:23:45 -0500290 return 0;
291}
Marek Vasut46fbdf62014-09-08 14:08:45 +0200292
293static void socfpga_sdram_apply_static_cfg(void)
294{
295 const uint32_t staticcfg = SOCFPGA_SDR_ADDRESS + 0x505c;
296 const uint32_t applymask = 0x8;
297 uint32_t val = readl(staticcfg) | applymask;
298
299 /*
300 * SDRAM staticcfg register specific:
301 * When applying the register setting, the CPU must not access
302 * SDRAM. Luckily for us, we can abuse i-cache here to help us
303 * circumvent the SDRAM access issue. The idea is to make sure
304 * that the code is in one full i-cache line by branching past
305 * it and back. Once it is in the i-cache, we execute the core
306 * of the code and apply the register settings.
307 *
308 * The code below uses 7 instructions, while the Cortex-A9 has
309 * 32-byte cachelines, thus the limit is 8 instructions total.
310 */
311 asm volatile(
312 ".align 5 \n"
313 " b 2f \n"
314 "1: str %0, [%1] \n"
315 " dsb \n"
316 " isb \n"
317 " b 3f \n"
318 "2: b 1b \n"
319 "3: nop \n"
320 : : "r"(val), "r"(staticcfg) : "memory", "cc");
321}
322
323int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
324{
325 if (argc != 2)
326 return CMD_RET_USAGE;
327
328 argv++;
329
330 switch (*argv[0]) {
331 case 'e': /* Enable */
332 writel(iswgrp_handoff[2], &sysmgr_regs->fpgaintfgrp_module);
333 socfpga_sdram_apply_static_cfg();
334 writel(iswgrp_handoff[3], SOCFPGA_SDR_ADDRESS + 0x5080);
335 writel(iswgrp_handoff[0], &reset_manager_base->brg_mod_reset);
336 writel(iswgrp_handoff[1], &nic301_regs->remap);
337 break;
338 case 'd': /* Disable */
339 writel(0, &sysmgr_regs->fpgaintfgrp_module);
340 writel(0, SOCFPGA_SDR_ADDRESS + 0x5080);
341 socfpga_sdram_apply_static_cfg();
342 writel(0, &reset_manager_base->brg_mod_reset);
343 writel(1, &nic301_regs->remap);
344 break;
345 default:
346 return CMD_RET_USAGE;
347 }
348
349 return 0;
350}
351
352U_BOOT_CMD(
353 bridge, 2, 1, do_bridge,
354 "SoCFPGA HPS FPGA bridge control",
355 "enable - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
356 "bridge disable - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
357 ""
358);