Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 2 | /* |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 3 | * Copyright (C) 2014-2016 Stefan Roese <sr@denx.de> |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Stefan Roese | 83097cf | 2015-11-25 07:37:00 +0100 | [diff] [blame] | 7 | #include <dm.h> |
| 8 | #include <debug_uart.h> |
| 9 | #include <fdtdec.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 10 | #include <hang.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 13 | #include <spl.h> |
| 14 | #include <asm/io.h> |
| 15 | #include <asm/arch/cpu.h> |
| 16 | #include <asm/arch/soc.h> |
| 17 | |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 18 | static u32 get_boot_device(void) |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 19 | { |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 20 | u32 val; |
| 21 | u32 boot_device; |
| 22 | |
Stefan Roese | 04ec0d3 | 2016-01-07 14:12:04 +0100 | [diff] [blame] | 23 | /* |
| 24 | * First check, if UART boot-mode is active. This can only |
| 25 | * be done, via the bootrom error register. Here the |
| 26 | * MSB marks if the UART mode is active. |
| 27 | */ |
| 28 | val = readl(CONFIG_BOOTROM_ERR_REG); |
| 29 | boot_device = (val & BOOTROM_ERR_MODE_MASK) >> BOOTROM_ERR_MODE_OFFS; |
| 30 | debug("BOOTROM_REG=0x%08x boot_device=0x%x\n", val, boot_device); |
| 31 | if (boot_device == BOOTROM_ERR_MODE_UART) |
| 32 | return BOOT_DEVICE_UART; |
| 33 | |
Chris Packham | 8e93252 | 2018-08-17 20:47:42 +1200 | [diff] [blame] | 34 | #ifdef CONFIG_ARMADA_38X |
| 35 | /* |
| 36 | * If the bootrom error code contains any other than zeros it's an |
| 37 | * error condition and the bootROM has fallen back to UART boot |
| 38 | */ |
| 39 | boot_device = (val & BOOTROM_ERR_CODE_MASK) >> BOOTROM_ERR_CODE_OFFS; |
| 40 | if (boot_device) |
| 41 | return BOOT_DEVICE_UART; |
| 42 | #endif |
| 43 | |
Stefan Roese | 04ec0d3 | 2016-01-07 14:12:04 +0100 | [diff] [blame] | 44 | /* |
| 45 | * Now check the SAR register for the strapped boot-device |
| 46 | */ |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 47 | val = readl(CONFIG_SAR_REG); /* SAR - Sample At Reset */ |
| 48 | boot_device = (val & BOOT_DEV_SEL_MASK) >> BOOT_DEV_SEL_OFFS; |
Stefan Roese | 04ec0d3 | 2016-01-07 14:12:04 +0100 | [diff] [blame] | 49 | debug("SAR_REG=0x%08x boot_device=0x%x\n", val, boot_device); |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 50 | switch (boot_device) { |
Sean Nyekjaer | 11d4466 | 2017-11-24 14:01:47 +0100 | [diff] [blame] | 51 | #if defined(CONFIG_ARMADA_38X) |
| 52 | case BOOT_FROM_NAND: |
| 53 | return BOOT_DEVICE_NAND; |
| 54 | #endif |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 55 | #ifdef CONFIG_SPL_MMC_SUPPORT |
| 56 | case BOOT_FROM_MMC: |
| 57 | case BOOT_FROM_MMC_ALT: |
| 58 | return BOOT_DEVICE_MMC1; |
Stefan Roese | 6396213 | 2015-07-20 11:20:36 +0200 | [diff] [blame] | 59 | #endif |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 60 | case BOOT_FROM_UART: |
Baruch Siach | e4c0ad6 | 2017-09-24 15:50:17 +0300 | [diff] [blame] | 61 | #ifdef BOOT_FROM_UART_ALT |
| 62 | case BOOT_FROM_UART_ALT: |
| 63 | #endif |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 64 | return BOOT_DEVICE_UART; |
Baruch Siach | b936a27 | 2019-05-16 13:03:58 +0300 | [diff] [blame] | 65 | #ifdef BOOT_FROM_SATA |
| 66 | case BOOT_FROM_SATA: |
| 67 | case BOOT_FROM_SATA_ALT: |
| 68 | return BOOT_DEVICE_SATA; |
| 69 | #endif |
Stefan Roese | 44e7ebd | 2016-01-07 14:09:09 +0100 | [diff] [blame] | 70 | case BOOT_FROM_SPI: |
| 71 | default: |
| 72 | return BOOT_DEVICE_SPI; |
| 73 | }; |
| 74 | } |
| 75 | |
| 76 | u32 spl_boot_device(void) |
| 77 | { |
| 78 | return get_boot_device(); |
Stefan Roese | 6396213 | 2015-07-20 11:20:36 +0200 | [diff] [blame] | 79 | } |
| 80 | |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 81 | void board_init_f(ulong dummy) |
| 82 | { |
Stefan Roese | 83097cf | 2015-11-25 07:37:00 +0100 | [diff] [blame] | 83 | int ret; |
| 84 | |
Stefan Roese | d7f2c12 | 2015-04-17 18:13:06 +0200 | [diff] [blame] | 85 | /* |
| 86 | * Pin muxing needs to be done before UART output, since |
| 87 | * on A38x the UART pins need some re-muxing for output |
| 88 | * to work. |
| 89 | */ |
| 90 | board_early_init_f(); |
| 91 | |
Stefan Roese | 83097cf | 2015-11-25 07:37:00 +0100 | [diff] [blame] | 92 | /* Example code showing how to enable the debug UART on MVEBU */ |
| 93 | #ifdef EARLY_UART |
| 94 | /* |
| 95 | * Debug UART can be used from here if required: |
| 96 | * |
| 97 | * debug_uart_init(); |
| 98 | * printch('a'); |
| 99 | * printhex8(0x1234); |
| 100 | * printascii("string"); |
| 101 | */ |
| 102 | #endif |
| 103 | |
Stefan Roese | 85bddff | 2019-04-12 16:42:28 +0200 | [diff] [blame] | 104 | /* |
| 105 | * Use special translation offset for SPL. This needs to be |
| 106 | * configured *before* spl_init() is called as this function |
| 107 | * calls dm_init() which calls the bind functions of the |
| 108 | * device drivers. Here the base address needs to be configured |
| 109 | * (translated) correctly. |
| 110 | */ |
| 111 | gd->translation_offset = 0xd0000000 - 0xf1000000; |
| 112 | |
Stefan Roese | 83097cf | 2015-11-25 07:37:00 +0100 | [diff] [blame] | 113 | ret = spl_init(); |
| 114 | if (ret) { |
| 115 | debug("spl_init() failed: %d\n", ret); |
| 116 | hang(); |
| 117 | } |
| 118 | |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 119 | preloader_console_init(); |
| 120 | |
Stefan Roese | d04fe8b | 2015-07-15 15:36:52 +0200 | [diff] [blame] | 121 | timer_init(); |
| 122 | |
Stefan Roese | 479f9af | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 123 | /* Armada 375 does not support SerDes and DDR3 init yet */ |
| 124 | #if !defined(CONFIG_ARMADA_375) |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 125 | /* First init the serdes PHY's */ |
| 126 | serdes_phy_config(); |
| 127 | |
| 128 | /* Setup DDR */ |
| 129 | ddr3_init(); |
Stefan Roese | 479f9af | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 130 | #endif |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 131 | |
Baruch Siach | 056e107 | 2019-07-10 18:23:04 +0300 | [diff] [blame] | 132 | /* Initialize Auto Voltage Scaling */ |
| 133 | mv_avs_init(); |
| 134 | |
Chris Packham | 3667bec | 2020-02-26 19:53:50 +1300 | [diff] [blame] | 135 | /* Update read timing control for PCIe */ |
| 136 | mv_rtc_config(); |
| 137 | |
Stefan Roese | 99b3ea7 | 2015-08-25 13:49:41 +0200 | [diff] [blame] | 138 | /* |
| 139 | * Return to the BootROM to continue the Marvell xmodem |
| 140 | * UART boot protocol. As initiated by the kwboot tool. |
| 141 | * |
| 142 | * This can only be done by the BootROM and not by the |
| 143 | * U-Boot SPL infrastructure, since the beginning of the |
| 144 | * image is already read and interpreted by the BootROM. |
| 145 | * SPL has no chance to receive this information. So we |
| 146 | * need to return to the BootROM to enable this xmodem |
| 147 | * UART download. |
Sean Nyekjaer | 11d4466 | 2017-11-24 14:01:47 +0100 | [diff] [blame] | 148 | * |
| 149 | * If booting from NAND lets let the BootROM load the |
| 150 | * rest of the bootloader. |
Stefan Roese | 99b3ea7 | 2015-08-25 13:49:41 +0200 | [diff] [blame] | 151 | */ |
Sean Nyekjaer | 11d4466 | 2017-11-24 14:01:47 +0100 | [diff] [blame] | 152 | switch (get_boot_device()) { |
| 153 | case BOOT_DEVICE_UART: |
| 154 | #if defined(CONFIG_ARMADA_38X) |
| 155 | case BOOT_DEVICE_NAND: |
| 156 | #endif |
| 157 | return_to_bootrom(); |
| 158 | } |
Stefan Roese | e463bf3 | 2015-01-19 11:33:42 +0100 | [diff] [blame] | 159 | } |