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