ARM: zynq: Do not print message about boot device
[oweals/u-boot.git] / arch / arm / mach-zynq / spl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2014 - 2017 Xilinx, Inc. Michal Simek
4  */
5 #include <common.h>
6 #include <debug_uart.h>
7 #include <hang.h>
8 #include <spl.h>
9 #include <generated/dt.h>
10
11 #include <asm/io.h>
12 #include <asm/spl.h>
13 #include <asm/arch/hardware.h>
14 #include <asm/arch/sys_proto.h>
15 #include <asm/arch/ps7_init_gpl.h>
16
17 void board_init_f(ulong dummy)
18 {
19         ps7_init();
20
21         arch_cpu_init();
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 }
29
30 #ifdef CONFIG_SPL_BOARD_INIT
31 void spl_board_init(void)
32 {
33         preloader_console_init();
34 #if defined(CONFIG_ARCH_EARLY_INIT_R) && defined(CONFIG_SPL_FPGA_SUPPORT)
35         arch_early_init_r();
36 #endif
37         board_init();
38 }
39 #endif
40
41 u32 spl_boot_device(void)
42 {
43         u32 mode;
44
45         switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) {
46 #ifdef CONFIG_SPL_SPI_SUPPORT
47         case ZYNQ_BM_QSPI:
48                 mode = BOOT_DEVICE_SPI;
49                 break;
50 #endif
51         case ZYNQ_BM_NAND:
52                 mode = BOOT_DEVICE_NAND;
53                 break;
54         case ZYNQ_BM_NOR:
55                 mode = BOOT_DEVICE_NOR;
56                 break;
57 #ifdef CONFIG_SPL_MMC_SUPPORT
58         case ZYNQ_BM_SD:
59                 mode = BOOT_DEVICE_MMC1;
60                 break;
61 #endif
62         case ZYNQ_BM_JTAG:
63                 mode = BOOT_DEVICE_RAM;
64                 break;
65         default:
66                 puts("Unsupported boot mode selected\n");
67                 hang();
68         }
69
70         return mode;
71 }
72
73 #ifdef CONFIG_SPL_OS_BOOT
74 int spl_start_uboot(void)
75 {
76         /* boot linux */
77         return 0;
78 }
79 #endif
80
81 void spl_board_prepare_for_boot(void)
82 {
83         ps7_post_config();
84         debug("SPL bye\n");
85 }
86
87 #ifdef CONFIG_SPL_LOAD_FIT
88 int board_fit_config_name_match(const char *name)
89 {
90         /* Just empty function now - can't decide what to choose */
91         debug("%s: Check %s, default %s\n", __func__, name, DEVICE_TREE);
92
93         if (!strcmp(name, DEVICE_TREE))
94                 return 0;
95
96         return -1;
97 }
98 #endif