blob: 6c8254b9824b2fca5693180f6ce1d67509129b66 [file] [log] [blame]
Michal Simek04b7e622015-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 Simekd54b1af2015-09-30 17:26:55 +02009#include <sata.h>
Michal Simekb216cc12015-07-23 13:27:40 +020010#include <ahci.h>
11#include <scsi.h>
Michal Simekecfb6dc2016-04-22 14:28:54 +020012#include <malloc.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>
16#include <asm/io.h>
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +053017#include <usb.h>
18#include <dwc3-uboot.h>
Michal Simek8111aff2016-02-01 15:05:58 +010019#include <zynqmppl.h>
Michal Simekeec32f62016-04-22 11:48:49 +020020#include <i2c.h>
Michal Simek76d0a772016-09-01 11:16:40 +020021#include <g_dnl.h>
Michal Simek04b7e622015-01-15 10:01:51 +010022
23DECLARE_GLOBAL_DATA_PTR;
24
Michal Simek8111aff2016-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 Simek6908b862017-11-06 12:55:59 +010030 u32 id;
Michal Simek50d8cef2017-08-22 14:58:53 +020031 u32 ver;
Michal Simek8111aff2016-02-01 15:05:58 +010032 char *name;
33} zynqmp_devices[] = {
34 {
35 .id = 0x10,
36 .name = "3eg",
37 },
38 {
Michal Simek50d8cef2017-08-22 14:58:53 +020039 .id = 0x10,
40 .ver = 0x2c,
41 .name = "3cg",
42 },
43 {
Michal Simek8111aff2016-02-01 15:05:58 +010044 .id = 0x11,
45 .name = "2eg",
46 },
47 {
Michal Simek50d8cef2017-08-22 14:58:53 +020048 .id = 0x11,
49 .ver = 0x2c,
50 .name = "2cg",
51 },
52 {
Michal Simek8111aff2016-02-01 15:05:58 +010053 .id = 0x20,
54 .name = "5ev",
55 },
56 {
Michal Simek50d8cef2017-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 Simek8111aff2016-02-01 15:05:58 +010067 .id = 0x21,
68 .name = "4ev",
69 },
70 {
Michal Simek50d8cef2017-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 Simek8111aff2016-02-01 15:05:58 +010081 .id = 0x30,
82 .name = "7ev",
83 },
84 {
Michal Simek50d8cef2017-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 Simek8111aff2016-02-01 15:05:58 +010095 .id = 0x38,
96 .name = "9eg",
97 },
98 {
Michal Simek50d8cef2017-08-22 14:58:53 +020099 .id = 0x38,
100 .ver = 0x2c,
101 .name = "9cg",
102 },
103 {
Michal Simek8111aff2016-02-01 15:05:58 +0100104 .id = 0x39,
105 .name = "6eg",
106 },
107 {
Michal Simek50d8cef2017-08-22 14:58:53 +0200108 .id = 0x39,
109 .ver = 0x2c,
110 .name = "6cg",
111 },
112 {
Michal Simek8111aff2016-02-01 15:05:58 +0100113 .id = 0x40,
114 .name = "11eg",
115 },
Michal Simek50d8cef2017-08-22 14:58:53 +0200116 { /* For testing purpose only */
117 .id = 0x50,
118 .ver = 0x2c,
119 .name = "15cg",
120 },
Michal Simek8111aff2016-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 Simekb510e532017-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 Simek8111aff2016-02-01 15:05:58 +0100157};
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530158#endif
Michal Simek8111aff2016-02-01 15:05:58 +0100159
Siva Durga Prasad Paladugucd35d522017-07-25 11:51:38 +0530160int chip_id(unsigned char id)
Michal Simek8111aff2016-02-01 15:05:58 +0100161{
162 struct pt_regs regs;
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530163 int val = -EINVAL;
Michal Simek8111aff2016-02-01 15:05:58 +0100164
Siva Durga Prasad Paladugu8d526532017-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 Simek8111aff2016-02-01 15:05:58 +0100170
Siva Durga Prasad Paladugu8d526532017-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 Simek50d8cef2017-08-22 14:58:53 +0200178 * regs[1][63:32] = CSU.IDCODE2 register
Siva Durga Prasad Paladugu8d526532017-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 Simek50d8cef2017-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 Paladugu8d526532017-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 Paladugu9f0a8e92017-07-25 11:51:36 +0530216 }
Soren Brinkmannd7696a52016-09-29 11:44:41 -0700217
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530218 return val;
Michal Simek8111aff2016-02-01 15:05:58 +0100219}
220
Siva Durga Prasad Paladugu8d526532017-07-25 11:51:37 +0530221#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
222 !defined(CONFIG_SPL_BUILD)
Michal Simek8111aff2016-02-01 15:05:58 +0100223static char *zynqmp_get_silicon_idcode_name(void)
224{
Michal Simek50d8cef2017-08-22 14:58:53 +0200225 u32 i, id, ver;
Michal Simek8111aff2016-02-01 15:05:58 +0100226
Siva Durga Prasad Paladugu9f0a8e92017-07-25 11:51:36 +0530227 id = chip_id(IDCODE);
Michal Simek50d8cef2017-08-22 14:58:53 +0200228 ver = chip_id(IDCODE2);
229
Michal Simek8111aff2016-02-01 15:05:58 +0100230 for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
Michal Simek50d8cef2017-08-22 14:58:53 +0200231 if (zynqmp_devices[i].id == id && zynqmp_devices[i].ver == ver)
Michal Simek8111aff2016-02-01 15:05:58 +0100232 return zynqmp_devices[i].name;
233 }
234 return "unknown";
235}
236#endif
237
Michal Simek8b353302017-02-07 14:32:26 +0100238int board_early_init_f(void)
239{
Michal Simekc8785f22018-01-10 11:48:48 +0100240 int ret = 0;
Michal Simek8b353302017-02-07 14:32:26 +0100241#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CLK_ZYNQMP)
242 zynqmp_pmufw_version();
243#endif
Michal Simeke0f36102017-07-12 13:08:41 +0200244
Michal Simek1a1ab5a2018-01-15 12:52:59 +0100245#if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED)
Michal Simekc8785f22018-01-10 11:48:48 +0100246 ret = psu_init();
Michal Simeke0f36102017-07-12 13:08:41 +0200247#endif
248
Michal Simekc8785f22018-01-10 11:48:48 +0100249 return ret;
Michal Simek8b353302017-02-07 14:32:26 +0100250}
251
Michal Simek8111aff2016-02-01 15:05:58 +0100252#define ZYNQMP_VERSION_SIZE 9
253
Michal Simek04b7e622015-01-15 10:01:51 +0100254int board_init(void)
255{
Michal Simekfb7242d2015-06-22 14:31:06 +0200256 printf("EL Level:\tEL%d\n", current_el());
257
Michal Simek8111aff2016-02-01 15:05:58 +0100258#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
259 !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \
260 defined(CONFIG_SPL_BUILD))
261 if (current_el() != 3) {
262 static char version[ZYNQMP_VERSION_SIZE];
263
Michal Simek54cae482017-12-06 08:33:50 +0100264 strncat(version, "zu", 2);
Michal Simek8111aff2016-02-01 15:05:58 +0100265 zynqmppl.name = strncat(version,
266 zynqmp_get_silicon_idcode_name(),
Michal Simek54cae482017-12-06 08:33:50 +0100267 ZYNQMP_VERSION_SIZE - 3);
Michal Simek8111aff2016-02-01 15:05:58 +0100268 printf("Chip ID:\t%s\n", zynqmppl.name);
269 fpga_init();
270 fpga_add(fpga_xilinx, &zynqmppl);
271 }
272#endif
273
Michal Simek04b7e622015-01-15 10:01:51 +0100274 return 0;
275}
276
277int board_early_init_r(void)
278{
279 u32 val;
280
Siva Durga Prasad Paladugu64d90002017-12-07 15:05:30 +0530281 if (current_el() != 3)
282 return 0;
283
Michal Simek245d5282017-07-12 10:32:18 +0200284 val = readl(&crlapb_base->timestamp_ref_ctrl);
285 val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
286
Siva Durga Prasad Paladugu64d90002017-12-07 15:05:30 +0530287 if (!val) {
Michal Simekc23d3f82015-11-05 08:34:35 +0100288 val = readl(&crlapb_base->timestamp_ref_ctrl);
289 val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
290 writel(val, &crlapb_base->timestamp_ref_ctrl);
Michal Simek04b7e622015-01-15 10:01:51 +0100291
Michal Simekc23d3f82015-11-05 08:34:35 +0100292 /* Program freq register in System counter */
293 writel(zynqmp_get_system_timer_freq(),
294 &iou_scntr_secure->base_frequency_id_register);
295 /* And enable system counter */
296 writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN,
297 &iou_scntr_secure->counter_control_register);
298 }
Michal Simek04b7e622015-01-15 10:01:51 +0100299 return 0;
300}
301
Michal Simekeec32f62016-04-22 11:48:49 +0200302int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
303{
304#if defined(CONFIG_ZYNQ_GEM_EEPROM_ADDR) && \
305 defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET) && \
306 defined(CONFIG_ZYNQ_EEPROM_BUS)
307 i2c_set_bus_num(CONFIG_ZYNQ_EEPROM_BUS);
308
309 if (eeprom_read(CONFIG_ZYNQ_GEM_EEPROM_ADDR,
310 CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET,
311 ethaddr, 6))
312 printf("I2C EEPROM MAC address read failed\n");
313#endif
314
315 return 0;
316}
317
Michal Simek8faa66a2016-02-08 09:34:53 +0100318#if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE)
Simon Glass2f949c32017-03-31 08:40:32 -0600319int dram_init_banksize(void)
Michal Simek8faa66a2016-02-08 09:34:53 +0100320{
Michal Simekd5b7de62017-11-03 15:25:51 +0100321 return fdtdec_setup_memory_banksize();
Tom Riniedcfdbd2016-12-09 07:56:54 -0500322}
Michal Simek8faa66a2016-02-08 09:34:53 +0100323
Tom Riniedcfdbd2016-12-09 07:56:54 -0500324int dram_init(void)
325{
Nathan Rossiac04bfa2016-12-19 00:03:34 +1000326 if (fdtdec_setup_memory_size() != 0)
327 return -EINVAL;
Tom Riniedcfdbd2016-12-09 07:56:54 -0500328
329 return 0;
Michal Simek8faa66a2016-02-08 09:34:53 +0100330}
331#else
Michal Simek04b7e622015-01-15 10:01:51 +0100332int dram_init(void)
333{
334 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
335
336 return 0;
337}
Michal Simek8faa66a2016-02-08 09:34:53 +0100338#endif
Michal Simek04b7e622015-01-15 10:01:51 +0100339
Michal Simek04b7e622015-01-15 10:01:51 +0100340void reset_cpu(ulong addr)
341{
342}
343
Michal Simek04b7e622015-01-15 10:01:51 +0100344int board_late_init(void)
345{
346 u32 reg = 0;
347 u8 bootmode;
Michal Simekecfb6dc2016-04-22 14:28:54 +0200348 const char *mode;
349 char *new_targets;
Siva Durga Prasad Paladugu245c5562017-12-20 16:35:06 +0530350 char *env_targets;
Siva Durga Prasad Paladugue6fd3bb2017-02-21 17:58:28 +0530351 int ret;
Michal Simekecfb6dc2016-04-22 14:28:54 +0200352
353 if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
354 debug("Saved variables - Skipping\n");
355 return 0;
356 }
Michal Simek04b7e622015-01-15 10:01:51 +0100357
Siva Durga Prasad Paladugue6fd3bb2017-02-21 17:58:28 +0530358 ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, &reg);
359 if (ret)
360 return -EINVAL;
361
Michal Simek833e0c42016-10-25 11:43:02 +0200362 if (reg >> BOOT_MODE_ALT_SHIFT)
363 reg >>= BOOT_MODE_ALT_SHIFT;
364
Michal Simek04b7e622015-01-15 10:01:51 +0100365 bootmode = reg & BOOT_MODES_MASK;
366
Michal Simekc5d95232015-09-20 17:20:42 +0200367 puts("Bootmode: ");
Michal Simek04b7e622015-01-15 10:01:51 +0100368 switch (bootmode) {
Michal Simek12398ea2016-08-19 14:14:52 +0200369 case USB_MODE:
370 puts("USB_MODE\n");
371 mode = "usb";
Michal Simek43380352017-12-01 15:18:24 +0100372 env_set("modeboot", "usb_dfu_spl");
Michal Simek12398ea2016-08-19 14:14:52 +0200373 break;
Siva Durga Prasad Paladugu30f0fc72015-03-13 11:10:26 +0530374 case JTAG_MODE:
Michal Simekc5d95232015-09-20 17:20:42 +0200375 puts("JTAG_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200376 mode = "pxe dhcp";
Michal Simek43380352017-12-01 15:18:24 +0100377 env_set("modeboot", "jtagboot");
Siva Durga Prasad Paladugu30f0fc72015-03-13 11:10:26 +0530378 break;
379 case QSPI_MODE_24BIT:
380 case QSPI_MODE_32BIT:
Michal Simekecfb6dc2016-04-22 14:28:54 +0200381 mode = "qspi0";
Michal Simekc5d95232015-09-20 17:20:42 +0200382 puts("QSPI_MODE\n");
Michal Simek43380352017-12-01 15:18:24 +0100383 env_set("modeboot", "qspiboot");
Siva Durga Prasad Paladugu30f0fc72015-03-13 11:10:26 +0530384 break;
Michal Simek02d66cd2015-04-15 15:02:28 +0200385 case EMMC_MODE:
Michal Simekdf7ff0a2015-10-05 15:59:38 +0200386 puts("EMMC_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200387 mode = "mmc0";
Michal Simek43380352017-12-01 15:18:24 +0100388 env_set("modeboot", "emmcboot");
Michal Simekdf7ff0a2015-10-05 15:59:38 +0200389 break;
390 case SD_MODE:
Michal Simekc5d95232015-09-20 17:20:42 +0200391 puts("SD_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200392 mode = "mmc0";
Michal Simek43380352017-12-01 15:18:24 +0100393 env_set("modeboot", "sdboot");
Michal Simek04b7e622015-01-15 10:01:51 +0100394 break;
Siva Durga Prasad Paladugu29a77d22016-09-21 11:45:05 +0530395 case SD1_LSHFT_MODE:
396 puts("LVL_SHFT_");
397 /* fall through */
Michal Simek108e1842015-10-05 10:51:12 +0200398 case SD_MODE1:
Michal Simekc5d95232015-09-20 17:20:42 +0200399 puts("SD_MODE1\n");
Michal Simek6d902452015-11-06 10:22:37 +0100400#if defined(CONFIG_ZYNQ_SDHCI0) && defined(CONFIG_ZYNQ_SDHCI1)
Michal Simekecfb6dc2016-04-22 14:28:54 +0200401 mode = "mmc1";
Michal Simek43380352017-12-01 15:18:24 +0100402 env_set("sdbootdev", "1");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200403#else
404 mode = "mmc0";
Michal Simek6d902452015-11-06 10:22:37 +0100405#endif
Michal Simek43380352017-12-01 15:18:24 +0100406 env_set("modeboot", "sdboot");
Michal Simek108e1842015-10-05 10:51:12 +0200407 break;
408 case NAND_MODE:
Michal Simekc5d95232015-09-20 17:20:42 +0200409 puts("NAND_MODE\n");
Michal Simekecfb6dc2016-04-22 14:28:54 +0200410 mode = "nand0";
Michal Simek43380352017-12-01 15:18:24 +0100411 env_set("modeboot", "nandboot");
Michal Simek108e1842015-10-05 10:51:12 +0200412 break;
Michal Simek04b7e622015-01-15 10:01:51 +0100413 default:
Michal Simekecfb6dc2016-04-22 14:28:54 +0200414 mode = "";
Michal Simek04b7e622015-01-15 10:01:51 +0100415 printf("Invalid Boot Mode:0x%x\n", bootmode);
416 break;
417 }
418
Michal Simekecfb6dc2016-04-22 14:28:54 +0200419 /*
420 * One terminating char + one byte for space between mode
421 * and default boot_targets
422 */
Siva Durga Prasad Paladugu245c5562017-12-20 16:35:06 +0530423 env_targets = env_get("boot_targets");
424 if (env_targets) {
425 new_targets = calloc(1, strlen(mode) +
426 strlen(env_targets) + 2);
427 sprintf(new_targets, "%s %s", mode, env_targets);
428 } else {
429 new_targets = calloc(1, strlen(mode) + 2);
430 sprintf(new_targets, "%s", mode);
431 }
Michal Simekecfb6dc2016-04-22 14:28:54 +0200432
Simon Glass6a38e412017-08-03 12:22:09 -0600433 env_set("boot_targets", new_targets);
Michal Simekecfb6dc2016-04-22 14:28:54 +0200434
Michal Simek04b7e622015-01-15 10:01:51 +0100435 return 0;
436}
Siva Durga Prasad Paladugu650e0a32015-08-04 13:01:05 +0530437
438int checkboard(void)
439{
Michal Simek47ce9362016-01-25 11:04:21 +0100440 puts("Board: Xilinx ZynqMP\n");
Siva Durga Prasad Paladugu650e0a32015-08-04 13:01:05 +0530441 return 0;
442}
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +0530443
444#ifdef CONFIG_USB_DWC3
Michal Simekea526be2016-08-08 10:11:26 +0200445static struct dwc3_device dwc3_device_data0 = {
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +0530446 .maximum_speed = USB_SPEED_HIGH,
447 .base = ZYNQMP_USB0_XHCI_BASEADDR,
448 .dr_mode = USB_DR_MODE_PERIPHERAL,
449 .index = 0,
450};
451
Michal Simekea526be2016-08-08 10:11:26 +0200452static struct dwc3_device dwc3_device_data1 = {
453 .maximum_speed = USB_SPEED_HIGH,
454 .base = ZYNQMP_USB1_XHCI_BASEADDR,
455 .dr_mode = USB_DR_MODE_PERIPHERAL,
456 .index = 1,
457};
458
Michal Simek76d0a772016-09-01 11:16:40 +0200459int usb_gadget_handle_interrupts(int index)
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +0530460{
Michal Simek76d0a772016-09-01 11:16:40 +0200461 dwc3_uboot_handle_interrupt(index);
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +0530462 return 0;
463}
464
465int board_usb_init(int index, enum usb_init_type init)
466{
Michal Simekea526be2016-08-08 10:11:26 +0200467 debug("%s: index %x\n", __func__, index);
468
Michal Simek7987d2a2016-09-01 11:27:32 +0200469#if defined(CONFIG_USB_GADGET_DOWNLOAD)
470 g_dnl_set_serialnumber(CONFIG_SYS_CONFIG_NAME);
471#endif
472
Michal Simekea526be2016-08-08 10:11:26 +0200473 switch (index) {
474 case 0:
475 return dwc3_uboot_init(&dwc3_device_data0);
476 case 1:
477 return dwc3_uboot_init(&dwc3_device_data1);
478 };
479
480 return -1;
Siva Durga Prasad Paladuguba1f68e2015-08-04 13:03:26 +0530481}
482
483int board_usb_cleanup(int index, enum usb_init_type init)
484{
485 dwc3_uboot_exit(index);
486 return 0;
487}
488#endif