Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
| 4 | * (C) Copyright 2002-2006 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
| 7 | * (C) Copyright 2002 |
| 8 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 9 | * Marius Groeger <mgroeger@sysgo.de> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 13 | #include <bloblist.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 14 | #include <bootstage.h> |
Simon Glass | d96c260 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 15 | #include <clock_legacy.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 16 | #include <console.h> |
Mario Six | 5d6c61a | 2018-08-06 10:23:41 +0200 | [diff] [blame] | 17 | #include <cpu.h> |
Simon Glass | 30c7c43 | 2019-11-14 12:57:34 -0700 | [diff] [blame] | 18 | #include <cpu_func.h> |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 19 | #include <dm.h> |
Simon Glass | 4bfd1f5 | 2019-08-01 09:46:43 -0600 | [diff] [blame] | 20 | #include <env.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 21 | #include <env_internal.h> |
Simon Glass | 5a42190 | 2022-03-04 08:43:02 -0700 | [diff] [blame] | 22 | #include <event.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 23 | #include <fdtdec.h> |
Simon Glass | f828bf2 | 2013-04-20 08:42:41 +0000 | [diff] [blame] | 24 | #include <fs.h> |
Simon Glass | db41d65 | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 25 | #include <hang.h> |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 26 | #include <i2c.h> |
Simon Glass | 67c4e9f | 2019-11-14 12:57:45 -0700 | [diff] [blame] | 27 | #include <init.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 28 | #include <initcall.h> |
Simon Glass | 3c1ecde | 2019-08-01 09:46:38 -0600 | [diff] [blame] | 29 | #include <lcd.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 30 | #include <log.h> |
Simon Glass | fb5cf7f | 2015-02-27 22:06:36 -0700 | [diff] [blame] | 31 | #include <malloc.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 32 | #include <mapmem.h> |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 33 | #include <os.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 34 | #include <post.h> |
Simon Glass | e47b2d6 | 2017-03-31 08:40:38 -0600 | [diff] [blame] | 35 | #include <relocate.h> |
Simon Glass | b03e051 | 2019-11-14 12:57:24 -0700 | [diff] [blame] | 36 | #include <serial.h> |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 37 | #ifdef CONFIG_SPL |
| 38 | #include <spl.h> |
| 39 | #endif |
Jeroen Hofstee | c5d4001 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 40 | #include <status_led.h> |
Mario Six | 23471ae | 2018-08-06 10:23:34 +0200 | [diff] [blame] | 41 | #include <sysreset.h> |
Simon Glass | 1057e6c | 2016-02-24 09:14:50 -0700 | [diff] [blame] | 42 | #include <timer.h> |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 43 | #include <trace.h> |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 44 | #include <video.h> |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 45 | #include <watchdog.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 46 | #include <asm/cache.h> |
Simon Glass | b885d02 | 2017-05-17 08:23:01 -0600 | [diff] [blame] | 47 | #ifdef CONFIG_MACH_TYPE |
| 48 | #include <asm/mach-types.h> |
| 49 | #endif |
Simon Glass | 1fbf97d | 2017-03-31 08:40:39 -0600 | [diff] [blame] | 50 | #if defined(CONFIG_MP) && defined(CONFIG_PPC) |
| 51 | #include <asm/mp.h> |
| 52 | #endif |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 53 | #include <asm/global_data.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 54 | #include <asm/io.h> |
| 55 | #include <asm/sections.h> |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 56 | #include <dm/root.h> |
Simon Glass | 056285f | 2017-03-31 08:40:35 -0600 | [diff] [blame] | 57 | #include <linux/errno.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * Pointer to initial global data area |
| 61 | * |
| 62 | * Here we initialize it if needed. |
| 63 | */ |
| 64 | #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR |
| 65 | #undef XTRN_DECLARE_GLOBAL_DATA_PTR |
| 66 | #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */ |
Mario Six | 16ef147 | 2018-01-15 11:10:02 +0100 | [diff] [blame] | 67 | DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 68 | #else |
| 69 | DECLARE_GLOBAL_DATA_PTR; |
| 70 | #endif |
| 71 | |
| 72 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 73 | * TODO(sjg@chromium.org): IMO this code should be |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 74 | * refactored to a single function, something like: |
| 75 | * |
| 76 | * void led_set_state(enum led_colour_t colour, int on); |
| 77 | */ |
| 78 | /************************************************************************ |
| 79 | * Coloured LED functionality |
| 80 | ************************************************************************ |
| 81 | * May be supplied by boards if desired |
| 82 | */ |
Jeroen Hofstee | c5d4001 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 83 | __weak void coloured_LED_init(void) {} |
| 84 | __weak void red_led_on(void) {} |
| 85 | __weak void red_led_off(void) {} |
| 86 | __weak void green_led_on(void) {} |
| 87 | __weak void green_led_off(void) {} |
| 88 | __weak void yellow_led_on(void) {} |
| 89 | __weak void yellow_led_off(void) {} |
| 90 | __weak void blue_led_on(void) {} |
| 91 | __weak void blue_led_off(void) {} |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 92 | |
| 93 | /* |
| 94 | * Why is gd allocated a register? Prior to reloc it might be better to |
| 95 | * just pass it around to each function in this file? |
| 96 | * |
| 97 | * After reloc one could argue that it is hardly used and doesn't need |
| 98 | * to be in a register. Or if it is it should perhaps hold pointers to all |
| 99 | * global data for all modules, so that post-reloc we can avoid the massive |
| 100 | * literal pool we get on ARM. Or perhaps just encourage each module to use |
| 101 | * a structure... |
| 102 | */ |
| 103 | |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 104 | #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 105 | static int init_func_watchdog_init(void) |
| 106 | { |
Tom Rini | ea3310e | 2017-03-14 11:08:10 -0400 | [diff] [blame] | 107 | # if defined(CONFIG_HW_WATCHDOG) && \ |
| 108 | (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \ |
Prasanthi Chellakumar | 1473f6a | 2018-10-09 11:46:40 -0700 | [diff] [blame] | 109 | defined(CONFIG_SH) || \ |
Anatolij Gustschin | 46d7a3b | 2016-06-13 14:24:23 +0200 | [diff] [blame] | 110 | defined(CONFIG_DESIGNWARE_WATCHDOG) || \ |
Stefan Roese | 14a380a | 2015-03-10 08:04:36 +0100 | [diff] [blame] | 111 | defined(CONFIG_IMX_WATCHDOG)) |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 112 | hw_watchdog_init(); |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 113 | puts(" Watchdog enabled\n"); |
Anatolij Gustschin | ba169d9 | 2016-06-13 14:24:24 +0200 | [diff] [blame] | 114 | # endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 115 | WATCHDOG_RESET(); |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | int init_func_watchdog_reset(void) |
| 121 | { |
| 122 | WATCHDOG_RESET(); |
| 123 | |
| 124 | return 0; |
| 125 | } |
| 126 | #endif /* CONFIG_WATCHDOG */ |
| 127 | |
Jeroen Hofstee | dd2a6cd | 2014-10-08 22:57:22 +0200 | [diff] [blame] | 128 | __weak void board_add_ram_info(int use_default) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 129 | { |
| 130 | /* please define platform specific board_add_ram_info() */ |
| 131 | } |
| 132 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 133 | static int init_baud_rate(void) |
| 134 | { |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 135 | gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | |
| 139 | static int display_text_info(void) |
| 140 | { |
Ben Stoltz | 9b21749 | 2015-07-31 09:31:37 -0600 | [diff] [blame] | 141 | #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP) |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 142 | ulong bss_start, bss_end, text_base; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 143 | |
Simon Glass | 632efa7 | 2013-03-11 07:06:48 +0000 | [diff] [blame] | 144 | bss_start = (ulong)&__bss_start; |
| 145 | bss_end = (ulong)&__bss_end; |
Albert ARIBAUD | b60eff3 | 2014-02-22 17:53:43 +0100 | [diff] [blame] | 146 | |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 147 | #ifdef CONFIG_SYS_TEXT_BASE |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 148 | text_base = CONFIG_SYS_TEXT_BASE; |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 149 | #else |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 150 | text_base = CONFIG_SYS_MONITOR_BASE; |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 151 | #endif |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 152 | |
| 153 | debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n", |
Mario Six | 16ef147 | 2018-01-15 11:10:02 +0100 | [diff] [blame] | 154 | text_base, bss_start, bss_end); |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 155 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 156 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 157 | return 0; |
| 158 | } |
| 159 | |
Mario Six | 23471ae | 2018-08-06 10:23:34 +0200 | [diff] [blame] | 160 | #ifdef CONFIG_SYSRESET |
| 161 | static int print_resetinfo(void) |
| 162 | { |
| 163 | struct udevice *dev; |
| 164 | char status[256]; |
| 165 | int ret; |
| 166 | |
| 167 | ret = uclass_first_device_err(UCLASS_SYSRESET, &dev); |
| 168 | if (ret) { |
| 169 | debug("%s: No sysreset device found (error: %d)\n", |
| 170 | __func__, ret); |
| 171 | /* Not all boards have sysreset drivers available during early |
| 172 | * boot, so don't fail if one can't be found. |
| 173 | */ |
| 174 | return 0; |
| 175 | } |
| 176 | |
| 177 | if (!sysreset_get_status(dev, status, sizeof(status))) |
| 178 | printf("%s", status); |
| 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | #endif |
| 183 | |
Mario Six | 5d6c61a | 2018-08-06 10:23:41 +0200 | [diff] [blame] | 184 | #if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU) |
| 185 | static int print_cpuinfo(void) |
| 186 | { |
| 187 | struct udevice *dev; |
| 188 | char desc[512]; |
| 189 | int ret; |
| 190 | |
Ye Li | f5b66af | 2020-05-03 21:58:50 +0800 | [diff] [blame] | 191 | dev = cpu_get_current_dev(); |
| 192 | if (!dev) { |
| 193 | debug("%s: Could not get CPU device\n", |
| 194 | __func__); |
| 195 | return -ENODEV; |
Mario Six | 5d6c61a | 2018-08-06 10:23:41 +0200 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | ret = cpu_get_desc(dev, desc, sizeof(desc)); |
| 199 | if (ret) { |
| 200 | debug("%s: Could not get CPU description (err = %d)\n", |
| 201 | dev->name, ret); |
| 202 | return ret; |
| 203 | } |
| 204 | |
Bin Meng | ecfe663 | 2018-10-10 22:06:55 -0700 | [diff] [blame] | 205 | printf("CPU: %s\n", desc); |
Mario Six | 5d6c61a | 2018-08-06 10:23:41 +0200 | [diff] [blame] | 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | #endif |
| 210 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 211 | static int announce_dram_init(void) |
| 212 | { |
| 213 | puts("DRAM: "); |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | static int show_dram_config(void) |
| 218 | { |
York Sun | fa39ffe | 2014-05-02 17:28:05 -0700 | [diff] [blame] | 219 | unsigned long long size; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 220 | int i; |
| 221 | |
| 222 | debug("\nRAM Configuration:\n"); |
| 223 | for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 224 | size += gd->bd->bi_dram[i].size; |
Bin Meng | 715f599 | 2015-08-06 01:31:20 -0700 | [diff] [blame] | 225 | debug("Bank #%d: %llx ", i, |
| 226 | (unsigned long long)(gd->bd->bi_dram[i].start)); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 227 | #ifdef DEBUG |
| 228 | print_size(gd->bd->bi_dram[i].size, "\n"); |
| 229 | #endif |
| 230 | } |
| 231 | debug("\nDRAM: "); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 232 | |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 233 | print_size(size, ""); |
| 234 | board_add_ram_info(0); |
| 235 | putc('\n'); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 240 | __weak int dram_init_banksize(void) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 241 | { |
Stefan Roese | f120aa7 | 2020-08-12 13:02:39 +0200 | [diff] [blame] | 242 | gd->bd->bi_dram[0].start = gd->ram_base; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 243 | gd->bd->bi_dram[0].size = get_effective_memsize(); |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 244 | |
| 245 | return 0; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 248 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 249 | static int init_func_i2c(void) |
| 250 | { |
| 251 | puts("I2C: "); |
trem | 815a76f | 2013-09-21 18:13:34 +0200 | [diff] [blame] | 252 | i2c_init_all(); |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 253 | puts("ready\n"); |
| 254 | return 0; |
| 255 | } |
| 256 | #endif |
| 257 | |
Rajesh Bhagat | 1fab98f | 2018-01-17 16:13:08 +0530 | [diff] [blame] | 258 | #if defined(CONFIG_VID) |
| 259 | __weak int init_func_vid(void) |
| 260 | { |
| 261 | return 0; |
| 262 | } |
| 263 | #endif |
| 264 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 265 | static int setup_mon_len(void) |
| 266 | { |
Michal Simek | e945f6d | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 267 | #if defined(__ARM__) || defined(__MICROBLAZE__) |
Albert ARIBAUD | b60eff3 | 2014-02-22 17:53:43 +0100 | [diff] [blame] | 268 | gd->mon_len = (ulong)&__bss_end - (ulong)_start; |
Heinrich Schuchardt | 3c9fc23 | 2021-05-19 12:02:39 +0200 | [diff] [blame] | 269 | #elif defined(CONFIG_SANDBOX) |
| 270 | gd->mon_len = 0; |
| 271 | #elif defined(CONFIG_EFI_APP) |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 272 | gd->mon_len = (ulong)&_end - (ulong)_init; |
Tom Rini | ea3310e | 2017-03-14 11:08:10 -0400 | [diff] [blame] | 273 | #elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA) |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 274 | gd->mon_len = CONFIG_SYS_MONITOR_LEN; |
Tom Rini | 1123213 | 2022-04-06 09:21:25 -0400 | [diff] [blame] | 275 | #elif defined(CONFIG_SH) || defined(CONFIG_RISCV) |
Kun-Hua Huang | 2e88bb2 | 2015-08-24 14:52:35 +0800 | [diff] [blame] | 276 | gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start); |
Simon Glass | b0b3595 | 2016-05-14 18:49:28 -0600 | [diff] [blame] | 277 | #elif defined(CONFIG_SYS_MONITOR_BASE) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 278 | /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */ |
| 279 | gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE; |
Simon Glass | 632efa7 | 2013-03-11 07:06:48 +0000 | [diff] [blame] | 280 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 281 | return 0; |
| 282 | } |
| 283 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 284 | static int setup_spl_handoff(void) |
| 285 | { |
| 286 | #if CONFIG_IS_ENABLED(HANDOFF) |
Simon Glass | 7f3b79a | 2022-01-12 19:26:17 -0700 | [diff] [blame] | 287 | gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 288 | sizeof(struct spl_handoff)); |
| 289 | debug("Found SPL hand-off info %p\n", gd->spl_handoff); |
| 290 | #endif |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 295 | __weak int arch_cpu_init(void) |
| 296 | { |
| 297 | return 0; |
| 298 | } |
| 299 | |
Paul Burton | 8ebf506 | 2016-09-21 11:18:46 +0100 | [diff] [blame] | 300 | __weak int mach_cpu_init(void) |
| 301 | { |
| 302 | return 0; |
| 303 | } |
| 304 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 305 | /* Get the top of usable RAM */ |
| 306 | __weak ulong board_get_usable_ram_top(ulong total_size) |
| 307 | { |
Heinrich Schuchardt | 5428096 | 2020-05-09 21:21:14 +0200 | [diff] [blame] | 308 | #if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0 |
Stephen Warren | 1e4d11a | 2014-12-23 10:34:49 -0700 | [diff] [blame] | 309 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 310 | * Detect whether we have so much RAM that it goes past the end of our |
Stephen Warren | 1e4d11a | 2014-12-23 10:34:49 -0700 | [diff] [blame] | 311 | * 32-bit address space. If so, clip the usable RAM so it doesn't. |
| 312 | */ |
| 313 | if (gd->ram_top < CONFIG_SYS_SDRAM_BASE) |
| 314 | /* |
| 315 | * Will wrap back to top of 32-bit space when reservations |
| 316 | * are made. |
| 317 | */ |
| 318 | return 0; |
| 319 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 320 | return gd->ram_top; |
| 321 | } |
| 322 | |
| 323 | static int setup_dest_addr(void) |
| 324 | { |
| 325 | debug("Monitor len: %08lX\n", gd->mon_len); |
| 326 | /* |
| 327 | * Ram is setup, size stored in gd !! |
| 328 | */ |
| 329 | debug("Ram size: %08lX\n", (ulong)gd->ram_size); |
Tom Rini | 24c904f | 2022-04-06 10:33:32 -0400 | [diff] [blame] | 330 | #if CONFIG_VAL(SYS_MEM_TOP_HIDE) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 331 | /* |
| 332 | * Subtract specified amount of memory to hide so that it won't |
| 333 | * get "touched" at all by U-Boot. By fixing up gd->ram_size |
| 334 | * the Linux kernel should now get passed the now "corrected" |
York Sun | 36cc0de | 2017-03-06 09:02:28 -0800 | [diff] [blame] | 335 | * memory size and won't touch it either. This should work |
| 336 | * for arch/ppc and arch/powerpc. Only Linux board ports in |
| 337 | * arch/powerpc with bootwrapper support, that recalculate the |
| 338 | * memory size from the SDRAM controller setup will have to |
| 339 | * get fixed. |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 340 | */ |
York Sun | 36cc0de | 2017-03-06 09:02:28 -0800 | [diff] [blame] | 341 | gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE; |
| 342 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 343 | #ifdef CONFIG_SYS_SDRAM_BASE |
Siva Durga Prasad Paladugu | 1473b12 | 2018-07-16 15:56:10 +0530 | [diff] [blame] | 344 | gd->ram_base = CONFIG_SYS_SDRAM_BASE; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 345 | #endif |
Siva Durga Prasad Paladugu | 1473b12 | 2018-07-16 15:56:10 +0530 | [diff] [blame] | 346 | gd->ram_top = gd->ram_base + get_effective_memsize(); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 347 | gd->ram_top = board_get_usable_ram_top(gd->mon_len); |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 348 | gd->relocaddr = gd->ram_top; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 349 | debug("Ram top: %08lX\n", (ulong)gd->ram_top); |
Gabriel Huau | ec3b482 | 2014-09-03 13:57:54 -0700 | [diff] [blame] | 350 | #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 351 | /* |
| 352 | * We need to make sure the location we intend to put secondary core |
| 353 | * boot code is reserved and not used by any part of u-boot |
| 354 | */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 355 | if (gd->relocaddr > determine_mp_bootpg(NULL)) { |
| 356 | gd->relocaddr = determine_mp_bootpg(NULL); |
| 357 | debug("Reserving MP boot page to %08lx\n", gd->relocaddr); |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 358 | } |
| 359 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 360 | return 0; |
| 361 | } |
| 362 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 363 | #ifdef CONFIG_PRAM |
| 364 | /* reserve protected RAM */ |
| 365 | static int reserve_pram(void) |
| 366 | { |
| 367 | ulong reg; |
| 368 | |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 369 | reg = env_get_ulong("pram", 10, CONFIG_PRAM); |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 370 | gd->relocaddr -= (reg << 10); /* size is in kB */ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 371 | debug("Reserving %ldk for protected RAM at %08lx\n", reg, |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 372 | gd->relocaddr); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 373 | return 0; |
| 374 | } |
| 375 | #endif /* CONFIG_PRAM */ |
| 376 | |
| 377 | /* Round memory pointer down to next 4 kB limit */ |
| 378 | static int reserve_round_4k(void) |
| 379 | { |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 380 | gd->relocaddr &= ~(4096 - 1); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 381 | return 0; |
| 382 | } |
| 383 | |
Ovidiu Panait | 79926e4 | 2020-03-29 20:57:41 +0300 | [diff] [blame] | 384 | __weak int arch_reserve_mmu(void) |
| 385 | { |
| 386 | return 0; |
| 387 | } |
| 388 | |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 389 | static int reserve_video(void) |
| 390 | { |
Simon Glass | 0f079eb | 2017-03-31 08:40:30 -0600 | [diff] [blame] | 391 | #ifdef CONFIG_DM_VIDEO |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 392 | ulong addr; |
| 393 | int ret; |
| 394 | |
| 395 | addr = gd->relocaddr; |
| 396 | ret = video_reserve(&addr); |
| 397 | if (ret) |
| 398 | return ret; |
Simon Glass | 5630d2f | 2020-09-27 18:46:22 -0600 | [diff] [blame] | 399 | debug("Reserving %luk for video at: %08lx\n", |
Patrick Delaunay | 83064c2 | 2021-04-09 18:02:06 +0200 | [diff] [blame] | 400 | ((unsigned long)gd->relocaddr - addr) >> 10, addr); |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 401 | gd->relocaddr = addr; |
Simon Glass | 0f079eb | 2017-03-31 08:40:30 -0600 | [diff] [blame] | 402 | #elif defined(CONFIG_LCD) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 403 | /* reserve memory for LCD display (always full pages) */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 404 | gd->relocaddr = lcd_setmem(gd->relocaddr); |
| 405 | gd->fb_base = gd->relocaddr; |
Simon Glass | 0f079eb | 2017-03-31 08:40:30 -0600 | [diff] [blame] | 406 | #endif |
Simon Glass | 8703ef3 | 2016-01-18 19:52:20 -0700 | [diff] [blame] | 407 | |
| 408 | return 0; |
| 409 | } |
Simon Glass | 8703ef3 | 2016-01-18 19:52:20 -0700 | [diff] [blame] | 410 | |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 411 | static int reserve_trace(void) |
| 412 | { |
| 413 | #ifdef CONFIG_TRACE |
| 414 | gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE; |
| 415 | gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE); |
Heinrich Schuchardt | 7ea3357 | 2019-06-14 21:52:22 +0200 | [diff] [blame] | 416 | debug("Reserving %luk for trace data at: %08lx\n", |
| 417 | (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr); |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 418 | #endif |
| 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 423 | static int reserve_uboot(void) |
| 424 | { |
Alexey Brodkin | ff2b2ba | 2018-05-25 16:08:14 +0300 | [diff] [blame] | 425 | if (!(gd->flags & GD_FLG_SKIP_RELOC)) { |
| 426 | /* |
| 427 | * reserve memory for U-Boot code, data & bss |
| 428 | * round down to next 4 kB limit |
| 429 | */ |
| 430 | gd->relocaddr -= gd->mon_len; |
| 431 | gd->relocaddr &= ~(4096 - 1); |
| 432 | #if defined(CONFIG_E500) || defined(CONFIG_MIPS) |
| 433 | /* round down to next 64 kB limit so that IVPR stays aligned */ |
| 434 | gd->relocaddr &= ~(65536 - 1); |
| 435 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 436 | |
Alexey Brodkin | ff2b2ba | 2018-05-25 16:08:14 +0300 | [diff] [blame] | 437 | debug("Reserving %ldk for U-Boot at: %08lx\n", |
| 438 | gd->mon_len >> 10, gd->relocaddr); |
| 439 | } |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 440 | |
| 441 | gd->start_addr_sp = gd->relocaddr; |
| 442 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 443 | return 0; |
| 444 | } |
| 445 | |
Patrick Delaunay | 65c141e | 2020-03-10 10:15:05 +0100 | [diff] [blame] | 446 | /* |
| 447 | * reserve after start_addr_sp the requested size and make the stack pointer |
| 448 | * 16-byte aligned, this alignment is needed for cast on the reserved memory |
| 449 | * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes |
| 450 | * = ARMv8 Instruction Set Overview: quad word, 16 bytes |
| 451 | */ |
| 452 | static unsigned long reserve_stack_aligned(size_t size) |
| 453 | { |
| 454 | return ALIGN_DOWN(gd->start_addr_sp - size, 16); |
| 455 | } |
| 456 | |
Vikas Manocha | 5f7adb5 | 2019-08-16 09:57:44 -0700 | [diff] [blame] | 457 | #ifdef CONFIG_SYS_NONCACHED_MEMORY |
| 458 | static int reserve_noncached(void) |
| 459 | { |
Stephen Warren | 5e0404f | 2019-08-27 11:54:31 -0600 | [diff] [blame] | 460 | /* |
| 461 | * The value of gd->start_addr_sp must match the value of malloc_start |
| 462 | * calculated in boatrd_f.c:initr_malloc(), which is passed to |
| 463 | * board_r.c:mem_malloc_init() and then used by |
| 464 | * cache.c:noncached_init() |
| 465 | * |
| 466 | * These calculations must match the code in cache.c:noncached_init() |
| 467 | */ |
| 468 | gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) - |
| 469 | MMU_SECTION_SIZE; |
| 470 | gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY, |
| 471 | MMU_SECTION_SIZE); |
Vikas Manocha | 5f7adb5 | 2019-08-16 09:57:44 -0700 | [diff] [blame] | 472 | debug("Reserving %dM for noncached_alloc() at: %08lx\n", |
| 473 | CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp); |
| 474 | |
| 475 | return 0; |
| 476 | } |
| 477 | #endif |
| 478 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 479 | /* reserve memory for malloc() area */ |
| 480 | static int reserve_malloc(void) |
| 481 | { |
Patrick Delaunay | 65c141e | 2020-03-10 10:15:05 +0100 | [diff] [blame] | 482 | gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 483 | debug("Reserving %dk for malloc() at: %08lx\n", |
Mario Six | 16ef147 | 2018-01-15 11:10:02 +0100 | [diff] [blame] | 484 | TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp); |
Vikas Manocha | 5f7adb5 | 2019-08-16 09:57:44 -0700 | [diff] [blame] | 485 | #ifdef CONFIG_SYS_NONCACHED_MEMORY |
| 486 | reserve_noncached(); |
| 487 | #endif |
| 488 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 489 | return 0; |
| 490 | } |
| 491 | |
| 492 | /* (permanently) allocate a Board Info struct */ |
| 493 | static int reserve_board(void) |
| 494 | { |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 495 | if (!gd->bd) { |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 496 | gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info)); |
| 497 | gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp, |
| 498 | sizeof(struct bd_info)); |
| 499 | memset(gd->bd, '\0', sizeof(struct bd_info)); |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 500 | debug("Reserving %zu Bytes for Board Info at: %08lx\n", |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 501 | sizeof(struct bd_info), gd->start_addr_sp); |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 502 | } |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 503 | return 0; |
| 504 | } |
| 505 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 506 | static int reserve_global_data(void) |
| 507 | { |
Patrick Delaunay | 65c141e | 2020-03-10 10:15:05 +0100 | [diff] [blame] | 508 | gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t)); |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 509 | gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t)); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 510 | debug("Reserving %zu Bytes for Global Data at: %08lx\n", |
Mario Six | 16ef147 | 2018-01-15 11:10:02 +0100 | [diff] [blame] | 511 | sizeof(gd_t), gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 512 | return 0; |
| 513 | } |
| 514 | |
| 515 | static int reserve_fdt(void) |
| 516 | { |
Ovidiu Panait | 19b18da | 2020-11-28 10:43:07 +0200 | [diff] [blame] | 517 | if (!IS_ENABLED(CONFIG_OF_EMBED)) { |
| 518 | /* |
| 519 | * If the device tree is sitting immediately above our image |
| 520 | * then we must relocate it. If it is embedded in the data |
| 521 | * section, then it will be relocated with other data. |
| 522 | */ |
| 523 | if (gd->fdt_blob) { |
| 524 | gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 525 | |
Ovidiu Panait | 19b18da | 2020-11-28 10:43:07 +0200 | [diff] [blame] | 526 | gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size); |
| 527 | gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size); |
| 528 | debug("Reserving %lu Bytes for FDT at: %08lx\n", |
| 529 | gd->fdt_size, gd->start_addr_sp); |
| 530 | } |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | return 0; |
| 534 | } |
| 535 | |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 536 | static int reserve_bootstage(void) |
| 537 | { |
| 538 | #ifdef CONFIG_BOOTSTAGE |
| 539 | int size = bootstage_get_size(); |
| 540 | |
Patrick Delaunay | 65c141e | 2020-03-10 10:15:05 +0100 | [diff] [blame] | 541 | gd->start_addr_sp = reserve_stack_aligned(size); |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 542 | gd->new_bootstage = map_sysmem(gd->start_addr_sp, size); |
| 543 | debug("Reserving %#x Bytes for bootstage at: %08lx\n", size, |
| 544 | gd->start_addr_sp); |
| 545 | #endif |
| 546 | |
| 547 | return 0; |
| 548 | } |
| 549 | |
Patrick Delaunay | d6f8771 | 2018-03-13 13:57:00 +0100 | [diff] [blame] | 550 | __weak int arch_reserve_stacks(void) |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 551 | { |
| 552 | return 0; |
| 553 | } |
| 554 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 555 | static int reserve_stacks(void) |
| 556 | { |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 557 | /* make stack pointer 16-byte aligned */ |
Patrick Delaunay | 65c141e | 2020-03-10 10:15:05 +0100 | [diff] [blame] | 558 | gd->start_addr_sp = reserve_stack_aligned(16); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 559 | |
| 560 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 561 | * let the architecture-specific code tailor gd->start_addr_sp and |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 562 | * gd->irq_sp |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 563 | */ |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 564 | return arch_reserve_stacks(); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 565 | } |
| 566 | |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 567 | static int reserve_bloblist(void) |
| 568 | { |
| 569 | #ifdef CONFIG_BLOBLIST |
Simon Glass | 4a08fae | 2020-09-27 18:46:18 -0600 | [diff] [blame] | 570 | /* Align to a 4KB boundary for easier reading of addresses */ |
Simon Glass | 9fe0646 | 2021-01-13 20:29:43 -0700 | [diff] [blame] | 571 | gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp - |
| 572 | CONFIG_BLOBLIST_SIZE_RELOC, 0x1000); |
| 573 | gd->new_bloblist = map_sysmem(gd->start_addr_sp, |
| 574 | CONFIG_BLOBLIST_SIZE_RELOC); |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 575 | #endif |
| 576 | |
| 577 | return 0; |
| 578 | } |
| 579 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 580 | static int display_new_sp(void) |
| 581 | { |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 582 | debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 583 | |
| 584 | return 0; |
| 585 | } |
| 586 | |
Ovidiu Panait | 81e7cb1 | 2020-07-24 14:12:15 +0300 | [diff] [blame] | 587 | __weak int arch_setup_bdinfo(void) |
Ovidiu Panait | ba74310 | 2020-07-24 14:12:14 +0300 | [diff] [blame] | 588 | { |
| 589 | return 0; |
| 590 | } |
| 591 | |
Ovidiu Panait | 81e7cb1 | 2020-07-24 14:12:15 +0300 | [diff] [blame] | 592 | int setup_bdinfo(void) |
| 593 | { |
Ovidiu Panait | a4aa188 | 2020-07-24 14:12:16 +0300 | [diff] [blame] | 594 | struct bd_info *bd = gd->bd; |
| 595 | |
Ovidiu Panait | 4912224 | 2020-07-24 14:12:17 +0300 | [diff] [blame] | 596 | if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) { |
| 597 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */ |
| 598 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */ |
| 599 | } |
| 600 | |
Ovidiu Panait | 3671668 | 2020-11-28 10:43:06 +0200 | [diff] [blame] | 601 | #ifdef CONFIG_MACH_TYPE |
| 602 | bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */ |
| 603 | #endif |
| 604 | |
Ovidiu Panait | 81e7cb1 | 2020-07-24 14:12:15 +0300 | [diff] [blame] | 605 | return arch_setup_bdinfo(); |
| 606 | } |
| 607 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 608 | #ifdef CONFIG_POST |
| 609 | static int init_post(void) |
| 610 | { |
| 611 | post_bootmode_init(); |
| 612 | post_run(NULL, POST_ROM | post_bootmode_get(0)); |
| 613 | |
| 614 | return 0; |
| 615 | } |
| 616 | #endif |
| 617 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 618 | static int reloc_fdt(void) |
| 619 | { |
Ovidiu Panait | 19b18da | 2020-11-28 10:43:07 +0200 | [diff] [blame] | 620 | if (!IS_ENABLED(CONFIG_OF_EMBED)) { |
| 621 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 622 | return 0; |
| 623 | if (gd->new_fdt) { |
| 624 | memcpy(gd->new_fdt, gd->fdt_blob, |
| 625 | fdt_totalsize(gd->fdt_blob)); |
| 626 | gd->fdt_blob = gd->new_fdt; |
| 627 | } |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | return 0; |
| 631 | } |
| 632 | |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 633 | static int reloc_bootstage(void) |
| 634 | { |
| 635 | #ifdef CONFIG_BOOTSTAGE |
| 636 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 637 | return 0; |
| 638 | if (gd->new_bootstage) { |
| 639 | int size = bootstage_get_size(); |
| 640 | |
| 641 | debug("Copying bootstage from %p to %p, size %x\n", |
| 642 | gd->bootstage, gd->new_bootstage, size); |
| 643 | memcpy(gd->new_bootstage, gd->bootstage, size); |
| 644 | gd->bootstage = gd->new_bootstage; |
Simon Glass | ac9cd48 | 2019-10-21 17:26:50 -0600 | [diff] [blame] | 645 | bootstage_relocate(); |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 646 | } |
| 647 | #endif |
| 648 | |
| 649 | return 0; |
| 650 | } |
| 651 | |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 652 | static int reloc_bloblist(void) |
| 653 | { |
| 654 | #ifdef CONFIG_BLOBLIST |
Simon Glass | d5b6e91 | 2021-11-03 21:09:20 -0600 | [diff] [blame] | 655 | /* |
| 656 | * Relocate only if we are supposed to send it |
| 657 | */ |
| 658 | if ((gd->flags & GD_FLG_SKIP_RELOC) && |
| 659 | CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) { |
| 660 | debug("Not relocating bloblist\n"); |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 661 | return 0; |
Simon Glass | d5b6e91 | 2021-11-03 21:09:20 -0600 | [diff] [blame] | 662 | } |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 663 | if (gd->new_bloblist) { |
| 664 | int size = CONFIG_BLOBLIST_SIZE; |
| 665 | |
| 666 | debug("Copying bloblist from %p to %p, size %x\n", |
| 667 | gd->bloblist, gd->new_bloblist, size); |
Simon Glass | 9fe0646 | 2021-01-13 20:29:43 -0700 | [diff] [blame] | 668 | bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC, |
| 669 | gd->bloblist, size); |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 670 | gd->bloblist = gd->new_bloblist; |
| 671 | } |
| 672 | #endif |
| 673 | |
| 674 | return 0; |
| 675 | } |
| 676 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 677 | static int setup_reloc(void) |
| 678 | { |
Marek Vasut | 47d7d03 | 2021-11-13 18:34:04 +0100 | [diff] [blame] | 679 | if (!(gd->flags & GD_FLG_SKIP_RELOC)) { |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 680 | #ifdef CONFIG_SYS_TEXT_BASE |
Lothar Waßmann | 53207bf | 2017-06-08 10:18:25 +0200 | [diff] [blame] | 681 | #ifdef ARM |
Marek Vasut | 47d7d03 | 2021-11-13 18:34:04 +0100 | [diff] [blame] | 682 | gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start; |
Michal Simek | d58c007 | 2022-06-24 14:15:01 +0200 | [diff] [blame] | 683 | #elif defined(CONFIG_MICROBLAZE) |
| 684 | gd->reloc_off = gd->relocaddr - (u32)_start; |
Lothar Waßmann | 53207bf | 2017-06-08 10:18:25 +0200 | [diff] [blame] | 685 | #elif defined(CONFIG_M68K) |
Marek Vasut | 47d7d03 | 2021-11-13 18:34:04 +0100 | [diff] [blame] | 686 | /* |
| 687 | * On all ColdFire arch cpu, monitor code starts always |
| 688 | * just after the default vector table location, so at 0x400 |
| 689 | */ |
| 690 | gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400); |
Simon Glass | 001d188 | 2019-04-08 13:20:41 -0600 | [diff] [blame] | 691 | #elif !defined(CONFIG_SANDBOX) |
Marek Vasut | 47d7d03 | 2021-11-13 18:34:04 +0100 | [diff] [blame] | 692 | gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE; |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 693 | #endif |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 694 | #endif |
Marek Vasut | 47d7d03 | 2021-11-13 18:34:04 +0100 | [diff] [blame] | 695 | } |
| 696 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 697 | memcpy(gd->new_gd, (char *)gd, sizeof(gd_t)); |
| 698 | |
Marek Vasut | 47d7d03 | 2021-11-13 18:34:04 +0100 | [diff] [blame] | 699 | if (gd->flags & GD_FLG_SKIP_RELOC) { |
| 700 | debug("Skipping relocation due to flag\n"); |
| 701 | } else { |
| 702 | debug("Relocation Offset is: %08lx\n", gd->reloc_off); |
| 703 | debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n", |
| 704 | gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd), |
| 705 | gd->start_addr_sp); |
| 706 | } |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 707 | |
| 708 | return 0; |
| 709 | } |
| 710 | |
mario.six@gdsys.cc | 2a79275 | 2017-02-22 16:07:22 +0100 | [diff] [blame] | 711 | #ifdef CONFIG_OF_BOARD_FIXUP |
| 712 | static int fix_fdt(void) |
| 713 | { |
| 714 | return board_fix_fdt((void *)gd->fdt_blob); |
| 715 | } |
| 716 | #endif |
| 717 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 718 | /* ARM calls relocate_code from its crt0.S */ |
Simon Glass | 530f27e | 2017-01-16 07:03:49 -0700 | [diff] [blame] | 719 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \ |
| 720 | !CONFIG_IS_ENABLED(X86_64) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 721 | |
| 722 | static int jump_to_copy(void) |
| 723 | { |
Simon Glass | f05ad9b | 2015-08-04 12:33:39 -0600 | [diff] [blame] | 724 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 725 | return 0; |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 726 | /* |
| 727 | * x86 is special, but in a nice way. It uses a trampoline which |
| 728 | * enables the dcache if possible. |
| 729 | * |
| 730 | * For now, other archs use relocate_code(), which is implemented |
| 731 | * similarly for all archs. When we do generic relocation, hopefully |
| 732 | * we can make all archs enable the dcache prior to relocation. |
| 733 | */ |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 734 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 735 | /* |
| 736 | * SDRAM and console are now initialised. The final stack can now |
| 737 | * be setup in SDRAM. Code execution will continue in Flash, but |
| 738 | * with the stack in SDRAM and Global Data in temporary memory |
| 739 | * (CPU cache) |
| 740 | */ |
Simon Glass | f0c7d9c | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 741 | arch_setup_gd(gd->new_gd); |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 742 | board_init_f_r_trampoline(gd->start_addr_sp); |
| 743 | #else |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 744 | relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr); |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 745 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 746 | |
| 747 | return 0; |
| 748 | } |
| 749 | #endif |
| 750 | |
| 751 | /* Record the board_init_f() bootstage (after arch_cpu_init()) */ |
Simon Glass | b383d6c | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 752 | static int initf_bootstage(void) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 753 | { |
Simon Glass | baa7d34 | 2017-06-07 10:28:46 -0600 | [diff] [blame] | 754 | bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) && |
| 755 | IS_ENABLED(CONFIG_BOOTSTAGE_STASH); |
Simon Glass | b383d6c | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 756 | int ret; |
| 757 | |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 758 | ret = bootstage_init(!from_spl); |
Simon Glass | b383d6c | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 759 | if (ret) |
| 760 | return ret; |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 761 | if (from_spl) { |
| 762 | const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR, |
| 763 | CONFIG_BOOTSTAGE_STASH_SIZE); |
| 764 | |
| 765 | ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE); |
| 766 | if (ret && ret != -ENOENT) { |
| 767 | debug("Failed to unstash bootstage: err=%d\n", ret); |
| 768 | return ret; |
| 769 | } |
| 770 | } |
Simon Glass | b383d6c | 2017-05-22 05:05:25 -0600 | [diff] [blame] | 771 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 772 | bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f"); |
| 773 | |
| 774 | return 0; |
| 775 | } |
| 776 | |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 777 | static int initf_dm(void) |
| 778 | { |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 779 | #if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN) |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 780 | int ret; |
| 781 | |
Simon Glass | b67eefd | 2020-05-10 11:39:59 -0600 | [diff] [blame] | 782 | bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f"); |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 783 | ret = dm_init_and_scan(true); |
Simon Glass | b67eefd | 2020-05-10 11:39:59 -0600 | [diff] [blame] | 784 | bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F); |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 785 | if (ret) |
| 786 | return ret; |
Ovidiu Panait | 4b9a121 | 2020-11-28 10:43:05 +0200 | [diff] [blame] | 787 | |
| 788 | if (IS_ENABLED(CONFIG_TIMER_EARLY)) { |
| 789 | ret = dm_timer_init(); |
| 790 | if (ret) |
| 791 | return ret; |
| 792 | } |
Simon Glass | 1057e6c | 2016-02-24 09:14:50 -0700 | [diff] [blame] | 793 | #endif |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 794 | |
| 795 | return 0; |
| 796 | } |
| 797 | |
Simon Glass | 146251f | 2015-01-19 22:16:12 -0700 | [diff] [blame] | 798 | /* Architecture-specific memory reservation */ |
| 799 | __weak int reserve_arch(void) |
| 800 | { |
| 801 | return 0; |
| 802 | } |
| 803 | |
Ovidiu Panait | 016e4ae | 2020-01-22 22:28:25 +0200 | [diff] [blame] | 804 | __weak int checkcpu(void) |
| 805 | { |
| 806 | return 0; |
| 807 | } |
| 808 | |
Ovidiu Panait | fbf9c15 | 2020-02-05 08:54:42 +0200 | [diff] [blame] | 809 | __weak int clear_bss(void) |
| 810 | { |
| 811 | return 0; |
| 812 | } |
| 813 | |
Simon Glass | 42fdceb | 2022-03-04 08:43:04 -0700 | [diff] [blame] | 814 | static int misc_init_f(void) |
| 815 | { |
| 816 | return event_notify_null(EVT_MISC_INIT_F); |
| 817 | } |
| 818 | |
Simon Glass | 4acff45 | 2017-01-16 07:03:50 -0700 | [diff] [blame] | 819 | static const init_fnc_t init_sequence_f[] = { |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 820 | setup_mon_len, |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 821 | #ifdef CONFIG_OF_CONTROL |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 822 | fdtdec_setup, |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 823 | #endif |
Heinrich Schuchardt | 7ef8e9b | 2019-06-02 00:53:24 +0200 | [diff] [blame] | 824 | #ifdef CONFIG_TRACE_EARLY |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 825 | trace_early_init, |
Kevin Hilman | d210718 | 2014-12-09 15:03:58 -0800 | [diff] [blame] | 826 | #endif |
Simon Glass | 768e0f5 | 2014-11-10 18:00:18 -0700 | [diff] [blame] | 827 | initf_malloc, |
Simon Glass | af1bc0c | 2017-12-04 13:48:28 -0700 | [diff] [blame] | 828 | log_init, |
Simon Glass | 5ac44a5 | 2017-05-22 05:05:31 -0600 | [diff] [blame] | 829 | initf_bootstage, /* uses its own timer, so does not need DM */ |
Simon Glass | 5a42190 | 2022-03-04 08:43:02 -0700 | [diff] [blame] | 830 | event_init, |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 831 | #ifdef CONFIG_BLOBLIST |
| 832 | bloblist_init, |
| 833 | #endif |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 834 | setup_spl_handoff, |
Ovidiu Panait | 8e8d45e | 2020-11-28 10:43:04 +0200 | [diff] [blame] | 835 | #if defined(CONFIG_CONSOLE_RECORD_INIT_F) |
| 836 | console_record_init, |
| 837 | #endif |
Simon Glass | 671549e | 2017-03-28 10:27:18 -0600 | [diff] [blame] | 838 | #if defined(CONFIG_HAVE_FSP) |
| 839 | arch_fsp_init, |
Bin Meng | a52a068e | 2015-08-20 06:40:18 -0700 | [diff] [blame] | 840 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 841 | arch_cpu_init, /* basic arch cpu dependent setup */ |
Paul Burton | 8ebf506 | 2016-09-21 11:18:46 +0100 | [diff] [blame] | 842 | mach_cpu_init, /* SoC/machine dependent CPU setup */ |
Simon Glass | 3ea0953 | 2014-09-03 17:36:59 -0600 | [diff] [blame] | 843 | initf_dm, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 844 | #if defined(CONFIG_BOARD_EARLY_INIT_F) |
| 845 | board_early_init_f, |
| 846 | #endif |
Simon Glass | 727e94a | 2017-03-28 10:27:26 -0600 | [diff] [blame] | 847 | #if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K) |
Simon Glass | c252c06 | 2017-03-28 10:27:19 -0600 | [diff] [blame] | 848 | /* get CPU and bus clocks according to the environment variable */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 849 | get_clocks, /* get CPU and bus clocks (etc.) */ |
Simon Glass | 1793e78 | 2017-03-28 10:27:23 -0600 | [diff] [blame] | 850 | #endif |
Angelo Dureghello | 0ce4528 | 2017-05-10 23:58:06 +0200 | [diff] [blame] | 851 | #if !defined(CONFIG_M68K) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 852 | timer_init, /* initialize timer */ |
Angelo Dureghello | 0ce4528 | 2017-05-10 23:58:06 +0200 | [diff] [blame] | 853 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 854 | #if defined(CONFIG_BOARD_POSTCLK_INIT) |
| 855 | board_postclk_init, |
| 856 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 857 | env_init, /* initialize environment */ |
| 858 | init_baud_rate, /* initialze baudrate settings */ |
| 859 | serial_init, /* serial communications setup */ |
| 860 | console_init_f, /* stage 1 init of console */ |
| 861 | display_options, /* say that we are here */ |
| 862 | display_text_info, /* show debugging info if required */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 863 | checkcpu, |
Mario Six | 23471ae | 2018-08-06 10:23:34 +0200 | [diff] [blame] | 864 | #if defined(CONFIG_SYSRESET) |
| 865 | print_resetinfo, |
| 866 | #endif |
Simon Glass | cc66400 | 2017-01-23 13:31:25 -0700 | [diff] [blame] | 867 | #if defined(CONFIG_DISPLAY_CPUINFO) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 868 | print_cpuinfo, /* display cpu info (and speed) */ |
Simon Glass | cc66400 | 2017-01-23 13:31:25 -0700 | [diff] [blame] | 869 | #endif |
Cooper Jr., Franklin | af9e6ad | 2017-06-16 17:25:12 -0500 | [diff] [blame] | 870 | #if defined(CONFIG_DTB_RESELECT) |
| 871 | embedded_dtb_select, |
| 872 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 873 | #if defined(CONFIG_DISPLAY_BOARDINFO) |
Masahiro Yamada | 0365ffc | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 874 | show_board_info, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 875 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 876 | INIT_FUNC_WATCHDOG_INIT |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 877 | misc_init_f, |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 878 | INIT_FUNC_WATCHDOG_RESET |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 879 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 880 | init_func_i2c, |
| 881 | #endif |
Rajesh Bhagat | 1fab98f | 2018-01-17 16:13:08 +0530 | [diff] [blame] | 882 | #if defined(CONFIG_VID) && !defined(CONFIG_SPL) |
| 883 | init_func_vid, |
| 884 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 885 | announce_dram_init, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 886 | dram_init, /* configure available RAM banks */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 887 | #ifdef CONFIG_POST |
| 888 | post_init_f, |
| 889 | #endif |
| 890 | INIT_FUNC_WATCHDOG_RESET |
| 891 | #if defined(CONFIG_SYS_DRAM_TEST) |
| 892 | testdram, |
| 893 | #endif /* CONFIG_SYS_DRAM_TEST */ |
| 894 | INIT_FUNC_WATCHDOG_RESET |
| 895 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 896 | #ifdef CONFIG_POST |
| 897 | init_post, |
| 898 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 899 | INIT_FUNC_WATCHDOG_RESET |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 900 | /* |
| 901 | * Now that we have DRAM mapped and working, we can |
| 902 | * relocate the code and continue running from DRAM. |
| 903 | * |
| 904 | * Reserve memory at end of RAM for (top down in that order): |
| 905 | * - area that won't get touched by U-Boot and Linux (optional) |
| 906 | * - kernel log buffer |
| 907 | * - protected RAM |
| 908 | * - LCD framebuffer |
| 909 | * - monitor code |
| 910 | * - board info struct |
| 911 | */ |
| 912 | setup_dest_addr, |
Pragnesh Patel | 313981c | 2020-08-13 10:12:26 +0530 | [diff] [blame] | 913 | #ifdef CONFIG_OF_BOARD_FIXUP |
| 914 | fix_fdt, |
| 915 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 916 | #ifdef CONFIG_PRAM |
| 917 | reserve_pram, |
| 918 | #endif |
| 919 | reserve_round_4k, |
Ovidiu Panait | 79926e4 | 2020-03-29 20:57:41 +0300 | [diff] [blame] | 920 | arch_reserve_mmu, |
Simon Glass | 5a54194 | 2016-01-18 19:52:21 -0700 | [diff] [blame] | 921 | reserve_video, |
Simon Glass | 8703ef3 | 2016-01-18 19:52:20 -0700 | [diff] [blame] | 922 | reserve_trace, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 923 | reserve_uboot, |
| 924 | reserve_malloc, |
| 925 | reserve_board, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 926 | reserve_global_data, |
| 927 | reserve_fdt, |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 928 | reserve_bootstage, |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 929 | reserve_bloblist, |
Simon Glass | 146251f | 2015-01-19 22:16:12 -0700 | [diff] [blame] | 930 | reserve_arch, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 931 | reserve_stacks, |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 932 | dram_init_banksize, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 933 | show_dram_config, |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 934 | INIT_FUNC_WATCHDOG_RESET |
Ovidiu Panait | 1532885 | 2020-07-24 14:12:20 +0300 | [diff] [blame] | 935 | setup_bdinfo, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 936 | display_new_sp, |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 937 | INIT_FUNC_WATCHDOG_RESET |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 938 | reloc_fdt, |
Simon Glass | 25e7dc6 | 2017-05-22 05:05:30 -0600 | [diff] [blame] | 939 | reloc_bootstage, |
Simon Glass | f0293d3 | 2018-11-15 18:43:52 -0700 | [diff] [blame] | 940 | reloc_bloblist, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 941 | setup_reloc, |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 942 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 313aef3 | 2015-01-01 16:18:09 -0700 | [diff] [blame] | 943 | copy_uboot_to_ram, |
Simon Glass | 313aef3 | 2015-01-01 16:18:09 -0700 | [diff] [blame] | 944 | do_elf_reloc_fixups, |
| 945 | #endif |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 946 | clear_bss, |
Simon Glass | 530f27e | 2017-01-16 07:03:49 -0700 | [diff] [blame] | 947 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \ |
| 948 | !CONFIG_IS_ENABLED(X86_64) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 949 | jump_to_copy, |
| 950 | #endif |
| 951 | NULL, |
| 952 | }; |
| 953 | |
| 954 | void board_init_f(ulong boot_flags) |
| 955 | { |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 956 | gd->flags = boot_flags; |
Alexey Brodkin | 9aed5a2 | 2013-11-27 22:32:40 +0400 | [diff] [blame] | 957 | gd->have_console = 0; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 958 | |
| 959 | if (initcall_run_list(init_sequence_f)) |
| 960 | hang(); |
| 961 | |
Ben Stoltz | 9b21749 | 2015-07-31 09:31:37 -0600 | [diff] [blame] | 962 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \ |
Alexey Brodkin | 264d298 | 2015-12-16 19:24:10 +0300 | [diff] [blame] | 963 | !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \ |
| 964 | !defined(CONFIG_ARC) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 965 | /* NOTREACHED - jump_to_copy() does not return */ |
| 966 | hang(); |
| 967 | #endif |
| 968 | } |
| 969 | |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 970 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 971 | /* |
| 972 | * For now this code is only used on x86. |
| 973 | * |
| 974 | * init_sequence_f_r is the list of init functions which are run when |
| 975 | * U-Boot is executing from Flash with a semi-limited 'C' environment. |
| 976 | * The following limitations must be considered when implementing an |
| 977 | * '_f_r' function: |
| 978 | * - 'static' variables are read-only |
| 979 | * - Global Data (gd->xxx) is read/write |
| 980 | * |
| 981 | * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if |
| 982 | * supported). It _should_, if possible, copy global data to RAM and |
| 983 | * initialise the CPU caches (to speed up the relocation process) |
| 984 | * |
| 985 | * NOTE: At present only x86 uses this route, but it is intended that |
| 986 | * all archs will move to this when generic relocation is implemented. |
| 987 | */ |
Simon Glass | 4acff45 | 2017-01-16 07:03:50 -0700 | [diff] [blame] | 988 | static const init_fnc_t init_sequence_f_r[] = { |
Simon Glass | 530f27e | 2017-01-16 07:03:49 -0700 | [diff] [blame] | 989 | #if !CONFIG_IS_ENABLED(X86_64) |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 990 | init_cache_f_r, |
Simon Glass | 530f27e | 2017-01-16 07:03:49 -0700 | [diff] [blame] | 991 | #endif |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 992 | |
| 993 | NULL, |
| 994 | }; |
| 995 | |
| 996 | void board_init_f_r(void) |
| 997 | { |
| 998 | if (initcall_run_list(init_sequence_f_r)) |
| 999 | hang(); |
| 1000 | |
| 1001 | /* |
Simon Glass | e4d6ab0 | 2016-03-11 22:06:51 -0700 | [diff] [blame] | 1002 | * The pre-relocation drivers may be using memory that has now gone |
| 1003 | * away. Mark serial as unavailable - this will fall back to the debug |
| 1004 | * UART if available. |
Simon Glass | af1bc0c | 2017-12-04 13:48:28 -0700 | [diff] [blame] | 1005 | * |
| 1006 | * Do the same with log drivers since the memory may not be available. |
Simon Glass | e4d6ab0 | 2016-03-11 22:06:51 -0700 | [diff] [blame] | 1007 | */ |
Simon Glass | af1bc0c | 2017-12-04 13:48:28 -0700 | [diff] [blame] | 1008 | gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY); |
Simon Glass | 5ee94b4 | 2017-09-05 19:49:45 -0600 | [diff] [blame] | 1009 | #ifdef CONFIG_TIMER |
| 1010 | gd->timer = NULL; |
| 1011 | #endif |
Simon Glass | e4d6ab0 | 2016-03-11 22:06:51 -0700 | [diff] [blame] | 1012 | |
| 1013 | /* |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 1014 | * U-Boot has been copied into SDRAM, the BSS has been cleared etc. |
| 1015 | * Transfer execution from Flash to RAM by calculating the address |
| 1016 | * of the in-RAM copy of board_init_r() and calling it |
| 1017 | */ |
Alexey Brodkin | 7bf9f20 | 2015-02-25 17:59:02 +0300 | [diff] [blame] | 1018 | (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr); |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 1019 | |
| 1020 | /* NOTREACHED - board_init_r() does not return */ |
| 1021 | hang(); |
| 1022 | } |
Alexey Brodkin | 5bcd19a | 2015-03-24 11:12:47 +0300 | [diff] [blame] | 1023 | #endif /* CONFIG_X86 */ |