blob: 2901b7db680f6a709a2d0f66e5534e9a97894b87 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00002/*
Ley Foon Tanb149f2b2017-04-26 02:44:36 +08003 * Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00004 */
5
6#include <common.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07007#include <cpu_func.h>
Simon Glassf11478f2019-12-28 10:45:07 -07008#include <hang.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00009#include <asm/io.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020010#include <errno.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +020011#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090012#include <linux/libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020013#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020014#include <miiphy.h>
15#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010016#include <watchdog.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080017#include <asm/arch/misc.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020018#include <asm/arch/reset_manager.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020019#include <asm/arch/scan_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020020#include <asm/arch/system_manager.h>
Marek Vasut56916e42014-09-15 03:58:22 +020021#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020022#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020023#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000024
25DECLARE_GLOBAL_DATA_PTR;
26
Ley Foon Tan26695912019-11-08 10:38:21 +080027phys_addr_t socfpga_clkmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080028phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080029phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080030
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080031#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080032static const struct pl310_regs *const pl310 =
Marek Vasut56916e42014-09-15 03:58:22 +020033 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080034#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080035
36struct bsel bsel_str[] = {
37 { "rsvd", "Reserved", },
38 { "fpga", "FPGA (HPS2FPGA Bridge)", },
39 { "nand", "NAND Flash (1.8V)", },
40 { "nand", "NAND Flash (3.0V)", },
41 { "sd", "SD/MMC External Transceiver (1.8V)", },
42 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
43 { "qspi", "QSPI Flash (1.8V)", },
44 { "qspi", "QSPI Flash (3.0V)", },
45};
Pavel Machek57d75eb2014-09-08 14:08:45 +020046
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000047int dram_init(void)
48{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053049 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020050 return -EINVAL;
51
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000052 return 0;
53}
Pavel Machek57d75eb2014-09-08 14:08:45 +020054
Marek Vasutd5157942014-09-21 13:57:40 +020055void enable_caches(void)
56{
Trevor Woerner43ec7e02019-05-03 09:41:00 -040057#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020058 icache_enable();
59#endif
Trevor Woerner43ec7e02019-05-03 09:41:00 -040060#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020061 dcache_enable();
62#endif
63}
64
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080065#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050066void v7_outer_cache_enable(void)
67{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050068 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010069
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050070 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
71 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010072}
73
74void v7_outer_cache_disable(void)
75{
76 /* Disable the L2 cache */
77 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050078}
Marek Vasutb6ba4902019-03-21 23:05:38 +010079
80void socfpga_pl310_clear(void)
81{
82 u32 mask = 0xff, ena = 0;
83
84 icache_enable();
85
86 /* Disable the L2 cache */
87 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
88
89 writel(0x0, &pl310->pl310_tag_latency_ctrl);
90 writel(0x10, &pl310->pl310_data_latency_ctrl);
91
92 /* enable BRESP, instruction and data prefetch, full line of zeroes */
93 setbits_le32(&pl310->pl310_aux_ctrl,
94 L310_AUX_CTRL_DATA_PREFETCH_MASK |
95 L310_AUX_CTRL_INST_PREFETCH_MASK |
96 L310_SHARED_ATT_OVERRIDE_ENABLE);
97
98 /* Enable the L2 cache */
99 ena = readl(&pl310->pl310_ctrl);
100 ena |= L2X0_CTRL_EN;
101
102 /*
103 * Invalidate the PL310 L2 cache. Keep the invalidation code
104 * entirely in L1 I-cache to avoid any bus traffic through
105 * the L2.
106 */
107 asm volatile(
108 ".align 5 \n"
109 " b 3f \n"
110 "1: str %1, [%4] \n"
111 " dsb \n"
112 " isb \n"
113 " str %0, [%2] \n"
114 " dsb \n"
115 " isb \n"
116 "2: ldr %0, [%2] \n"
117 " cmp %0, #0 \n"
118 " bne 2b \n"
119 " str %0, [%3] \n"
120 " dsb \n"
121 " isb \n"
122 " b 4f \n"
123 "3: b 1b \n"
124 "4: nop \n"
125 : "+r"(mask), "+r"(ena)
126 : "r"(&pl310->pl310_inv_way),
127 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
128 : "memory", "cc");
129
130 /* Disable the L2 cache */
131 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
132}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +0800133#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -0500134
Chin Liang Seebff262c2014-06-10 02:23:45 -0500135#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
136defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
137int overwrite_console(void)
138{
139 return 0;
140}
141#endif
142
Pavel Machekc7213802014-09-08 14:08:45 +0200143#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +0200144/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800145void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +0200146{
Pavel Machekc7213802014-09-08 14:08:45 +0200147 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800148 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +0200149}
Pavel Machekc7213802014-09-08 14:08:45 +0200150#endif
151
Pavel Machek56a00ab2014-09-09 14:03:28 +0200152int arch_cpu_init(void)
153{
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800154 socfpga_get_managers_addr();
155
Stefan Roese3bfb5912014-12-19 13:49:10 +0100156#ifdef CONFIG_HW_WATCHDOG
157 /*
158 * In case the watchdog is enabled, make sure to (re-)configure it
159 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
160 * timeout value is still active which might too short for Linux
161 * booting.
162 */
163 hw_watchdog_init();
164#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200165 /*
166 * If the HW watchdog is NOT enabled, make sure it is not running,
167 * for example because it was enabled in the preloader. This might
168 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200169 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200170 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200171 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
172 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200173#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100174
Pavel Machek56a00ab2014-09-09 14:03:28 +0200175 return 0;
176}
Marek Vasut3386c852018-04-23 22:49:31 +0200177
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800178#ifndef CONFIG_SPL_BUILD
179static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
180{
Marek Vasut713a8a22019-04-16 22:28:08 +0200181 unsigned int mask = ~0;
182
183 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800184 return CMD_RET_USAGE;
185
186 argv++;
187
Marek Vasut713a8a22019-04-16 22:28:08 +0200188 if (argc == 3)
189 mask = simple_strtoul(argv[1], NULL, 16);
190
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800191 switch (*argv[0]) {
192 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200193 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800194 break;
195 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200196 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800197 break;
198 default:
199 return CMD_RET_USAGE;
200 }
201
202 return 0;
203}
204
Marek Vasut713a8a22019-04-16 22:28:08 +0200205U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800206 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200207 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
208 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800209 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800210);
211
212#endif
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800213
214static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
215{
216 const void *blob = gd->fdt_blob;
217 struct fdt_resource r;
218 int node;
219 int ret;
220
221 node = fdt_node_offset_by_compatible(blob, -1, compat);
222 if (node < 0)
223 return node;
224
225 if (!fdtdec_get_is_enabled(blob, node))
226 return -ENODEV;
227
228 ret = fdt_get_resource(blob, node, "reg", 0, &r);
229 if (ret)
230 return ret;
231
232 *base = (phys_addr_t)r.start;
233
234 return 0;
235}
236
237void socfpga_get_managers_addr(void)
238{
239 int ret;
240
241 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
242 if (ret)
243 hang();
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800244
245 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
246 if (ret)
247 hang();
Ley Foon Tan26695912019-11-08 10:38:21 +0800248
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800249#ifdef CONFIG_TARGET_SOCFPGA_AGILEX
250 ret = socfpga_get_base_addr("intel,agilex-clkmgr",
251 &socfpga_clkmgr_base);
252#else
Ley Foon Tan26695912019-11-08 10:38:21 +0800253 ret = socfpga_get_base_addr("altr,clk-mgr", &socfpga_clkmgr_base);
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800254#endif
Ley Foon Tan26695912019-11-08 10:38:21 +0800255 if (ret)
256 hang();
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800257}
258
259phys_addr_t socfpga_get_rstmgr_addr(void)
260{
261 return socfpga_rstmgr_base;
262}
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800263
264phys_addr_t socfpga_get_sysmgr_addr(void)
265{
266 return socfpga_sysmgr_base;
267}
Ley Foon Tan26695912019-11-08 10:38:21 +0800268
269phys_addr_t socfpga_get_clkmgr_addr(void)
270{
271 return socfpga_clkmgr_base;
272}