blob: fca86507f18beea0cc28ba4ca451a6bf11b1639c [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{
43 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
44 return 0;
45}
Chin Liang See23f23f22014-06-10 02:23:45 -050046
Marek Vasut4ab333b2014-09-21 13:57:40 +020047void enable_caches(void)
48{
49#ifndef CONFIG_SYS_ICACHE_OFF
50 icache_enable();
51#endif
52#ifndef CONFIG_SYS_DCACHE_OFF
53 dcache_enable();
54#endif
55}
56
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080057#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050058void v7_outer_cache_enable(void)
59{
Marek Vasut07806972015-12-20 04:00:09 +010060 /* Disable the L2 cache */
61 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050062
63 /* enable BRESP, instruction and data prefetch, full line of zeroes */
64 setbits_le32(&pl310->pl310_aux_ctrl,
65 L310_AUX_CTRL_DATA_PREFETCH_MASK |
66 L310_AUX_CTRL_INST_PREFETCH_MASK |
67 L310_SHARED_ATT_OVERRIDE_ENABLE);
Marek Vasut07806972015-12-20 04:00:09 +010068
69 /* Enable the L2 cache */
70 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
71}
72
73void v7_outer_cache_disable(void)
74{
75 /* Disable the L2 cache */
76 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050077}
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080078#endif
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050079
Chin Liang See23f23f22014-06-10 02:23:45 -050080#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
81defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
82int overwrite_console(void)
83{
84 return 0;
85}
86#endif
87
Pavel Machek230fe9b2014-09-08 14:08:45 +020088#ifdef CONFIG_FPGA
89/*
90 * FPGA programming support for SoC FPGA Cyclone V
91 */
92static Altera_desc altera_fpga[] = {
93 {
94 /* Family */
95 Altera_SoCFPGA,
96 /* Interface type */
97 fast_passive_parallel,
98 /* No limitation as additional data will be ignored */
99 -1,
100 /* No device function table */
101 NULL,
102 /* Base interface address specified in driver */
103 NULL,
104 /* No cookie implementation */
105 0
106 },
107};
108
109/* add device descriptor to FPGA device table */
Ley Foon Tand1c559a2017-04-26 02:44:36 +0800110void socfpga_fpga_add(void)
Pavel Machek230fe9b2014-09-08 14:08:45 +0200111{
112 int i;
113 fpga_init();
114 for (i = 0; i < ARRAY_SIZE(altera_fpga); i++)
115 fpga_add(fpga_altera, &altera_fpga[i]);
116}
Pavel Machek230fe9b2014-09-08 14:08:45 +0200117#endif
118
Pavel Machekde6da922014-09-09 14:03:28 +0200119int arch_cpu_init(void)
120{
Stefan Roesed0e932d2014-12-19 13:49:10 +0100121#ifdef CONFIG_HW_WATCHDOG
122 /*
123 * In case the watchdog is enabled, make sure to (re-)configure it
124 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
125 * timeout value is still active which might too short for Linux
126 * booting.
127 */
128 hw_watchdog_init();
129#else
Pavel Machekde6da922014-09-09 14:03:28 +0200130 /*
131 * If the HW watchdog is NOT enabled, make sure it is not running,
132 * for example because it was enabled in the preloader. This might
133 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasuta71df7a2015-07-09 02:51:56 +0200134 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machekde6da922014-09-09 14:03:28 +0200135 */
Marek Vasuta71df7a2015-07-09 02:51:56 +0200136 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
137 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machekde6da922014-09-09 14:03:28 +0200138#endif
Stefan Roesed0e932d2014-12-19 13:49:10 +0100139
Pavel Machekde6da922014-09-09 14:03:28 +0200140 return 0;
141}
Marek Vasut32f99752018-04-23 22:49:31 +0200142
143#ifdef CONFIG_ETH_DESIGNWARE
144static int dwmac_phymode_to_modereg(const char *phymode, u32 *modereg)
145{
146 if (!phymode)
147 return -EINVAL;
148
149 if (!strcmp(phymode, "mii") || !strcmp(phymode, "gmii")) {
150 *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII;
151 return 0;
152 }
153
154 if (!strcmp(phymode, "rgmii")) {
155 *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII;
156 return 0;
157 }
158
159 if (!strcmp(phymode, "rmii")) {
160 *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RMII;
161 return 0;
162 }
163
164 return -EINVAL;
165}
166
167int socfpga_eth_reset_common(void (*resetfn)(const u8 of_reset_id,
168 const u8 phymode))
169{
170 const void *fdt = gd->fdt_blob;
171 struct fdtdec_phandle_args args;
172 const char *phy_mode;
173 u32 phy_modereg;
174 int nodes[2]; /* Max. two GMACs */
175 int ret, count;
176 int i, node;
177
178 count = fdtdec_find_aliases_for_id(fdt, "ethernet",
179 COMPAT_ALTERA_SOCFPGA_DWMAC,
180 nodes, ARRAY_SIZE(nodes));
181 for (i = 0; i < count; i++) {
182 node = nodes[i];
183 if (node <= 0)
184 continue;
185
186 ret = fdtdec_parse_phandle_with_args(fdt, node, "resets",
187 "#reset-cells", 1, 0,
188 &args);
189 if (ret || (args.args_count != 1)) {
190 debug("GMAC%i: Failed to parse DT 'resets'!\n", i);
191 continue;
192 }
193
194 phy_mode = fdt_getprop(fdt, node, "phy-mode", NULL);
195 ret = dwmac_phymode_to_modereg(phy_mode, &phy_modereg);
196 if (ret) {
197 debug("GMAC%i: Failed to parse DT 'phy-mode'!\n", i);
198 continue;
199 }
200
201 resetfn(args.args[0], phy_modereg);
202 }
203
204 return 0;
205}
206#endif