Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Freescale i.MX28 Boot setup |
| 4 | * |
| 5 | * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> |
| 6 | * on behalf of DENX Software Engineering GmbH |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <config.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> |
Simon Glass | 3673618 | 2019-11-14 12:57:24 -0700 | [diff] [blame] | 13 | #include <serial.h> |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 14 | #include <asm/io.h> |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 15 | #include <asm/arch/imx-regs.h> |
Marek Vasut | 9136fe9 | 2012-05-01 11:09:44 +0000 | [diff] [blame] | 16 | #include <asm/arch/sys_proto.h> |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 17 | #include <asm/gpio.h> |
Marek Vasut | d18f74a | 2014-03-19 02:21:35 +0100 | [diff] [blame] | 18 | #include <linux/compiler.h> |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 19 | |
Otavio Salvador | f930ea6 | 2012-08-05 09:05:32 +0000 | [diff] [blame] | 20 | #include "mxs_init.h" |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 21 | |
Marek Vasut | d18f74a | 2014-03-19 02:21:35 +0100 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
Marek Vasut | bb9f5e2 | 2014-03-19 02:21:36 +0100 | [diff] [blame] | 23 | static gd_t gdata __section(".data"); |
Stefano Babic | c01f10b | 2014-04-02 10:42:06 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_SPL_SERIAL_SUPPORT |
Marek Vasut | bb9f5e2 | 2014-03-19 02:21:36 +0100 | [diff] [blame] | 25 | static bd_t bdata __section(".data"); |
Stefano Babic | c01f10b | 2014-04-02 10:42:06 +0200 | [diff] [blame] | 26 | #endif |
Marek Vasut | d18f74a | 2014-03-19 02:21:35 +0100 | [diff] [blame] | 27 | |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 28 | /* |
| 29 | * This delay function is intended to be used only in early stage of boot, where |
Rasmus Villemoes | e4c6332 | 2019-09-10 08:32:01 +0000 | [diff] [blame] | 30 | * clock are not set up yet. |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 31 | */ |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 32 | void early_delay(int delay) |
| 33 | { |
Marek Vasut | 794cdb9 | 2012-08-28 15:15:53 +0000 | [diff] [blame] | 34 | struct mxs_digctl_regs *digctl_regs = |
| 35 | (struct mxs_digctl_regs *)MXS_DIGCTL_BASE; |
| 36 | |
| 37 | uint32_t st = readl(&digctl_regs->hw_digctl_microseconds); |
Rasmus Villemoes | e4c6332 | 2019-09-10 08:32:01 +0000 | [diff] [blame] | 38 | while (readl(&digctl_regs->hw_digctl_microseconds) - st <= delay) |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 39 | ; |
| 40 | } |
| 41 | |
Marek Vasut | aaf7d12 | 2016-12-15 16:48:55 +0100 | [diff] [blame] | 42 | #if defined(CONFIG_MX23) |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 43 | #define MUX_CONFIG_BOOTMODE_PAD (MXS_PAD_3V3 | MXS_PAD_4MA | MXS_PAD_NOPULL) |
Marek Vasut | e5cf751 | 2012-11-30 07:09:23 +0000 | [diff] [blame] | 44 | static const iomux_cfg_t iomux_boot[] = { |
Otavio Salvador | 5304a26 | 2013-01-11 03:19:10 +0000 | [diff] [blame] | 45 | MX23_PAD_LCD_D00__GPIO_1_0 | MUX_CONFIG_BOOTMODE_PAD, |
| 46 | MX23_PAD_LCD_D01__GPIO_1_1 | MUX_CONFIG_BOOTMODE_PAD, |
| 47 | MX23_PAD_LCD_D02__GPIO_1_2 | MUX_CONFIG_BOOTMODE_PAD, |
| 48 | MX23_PAD_LCD_D03__GPIO_1_3 | MUX_CONFIG_BOOTMODE_PAD, |
| 49 | MX23_PAD_LCD_D04__GPIO_1_4 | MUX_CONFIG_BOOTMODE_PAD, |
| 50 | MX23_PAD_LCD_D05__GPIO_1_5 | MUX_CONFIG_BOOTMODE_PAD, |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 51 | }; |
Marek Vasut | aaf7d12 | 2016-12-15 16:48:55 +0100 | [diff] [blame] | 52 | #endif |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 53 | |
Marek Vasut | e5cf751 | 2012-11-30 07:09:23 +0000 | [diff] [blame] | 54 | static uint8_t mxs_get_bootmode_index(void) |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 55 | { |
| 56 | uint8_t bootmode = 0; |
| 57 | int i; |
| 58 | uint8_t masked; |
| 59 | |
Jörg Krause | 09b0057 | 2015-03-26 23:53:11 +0100 | [diff] [blame] | 60 | #if defined(CONFIG_MX23) |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 61 | /* Setup IOMUX of bootmode pads to GPIO */ |
| 62 | mxs_iomux_setup_multiple_pads(iomux_boot, ARRAY_SIZE(iomux_boot)); |
| 63 | |
Otavio Salvador | 5304a26 | 2013-01-11 03:19:10 +0000 | [diff] [blame] | 64 | /* Setup bootmode pins as GPIO input */ |
| 65 | gpio_direction_input(MX23_PAD_LCD_D00__GPIO_1_0); |
| 66 | gpio_direction_input(MX23_PAD_LCD_D01__GPIO_1_1); |
| 67 | gpio_direction_input(MX23_PAD_LCD_D02__GPIO_1_2); |
| 68 | gpio_direction_input(MX23_PAD_LCD_D03__GPIO_1_3); |
| 69 | gpio_direction_input(MX23_PAD_LCD_D05__GPIO_1_5); |
| 70 | |
| 71 | /* Read bootmode pads */ |
| 72 | bootmode |= (gpio_get_value(MX23_PAD_LCD_D00__GPIO_1_0) ? 1 : 0) << 0; |
| 73 | bootmode |= (gpio_get_value(MX23_PAD_LCD_D01__GPIO_1_1) ? 1 : 0) << 1; |
| 74 | bootmode |= (gpio_get_value(MX23_PAD_LCD_D02__GPIO_1_2) ? 1 : 0) << 2; |
| 75 | bootmode |= (gpio_get_value(MX23_PAD_LCD_D03__GPIO_1_3) ? 1 : 0) << 3; |
| 76 | bootmode |= (gpio_get_value(MX23_PAD_LCD_D05__GPIO_1_5) ? 1 : 0) << 5; |
| 77 | #elif defined(CONFIG_MX28) |
Jörg Krause | 09b0057 | 2015-03-26 23:53:11 +0100 | [diff] [blame] | 78 | /* The global boot mode will be detected by ROM code and its value |
| 79 | * is stored at the fixed address 0x00019BF0 in OCRAM. |
| 80 | */ |
| 81 | #define GLOBAL_BOOT_MODE_ADDR 0x00019BF0 |
| 82 | bootmode = __raw_readl(GLOBAL_BOOT_MODE_ADDR); |
Otavio Salvador | 5304a26 | 2013-01-11 03:19:10 +0000 | [diff] [blame] | 83 | #endif |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 84 | |
Otavio Salvador | cbf0bf2 | 2012-08-13 09:53:12 +0000 | [diff] [blame] | 85 | for (i = 0; i < ARRAY_SIZE(mxs_boot_modes); i++) { |
| 86 | masked = bootmode & mxs_boot_modes[i].boot_mask; |
| 87 | if (masked == mxs_boot_modes[i].boot_pads) |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 88 | break; |
| 89 | } |
| 90 | |
| 91 | return i; |
| 92 | } |
| 93 | |
Marek Vasut | 913784a | 2014-03-05 20:01:13 +0100 | [diff] [blame] | 94 | static void mxs_spl_fixup_vectors(void) |
| 95 | { |
| 96 | /* |
| 97 | * Copy our vector table to 0x0, since due to HAB, we cannot |
| 98 | * be loaded to 0x0. We want to have working vectoring though, |
| 99 | * thus this fixup. Our vectoring table is PIC, so copying is |
| 100 | * fine. |
| 101 | */ |
| 102 | extern uint32_t _start; |
Wolfgang Denk | 6ae8083 | 2014-11-06 14:02:57 +0100 | [diff] [blame] | 103 | |
| 104 | /* cppcheck-suppress nullPointer */ |
Marek Vasut | 913784a | 2014-03-05 20:01:13 +0100 | [diff] [blame] | 105 | memcpy(0x0, &_start, 0x60); |
| 106 | } |
| 107 | |
Marek Vasut | bb9f5e2 | 2014-03-19 02:21:36 +0100 | [diff] [blame] | 108 | static void mxs_spl_console_init(void) |
| 109 | { |
| 110 | #ifdef CONFIG_SPL_SERIAL_SUPPORT |
| 111 | gd->bd = &bdata; |
| 112 | gd->baudrate = CONFIG_BAUDRATE; |
| 113 | serial_init(); |
| 114 | gd->have_console = 1; |
| 115 | #endif |
| 116 | } |
| 117 | |
Marek Vasut | 0dc62ba | 2013-08-31 15:53:44 +0200 | [diff] [blame] | 118 | void mxs_common_spl_init(const uint32_t arg, const uint32_t *resptr, |
| 119 | const iomux_cfg_t *iomux_setup, |
| 120 | const unsigned int iomux_size) |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 121 | { |
Mans Rullgard | 2f66b40 | 2018-04-21 16:11:09 +0100 | [diff] [blame] | 122 | struct mxs_spl_data *data = MXS_SPL_DATA; |
Otavio Salvador | f930ea6 | 2012-08-05 09:05:32 +0000 | [diff] [blame] | 123 | uint8_t bootmode = mxs_get_bootmode_index(); |
Marek Vasut | d18f74a | 2014-03-19 02:21:35 +0100 | [diff] [blame] | 124 | gd = &gdata; |
Marek Vasut | 9136fe9 | 2012-05-01 11:09:44 +0000 | [diff] [blame] | 125 | |
Marek Vasut | 913784a | 2014-03-05 20:01:13 +0100 | [diff] [blame] | 126 | mxs_spl_fixup_vectors(); |
| 127 | |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 128 | mxs_iomux_setup_multiple_pads(iomux_setup, iomux_size); |
Marek Vasut | 913784a | 2014-03-05 20:01:13 +0100 | [diff] [blame] | 129 | |
Marek Vasut | bb9f5e2 | 2014-03-19 02:21:36 +0100 | [diff] [blame] | 130 | mxs_spl_console_init(); |
Graeme Russ | 0f2483a | 2015-01-25 12:07:51 +1100 | [diff] [blame] | 131 | debug("SPL: Serial Console Initialised\n"); |
Marek Vasut | bb9f5e2 | 2014-03-19 02:21:36 +0100 | [diff] [blame] | 132 | |
Otavio Salvador | f930ea6 | 2012-08-05 09:05:32 +0000 | [diff] [blame] | 133 | mxs_power_init(); |
Marek Vasut | 9136fe9 | 2012-05-01 11:09:44 +0000 | [diff] [blame] | 134 | |
Otavio Salvador | f930ea6 | 2012-08-05 09:05:32 +0000 | [diff] [blame] | 135 | mxs_mem_init(); |
| 136 | data->mem_dram_size = mxs_mem_get_size(); |
Marek Vasut | 9136fe9 | 2012-05-01 11:09:44 +0000 | [diff] [blame] | 137 | |
Marek Vasut | b28fe46 | 2012-05-01 11:09:45 +0000 | [diff] [blame] | 138 | data->boot_mode_idx = bootmode; |
| 139 | |
Otavio Salvador | f930ea6 | 2012-08-05 09:05:32 +0000 | [diff] [blame] | 140 | mxs_power_wait_pswitch(); |
Graeme Russ | 9bf144c | 2015-01-25 12:07:53 +1100 | [diff] [blame] | 141 | |
| 142 | if (mxs_boot_modes[data->boot_mode_idx].boot_pads == MXS_BM_JTAG) { |
| 143 | debug("SPL: Waiting for JTAG user\n"); |
| 144 | asm volatile ("x: b x"); |
| 145 | } |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Mans Rullgard | 65d2190 | 2018-04-21 16:11:10 +0100 | [diff] [blame] | 148 | #ifndef CONFIG_SPL_FRAMEWORK |
Marek Vasut | 151f49d | 2011-12-02 03:47:40 +0000 | [diff] [blame] | 149 | /* Support aparatus */ |
| 150 | inline void board_init_f(unsigned long bootflag) |
| 151 | { |
| 152 | for (;;) |
| 153 | ; |
| 154 | } |
| 155 | |
| 156 | inline void board_init_r(gd_t *id, ulong dest_addr) |
| 157 | { |
| 158 | for (;;) |
| 159 | ; |
| 160 | } |
Mans Rullgard | 65d2190 | 2018-04-21 16:11:10 +0100 | [diff] [blame] | 161 | #endif |