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