blob: 41e88b03f9d160ec126d8e7a66d84b5ab49e9227 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michal Simek84c72042015-01-15 10:01:51 +01002/*
3 * (C) Copyright 2014 - 2015 Xilinx, Inc.
4 * Michal Simek <michal.simek@xilinx.com>
Michal Simek84c72042015-01-15 10:01:51 +01005 */
6
7#include <common.h>
Michal Simek679b9942015-09-30 17:26:55 +02008#include <sata.h>
Michal Simek6fe6f132015-07-23 13:27:40 +02009#include <ahci.h>
10#include <scsi.h>
Michal Simekb72894f2016-04-22 14:28:54 +020011#include <malloc.h>
Michal Simek4490e012018-04-19 15:43:38 +020012#include <wdt.h>
Michal Simek0785dfd2015-11-05 08:34:35 +010013#include <asm/arch/clk.h>
Michal Simek84c72042015-01-15 10:01:51 +010014#include <asm/arch/hardware.h>
15#include <asm/arch/sys_proto.h>
Michal Simek2ad341e2018-01-10 09:36:09 +010016#include <asm/arch/psu_init_gpl.h>
Michal Simek84c72042015-01-15 10:01:51 +010017#include <asm/io.h>
Michal Simek2882b392018-04-25 11:20:43 +020018#include <dm/device.h>
Michal Simek4490e012018-04-19 15:43:38 +020019#include <dm/uclass.h>
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +053020#include <usb.h>
21#include <dwc3-uboot.h>
Michal Simek47e60cb2016-02-01 15:05:58 +010022#include <zynqmppl.h>
Michal Simek6919b4b2016-04-22 11:48:49 +020023#include <i2c.h>
Michal Simek9feff382016-09-01 11:16:40 +020024#include <g_dnl.h>
Michal Simek84c72042015-01-15 10:01:51 +010025
26DECLARE_GLOBAL_DATA_PTR;
27
Michal Simek4490e012018-04-19 15:43:38 +020028#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
29static struct udevice *watchdog_dev;
30#endif
31
Michal Simek47e60cb2016-02-01 15:05:58 +010032#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
33 !defined(CONFIG_SPL_BUILD)
34static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC;
35
36static const struct {
Michal Simek8ebdf9e2017-11-06 12:55:59 +010037 u32 id;
Michal Simek494fffe2017-08-22 14:58:53 +020038 u32 ver;
Michal Simek47e60cb2016-02-01 15:05:58 +010039 char *name;
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +053040 bool evexists;
Michal Simek47e60cb2016-02-01 15:05:58 +010041} zynqmp_devices[] = {
42 {
43 .id = 0x10,
44 .name = "3eg",
45 },
46 {
Michal Simek494fffe2017-08-22 14:58:53 +020047 .id = 0x10,
48 .ver = 0x2c,
49 .name = "3cg",
50 },
51 {
Michal Simek47e60cb2016-02-01 15:05:58 +010052 .id = 0x11,
53 .name = "2eg",
54 },
55 {
Michal Simek494fffe2017-08-22 14:58:53 +020056 .id = 0x11,
57 .ver = 0x2c,
58 .name = "2cg",
59 },
60 {
Michal Simek47e60cb2016-02-01 15:05:58 +010061 .id = 0x20,
62 .name = "5ev",
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +053063 .evexists = 1,
Michal Simek47e60cb2016-02-01 15:05:58 +010064 },
65 {
Michal Simek494fffe2017-08-22 14:58:53 +020066 .id = 0x20,
67 .ver = 0x100,
68 .name = "5eg",
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +053069 .evexists = 1,
Michal Simek494fffe2017-08-22 14:58:53 +020070 },
71 {
72 .id = 0x20,
73 .ver = 0x12c,
74 .name = "5cg",
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +053075 .evexists = 1,
Michal Simek494fffe2017-08-22 14:58:53 +020076 },
77 {
Michal Simek47e60cb2016-02-01 15:05:58 +010078 .id = 0x21,
79 .name = "4ev",
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +053080 .evexists = 1,
Michal Simek47e60cb2016-02-01 15:05:58 +010081 },
82 {
Michal Simek494fffe2017-08-22 14:58:53 +020083 .id = 0x21,
84 .ver = 0x100,
85 .name = "4eg",
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +053086 .evexists = 1,
Michal Simek494fffe2017-08-22 14:58:53 +020087 },
88 {
89 .id = 0x21,
90 .ver = 0x12c,
91 .name = "4cg",
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +053092 .evexists = 1,
Michal Simek494fffe2017-08-22 14:58:53 +020093 },
94 {
Michal Simek47e60cb2016-02-01 15:05:58 +010095 .id = 0x30,
96 .name = "7ev",
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +053097 .evexists = 1,
Michal Simek47e60cb2016-02-01 15:05:58 +010098 },
99 {
Michal Simek494fffe2017-08-22 14:58:53 +0200100 .id = 0x30,
101 .ver = 0x100,
102 .name = "7eg",
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530103 .evexists = 1,
Michal Simek494fffe2017-08-22 14:58:53 +0200104 },
105 {
106 .id = 0x30,
107 .ver = 0x12c,
108 .name = "7cg",
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530109 .evexists = 1,
Michal Simek494fffe2017-08-22 14:58:53 +0200110 },
111 {
Michal Simek47e60cb2016-02-01 15:05:58 +0100112 .id = 0x38,
113 .name = "9eg",
114 },
115 {
Michal Simek494fffe2017-08-22 14:58:53 +0200116 .id = 0x38,
117 .ver = 0x2c,
118 .name = "9cg",
119 },
120 {
Michal Simek47e60cb2016-02-01 15:05:58 +0100121 .id = 0x39,
122 .name = "6eg",
123 },
124 {
Michal Simek494fffe2017-08-22 14:58:53 +0200125 .id = 0x39,
126 .ver = 0x2c,
127 .name = "6cg",
128 },
129 {
Michal Simek47e60cb2016-02-01 15:05:58 +0100130 .id = 0x40,
131 .name = "11eg",
132 },
Michal Simek494fffe2017-08-22 14:58:53 +0200133 { /* For testing purpose only */
134 .id = 0x50,
135 .ver = 0x2c,
136 .name = "15cg",
137 },
Michal Simek47e60cb2016-02-01 15:05:58 +0100138 {
139 .id = 0x50,
140 .name = "15eg",
141 },
142 {
143 .id = 0x58,
144 .name = "19eg",
145 },
146 {
147 .id = 0x59,
148 .name = "17eg",
149 },
Michal Simekb030fed2017-06-02 08:08:59 +0200150 {
151 .id = 0x61,
152 .name = "21dr",
153 },
154 {
155 .id = 0x63,
156 .name = "23dr",
157 },
158 {
159 .id = 0x65,
160 .name = "25dr",
161 },
162 {
163 .id = 0x64,
164 .name = "27dr",
165 },
166 {
167 .id = 0x60,
168 .name = "28dr",
169 },
170 {
171 .id = 0x62,
172 .name = "29dr",
173 },
Michal Simek47e60cb2016-02-01 15:05:58 +0100174};
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530175#endif
Michal Simek47e60cb2016-02-01 15:05:58 +0100176
Siva Durga Prasad Paladuguf52bf5a2017-07-25 11:51:38 +0530177int chip_id(unsigned char id)
Michal Simek47e60cb2016-02-01 15:05:58 +0100178{
179 struct pt_regs regs;
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530180 int val = -EINVAL;
Michal Simek47e60cb2016-02-01 15:05:58 +0100181
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530182 if (current_el() != 3) {
183 regs.regs[0] = ZYNQMP_SIP_SVC_CSU_DMA_CHIPID;
184 regs.regs[1] = 0;
185 regs.regs[2] = 0;
186 regs.regs[3] = 0;
Michal Simek47e60cb2016-02-01 15:05:58 +0100187
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530188 smc_call(&regs);
189
190 /*
191 * SMC returns:
192 * regs[0][31:0] = status of the operation
193 * regs[0][63:32] = CSU.IDCODE register
194 * regs[1][31:0] = CSU.version register
Michal Simek494fffe2017-08-22 14:58:53 +0200195 * regs[1][63:32] = CSU.IDCODE2 register
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530196 */
197 switch (id) {
198 case IDCODE:
199 regs.regs[0] = upper_32_bits(regs.regs[0]);
200 regs.regs[0] &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
201 ZYNQMP_CSU_IDCODE_SVD_MASK;
202 regs.regs[0] >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
203 val = regs.regs[0];
204 break;
205 case VERSION:
206 regs.regs[1] = lower_32_bits(regs.regs[1]);
207 regs.regs[1] &= ZYNQMP_CSU_SILICON_VER_MASK;
208 val = regs.regs[1];
209 break;
Michal Simek494fffe2017-08-22 14:58:53 +0200210 case IDCODE2:
211 regs.regs[1] = lower_32_bits(regs.regs[1]);
212 regs.regs[1] >>= ZYNQMP_CSU_VERSION_EMPTY_SHIFT;
213 val = regs.regs[1];
214 break;
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530215 default:
216 printf("%s, Invalid Req:0x%x\n", __func__, id);
217 }
218 } else {
219 switch (id) {
220 case IDCODE:
221 val = readl(ZYNQMP_CSU_IDCODE_ADDR);
222 val &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
223 ZYNQMP_CSU_IDCODE_SVD_MASK;
224 val >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
225 break;
226 case VERSION:
227 val = readl(ZYNQMP_CSU_VER_ADDR);
228 val &= ZYNQMP_CSU_SILICON_VER_MASK;
229 break;
230 default:
231 printf("%s, Invalid Req:0x%x\n", __func__, id);
232 }
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530233 }
Soren Brinkmann0cba6ab2016-09-29 11:44:41 -0700234
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530235 return val;
Michal Simek47e60cb2016-02-01 15:05:58 +0100236}
237
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530238#define ZYNQMP_VERSION_SIZE 9
239#define ZYNQMP_PL_STATUS_BIT 9
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530240#define ZYNQMP_IPDIS_VCU_BIT 8
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530241#define ZYNQMP_PL_STATUS_MASK BIT(ZYNQMP_PL_STATUS_BIT)
242#define ZYNQMP_CSU_VERSION_MASK ~(ZYNQMP_PL_STATUS_MASK)
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530243#define ZYNQMP_CSU_VCUDIS_VER_MASK ZYNQMP_CSU_VERSION_MASK & \
244 ~BIT(ZYNQMP_IPDIS_VCU_BIT)
245#define MAX_VARIANTS_EV 3
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530246
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530247#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
248 !defined(CONFIG_SPL_BUILD)
Michal Simek47e60cb2016-02-01 15:05:58 +0100249static char *zynqmp_get_silicon_idcode_name(void)
250{
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530251 u32 i, id, ver, j;
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530252 char *buf;
253 static char name[ZYNQMP_VERSION_SIZE];
Michal Simek47e60cb2016-02-01 15:05:58 +0100254
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530255 id = chip_id(IDCODE);
Michal Simek494fffe2017-08-22 14:58:53 +0200256 ver = chip_id(IDCODE2);
257
Michal Simek47e60cb2016-02-01 15:05:58 +0100258 for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530259 if (zynqmp_devices[i].id == id) {
260 if (zynqmp_devices[i].evexists &&
261 !(ver & ZYNQMP_PL_STATUS_MASK))
262 break;
263 if (zynqmp_devices[i].ver == (ver &
264 ZYNQMP_CSU_VERSION_MASK))
265 break;
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530266 }
Michal Simek47e60cb2016-02-01 15:05:58 +0100267 }
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530268
269 if (i >= ARRAY_SIZE(zynqmp_devices))
270 return "unknown";
271
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530272 strncat(name, "zu", 2);
273 if (!zynqmp_devices[i].evexists ||
274 (ver & ZYNQMP_PL_STATUS_MASK)) {
275 strncat(name, zynqmp_devices[i].name,
276 ZYNQMP_VERSION_SIZE - 3);
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530277 return name;
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530278 }
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530279
Siva Durga Prasad Paladugu5473f242018-10-26 17:47:55 +0530280 /*
281 * Here we are means, PL not powered up and ev variant
282 * exists. So, we need to ignore VCU disable bit(8) in
283 * version and findout if its CG or EG/EV variant.
284 */
285 for (j = 0; j < MAX_VARIANTS_EV; j++, i++) {
286 if ((zynqmp_devices[i].ver & ~BIT(ZYNQMP_IPDIS_VCU_BIT)) ==
287 (ver & ZYNQMP_CSU_VCUDIS_VER_MASK)) {
288 strncat(name, zynqmp_devices[i].name,
289 ZYNQMP_VERSION_SIZE - 3);
290 break;
291 }
292 }
293
294 if (j >= MAX_VARIANTS_EV)
295 return "unknown";
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530296
297 if (strstr(name, "eg") || strstr(name, "ev")) {
298 buf = strstr(name, "e");
299 *buf = '\0';
300 }
301
302 return name;
Michal Simek47e60cb2016-02-01 15:05:58 +0100303}
304#endif
305
Michal Simekfb4000e2017-02-07 14:32:26 +0100306int board_early_init_f(void)
307{
Michal Simekf32e79f2018-01-10 11:48:48 +0100308 int ret = 0;
Michal Simekfb4000e2017-02-07 14:32:26 +0100309#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CLK_ZYNQMP)
Siva Durga Prasad Paladugub94a8272018-08-21 15:44:49 +0530310 u32 pm_api_version;
311
312 pm_api_version = zynqmp_pmufw_version();
313 printf("PMUFW:\tv%d.%d\n",
314 pm_api_version >> ZYNQMP_PM_VERSION_MAJOR_SHIFT,
315 pm_api_version & ZYNQMP_PM_VERSION_MINOR_MASK);
316
317 if (pm_api_version < ZYNQMP_PM_VERSION)
318 panic("PMUFW version error. Expected: v%d.%d\n",
319 ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR);
Michal Simekfb4000e2017-02-07 14:32:26 +0100320#endif
Michal Simek55de0922017-07-12 13:08:41 +0200321
Michal Simek88f05a92018-01-15 12:52:59 +0100322#if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED)
Michal Simekf32e79f2018-01-10 11:48:48 +0100323 ret = psu_init();
Michal Simek55de0922017-07-12 13:08:41 +0200324#endif
325
Michal Simek4490e012018-04-19 15:43:38 +0200326#if defined(CONFIG_WDT) && !defined(CONFIG_SPL_BUILD)
327 /* bss is not cleared at time when watchdog_reset() is called */
328 watchdog_dev = NULL;
329#endif
330
Michal Simekf32e79f2018-01-10 11:48:48 +0100331 return ret;
Michal Simekfb4000e2017-02-07 14:32:26 +0100332}
333
Michal Simek84c72042015-01-15 10:01:51 +0100334int board_init(void)
335{
Michal Simeka0736ef2015-06-22 14:31:06 +0200336 printf("EL Level:\tEL%d\n", current_el());
337
Michal Simek47e60cb2016-02-01 15:05:58 +0100338#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
339 !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \
340 defined(CONFIG_SPL_BUILD))
341 if (current_el() != 3) {
Siva Durga Prasad Paladugu83bf2ff2018-03-02 16:20:10 +0530342 zynqmppl.name = zynqmp_get_silicon_idcode_name();
Michal Simek47e60cb2016-02-01 15:05:58 +0100343 printf("Chip ID:\t%s\n", zynqmppl.name);
344 fpga_init();
345 fpga_add(fpga_xilinx, &zynqmppl);
346 }
347#endif
348
Michal Simek4490e012018-04-19 15:43:38 +0200349#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
Michal Simek1fbca0d2018-07-11 08:30:07 +0200350 if (uclass_get_device_by_seq(UCLASS_WDT, 0, &watchdog_dev)) {
351 debug("Watchdog: Not found by seq!\n");
352 if (uclass_get_device(UCLASS_WDT, 0, &watchdog_dev)) {
353 puts("Watchdog: Not found!\n");
354 return 0;
355 }
Michal Simek4490e012018-04-19 15:43:38 +0200356 }
Michal Simek1fbca0d2018-07-11 08:30:07 +0200357
358 wdt_start(watchdog_dev, 0, 0);
359 puts("Watchdog: Started\n");
Michal Simek4490e012018-04-19 15:43:38 +0200360#endif
361
Michal Simek84c72042015-01-15 10:01:51 +0100362 return 0;
363}
364
Michal Simek4490e012018-04-19 15:43:38 +0200365#ifdef CONFIG_WATCHDOG
366/* Called by macro WATCHDOG_RESET */
367void watchdog_reset(void)
368{
369# if !defined(CONFIG_SPL_BUILD)
370 static ulong next_reset;
371 ulong now;
372
373 if (!watchdog_dev)
374 return;
375
376 now = timer_get_us();
377
378 /* Do not reset the watchdog too often */
379 if (now > next_reset) {
380 wdt_reset(watchdog_dev);
381 next_reset = now + 1000;
382 }
383# endif
384}
385#endif
386
Michal Simek84c72042015-01-15 10:01:51 +0100387int board_early_init_r(void)
388{
389 u32 val;
390
Siva Durga Prasad Paladuguec60a272017-12-07 15:05:30 +0530391 if (current_el() != 3)
392 return 0;
393
Michal Simek90a35db2017-07-12 10:32:18 +0200394 val = readl(&crlapb_base->timestamp_ref_ctrl);
395 val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
396
Siva Durga Prasad Paladuguec60a272017-12-07 15:05:30 +0530397 if (!val) {
Michal Simek0785dfd2015-11-05 08:34:35 +0100398 val = readl(&crlapb_base->timestamp_ref_ctrl);
399 val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
400 writel(val, &crlapb_base->timestamp_ref_ctrl);
Michal Simek84c72042015-01-15 10:01:51 +0100401
Michal Simek0785dfd2015-11-05 08:34:35 +0100402 /* Program freq register in System counter */
403 writel(zynqmp_get_system_timer_freq(),
404 &iou_scntr_secure->base_frequency_id_register);
405 /* And enable system counter */
406 writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN,
407 &iou_scntr_secure->counter_control_register);
408 }
Michal Simek84c72042015-01-15 10:01:51 +0100409 return 0;
410}
411
Michal Simek6919b4b2016-04-22 11:48:49 +0200412int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
413{
414#if defined(CONFIG_ZYNQ_GEM_EEPROM_ADDR) && \
415 defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET) && \
416 defined(CONFIG_ZYNQ_EEPROM_BUS)
417 i2c_set_bus_num(CONFIG_ZYNQ_EEPROM_BUS);
418
419 if (eeprom_read(CONFIG_ZYNQ_GEM_EEPROM_ADDR,
420 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET,
421 ethaddr, 6))
422 printf("I2C EEPROM MAC address read failed\n");
423#endif
424
425 return 0;
426}
427
Nitin Jain51916862018-02-16 12:56:17 +0530428unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
429 char * const argv[])
430{
431 int ret = 0;
432
433 if (current_el() > 1) {
434 smp_kick_all_cpus();
435 dcache_disable();
436 armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry,
437 ES_TO_AARCH64);
438 } else {
439 printf("FAIL: current EL is not above EL1\n");
440 ret = EINVAL;
441 }
442 return ret;
443}
444
Michal Simek8d59d7f2016-02-08 09:34:53 +0100445#if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE)
Simon Glass76b00ac2017-03-31 08:40:32 -0600446int dram_init_banksize(void)
Tom Rini361a8792016-12-09 07:56:54 -0500447{
Nitin Jain06789412018-04-20 12:30:40 +0530448 int ret;
449
450 ret = fdtdec_setup_memory_banksize();
451 if (ret)
452 return ret;
453
454 mem_map_fill();
455
456 return 0;
Michal Simek8d59d7f2016-02-08 09:34:53 +0100457}
458
459int dram_init(void)
460{
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530461 if (fdtdec_setup_mem_size_base() != 0)
Nathan Rossi950f86c2016-12-19 00:03:34 +1000462 return -EINVAL;
Michal Simek8d59d7f2016-02-08 09:34:53 +0100463
464 return 0;
465}
466#else
Nitin Jain06789412018-04-20 12:30:40 +0530467int dram_init_banksize(void)
468{
469#if defined(CONFIG_NR_DRAM_BANKS)
470 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
471 gd->bd->bi_dram[0].size = get_effective_memsize();
472#endif
473
474 mem_map_fill();
475
476 return 0;
477}
478
Michal Simek84c72042015-01-15 10:01:51 +0100479int dram_init(void)
480{
Michal Simek61dc92a2018-04-11 16:12:28 +0200481 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
482 CONFIG_SYS_SDRAM_SIZE);
Michal Simek84c72042015-01-15 10:01:51 +0100483
484 return 0;
485}
Michal Simek8d59d7f2016-02-08 09:34:53 +0100486#endif
Michal Simek84c72042015-01-15 10:01:51 +0100487
Michal Simek84c72042015-01-15 10:01:51 +0100488void reset_cpu(ulong addr)
489{
490}
491
Michal Simek0bf3f9c2018-12-20 09:33:38 +0100492#if defined(CONFIG_BOARD_LATE_INIT)
Michal Simekd348bea2018-05-17 14:06:06 +0200493static const struct {
494 u32 bit;
495 const char *name;
496} reset_reasons[] = {
497 { RESET_REASON_DEBUG_SYS, "DEBUG" },
498 { RESET_REASON_SOFT, "SOFT" },
499 { RESET_REASON_SRST, "SRST" },
500 { RESET_REASON_PSONLY, "PS-ONLY" },
501 { RESET_REASON_PMU, "PMU" },
502 { RESET_REASON_INTERNAL, "INTERNAL" },
503 { RESET_REASON_EXTERNAL, "EXTERNAL" },
504 {}
505};
506
507static u32 reset_reason(void)
508{
509 u32 ret;
510 int i;
511 const char *reason = NULL;
512
513 ret = readl(&crlapb_base->reset_reason);
514
515 puts("Reset reason:\t");
516
517 for (i = 0; i < ARRAY_SIZE(reset_reasons); i++) {
518 if (ret & reset_reasons[i].bit) {
519 reason = reset_reasons[i].name;
520 printf("%s ", reset_reasons[i].name);
521 break;
522 }
523 }
524
525 puts("\n");
526
527 env_set("reset_reason", reason);
528
529 writel(~0, &crlapb_base->reset_reason);
530
531 return ret;
532}
533
Michal Simek84c72042015-01-15 10:01:51 +0100534int board_late_init(void)
535{
536 u32 reg = 0;
537 u8 bootmode;
Michal Simek2882b392018-04-25 11:20:43 +0200538 struct udevice *dev;
539 int bootseq = -1;
540 int bootseq_len = 0;
Michal Simek0478b0b2018-04-25 11:10:34 +0200541 int env_targets_len = 0;
Michal Simekb72894f2016-04-22 14:28:54 +0200542 const char *mode;
543 char *new_targets;
Siva Durga Prasad Paladugu01c42d32017-12-20 16:35:06 +0530544 char *env_targets;
Siva Durga Prasad Paladugud1db89f2017-02-21 17:58:28 +0530545 int ret;
Michal Simekb72894f2016-04-22 14:28:54 +0200546
Michal Simeke615f392018-10-05 08:55:16 +0200547#if defined(CONFIG_USB_ETHER) && !defined(CONFIG_USB_GADGET_DOWNLOAD)
548 usb_ether_init();
549#endif
550
Michal Simekb72894f2016-04-22 14:28:54 +0200551 if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
552 debug("Saved variables - Skipping\n");
553 return 0;
554 }
Michal Simek84c72042015-01-15 10:01:51 +0100555
Siva Durga Prasad Paladugud1db89f2017-02-21 17:58:28 +0530556 ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, &reg);
557 if (ret)
558 return -EINVAL;
559
Michal Simek47359a02016-10-25 11:43:02 +0200560 if (reg >> BOOT_MODE_ALT_SHIFT)
561 reg >>= BOOT_MODE_ALT_SHIFT;
562
Michal Simek84c72042015-01-15 10:01:51 +0100563 bootmode = reg & BOOT_MODES_MASK;
564
Michal Simekfb909172015-09-20 17:20:42 +0200565 puts("Bootmode: ");
Michal Simek84c72042015-01-15 10:01:51 +0100566 switch (bootmode) {
Michal Simekd58fc122016-08-19 14:14:52 +0200567 case USB_MODE:
568 puts("USB_MODE\n");
569 mode = "usb";
Michal Simek07656ba2017-12-01 15:18:24 +0100570 env_set("modeboot", "usb_dfu_spl");
Michal Simekd58fc122016-08-19 14:14:52 +0200571 break;
Siva Durga Prasad Paladugu0a5bcc82015-03-13 11:10:26 +0530572 case JTAG_MODE:
Michal Simekfb909172015-09-20 17:20:42 +0200573 puts("JTAG_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200574 mode = "pxe dhcp";
Michal Simek07656ba2017-12-01 15:18:24 +0100575 env_set("modeboot", "jtagboot");
Siva Durga Prasad Paladugu0a5bcc82015-03-13 11:10:26 +0530576 break;
577 case QSPI_MODE_24BIT:
578 case QSPI_MODE_32BIT:
Michal Simekb72894f2016-04-22 14:28:54 +0200579 mode = "qspi0";
Michal Simekfb909172015-09-20 17:20:42 +0200580 puts("QSPI_MODE\n");
Michal Simek07656ba2017-12-01 15:18:24 +0100581 env_set("modeboot", "qspiboot");
Siva Durga Prasad Paladugu0a5bcc82015-03-13 11:10:26 +0530582 break;
Michal Simek39c56f52015-04-15 15:02:28 +0200583 case EMMC_MODE:
Michal Simek78678fe2015-10-05 15:59:38 +0200584 puts("EMMC_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200585 mode = "mmc0";
Michal Simek07656ba2017-12-01 15:18:24 +0100586 env_set("modeboot", "emmcboot");
Michal Simek78678fe2015-10-05 15:59:38 +0200587 break;
588 case SD_MODE:
Michal Simekfb909172015-09-20 17:20:42 +0200589 puts("SD_MODE\n");
Michal Simek2882b392018-04-25 11:20:43 +0200590 if (uclass_get_device_by_name(UCLASS_MMC,
Siva Durga Prasad Paladugue7c9de62019-01-03 15:44:24 +0530591 "mmc@ff160000", &dev) &&
592 uclass_get_device_by_name(UCLASS_MMC,
Michal Simek2882b392018-04-25 11:20:43 +0200593 "sdhci@ff160000", &dev)) {
594 puts("Boot from SD0 but without SD0 enabled!\n");
595 return -1;
596 }
597 debug("mmc0 device found at %p, seq %d\n", dev, dev->seq);
598
599 mode = "mmc";
600 bootseq = dev->seq;
Michal Simek07656ba2017-12-01 15:18:24 +0100601 env_set("modeboot", "sdboot");
Michal Simek84c72042015-01-15 10:01:51 +0100602 break;
Siva Durga Prasad Paladugue1992272016-09-21 11:45:05 +0530603 case SD1_LSHFT_MODE:
604 puts("LVL_SHFT_");
605 /* fall through */
Michal Simekaf813ac2015-10-05 10:51:12 +0200606 case SD_MODE1:
Michal Simekfb909172015-09-20 17:20:42 +0200607 puts("SD_MODE1\n");
Michal Simek2882b392018-04-25 11:20:43 +0200608 if (uclass_get_device_by_name(UCLASS_MMC,
Siva Durga Prasad Paladugue7c9de62019-01-03 15:44:24 +0530609 "mmc@ff170000", &dev) &&
610 uclass_get_device_by_name(UCLASS_MMC,
Michal Simek2882b392018-04-25 11:20:43 +0200611 "sdhci@ff170000", &dev)) {
612 puts("Boot from SD1 but without SD1 enabled!\n");
613 return -1;
614 }
615 debug("mmc1 device found at %p, seq %d\n", dev, dev->seq);
616
617 mode = "mmc";
618 bootseq = dev->seq;
Michal Simek07656ba2017-12-01 15:18:24 +0100619 env_set("modeboot", "sdboot");
Michal Simekaf813ac2015-10-05 10:51:12 +0200620 break;
621 case NAND_MODE:
Michal Simekfb909172015-09-20 17:20:42 +0200622 puts("NAND_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200623 mode = "nand0";
Michal Simek07656ba2017-12-01 15:18:24 +0100624 env_set("modeboot", "nandboot");
Michal Simekaf813ac2015-10-05 10:51:12 +0200625 break;
Michal Simek84c72042015-01-15 10:01:51 +0100626 default:
Michal Simekb72894f2016-04-22 14:28:54 +0200627 mode = "";
Michal Simek84c72042015-01-15 10:01:51 +0100628 printf("Invalid Boot Mode:0x%x\n", bootmode);
629 break;
630 }
631
Michal Simek2882b392018-04-25 11:20:43 +0200632 if (bootseq >= 0) {
633 bootseq_len = snprintf(NULL, 0, "%i", bootseq);
634 debug("Bootseq len: %x\n", bootseq_len);
635 }
636
Michal Simekb72894f2016-04-22 14:28:54 +0200637 /*
638 * One terminating char + one byte for space between mode
639 * and default boot_targets
640 */
Siva Durga Prasad Paladugu01c42d32017-12-20 16:35:06 +0530641 env_targets = env_get("boot_targets");
Michal Simek0478b0b2018-04-25 11:10:34 +0200642 if (env_targets)
643 env_targets_len = strlen(env_targets);
644
Michal Simek2882b392018-04-25 11:20:43 +0200645 new_targets = calloc(1, strlen(mode) + env_targets_len + 2 +
646 bootseq_len);
Michal Simek1e3e68f2018-06-13 09:42:41 +0200647 if (!new_targets)
648 return -ENOMEM;
Michal Simek0478b0b2018-04-25 11:10:34 +0200649
Michal Simek2882b392018-04-25 11:20:43 +0200650 if (bootseq >= 0)
651 sprintf(new_targets, "%s%x %s", mode, bootseq,
652 env_targets ? env_targets : "");
653 else
654 sprintf(new_targets, "%s %s", mode,
655 env_targets ? env_targets : "");
Michal Simekb72894f2016-04-22 14:28:54 +0200656
Simon Glass382bee52017-08-03 12:22:09 -0600657 env_set("boot_targets", new_targets);
Michal Simekb72894f2016-04-22 14:28:54 +0200658
Michal Simekd348bea2018-05-17 14:06:06 +0200659 reset_reason();
660
Michal Simek84c72042015-01-15 10:01:51 +0100661 return 0;
662}
Michal Simek0bf3f9c2018-12-20 09:33:38 +0100663#endif
Siva Durga Prasad Paladugu84696ff2015-08-04 13:01:05 +0530664
665int checkboard(void)
666{
Michal Simek5af08552016-01-25 11:04:21 +0100667 puts("Board: Xilinx ZynqMP\n");
Siva Durga Prasad Paladugu84696ff2015-08-04 13:01:05 +0530668 return 0;
669}