blob: 904b3d030ac71b7b4b2bef671410122e103604a5 [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 Tan6fa091d2018-05-18 22:05:25 +080026#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080027static const struct pl310_regs *const pl310 =
Marek Vasut56916e42014-09-15 03:58:22 +020028 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080029#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080030
31struct bsel bsel_str[] = {
32 { "rsvd", "Reserved", },
33 { "fpga", "FPGA (HPS2FPGA Bridge)", },
34 { "nand", "NAND Flash (1.8V)", },
35 { "nand", "NAND Flash (3.0V)", },
36 { "sd", "SD/MMC External Transceiver (1.8V)", },
37 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
38 { "qspi", "QSPI Flash (1.8V)", },
39 { "qspi", "QSPI Flash (3.0V)", },
40};
Pavel Machek57d75eb2014-09-08 14:08:45 +020041
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000042int dram_init(void)
43{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053044 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020045 return -EINVAL;
46
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000047 return 0;
48}
Pavel Machek57d75eb2014-09-08 14:08:45 +020049
Marek Vasutd5157942014-09-21 13:57:40 +020050void enable_caches(void)
51{
Trevor Woerner43ec7e02019-05-03 09:41:00 -040052#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020053 icache_enable();
54#endif
Trevor Woerner43ec7e02019-05-03 09:41:00 -040055#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Marek Vasutd5157942014-09-21 13:57:40 +020056 dcache_enable();
57#endif
58}
59
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080060#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050061void v7_outer_cache_enable(void)
62{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050063 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010064
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050065 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
66 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010067}
68
69void v7_outer_cache_disable(void)
70{
71 /* Disable the L2 cache */
72 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050073}
Marek Vasutb6ba4902019-03-21 23:05:38 +010074
75void socfpga_pl310_clear(void)
76{
77 u32 mask = 0xff, ena = 0;
78
79 icache_enable();
80
81 /* Disable the L2 cache */
82 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
83
84 writel(0x0, &pl310->pl310_tag_latency_ctrl);
85 writel(0x10, &pl310->pl310_data_latency_ctrl);
86
87 /* enable BRESP, instruction and data prefetch, full line of zeroes */
88 setbits_le32(&pl310->pl310_aux_ctrl,
89 L310_AUX_CTRL_DATA_PREFETCH_MASK |
90 L310_AUX_CTRL_INST_PREFETCH_MASK |
91 L310_SHARED_ATT_OVERRIDE_ENABLE);
92
93 /* Enable the L2 cache */
94 ena = readl(&pl310->pl310_ctrl);
95 ena |= L2X0_CTRL_EN;
96
97 /*
98 * Invalidate the PL310 L2 cache. Keep the invalidation code
99 * entirely in L1 I-cache to avoid any bus traffic through
100 * the L2.
101 */
102 asm volatile(
103 ".align 5 \n"
104 " b 3f \n"
105 "1: str %1, [%4] \n"
106 " dsb \n"
107 " isb \n"
108 " str %0, [%2] \n"
109 " dsb \n"
110 " isb \n"
111 "2: ldr %0, [%2] \n"
112 " cmp %0, #0 \n"
113 " bne 2b \n"
114 " str %0, [%3] \n"
115 " dsb \n"
116 " isb \n"
117 " b 4f \n"
118 "3: b 1b \n"
119 "4: nop \n"
120 : "+r"(mask), "+r"(ena)
121 : "r"(&pl310->pl310_inv_way),
122 "r"(&pl310->pl310_cache_sync), "r"(&pl310->pl310_ctrl)
123 : "memory", "cc");
124
125 /* Disable the L2 cache */
126 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
127}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +0800128#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -0500129
Chin Liang Seebff262c2014-06-10 02:23:45 -0500130#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
131defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
132int overwrite_console(void)
133{
134 return 0;
135}
136#endif
137
Pavel Machekc7213802014-09-08 14:08:45 +0200138#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +0200139/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800140void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +0200141{
Pavel Machekc7213802014-09-08 14:08:45 +0200142 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -0800143 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +0200144}
Pavel Machekc7213802014-09-08 14:08:45 +0200145#endif
146
Pavel Machek56a00ab2014-09-09 14:03:28 +0200147int arch_cpu_init(void)
148{
Stefan Roese3bfb5912014-12-19 13:49:10 +0100149#ifdef CONFIG_HW_WATCHDOG
150 /*
151 * In case the watchdog is enabled, make sure to (re-)configure it
152 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
153 * timeout value is still active which might too short for Linux
154 * booting.
155 */
156 hw_watchdog_init();
157#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200158 /*
159 * If the HW watchdog is NOT enabled, make sure it is not running,
160 * for example because it was enabled in the preloader. This might
161 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200162 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200163 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200164 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
165 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200166#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100167
Pavel Machek56a00ab2014-09-09 14:03:28 +0200168 return 0;
169}
Marek Vasut3386c852018-04-23 22:49:31 +0200170
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800171#ifndef CONFIG_SPL_BUILD
172static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
173{
Marek Vasut713a8a22019-04-16 22:28:08 +0200174 unsigned int mask = ~0;
175
176 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800177 return CMD_RET_USAGE;
178
179 argv++;
180
Marek Vasut713a8a22019-04-16 22:28:08 +0200181 if (argc == 3)
182 mask = simple_strtoul(argv[1], NULL, 16);
183
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800184 switch (*argv[0]) {
185 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200186 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800187 break;
188 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200189 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800190 break;
191 default:
192 return CMD_RET_USAGE;
193 }
194
195 return 0;
196}
197
Marek Vasut713a8a22019-04-16 22:28:08 +0200198U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800199 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200200 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
201 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800202 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800203);
204
205#endif