Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 2 | /* |
Ley Foon Tan | d1c559a | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 3 | * Copyright (C) 2012-2017 Altera Corporation <www.altera.com> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <asm/io.h> |
Dinh Nguyen | bd48c06 | 2015-08-01 03:42:10 +0200 | [diff] [blame] | 8 | #include <errno.h> |
Marek Vasut | 6ab00db | 2015-07-25 19:33:56 +0200 | [diff] [blame] | 9 | #include <fdtdec.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 10 | #include <linux/libfdt.h> |
Pavel Machek | 230fe9b | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 11 | #include <altera.h> |
Pavel Machek | 99b9710 | 2014-07-14 14:14:17 +0200 | [diff] [blame] | 12 | #include <miiphy.h> |
| 13 | #include <netdev.h> |
Stefan Roese | d0e932d | 2014-12-19 13:49:10 +0100 | [diff] [blame] | 14 | #include <watchdog.h> |
Ley Foon Tan | d1c559a | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 15 | #include <asm/arch/misc.h> |
Pavel Machek | de6da92 | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 16 | #include <asm/arch/reset_manager.h> |
Dinh Nguyen | bd48c06 | 2015-08-01 03:42:10 +0200 | [diff] [blame] | 17 | #include <asm/arch/scan_manager.h> |
Pavel Machek | 45d6e67 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 18 | #include <asm/arch/system_manager.h> |
Marek Vasut | 60d804c | 2014-09-15 03:58:22 +0200 | [diff] [blame] | 19 | #include <asm/arch/nic301.h> |
Pavel Machek | 13e81d4 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 20 | #include <asm/arch/scu.h> |
Marek Vasut | 60d804c | 2014-09-15 03:58:22 +0200 | [diff] [blame] | 21 | #include <asm/pl310.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 22 | |
| 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Ley Foon Tan | 5fb033a | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 25 | #ifdef CONFIG_SYS_L2_PL310 |
Ley Foon Tan | d1c559a | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 26 | static const struct pl310_regs *const pl310 = |
Marek Vasut | 60d804c | 2014-09-15 03:58:22 +0200 | [diff] [blame] | 27 | (struct pl310_regs *)CONFIG_SYS_PL310_BASE; |
Ley Foon Tan | 5fb033a | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 28 | #endif |
Ley Foon Tan | d1c559a | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 29 | |
| 30 | struct bsel bsel_str[] = { |
| 31 | { "rsvd", "Reserved", }, |
| 32 | { "fpga", "FPGA (HPS2FPGA Bridge)", }, |
| 33 | { "nand", "NAND Flash (1.8V)", }, |
| 34 | { "nand", "NAND Flash (3.0V)", }, |
| 35 | { "sd", "SD/MMC External Transceiver (1.8V)", }, |
| 36 | { "sd", "SD/MMC Internal Transceiver (3.0V)", }, |
| 37 | { "qspi", "QSPI Flash (1.8V)", }, |
| 38 | { "qspi", "QSPI Flash (3.0V)", }, |
| 39 | }; |
Pavel Machek | 45d6e67 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 40 | |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 41 | int dram_init(void) |
| 42 | { |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 43 | if (fdtdec_setup_mem_size_base() != 0) |
Marek Vasut | 297b653 | 2018-05-28 17:09:45 +0200 | [diff] [blame] | 44 | return -EINVAL; |
| 45 | |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 46 | return 0; |
| 47 | } |
Chin Liang See | 23f23f2 | 2014-06-10 02:23:45 -0500 | [diff] [blame] | 48 | |
Marek Vasut | 4ab333b | 2014-09-21 13:57:40 +0200 | [diff] [blame] | 49 | void enable_caches(void) |
| 50 | { |
| 51 | #ifndef CONFIG_SYS_ICACHE_OFF |
| 52 | icache_enable(); |
| 53 | #endif |
| 54 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 55 | dcache_enable(); |
| 56 | #endif |
| 57 | } |
| 58 | |
Ley Foon Tan | 5fb033a | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 59 | #ifdef CONFIG_SYS_L2_PL310 |
Dinh Nguyen | 8d8e13e | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 60 | void v7_outer_cache_enable(void) |
| 61 | { |
Marek Vasut | 0780697 | 2015-12-20 04:00:09 +0100 | [diff] [blame] | 62 | /* Disable the L2 cache */ |
| 63 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
Dinh Nguyen | 8d8e13e | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 64 | |
| 65 | /* enable BRESP, instruction and data prefetch, full line of zeroes */ |
| 66 | setbits_le32(&pl310->pl310_aux_ctrl, |
| 67 | L310_AUX_CTRL_DATA_PREFETCH_MASK | |
| 68 | L310_AUX_CTRL_INST_PREFETCH_MASK | |
| 69 | L310_SHARED_ATT_OVERRIDE_ENABLE); |
Marek Vasut | 0780697 | 2015-12-20 04:00:09 +0100 | [diff] [blame] | 70 | |
| 71 | /* Enable the L2 cache */ |
| 72 | setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
| 73 | } |
| 74 | |
| 75 | void v7_outer_cache_disable(void) |
| 76 | { |
| 77 | /* Disable the L2 cache */ |
| 78 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
Dinh Nguyen | 8d8e13e | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 79 | } |
Ley Foon Tan | 5fb033a | 2018-05-18 22:05:25 +0800 | [diff] [blame] | 80 | #endif |
Dinh Nguyen | 8d8e13e | 2015-10-15 10:13:36 -0500 | [diff] [blame] | 81 | |
Chin Liang See | 23f23f2 | 2014-06-10 02:23:45 -0500 | [diff] [blame] | 82 | #if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \ |
| 83 | defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE) |
| 84 | int overwrite_console(void) |
| 85 | { |
| 86 | return 0; |
| 87 | } |
| 88 | #endif |
| 89 | |
Pavel Machek | 230fe9b | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 90 | #ifdef CONFIG_FPGA |
| 91 | /* |
| 92 | * FPGA programming support for SoC FPGA Cyclone V |
| 93 | */ |
| 94 | static Altera_desc altera_fpga[] = { |
| 95 | { |
| 96 | /* Family */ |
| 97 | Altera_SoCFPGA, |
| 98 | /* Interface type */ |
| 99 | fast_passive_parallel, |
| 100 | /* No limitation as additional data will be ignored */ |
| 101 | -1, |
| 102 | /* No device function table */ |
| 103 | NULL, |
| 104 | /* Base interface address specified in driver */ |
| 105 | NULL, |
| 106 | /* No cookie implementation */ |
| 107 | 0 |
| 108 | }, |
| 109 | }; |
| 110 | |
| 111 | /* add device descriptor to FPGA device table */ |
Ley Foon Tan | d1c559a | 2017-04-26 02:44:36 +0800 | [diff] [blame] | 112 | void socfpga_fpga_add(void) |
Pavel Machek | 230fe9b | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 113 | { |
| 114 | int i; |
| 115 | fpga_init(); |
| 116 | for (i = 0; i < ARRAY_SIZE(altera_fpga); i++) |
| 117 | fpga_add(fpga_altera, &altera_fpga[i]); |
| 118 | } |
Pavel Machek | 230fe9b | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 119 | #endif |
| 120 | |
Pavel Machek | de6da92 | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 121 | int arch_cpu_init(void) |
| 122 | { |
Stefan Roese | d0e932d | 2014-12-19 13:49:10 +0100 | [diff] [blame] | 123 | #ifdef CONFIG_HW_WATCHDOG |
| 124 | /* |
| 125 | * In case the watchdog is enabled, make sure to (re-)configure it |
| 126 | * so that the defined timeout is valid. Otherwise the SPL (Perloader) |
| 127 | * timeout value is still active which might too short for Linux |
| 128 | * booting. |
| 129 | */ |
| 130 | hw_watchdog_init(); |
| 131 | #else |
Pavel Machek | de6da92 | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 132 | /* |
| 133 | * If the HW watchdog is NOT enabled, make sure it is not running, |
| 134 | * for example because it was enabled in the preloader. This might |
| 135 | * trigger a watchdog-triggered reboot of Linux kernel later. |
Marek Vasut | a71df7a | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 136 | * Toggle watchdog reset, so watchdog in not running state. |
Pavel Machek | de6da92 | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 137 | */ |
Marek Vasut | a71df7a | 2015-07-09 02:51:56 +0200 | [diff] [blame] | 138 | socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1); |
| 139 | socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0); |
Pavel Machek | de6da92 | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 140 | #endif |
Stefan Roese | d0e932d | 2014-12-19 13:49:10 +0100 | [diff] [blame] | 141 | |
Pavel Machek | de6da92 | 2014-09-09 14:03:28 +0200 | [diff] [blame] | 142 | return 0; |
| 143 | } |
Marek Vasut | 32f9975 | 2018-04-23 22:49:31 +0200 | [diff] [blame] | 144 | |
| 145 | #ifdef CONFIG_ETH_DESIGNWARE |
| 146 | static int dwmac_phymode_to_modereg(const char *phymode, u32 *modereg) |
| 147 | { |
| 148 | if (!phymode) |
| 149 | return -EINVAL; |
| 150 | |
| 151 | if (!strcmp(phymode, "mii") || !strcmp(phymode, "gmii")) { |
| 152 | *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII; |
| 153 | return 0; |
| 154 | } |
| 155 | |
| 156 | if (!strcmp(phymode, "rgmii")) { |
| 157 | *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII; |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | if (!strcmp(phymode, "rmii")) { |
| 162 | *modereg = SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RMII; |
| 163 | return 0; |
| 164 | } |
| 165 | |
| 166 | return -EINVAL; |
| 167 | } |
| 168 | |
| 169 | int socfpga_eth_reset_common(void (*resetfn)(const u8 of_reset_id, |
| 170 | const u8 phymode)) |
| 171 | { |
| 172 | const void *fdt = gd->fdt_blob; |
| 173 | struct fdtdec_phandle_args args; |
| 174 | const char *phy_mode; |
| 175 | u32 phy_modereg; |
| 176 | int nodes[2]; /* Max. two GMACs */ |
| 177 | int ret, count; |
| 178 | int i, node; |
| 179 | |
| 180 | count = fdtdec_find_aliases_for_id(fdt, "ethernet", |
| 181 | COMPAT_ALTERA_SOCFPGA_DWMAC, |
| 182 | nodes, ARRAY_SIZE(nodes)); |
| 183 | for (i = 0; i < count; i++) { |
| 184 | node = nodes[i]; |
| 185 | if (node <= 0) |
| 186 | continue; |
| 187 | |
| 188 | ret = fdtdec_parse_phandle_with_args(fdt, node, "resets", |
| 189 | "#reset-cells", 1, 0, |
| 190 | &args); |
| 191 | if (ret || (args.args_count != 1)) { |
| 192 | debug("GMAC%i: Failed to parse DT 'resets'!\n", i); |
| 193 | continue; |
| 194 | } |
| 195 | |
| 196 | phy_mode = fdt_getprop(fdt, node, "phy-mode", NULL); |
| 197 | ret = dwmac_phymode_to_modereg(phy_mode, &phy_modereg); |
| 198 | if (ret) { |
| 199 | debug("GMAC%i: Failed to parse DT 'phy-mode'!\n", i); |
| 200 | continue; |
| 201 | } |
| 202 | |
| 203 | resetfn(args.args[0], phy_modereg); |
| 204 | } |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | #endif |
Ley Foon Tan | 10f9e4b | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 209 | |
| 210 | #ifndef CONFIG_SPL_BUILD |
| 211 | static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 212 | { |
| 213 | if (argc != 2) |
| 214 | return CMD_RET_USAGE; |
| 215 | |
| 216 | argv++; |
| 217 | |
| 218 | switch (*argv[0]) { |
| 219 | case 'e': /* Enable */ |
| 220 | do_bridge_reset(1); |
| 221 | break; |
| 222 | case 'd': /* Disable */ |
| 223 | do_bridge_reset(0); |
| 224 | break; |
| 225 | default: |
| 226 | return CMD_RET_USAGE; |
| 227 | } |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Ley Foon Tan | 0bc28b7 | 2018-05-24 00:17:30 +0800 | [diff] [blame] | 232 | U_BOOT_CMD(bridge, 2, 1, do_bridge, |
| 233 | "SoCFPGA HPS FPGA bridge control", |
| 234 | "enable - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n" |
| 235 | "bridge disable - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n" |
| 236 | "" |
Ley Foon Tan | 10f9e4b | 2018-05-24 00:17:23 +0800 | [diff] [blame] | 237 | ); |
| 238 | |
| 239 | #endif |