Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 - 2015 Xilinx, Inc. |
| 4 | * Michal Simek <michal.simek@xilinx.com> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Michal Simek | 679b994 | 2015-09-30 17:26:55 +0200 | [diff] [blame] | 8 | #include <sata.h> |
Michal Simek | 6fe6f13 | 2015-07-23 13:27:40 +0200 | [diff] [blame] | 9 | #include <ahci.h> |
| 10 | #include <scsi.h> |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 11 | #include <malloc.h> |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 12 | #include <wdt.h> |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 13 | #include <asm/arch/clk.h> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 14 | #include <asm/arch/hardware.h> |
| 15 | #include <asm/arch/sys_proto.h> |
Michal Simek | 2ad341e | 2018-01-10 09:36:09 +0100 | [diff] [blame] | 16 | #include <asm/arch/psu_init_gpl.h> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 17 | #include <asm/io.h> |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 18 | #include <dm/device.h> |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 19 | #include <dm/uclass.h> |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 20 | #include <usb.h> |
| 21 | #include <dwc3-uboot.h> |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 22 | #include <zynqmppl.h> |
Michal Simek | 6919b4b | 2016-04-22 11:48:49 +0200 | [diff] [blame] | 23 | #include <i2c.h> |
Michal Simek | 9feff38 | 2016-09-01 11:16:40 +0200 | [diff] [blame] | 24 | #include <g_dnl.h> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 28 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT) |
| 29 | static struct udevice *watchdog_dev; |
| 30 | #endif |
| 31 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 32 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \ |
| 33 | !defined(CONFIG_SPL_BUILD) |
| 34 | static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC; |
| 35 | |
| 36 | static const struct { |
Michal Simek | 8ebdf9e | 2017-11-06 12:55:59 +0100 | [diff] [blame] | 37 | u32 id; |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 38 | u32 ver; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 39 | char *name; |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 40 | bool evexists; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 41 | } zynqmp_devices[] = { |
| 42 | { |
| 43 | .id = 0x10, |
| 44 | .name = "3eg", |
| 45 | }, |
| 46 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 47 | .id = 0x10, |
| 48 | .ver = 0x2c, |
| 49 | .name = "3cg", |
| 50 | }, |
| 51 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 52 | .id = 0x11, |
| 53 | .name = "2eg", |
| 54 | }, |
| 55 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 56 | .id = 0x11, |
| 57 | .ver = 0x2c, |
| 58 | .name = "2cg", |
| 59 | }, |
| 60 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 61 | .id = 0x20, |
| 62 | .name = "5ev", |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 63 | .evexists = 1, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 64 | }, |
| 65 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 66 | .id = 0x20, |
| 67 | .ver = 0x100, |
| 68 | .name = "5eg", |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 69 | .evexists = 1, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 70 | }, |
| 71 | { |
| 72 | .id = 0x20, |
| 73 | .ver = 0x12c, |
| 74 | .name = "5cg", |
| 75 | }, |
| 76 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 77 | .id = 0x21, |
| 78 | .name = "4ev", |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 79 | .evexists = 1, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 80 | }, |
| 81 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 82 | .id = 0x21, |
| 83 | .ver = 0x100, |
| 84 | .name = "4eg", |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 85 | .evexists = 1, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 86 | }, |
| 87 | { |
| 88 | .id = 0x21, |
| 89 | .ver = 0x12c, |
| 90 | .name = "4cg", |
| 91 | }, |
| 92 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 93 | .id = 0x30, |
| 94 | .name = "7ev", |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 95 | .evexists = 1, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 96 | }, |
| 97 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 98 | .id = 0x30, |
| 99 | .ver = 0x100, |
| 100 | .name = "7eg", |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 101 | .evexists = 1, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 102 | }, |
| 103 | { |
| 104 | .id = 0x30, |
| 105 | .ver = 0x12c, |
| 106 | .name = "7cg", |
| 107 | }, |
| 108 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 109 | .id = 0x38, |
| 110 | .name = "9eg", |
| 111 | }, |
| 112 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 113 | .id = 0x38, |
| 114 | .ver = 0x2c, |
| 115 | .name = "9cg", |
| 116 | }, |
| 117 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 118 | .id = 0x39, |
| 119 | .name = "6eg", |
| 120 | }, |
| 121 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 122 | .id = 0x39, |
| 123 | .ver = 0x2c, |
| 124 | .name = "6cg", |
| 125 | }, |
| 126 | { |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 127 | .id = 0x40, |
| 128 | .name = "11eg", |
| 129 | }, |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 130 | { /* For testing purpose only */ |
| 131 | .id = 0x50, |
| 132 | .ver = 0x2c, |
| 133 | .name = "15cg", |
| 134 | }, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 135 | { |
| 136 | .id = 0x50, |
| 137 | .name = "15eg", |
| 138 | }, |
| 139 | { |
| 140 | .id = 0x58, |
| 141 | .name = "19eg", |
| 142 | }, |
| 143 | { |
| 144 | .id = 0x59, |
| 145 | .name = "17eg", |
| 146 | }, |
Michal Simek | b030fed | 2017-06-02 08:08:59 +0200 | [diff] [blame] | 147 | { |
| 148 | .id = 0x61, |
| 149 | .name = "21dr", |
| 150 | }, |
| 151 | { |
| 152 | .id = 0x63, |
| 153 | .name = "23dr", |
| 154 | }, |
| 155 | { |
| 156 | .id = 0x65, |
| 157 | .name = "25dr", |
| 158 | }, |
| 159 | { |
| 160 | .id = 0x64, |
| 161 | .name = "27dr", |
| 162 | }, |
| 163 | { |
| 164 | .id = 0x60, |
| 165 | .name = "28dr", |
| 166 | }, |
| 167 | { |
| 168 | .id = 0x62, |
| 169 | .name = "29dr", |
| 170 | }, |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 171 | }; |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 172 | #endif |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 173 | |
Siva Durga Prasad Paladugu | f52bf5a | 2017-07-25 11:51:38 +0530 | [diff] [blame] | 174 | int chip_id(unsigned char id) |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 175 | { |
| 176 | struct pt_regs regs; |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 177 | int val = -EINVAL; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 178 | |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 179 | if (current_el() != 3) { |
| 180 | regs.regs[0] = ZYNQMP_SIP_SVC_CSU_DMA_CHIPID; |
| 181 | regs.regs[1] = 0; |
| 182 | regs.regs[2] = 0; |
| 183 | regs.regs[3] = 0; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 184 | |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 185 | smc_call(®s); |
| 186 | |
| 187 | /* |
| 188 | * SMC returns: |
| 189 | * regs[0][31:0] = status of the operation |
| 190 | * regs[0][63:32] = CSU.IDCODE register |
| 191 | * regs[1][31:0] = CSU.version register |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 192 | * regs[1][63:32] = CSU.IDCODE2 register |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 193 | */ |
| 194 | switch (id) { |
| 195 | case IDCODE: |
| 196 | regs.regs[0] = upper_32_bits(regs.regs[0]); |
| 197 | regs.regs[0] &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK | |
| 198 | ZYNQMP_CSU_IDCODE_SVD_MASK; |
| 199 | regs.regs[0] >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT; |
| 200 | val = regs.regs[0]; |
| 201 | break; |
| 202 | case VERSION: |
| 203 | regs.regs[1] = lower_32_bits(regs.regs[1]); |
| 204 | regs.regs[1] &= ZYNQMP_CSU_SILICON_VER_MASK; |
| 205 | val = regs.regs[1]; |
| 206 | break; |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 207 | case IDCODE2: |
| 208 | regs.regs[1] = lower_32_bits(regs.regs[1]); |
| 209 | regs.regs[1] >>= ZYNQMP_CSU_VERSION_EMPTY_SHIFT; |
| 210 | val = regs.regs[1]; |
| 211 | break; |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 212 | default: |
| 213 | printf("%s, Invalid Req:0x%x\n", __func__, id); |
| 214 | } |
| 215 | } else { |
| 216 | switch (id) { |
| 217 | case IDCODE: |
| 218 | val = readl(ZYNQMP_CSU_IDCODE_ADDR); |
| 219 | val &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK | |
| 220 | ZYNQMP_CSU_IDCODE_SVD_MASK; |
| 221 | val >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT; |
| 222 | break; |
| 223 | case VERSION: |
| 224 | val = readl(ZYNQMP_CSU_VER_ADDR); |
| 225 | val &= ZYNQMP_CSU_SILICON_VER_MASK; |
| 226 | break; |
| 227 | default: |
| 228 | printf("%s, Invalid Req:0x%x\n", __func__, id); |
| 229 | } |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 230 | } |
Soren Brinkmann | 0cba6ab | 2016-09-29 11:44:41 -0700 | [diff] [blame] | 231 | |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 232 | return val; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 233 | } |
| 234 | |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 235 | #define ZYNQMP_VERSION_SIZE 9 |
| 236 | #define ZYNQMP_PL_STATUS_BIT 9 |
| 237 | #define ZYNQMP_PL_STATUS_MASK BIT(ZYNQMP_PL_STATUS_BIT) |
| 238 | #define ZYNQMP_CSU_VERSION_MASK ~(ZYNQMP_PL_STATUS_MASK) |
| 239 | |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 240 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \ |
| 241 | !defined(CONFIG_SPL_BUILD) |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 242 | static char *zynqmp_get_silicon_idcode_name(void) |
| 243 | { |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 244 | u32 i, id, ver; |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 245 | char *buf; |
| 246 | static char name[ZYNQMP_VERSION_SIZE]; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 247 | |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 248 | id = chip_id(IDCODE); |
Michal Simek | 494fffe | 2017-08-22 14:58:53 +0200 | [diff] [blame] | 249 | ver = chip_id(IDCODE2); |
| 250 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 251 | for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) { |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 252 | if ((zynqmp_devices[i].id == id) && |
| 253 | (zynqmp_devices[i].ver == (ver & |
| 254 | ZYNQMP_CSU_VERSION_MASK))) { |
| 255 | strncat(name, "zu", 2); |
| 256 | strncat(name, zynqmp_devices[i].name, |
| 257 | ZYNQMP_VERSION_SIZE - 3); |
| 258 | break; |
| 259 | } |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 260 | } |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 261 | |
| 262 | if (i >= ARRAY_SIZE(zynqmp_devices)) |
| 263 | return "unknown"; |
| 264 | |
| 265 | if (!zynqmp_devices[i].evexists) |
| 266 | return name; |
| 267 | |
| 268 | if (ver & ZYNQMP_PL_STATUS_MASK) |
| 269 | return name; |
| 270 | |
| 271 | if (strstr(name, "eg") || strstr(name, "ev")) { |
| 272 | buf = strstr(name, "e"); |
| 273 | *buf = '\0'; |
| 274 | } |
| 275 | |
| 276 | return name; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 277 | } |
| 278 | #endif |
| 279 | |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 280 | int board_early_init_f(void) |
| 281 | { |
Michal Simek | f32e79f | 2018-01-10 11:48:48 +0100 | [diff] [blame] | 282 | int ret = 0; |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 283 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CLK_ZYNQMP) |
| 284 | zynqmp_pmufw_version(); |
| 285 | #endif |
Michal Simek | 55de092 | 2017-07-12 13:08:41 +0200 | [diff] [blame] | 286 | |
Michal Simek | 88f05a9 | 2018-01-15 12:52:59 +0100 | [diff] [blame] | 287 | #if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED) |
Michal Simek | f32e79f | 2018-01-10 11:48:48 +0100 | [diff] [blame] | 288 | ret = psu_init(); |
Michal Simek | 55de092 | 2017-07-12 13:08:41 +0200 | [diff] [blame] | 289 | #endif |
| 290 | |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 291 | #if defined(CONFIG_WDT) && !defined(CONFIG_SPL_BUILD) |
| 292 | /* bss is not cleared at time when watchdog_reset() is called */ |
| 293 | watchdog_dev = NULL; |
| 294 | #endif |
| 295 | |
Michal Simek | f32e79f | 2018-01-10 11:48:48 +0100 | [diff] [blame] | 296 | return ret; |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 297 | } |
| 298 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 299 | int board_init(void) |
| 300 | { |
Michal Simek | a0736ef | 2015-06-22 14:31:06 +0200 | [diff] [blame] | 301 | printf("EL Level:\tEL%d\n", current_el()); |
| 302 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 303 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \ |
| 304 | !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \ |
| 305 | defined(CONFIG_SPL_BUILD)) |
| 306 | if (current_el() != 3) { |
Siva Durga Prasad Paladugu | 83bf2ff | 2018-03-02 16:20:10 +0530 | [diff] [blame] | 307 | zynqmppl.name = zynqmp_get_silicon_idcode_name(); |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 308 | printf("Chip ID:\t%s\n", zynqmppl.name); |
| 309 | fpga_init(); |
| 310 | fpga_add(fpga_xilinx, &zynqmppl); |
| 311 | } |
| 312 | #endif |
| 313 | |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 314 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT) |
Michal Simek | 1fbca0d | 2018-07-11 08:30:07 +0200 | [diff] [blame] | 315 | if (uclass_get_device_by_seq(UCLASS_WDT, 0, &watchdog_dev)) { |
| 316 | debug("Watchdog: Not found by seq!\n"); |
| 317 | if (uclass_get_device(UCLASS_WDT, 0, &watchdog_dev)) { |
| 318 | puts("Watchdog: Not found!\n"); |
| 319 | return 0; |
| 320 | } |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 321 | } |
Michal Simek | 1fbca0d | 2018-07-11 08:30:07 +0200 | [diff] [blame] | 322 | |
| 323 | wdt_start(watchdog_dev, 0, 0); |
| 324 | puts("Watchdog: Started\n"); |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 325 | #endif |
| 326 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 327 | return 0; |
| 328 | } |
| 329 | |
Michal Simek | 4490e01 | 2018-04-19 15:43:38 +0200 | [diff] [blame] | 330 | #ifdef CONFIG_WATCHDOG |
| 331 | /* Called by macro WATCHDOG_RESET */ |
| 332 | void watchdog_reset(void) |
| 333 | { |
| 334 | # if !defined(CONFIG_SPL_BUILD) |
| 335 | static ulong next_reset; |
| 336 | ulong now; |
| 337 | |
| 338 | if (!watchdog_dev) |
| 339 | return; |
| 340 | |
| 341 | now = timer_get_us(); |
| 342 | |
| 343 | /* Do not reset the watchdog too often */ |
| 344 | if (now > next_reset) { |
| 345 | wdt_reset(watchdog_dev); |
| 346 | next_reset = now + 1000; |
| 347 | } |
| 348 | # endif |
| 349 | } |
| 350 | #endif |
| 351 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 352 | int board_early_init_r(void) |
| 353 | { |
| 354 | u32 val; |
| 355 | |
Siva Durga Prasad Paladugu | ec60a27 | 2017-12-07 15:05:30 +0530 | [diff] [blame] | 356 | if (current_el() != 3) |
| 357 | return 0; |
| 358 | |
Michal Simek | 90a35db | 2017-07-12 10:32:18 +0200 | [diff] [blame] | 359 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 360 | val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 361 | |
Siva Durga Prasad Paladugu | ec60a27 | 2017-12-07 15:05:30 +0530 | [diff] [blame] | 362 | if (!val) { |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 363 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 364 | val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 365 | writel(val, &crlapb_base->timestamp_ref_ctrl); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 366 | |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 367 | /* Program freq register in System counter */ |
| 368 | writel(zynqmp_get_system_timer_freq(), |
| 369 | &iou_scntr_secure->base_frequency_id_register); |
| 370 | /* And enable system counter */ |
| 371 | writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN, |
| 372 | &iou_scntr_secure->counter_control_register); |
| 373 | } |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 374 | return 0; |
| 375 | } |
| 376 | |
Michal Simek | 6919b4b | 2016-04-22 11:48:49 +0200 | [diff] [blame] | 377 | int zynq_board_read_rom_ethaddr(unsigned char *ethaddr) |
| 378 | { |
| 379 | #if defined(CONFIG_ZYNQ_GEM_EEPROM_ADDR) && \ |
| 380 | defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET) && \ |
| 381 | defined(CONFIG_ZYNQ_EEPROM_BUS) |
| 382 | i2c_set_bus_num(CONFIG_ZYNQ_EEPROM_BUS); |
| 383 | |
| 384 | if (eeprom_read(CONFIG_ZYNQ_GEM_EEPROM_ADDR, |
| 385 | CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET, |
| 386 | ethaddr, 6)) |
| 387 | printf("I2C EEPROM MAC address read failed\n"); |
| 388 | #endif |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
Nitin Jain | 5191686 | 2018-02-16 12:56:17 +0530 | [diff] [blame] | 393 | unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, |
| 394 | char * const argv[]) |
| 395 | { |
| 396 | int ret = 0; |
| 397 | |
| 398 | if (current_el() > 1) { |
| 399 | smp_kick_all_cpus(); |
| 400 | dcache_disable(); |
| 401 | armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry, |
| 402 | ES_TO_AARCH64); |
| 403 | } else { |
| 404 | printf("FAIL: current EL is not above EL1\n"); |
| 405 | ret = EINVAL; |
| 406 | } |
| 407 | return ret; |
| 408 | } |
| 409 | |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 410 | #if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE) |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 411 | int dram_init_banksize(void) |
Tom Rini | 361a879 | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 412 | { |
Nitin Jain | 0678941 | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 413 | int ret; |
| 414 | |
| 415 | ret = fdtdec_setup_memory_banksize(); |
| 416 | if (ret) |
| 417 | return ret; |
| 418 | |
| 419 | mem_map_fill(); |
| 420 | |
| 421 | return 0; |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | int dram_init(void) |
| 425 | { |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame^] | 426 | if (fdtdec_setup_mem_size_base() != 0) |
Nathan Rossi | 950f86c | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 427 | return -EINVAL; |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | #else |
Nitin Jain | 0678941 | 2018-04-20 12:30:40 +0530 | [diff] [blame] | 432 | int dram_init_banksize(void) |
| 433 | { |
| 434 | #if defined(CONFIG_NR_DRAM_BANKS) |
| 435 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 436 | gd->bd->bi_dram[0].size = get_effective_memsize(); |
| 437 | #endif |
| 438 | |
| 439 | mem_map_fill(); |
| 440 | |
| 441 | return 0; |
| 442 | } |
| 443 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 444 | int dram_init(void) |
| 445 | { |
Michal Simek | 61dc92a | 2018-04-11 16:12:28 +0200 | [diff] [blame] | 446 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 447 | CONFIG_SYS_SDRAM_SIZE); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 448 | |
| 449 | return 0; |
| 450 | } |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 451 | #endif |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 452 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 453 | void reset_cpu(ulong addr) |
| 454 | { |
| 455 | } |
| 456 | |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 457 | static const struct { |
| 458 | u32 bit; |
| 459 | const char *name; |
| 460 | } reset_reasons[] = { |
| 461 | { RESET_REASON_DEBUG_SYS, "DEBUG" }, |
| 462 | { RESET_REASON_SOFT, "SOFT" }, |
| 463 | { RESET_REASON_SRST, "SRST" }, |
| 464 | { RESET_REASON_PSONLY, "PS-ONLY" }, |
| 465 | { RESET_REASON_PMU, "PMU" }, |
| 466 | { RESET_REASON_INTERNAL, "INTERNAL" }, |
| 467 | { RESET_REASON_EXTERNAL, "EXTERNAL" }, |
| 468 | {} |
| 469 | }; |
| 470 | |
| 471 | static u32 reset_reason(void) |
| 472 | { |
| 473 | u32 ret; |
| 474 | int i; |
| 475 | const char *reason = NULL; |
| 476 | |
| 477 | ret = readl(&crlapb_base->reset_reason); |
| 478 | |
| 479 | puts("Reset reason:\t"); |
| 480 | |
| 481 | for (i = 0; i < ARRAY_SIZE(reset_reasons); i++) { |
| 482 | if (ret & reset_reasons[i].bit) { |
| 483 | reason = reset_reasons[i].name; |
| 484 | printf("%s ", reset_reasons[i].name); |
| 485 | break; |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | puts("\n"); |
| 490 | |
| 491 | env_set("reset_reason", reason); |
| 492 | |
| 493 | writel(~0, &crlapb_base->reset_reason); |
| 494 | |
| 495 | return ret; |
| 496 | } |
| 497 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 498 | int board_late_init(void) |
| 499 | { |
| 500 | u32 reg = 0; |
| 501 | u8 bootmode; |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 502 | struct udevice *dev; |
| 503 | int bootseq = -1; |
| 504 | int bootseq_len = 0; |
Michal Simek | 0478b0b | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 505 | int env_targets_len = 0; |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 506 | const char *mode; |
| 507 | char *new_targets; |
Siva Durga Prasad Paladugu | 01c42d3 | 2017-12-20 16:35:06 +0530 | [diff] [blame] | 508 | char *env_targets; |
Siva Durga Prasad Paladugu | d1db89f | 2017-02-21 17:58:28 +0530 | [diff] [blame] | 509 | int ret; |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 510 | |
| 511 | if (!(gd->flags & GD_FLG_ENV_DEFAULT)) { |
| 512 | debug("Saved variables - Skipping\n"); |
| 513 | return 0; |
| 514 | } |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 515 | |
Siva Durga Prasad Paladugu | d1db89f | 2017-02-21 17:58:28 +0530 | [diff] [blame] | 516 | ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, ®); |
| 517 | if (ret) |
| 518 | return -EINVAL; |
| 519 | |
Michal Simek | 47359a0 | 2016-10-25 11:43:02 +0200 | [diff] [blame] | 520 | if (reg >> BOOT_MODE_ALT_SHIFT) |
| 521 | reg >>= BOOT_MODE_ALT_SHIFT; |
| 522 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 523 | bootmode = reg & BOOT_MODES_MASK; |
| 524 | |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 525 | puts("Bootmode: "); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 526 | switch (bootmode) { |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 527 | case USB_MODE: |
| 528 | puts("USB_MODE\n"); |
| 529 | mode = "usb"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 530 | env_set("modeboot", "usb_dfu_spl"); |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 531 | break; |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 532 | case JTAG_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 533 | puts("JTAG_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 534 | mode = "pxe dhcp"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 535 | env_set("modeboot", "jtagboot"); |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 536 | break; |
| 537 | case QSPI_MODE_24BIT: |
| 538 | case QSPI_MODE_32BIT: |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 539 | mode = "qspi0"; |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 540 | puts("QSPI_MODE\n"); |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 541 | env_set("modeboot", "qspiboot"); |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 542 | break; |
Michal Simek | 39c56f5 | 2015-04-15 15:02:28 +0200 | [diff] [blame] | 543 | case EMMC_MODE: |
Michal Simek | 78678fe | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 544 | puts("EMMC_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 545 | mode = "mmc0"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 546 | env_set("modeboot", "emmcboot"); |
Michal Simek | 78678fe | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 547 | break; |
| 548 | case SD_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 549 | puts("SD_MODE\n"); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 550 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 551 | "sdhci@ff160000", &dev)) { |
| 552 | puts("Boot from SD0 but without SD0 enabled!\n"); |
| 553 | return -1; |
| 554 | } |
| 555 | debug("mmc0 device found at %p, seq %d\n", dev, dev->seq); |
| 556 | |
| 557 | mode = "mmc"; |
| 558 | bootseq = dev->seq; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 559 | env_set("modeboot", "sdboot"); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 560 | break; |
Siva Durga Prasad Paladugu | e199227 | 2016-09-21 11:45:05 +0530 | [diff] [blame] | 561 | case SD1_LSHFT_MODE: |
| 562 | puts("LVL_SHFT_"); |
| 563 | /* fall through */ |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 564 | case SD_MODE1: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 565 | puts("SD_MODE1\n"); |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 566 | if (uclass_get_device_by_name(UCLASS_MMC, |
| 567 | "sdhci@ff170000", &dev)) { |
| 568 | puts("Boot from SD1 but without SD1 enabled!\n"); |
| 569 | return -1; |
| 570 | } |
| 571 | debug("mmc1 device found at %p, seq %d\n", dev, dev->seq); |
| 572 | |
| 573 | mode = "mmc"; |
| 574 | bootseq = dev->seq; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 575 | env_set("modeboot", "sdboot"); |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 576 | break; |
| 577 | case NAND_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 578 | puts("NAND_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 579 | mode = "nand0"; |
Michal Simek | 07656ba | 2017-12-01 15:18:24 +0100 | [diff] [blame] | 580 | env_set("modeboot", "nandboot"); |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 581 | break; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 582 | default: |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 583 | mode = ""; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 584 | printf("Invalid Boot Mode:0x%x\n", bootmode); |
| 585 | break; |
| 586 | } |
| 587 | |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 588 | if (bootseq >= 0) { |
| 589 | bootseq_len = snprintf(NULL, 0, "%i", bootseq); |
| 590 | debug("Bootseq len: %x\n", bootseq_len); |
| 591 | } |
| 592 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 593 | /* |
| 594 | * One terminating char + one byte for space between mode |
| 595 | * and default boot_targets |
| 596 | */ |
Siva Durga Prasad Paladugu | 01c42d3 | 2017-12-20 16:35:06 +0530 | [diff] [blame] | 597 | env_targets = env_get("boot_targets"); |
Michal Simek | 0478b0b | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 598 | if (env_targets) |
| 599 | env_targets_len = strlen(env_targets); |
| 600 | |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 601 | new_targets = calloc(1, strlen(mode) + env_targets_len + 2 + |
| 602 | bootseq_len); |
Michal Simek | 1e3e68f | 2018-06-13 09:42:41 +0200 | [diff] [blame] | 603 | if (!new_targets) |
| 604 | return -ENOMEM; |
Michal Simek | 0478b0b | 2018-04-25 11:10:34 +0200 | [diff] [blame] | 605 | |
Michal Simek | 2882b39 | 2018-04-25 11:20:43 +0200 | [diff] [blame] | 606 | if (bootseq >= 0) |
| 607 | sprintf(new_targets, "%s%x %s", mode, bootseq, |
| 608 | env_targets ? env_targets : ""); |
| 609 | else |
| 610 | sprintf(new_targets, "%s %s", mode, |
| 611 | env_targets ? env_targets : ""); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 612 | |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 613 | env_set("boot_targets", new_targets); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 614 | |
Michal Simek | d348bea | 2018-05-17 14:06:06 +0200 | [diff] [blame] | 615 | reset_reason(); |
| 616 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 617 | return 0; |
| 618 | } |
Siva Durga Prasad Paladugu | 84696ff | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 619 | |
| 620 | int checkboard(void) |
| 621 | { |
Michal Simek | 5af0855 | 2016-01-25 11:04:21 +0100 | [diff] [blame] | 622 | puts("Board: Xilinx ZynqMP\n"); |
Siva Durga Prasad Paladugu | 84696ff | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 623 | return 0; |
| 624 | } |