Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 2 | /* |
Ley Foon Tan | b149f2b | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 3 | * Copyright (C) 2012-2017 Altera Corporation <www.altera.com> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 8 | #include <asm/io.h> |
Dinh Nguyen | 8ed6661 | 2015-08-01 03:42:10 +0200 | [diff] [blame] | 9 | #include <errno.h> |
Marek Vasut | f3f8fe2 | 2015-07-25 19:33:56 +0200 | [diff] [blame] | 10 | #include <fdtdec.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 11 | #include <linux/libfdt.h> |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 12 | #include <altera.h> |
Pavel Machek | ce340e9 | 2014-07-14 14:14:17 +0200 | [diff] [blame] | 13 | #include <miiphy.h> |
| 14 | #include <netdev.h> |
Stefan Roese | 3bfb591 | 2014-12-19 13:49:10 +0100 | [diff] [blame] | 15 | #include <watchdog.h> |
Ley Foon Tan | b149f2b | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 16 | #include <asm/arch/misc.h> |
Pavel Machek | 56a00ab | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 17 | #include <asm/arch/reset_manager.h> |
Dinh Nguyen | 8ed6661 | 2015-08-01 03:42:10 +0200 | [diff] [blame] | 18 | #include <asm/arch/scan_manager.h> |
Pavel Machek | 57d75eb | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 19 | #include <asm/arch/system_manager.h> |
Marek Vasut | 56916e4 | 2014-09-15 03:58:22 +0200 | [diff] [blame] | 20 | #include <asm/arch/nic301.h> |
Pavel Machek | e918e33 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 21 | #include <asm/arch/scu.h> |
Marek Vasut | 56916e4 | 2014-09-15 03:58:22 +0200 | [diff] [blame] | 22 | #include <asm/pl310.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 23 | |
| 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 26 | phys_addr_t socfpga_rstmgr_base __section(".data"); |
Ley Foon Tan | 3d3a860 | 2019-11-08 10:38:20 +0800 | [diff] [blame^] | 27 | phys_addr_t socfpga_sysmgr_base __section(".data"); |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 28 | |
Ley Foon Tan | 6fa091d | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 29 | #ifdef CONFIG_SYS_L2_PL310 |
Ley Foon Tan | b149f2b | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 30 | static const struct pl310_regs *const pl310 = |
Marek Vasut | 56916e4 | 2014-09-15 03:58:22 +0200 | [diff] [blame] | 31 | (struct pl310_regs *)CONFIG_SYS_PL310_BASE; |
Ley Foon Tan | 6fa091d | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 32 | #endif |
Ley Foon Tan | b149f2b | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 33 | |
| 34 | struct 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 Machek | 57d75eb | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 44 | |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 45 | int dram_init(void) |
| 46 | { |
Siva Durga Prasad Paladugu | b3d55ea | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 47 | if (fdtdec_setup_mem_size_base() != 0) |
Marek Vasut | 1530317 | 2018-05-28 17:09:45 +0200 | [diff] [blame] | 48 | return -EINVAL; |
| 49 | |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 50 | return 0; |
| 51 | } |
Pavel Machek | 57d75eb | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 52 | |
Marek Vasut | d515794 | 2014-09-21 13:57:40 +0200 | [diff] [blame] | 53 | void enable_caches(void) |
| 54 | { |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 55 | #if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF) |
Marek Vasut | d515794 | 2014-09-21 13:57:40 +0200 | [diff] [blame] | 56 | icache_enable(); |
| 57 | #endif |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 58 | #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) |
Marek Vasut | d515794 | 2014-09-21 13:57:40 +0200 | [diff] [blame] | 59 | dcache_enable(); |
| 60 | #endif |
| 61 | } |
| 62 | |
Ley Foon Tan | 6fa091d | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 63 | #ifdef CONFIG_SYS_L2_PL310 |
Dinh Nguyen | e89ff70 | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 64 | void v7_outer_cache_enable(void) |
| 65 | { |
Dinh Nguyen | 86fbf9d | 2019-04-23 16:55:05 -0500 | [diff] [blame] | 66 | struct udevice *dev; |
Marek Vasut | 9f7b30d | 2015-12-20 04:00:09 +0100 | [diff] [blame] | 67 | |
Dinh Nguyen | 86fbf9d | 2019-04-23 16:55:05 -0500 | [diff] [blame] | 68 | if (uclass_get_device(UCLASS_CACHE, 0, &dev)) |
| 69 | pr_err("cache controller driver NOT found!\n"); |
Marek Vasut | 9f7b30d | 2015-12-20 04:00:09 +0100 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | void v7_outer_cache_disable(void) |
| 73 | { |
| 74 | /* Disable the L2 cache */ |
| 75 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
Dinh Nguyen | e89ff70 | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 76 | } |
Marek Vasut | b6ba490 | 2019-03-21 23:05:38 +0100 | [diff] [blame] | 77 | |
| 78 | void 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 Tan | 6fa091d | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 131 | #endif |
Dinh Nguyen | e89ff70 | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 132 | |
Chin Liang See | bff262c | 2014-06-10 02:23:45 -0500 | [diff] [blame] | 133 | #if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \ |
| 134 | defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE) |
| 135 | int overwrite_console(void) |
| 136 | { |
| 137 | return 0; |
| 138 | } |
| 139 | #endif |
| 140 | |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 141 | #ifdef CONFIG_FPGA |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 142 | /* add device descriptor to FPGA device table */ |
Ang, Chee Hong | ff14f16 | 2018-12-19 18:35:15 -0800 | [diff] [blame] | 143 | void socfpga_fpga_add(void *fpga_desc) |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 144 | { |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 145 | fpga_init(); |
Ang, Chee Hong | ff14f16 | 2018-12-19 18:35:15 -0800 | [diff] [blame] | 146 | fpga_add(fpga_altera, fpga_desc); |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 147 | } |
Pavel Machek | c721380 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 148 | #endif |
| 149 | |
Pavel Machek | 56a00ab | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 150 | int arch_cpu_init(void) |
| 151 | { |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 152 | socfpga_get_managers_addr(); |
| 153 | |
Stefan Roese | 3bfb591 | 2014-12-19 13:49:10 +0100 | [diff] [blame] | 154 | #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 Machek | 56a00ab | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 163 | /* |
| 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 Vasut | 75f6b5c | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 167 | * Toggle watchdog reset, so watchdog in not running state. |
Pavel Machek | 56a00ab | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 168 | */ |
Marek Vasut | 75f6b5c | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 169 | socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1); |
| 170 | socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0); |
Pavel Machek | 56a00ab | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 171 | #endif |
Stefan Roese | 3bfb591 | 2014-12-19 13:49:10 +0100 | [diff] [blame] | 172 | |
Pavel Machek | 56a00ab | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 173 | return 0; |
| 174 | } |
Marek Vasut | 3386c85 | 2018-04-23 22:49:31 +0200 | [diff] [blame] | 175 | |
Ley Foon Tan | 4cc6b58 | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 176 | #ifndef CONFIG_SPL_BUILD |
| 177 | static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 178 | { |
Marek Vasut | 713a8a2 | 2019-04-16 22:28:08 +0200 | [diff] [blame] | 179 | unsigned int mask = ~0; |
| 180 | |
| 181 | if (argc < 2 || argc > 3) |
Ley Foon Tan | 4cc6b58 | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 182 | return CMD_RET_USAGE; |
| 183 | |
| 184 | argv++; |
| 185 | |
Marek Vasut | 713a8a2 | 2019-04-16 22:28:08 +0200 | [diff] [blame] | 186 | if (argc == 3) |
| 187 | mask = simple_strtoul(argv[1], NULL, 16); |
| 188 | |
Ley Foon Tan | 4cc6b58 | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 189 | switch (*argv[0]) { |
| 190 | case 'e': /* Enable */ |
Marek Vasut | 713a8a2 | 2019-04-16 22:28:08 +0200 | [diff] [blame] | 191 | do_bridge_reset(1, mask); |
Ley Foon Tan | 4cc6b58 | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 192 | break; |
| 193 | case 'd': /* Disable */ |
Marek Vasut | 713a8a2 | 2019-04-16 22:28:08 +0200 | [diff] [blame] | 194 | do_bridge_reset(0, mask); |
Ley Foon Tan | 4cc6b58 | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 195 | break; |
| 196 | default: |
| 197 | return CMD_RET_USAGE; |
| 198 | } |
| 199 | |
| 200 | return 0; |
| 201 | } |
| 202 | |
Marek Vasut | 713a8a2 | 2019-04-16 22:28:08 +0200 | [diff] [blame] | 203 | U_BOOT_CMD(bridge, 3, 1, do_bridge, |
Ley Foon Tan | f9c7f79 | 2018-05-24 00:17:30 +0800 | [diff] [blame] | 204 | "SoCFPGA HPS FPGA bridge control", |
Marek Vasut | 713a8a2 | 2019-04-16 22:28:08 +0200 | [diff] [blame] | 205 | "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 Tan | f9c7f79 | 2018-05-24 00:17:30 +0800 | [diff] [blame] | 207 | "" |
Ley Foon Tan | 4cc6b58 | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 208 | ); |
| 209 | |
| 210 | #endif |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 211 | |
| 212 | static 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 | |
| 235 | void 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 Tan | 3d3a860 | 2019-11-08 10:38:20 +0800 | [diff] [blame^] | 242 | |
| 243 | ret = socfpga_get_base_addr("altr,sys-mgr", &socfpga_sysmgr_base); |
| 244 | if (ret) |
| 245 | hang(); |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | phys_addr_t socfpga_get_rstmgr_addr(void) |
| 249 | { |
| 250 | return socfpga_rstmgr_base; |
| 251 | } |
Ley Foon Tan | 3d3a860 | 2019-11-08 10:38:20 +0800 | [diff] [blame^] | 252 | |
| 253 | phys_addr_t socfpga_get_sysmgr_addr(void) |
| 254 | { |
| 255 | return socfpga_sysmgr_base; |
| 256 | } |