blob: a4f6d5c1ac9967cfb384356d375571223d364c48 [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/*
Ley Foon Tand1c559a2017-04-26 02:44:36 +08003 * Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
Dinh Nguyen77754402012-10-04 06:46:02 +00004 */
5
6#include <common.h>
7#include <asm/io.h>
Dinh Nguyenbd48c062015-08-01 03:42:10 +02008#include <errno.h>
Marek Vasut6ab00db2015-07-25 19:33:56 +02009#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Pavel Machek230fe9b2014-09-08 14:08:45 +020011#include <altera.h>
Pavel Machek99b97102014-07-14 14:14:17 +020012#include <miiphy.h>
13#include <netdev.h>
Stefan Roesed0e932d2014-12-19 13:49:10 +010014#include <watchdog.h>
Ley Foon Tand1c559a2017-04-26 02:44:36 +080015#include <asm/arch/misc.h>
Pavel Machekde6da922014-09-09 14:03:28 +020016#include <asm/arch/reset_manager.h>
Dinh Nguyenbd48c062015-08-01 03:42:10 +020017#include <asm/arch/scan_manager.h>
Pavel Machek45d6e672014-09-08 14:08:45 +020018#include <asm/arch/system_manager.h>
Marek Vasut60d804c2014-09-15 03:58:22 +020019#include <asm/arch/nic301.h>
Pavel Machek13e81d42014-09-08 14:08:45 +020020#include <asm/arch/scu.h>
Marek Vasut60d804c2014-09-15 03:58:22 +020021#include <asm/pl310.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000022
23DECLARE_GLOBAL_DATA_PTR;
24
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080025#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tand1c559a2017-04-26 02:44:36 +080026static const struct pl310_regs *const pl310 =
Marek Vasut60d804c2014-09-15 03:58:22 +020027 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080028#endif
Ley Foon Tand1c559a2017-04-26 02:44:36 +080029
30struct bsel bsel_str[] = {
31 { "rsvd", "Reserved", },
32 { "fpga", "FPGA (HPS2FPGA Bridge)", },
33 { "nand", "NAND Flash (1.8V)", },
34 { "nand", "NAND Flash (3.0V)", },
35 { "sd", "SD/MMC External Transceiver (1.8V)", },
36 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
37 { "qspi", "QSPI Flash (1.8V)", },
38 { "qspi", "QSPI Flash (3.0V)", },
39};
Pavel Machek45d6e672014-09-08 14:08:45 +020040
Dinh Nguyen77754402012-10-04 06:46:02 +000041int dram_init(void)
42{
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +053043 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut297b6532018-05-28 17:09:45 +020044 return -EINVAL;
45
Dinh Nguyen77754402012-10-04 06:46:02 +000046 return 0;
47}
Chin Liang See23f23f22014-06-10 02:23:45 -050048
Marek Vasut4ab333b2014-09-21 13:57:40 +020049void enable_caches(void)
50{
51#ifndef CONFIG_SYS_ICACHE_OFF
52 icache_enable();
53#endif
54#ifndef CONFIG_SYS_DCACHE_OFF
55 dcache_enable();
56#endif
57}
58
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080059#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050060void v7_outer_cache_enable(void)
61{
Marek Vasut07806972015-12-20 04:00:09 +010062 /* Disable the L2 cache */
63 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050064
65 /* enable BRESP, instruction and data prefetch, full line of zeroes */
66 setbits_le32(&pl310->pl310_aux_ctrl,
67 L310_AUX_CTRL_DATA_PREFETCH_MASK |
68 L310_AUX_CTRL_INST_PREFETCH_MASK |
69 L310_SHARED_ATT_OVERRIDE_ENABLE);
Marek Vasut07806972015-12-20 04:00:09 +010070
71 /* Enable the L2 cache */
72 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
73}
74
75void v7_outer_cache_disable(void)
76{
77 /* Disable the L2 cache */
78 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050079}
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080080#endif
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050081
Chin Liang See23f23f22014-06-10 02:23:45 -050082#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
83defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
84int overwrite_console(void)
85{
86 return 0;
87}
88#endif
89
Pavel Machek230fe9b2014-09-08 14:08:45 +020090#ifdef CONFIG_FPGA
91/*
92 * FPGA programming support for SoC FPGA Cyclone V
93 */
94static Altera_desc altera_fpga[] = {
95 {
96 /* Family */
97 Altera_SoCFPGA,
98 /* Interface type */
99 fast_passive_parallel,
100 /* No limitation as additional data will be ignored */
101 -1,
102 /* No device function table */
103 NULL,
104 /* Base interface address specified in driver */
105 NULL,
106 /* No cookie implementation */
107 0
108 },
109};
110
111/* add device descriptor to FPGA device table */
Ley Foon Tand1c559a2017-04-26 02:44:36 +0800112void socfpga_fpga_add(void)
Pavel Machek230fe9b2014-09-08 14:08:45 +0200113{
114 int i;
115 fpga_init();
116 for (i = 0; i < ARRAY_SIZE(altera_fpga); i++)
117 fpga_add(fpga_altera, &altera_fpga[i]);
118}
Pavel Machek230fe9b2014-09-08 14:08:45 +0200119#endif
120
Pavel Machekde6da922014-09-09 14:03:28 +0200121int arch_cpu_init(void)
122{
Stefan Roesed0e932d2014-12-19 13:49:10 +0100123#ifdef CONFIG_HW_WATCHDOG
124 /*
125 * In case the watchdog is enabled, make sure to (re-)configure it
126 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
127 * timeout value is still active which might too short for Linux
128 * booting.
129 */
130 hw_watchdog_init();
131#else
Pavel Machekde6da922014-09-09 14:03:28 +0200132 /*
133 * If the HW watchdog is NOT enabled, make sure it is not running,
134 * for example because it was enabled in the preloader. This might
135 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasuta71df7a2015-07-09 02:51:56 +0200136 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machekde6da922014-09-09 14:03:28 +0200137 */
Marek Vasuta71df7a2015-07-09 02:51:56 +0200138 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
139 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machekde6da922014-09-09 14:03:28 +0200140#endif
Stefan Roesed0e932d2014-12-19 13:49:10 +0100141
Pavel Machekde6da922014-09-09 14:03:28 +0200142 return 0;
143}
Marek Vasut32f99752018-04-23 22:49:31 +0200144
145#ifdef CONFIG_ETH_DESIGNWARE
146static int dwmac_phymode_to_modereg(const char *phymode, u32 *modereg)
147{
148 if (!phymode)
149 return -EINVAL;
150
151 if (!strcmp(phymode, "mii") || !strcmp(phymode, "gmii")) {
152 *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII;
153 return 0;
154 }
155
156 if (!strcmp(phymode, "rgmii")) {
157 *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII;
158 return 0;
159 }
160
161 if (!strcmp(phymode, "rmii")) {
162 *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RMII;
163 return 0;
164 }
165
166 return -EINVAL;
167}
168
169int socfpga_eth_reset_common(void (*resetfn)(const u8 of_reset_id,
170 const u8 phymode))
171{
172 const void *fdt = gd->fdt_blob;
173 struct fdtdec_phandle_args args;
174 const char *phy_mode;
175 u32 phy_modereg;
176 int nodes[2]; /* Max. two GMACs */
177 int ret, count;
178 int i, node;
179
180 count = fdtdec_find_aliases_for_id(fdt, "ethernet",
181 COMPAT_ALTERA_SOCFPGA_DWMAC,
182 nodes, ARRAY_SIZE(nodes));
183 for (i = 0; i < count; i++) {
184 node = nodes[i];
185 if (node <= 0)
186 continue;
187
188 ret = fdtdec_parse_phandle_with_args(fdt, node, "resets",
189 "#reset-cells", 1, 0,
190 &args);
191 if (ret || (args.args_count != 1)) {
192 debug("GMAC%i: Failed to parse DT 'resets'!\n", i);
193 continue;
194 }
195
196 phy_mode = fdt_getprop(fdt, node, "phy-mode", NULL);
197 ret = dwmac_phymode_to_modereg(phy_mode, &phy_modereg);
198 if (ret) {
199 debug("GMAC%i: Failed to parse DT 'phy-mode'!\n", i);
200 continue;
201 }
202
203 resetfn(args.args[0], phy_modereg);
204 }
205
206 return 0;
207}
208#endif
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800209
210#ifndef CONFIG_SPL_BUILD
211static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
212{
213 if (argc != 2)
214 return CMD_RET_USAGE;
215
216 argv++;
217
218 switch (*argv[0]) {
219 case 'e': /* Enable */
220 do_bridge_reset(1);
221 break;
222 case 'd': /* Disable */
223 do_bridge_reset(0);
224 break;
225 default:
226 return CMD_RET_USAGE;
227 }
228
229 return 0;
230}
231
Ley Foon Tan0bc28b72018-05-24 00:17:30 +0800232U_BOOT_CMD(bridge, 2, 1, do_bridge,
233 "SoCFPGA HPS FPGA bridge control",
234 "enable - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
235 "bridge disable - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
236 ""
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800237);
238
239#endif