blob: f769db7e81b9836832a140e9364290f8c083795a [file] [log] [blame]
Michal Simek84c72042015-01-15 10:01:51 +01001/*
2 * (C) Copyright 2014 - 2015 Xilinx, Inc.
3 * Michal Simek <michal.simek@xilinx.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Michal Simek679b9942015-09-30 17:26:55 +02009#include <sata.h>
Michal Simek6fe6f132015-07-23 13:27:40 +020010#include <ahci.h>
11#include <scsi.h>
Michal Simekb72894f2016-04-22 14:28:54 +020012#include <malloc.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>
16#include <asm/io.h>
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +053017#include <usb.h>
18#include <dwc3-uboot.h>
Michal Simek47e60cb2016-02-01 15:05:58 +010019#include <zynqmppl.h>
Michal Simek6919b4b2016-04-22 11:48:49 +020020#include <i2c.h>
Michal Simek9feff382016-09-01 11:16:40 +020021#include <g_dnl.h>
Michal Simek84c72042015-01-15 10:01:51 +010022
23DECLARE_GLOBAL_DATA_PTR;
24
Michal Simek47e60cb2016-02-01 15:05:58 +010025#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
26 !defined(CONFIG_SPL_BUILD)
27static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC;
28
29static const struct {
Michal Simek8ebdf9e2017-11-06 12:55:59 +010030 u32 id;
Michal Simek494fffe2017-08-22 14:58:53 +020031 u32 ver;
Michal Simek47e60cb2016-02-01 15:05:58 +010032 char *name;
33} zynqmp_devices[] = {
34 {
35 .id = 0x10,
36 .name = "3eg",
37 },
38 {
Michal Simek494fffe2017-08-22 14:58:53 +020039 .id = 0x10,
40 .ver = 0x2c,
41 .name = "3cg",
42 },
43 {
Michal Simek47e60cb2016-02-01 15:05:58 +010044 .id = 0x11,
45 .name = "2eg",
46 },
47 {
Michal Simek494fffe2017-08-22 14:58:53 +020048 .id = 0x11,
49 .ver = 0x2c,
50 .name = "2cg",
51 },
52 {
Michal Simek47e60cb2016-02-01 15:05:58 +010053 .id = 0x20,
54 .name = "5ev",
55 },
56 {
Michal Simek494fffe2017-08-22 14:58:53 +020057 .id = 0x20,
58 .ver = 0x100,
59 .name = "5eg",
60 },
61 {
62 .id = 0x20,
63 .ver = 0x12c,
64 .name = "5cg",
65 },
66 {
Michal Simek47e60cb2016-02-01 15:05:58 +010067 .id = 0x21,
68 .name = "4ev",
69 },
70 {
Michal Simek494fffe2017-08-22 14:58:53 +020071 .id = 0x21,
72 .ver = 0x100,
73 .name = "4eg",
74 },
75 {
76 .id = 0x21,
77 .ver = 0x12c,
78 .name = "4cg",
79 },
80 {
Michal Simek47e60cb2016-02-01 15:05:58 +010081 .id = 0x30,
82 .name = "7ev",
83 },
84 {
Michal Simek494fffe2017-08-22 14:58:53 +020085 .id = 0x30,
86 .ver = 0x100,
87 .name = "7eg",
88 },
89 {
90 .id = 0x30,
91 .ver = 0x12c,
92 .name = "7cg",
93 },
94 {
Michal Simek47e60cb2016-02-01 15:05:58 +010095 .id = 0x38,
96 .name = "9eg",
97 },
98 {
Michal Simek494fffe2017-08-22 14:58:53 +020099 .id = 0x38,
100 .ver = 0x2c,
101 .name = "9cg",
102 },
103 {
Michal Simek47e60cb2016-02-01 15:05:58 +0100104 .id = 0x39,
105 .name = "6eg",
106 },
107 {
Michal Simek494fffe2017-08-22 14:58:53 +0200108 .id = 0x39,
109 .ver = 0x2c,
110 .name = "6cg",
111 },
112 {
Michal Simek47e60cb2016-02-01 15:05:58 +0100113 .id = 0x40,
114 .name = "11eg",
115 },
Michal Simek494fffe2017-08-22 14:58:53 +0200116 { /* For testing purpose only */
117 .id = 0x50,
118 .ver = 0x2c,
119 .name = "15cg",
120 },
Michal Simek47e60cb2016-02-01 15:05:58 +0100121 {
122 .id = 0x50,
123 .name = "15eg",
124 },
125 {
126 .id = 0x58,
127 .name = "19eg",
128 },
129 {
130 .id = 0x59,
131 .name = "17eg",
132 },
Michal Simekb030fed2017-06-02 08:08:59 +0200133 {
134 .id = 0x61,
135 .name = "21dr",
136 },
137 {
138 .id = 0x63,
139 .name = "23dr",
140 },
141 {
142 .id = 0x65,
143 .name = "25dr",
144 },
145 {
146 .id = 0x64,
147 .name = "27dr",
148 },
149 {
150 .id = 0x60,
151 .name = "28dr",
152 },
153 {
154 .id = 0x62,
155 .name = "29dr",
156 },
Michal Simek47e60cb2016-02-01 15:05:58 +0100157};
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530158#endif
Michal Simek47e60cb2016-02-01 15:05:58 +0100159
Siva Durga Prasad Paladuguf52bf5a2017-07-25 11:51:38 +0530160int chip_id(unsigned char id)
Michal Simek47e60cb2016-02-01 15:05:58 +0100161{
162 struct pt_regs regs;
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530163 int val = -EINVAL;
Michal Simek47e60cb2016-02-01 15:05:58 +0100164
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530165 if (current_el() != 3) {
166 regs.regs[0] = ZYNQMP_SIP_SVC_CSU_DMA_CHIPID;
167 regs.regs[1] = 0;
168 regs.regs[2] = 0;
169 regs.regs[3] = 0;
Michal Simek47e60cb2016-02-01 15:05:58 +0100170
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530171 smc_call(&regs);
172
173 /*
174 * SMC returns:
175 * regs[0][31:0] = status of the operation
176 * regs[0][63:32] = CSU.IDCODE register
177 * regs[1][31:0] = CSU.version register
Michal Simek494fffe2017-08-22 14:58:53 +0200178 * regs[1][63:32] = CSU.IDCODE2 register
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530179 */
180 switch (id) {
181 case IDCODE:
182 regs.regs[0] = upper_32_bits(regs.regs[0]);
183 regs.regs[0] &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
184 ZYNQMP_CSU_IDCODE_SVD_MASK;
185 regs.regs[0] >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
186 val = regs.regs[0];
187 break;
188 case VERSION:
189 regs.regs[1] = lower_32_bits(regs.regs[1]);
190 regs.regs[1] &= ZYNQMP_CSU_SILICON_VER_MASK;
191 val = regs.regs[1];
192 break;
Michal Simek494fffe2017-08-22 14:58:53 +0200193 case IDCODE2:
194 regs.regs[1] = lower_32_bits(regs.regs[1]);
195 regs.regs[1] >>= ZYNQMP_CSU_VERSION_EMPTY_SHIFT;
196 val = regs.regs[1];
197 break;
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530198 default:
199 printf("%s, Invalid Req:0x%x\n", __func__, id);
200 }
201 } else {
202 switch (id) {
203 case IDCODE:
204 val = readl(ZYNQMP_CSU_IDCODE_ADDR);
205 val &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
206 ZYNQMP_CSU_IDCODE_SVD_MASK;
207 val >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
208 break;
209 case VERSION:
210 val = readl(ZYNQMP_CSU_VER_ADDR);
211 val &= ZYNQMP_CSU_SILICON_VER_MASK;
212 break;
213 default:
214 printf("%s, Invalid Req:0x%x\n", __func__, id);
215 }
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530216 }
Soren Brinkmann0cba6ab2016-09-29 11:44:41 -0700217
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530218 return val;
Michal Simek47e60cb2016-02-01 15:05:58 +0100219}
220
Siva Durga Prasad Paladugu74ba69d2017-07-25 11:51:37 +0530221#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
222 !defined(CONFIG_SPL_BUILD)
Michal Simek47e60cb2016-02-01 15:05:58 +0100223static char *zynqmp_get_silicon_idcode_name(void)
224{
Michal Simek494fffe2017-08-22 14:58:53 +0200225 u32 i, id, ver;
Michal Simek47e60cb2016-02-01 15:05:58 +0100226
Siva Durga Prasad Paladugudb3123b2017-07-25 11:51:36 +0530227 id = chip_id(IDCODE);
Michal Simek494fffe2017-08-22 14:58:53 +0200228 ver = chip_id(IDCODE2);
229
Michal Simek47e60cb2016-02-01 15:05:58 +0100230 for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
Michal Simek494fffe2017-08-22 14:58:53 +0200231 if (zynqmp_devices[i].id == id && zynqmp_devices[i].ver == ver)
Michal Simek47e60cb2016-02-01 15:05:58 +0100232 return zynqmp_devices[i].name;
233 }
234 return "unknown";
235}
236#endif
237
Michal Simekfb4000e2017-02-07 14:32:26 +0100238int board_early_init_f(void)
239{
240#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CLK_ZYNQMP)
241 zynqmp_pmufw_version();
242#endif
Michal Simek55de0922017-07-12 13:08:41 +0200243
Michal Simekfd1b6352017-07-12 13:21:27 +0200244#if defined(CONFIG_SPL_BUILD) || defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED)
Michal Simek55de0922017-07-12 13:08:41 +0200245 psu_init();
246#endif
247
Michal Simekfb4000e2017-02-07 14:32:26 +0100248 return 0;
249}
250
Michal Simek47e60cb2016-02-01 15:05:58 +0100251#define ZYNQMP_VERSION_SIZE 9
252
Michal Simek84c72042015-01-15 10:01:51 +0100253int board_init(void)
254{
Michal Simeka0736ef2015-06-22 14:31:06 +0200255 printf("EL Level:\tEL%d\n", current_el());
256
Michal Simek47e60cb2016-02-01 15:05:58 +0100257#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
258 !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \
259 defined(CONFIG_SPL_BUILD))
260 if (current_el() != 3) {
261 static char version[ZYNQMP_VERSION_SIZE];
262
Heinrich Schuchardtdf1cd462017-07-30 22:18:18 +0200263 strncat(version, "xczu", 4);
Michal Simek47e60cb2016-02-01 15:05:58 +0100264 zynqmppl.name = strncat(version,
265 zynqmp_get_silicon_idcode_name(),
Heinrich Schuchardtdf1cd462017-07-30 22:18:18 +0200266 ZYNQMP_VERSION_SIZE - 5);
Michal Simek47e60cb2016-02-01 15:05:58 +0100267 printf("Chip ID:\t%s\n", zynqmppl.name);
268 fpga_init();
269 fpga_add(fpga_xilinx, &zynqmppl);
270 }
271#endif
272
Michal Simek84c72042015-01-15 10:01:51 +0100273 return 0;
274}
275
276int board_early_init_r(void)
277{
278 u32 val;
279
Michal Simek90a35db2017-07-12 10:32:18 +0200280 val = readl(&crlapb_base->timestamp_ref_ctrl);
281 val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
282
283 if (current_el() == 3 && !val) {
Michal Simek0785dfd2015-11-05 08:34:35 +0100284 val = readl(&crlapb_base->timestamp_ref_ctrl);
285 val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
286 writel(val, &crlapb_base->timestamp_ref_ctrl);
Michal Simek84c72042015-01-15 10:01:51 +0100287
Michal Simek0785dfd2015-11-05 08:34:35 +0100288 /* Program freq register in System counter */
289 writel(zynqmp_get_system_timer_freq(),
290 &iou_scntr_secure->base_frequency_id_register);
291 /* And enable system counter */
292 writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN,
293 &iou_scntr_secure->counter_control_register);
294 }
Michal Simek84c72042015-01-15 10:01:51 +0100295 return 0;
296}
297
Michal Simek6919b4b2016-04-22 11:48:49 +0200298int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
299{
300#if defined(CONFIG_ZYNQ_GEM_EEPROM_ADDR) && \
301 defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET) && \
302 defined(CONFIG_ZYNQ_EEPROM_BUS)
303 i2c_set_bus_num(CONFIG_ZYNQ_EEPROM_BUS);
304
305 if (eeprom_read(CONFIG_ZYNQ_GEM_EEPROM_ADDR,
306 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET,
307 ethaddr, 6))
308 printf("I2C EEPROM MAC address read failed\n");
309#endif
310
311 return 0;
312}
313
Michal Simek8d59d7f2016-02-08 09:34:53 +0100314#if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE)
Simon Glass76b00ac2017-03-31 08:40:32 -0600315int dram_init_banksize(void)
Tom Rini361a8792016-12-09 07:56:54 -0500316{
Michal Simekda3f0032017-11-03 15:25:51 +0100317 return fdtdec_setup_memory_banksize();
Michal Simek8d59d7f2016-02-08 09:34:53 +0100318}
319
320int dram_init(void)
321{
Nathan Rossi950f86c2016-12-19 00:03:34 +1000322 if (fdtdec_setup_memory_size() != 0)
323 return -EINVAL;
Michal Simek8d59d7f2016-02-08 09:34:53 +0100324
325 return 0;
326}
327#else
Michal Simek84c72042015-01-15 10:01:51 +0100328int dram_init(void)
329{
330 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
331
332 return 0;
333}
Michal Simek8d59d7f2016-02-08 09:34:53 +0100334#endif
Michal Simek84c72042015-01-15 10:01:51 +0100335
Michal Simek84c72042015-01-15 10:01:51 +0100336void reset_cpu(ulong addr)
337{
338}
339
Michal Simek84c72042015-01-15 10:01:51 +0100340int board_late_init(void)
341{
342 u32 reg = 0;
343 u8 bootmode;
Michal Simekb72894f2016-04-22 14:28:54 +0200344 const char *mode;
345 char *new_targets;
346
347 if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
348 debug("Saved variables - Skipping\n");
349 return 0;
350 }
Michal Simek84c72042015-01-15 10:01:51 +0100351
352 reg = readl(&crlapb_base->boot_mode);
Michal Simek47359a02016-10-25 11:43:02 +0200353 if (reg >> BOOT_MODE_ALT_SHIFT)
354 reg >>= BOOT_MODE_ALT_SHIFT;
355
Michal Simek84c72042015-01-15 10:01:51 +0100356 bootmode = reg & BOOT_MODES_MASK;
357
Michal Simekfb909172015-09-20 17:20:42 +0200358 puts("Bootmode: ");
Michal Simek84c72042015-01-15 10:01:51 +0100359 switch (bootmode) {
Michal Simekd58fc122016-08-19 14:14:52 +0200360 case USB_MODE:
361 puts("USB_MODE\n");
362 mode = "usb";
363 break;
Siva Durga Prasad Paladugu0a5bcc82015-03-13 11:10:26 +0530364 case JTAG_MODE:
Michal Simekfb909172015-09-20 17:20:42 +0200365 puts("JTAG_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200366 mode = "pxe dhcp";
Siva Durga Prasad Paladugu0a5bcc82015-03-13 11:10:26 +0530367 break;
368 case QSPI_MODE_24BIT:
369 case QSPI_MODE_32BIT:
Michal Simekb72894f2016-04-22 14:28:54 +0200370 mode = "qspi0";
Michal Simekfb909172015-09-20 17:20:42 +0200371 puts("QSPI_MODE\n");
Siva Durga Prasad Paladugu0a5bcc82015-03-13 11:10:26 +0530372 break;
Michal Simek39c56f52015-04-15 15:02:28 +0200373 case EMMC_MODE:
Michal Simek78678fe2015-10-05 15:59:38 +0200374 puts("EMMC_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200375 mode = "mmc0";
Michal Simek78678fe2015-10-05 15:59:38 +0200376 break;
377 case SD_MODE:
Michal Simekfb909172015-09-20 17:20:42 +0200378 puts("SD_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200379 mode = "mmc0";
Michal Simek84c72042015-01-15 10:01:51 +0100380 break;
Siva Durga Prasad Paladugue1992272016-09-21 11:45:05 +0530381 case SD1_LSHFT_MODE:
382 puts("LVL_SHFT_");
383 /* fall through */
Michal Simekaf813ac2015-10-05 10:51:12 +0200384 case SD_MODE1:
Michal Simekfb909172015-09-20 17:20:42 +0200385 puts("SD_MODE1\n");
Michal Simek2d9925b2015-11-06 10:22:37 +0100386#if defined(CONFIG_ZYNQ_SDHCI0) && defined(CONFIG_ZYNQ_SDHCI1)
Michal Simekb72894f2016-04-22 14:28:54 +0200387 mode = "mmc1";
388#else
389 mode = "mmc0";
Michal Simek2d9925b2015-11-06 10:22:37 +0100390#endif
Michal Simekaf813ac2015-10-05 10:51:12 +0200391 break;
392 case NAND_MODE:
Michal Simekfb909172015-09-20 17:20:42 +0200393 puts("NAND_MODE\n");
Michal Simekb72894f2016-04-22 14:28:54 +0200394 mode = "nand0";
Michal Simekaf813ac2015-10-05 10:51:12 +0200395 break;
Michal Simek84c72042015-01-15 10:01:51 +0100396 default:
Michal Simekb72894f2016-04-22 14:28:54 +0200397 mode = "";
Michal Simek84c72042015-01-15 10:01:51 +0100398 printf("Invalid Boot Mode:0x%x\n", bootmode);
399 break;
400 }
401
Michal Simekb72894f2016-04-22 14:28:54 +0200402 /*
403 * One terminating char + one byte for space between mode
404 * and default boot_targets
405 */
406 new_targets = calloc(1, strlen(mode) +
Simon Glass00caae62017-08-03 12:22:12 -0600407 strlen(env_get("boot_targets")) + 2);
Michal Simekb72894f2016-04-22 14:28:54 +0200408
Simon Glass00caae62017-08-03 12:22:12 -0600409 sprintf(new_targets, "%s %s", mode, env_get("boot_targets"));
Simon Glass382bee52017-08-03 12:22:09 -0600410 env_set("boot_targets", new_targets);
Michal Simekb72894f2016-04-22 14:28:54 +0200411
Michal Simek84c72042015-01-15 10:01:51 +0100412 return 0;
413}
Siva Durga Prasad Paladugu84696ff2015-08-04 13:01:05 +0530414
415int checkboard(void)
416{
Michal Simek5af08552016-01-25 11:04:21 +0100417 puts("Board: Xilinx ZynqMP\n");
Siva Durga Prasad Paladugu84696ff2015-08-04 13:01:05 +0530418 return 0;
419}
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +0530420
421#ifdef CONFIG_USB_DWC3
Michal Simek275bd6d2016-08-08 10:11:26 +0200422static struct dwc3_device dwc3_device_data0 = {
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +0530423 .maximum_speed = USB_SPEED_HIGH,
424 .base = ZYNQMP_USB0_XHCI_BASEADDR,
425 .dr_mode = USB_DR_MODE_PERIPHERAL,
426 .index = 0,
427};
428
Michal Simek275bd6d2016-08-08 10:11:26 +0200429static struct dwc3_device dwc3_device_data1 = {
430 .maximum_speed = USB_SPEED_HIGH,
431 .base = ZYNQMP_USB1_XHCI_BASEADDR,
432 .dr_mode = USB_DR_MODE_PERIPHERAL,
433 .index = 1,
434};
435
Michal Simek9feff382016-09-01 11:16:40 +0200436int usb_gadget_handle_interrupts(int index)
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +0530437{
Michal Simek9feff382016-09-01 11:16:40 +0200438 dwc3_uboot_handle_interrupt(index);
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +0530439 return 0;
440}
441
442int board_usb_init(int index, enum usb_init_type init)
443{
Michal Simek275bd6d2016-08-08 10:11:26 +0200444 debug("%s: index %x\n", __func__, index);
445
Michal Simek8ecd50c2016-09-01 11:27:32 +0200446#if defined(CONFIG_USB_GADGET_DOWNLOAD)
447 g_dnl_set_serialnumber(CONFIG_SYS_CONFIG_NAME);
448#endif
449
Michal Simek275bd6d2016-08-08 10:11:26 +0200450 switch (index) {
451 case 0:
452 return dwc3_uboot_init(&dwc3_device_data0);
453 case 1:
454 return dwc3_uboot_init(&dwc3_device_data1);
455 };
456
457 return -1;
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +0530458}
459
460int board_usb_cleanup(int index, enum usb_init_type init)
461{
462 dwc3_uboot_exit(index);
463 return 0;
464}
465#endif