blob: b86ff962a8d7fc58423577a6fae151e0b12e87dd [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 Glass9edefc22019-11-14 12:57:37 -07007#include <cpu_func.h>
Dinh Nguyen77754402012-10-04 06:46:02 +00008#include <asm/io.h>
Dinh Nguyenbd48c062015-08-01 03:42:10 +02009#include <errno.h>
Marek Vasut6ab00db2015-07-25 19:33:56 +020010#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Pavel Machek230fe9b2014-09-08 14:08:45 +020012#include <altera.h>
Pavel Machek99b97102014-07-14 14:14:17 +020013#include <miiphy.h>
14#include <netdev.h>
Stefan Roesed0e932d2014-12-19 13:49:10 +010015#include <watchdog.h>
Ley Foon Tand1c559a2017-04-26 02:44:36 +080016#include <asm/arch/misc.h>
Pavel Machekde6da922014-09-09 14:03:28 +020017#include <asm/arch/reset_manager.h>
Dinh Nguyenbd48c062015-08-01 03:42:10 +020018#include <asm/arch/scan_manager.h>
Pavel Machek45d6e672014-09-08 14:08:45 +020019#include <asm/arch/system_manager.h>
Marek Vasut60d804c2014-09-15 03:58:22 +020020#include <asm/arch/nic301.h>
Pavel Machek13e81d42014-09-08 14:08:45 +020021#include <asm/arch/scu.h>
Marek Vasut60d804c2014-09-15 03:58:22 +020022#include <asm/pl310.h>
Dinh Nguyen77754402012-10-04 06:46:02 +000023
24DECLARE_GLOBAL_DATA_PTR;
25
Ley Foon Tan94172c72019-11-08 10:38:21 +080026phys_addr_t socfpga_clkmgr_base __section(".data");
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080027phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tandb5741f2019-11-08 10:38:20 +080028phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080029
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080030#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tand1c559a2017-04-26 02:44:36 +080031static const struct pl310_regs *const pl310 =
Marek Vasut60d804c2014-09-15 03:58:22 +020032 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080033#endif
Ley Foon Tand1c559a2017-04-26 02:44:36 +080034
35struct bsel bsel_str[] = {
36 { "rsvd", "Reserved", },
37 { "fpga", "FPGA (HPS2FPGA Bridge)", },
38 { "nand", "NAND Flash (1.8V)", },
39 { "nand", "NAND Flash (3.0V)", },
40 { "sd", "SD/MMC External Transceiver (1.8V)", },
41 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
42 { "qspi", "QSPI Flash (1.8V)", },
43 { "qspi", "QSPI Flash (3.0V)", },
44};
Pavel Machek45d6e672014-09-08 14:08:45 +020045
Dinh Nguyen77754402012-10-04 06:46:02 +000046int dram_init(void)
47{
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +053048 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut297b6532018-05-28 17:09:45 +020049 return -EINVAL;
50
Dinh Nguyen77754402012-10-04 06:46:02 +000051 return 0;
52}
Chin Liang See23f23f22014-06-10 02:23:45 -050053
Marek Vasut4ab333b2014-09-21 13:57:40 +020054void enable_caches(void)
55{
Trevor Woerner10015022019-05-03 09:41:00 -040056#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasut4ab333b2014-09-21 13:57:40 +020057 icache_enable();
58#endif
Trevor Woerner10015022019-05-03 09:41:00 -040059#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasut4ab333b2014-09-21 13:57:40 +020060 dcache_enable();
61#endif
62}
63
Ley Foon Tan5fb033a2018-05-18 22:05:25 +080064#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050065void v7_outer_cache_enable(void)
66{
Dinh Nguyend97d8fc2019-04-23 16:55:05 -050067 struct udevice *dev;
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -050068
Dinh Nguyend97d8fc2019-04-23 16:55:05 -050069 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
70 pr_err("cache controller driver NOT found!\n");
Marek Vasut07806972015-12-20 04:00:09 +010071}
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}
Marek Vasut501be472019-03-21 23:05:38 +010078
79void socfpga_pl310_clear(void)
80{
81 u32 mask = 0xff, ena = 0;
82
83 icache_enable();
84
85 /* Disable the L2 cache */
86 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
87
88 writel(0x0, &pl310->pl310_tag_latency_ctrl);
89 writel(0x10, &pl310->pl310_data_latency_ctrl);
90
91 /* enable BRESP, instruction and data prefetch, full line of zeroes */
92 setbits_le32(&pl310->pl310_aux_ctrl,
93 L310_AUX_CTRL_DATA_PREFETCH_MASK |
94 L310_AUX_CTRL_INST_PREFETCH_MASK |
95 L310_SHARED_ATT_OVERRIDE_ENABLE);
96
97 /* Enable the L2 cache */
98 ena = readl(&pl310->pl310_ctrl);
99 ena |= L2X0_CTRL_EN;
100
101 /*
102 * Invalidate the PL310 L2 cache. Keep the invalidation code
103 * entirely in L1 I-cache to avoid any bus traffic through
104 * the L2.
105 */
106 asm volatile(
107 ".align 5 \n"
108 " b 3f \n"
109 "1: str %1, [%4] \n"
110 " dsb \n"
111 " isb \n"
112 " str %0, [%2] \n"
113 " dsb \n"
114 " isb \n"
115 "2: ldr %0, [%2] \n"
116 " cmp %0, #0 \n"
117 " bne 2b \n"
118 " str %0, [%3] \n"
119 " dsb \n"
120 " isb \n"
121 " b 4f \n"
122 "3: b 1b \n"
123 "4: nop \n"
124 : "+r"(mask), "+r"(ena)
125 : "r"(&pl310->pl310_inv_way),
126 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
127 : "memory", "cc");
128
129 /* Disable the L2 cache */
130 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
131}
Ley Foon Tan5fb033a2018-05-18 22:05:25 +0800132#endif
Dinh Nguyen8d8e13e2015-10-15 10:13:36 -0500133
Chin Liang See23f23f22014-06-10 02:23:45 -0500134#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
135defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
136int overwrite_console(void)
137{
138 return 0;
139}
140#endif
141
Pavel Machek230fe9b2014-09-08 14:08:45 +0200142#ifdef CONFIG_FPGA
Pavel Machek230fe9b2014-09-08 14:08:45 +0200143/* add device descriptor to FPGA device table */
Ang, Chee Hong877ec6e2018-12-19 18:35:15 -0800144void socfpga_fpga_add(void *fpga_desc)
Pavel Machek230fe9b2014-09-08 14:08:45 +0200145{
Pavel Machek230fe9b2014-09-08 14:08:45 +0200146 fpga_init();
Ang, Chee Hong877ec6e2018-12-19 18:35:15 -0800147 fpga_add(fpga_altera, fpga_desc);
Pavel Machek230fe9b2014-09-08 14:08:45 +0200148}
Pavel Machek230fe9b2014-09-08 14:08:45 +0200149#endif
150
Pavel Machekde6da922014-09-09 14:03:28 +0200151int arch_cpu_init(void)
152{
Ley Foon Tanbb25aca2019-11-08 10:38:19 +0800153 socfpga_get_managers_addr();
154
Stefan Roesed0e932d2014-12-19 13:49:10 +0100155#ifdef CONFIG_HW_WATCHDOG
156 /*
157 * In case the watchdog is enabled, make sure to (re-)configure it
158 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
159 * timeout value is still active which might too short for Linux
160 * booting.
161 */
162 hw_watchdog_init();
163#else
Pavel Machekde6da922014-09-09 14:03:28 +0200164 /*
165 * If the HW watchdog is NOT enabled, make sure it is not running,
166 * for example because it was enabled in the preloader. This might
167 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasuta71df7a2015-07-09 02:51:56 +0200168 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machekde6da922014-09-09 14:03:28 +0200169 */
Marek Vasuta71df7a2015-07-09 02:51:56 +0200170 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
171 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machekde6da922014-09-09 14:03:28 +0200172#endif
Stefan Roesed0e932d2014-12-19 13:49:10 +0100173
Pavel Machekde6da922014-09-09 14:03:28 +0200174 return 0;
175}
Marek Vasut32f99752018-04-23 22:49:31 +0200176
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800177#ifndef CONFIG_SPL_BUILD
178static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
179{
Marek Vasut72c347c2019-04-16 22:28:08 +0200180 unsigned int mask = ~0;
181
182 if (argc < 2 || argc > 3)
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800183 return CMD_RET_USAGE;
184
185 argv++;
186
Marek Vasut72c347c2019-04-16 22:28:08 +0200187 if (argc == 3)
188 mask = simple_strtoul(argv[1], NULL, 16);
189
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800190 switch (*argv[0]) {
191 case 'e': /* Enable */
Marek Vasut72c347c2019-04-16 22:28:08 +0200192 do_bridge_reset(1, mask);
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800193 break;
194 case 'd': /* Disable */
Marek Vasut72c347c2019-04-16 22:28:08 +0200195 do_bridge_reset(0, mask);
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800196 break;
197 default:
198 return CMD_RET_USAGE;
199 }
200
201 return 0;
202}
203
Marek Vasut72c347c2019-04-16 22:28:08 +0200204U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tan0bc28b72018-05-24 00:17:30 +0800205 "SoCFPGA HPS FPGA bridge control",
Marek Vasut72c347c2019-04-16 22:28:08 +0200206 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
207 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tan0bc28b72018-05-24 00:17:30 +0800208 ""
Ley Foon Tan10f9e4b2018-05-24 00:17:23 +0800209);
210
211#endif
Ley Foon Tanbb25aca2019-11-08 10:38:19 +0800212
213static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
214{
215 const void *blob = gd->fdt_blob;
216 struct fdt_resource r;
217 int node;
218 int ret;
219
220 node = fdt_node_offset_by_compatible(blob, -1, compat);
221 if (node < 0)
222 return node;
223
224 if (!fdtdec_get_is_enabled(blob, node))
225 return -ENODEV;
226
227 ret = fdt_get_resource(blob, node, "reg", 0, &r);
228 if (ret)
229 return ret;
230
231 *base = (phys_addr_t)r.start;
232
233 return 0;
234}
235
236void socfpga_get_managers_addr(void)
237{
238 int ret;
239
240 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
241 if (ret)
242 hang();
Ley Foon Tandb5741f2019-11-08 10:38:20 +0800243
244 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
245 if (ret)
246 hang();
Ley Foon Tan94172c72019-11-08 10:38:21 +0800247
248 ret = socfpga_get_base_addr("altr,clk-mgr", &socfpga_clkmgr_base);
249 if (ret)
250 hang();
Ley Foon Tanbb25aca2019-11-08 10:38:19 +0800251}
252
253phys_addr_t socfpga_get_rstmgr_addr(void)
254{
255 return socfpga_rstmgr_base;
256}
Ley Foon Tandb5741f2019-11-08 10:38:20 +0800257
258phys_addr_t socfpga_get_sysmgr_addr(void)
259{
260 return socfpga_sysmgr_base;
261}
Ley Foon Tan94172c72019-11-08 10:38:21 +0800262
263phys_addr_t socfpga_get_clkmgr_addr(void)
264{
265 return socfpga_clkmgr_base;
266}