blob: 1ef02a13bfb74ae0cd71f8e682e6716a74ee8d58 [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>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00008#include <asm/io.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +02009#include <errno.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +020010#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020012#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020013#include <miiphy.h>
14#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010015#include <watchdog.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080016#include <asm/arch/misc.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020017#include <asm/arch/reset_manager.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020018#include <asm/arch/scan_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020019#include <asm/arch/system_manager.h>
Marek Vasut56916e42014-09-15 03:58:22 +020020#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020021#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020022#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000023
24DECLARE_GLOBAL_DATA_PTR;
25
Ley Foon Tanfed4c952019-11-08 10:38:19 +080026phys_addr_t socfpga_rstmgr_base __section(".data");
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080027phys_addr_t socfpga_sysmgr_base __section(".data");
Ley Foon Tanfed4c952019-11-08 10:38:19 +080028
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080029#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080030static const struct pl310_regs *const pl310 =
Marek Vasut56916e42014-09-15 03:58:22 +020031 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080032#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080033
34struct bsel bsel_str[] = {
35 { "rsvd", "Reserved", },
36 { "fpga", "FPGA (HPS2FPGA Bridge)", },
37 { "nand", "NAND Flash (1.8V)", },
38 { "nand", "NAND Flash (3.0V)", },
39 { "sd", "SD/MMC External Transceiver (1.8V)", },
40 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
41 { "qspi", "QSPI Flash (1.8V)", },
42 { "qspi", "QSPI Flash (3.0V)", },
43};
Pavel Machek57d75eb2014-09-08 14:08:45 +020044
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000045int dram_init(void)
46{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053047 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020048 return -EINVAL;
49
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000050 return 0;
51}
Pavel Machek57d75eb2014-09-08 14:08:45 +020052
Marek Vasutd5157942014-09-21 13:57:40 +020053void enable_caches(void)
54{
Trevor Woerner43ec7e02019-05-03 09:41:00 -040055#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020056 icache_enable();
57#endif
Trevor Woerner43ec7e02019-05-03 09:41:00 -040058#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020059 dcache_enable();
60#endif
61}
62
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080063#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050064void v7_outer_cache_enable(void)
65{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050066 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010067
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050068 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
69 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010070}
71
72void v7_outer_cache_disable(void)
73{
74 /* Disable the L2 cache */
75 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050076}
Marek Vasutb6ba4902019-03-21 23:05:38 +010077
78void socfpga_pl310_clear(void)
79{
80 u32 mask = 0xff, ena = 0;
81
82 icache_enable();
83
84 /* Disable the L2 cache */
85 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
86
87 writel(0x0, &pl310->pl310_tag_latency_ctrl);
88 writel(0x10, &pl310->pl310_data_latency_ctrl);
89
90 /* enable BRESP, instruction and data prefetch, full line of zeroes */
91 setbits_le32(&pl310->pl310_aux_ctrl,
92 L310_AUX_CTRL_DATA_PREFETCH_MASK |
93 L310_AUX_CTRL_INST_PREFETCH_MASK |
94 L310_SHARED_ATT_OVERRIDE_ENABLE);
95
96 /* Enable the L2 cache */
97 ena = readl(&pl310->pl310_ctrl);
98 ena |= L2X0_CTRL_EN;
99
100 /*
101 * Invalidate the PL310 L2 cache. Keep the invalidation code
102 * entirely in L1 I-cache to avoid any bus traffic through
103 * the L2.
104 */
105 asm volatile(
106 ".align 5 \n"
107 " b 3f \n"
108 "1: str %1, [%4] \n"
109 " dsb \n"
110 " isb \n"
111 " str %0, [%2] \n"
112 " dsb \n"
113 " isb \n"
114 "2: ldr %0, [%2] \n"
115 " cmp %0, #0 \n"
116 " bne 2b \n"
117 " str %0, [%3] \n"
118 " dsb \n"
119 " isb \n"
120 " b 4f \n"
121 "3: b 1b \n"
122 "4: nop \n"
123 : "+r"(mask), "+r"(ena)
124 : "r"(&pl310->pl310_inv_way),
125 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
126 : "memory", "cc");
127
128 /* Disable the L2 cache */
129 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
130}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +0800131#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -0500132
Chin Liang Seebff262c2014-06-10 02:23:45 -0500133#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
134defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
135int overwrite_console(void)
136{
137 return 0;
138}
139#endif
140
Pavel Machekc7213802014-09-08 14:08:45 +0200141#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +0200142/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800143void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +0200144{
Pavel Machekc7213802014-09-08 14:08:45 +0200145 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800146 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +0200147}
Pavel Machekc7213802014-09-08 14:08:45 +0200148#endif
149
Pavel Machek56a00ab2014-09-09 14:03:28 +0200150int arch_cpu_init(void)
151{
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800152 socfpga_get_managers_addr();
153
Stefan Roese3bfb5912014-12-19 13:49:10 +0100154#ifdef CONFIG_HW_WATCHDOG
155 /*
156 * In case the watchdog is enabled, make sure to (re-)configure it
157 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
158 * timeout value is still active which might too short for Linux
159 * booting.
160 */
161 hw_watchdog_init();
162#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200163 /*
164 * If the HW watchdog is NOT enabled, make sure it is not running,
165 * for example because it was enabled in the preloader. This might
166 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200167 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200168 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200169 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
170 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200171#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100172
Pavel Machek56a00ab2014-09-09 14:03:28 +0200173 return 0;
174}
Marek Vasut3386c852018-04-23 22:49:31 +0200175
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800176#ifndef CONFIG_SPL_BUILD
177static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
178{
Marek Vasut713a8a22019-04-16 22:28:08 +0200179 unsigned int mask = ~0;
180
181 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800182 return CMD_RET_USAGE;
183
184 argv++;
185
Marek Vasut713a8a22019-04-16 22:28:08 +0200186 if (argc == 3)
187 mask = simple_strtoul(argv[1], NULL, 16);
188
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800189 switch (*argv[0]) {
190 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200191 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800192 break;
193 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200194 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800195 break;
196 default:
197 return CMD_RET_USAGE;
198 }
199
200 return 0;
201}
202
Marek Vasut713a8a22019-04-16 22:28:08 +0200203U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800204 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200205 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
206 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800207 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800208);
209
210#endif
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800211
212static int socfpga_get_base_addr(const char *compat, phys_addr_t *base)
213{
214 const void *blob = gd->fdt_blob;
215 struct fdt_resource r;
216 int node;
217 int ret;
218
219 node = fdt_node_offset_by_compatible(blob, -1, compat);
220 if (node < 0)
221 return node;
222
223 if (!fdtdec_get_is_enabled(blob, node))
224 return -ENODEV;
225
226 ret = fdt_get_resource(blob, node, "reg", 0, &r);
227 if (ret)
228 return ret;
229
230 *base = (phys_addr_t)r.start;
231
232 return 0;
233}
234
235void socfpga_get_managers_addr(void)
236{
237 int ret;
238
239 ret = socfpga_get_base_addr("altr,rst-mgr", &socfpga_rstmgr_base);
240 if (ret)
241 hang();
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800242
243 ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base);
244 if (ret)
245 hang();
Ley Foon Tanfed4c952019-11-08 10:38:19 +0800246}
247
248phys_addr_t socfpga_get_rstmgr_addr(void)
249{
250 return socfpga_rstmgr_base;
251}
Ley Foon Tan3d3a8602019-11-08 10:38:20 +0800252
253phys_addr_t socfpga_get_sysmgr_addr(void)
254{
255 return socfpga_sysmgr_base;
256}