blob: ac2b891fadea8da855dc19ef24441b00ae2d4372 [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>
Simon Glass09140112020-05-10 11:40:03 -06007#include <command.h>
Simon Glass9edefc22019-11-14 12:57:37 -07008#include <cpu_func.h>
Simon Glassdb41d652019-12-28 10:45:07 -07009#include <hang.h>
Simon Glass90526e92020-05-10 11:39:56 -060010#include <asm/cache.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000012#include <asm/io.h>
Dinh Nguyenbd48c062015-08-01 03:42:10 +020013#include <errno.h>
Marek Vasut6ab00db2015-07-25 19:33:56 +020014#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090015#include <linux/libfdt.h>
Pavel Machek230fe9b2014-09-08 14:08:45 +020016#include <altera.h>
Pavel Machek99b97102014-07-14 14:14:17 +020017#include <miiphy.h>
18#include <netdev.h>
Stefan Roesed0e932d2014-12-19 13:49:10 +010019#include <watchdog.h>
Ley Foon Tand1c559a2017-04-26 02:44:36 +080020#include <asm/arch/misc.h>
Pavel Machekde6da922014-09-09 14:03:28 +020021#include <asm/arch/reset_manager.h>
Dinh Nguyenbd48c062015-08-01 03:42:10 +020022#include <asm/arch/scan_manager.h>
Pavel Machek45d6e672014-09-08 14:08:45 +020023#include <asm/arch/system_manager.h>
Marek Vasut60d804c2014-09-15 03:58:22 +020024#include <asm/arch/nic301.h>
Pavel Machek13e81d42014-09-08 14:08:45 +020025#include <asm/arch/scu.h>
Marek Vasut60d804c2014-09-15 03:58:22 +020026#include <asm/pl310.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000027
28DECLARE_GLOBAL_DATA_PTR;
29
Ley Foon Tan94172c72019-11-08 10:38:21 +080030phys_addr_t socfpga_clkmgr_base __section(".data");
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080031phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tandb5741f2019-11-08 10:38:20 +080032phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080033
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080034#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tand1c559a2017-04-26 02:44:36 +080035static const struct pl310_regs *const pl310 =
Marek Vasut60d804c2014-09-15 03:58:22 +020036 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080037#endif
Ley Foon Tand1c559a2017-04-26 02:44:36 +080038
39struct bsel bsel_str[] = {
40 { "rsvd", "Reserved", },
41 { "fpga", "FPGA (HPS2FPGA Bridge)", },
42 { "nand", "NAND Flash (1.8V)", },
43 { "nand", "NAND Flash (3.0V)", },
44 { "sd", "SD/MMC External Transceiver (1.8V)", },
45 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
46 { "qspi", "QSPI Flash (1.8V)", },
47 { "qspi", "QSPI Flash (3.0V)", },
48};
Pavel Machek45d6e672014-09-08 14:08:45 +020049
Dinh Nguyen77754402012-10-04 06:46:02 +000050int dram_init(void)
51{
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +053052 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut297b6532018-05-28 17:09:45 +020053 return -EINVAL;
54
Dinh Nguyen77754402012-10-04 06:46:02 +000055 return 0;
56}
Chin Liang See23f23f22014-06-10 02:23:45 -050057
Marek Vasut4ab333b2014-09-21 13:57:40 +020058void enable_caches(void)
59{
Trevor Woerner10015022019-05-03 09:41:00 -040060#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasut4ab333b2014-09-21 13:57:40 +020061 icache_enable();
62#endif
Trevor Woerner10015022019-05-03 09:41:00 -040063#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasut4ab333b2014-09-21 13:57:40 +020064 dcache_enable();
65#endif
66}
67
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080068#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050069void v7_outer_cache_enable(void)
70{
Dinh Nguyend97d8fc2019-04-23 16:55:05 -050071 struct udevice *dev;
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050072
Dinh Nguyend97d8fc2019-04-23 16:55:05 -050073 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
74 pr_err("cache controller driver NOT found!\n");
Marek Vasut07806972015-12-20 04:00:09 +010075}
76
77void v7_outer_cache_disable(void)
78{
79 /* Disable the L2 cache */
80 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050081}
Marek Vasut501be472019-03-21 23:05:38 +010082
83void socfpga_pl310_clear(void)
84{
85 u32 mask = 0xff, ena = 0;
86
87 icache_enable();
88
89 /* Disable the L2 cache */
90 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
91
92 writel(0x0, &pl310->pl310_tag_latency_ctrl);
93 writel(0x10, &pl310->pl310_data_latency_ctrl);
94
95 /* enable BRESP, instruction and data prefetch, full line of zeroes */
96 setbits_le32(&pl310->pl310_aux_ctrl,
97 L310_AUX_CTRL_DATA_PREFETCH_MASK |
98 L310_AUX_CTRL_INST_PREFETCH_MASK |
99 L310_SHARED_ATT_OVERRIDE_ENABLE);
100
101 /* Enable the L2 cache */
102 ena = readl(&pl310->pl310_ctrl);
103 ena |= L2X0_CTRL_EN;
104
105 /*
106 * Invalidate the PL310 L2 cache. Keep the invalidation code
107 * entirely in L1 I-cache to avoid any bus traffic through
108 * the L2.
109 */
110 asm volatile(
111 ".align 5 \n"
112 " b 3f \n"
113 "1: str %1, [%4] \n"
114 " dsb \n"
115 " isb \n"
116 " str %0, [%2] \n"
117 " dsb \n"
118 " isb \n"
119 "2: ldr %0, [%2] \n"
120 " cmp %0, #0 \n"
121 " bne 2b \n"
122 " str %0, [%3] \n"
123 " dsb \n"
124 " isb \n"
125 " b 4f \n"
126 "3: b 1b \n"
127 "4: nop \n"
128 : "+r"(mask), "+r"(ena)
129 : "r"(&pl310->pl310_inv_way),
130 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
131 : "memory", "cc");
132
133 /* Disable the L2 cache */
134 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
135}
Ley Foon Tan5fb033a2018-05-18 22:05:25 +0800136#endif
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -0500137
Chin Liang See23f23f22014-06-10 02:23:45 -0500138#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
139defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
140int overwrite_console(void)
141{
142 return 0;
143}
144#endif
145
Pavel Machek230fe9b2014-09-08 14:08:45 +0200146#ifdef CONFIG_FPGA
Pavel Machek230fe9b2014-09-08 14:08:45 +0200147/* add device descriptor to FPGA device table */
Ang, Chee Hong877ec6e2018-12-19 18:35:15 -0800148void socfpga_fpga_add(void *fpga_desc)
Pavel Machek230fe9b2014-09-08 14:08:45 +0200149{
Pavel Machek230fe9b2014-09-08 14:08:45 +0200150 fpga_init();
Ang, Chee Hong877ec6e2018-12-19 18:35:15 -0800151 fpga_add(fpga_altera, fpga_desc);
Pavel Machek230fe9b2014-09-08 14:08:45 +0200152}
Pavel Machek230fe9b2014-09-08 14:08:45 +0200153#endif
154
Pavel Machekde6da922014-09-09 14:03:28 +0200155int arch_cpu_init(void)
156{
Ley Foon Tanbb25aca2019-11-08 10:38:19 +0800157 socfpga_get_managers_addr();
158
Stefan Roesed0e932d2014-12-19 13:49:10 +0100159#ifdef CONFIG_HW_WATCHDOG
160 /*
161 * In case the watchdog is enabled, make sure to (re-)configure it
162 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
163 * timeout value is still active which might too short for Linux
164 * booting.
165 */
166 hw_watchdog_init();
167#else
Pavel Machekde6da922014-09-09 14:03:28 +0200168 /*
169 * If the HW watchdog is NOT enabled, make sure it is not running,
170 * for example because it was enabled in the preloader. This might
171 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasuta71df7a2015-07-09 02:51:56 +0200172 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machekde6da922014-09-09 14:03:28 +0200173 */
Marek Vasuta71df7a2015-07-09 02:51:56 +0200174 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
175 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machekde6da922014-09-09 14:03:28 +0200176#endif
Stefan Roesed0e932d2014-12-19 13:49:10 +0100177
Pavel Machekde6da922014-09-09 14:03:28 +0200178 return 0;
179}
Marek Vasut32f99752018-04-23 22:49:31 +0200180
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800181#ifndef CONFIG_SPL_BUILD
Simon Glass09140112020-05-10 11:40:03 -0600182static int do_bridge(struct cmd_tbl *cmdtp, int flag, int argc,
183 char *const argv[])
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800184{
Marek Vasut72c347c2019-04-16 22:28:08 +0200185 unsigned int mask = ~0;
186
187 if (argc < 2 || argc > 3)
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800188 return CMD_RET_USAGE;
189
190 argv++;
191
Marek Vasut72c347c2019-04-16 22:28:08 +0200192 if (argc == 3)
193 mask = simple_strtoul(argv[1], NULL, 16);
194
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800195 switch (*argv[0]) {
196 case 'e': /* Enable */
Marek Vasut72c347c2019-04-16 22:28:08 +0200197 do_bridge_reset(1, mask);
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800198 break;
199 case 'd': /* Disable */
Marek Vasut72c347c2019-04-16 22:28:08 +0200200 do_bridge_reset(0, mask);
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800201 break;
202 default:
203 return CMD_RET_USAGE;
204 }
205
206 return 0;
207}
208
Marek Vasut72c347c2019-04-16 22:28:08 +0200209U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tan0bc28b72018-05-24 00:17:30 +0800210 "SoCFPGA HPS FPGA bridge control",
Marek Vasut72c347c2019-04-16 22:28:08 +0200211 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
212 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tan0bc28b72018-05-24 00:17:30 +0800213 ""
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800214);
215
216#endif
Ley Foon Tanbb25aca2019-11-08 10:38:19 +0800217
218static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
219{
220 const void *blob = gd->fdt_blob;
221 struct fdt_resource r;
222 int node;
223 int ret;
224
225 node = fdt_node_offset_by_compatible(blob, -1, compat);
226 if (node < 0)
227 return node;
228
229 if (!fdtdec_get_is_enabled(blob, node))
230 return -ENODEV;
231
232 ret = fdt_get_resource(blob, node, "reg", 0, &r);
233 if (ret)
234 return ret;
235
236 *base = (phys_addr_t)r.start;
237
238 return 0;
239}
240
241void socfpga_get_managers_addr(void)
242{
243 int ret;
244
245 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
246 if (ret)
247 hang();
Ley Foon Tandb5741f2019-11-08 10:38:20 +0800248
249 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
250 if (ret)
251 hang();
Ley Foon Tan94172c72019-11-08 10:38:21 +0800252
Ley Foon Tanc168fc72019-11-27 15:55:22 +0800253#ifdef CONFIG_TARGET_SOCFPGA_AGILEX
254 ret = socfpga_get_base_addr("intel,agilex-clkmgr",
255 &socfpga_clkmgr_base);
256#else
Ley Foon Tan94172c72019-11-08 10:38:21 +0800257 ret = socfpga_get_base_addr("altr,clk-mgr", &socfpga_clkmgr_base);
Ley Foon Tanc168fc72019-11-27 15:55:22 +0800258#endif
Ley Foon Tan94172c72019-11-08 10:38:21 +0800259 if (ret)
260 hang();
Ley Foon Tanbb25aca2019-11-08 10:38:19 +0800261}
262
263phys_addr_t socfpga_get_rstmgr_addr(void)
264{
265 return socfpga_rstmgr_base;
266}
Ley Foon Tandb5741f2019-11-08 10:38:20 +0800267
268phys_addr_t socfpga_get_sysmgr_addr(void)
269{
270 return socfpga_sysmgr_base;
271}
Ley Foon Tan94172c72019-11-08 10:38:21 +0800272
273phys_addr_t socfpga_get_clkmgr_addr(void)
274{
275 return socfpga_clkmgr_base;
276}