1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2014 - 2015 Xilinx, Inc.
10 #include <debug_uart.h>
20 #include <asm/arch/clk.h>
21 #include <asm/arch/hardware.h>
22 #include <asm/arch/sys_proto.h>
23 #include <asm/arch/psu_init_gpl.h>
24 #include <asm/cache.h>
26 #include <asm/ptrace.h>
27 #include <dm/device.h>
28 #include <dm/uclass.h>
30 #include <dwc3-uboot.h>
32 #include <zynqmp_firmware.h>
34 #include <linux/delay.h>
35 #include <linux/sizes.h>
36 #include "../common/board.h"
38 #include "pm_cfg_obj.h"
40 DECLARE_GLOBAL_DATA_PTR;
42 #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
43 !defined(CONFIG_SPL_BUILD)
44 static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC;
51 } zynqmp_devices[] = {
143 { /* For testing purpose only */
199 int chip_id(unsigned char id)
204 if (current_el() != 3) {
205 regs.regs[0] = ZYNQMP_SIP_SVC_CSU_DMA_CHIPID;
214 * regs[0][31:0] = status of the operation
215 * regs[0][63:32] = CSU.IDCODE register
216 * regs[1][31:0] = CSU.version register
217 * regs[1][63:32] = CSU.IDCODE2 register
221 regs.regs[0] = upper_32_bits(regs.regs[0]);
222 regs.regs[0] &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
223 ZYNQMP_CSU_IDCODE_SVD_MASK;
224 regs.regs[0] >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
228 regs.regs[1] = lower_32_bits(regs.regs[1]);
229 regs.regs[1] &= ZYNQMP_CSU_SILICON_VER_MASK;
233 regs.regs[1] = lower_32_bits(regs.regs[1]);
234 regs.regs[1] >>= ZYNQMP_CSU_VERSION_EMPTY_SHIFT;
238 printf("%s, Invalid Req:0x%x\n", __func__, id);
243 val = readl(ZYNQMP_CSU_IDCODE_ADDR);
244 val &= ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK |
245 ZYNQMP_CSU_IDCODE_SVD_MASK;
246 val >>= ZYNQMP_CSU_IDCODE_SVD_SHIFT;
249 val = readl(ZYNQMP_CSU_VER_ADDR);
250 val &= ZYNQMP_CSU_SILICON_VER_MASK;
253 printf("%s, Invalid Req:0x%x\n", __func__, id);
260 #define ZYNQMP_VERSION_SIZE 9
261 #define ZYNQMP_PL_STATUS_BIT 9
262 #define ZYNQMP_IPDIS_VCU_BIT 8
263 #define ZYNQMP_PL_STATUS_MASK BIT(ZYNQMP_PL_STATUS_BIT)
264 #define ZYNQMP_CSU_VERSION_MASK ~(ZYNQMP_PL_STATUS_MASK)
265 #define ZYNQMP_CSU_VCUDIS_VER_MASK ZYNQMP_CSU_VERSION_MASK & \
266 ~BIT(ZYNQMP_IPDIS_VCU_BIT)
267 #define MAX_VARIANTS_EV 3
269 #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
270 !defined(CONFIG_SPL_BUILD)
271 static char *zynqmp_get_silicon_idcode_name(void)
275 static char name[ZYNQMP_VERSION_SIZE];
277 id = chip_id(IDCODE);
278 ver = chip_id(IDCODE2);
280 for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
281 if (zynqmp_devices[i].id == id) {
282 if (zynqmp_devices[i].evexists &&
283 !(ver & ZYNQMP_PL_STATUS_MASK))
285 if (zynqmp_devices[i].ver == (ver &
286 ZYNQMP_CSU_VERSION_MASK))
291 if (i >= ARRAY_SIZE(zynqmp_devices))
294 strncat(name, "zu", 2);
295 if (!zynqmp_devices[i].evexists ||
296 (ver & ZYNQMP_PL_STATUS_MASK)) {
297 strncat(name, zynqmp_devices[i].name,
298 ZYNQMP_VERSION_SIZE - 3);
303 * Here we are means, PL not powered up and ev variant
304 * exists. So, we need to ignore VCU disable bit(8) in
305 * version and findout if its CG or EG/EV variant.
307 for (j = 0; j < MAX_VARIANTS_EV; j++, i++) {
308 if ((zynqmp_devices[i].ver & ~BIT(ZYNQMP_IPDIS_VCU_BIT)) ==
309 (ver & ZYNQMP_CSU_VCUDIS_VER_MASK)) {
310 strncat(name, zynqmp_devices[i].name,
311 ZYNQMP_VERSION_SIZE - 3);
316 if (j >= MAX_VARIANTS_EV)
319 if (strstr(name, "eg") || strstr(name, "ev")) {
320 buf = strstr(name, "e");
328 int board_early_init_f(void)
330 #if defined(CONFIG_ZYNQMP_PSU_INIT_ENABLED)
337 /* Delay is required for clocks to be propagated */
341 #ifdef CONFIG_DEBUG_UART
342 /* Uart debug for sure */
344 puts("Debug uart enabled\n"); /* or printch() */
350 static int multi_boot(void)
354 multiboot = readl(&csu_base->multi_boot);
356 printf("Multiboot:\t%x\n", multiboot);
363 #if defined(CONFIG_ZYNQMP_FIRMWARE)
366 uclass_get_device_by_name(UCLASS_FIRMWARE, "zynqmp-power", &dev);
368 panic("PMU Firmware device not found - Enable it");
371 #if defined(CONFIG_SPL_BUILD)
372 /* Check *at build time* if the filename is an non-empty string */
373 if (sizeof(CONFIG_ZYNQMP_SPL_PM_CFG_OBJ_FILE) > 1)
374 zynqmp_pmufw_load_config_object(zynqmp_pm_cfg_obj,
375 zynqmp_pm_cfg_obj_size);
378 printf("EL Level:\tEL%d\n", current_el());
380 #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ZYNQMPPL) && \
381 !defined(CONFIG_SPL_BUILD) || (defined(CONFIG_SPL_FPGA_SUPPORT) && \
382 defined(CONFIG_SPL_BUILD))
383 if (current_el() != 3) {
384 zynqmppl.name = zynqmp_get_silicon_idcode_name();
385 printf("Chip ID:\t%s\n", zynqmppl.name);
387 fpga_add(fpga_xilinx, &zynqmppl);
391 if (current_el() == 3)
397 int board_early_init_r(void)
401 if (current_el() != 3)
404 val = readl(&crlapb_base->timestamp_ref_ctrl);
405 val &= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
408 val = readl(&crlapb_base->timestamp_ref_ctrl);
409 val |= ZYNQMP_CRL_APB_TIMESTAMP_REF_CTRL_CLKACT;
410 writel(val, &crlapb_base->timestamp_ref_ctrl);
412 /* Program freq register in System counter */
413 writel(zynqmp_get_system_timer_freq(),
414 &iou_scntr_secure->base_frequency_id_register);
415 /* And enable system counter */
416 writel(ZYNQMP_IOU_SCNTR_COUNTER_CONTROL_REGISTER_EN,
417 &iou_scntr_secure->counter_control_register);
422 unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
427 if (current_el() > 1) {
430 armv8_switch_to_el1(0x0, 0, 0, 0, (unsigned long)entry,
433 printf("FAIL: current EL is not above EL1\n");
439 #if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE)
440 int dram_init_banksize(void)
444 ret = fdtdec_setup_memory_banksize();
455 if (fdtdec_setup_mem_size_base() != 0)
461 int dram_init_banksize(void)
463 #if defined(CONFIG_NR_DRAM_BANKS)
464 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
465 gd->bd->bi_dram[0].size = get_effective_memsize();
475 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
476 CONFIG_SYS_SDRAM_SIZE);
482 void reset_cpu(ulong addr)
486 #if defined(CONFIG_BOARD_LATE_INIT)
487 static const struct {
490 } reset_reasons[] = {
491 { RESET_REASON_DEBUG_SYS, "DEBUG" },
492 { RESET_REASON_SOFT, "SOFT" },
493 { RESET_REASON_SRST, "SRST" },
494 { RESET_REASON_PSONLY, "PS-ONLY" },
495 { RESET_REASON_PMU, "PMU" },
496 { RESET_REASON_INTERNAL, "INTERNAL" },
497 { RESET_REASON_EXTERNAL, "EXTERNAL" },
501 static int reset_reason(void)
505 const char *reason = NULL;
507 ret = zynqmp_mmio_read((ulong)&crlapb_base->reset_reason, ®);
511 puts("Reset reason:\t");
513 for (i = 0; i < ARRAY_SIZE(reset_reasons); i++) {
514 if (reg & reset_reasons[i].bit) {
515 reason = reset_reasons[i].name;
516 printf("%s ", reset_reasons[i].name);
523 env_set("reset_reason", reason);
525 ret = zynqmp_mmio_write((ulong)&crlapb_base->reset_reason, ~0, ~0);
532 static int set_fdtfile(void)
534 char *compatible, *fdtfile;
535 const char *suffix = ".dtb";
536 const char *vendor = "xilinx/";
538 if (env_get("fdtfile"))
541 compatible = (char *)fdt_getprop(gd->fdt_blob, 0, "compatible", NULL);
543 debug("Compatible: %s\n", compatible);
545 /* Discard vendor prefix */
546 strsep(&compatible, ",");
548 fdtfile = calloc(1, strlen(vendor) + strlen(compatible) +
553 sprintf(fdtfile, "%s%s%s", vendor, compatible, suffix);
555 env_set("fdtfile", fdtfile);
562 static u8 zynqmp_get_bootmode(void)
568 ret = zynqmp_mmio_read((ulong)&crlapb_base->boot_mode, ®);
572 if (reg >> BOOT_MODE_ALT_SHIFT)
573 reg >>= BOOT_MODE_ALT_SHIFT;
575 bootmode = reg & BOOT_MODES_MASK;
580 int board_late_init(void)
586 int env_targets_len = 0;
592 #if defined(CONFIG_USB_ETHER) && !defined(CONFIG_USB_GADGET_DOWNLOAD)
596 if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
597 debug("Saved variables - Skipping\n");
605 bootmode = zynqmp_get_bootmode();
612 env_set("modeboot", "usb_dfu_spl");
616 mode = "jtag pxe dhcp";
617 env_set("modeboot", "jtagboot");
619 case QSPI_MODE_24BIT:
620 case QSPI_MODE_32BIT:
623 env_set("modeboot", "qspiboot");
627 if (uclass_get_device_by_name(UCLASS_MMC,
628 "mmc@ff160000", &dev) &&
629 uclass_get_device_by_name(UCLASS_MMC,
630 "sdhci@ff160000", &dev)) {
631 puts("Boot from EMMC but without SD0 enabled!\n");
634 debug("mmc0 device found at %p, seq %d\n", dev, dev->seq);
641 if (uclass_get_device_by_name(UCLASS_MMC,
642 "mmc@ff160000", &dev) &&
643 uclass_get_device_by_name(UCLASS_MMC,
644 "sdhci@ff160000", &dev)) {
645 puts("Boot from SD0 but without SD0 enabled!\n");
648 debug("mmc0 device found at %p, seq %d\n", dev, dev->seq);
652 env_set("modeboot", "sdboot");
659 if (uclass_get_device_by_name(UCLASS_MMC,
660 "mmc@ff170000", &dev) &&
661 uclass_get_device_by_name(UCLASS_MMC,
662 "sdhci@ff170000", &dev)) {
663 puts("Boot from SD1 but without SD1 enabled!\n");
666 debug("mmc1 device found at %p, seq %d\n", dev, dev->seq);
670 env_set("modeboot", "sdboot");
675 env_set("modeboot", "nandboot");
679 printf("Invalid Boot Mode:0x%x\n", bootmode);
684 bootseq_len = snprintf(NULL, 0, "%i", bootseq);
685 debug("Bootseq len: %x\n", bootseq_len);
689 * One terminating char + one byte for space between mode
690 * and default boot_targets
692 env_targets = env_get("boot_targets");
694 env_targets_len = strlen(env_targets);
696 new_targets = calloc(1, strlen(mode) + env_targets_len + 2 +
702 sprintf(new_targets, "%s%x %s", mode, bootseq,
703 env_targets ? env_targets : "");
705 sprintf(new_targets, "%s %s", mode,
706 env_targets ? env_targets : "");
708 env_set("boot_targets", new_targets);
712 return board_late_init_xilinx();
718 puts("Board: Xilinx ZynqMP\n");