wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 4 | * Marius Groeger <mgroeger@sysgo.de> |
| 5 | * |
| 6 | * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 13 | #include <errno.h> |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 14 | #include <fdt_support.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 15 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 16 | #include <u-boot/zlib.h> |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 17 | #include <asm/bootparam.h> |
Simon Glass | 61643ae | 2014-10-10 08:21:58 -0600 | [diff] [blame] | 18 | #include <asm/cpu.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 19 | #include <asm/byteorder.h> |
| 20 | #include <asm/zimage.h> |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 21 | #ifdef CONFIG_SYS_COREBOOT |
| 22 | #include <asm/arch/timestamp.h> |
| 23 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 24 | |
Simon Glass | 8b09791 | 2015-07-31 09:31:31 -0600 | [diff] [blame] | 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 27 | #define COMMAND_LINE_OFFSET 0x9000 |
| 28 | |
Alexander Graf | b7b8410 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 29 | __weak void board_quiesce_devices(void) |
| 30 | { |
| 31 | } |
| 32 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 33 | void bootm_announce_and_cleanup(void) |
| 34 | { |
| 35 | printf("\nStarting kernel ...\n\n"); |
| 36 | |
| 37 | #ifdef CONFIG_SYS_COREBOOT |
| 38 | timestamp_add_now(TS_U_BOOT_START_KERNEL); |
| 39 | #endif |
| 40 | bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel"); |
| 41 | #ifdef CONFIG_BOOTSTAGE_REPORT |
| 42 | bootstage_report(); |
| 43 | #endif |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | #if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL) |
| 47 | int arch_fixup_memory_node(void *blob) |
| 48 | { |
| 49 | bd_t *bd = gd->bd; |
| 50 | int bank; |
| 51 | u64 start[CONFIG_NR_DRAM_BANKS]; |
| 52 | u64 size[CONFIG_NR_DRAM_BANKS]; |
| 53 | |
| 54 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { |
| 55 | start[bank] = bd->bi_dram[bank].start; |
| 56 | size[bank] = bd->bi_dram[bank].size; |
| 57 | } |
| 58 | |
| 59 | return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS); |
| 60 | } |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 61 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 62 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 63 | /* Subcommand: PREP */ |
| 64 | static int boot_prep_linux(bootm_headers_t *images) |
| 65 | { |
| 66 | char *cmd_line_dest = NULL; |
| 67 | image_header_t *hdr; |
| 68 | int is_zimage = 0; |
| 69 | void *data = NULL; |
| 70 | size_t len; |
| 71 | int ret; |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 72 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 73 | #ifdef CONFIG_OF_LIBFDT |
| 74 | if (images->ft_len) { |
| 75 | debug("using: FDT\n"); |
| 76 | if (image_setup_linux(images)) { |
| 77 | puts("FDT creation failed! hanging..."); |
| 78 | hang(); |
| 79 | } |
| 80 | } |
| 81 | #endif |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 82 | if (images->legacy_hdr_valid) { |
| 83 | hdr = images->legacy_hdr_os; |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 84 | if (image_check_type(hdr, IH_TYPE_MULTI)) { |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 85 | ulong os_data, os_len; |
| 86 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 87 | /* if multi-part image, we need to get first subimage */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 88 | image_multi_getimg(hdr, 0, &os_data, &os_len); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 89 | data = (void *)os_data; |
| 90 | len = os_len; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 91 | } else { |
| 92 | /* otherwise get image data */ |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 93 | data = (void *)image_get_data(hdr); |
| 94 | len = image_get_data_size(hdr); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 95 | } |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 96 | is_zimage = 1; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 97 | #if defined(CONFIG_FIT) |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 98 | } else if (images->fit_uname_os && is_zimage) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 99 | ret = fit_image_get_data(images->fit_hdr_os, |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 100 | images->fit_noffset_os, |
| 101 | (const void **)&data, &len); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 102 | if (ret) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 103 | puts("Can't get image data/size!\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 104 | goto error; |
| 105 | } |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 106 | is_zimage = 1; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 107 | #endif |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | if (is_zimage) { |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 111 | ulong load_address; |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 112 | char *base_ptr; |
| 113 | |
| 114 | base_ptr = (char *)load_zimage(data, len, &load_address); |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 115 | images->os.load = load_address; |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 116 | cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET; |
| 117 | images->ep = (ulong)base_ptr; |
| 118 | } else if (images->ep) { |
| 119 | cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 120 | } else { |
Simon Glass | 2c363cb | 2014-10-10 08:21:59 -0600 | [diff] [blame] | 121 | printf("## Kernel loading failed (missing x86 kernel setup) ...\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 122 | goto error; |
Wolfgang Denk | e644670 | 2006-07-21 11:30:18 +0200 | [diff] [blame] | 123 | } |
| 124 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 125 | printf("Setup at %#08lx\n", images->ep); |
| 126 | ret = setup_zimage((void *)images->ep, cmd_line_dest, |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 127 | 0, images->rd_start, |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 128 | images->rd_end - images->rd_start); |
| 129 | |
| 130 | if (ret) { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 131 | printf("## Setting up boot parameters failed ...\n"); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 132 | return 1; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 133 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 134 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 135 | return 0; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 136 | |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 137 | error: |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 138 | return 1; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 139 | } |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 140 | |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 141 | int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit) |
| 142 | { |
| 143 | bootm_announce_and_cleanup(); |
| 144 | |
| 145 | #ifdef CONFIG_SYS_COREBOOT |
| 146 | timestamp_add_now(TS_U_BOOT_START_KERNEL); |
| 147 | #endif |
| 148 | if (image_64bit) { |
Simon Glass | 61643ae | 2014-10-10 08:21:58 -0600 | [diff] [blame] | 149 | if (!cpu_has_64bit()) { |
| 150 | puts("Cannot boot 64-bit kernel on 32-bit machine\n"); |
| 151 | return -EFAULT; |
| 152 | } |
| 153 | return cpu_jump_to_64bit(setup_base, load_address); |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 154 | } else { |
| 155 | /* |
| 156 | * Set %ebx, %ebp, and %edi to 0, %esi to point to the |
| 157 | * boot_params structure, and then jump to the kernel. We |
| 158 | * assume that %cs is 0x10, 4GB flat, and read/execute, and |
| 159 | * the data segments are 0x18, 4GB flat, and read/write. |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 160 | * U-Boot is setting them up that way for itself in |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 161 | * arch/i386/cpu/cpu.c. |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 162 | * |
| 163 | * Note that we cannot currently boot a kernel while running as |
| 164 | * an EFI application. Please use the payload option for that. |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 165 | */ |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 166 | #ifndef CONFIG_EFI_APP |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 167 | __asm__ __volatile__ ( |
| 168 | "movl $0, %%ebp\n" |
| 169 | "cli\n" |
| 170 | "jmp *%[kernel_entry]\n" |
| 171 | :: [kernel_entry]"a"(load_address), |
| 172 | [boot_params] "S"(setup_base), |
| 173 | "b"(0), "D"(0) |
| 174 | ); |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 175 | #endif |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /* We can't get to here */ |
| 179 | return -EFAULT; |
| 180 | } |
| 181 | |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 182 | /* Subcommand: GO */ |
| 183 | static int boot_jump_linux(bootm_headers_t *images) |
| 184 | { |
| 185 | debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n", |
| 186 | images->ep, images->os.load); |
| 187 | |
Simon Glass | 61643ae | 2014-10-10 08:21:58 -0600 | [diff] [blame] | 188 | return boot_linux_kernel(images->ep, images->os.load, |
| 189 | images->os.arch == IH_ARCH_X86_64); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 193 | bootm_headers_t *images) |
| 194 | { |
| 195 | /* No need for those on x86 */ |
| 196 | if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE) |
| 197 | return -1; |
| 198 | |
| 199 | if (flag & BOOTM_STATE_OS_PREP) |
| 200 | return boot_prep_linux(images); |
| 201 | |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 202 | if (flag & BOOTM_STATE_OS_GO) |
| 203 | return boot_jump_linux(images); |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 204 | |
| 205 | return boot_jump_linux(images); |
| 206 | } |