blob: 5e1d2116bc32f42458d5d30ad522ba96891de70c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michal Simek04b7e622015-01-15 10:01:51 +01002/*
3 * (C) Copyright 2014 - 2015 Xilinx, Inc.
4 * Michal Simek <michal.simek@xilinx.com>
Michal Simek04b7e622015-01-15 10:01:51 +01005 */
6
7#include <common.h>
Michal Simekd54b1af2015-09-30 17:26:55 +02008#include <sata.h>
Michal Simekb216cc12015-07-23 13:27:40 +02009#include <ahci.h>
10#include <scsi.h>
Michal Simekecfb6dc2016-04-22 14:28:54 +020011#include <malloc.h>
Michal Simekbf0f9ca2018-04-19 15:43:38 +020012#include <wdt.h>
Michal Simekc23d3f82015-11-05 08:34:35 +010013#include <asm/arch/clk.h>
Michal Simek04b7e622015-01-15 10:01:51 +010014#include <asm/arch/hardware.h>
15#include <asm/arch/sys_proto.h>
Michal Simekf2f08642018-01-10 09:36:09 +010016#include <asm/arch/psu_init_gpl.h>
Michal Simek04b7e622015-01-15 10:01:51 +010017#include <asm/io.h>
Michal Simekf183a982018-04-25 11:20:43 +020018#include <dm/device.h>
Michal Simekbf0f9ca2018-04-19 15:43:38 +020019#include <dm/uclass.h>
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +053020#include <usb.h>
21#include <dwc3-uboot.h>
Michal Simek8111aff2016-02-01 15:05:58 +010022#include <zynqmppl.h>
Michal Simek76d0a772016-09-01 11:16:40 +020023#include <g_dnl.h>
Michal Simek04b7e622015-01-15 10:01:51 +010024
25DECLARE_GLOBAL_DATA_PTR;
26
Michal Simekbf0f9ca2018-04-19 15:43:38 +020027#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
28static struct udevice *watchdog_dev;
29#endif
30
Michal Simek8111aff2016-02-01 15:05:58 +010031#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
32 !defined(CONFIG_SPL_BUILD)
33static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC;
34
35static const struct {
Michal Simek6908b862017-11-06 12:55:59 +010036 u32 id;
Michal Simek50d8cef2017-08-22 14:58:53 +020037 u32 ver;
Michal Simek8111aff2016-02-01 15:05:58 +010038 char *name;
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +053039 bool evexists;
Michal Simek8111aff2016-02-01 15:05:58 +010040} zynqmp_devices[] = {
41 {
42 .id = 0x10,
43 .name = "3eg",
44 },
45 {
Michal Simek50d8cef2017-08-22 14:58:53 +020046 .id = 0x10,
47 .ver = 0x2c,
48 .name = "3cg",
49 },
50 {
Michal Simek8111aff2016-02-01 15:05:58 +010051 .id = 0x11,
52 .name = "2eg",
53 },
54 {
Michal Simek50d8cef2017-08-22 14:58:53 +020055 .id = 0x11,
56 .ver = 0x2c,
57 .name = "2cg",
58 },
59 {
Michal Simek8111aff2016-02-01 15:05:58 +010060 .id = 0x20,
61 .name = "5ev",
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +053062 .evexists = 1,
Michal Simek8111aff2016-02-01 15:05:58 +010063 },
64 {
Michal Simek50d8cef2017-08-22 14:58:53 +020065 .id = 0x20,
66 .ver = 0x100,
67 .name = "5eg",
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +053068 .evexists = 1,
Michal Simek50d8cef2017-08-22 14:58:53 +020069 },
70 {
71 .id = 0x20,
72 .ver = 0x12c,
73 .name = "5cg",
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +053074 .evexists = 1,
Michal Simek50d8cef2017-08-22 14:58:53 +020075 },
76 {
Michal Simek8111aff2016-02-01 15:05:58 +010077 .id = 0x21,
78 .name = "4ev",
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +053079 .evexists = 1,
Michal Simek8111aff2016-02-01 15:05:58 +010080 },
81 {
Michal Simek50d8cef2017-08-22 14:58:53 +020082 .id = 0x21,
83 .ver = 0x100,
84 .name = "4eg",
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +053085 .evexists = 1,
Michal Simek50d8cef2017-08-22 14:58:53 +020086 },
87 {
88 .id = 0x21,
89 .ver = 0x12c,
90 .name = "4cg",
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +053091 .evexists = 1,
Michal Simek50d8cef2017-08-22 14:58:53 +020092 },
93 {
Michal Simek8111aff2016-02-01 15:05:58 +010094 .id = 0x30,
95 .name = "7ev",
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +053096 .evexists = 1,
Michal Simek8111aff2016-02-01 15:05:58 +010097 },
98 {
Michal Simek50d8cef2017-08-22 14:58:53 +020099 .id = 0x30,
100 .ver = 0x100,
101 .name = "7eg",
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530102 .evexists = 1,
Michal Simek50d8cef2017-08-22 14:58:53 +0200103 },
104 {
105 .id = 0x30,
106 .ver = 0x12c,
107 .name = "7cg",
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530108 .evexists = 1,
Michal Simek50d8cef2017-08-22 14:58:53 +0200109 },
110 {
Michal Simek8111aff2016-02-01 15:05:58 +0100111 .id = 0x38,
112 .name = "9eg",
113 },
114 {
Michal Simek50d8cef2017-08-22 14:58:53 +0200115 .id = 0x38,
116 .ver = 0x2c,
117 .name = "9cg",
118 },
119 {
Michal Simek8111aff2016-02-01 15:05:58 +0100120 .id = 0x39,
121 .name = "6eg",
122 },
123 {
Michal Simek50d8cef2017-08-22 14:58:53 +0200124 .id = 0x39,
125 .ver = 0x2c,
126 .name = "6cg",
127 },
128 {
Michal Simek8111aff2016-02-01 15:05:58 +0100129 .id = 0x40,
130 .name = "11eg",
131 },
Michal Simek50d8cef2017-08-22 14:58:53 +0200132 { /* For testing purpose only */
133 .id = 0x50,
134 .ver = 0x2c,
135 .name = "15cg",
136 },
Michal Simek8111aff2016-02-01 15:05:58 +0100137 {
138 .id = 0x50,
139 .name = "15eg",
140 },
141 {
142 .id = 0x58,
143 .name = "19eg",
144 },
145 {
146 .id = 0x59,
147 .name = "17eg",
148 },
Michal Simekb510e532017-06-02 08:08:59 +0200149 {
150 .id = 0x61,
151 .name = "21dr",
152 },
153 {
154 .id = 0x63,
155 .name = "23dr",
156 },
157 {
158 .id = 0x65,
159 .name = "25dr",
160 },
161 {
162 .id = 0x64,
163 .name = "27dr",
164 },
165 {
166 .id = 0x60,
167 .name = "28dr",
168 },
169 {
170 .id = 0x62,
171 .name = "29dr",
172 },
Michal Simek8111aff2016-02-01 15:05:58 +0100173};
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530174#endif
Michal Simek8111aff2016-02-01 15:05:58 +0100175
Siva Durga Prasad Paladugucd35d522017-07-25 11:51:38 +0530176int chip_id(unsigned char id)
Michal Simek8111aff2016-02-01 15:05:58 +0100177{
178 struct pt_regs regs;
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530179 int val = -EINVAL;
Michal Simek8111aff2016-02-01 15:05:58 +0100180
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530181 if (current_el() != 3) {
182 regs.regs[0] = ZYNQMP_SIP_SVC_CSU_DMA_CHIPID;
183 regs.regs[1] = 0;
184 regs.regs[2] = 0;
185 regs.regs[3] = 0;
Michal Simek8111aff2016-02-01 15:05:58 +0100186
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530187 smc_call(&regs);
188
189 /*
190 * SMC returns:
191 * regs[0][31:0] = status of the operation
192 * regs[0][63:32] = CSU.IDCODE register
193 * regs[1][31:0] = CSU.version register
Michal Simek50d8cef2017-08-22 14:58:53 +0200194 * regs[1][63:32] = CSU.IDCODE2 register
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530195 */
196 switch (id) {
197 case IDCODE:
198 regs.regs[0] = upper_32_bits(regs.regs[0]);
199 regs.regs[0] &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
200 ZYNQMP_CSU_IDCODE_SVD_MASK;
201 regs.regs[0] >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
202 val = regs.regs[0];
203 break;
204 case VERSION:
205 regs.regs[1] = lower_32_bits(regs.regs[1]);
206 regs.regs[1] &= ZYNQMP_CSU_SILICON_VER_MASK;
207 val = regs.regs[1];
208 break;
Michal Simek50d8cef2017-08-22 14:58:53 +0200209 case IDCODE2:
210 regs.regs[1] = lower_32_bits(regs.regs[1]);
211 regs.regs[1] >>= ZYNQMP_CSU_VERSION_EMPTY_SHIFT;
212 val = regs.regs[1];
213 break;
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530214 default:
215 printf("%s, Invalid Req:0x%x\n", __func__, id);
216 }
217 } else {
218 switch (id) {
219 case IDCODE:
220 val = readl(ZYNQMP_CSU_IDCODE_ADDR);
221 val &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
222 ZYNQMP_CSU_IDCODE_SVD_MASK;
223 val >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
224 break;
225 case VERSION:
226 val = readl(ZYNQMP_CSU_VER_ADDR);
227 val &= ZYNQMP_CSU_SILICON_VER_MASK;
228 break;
229 default:
230 printf("%s, Invalid Req:0x%x\n", __func__, id);
231 }
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530232 }
Soren Brinkmannd7696a52016-09-29 11:44:41 -0700233
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530234 return val;
Michal Simek8111aff2016-02-01 15:05:58 +0100235}
236
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530237#define ZYNQMP_VERSION_SIZE 9
238#define ZYNQMP_PL_STATUS_BIT 9
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530239#define ZYNQMP_IPDIS_VCU_BIT 8
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530240#define ZYNQMP_PL_STATUS_MASK BIT(ZYNQMP_PL_STATUS_BIT)
241#define ZYNQMP_CSU_VERSION_MASK ~(ZYNQMP_PL_STATUS_MASK)
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530242#define ZYNQMP_CSU_VCUDIS_VER_MASK ZYNQMP_CSU_VERSION_MASK & \
243 ~BIT(ZYNQMP_IPDIS_VCU_BIT)
244#define MAX_VARIANTS_EV 3
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530245
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530246#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
247 !defined(CONFIG_SPL_BUILD)
Michal Simek8111aff2016-02-01 15:05:58 +0100248static char *zynqmp_get_silicon_idcode_name(void)
249{
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530250 u32 i, id, ver, j;
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530251 char *buf;
252 static char name[ZYNQMP_VERSION_SIZE];
Michal Simek8111aff2016-02-01 15:05:58 +0100253
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530254 id = chip_id(IDCODE);
Michal Simek50d8cef2017-08-22 14:58:53 +0200255 ver = chip_id(IDCODE2);
256
Michal Simek8111aff2016-02-01 15:05:58 +0100257 for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530258 if (zynqmp_devices[i].id == id) {
259 if (zynqmp_devices[i].evexists &&
260 !(ver & ZYNQMP_PL_STATUS_MASK))
261 break;
262 if (zynqmp_devices[i].ver == (ver &
263 ZYNQMP_CSU_VERSION_MASK))
264 break;
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530265 }
Michal Simek8111aff2016-02-01 15:05:58 +0100266 }
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530267
268 if (i >= ARRAY_SIZE(zynqmp_devices))
269 return "unknown";
270
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530271 strncat(name, "zu", 2);
272 if (!zynqmp_devices[i].evexists ||
273 (ver & ZYNQMP_PL_STATUS_MASK)) {
274 strncat(name, zynqmp_devices[i].name,
275 ZYNQMP_VERSION_SIZE - 3);
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530276 return name;
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530277 }
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530278
Siva Durga Prasad Paladugu951c0192018-10-26 17:47:55 +0530279 /*
280 * Here we are means, PL not powered up and ev variant
281 * exists. So, we need to ignore VCU disable bit(8) in
282 * version and findout if its CG or EG/EV variant.
283 */
284 for (j = 0; j < MAX_VARIANTS_EV; j++, i++) {
285 if ((zynqmp_devices[i].ver & ~BIT(ZYNQMP_IPDIS_VCU_BIT)) ==
286 (ver & ZYNQMP_CSU_VCUDIS_VER_MASK)) {
287 strncat(name, zynqmp_devices[i].name,
288 ZYNQMP_VERSION_SIZE - 3);
289 break;
290 }
291 }
292
293 if (j >= MAX_VARIANTS_EV)
294 return "unknown";
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530295
296 if (strstr(name, "eg") || strstr(name, "ev")) {
297 buf = strstr(name, "e");
298 *buf = '\0';
299 }
300
301 return name;
Michal Simek8111aff2016-02-01 15:05:58 +0100302}
303#endif
304
Michal Simek8b353302017-02-07 14:32:26 +0100305int board_early_init_f(void)
306{
Michal Simekc8785f22018-01-10 11:48:48 +0100307 int ret = 0;
Michal Simek8b353302017-02-07 14:32:26 +0100308#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CLK_ZYNQMP)
Siva Durga Prasad Paladugu8406d472018-08-21 15:44:49 +0530309 u32 pm_api_version;
310
311 pm_api_version = zynqmp_pmufw_version();
312 printf("PMUFW:\tv%d.%d\n",
313 pm_api_version >> ZYNQMP_PM_VERSION_MAJOR_SHIFT,
314 pm_api_version & ZYNQMP_PM_VERSION_MINOR_MASK);
315
316 if (pm_api_version < ZYNQMP_PM_VERSION)
317 panic("PMUFW version error. Expected: v%d.%d\n",
318 ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR);
Michal Simek8b353302017-02-07 14:32:26 +0100319#endif
Michal Simeke0f36102017-07-12 13:08:41 +0200320
Michal Simek1a1ab5a2018-01-15 12:52:59 +0100321#if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED)
Michal Simekc8785f22018-01-10 11:48:48 +0100322 ret = psu_init();
Michal Simeke0f36102017-07-12 13:08:41 +0200323#endif
324
Michal Simekbf0f9ca2018-04-19 15:43:38 +0200325#if defined(CONFIG_WDT) && !defined(CONFIG_SPL_BUILD)
326 /* bss is not cleared at time when watchdog_reset() is called */
327 watchdog_dev = NULL;
328#endif
329
Michal Simekc8785f22018-01-10 11:48:48 +0100330 return ret;
Michal Simek8b353302017-02-07 14:32:26 +0100331}
332
Michal Simek04b7e622015-01-15 10:01:51 +0100333int board_init(void)
334{
Michal Simekfb7242d2015-06-22 14:31:06 +0200335 printf("EL Level:\tEL%d\n", current_el());
336
Michal Simek8111aff2016-02-01 15:05:58 +0100337#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
338 !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \
339 defined(CONFIG_SPL_BUILD))
340 if (current_el() != 3) {
Siva Durga Prasad Paladuguba2622d2018-03-02 16:20:10 +0530341 zynqmppl.name = zynqmp_get_silicon_idcode_name();
Michal Simek8111aff2016-02-01 15:05:58 +0100342 printf("Chip ID:\t%s\n", zynqmppl.name);
343 fpga_init();
344 fpga_add(fpga_xilinx, &zynqmppl);
345 }
346#endif
347
Michal Simekbf0f9ca2018-04-19 15:43:38 +0200348#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
Michal Simek169d34b2018-07-11 08:30:07 +0200349 if (uclass_get_device_by_seq(UCLASS_WDT, 0, &watchdog_dev)) {
350 debug("Watchdog: Not found by seq!\n");
351 if (uclass_get_device(UCLASS_WDT, 0, &watchdog_dev)) {
352 puts("Watchdog: Not found!\n");
353 return 0;
354 }
Michal Simekbf0f9ca2018-04-19 15:43:38 +0200355 }
Michal Simek169d34b2018-07-11 08:30:07 +0200356
357 wdt_start(watchdog_dev, 0, 0);
358 puts("Watchdog: Started\n");
Michal Simekbf0f9ca2018-04-19 15:43:38 +0200359#endif
360
Michal Simek04b7e622015-01-15 10:01:51 +0100361 return 0;
362}
363
Michal Simekbf0f9ca2018-04-19 15:43:38 +0200364#ifdef CONFIG_WATCHDOG
365/* Called by macro WATCHDOG_RESET */
366void watchdog_reset(void)
367{
368# if !defined(CONFIG_SPL_BUILD)
369 static ulong next_reset;
370 ulong now;
371
372 if (!watchdog_dev)
373 return;
374
375 now = timer_get_us();
376
377 /* Do not reset the watchdog too often */
378 if (now > next_reset) {
379 wdt_reset(watchdog_dev);
380 next_reset = now + 1000;
381 }
382# endif
383}
384#endif
385
Michal Simek04b7e622015-01-15 10:01:51 +0100386int board_early_init_r(void)
387{
388 u32 val;
389
Siva Durga Prasad Paladugu64d90002017-12-07 15:05:30 +0530390 if (current_el() != 3)
391 return 0;
392
Michal Simek245d5282017-07-12 10:32:18 +0200393 val = readl(&crlapb_base->timestamp_ref_ctrl);
394 val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
395
Siva Durga Prasad Paladugu64d90002017-12-07 15:05:30 +0530396 if (!val) {
Michal Simekc23d3f82015-11-05 08:34:35 +0100397 val = readl(&crlapb_base->timestamp_ref_ctrl);
398 val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
399 writel(val, &crlapb_base->timestamp_ref_ctrl);
Michal Simek04b7e622015-01-15 10:01:51 +0100400
Michal Simekc23d3f82015-11-05 08:34:35 +0100401 /* Program freq register in System counter */
402 writel(zynqmp_get_system_timer_freq(),
403 &iou_scntr_secure->base_frequency_id_register);
404 /* And enable system counter */
405 writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN,
406 &iou_scntr_secure->counter_control_register);
407 }
Michal Simek04b7e622015-01-15 10:01:51 +0100408 return 0;
409}
410
Nitin Jainb2eb59b2018-02-16 12:56:17 +0530411unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
412 char * const argv[])
413{
414 int ret = 0;
415
416 if (current_el() > 1) {
417 smp_kick_all_cpus();
418 dcache_disable();
419 armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry,
420 ES_TO_AARCH64);
421 } else {
422 printf("FAIL: current EL is not above EL1\n");
423 ret = EINVAL;
424 }
425 return ret;
426}
427
Michal Simek8faa66a2016-02-08 09:34:53 +0100428#if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE)
Simon Glass2f949c32017-03-31 08:40:32 -0600429int dram_init_banksize(void)
Michal Simek8faa66a2016-02-08 09:34:53 +0100430{
Nitin Jain9bcc76f2018-04-20 12:30:40 +0530431 int ret;
432
433 ret = fdtdec_setup_memory_banksize();
434 if (ret)
435 return ret;
436
437 mem_map_fill();
438
439 return 0;
Tom Riniedcfdbd2016-12-09 07:56:54 -0500440}
Michal Simek8faa66a2016-02-08 09:34:53 +0100441
Tom Riniedcfdbd2016-12-09 07:56:54 -0500442int dram_init(void)
443{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530444 if (fdtdec_setup_mem_size_base() != 0)
Nathan Rossiac04bfa2016-12-19 00:03:34 +1000445 return -EINVAL;
Tom Riniedcfdbd2016-12-09 07:56:54 -0500446
447 return 0;
Michal Simek8faa66a2016-02-08 09:34:53 +0100448}
449#else
Nitin Jain9bcc76f2018-04-20 12:30:40 +0530450int dram_init_banksize(void)
451{
452#if defined(CONFIG_NR_DRAM_BANKS)
453 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
454 gd->bd->bi_dram[0].size = get_effective_memsize();
455#endif
456
457 mem_map_fill();
458
459 return 0;
460}
461
Michal Simek04b7e622015-01-15 10:01:51 +0100462int dram_init(void)
463{
Michal Simek1b846212018-04-11 16:12:28 +0200464 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
465 CONFIG_SYS_SDRAM_SIZE);
Michal Simek04b7e622015-01-15 10:01:51 +0100466
467 return 0;
468}
Michal Simek8faa66a2016-02-08 09:34:53 +0100469#endif
Michal Simek04b7e622015-01-15 10:01:51 +0100470
Michal Simek04b7e622015-01-15 10:01:51 +0100471void reset_cpu(ulong addr)
472{
473}
474
Michal Simek342edfe2018-12-20 09:33:38 +0100475#if defined(CONFIG_BOARD_LATE_INIT)
Michal Simek29b9b712018-05-17 14:06:06 +0200476static const struct {
477 u32 bit;
478 const char *name;
479} reset_reasons[] = {
480 { RESET_REASON_DEBUG_SYS, "DEBUG" },
481 { RESET_REASON_SOFT, "SOFT" },
482 { RESET_REASON_SRST, "SRST" },
483 { RESET_REASON_PSONLY, "PS-ONLY" },
484 { RESET_REASON_PMU, "PMU" },
485 { RESET_REASON_INTERNAL, "INTERNAL" },
486 { RESET_REASON_EXTERNAL, "EXTERNAL" },
487 {}
488};
489
490static u32 reset_reason(void)
491{
492 u32 ret;
493 int i;
494 const char *reason = NULL;
495
496 ret = readl(&crlapb_base->reset_reason);
497
498 puts("Reset reason:\t");
499
500 for (i = 0; i < ARRAY_SIZE(reset_reasons); i++) {
501 if (ret & reset_reasons[i].bit) {
502 reason = reset_reasons[i].name;
503 printf("%s ", reset_reasons[i].name);
504 break;
505 }
506 }
507
508 puts("\n");
509
510 env_set("reset_reason", reason);
511
512 writel(~0, &crlapb_base->reset_reason);
513
514 return ret;
515}
516
Michal Simek1ca66d72019-02-14 13:14:30 +0100517static int set_fdtfile(void)
518{
519 char *compatible, *fdtfile;
520 const char *suffix = ".dtb";
521 const char *vendor = "xilinx/";
522
523 if (env_get("fdtfile"))
524 return 0;
525
526 compatible = (char *)fdt_getprop(gd->fdt_blob, 0, "compatible", NULL);
527 if (compatible) {
528 debug("Compatible: %s\n", compatible);
529
530 /* Discard vendor prefix */
531 strsep(&compatible, ",");
532
533 fdtfile = calloc(1, strlen(vendor) + strlen(compatible) +
534 strlen(suffix) + 1);
535 if (!fdtfile)
536 return -ENOMEM;
537
538 sprintf(fdtfile, "%s%s%s", vendor, compatible, suffix);
539
540 env_set("fdtfile", fdtfile);
541 free(fdtfile);
542 }
543
544 return 0;
545}
546
Michal Simek04b7e622015-01-15 10:01:51 +0100547int board_late_init(void)
548{
549 u32 reg = 0;
550 u8 bootmode;
Michal Simekf183a982018-04-25 11:20:43 +0200551 struct udevice *dev;
552 int bootseq = -1;
553 int bootseq_len = 0;
Michal Simek7410b142018-04-25 11:10:34 +0200554 int env_targets_len = 0;
Michal Simekecfb6dc2016-04-22 14:28:54 +0200555 const char *mode;
556 char *new_targets;
Siva Durga Prasad Paladugu245c5562017-12-20 16:35:06 +0530557 char *env_targets;
Siva Durga Prasad Paladugue6fd3bb2017-02-21 17:58:28 +0530558 int ret;
Michal Simekecfb6dc2016-04-22 14:28:54 +0200559
Michal Simek482f5492018-10-05 08:55:16 +0200560#if defined(CONFIG_USB_ETHER) && !defined(CONFIG_USB_GADGET_DOWNLOAD)
561 usb_ether_init();
562#endif
563
Michal Simekecfb6dc2016-04-22 14:28:54 +0200564 if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
565 debug("Saved variables - Skipping\n");
566 return 0;
567 }
Michal Simek04b7e622015-01-15 10:01:51 +0100568
Michal Simek1ca66d72019-02-14 13:14:30 +0100569 ret = set_fdtfile();
570 if (ret)
571 return ret;
572
Siva Durga Prasad Paladugue6fd3bb2017-02-21 17:58:28 +0530573 ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, &reg);
574 if (ret)
575 return -EINVAL;
576
Michal Simek833e0c42016-10-25 11:43:02 +0200577 if (reg >> BOOT_MODE_ALT_SHIFT)
578 reg >>= BOOT_MODE_ALT_SHIFT;
579
Michal Simek04b7e622015-01-15 10:01:51 +0100580 bootmode = reg & BOOT_MODES_MASK;
581
Michal Simekc5d95232015-09-20 17:20:42 +0200582 puts("Bootmode: ");
Michal Simek04b7e622015-01-15 10:01:51 +0100583 switch (bootmode) {
Michal Simek12398ea2016-08-19 14:14:52 +0200584 case USB_MODE:
585 puts("USB_MODE\n");
586 mode = "usb";
Michal Simek43380352017-12-01 15:18:24 +0100587 env_set("modeboot", "usb_dfu_spl");
Michal Simek12398ea2016-08-19 14:14:52 +0200588 break;
Siva Durga Prasad Paladugu30f0fc72015-03-13 11:10:26 +0530589 case JTAG_MODE:
Michal Simekc5d95232015-09-20 17:20:42 +0200590 puts("JTAG_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200591 mode = "pxe dhcp";
Michal Simek43380352017-12-01 15:18:24 +0100592 env_set("modeboot", "jtagboot");
Siva Durga Prasad Paladugu30f0fc72015-03-13 11:10:26 +0530593 break;
594 case QSPI_MODE_24BIT:
595 case QSPI_MODE_32BIT:
Michal Simekecfb6dc2016-04-22 14:28:54 +0200596 mode = "qspi0";
Michal Simekc5d95232015-09-20 17:20:42 +0200597 puts("QSPI_MODE\n");
Michal Simek43380352017-12-01 15:18:24 +0100598 env_set("modeboot", "qspiboot");
Siva Durga Prasad Paladugu30f0fc72015-03-13 11:10:26 +0530599 break;
Michal Simek02d66cd2015-04-15 15:02:28 +0200600 case EMMC_MODE:
Michal Simekdf7ff0a2015-10-05 15:59:38 +0200601 puts("EMMC_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200602 mode = "mmc0";
Michal Simek43380352017-12-01 15:18:24 +0100603 env_set("modeboot", "emmcboot");
Michal Simekdf7ff0a2015-10-05 15:59:38 +0200604 break;
605 case SD_MODE:
Michal Simekc5d95232015-09-20 17:20:42 +0200606 puts("SD_MODE\n");
Michal Simekf183a982018-04-25 11:20:43 +0200607 if (uclass_get_device_by_name(UCLASS_MMC,
Siva Durga Prasad Paladugue91778d2019-01-03 15:44:24 +0530608 "mmc@ff160000", &dev) &&
609 uclass_get_device_by_name(UCLASS_MMC,
Michal Simekf183a982018-04-25 11:20:43 +0200610 "sdhci@ff160000", &dev)) {
611 puts("Boot from SD0 but without SD0 enabled!\n");
612 return -1;
613 }
614 debug("mmc0 device found at %p, seq %d\n", dev, dev->seq);
615
616 mode = "mmc";
617 bootseq = dev->seq;
Michal Simek43380352017-12-01 15:18:24 +0100618 env_set("modeboot", "sdboot");
Michal Simek04b7e622015-01-15 10:01:51 +0100619 break;
Siva Durga Prasad Paladugu29a77d22016-09-21 11:45:05 +0530620 case SD1_LSHFT_MODE:
621 puts("LVL_SHFT_");
622 /* fall through */
Michal Simek108e1842015-10-05 10:51:12 +0200623 case SD_MODE1:
Michal Simekc5d95232015-09-20 17:20:42 +0200624 puts("SD_MODE1\n");
Michal Simekf183a982018-04-25 11:20:43 +0200625 if (uclass_get_device_by_name(UCLASS_MMC,
Siva Durga Prasad Paladugue91778d2019-01-03 15:44:24 +0530626 "mmc@ff170000", &dev) &&
627 uclass_get_device_by_name(UCLASS_MMC,
Michal Simekf183a982018-04-25 11:20:43 +0200628 "sdhci@ff170000", &dev)) {
629 puts("Boot from SD1 but without SD1 enabled!\n");
630 return -1;
631 }
632 debug("mmc1 device found at %p, seq %d\n", dev, dev->seq);
633
634 mode = "mmc";
635 bootseq = dev->seq;
Michal Simek43380352017-12-01 15:18:24 +0100636 env_set("modeboot", "sdboot");
Michal Simek108e1842015-10-05 10:51:12 +0200637 break;
638 case NAND_MODE:
Michal Simekc5d95232015-09-20 17:20:42 +0200639 puts("NAND_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200640 mode = "nand0";
Michal Simek43380352017-12-01 15:18:24 +0100641 env_set("modeboot", "nandboot");
Michal Simek108e1842015-10-05 10:51:12 +0200642 break;
Michal Simek04b7e622015-01-15 10:01:51 +0100643 default:
Michal Simekecfb6dc2016-04-22 14:28:54 +0200644 mode = "";
Michal Simek04b7e622015-01-15 10:01:51 +0100645 printf("Invalid Boot Mode:0x%x\n", bootmode);
646 break;
647 }
648
Michal Simekf183a982018-04-25 11:20:43 +0200649 if (bootseq >= 0) {
650 bootseq_len = snprintf(NULL, 0, "%i", bootseq);
651 debug("Bootseq len: %x\n", bootseq_len);
652 }
653
Michal Simekecfb6dc2016-04-22 14:28:54 +0200654 /*
655 * One terminating char + one byte for space between mode
656 * and default boot_targets
657 */
Siva Durga Prasad Paladugu245c5562017-12-20 16:35:06 +0530658 env_targets = env_get("boot_targets");
Michal Simek7410b142018-04-25 11:10:34 +0200659 if (env_targets)
660 env_targets_len = strlen(env_targets);
661
Michal Simekf183a982018-04-25 11:20:43 +0200662 new_targets = calloc(1, strlen(mode) + env_targets_len + 2 +
663 bootseq_len);
Michal Simek089b84d2018-06-13 09:42:41 +0200664 if (!new_targets)
665 return -ENOMEM;
Michal Simek7410b142018-04-25 11:10:34 +0200666
Michal Simekf183a982018-04-25 11:20:43 +0200667 if (bootseq >= 0)
668 sprintf(new_targets, "%s%x %s", mode, bootseq,
669 env_targets ? env_targets : "");
670 else
671 sprintf(new_targets, "%s %s", mode,
672 env_targets ? env_targets : "");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200673
Simon Glass6a38e412017-08-03 12:22:09 -0600674 env_set("boot_targets", new_targets);
Michal Simekecfb6dc2016-04-22 14:28:54 +0200675
Michal Simek29b9b712018-05-17 14:06:06 +0200676 reset_reason();
677
Michal Simek04b7e622015-01-15 10:01:51 +0100678 return 0;
679}
Michal Simek342edfe2018-12-20 09:33:38 +0100680#endif
Siva Durga Prasad Paladugu650e0a32015-08-04 13:01:05 +0530681
682int checkboard(void)
683{
Michal Simek47ce9362016-01-25 11:04:21 +0100684 puts("Board: Xilinx ZynqMP\n");
Siva Durga Prasad Paladugu650e0a32015-08-04 13:01:05 +0530685 return 0;
686}