blob: 80ad0870341b20550a7bdd54d71be94b30d9f791 [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 Glassed38aef2020-05-10 11:40:03 -06007#include <command.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07008#include <cpu_func.h>
Simon Glassf11478f2019-12-28 10:45:07 -07009#include <hang.h>
Simon Glass274e0b02020-05-10 11:39:56 -060010#include <asm/cache.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000013#include <asm/io.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020014#include <errno.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +020015#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090016#include <linux/libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020017#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020018#include <miiphy.h>
19#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010020#include <watchdog.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080021#include <asm/arch/misc.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020022#include <asm/arch/reset_manager.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020023#include <asm/arch/scan_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020024#include <asm/arch/system_manager.h>
Marek Vasut56916e42014-09-15 03:58:22 +020025#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020026#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020027#include <asm/pl310.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060028#include <linux/printk.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000029
30DECLARE_GLOBAL_DATA_PTR;
31
Ley Foon Tan26695912019-11-08 10:38:21 +080032phys_addr_t socfpga_clkmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080033phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080034phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080035
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080036#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080037static const struct pl310_regs *const pl310 =
Tom Rini6a5dccc2022-11-16 13:10:41 -050038 (struct pl310_regs *)CFG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080039#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080040
41struct bsel bsel_str[] = {
42 { "rsvd", "Reserved", },
43 { "fpga", "FPGA (HPS2FPGA Bridge)", },
44 { "nand", "NAND Flash (1.8V)", },
45 { "nand", "NAND Flash (3.0V)", },
46 { "sd", "SD/MMC External Transceiver (1.8V)", },
47 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
48 { "qspi", "QSPI Flash (1.8V)", },
49 { "qspi", "QSPI Flash (3.0V)", },
50};
Pavel Machek57d75eb2014-09-08 14:08:45 +020051
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000052int dram_init(void)
53{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053054 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020055 return -EINVAL;
56
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000057 return 0;
58}
Pavel Machek57d75eb2014-09-08 14:08:45 +020059
Marek Vasutd5157942014-09-21 13:57:40 +020060void enable_caches(void)
61{
Trevor Woerner43ec7e02019-05-03 09:41:00 -040062#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020063 icache_enable();
64#endif
Trevor Woerner43ec7e02019-05-03 09:41:00 -040065#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020066 dcache_enable();
67#endif
68}
69
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080070#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050071void v7_outer_cache_enable(void)
72{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050073 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010074
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050075 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
76 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010077}
78
79void v7_outer_cache_disable(void)
80{
81 /* Disable the L2 cache */
82 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050083}
Marek Vasutb6ba4902019-03-21 23:05:38 +010084
85void socfpga_pl310_clear(void)
86{
87 u32 mask = 0xff, ena = 0;
88
89 icache_enable();
90
91 /* Disable the L2 cache */
92 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
93
94 writel(0x0, &pl310->pl310_tag_latency_ctrl);
95 writel(0x10, &pl310->pl310_data_latency_ctrl);
96
97 /* enable BRESP, instruction and data prefetch, full line of zeroes */
98 setbits_le32(&pl310->pl310_aux_ctrl,
99 L310_AUX_CTRL_DATA_PREFETCH_MASK |
100 L310_AUX_CTRL_INST_PREFETCH_MASK |
101 L310_SHARED_ATT_OVERRIDE_ENABLE);
102
103 /* Enable the L2 cache */
104 ena = readl(&pl310->pl310_ctrl);
105 ena |= L2X0_CTRL_EN;
106
107 /*
108 * Invalidate the PL310 L2 cache. Keep the invalidation code
109 * entirely in L1 I-cache to avoid any bus traffic through
110 * the L2.
111 */
112 asm volatile(
113 ".align 5 \n"
114 " b 3f \n"
115 "1: str %1, [%4] \n"
116 " dsb \n"
117 " isb \n"
118 " str %0, [%2] \n"
119 " dsb \n"
120 " isb \n"
121 "2: ldr %0, [%2] \n"
122 " cmp %0, #0 \n"
123 " bne 2b \n"
124 " str %0, [%3] \n"
125 " dsb \n"
126 " isb \n"
127 " b 4f \n"
128 "3: b 1b \n"
129 "4: nop \n"
130 : "+r"(mask), "+r"(ena)
131 : "r"(&pl310->pl310_inv_way),
132 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
133 : "memory", "cc");
134
135 /* Disable the L2 cache */
136 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
137}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +0800138#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -0500139
Chin Liang Seebff262c2014-06-10 02:23:45 -0500140#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
141defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
142int overwrite_console(void)
143{
144 return 0;
145}
146#endif
147
Pavel Machekc7213802014-09-08 14:08:45 +0200148#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +0200149/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800150void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +0200151{
Pavel Machekc7213802014-09-08 14:08:45 +0200152 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800153 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +0200154}
Pavel Machekc7213802014-09-08 14:08:45 +0200155#endif
156
Pavel Machek56a00ab2014-09-09 14:03:28 +0200157int arch_cpu_init(void)
158{
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800159 socfpga_get_managers_addr();
160
Stefan Roese3bfb5912014-12-19 13:49:10 +0100161#ifdef CONFIG_HW_WATCHDOG
162 /*
163 * In case the watchdog is enabled, make sure to (re-)configure it
164 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
165 * timeout value is still active which might too short for Linux
166 * booting.
167 */
168 hw_watchdog_init();
169#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200170 /*
171 * If the HW watchdog is NOT enabled, make sure it is not running,
172 * for example because it was enabled in the preloader. This might
173 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200174 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200175 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200176 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
177 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200178#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100179
Pavel Machek56a00ab2014-09-09 14:03:28 +0200180 return 0;
181}
Marek Vasut3386c852018-04-23 22:49:31 +0200182
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800183#ifndef CONFIG_SPL_BUILD
Simon Glassed38aef2020-05-10 11:40:03 -0600184static int do_bridge(struct cmd_tbl *cmdtp, int flag, int argc,
185 char *const argv[])
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800186{
Marek Vasut713a8a22019-04-16 22:28:08 +0200187 unsigned int mask = ~0;
188
189 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800190 return CMD_RET_USAGE;
191
192 argv++;
193
Marek Vasut713a8a22019-04-16 22:28:08 +0200194 if (argc == 3)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600195 mask = hextoul(argv[1], NULL);
Marek Vasut713a8a22019-04-16 22:28:08 +0200196
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800197 switch (*argv[0]) {
198 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200199 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800200 break;
201 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200202 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800203 break;
204 default:
205 return CMD_RET_USAGE;
206 }
207
208 return 0;
209}
210
Marek Vasut713a8a22019-04-16 22:28:08 +0200211U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800212 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200213 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
214 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800215 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800216);
217
218#endif
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800219
220static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
221{
222 const void *blob = gd->fdt_blob;
223 struct fdt_resource r;
224 int node;
225 int ret;
226
227 node = fdt_node_offset_by_compatible(blob, -1, compat);
228 if (node < 0)
229 return node;
230
231 if (!fdtdec_get_is_enabled(blob, node))
232 return -ENODEV;
233
234 ret = fdt_get_resource(blob, node, "reg", 0, &r);
235 if (ret)
236 return ret;
237
238 *base = (phys_addr_t)r.start;
239
240 return 0;
241}
242
243void socfpga_get_managers_addr(void)
244{
245 int ret;
246
247 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
248 if (ret)
249 hang();
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800250
251 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
252 if (ret)
253 hang();
Ley Foon Tan26695912019-11-08 10:38:21 +0800254
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800255#ifdef CONFIG_TARGET_SOCFPGA_AGILEX
256 ret = socfpga_get_base_addr("intel,agilex-clkmgr",
257 &socfpga_clkmgr_base);
Siew Chin Limc16c7ec2021-08-10 11:26:31 +0800258#elif IS_ENABLED(CONFIG_TARGET_SOCFPGA_N5X)
259 ret = socfpga_get_base_addr("intel,n5x-clkmgr",
260 &socfpga_clkmgr_base);
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800261#else
Ley Foon Tan26695912019-11-08 10:38:21 +0800262 ret = socfpga_get_base_addr("altr,clk-mgr", &socfpga_clkmgr_base);
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800263#endif
Ley Foon Tan26695912019-11-08 10:38:21 +0800264 if (ret)
265 hang();
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800266}
267
268phys_addr_t socfpga_get_rstmgr_addr(void)
269{
270 return socfpga_rstmgr_base;
271}
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800272
273phys_addr_t socfpga_get_sysmgr_addr(void)
274{
275 return socfpga_sysmgr_base;
276}
Ley Foon Tan26695912019-11-08 10:38:21 +0800277
278phys_addr_t socfpga_get_clkmgr_addr(void)
279{
280 return socfpga_clkmgr_base;
281}