Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 1 | /* |
| 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 Simek | 679b994 | 2015-09-30 17:26:55 +0200 | [diff] [blame] | 9 | #include <sata.h> |
Michal Simek | 6fe6f13 | 2015-07-23 13:27:40 +0200 | [diff] [blame] | 10 | #include <ahci.h> |
| 11 | #include <scsi.h> |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 12 | #include <malloc.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> |
| 16 | #include <asm/io.h> |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 17 | #include <usb.h> |
| 18 | #include <dwc3-uboot.h> |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 19 | #include <zynqmppl.h> |
Michal Simek | 6919b4b | 2016-04-22 11:48:49 +0200 | [diff] [blame] | 20 | #include <i2c.h> |
Michal Simek | 9feff38 | 2016-09-01 11:16:40 +0200 | [diff] [blame] | 21 | #include <g_dnl.h> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 22 | |
| 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 25 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \ |
| 26 | !defined(CONFIG_SPL_BUILD) |
| 27 | static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC; |
| 28 | |
| 29 | static const struct { |
| 30 | uint32_t id; |
| 31 | char *name; |
| 32 | } zynqmp_devices[] = { |
| 33 | { |
| 34 | .id = 0x10, |
| 35 | .name = "3eg", |
| 36 | }, |
| 37 | { |
| 38 | .id = 0x11, |
| 39 | .name = "2eg", |
| 40 | }, |
| 41 | { |
| 42 | .id = 0x20, |
| 43 | .name = "5ev", |
| 44 | }, |
| 45 | { |
| 46 | .id = 0x21, |
| 47 | .name = "4ev", |
| 48 | }, |
| 49 | { |
| 50 | .id = 0x30, |
| 51 | .name = "7ev", |
| 52 | }, |
| 53 | { |
| 54 | .id = 0x38, |
| 55 | .name = "9eg", |
| 56 | }, |
| 57 | { |
| 58 | .id = 0x39, |
| 59 | .name = "6eg", |
| 60 | }, |
| 61 | { |
| 62 | .id = 0x40, |
| 63 | .name = "11eg", |
| 64 | }, |
| 65 | { |
| 66 | .id = 0x50, |
| 67 | .name = "15eg", |
| 68 | }, |
| 69 | { |
| 70 | .id = 0x58, |
| 71 | .name = "19eg", |
| 72 | }, |
| 73 | { |
| 74 | .id = 0x59, |
| 75 | .name = "17eg", |
| 76 | }, |
| 77 | }; |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 78 | #endif |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 79 | |
Siva Durga Prasad Paladugu | f52bf5a | 2017-07-25 11:51:38 +0530 | [diff] [blame] | 80 | int chip_id(unsigned char id) |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 81 | { |
| 82 | struct pt_regs regs; |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 83 | int val = -EINVAL; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 84 | |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 85 | if (current_el() != 3) { |
| 86 | regs.regs[0] = ZYNQMP_SIP_SVC_CSU_DMA_CHIPID; |
| 87 | regs.regs[1] = 0; |
| 88 | regs.regs[2] = 0; |
| 89 | regs.regs[3] = 0; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 90 | |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 91 | smc_call(®s); |
| 92 | |
| 93 | /* |
| 94 | * SMC returns: |
| 95 | * regs[0][31:0] = status of the operation |
| 96 | * regs[0][63:32] = CSU.IDCODE register |
| 97 | * regs[1][31:0] = CSU.version register |
| 98 | */ |
| 99 | switch (id) { |
| 100 | case IDCODE: |
| 101 | regs.regs[0] = upper_32_bits(regs.regs[0]); |
| 102 | regs.regs[0] &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK | |
| 103 | ZYNQMP_CSU_IDCODE_SVD_MASK; |
| 104 | regs.regs[0] >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT; |
| 105 | val = regs.regs[0]; |
| 106 | break; |
| 107 | case VERSION: |
| 108 | regs.regs[1] = lower_32_bits(regs.regs[1]); |
| 109 | regs.regs[1] &= ZYNQMP_CSU_SILICON_VER_MASK; |
| 110 | val = regs.regs[1]; |
| 111 | break; |
| 112 | default: |
| 113 | printf("%s, Invalid Req:0x%x\n", __func__, id); |
| 114 | } |
| 115 | } else { |
| 116 | switch (id) { |
| 117 | case IDCODE: |
| 118 | val = readl(ZYNQMP_CSU_IDCODE_ADDR); |
| 119 | val &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK | |
| 120 | ZYNQMP_CSU_IDCODE_SVD_MASK; |
| 121 | val >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT; |
| 122 | break; |
| 123 | case VERSION: |
| 124 | val = readl(ZYNQMP_CSU_VER_ADDR); |
| 125 | val &= ZYNQMP_CSU_SILICON_VER_MASK; |
| 126 | break; |
| 127 | default: |
| 128 | printf("%s, Invalid Req:0x%x\n", __func__, id); |
| 129 | } |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 130 | } |
Soren Brinkmann | 0cba6ab | 2016-09-29 11:44:41 -0700 | [diff] [blame] | 131 | |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 132 | return val; |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 133 | } |
| 134 | |
Siva Durga Prasad Paladugu | 74ba69d | 2017-07-25 11:51:37 +0530 | [diff] [blame] | 135 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \ |
| 136 | !defined(CONFIG_SPL_BUILD) |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 137 | static char *zynqmp_get_silicon_idcode_name(void) |
| 138 | { |
| 139 | uint32_t i, id; |
| 140 | |
Siva Durga Prasad Paladugu | db3123b | 2017-07-25 11:51:36 +0530 | [diff] [blame] | 141 | id = chip_id(IDCODE); |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 142 | for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) { |
| 143 | if (zynqmp_devices[i].id == id) |
| 144 | return zynqmp_devices[i].name; |
| 145 | } |
| 146 | return "unknown"; |
| 147 | } |
| 148 | #endif |
| 149 | |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 150 | int board_early_init_f(void) |
| 151 | { |
| 152 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CLK_ZYNQMP) |
| 153 | zynqmp_pmufw_version(); |
| 154 | #endif |
Michal Simek | 55de092 | 2017-07-12 13:08:41 +0200 | [diff] [blame] | 155 | |
Michal Simek | fd1b635 | 2017-07-12 13:21:27 +0200 | [diff] [blame] | 156 | #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED) |
Michal Simek | 55de092 | 2017-07-12 13:08:41 +0200 | [diff] [blame] | 157 | psu_init(); |
| 158 | #endif |
| 159 | |
Michal Simek | fb4000e | 2017-02-07 14:32:26 +0100 | [diff] [blame] | 160 | return 0; |
| 161 | } |
| 162 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 163 | #define ZYNQMP_VERSION_SIZE 9 |
| 164 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 165 | int board_init(void) |
| 166 | { |
Michal Simek | a0736ef | 2015-06-22 14:31:06 +0200 | [diff] [blame] | 167 | printf("EL Level:\tEL%d\n", current_el()); |
| 168 | |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 169 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \ |
| 170 | !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \ |
| 171 | defined(CONFIG_SPL_BUILD)) |
| 172 | if (current_el() != 3) { |
| 173 | static char version[ZYNQMP_VERSION_SIZE]; |
| 174 | |
Heinrich Schuchardt | df1cd46 | 2017-07-30 22:18:18 +0200 | [diff] [blame] | 175 | strncat(version, "xczu", 4); |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 176 | zynqmppl.name = strncat(version, |
| 177 | zynqmp_get_silicon_idcode_name(), |
Heinrich Schuchardt | df1cd46 | 2017-07-30 22:18:18 +0200 | [diff] [blame] | 178 | ZYNQMP_VERSION_SIZE - 5); |
Michal Simek | 47e60cb | 2016-02-01 15:05:58 +0100 | [diff] [blame] | 179 | printf("Chip ID:\t%s\n", zynqmppl.name); |
| 180 | fpga_init(); |
| 181 | fpga_add(fpga_xilinx, &zynqmppl); |
| 182 | } |
| 183 | #endif |
| 184 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | int board_early_init_r(void) |
| 189 | { |
| 190 | u32 val; |
| 191 | |
Michal Simek | 90a35db | 2017-07-12 10:32:18 +0200 | [diff] [blame] | 192 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 193 | val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 194 | |
| 195 | if (current_el() == 3 && !val) { |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 196 | val = readl(&crlapb_base->timestamp_ref_ctrl); |
| 197 | val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT; |
| 198 | writel(val, &crlapb_base->timestamp_ref_ctrl); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 199 | |
Michal Simek | 0785dfd | 2015-11-05 08:34:35 +0100 | [diff] [blame] | 200 | /* Program freq register in System counter */ |
| 201 | writel(zynqmp_get_system_timer_freq(), |
| 202 | &iou_scntr_secure->base_frequency_id_register); |
| 203 | /* And enable system counter */ |
| 204 | writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN, |
| 205 | &iou_scntr_secure->counter_control_register); |
| 206 | } |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
Michal Simek | 6919b4b | 2016-04-22 11:48:49 +0200 | [diff] [blame] | 210 | int zynq_board_read_rom_ethaddr(unsigned char *ethaddr) |
| 211 | { |
| 212 | #if defined(CONFIG_ZYNQ_GEM_EEPROM_ADDR) && \ |
| 213 | defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET) && \ |
| 214 | defined(CONFIG_ZYNQ_EEPROM_BUS) |
| 215 | i2c_set_bus_num(CONFIG_ZYNQ_EEPROM_BUS); |
| 216 | |
| 217 | if (eeprom_read(CONFIG_ZYNQ_GEM_EEPROM_ADDR, |
| 218 | CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET, |
| 219 | ethaddr, 6)) |
| 220 | printf("I2C EEPROM MAC address read failed\n"); |
| 221 | #endif |
| 222 | |
| 223 | return 0; |
| 224 | } |
| 225 | |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 226 | #if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE) |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 227 | int dram_init_banksize(void) |
Tom Rini | 361a879 | 2016-12-09 07:56:54 -0500 | [diff] [blame] | 228 | { |
Nathan Rossi | 950f86c | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 229 | fdtdec_setup_memory_banksize(); |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 230 | |
| 231 | return 0; |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | int dram_init(void) |
| 235 | { |
Nathan Rossi | 950f86c | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 236 | if (fdtdec_setup_memory_size() != 0) |
| 237 | return -EINVAL; |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 238 | |
| 239 | return 0; |
| 240 | } |
| 241 | #else |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 242 | int dram_init(void) |
| 243 | { |
| 244 | gd->ram_size = CONFIG_SYS_SDRAM_SIZE; |
| 245 | |
| 246 | return 0; |
| 247 | } |
Michal Simek | 8d59d7f | 2016-02-08 09:34:53 +0100 | [diff] [blame] | 248 | #endif |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 249 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 250 | void reset_cpu(ulong addr) |
| 251 | { |
| 252 | } |
| 253 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 254 | int board_late_init(void) |
| 255 | { |
| 256 | u32 reg = 0; |
| 257 | u8 bootmode; |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 258 | const char *mode; |
| 259 | char *new_targets; |
| 260 | |
| 261 | if (!(gd->flags & GD_FLG_ENV_DEFAULT)) { |
| 262 | debug("Saved variables - Skipping\n"); |
| 263 | return 0; |
| 264 | } |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 265 | |
| 266 | reg = readl(&crlapb_base->boot_mode); |
Michal Simek | 47359a0 | 2016-10-25 11:43:02 +0200 | [diff] [blame] | 267 | if (reg >> BOOT_MODE_ALT_SHIFT) |
| 268 | reg >>= BOOT_MODE_ALT_SHIFT; |
| 269 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 270 | bootmode = reg & BOOT_MODES_MASK; |
| 271 | |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 272 | puts("Bootmode: "); |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 273 | switch (bootmode) { |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 274 | case USB_MODE: |
| 275 | puts("USB_MODE\n"); |
| 276 | mode = "usb"; |
| 277 | break; |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 278 | case JTAG_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 279 | puts("JTAG_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 280 | mode = "pxe dhcp"; |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 281 | break; |
| 282 | case QSPI_MODE_24BIT: |
| 283 | case QSPI_MODE_32BIT: |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 284 | mode = "qspi0"; |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 285 | puts("QSPI_MODE\n"); |
Siva Durga Prasad Paladugu | 0a5bcc8 | 2015-03-13 11:10:26 +0530 | [diff] [blame] | 286 | break; |
Michal Simek | 39c56f5 | 2015-04-15 15:02:28 +0200 | [diff] [blame] | 287 | case EMMC_MODE: |
Michal Simek | 78678fe | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 288 | puts("EMMC_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 289 | mode = "mmc0"; |
Michal Simek | 78678fe | 2015-10-05 15:59:38 +0200 | [diff] [blame] | 290 | break; |
| 291 | case SD_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 292 | puts("SD_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 293 | mode = "mmc0"; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 294 | break; |
Siva Durga Prasad Paladugu | e199227 | 2016-09-21 11:45:05 +0530 | [diff] [blame] | 295 | case SD1_LSHFT_MODE: |
| 296 | puts("LVL_SHFT_"); |
| 297 | /* fall through */ |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 298 | case SD_MODE1: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 299 | puts("SD_MODE1\n"); |
Michal Simek | 2d9925b | 2015-11-06 10:22:37 +0100 | [diff] [blame] | 300 | #if defined(CONFIG_ZYNQ_SDHCI0) && defined(CONFIG_ZYNQ_SDHCI1) |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 301 | mode = "mmc1"; |
| 302 | #else |
| 303 | mode = "mmc0"; |
Michal Simek | 2d9925b | 2015-11-06 10:22:37 +0100 | [diff] [blame] | 304 | #endif |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 305 | break; |
| 306 | case NAND_MODE: |
Michal Simek | fb90917 | 2015-09-20 17:20:42 +0200 | [diff] [blame] | 307 | puts("NAND_MODE\n"); |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 308 | mode = "nand0"; |
Michal Simek | af813ac | 2015-10-05 10:51:12 +0200 | [diff] [blame] | 309 | break; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 310 | default: |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 311 | mode = ""; |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 312 | printf("Invalid Boot Mode:0x%x\n", bootmode); |
| 313 | break; |
| 314 | } |
| 315 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 316 | /* |
| 317 | * One terminating char + one byte for space between mode |
| 318 | * and default boot_targets |
| 319 | */ |
| 320 | new_targets = calloc(1, strlen(mode) + |
| 321 | strlen(getenv("boot_targets")) + 2); |
| 322 | |
| 323 | sprintf(new_targets, "%s %s", mode, getenv("boot_targets")); |
| 324 | setenv("boot_targets", new_targets); |
| 325 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 326 | return 0; |
| 327 | } |
Siva Durga Prasad Paladugu | 84696ff | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 328 | |
| 329 | int checkboard(void) |
| 330 | { |
Michal Simek | 5af0855 | 2016-01-25 11:04:21 +0100 | [diff] [blame] | 331 | puts("Board: Xilinx ZynqMP\n"); |
Siva Durga Prasad Paladugu | 84696ff | 2015-08-04 13:01:05 +0530 | [diff] [blame] | 332 | return 0; |
| 333 | } |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 334 | |
| 335 | #ifdef CONFIG_USB_DWC3 |
Michal Simek | 275bd6d | 2016-08-08 10:11:26 +0200 | [diff] [blame] | 336 | static struct dwc3_device dwc3_device_data0 = { |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 337 | .maximum_speed = USB_SPEED_HIGH, |
| 338 | .base = ZYNQMP_USB0_XHCI_BASEADDR, |
| 339 | .dr_mode = USB_DR_MODE_PERIPHERAL, |
| 340 | .index = 0, |
| 341 | }; |
| 342 | |
Michal Simek | 275bd6d | 2016-08-08 10:11:26 +0200 | [diff] [blame] | 343 | static struct dwc3_device dwc3_device_data1 = { |
| 344 | .maximum_speed = USB_SPEED_HIGH, |
| 345 | .base = ZYNQMP_USB1_XHCI_BASEADDR, |
| 346 | .dr_mode = USB_DR_MODE_PERIPHERAL, |
| 347 | .index = 1, |
| 348 | }; |
| 349 | |
Michal Simek | 9feff38 | 2016-09-01 11:16:40 +0200 | [diff] [blame] | 350 | int usb_gadget_handle_interrupts(int index) |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 351 | { |
Michal Simek | 9feff38 | 2016-09-01 11:16:40 +0200 | [diff] [blame] | 352 | dwc3_uboot_handle_interrupt(index); |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | int board_usb_init(int index, enum usb_init_type init) |
| 357 | { |
Michal Simek | 275bd6d | 2016-08-08 10:11:26 +0200 | [diff] [blame] | 358 | debug("%s: index %x\n", __func__, index); |
| 359 | |
Michal Simek | 8ecd50c | 2016-09-01 11:27:32 +0200 | [diff] [blame] | 360 | #if defined(CONFIG_USB_GADGET_DOWNLOAD) |
| 361 | g_dnl_set_serialnumber(CONFIG_SYS_CONFIG_NAME); |
| 362 | #endif |
| 363 | |
Michal Simek | 275bd6d | 2016-08-08 10:11:26 +0200 | [diff] [blame] | 364 | switch (index) { |
| 365 | case 0: |
| 366 | return dwc3_uboot_init(&dwc3_device_data0); |
| 367 | case 1: |
| 368 | return dwc3_uboot_init(&dwc3_device_data1); |
| 369 | }; |
| 370 | |
| 371 | return -1; |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | int board_usb_cleanup(int index, enum usb_init_type init) |
| 375 | { |
| 376 | dwc3_uboot_exit(index); |
| 377 | return 0; |
| 378 | } |
| 379 | #endif |