Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 2 | /* |
Michal Simek | 3e1b61d | 2018-01-17 07:37:47 +0100 | [diff] [blame] | 3 | * (C) Copyright 2014 - 2017 Xilinx, Inc. Michal Simek |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 4 | */ |
| 5 | #include <common.h> |
Simon Glass | c54c0a4 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 6 | #include <debug_uart.h> |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 7 | #include <spl.h> |
| 8 | |
| 9 | #include <asm/io.h> |
Michal Simek | ae2ee77 | 2014-08-11 14:03:15 +0200 | [diff] [blame] | 10 | #include <asm/spl.h> |
Simon Glass | bd44758 | 2015-10-17 19:41:21 -0600 | [diff] [blame] | 11 | #include <asm/arch/hardware.h> |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 12 | #include <asm/arch/sys_proto.h> |
Michal Simek | f0b619e | 2017-11-08 16:14:47 +0100 | [diff] [blame] | 13 | #include <asm/arch/ps7_init_gpl.h> |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 14 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 15 | void board_init_f(ulong dummy) |
| 16 | { |
| 17 | ps7_init(); |
| 18 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 19 | arch_cpu_init(); |
Michal Simek | 57213c5 | 2018-04-19 12:36:48 +0200 | [diff] [blame] | 20 | |
| 21 | #ifdef CONFIG_DEBUG_UART |
| 22 | /* Uart debug for sure */ |
| 23 | debug_uart_init(); |
| 24 | puts("Debug uart enabled\n"); /* or printch() */ |
| 25 | #endif |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 26 | } |
| 27 | |
Michal Simek | 1540fb7 | 2014-04-25 12:15:40 +0200 | [diff] [blame] | 28 | #ifdef CONFIG_SPL_BOARD_INIT |
| 29 | void spl_board_init(void) |
| 30 | { |
Simon Glass | 5fa030b | 2015-10-19 06:50:02 -0600 | [diff] [blame] | 31 | preloader_console_init(); |
Luis Araneda | 577012d | 2018-07-19 03:10:18 -0400 | [diff] [blame] | 32 | #if defined(CONFIG_ARCH_EARLY_INIT_R) && defined(CONFIG_SPL_FPGA_SUPPORT) |
| 33 | arch_early_init_r(); |
| 34 | #endif |
Michal Simek | 1540fb7 | 2014-04-25 12:15:40 +0200 | [diff] [blame] | 35 | board_init(); |
| 36 | } |
| 37 | #endif |
| 38 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 39 | u32 spl_boot_device(void) |
| 40 | { |
| 41 | u32 mode; |
| 42 | |
| 43 | switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) { |
| 44 | #ifdef CONFIG_SPL_SPI_SUPPORT |
| 45 | case ZYNQ_BM_QSPI: |
| 46 | puts("qspi boot\n"); |
| 47 | mode = BOOT_DEVICE_SPI; |
| 48 | break; |
| 49 | #endif |
Michal Simek | 63e3cea | 2015-01-13 16:04:10 +0100 | [diff] [blame] | 50 | case ZYNQ_BM_NAND: |
| 51 | mode = BOOT_DEVICE_NAND; |
| 52 | break; |
| 53 | case ZYNQ_BM_NOR: |
| 54 | mode = BOOT_DEVICE_NOR; |
| 55 | break; |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 56 | #ifdef CONFIG_SPL_MMC_SUPPORT |
| 57 | case ZYNQ_BM_SD: |
| 58 | puts("mmc boot\n"); |
| 59 | mode = BOOT_DEVICE_MMC1; |
| 60 | break; |
| 61 | #endif |
Michal Simek | 63e3cea | 2015-01-13 16:04:10 +0100 | [diff] [blame] | 62 | case ZYNQ_BM_JTAG: |
| 63 | mode = BOOT_DEVICE_RAM; |
| 64 | break; |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 65 | default: |
| 66 | puts("Unsupported boot mode selected\n"); |
| 67 | hang(); |
| 68 | } |
| 69 | |
| 70 | return mode; |
| 71 | } |
| 72 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 73 | #ifdef CONFIG_SPL_OS_BOOT |
| 74 | int spl_start_uboot(void) |
| 75 | { |
| 76 | /* boot linux */ |
| 77 | return 0; |
| 78 | } |
| 79 | #endif |
Masahiro Yamada | 66e6715 | 2014-05-12 12:18:30 +0900 | [diff] [blame] | 80 | |
Michal Simek | f44e603 | 2016-05-10 07:55:52 +0200 | [diff] [blame] | 81 | void spl_board_prepare_for_boot(void) |
| 82 | { |
| 83 | ps7_post_config(); |
| 84 | debug("SPL bye\n"); |
| 85 | } |
| 86 | |
Michal Simek | 9a23f45 | 2016-05-03 14:20:17 +0200 | [diff] [blame] | 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: %s\n", __func__, name); |
| 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | #endif |