Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 5 | * Marius Groeger <mgroeger@sysgo.de> |
| 6 | * |
| 7 | * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 11 | #include <bootstage.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 12 | #include <command.h> |
Simon Glass | 5a2a1d8 | 2023-03-20 08:30:09 +1300 | [diff] [blame] | 13 | #include <efi.h> |
Simon Glass | db41d65 | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 14 | #include <hang.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Stefan Roese | 7025b05 | 2017-04-24 09:48:03 +0200 | [diff] [blame] | 17 | #include <dm/device.h> |
| 18 | #include <dm/root.h> |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 19 | #include <errno.h> |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 20 | #include <fdt_support.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 21 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 22 | #include <u-boot/zlib.h> |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 23 | #include <asm/bootparam.h> |
Simon Glass | 61643ae | 2014-10-10 08:21:58 -0600 | [diff] [blame] | 24 | #include <asm/cpu.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 25 | #include <asm/byteorder.h> |
| 26 | #include <asm/zimage.h> |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 27 | #ifdef CONFIG_SYS_COREBOOT |
| 28 | #include <asm/arch/timestamp.h> |
| 29 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 30 | |
Simon Glass | 8b09791 | 2015-07-31 09:31:31 -0600 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 33 | #define COMMAND_LINE_OFFSET 0x9000 |
| 34 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 35 | void bootm_announce_and_cleanup(void) |
| 36 | { |
| 37 | printf("\nStarting kernel ...\n\n"); |
| 38 | |
| 39 | #ifdef CONFIG_SYS_COREBOOT |
Simon Glass | f9f06e6 | 2021-03-15 18:00:20 +1300 | [diff] [blame] | 40 | timestamp_add_now(TS_START_KERNEL); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 41 | #endif |
| 42 | bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel"); |
Simon Glass | b8bffe6 | 2023-02-05 15:36:20 -0700 | [diff] [blame] | 43 | #if IS_ENABLED(CONFIG_BOOTSTAGE_REPORT) |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 44 | bootstage_report(); |
| 45 | #endif |
Stefan Roese | 7025b05 | 2017-04-24 09:48:03 +0200 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * Call remove function of all devices with a removal flag set. |
| 49 | * This may be useful for last-stage operations, like cancelling |
| 50 | * of DMA operation or releasing device internal buffers. |
| 51 | */ |
| 52 | dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | #if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL) |
| 56 | int arch_fixup_memory_node(void *blob) |
| 57 | { |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 58 | struct bd_info *bd = gd->bd; |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 59 | int bank; |
| 60 | u64 start[CONFIG_NR_DRAM_BANKS]; |
| 61 | u64 size[CONFIG_NR_DRAM_BANKS]; |
| 62 | |
| 63 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { |
| 64 | start[bank] = bd->bi_dram[bank].start; |
| 65 | size[bank] = bd->bi_dram[bank].size; |
| 66 | } |
| 67 | |
| 68 | return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS); |
| 69 | } |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 70 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 71 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 72 | /* Subcommand: PREP */ |
Simon Glass | d9d7c20 | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 73 | static int boot_prep_linux(struct bootm_headers *images) |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 74 | { |
| 75 | char *cmd_line_dest = NULL; |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 76 | struct legacy_img_hdr *hdr; |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 77 | int is_zimage = 0; |
| 78 | void *data = NULL; |
| 79 | size_t len; |
| 80 | int ret; |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 81 | |
Simon Glass | 210af54 | 2023-02-05 15:40:13 -0700 | [diff] [blame] | 82 | if (CONFIG_IS_ENABLED(OF_LIBFDT) && IS_ENABLED(CONFIG_LMB) && images->ft_len) { |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 83 | debug("using: FDT\n"); |
| 84 | if (image_setup_linux(images)) { |
| 85 | puts("FDT creation failed! hanging..."); |
| 86 | hang(); |
| 87 | } |
| 88 | } |
Ashok Reddy Soma | 6516891 | 2022-07-07 10:45:37 +0200 | [diff] [blame] | 89 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 90 | if (images->legacy_hdr_valid) { |
| 91 | hdr = images->legacy_hdr_os; |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 92 | if (image_check_type(hdr, IH_TYPE_MULTI)) { |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 93 | ulong os_data, os_len; |
| 94 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 95 | /* if multi-part image, we need to get first subimage */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 96 | image_multi_getimg(hdr, 0, &os_data, &os_len); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 97 | data = (void *)os_data; |
| 98 | len = os_len; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 99 | } else { |
| 100 | /* otherwise get image data */ |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 101 | data = (void *)image_get_data(hdr); |
| 102 | len = image_get_data_size(hdr); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 103 | } |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 104 | is_zimage = 1; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 105 | #if defined(CONFIG_FIT) |
Anatolij Gustschin | 2547524 | 2017-11-23 18:59:45 +0100 | [diff] [blame] | 106 | } else if (images->fit_uname_os && is_zimage) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 107 | ret = fit_image_get_data(images->fit_hdr_os, |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 108 | images->fit_noffset_os, |
| 109 | (const void **)&data, &len); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 110 | if (ret) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 111 | puts("Can't get image data/size!\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 112 | goto error; |
| 113 | } |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 114 | is_zimage = 1; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 115 | #endif |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | if (is_zimage) { |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 119 | ulong load_address; |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 120 | char *base_ptr; |
| 121 | |
| 122 | base_ptr = (char *)load_zimage(data, len, &load_address); |
Hannes Schmelzer | c74e329 | 2018-10-11 07:44:42 +0200 | [diff] [blame] | 123 | if (!base_ptr) { |
| 124 | puts("## Kernel loading failed ...\n"); |
| 125 | goto error; |
| 126 | } |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 127 | images->os.load = load_address; |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 128 | cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET; |
| 129 | images->ep = (ulong)base_ptr; |
| 130 | } else if (images->ep) { |
| 131 | cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 132 | } else { |
Simon Glass | 2c363cb | 2014-10-10 08:21:59 -0600 | [diff] [blame] | 133 | printf("## Kernel loading failed (missing x86 kernel setup) ...\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 134 | goto error; |
Wolfgang Denk | e644670 | 2006-07-21 11:30:18 +0200 | [diff] [blame] | 135 | } |
| 136 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 137 | printf("Setup at %#08lx\n", images->ep); |
| 138 | ret = setup_zimage((void *)images->ep, cmd_line_dest, |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 139 | 0, images->rd_start, |
Simon Glass | 4f96023 | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 140 | images->rd_end - images->rd_start, 0); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 141 | |
| 142 | if (ret) { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 143 | printf("## Setting up boot parameters failed ...\n"); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 144 | return 1; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 145 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 146 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 147 | return 0; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 148 | |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 149 | error: |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 150 | return 1; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 151 | } |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 152 | |
Simon Glass | 37c9f9c | 2023-03-20 08:30:08 +1300 | [diff] [blame] | 153 | int boot_linux_kernel(ulong setup_base, ulong entry, bool image_64bit) |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 154 | { |
| 155 | bootm_announce_and_cleanup(); |
| 156 | |
| 157 | #ifdef CONFIG_SYS_COREBOOT |
| 158 | timestamp_add_now(TS_U_BOOT_START_KERNEL); |
| 159 | #endif |
Simon Glass | 5a2a1d8 | 2023-03-20 08:30:09 +1300 | [diff] [blame] | 160 | |
| 161 | /* |
| 162 | * Exit EFI boot services just before jumping, after all console |
| 163 | * output, since the console won't be available afterwards. |
| 164 | */ |
| 165 | if (IS_ENABLED(CONFIG_EFI_APP)) { |
| 166 | int ret; |
| 167 | |
| 168 | ret = efi_store_memory_map(efi_get_priv()); |
| 169 | if (ret) |
| 170 | return ret; |
| 171 | printf("Exiting EFI boot services\n"); |
| 172 | ret = efi_call_exit_boot_services(); |
| 173 | if (ret) |
| 174 | return ret; |
| 175 | } |
| 176 | |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 177 | if (image_64bit) { |
Simon Glass | 61643ae | 2014-10-10 08:21:58 -0600 | [diff] [blame] | 178 | if (!cpu_has_64bit()) { |
| 179 | puts("Cannot boot 64-bit kernel on 32-bit machine\n"); |
| 180 | return -EFAULT; |
| 181 | } |
Simon Glass | 37c9f9c | 2023-03-20 08:30:08 +1300 | [diff] [blame] | 182 | /* |
| 183 | * At present 64-bit U-Boot only supports booting a 64-bit |
Simon Glass | 23b89d4 | 2017-01-16 07:04:10 -0700 | [diff] [blame] | 184 | * kernel. |
Simon Glass | 37c9f9c | 2023-03-20 08:30:08 +1300 | [diff] [blame] | 185 | * |
| 186 | * TODO(sjg@chromium.org): Support booting 32-bit kernels from |
| 187 | * 64-bit U-Boot |
Simon Glass | 23b89d4 | 2017-01-16 07:04:10 -0700 | [diff] [blame] | 188 | */ |
Simon Glass | 37c9f9c | 2023-03-20 08:30:08 +1300 | [diff] [blame] | 189 | if (CONFIG_IS_ENABLED(X86_64)) { |
| 190 | typedef void (*h_func)(ulong zero, ulong setup); |
| 191 | h_func func; |
| 192 | |
| 193 | /* jump to Linux with rdi=0, rsi=setup_base */ |
| 194 | func = (h_func)entry; |
| 195 | func(0, setup_base); |
| 196 | } else { |
| 197 | return cpu_jump_to_64bit(setup_base, entry); |
| 198 | } |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 199 | } else { |
| 200 | /* |
| 201 | * Set %ebx, %ebp, and %edi to 0, %esi to point to the |
| 202 | * boot_params structure, and then jump to the kernel. We |
| 203 | * assume that %cs is 0x10, 4GB flat, and read/execute, and |
| 204 | * the data segments are 0x18, 4GB flat, and read/write. |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 205 | * U-Boot is setting them up that way for itself in |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 206 | * arch/i386/cpu/cpu.c. |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 207 | * |
Simon Glass | 6e7ad4a | 2021-12-29 11:57:38 -0700 | [diff] [blame] | 208 | * Note: this is incomplete for EFI kernels! |
| 209 | * |
| 210 | * This can boot a kernel while running as an EFI application, |
| 211 | * but if the kernel requires EFI support then that support needs |
| 212 | * to be enabled first (see EFI_LOADER). Also the EFI information |
| 213 | * must enabled with setup_efi_info(). See setup_zimage() for |
| 214 | * how this is done with the stub. |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 215 | */ |
| 216 | __asm__ __volatile__ ( |
| 217 | "movl $0, %%ebp\n" |
| 218 | "cli\n" |
| 219 | "jmp *%[kernel_entry]\n" |
Simon Glass | 37c9f9c | 2023-03-20 08:30:08 +1300 | [diff] [blame] | 220 | :: [kernel_entry]"a"(entry), |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 221 | [boot_params] "S"(setup_base), |
| 222 | "b"(0), "D"(0) |
| 223 | ); |
| 224 | } |
| 225 | |
| 226 | /* We can't get to here */ |
| 227 | return -EFAULT; |
| 228 | } |
| 229 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 230 | /* Subcommand: GO */ |
Simon Glass | d9d7c20 | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 231 | static int boot_jump_linux(struct bootm_headers *images) |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 232 | { |
| 233 | debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n", |
| 234 | images->ep, images->os.load); |
| 235 | |
Simon Glass | 61643ae | 2014-10-10 08:21:58 -0600 | [diff] [blame] | 236 | return boot_linux_kernel(images->ep, images->os.load, |
| 237 | images->os.arch == IH_ARCH_X86_64); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 238 | } |
| 239 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 240 | int do_bootm_linux(int flag, int argc, char *const argv[], |
Simon Glass | d9d7c20 | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 241 | struct bootm_headers *images) |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 242 | { |
| 243 | /* No need for those on x86 */ |
| 244 | if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE) |
| 245 | return -1; |
| 246 | |
| 247 | if (flag & BOOTM_STATE_OS_PREP) |
| 248 | return boot_prep_linux(images); |
| 249 | |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 250 | if (flag & BOOTM_STATE_OS_GO) |
| 251 | return boot_jump_linux(images); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 252 | |
| 253 | return boot_jump_linux(images); |
| 254 | } |
Marek Vasut | a69753f | 2021-09-10 22:47:18 +0200 | [diff] [blame] | 255 | |
| 256 | static ulong get_sp(void) |
| 257 | { |
| 258 | ulong ret; |
| 259 | |
| 260 | #if CONFIG_IS_ENABLED(X86_64) |
Simon Glass | 6788400 | 2023-07-15 21:38:43 -0600 | [diff] [blame] | 261 | asm("mov %%rsp, %0" : "=r"(ret) : ); |
Marek Vasut | a69753f | 2021-09-10 22:47:18 +0200 | [diff] [blame] | 262 | #else |
| 263 | asm("mov %%esp, %0" : "=r"(ret) : ); |
| 264 | #endif |
| 265 | |
| 266 | return ret; |
| 267 | } |
| 268 | |
| 269 | void arch_lmb_reserve(struct lmb *lmb) |
| 270 | { |
| 271 | arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096); |
| 272 | } |