blob: 0158f4f04c47135b8050bc267072f5b174348c25 [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>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <asm/cache.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000010#include <asm/io.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020011#include <errno.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +020012#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020014#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020015#include <miiphy.h>
16#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010017#include <watchdog.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080018#include <asm/arch/misc.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020019#include <asm/arch/reset_manager.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020020#include <asm/arch/scan_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020021#include <asm/arch/system_manager.h>
Marek Vasut56916e42014-09-15 03:58:22 +020022#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020023#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020024#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000025
26DECLARE_GLOBAL_DATA_PTR;
27
Ley Foon Tan26695912019-11-08 10:38:21 +080028phys_addr_t socfpga_clkmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080029phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080030phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080031
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080032#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080033static const struct pl310_regs *const pl310 =
Marek Vasut56916e42014-09-15 03:58:22 +020034 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080035#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080036
37struct bsel bsel_str[] = {
38 { "rsvd", "Reserved", },
39 { "fpga", "FPGA (HPS2FPGA Bridge)", },
40 { "nand", "NAND Flash (1.8V)", },
41 { "nand", "NAND Flash (3.0V)", },
42 { "sd", "SD/MMC External Transceiver (1.8V)", },
43 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
44 { "qspi", "QSPI Flash (1.8V)", },
45 { "qspi", "QSPI Flash (3.0V)", },
46};
Pavel Machek57d75eb2014-09-08 14:08:45 +020047
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000048int dram_init(void)
49{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053050 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020051 return -EINVAL;
52
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000053 return 0;
54}
Pavel Machek57d75eb2014-09-08 14:08:45 +020055
Marek Vasutd5157942014-09-21 13:57:40 +020056void enable_caches(void)
57{
Trevor Woerner43ec7e02019-05-03 09:41:00 -040058#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020059 icache_enable();
60#endif
Trevor Woerner43ec7e02019-05-03 09:41:00 -040061#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020062 dcache_enable();
63#endif
64}
65
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080066#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050067void v7_outer_cache_enable(void)
68{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050069 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010070
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050071 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
72 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010073}
74
75void v7_outer_cache_disable(void)
76{
77 /* Disable the L2 cache */
78 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050079}
Marek Vasutb6ba4902019-03-21 23:05:38 +010080
81void socfpga_pl310_clear(void)
82{
83 u32 mask = 0xff, ena = 0;
84
85 icache_enable();
86
87 /* Disable the L2 cache */
88 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
89
90 writel(0x0, &pl310->pl310_tag_latency_ctrl);
91 writel(0x10, &pl310->pl310_data_latency_ctrl);
92
93 /* enable BRESP, instruction and data prefetch, full line of zeroes */
94 setbits_le32(&pl310->pl310_aux_ctrl,
95 L310_AUX_CTRL_DATA_PREFETCH_MASK |
96 L310_AUX_CTRL_INST_PREFETCH_MASK |
97 L310_SHARED_ATT_OVERRIDE_ENABLE);
98
99 /* Enable the L2 cache */
100 ena = readl(&pl310->pl310_ctrl);
101 ena |= L2X0_CTRL_EN;
102
103 /*
104 * Invalidate the PL310 L2 cache. Keep the invalidation code
105 * entirely in L1 I-cache to avoid any bus traffic through
106 * the L2.
107 */
108 asm volatile(
109 ".align 5 \n"
110 " b 3f \n"
111 "1: str %1, [%4] \n"
112 " dsb \n"
113 " isb \n"
114 " str %0, [%2] \n"
115 " dsb \n"
116 " isb \n"
117 "2: ldr %0, [%2] \n"
118 " cmp %0, #0 \n"
119 " bne 2b \n"
120 " str %0, [%3] \n"
121 " dsb \n"
122 " isb \n"
123 " b 4f \n"
124 "3: b 1b \n"
125 "4: nop \n"
126 : "+r"(mask), "+r"(ena)
127 : "r"(&pl310->pl310_inv_way),
128 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
129 : "memory", "cc");
130
131 /* Disable the L2 cache */
132 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
133}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +0800134#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -0500135
Chin Liang Seebff262c2014-06-10 02:23:45 -0500136#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
137defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
138int overwrite_console(void)
139{
140 return 0;
141}
142#endif
143
Pavel Machekc7213802014-09-08 14:08:45 +0200144#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +0200145/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800146void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +0200147{
Pavel Machekc7213802014-09-08 14:08:45 +0200148 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800149 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +0200150}
Pavel Machekc7213802014-09-08 14:08:45 +0200151#endif
152
Pavel Machek56a00ab2014-09-09 14:03:28 +0200153int arch_cpu_init(void)
154{
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800155 socfpga_get_managers_addr();
156
Stefan Roese3bfb5912014-12-19 13:49:10 +0100157#ifdef CONFIG_HW_WATCHDOG
158 /*
159 * In case the watchdog is enabled, make sure to (re-)configure it
160 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
161 * timeout value is still active which might too short for Linux
162 * booting.
163 */
164 hw_watchdog_init();
165#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200166 /*
167 * If the HW watchdog is NOT enabled, make sure it is not running,
168 * for example because it was enabled in the preloader. This might
169 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200170 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200171 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200172 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
173 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200174#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100175
Pavel Machek56a00ab2014-09-09 14:03:28 +0200176 return 0;
177}
Marek Vasut3386c852018-04-23 22:49:31 +0200178
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800179#ifndef CONFIG_SPL_BUILD
180static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
181{
Marek Vasut713a8a22019-04-16 22:28:08 +0200182 unsigned int mask = ~0;
183
184 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800185 return CMD_RET_USAGE;
186
187 argv++;
188
Marek Vasut713a8a22019-04-16 22:28:08 +0200189 if (argc == 3)
190 mask = simple_strtoul(argv[1], NULL, 16);
191
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800192 switch (*argv[0]) {
193 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200194 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800195 break;
196 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200197 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800198 break;
199 default:
200 return CMD_RET_USAGE;
201 }
202
203 return 0;
204}
205
Marek Vasut713a8a22019-04-16 22:28:08 +0200206U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800207 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200208 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
209 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800210 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800211);
212
213#endif
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800214
215static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
216{
217 const void *blob = gd->fdt_blob;
218 struct fdt_resource r;
219 int node;
220 int ret;
221
222 node = fdt_node_offset_by_compatible(blob, -1, compat);
223 if (node < 0)
224 return node;
225
226 if (!fdtdec_get_is_enabled(blob, node))
227 return -ENODEV;
228
229 ret = fdt_get_resource(blob, node, "reg", 0, &r);
230 if (ret)
231 return ret;
232
233 *base = (phys_addr_t)r.start;
234
235 return 0;
236}
237
238void socfpga_get_managers_addr(void)
239{
240 int ret;
241
242 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
243 if (ret)
244 hang();
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800245
246 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
247 if (ret)
248 hang();
Ley Foon Tan26695912019-11-08 10:38:21 +0800249
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800250#ifdef CONFIG_TARGET_SOCFPGA_AGILEX
251 ret = socfpga_get_base_addr("intel,agilex-clkmgr",
252 &socfpga_clkmgr_base);
253#else
Ley Foon Tan26695912019-11-08 10:38:21 +0800254 ret = socfpga_get_base_addr("altr,clk-mgr", &socfpga_clkmgr_base);
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800255#endif
Ley Foon Tan26695912019-11-08 10:38:21 +0800256 if (ret)
257 hang();
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800258}
259
260phys_addr_t socfpga_get_rstmgr_addr(void)
261{
262 return socfpga_rstmgr_base;
263}
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800264
265phys_addr_t socfpga_get_sysmgr_addr(void)
266{
267 return socfpga_sysmgr_base;
268}
Ley Foon Tan26695912019-11-08 10:38:21 +0800269
270phys_addr_t socfpga_get_clkmgr_addr(void)
271{
272 return socfpga_clkmgr_base;
273}