blob: 557305c70367a5ea8bb7c702c0a07ac8a5fad1ca [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>
Simon Glass97589732020-05-10 11:40:02 -060010#include <init.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000011#include <asm/io.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020012#include <errno.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +020013#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020015#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020016#include <miiphy.h>
17#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010018#include <watchdog.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080019#include <asm/arch/misc.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020020#include <asm/arch/reset_manager.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020021#include <asm/arch/scan_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020022#include <asm/arch/system_manager.h>
Marek Vasut56916e42014-09-15 03:58:22 +020023#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020024#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020025#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000026
27DECLARE_GLOBAL_DATA_PTR;
28
Ley Foon Tan26695912019-11-08 10:38:21 +080029phys_addr_t socfpga_clkmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080030phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080031phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080032
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080033#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080034static const struct pl310_regs *const pl310 =
Marek Vasut56916e42014-09-15 03:58:22 +020035 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080036#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080037
38struct bsel bsel_str[] = {
39 { "rsvd", "Reserved", },
40 { "fpga", "FPGA (HPS2FPGA Bridge)", },
41 { "nand", "NAND Flash (1.8V)", },
42 { "nand", "NAND Flash (3.0V)", },
43 { "sd", "SD/MMC External Transceiver (1.8V)", },
44 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
45 { "qspi", "QSPI Flash (1.8V)", },
46 { "qspi", "QSPI Flash (3.0V)", },
47};
Pavel Machek57d75eb2014-09-08 14:08:45 +020048
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000049int dram_init(void)
50{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053051 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020052 return -EINVAL;
53
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000054 return 0;
55}
Pavel Machek57d75eb2014-09-08 14:08:45 +020056
Marek Vasutd5157942014-09-21 13:57:40 +020057void enable_caches(void)
58{
Trevor Woerner43ec7e02019-05-03 09:41:00 -040059#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020060 icache_enable();
61#endif
Trevor Woerner43ec7e02019-05-03 09:41:00 -040062#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020063 dcache_enable();
64#endif
65}
66
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080067#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050068void v7_outer_cache_enable(void)
69{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050070 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010071
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050072 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
73 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010074}
75
76void v7_outer_cache_disable(void)
77{
78 /* Disable the L2 cache */
79 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050080}
Marek Vasutb6ba4902019-03-21 23:05:38 +010081
82void socfpga_pl310_clear(void)
83{
84 u32 mask = 0xff, ena = 0;
85
86 icache_enable();
87
88 /* Disable the L2 cache */
89 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
90
91 writel(0x0, &pl310->pl310_tag_latency_ctrl);
92 writel(0x10, &pl310->pl310_data_latency_ctrl);
93
94 /* enable BRESP, instruction and data prefetch, full line of zeroes */
95 setbits_le32(&pl310->pl310_aux_ctrl,
96 L310_AUX_CTRL_DATA_PREFETCH_MASK |
97 L310_AUX_CTRL_INST_PREFETCH_MASK |
98 L310_SHARED_ATT_OVERRIDE_ENABLE);
99
100 /* Enable the L2 cache */
101 ena = readl(&pl310->pl310_ctrl);
102 ena |= L2X0_CTRL_EN;
103
104 /*
105 * Invalidate the PL310 L2 cache. Keep the invalidation code
106 * entirely in L1 I-cache to avoid any bus traffic through
107 * the L2.
108 */
109 asm volatile(
110 ".align 5 \n"
111 " b 3f \n"
112 "1: str %1, [%4] \n"
113 " dsb \n"
114 " isb \n"
115 " str %0, [%2] \n"
116 " dsb \n"
117 " isb \n"
118 "2: ldr %0, [%2] \n"
119 " cmp %0, #0 \n"
120 " bne 2b \n"
121 " str %0, [%3] \n"
122 " dsb \n"
123 " isb \n"
124 " b 4f \n"
125 "3: b 1b \n"
126 "4: nop \n"
127 : "+r"(mask), "+r"(ena)
128 : "r"(&pl310->pl310_inv_way),
129 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
130 : "memory", "cc");
131
132 /* Disable the L2 cache */
133 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
134}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +0800135#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -0500136
Chin Liang Seebff262c2014-06-10 02:23:45 -0500137#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
138defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
139int overwrite_console(void)
140{
141 return 0;
142}
143#endif
144
Pavel Machekc7213802014-09-08 14:08:45 +0200145#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +0200146/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800147void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +0200148{
Pavel Machekc7213802014-09-08 14:08:45 +0200149 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800150 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +0200151}
Pavel Machekc7213802014-09-08 14:08:45 +0200152#endif
153
Pavel Machek56a00ab2014-09-09 14:03:28 +0200154int arch_cpu_init(void)
155{
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800156 socfpga_get_managers_addr();
157
Stefan Roese3bfb5912014-12-19 13:49:10 +0100158#ifdef CONFIG_HW_WATCHDOG
159 /*
160 * In case the watchdog is enabled, make sure to (re-)configure it
161 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
162 * timeout value is still active which might too short for Linux
163 * booting.
164 */
165 hw_watchdog_init();
166#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200167 /*
168 * If the HW watchdog is NOT enabled, make sure it is not running,
169 * for example because it was enabled in the preloader. This might
170 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200171 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200172 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200173 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
174 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200175#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100176
Pavel Machek56a00ab2014-09-09 14:03:28 +0200177 return 0;
178}
Marek Vasut3386c852018-04-23 22:49:31 +0200179
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800180#ifndef CONFIG_SPL_BUILD
181static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
182{
Marek Vasut713a8a22019-04-16 22:28:08 +0200183 unsigned int mask = ~0;
184
185 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800186 return CMD_RET_USAGE;
187
188 argv++;
189
Marek Vasut713a8a22019-04-16 22:28:08 +0200190 if (argc == 3)
191 mask = simple_strtoul(argv[1], NULL, 16);
192
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800193 switch (*argv[0]) {
194 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200195 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800196 break;
197 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200198 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800199 break;
200 default:
201 return CMD_RET_USAGE;
202 }
203
204 return 0;
205}
206
Marek Vasut713a8a22019-04-16 22:28:08 +0200207U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800208 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200209 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
210 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800211 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800212);
213
214#endif
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800215
216static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
217{
218 const void *blob = gd->fdt_blob;
219 struct fdt_resource r;
220 int node;
221 int ret;
222
223 node = fdt_node_offset_by_compatible(blob, -1, compat);
224 if (node < 0)
225 return node;
226
227 if (!fdtdec_get_is_enabled(blob, node))
228 return -ENODEV;
229
230 ret = fdt_get_resource(blob, node, "reg", 0, &r);
231 if (ret)
232 return ret;
233
234 *base = (phys_addr_t)r.start;
235
236 return 0;
237}
238
239void socfpga_get_managers_addr(void)
240{
241 int ret;
242
243 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
244 if (ret)
245 hang();
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800246
247 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
248 if (ret)
249 hang();
Ley Foon Tan26695912019-11-08 10:38:21 +0800250
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800251#ifdef CONFIG_TARGET_SOCFPGA_AGILEX
252 ret = socfpga_get_base_addr("intel,agilex-clkmgr",
253 &socfpga_clkmgr_base);
254#else
Ley Foon Tan26695912019-11-08 10:38:21 +0800255 ret = socfpga_get_base_addr("altr,clk-mgr", &socfpga_clkmgr_base);
Ley Foon Tanef5458f2019-11-27 15:55:22 +0800256#endif
Ley Foon Tan26695912019-11-08 10:38:21 +0800257 if (ret)
258 hang();
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800259}
260
261phys_addr_t socfpga_get_rstmgr_addr(void)
262{
263 return socfpga_rstmgr_base;
264}
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800265
266phys_addr_t socfpga_get_sysmgr_addr(void)
267{
268 return socfpga_sysmgr_base;
269}
Ley Foon Tan26695912019-11-08 10:38:21 +0800270
271phys_addr_t socfpga_get_clkmgr_addr(void)
272{
273 return socfpga_clkmgr_base;
274}