Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 2 | /* |
Michal Simek | 98d0f1f | 2018-01-17 07:37:47 +0100 | [diff] [blame] | 3 | * (C) Copyright 2014 - 2017 Xilinx, Inc. Michal Simek |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 4 | */ |
5 | #include <common.h> | ||||
Simon Glass | 091f6a3 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 6 | #include <debug_uart.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 7 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 8 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 11 | #include <spl.h> |
12 | |||||
13 | #include <asm/io.h> | ||||
Michal Simek | 162c637 | 2014-08-11 14:03:15 +0200 | [diff] [blame] | 14 | #include <asm/spl.h> |
Simon Glass | 122216d | 2015-10-17 19:41:21 -0600 | [diff] [blame] | 15 | #include <asm/arch/hardware.h> |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 16 | #include <asm/arch/sys_proto.h> |
Michal Simek | 85dc76a | 2017-11-08 16:14:47 +0100 | [diff] [blame] | 17 | #include <asm/arch/ps7_init_gpl.h> |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 18 | |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 19 | void board_init_f(ulong dummy) |
20 | { | ||||
21 | ps7_init(); | ||||
22 | |||||
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 23 | arch_cpu_init(); |
Michal Simek | e533ad2 | 2018-04-19 12:36:48 +0200 | [diff] [blame] | 24 | |
25 | #ifdef CONFIG_DEBUG_UART | ||||
26 | /* Uart debug for sure */ | ||||
27 | debug_uart_init(); | ||||
28 | puts("Debug uart enabled\n"); /* or printch() */ | ||||
29 | #endif | ||||
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 30 | } |
31 | |||||
Michal Simek | a831f1f | 2014-04-25 12:15:40 +0200 | [diff] [blame] | 32 | #ifdef CONFIG_SPL_BOARD_INIT |
33 | void spl_board_init(void) | ||||
34 | { | ||||
Simon Glass | e04843d | 2015-10-19 06:50:02 -0600 | [diff] [blame] | 35 | preloader_console_init(); |
Michal Simek | 1aab114 | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 36 | #if defined(CONFIG_ARCH_EARLY_INIT_R) && defined(CONFIG_SPL_FPGA) |
Luis Araneda | 7d9405a | 2018-07-19 03:10:18 -0400 | [diff] [blame] | 37 | arch_early_init_r(); |
38 | #endif | ||||
Michal Simek | a831f1f | 2014-04-25 12:15:40 +0200 | [diff] [blame] | 39 | board_init(); |
40 | } | ||||
41 | #endif | ||||
42 | |||||
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 43 | u32 spl_boot_device(void) |
44 | { | ||||
45 | u32 mode; | ||||
46 | |||||
47 | switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) { | ||||
48 | #ifdef CONFIG_SPL_SPI_SUPPORT | ||||
49 | case ZYNQ_BM_QSPI: | ||||
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 50 | mode = BOOT_DEVICE_SPI; |
51 | break; | ||||
52 | #endif | ||||
Michal Simek | 2583002 | 2015-01-13 16:04:10 +0100 | [diff] [blame] | 53 | case ZYNQ_BM_NAND: |
54 | mode = BOOT_DEVICE_NAND; | ||||
55 | break; | ||||
56 | case ZYNQ_BM_NOR: | ||||
57 | mode = BOOT_DEVICE_NOR; | ||||
58 | break; | ||||
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 59 | #ifdef CONFIG_SPL_MMC |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 60 | case ZYNQ_BM_SD: |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 61 | mode = BOOT_DEVICE_MMC1; |
62 | break; | ||||
63 | #endif | ||||
Michal Simek | 2583002 | 2015-01-13 16:04:10 +0100 | [diff] [blame] | 64 | case ZYNQ_BM_JTAG: |
65 | mode = BOOT_DEVICE_RAM; | ||||
66 | break; | ||||
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 67 | default: |
68 | puts("Unsupported boot mode selected\n"); | ||||
69 | hang(); | ||||
70 | } | ||||
71 | |||||
72 | return mode; | ||||
73 | } | ||||
74 | |||||
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 75 | #ifdef CONFIG_SPL_OS_BOOT |
76 | int spl_start_uboot(void) | ||||
77 | { | ||||
78 | /* boot linux */ | ||||
79 | return 0; | ||||
80 | } | ||||
81 | #endif | ||||
Masahiro Yamada | c2d1079 | 2014-05-12 12:18:30 +0900 | [diff] [blame] | 82 | |
Michal Simek | 42c8c41 | 2016-05-10 07:55:52 +0200 | [diff] [blame] | 83 | void spl_board_prepare_for_boot(void) |
84 | { | ||||
85 | ps7_post_config(); | ||||
86 | debug("SPL bye\n"); | ||||
87 | } |