blob: 0a5f4306e8222e56b3e2e8339aa4f8ab790fb536 [file] [log] [blame]
Michal Simek72536fd2015-11-20 13:17:22 +01001/*
2 * Copyright 2015 - 2016 Xilinx, Inc.
3 *
4 * Michal Simek <michal.simek@xilinx.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <debug_uart.h>
11#include <spl.h>
12
13#include <asm/io.h>
14#include <asm/spl.h>
15#include <asm/arch/hardware.h>
16#include <asm/arch/sys_proto.h>
17
18void board_init_f(ulong dummy)
19{
20 psu_init();
21 board_early_init_r();
22
23#ifdef CONFIG_DEBUG_UART
24 /* Uart debug for sure */
25 debug_uart_init();
26 puts("Debug uart enabled\n"); /* or printch() */
27#endif
28 /* Delay is required for clocks to be propagated */
29 udelay(1000000);
30
31 /* Clear the BSS */
32 memset(__bss_start, 0, __bss_end - __bss_start);
33
34 /* No need to call timer init - it is empty for ZynqMP */
35 board_init_r(NULL, 0);
36}
37
Michal Simek3eb32de2016-08-15 09:41:36 +020038static void ps_mode_reset(ulong mode)
39{
Michal Simek3eb32de2016-08-15 09:41:36 +020040 writel(mode << ZYNQMP_CRL_APB_BOOT_PIN_CTRL_OUT_EN_SHIFT,
41 &crlapb_base->boot_pin_ctrl);
42 udelay(5);
43 writel(mode << ZYNQMP_CRL_APB_BOOT_PIN_CTRL_OUT_VAL_SHIFT |
44 mode << ZYNQMP_CRL_APB_BOOT_PIN_CTRL_OUT_EN_SHIFT,
45 &crlapb_base->boot_pin_ctrl);
46}
47
48/*
49 * Set default PS_MODE1 which is used for USB ULPI phy reset
50 * Also other resets can be connected to this certain pin
51 */
52#ifndef MODE_RESET
53# define MODE_RESET PS_MODE1
54#endif
55
Michal Simek72536fd2015-11-20 13:17:22 +010056#ifdef CONFIG_SPL_BOARD_INIT
57void spl_board_init(void)
58{
59 preloader_console_init();
Michal Simek3eb32de2016-08-15 09:41:36 +020060 ps_mode_reset(MODE_RESET);
Michal Simek72536fd2015-11-20 13:17:22 +010061 board_init();
62}
63#endif
64
65u32 spl_boot_device(void)
66{
67 u32 reg = 0;
68 u8 bootmode;
69
Michal Simek94ddcaa2016-08-30 16:17:27 +020070#if defined(CONFIG_SPL_ZYNQMP_ALT_BOOTMODE_ENABLED)
71 /* Change default boot mode at run-time */
Michal Simek833e0c42016-10-25 11:43:02 +020072 writel(CONFIG_SPL_ZYNQMP_ALT_BOOTMODE << BOOT_MODE_ALT_SHIFT,
Michal Simek94ddcaa2016-08-30 16:17:27 +020073 &crlapb_base->boot_mode);
74#endif
75
Michal Simek72536fd2015-11-20 13:17:22 +010076 reg = readl(&crlapb_base->boot_mode);
Michal Simek833e0c42016-10-25 11:43:02 +020077 if (reg >> BOOT_MODE_ALT_SHIFT)
78 reg >>= BOOT_MODE_ALT_SHIFT;
79
Michal Simek72536fd2015-11-20 13:17:22 +010080 bootmode = reg & BOOT_MODES_MASK;
81
82 switch (bootmode) {
83 case JTAG_MODE:
84 return BOOT_DEVICE_RAM;
85#ifdef CONFIG_SPL_MMC_SUPPORT
86 case EMMC_MODE:
87 case SD_MODE:
88 case SD_MODE1:
89 return BOOT_DEVICE_MMC1;
90#endif
Michal Simek12398ea2016-08-19 14:14:52 +020091#ifdef CONFIG_SPL_DFU_SUPPORT
92 case USB_MODE:
93 return BOOT_DEVICE_DFU;
94#endif
Michal Simek2740d372016-10-26 09:24:32 +020095#ifdef CONFIG_SPL_SATA_SUPPORT
96 case SW_SATA_MODE:
97 return BOOT_DEVICE_SATA;
98#endif
Michal Simek72536fd2015-11-20 13:17:22 +010099 default:
100 printf("Invalid Boot Mode:0x%x\n", bootmode);
101 break;
102 }
103
104 return 0;
105}
106
Marek Vasut64d64bb2016-05-14 23:42:07 +0200107u32 spl_boot_mode(const u32 boot_device)
Michal Simek72536fd2015-11-20 13:17:22 +0100108{
109 switch (spl_boot_device()) {
110 case BOOT_DEVICE_RAM:
111 return 0;
112 case BOOT_DEVICE_MMC1:
113 return MMCSD_MODE_FS;
114 default:
115 puts("spl: error: unsupported device\n");
116 hang();
117 }
118}
119
120__weak void psu_init(void)
121{
122 /*
123 * This function is overridden by the one in
124 * board/xilinx/zynqmp/(platform)/psu_init_gpl.c, if it exists.
125 */
126}
127
128#ifdef CONFIG_SPL_OS_BOOT
129int spl_start_uboot(void)
130{
Michal Simek456e4542017-01-09 10:05:16 +0100131 handoff_setup();
132
Michal Simek72536fd2015-11-20 13:17:22 +0100133 return 0;
134}
135#endif
136
137#ifdef CONFIG_SPL_LOAD_FIT
138int board_fit_config_name_match(const char *name)
139{
140 /* Just empty function now - can't decide what to choose */
141 debug("%s: %s\n", __func__, name);
142
143 return 0;
144}
145#endif