blob: 55f581836dfa6ea76f2b6ba63709544757d3bd52 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk591dda52002-11-18 00:14:45 +00002/*
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)
wdenk591dda52002-11-18 00:14:45 +00008 */
9
Simon Glass0726d9d2023-12-15 20:14:13 -070010#include <bootm.h>
Simon Glass1ea97892020-05-10 11:40:00 -060011#include <bootstage.h>
wdenk591dda52002-11-18 00:14:45 +000012#include <command.h>
Simon Glass5f1a11e2023-03-20 08:30:09 +130013#include <efi.h>
Simon Glassf11478f2019-12-28 10:45:07 -070014#include <hang.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Stefan Roesef5fd9c42017-04-24 09:48:03 +020017#include <dm/device.h>
18#include <dm/root.h>
Simon Glassd98a5bd2014-10-10 08:21:56 -060019#include <errno.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060020#include <fdt_support.h>
wdenk591dda52002-11-18 00:14:45 +000021#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020022#include <u-boot/zlib.h>
Gabe Black540c2622011-12-05 12:09:26 +000023#include <asm/bootparam.h>
Simon Glass67b22d52014-10-10 08:21:58 -060024#include <asm/cpu.h>
wdenk591dda52002-11-18 00:14:45 +000025#include <asm/byteorder.h>
26#include <asm/zimage.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060027#ifdef CONFIG_SYS_COREBOOT
28#include <asm/arch/timestamp.h>
29#endif
wdenk591dda52002-11-18 00:14:45 +000030
Simon Glassdaa93d92015-07-31 09:31:31 -060031DECLARE_GLOBAL_DATA_PTR;
32
Gabe Black540c2622011-12-05 12:09:26 +000033#define COMMAND_LINE_OFFSET 0x9000
34
Simon Glassaa83f2b2014-10-19 21:11:20 -060035void bootm_announce_and_cleanup(void)
36{
37 printf("\nStarting kernel ...\n\n");
38
39#ifdef CONFIG_SYS_COREBOOT
Simon Glass5478c582021-03-15 18:00:20 +130040 timestamp_add_now(TS_START_KERNEL);
Simon Glassaa83f2b2014-10-19 21:11:20 -060041#endif
42 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glasscd197952023-02-05 15:36:20 -070043#if IS_ENABLED(CONFIG_BOOTSTAGE_REPORT)
Simon Glassaa83f2b2014-10-19 21:11:20 -060044 bootstage_report();
Marian Balakowiczdf8ff332008-03-12 10:33:00 +010045#endif
Stefan Roesef5fd9c42017-04-24 09:48:03 +020046
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 Glassaa83f2b2014-10-19 21:11:20 -060053}
wdenk57b2d802003-06-27 21:31:46 +000054
Simon Glassaa83f2b2014-10-19 21:11:20 -060055#if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
56int arch_fixup_memory_node(void *blob)
57{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090058 struct bd_info *bd = gd->bd;
Simon Glassaa83f2b2014-10-19 21:11:20 -060059 int bank;
60 u64 start[CONFIG_NR_DRAM_BANKS];
61 u64 size[CONFIG_NR_DRAM_BANKS];
Kumar Gala18178bc2008-10-21 17:25:45 -050062
Simon Glassaa83f2b2014-10-19 21:11:20 -060063 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}
70#endif
71
72/* Subcommand: PREP */
Simon Glassdf00afa2022-09-06 20:26:50 -060073static int boot_prep_linux(struct bootm_headers *images)
Simon Glassaa83f2b2014-10-19 21:11:20 -060074{
75 char *cmd_line_dest = NULL;
Simon Glassbb7d3bb2022-09-06 20:26:52 -060076 struct legacy_img_hdr *hdr;
Simon Glassaa83f2b2014-10-19 21:11:20 -060077 int is_zimage = 0;
78 void *data = NULL;
79 size_t len;
80 int ret;
81
Simon Glassae7ed572023-02-05 15:40:13 -070082 if (CONFIG_IS_ENABLED(OF_LIBFDT) && IS_ENABLED(CONFIG_LMB) && images->ft_len) {
Simon Glassaa83f2b2014-10-19 21:11:20 -060083 debug("using: FDT\n");
84 if (image_setup_linux(images)) {
85 puts("FDT creation failed! hanging...");
86 hang();
87 }
88 }
Ashok Reddy Soma8aaae3d2022-07-07 10:45:37 +020089
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010090 if (images->legacy_hdr_valid) {
91 hdr = images->legacy_hdr_os;
Graeme Russ883c6032011-11-08 02:33:15 +000092 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Simon Glassaa83f2b2014-10-19 21:11:20 -060093 ulong os_data, os_len;
94
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010095 /* if multi-part image, we need to get first subimage */
Graeme Russ883c6032011-11-08 02:33:15 +000096 image_multi_getimg(hdr, 0, &os_data, &os_len);
Simon Glassaa83f2b2014-10-19 21:11:20 -060097 data = (void *)os_data;
98 len = os_len;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010099 } else {
100 /* otherwise get image data */
Simon Glassaa83f2b2014-10-19 21:11:20 -0600101 data = (void *)image_get_data(hdr);
102 len = image_get_data_size(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100103 }
Simon Glassaa83f2b2014-10-19 21:11:20 -0600104 is_zimage = 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100105#if defined(CONFIG_FIT)
Anatolij Gustschin93340c82017-11-23 18:59:45 +0100106 } else if (images->fit_uname_os && is_zimage) {
Graeme Russ883c6032011-11-08 02:33:15 +0000107 ret = fit_image_get_data(images->fit_hdr_os,
Simon Glassaa83f2b2014-10-19 21:11:20 -0600108 images->fit_noffset_os,
109 (const void **)&data, &len);
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100110 if (ret) {
Graeme Russ883c6032011-11-08 02:33:15 +0000111 puts("Can't get image data/size!\n");
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100112 goto error;
113 }
Simon Glassaa83f2b2014-10-19 21:11:20 -0600114 is_zimage = 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100115#endif
Wolfgang Denk44cacdc2006-07-21 11:30:18 +0200116 }
117
Simon Glassaa83f2b2014-10-19 21:11:20 -0600118 if (is_zimage) {
Simon Glassd98a5bd2014-10-10 08:21:56 -0600119 ulong load_address;
Simon Glassaa83f2b2014-10-19 21:11:20 -0600120 char *base_ptr;
wdenk591dda52002-11-18 00:14:45 +0000121
Simon Glassaa83f2b2014-10-19 21:11:20 -0600122 base_ptr = (char *)load_zimage(data, len, &load_address);
Hannes Schmelzer833f2b52018-10-11 07:44:42 +0200123 if (!base_ptr) {
124 puts("## Kernel loading failed ...\n");
125 goto error;
126 }
Simon Glassd98a5bd2014-10-10 08:21:56 -0600127 images->os.load = load_address;
Simon Glassaa83f2b2014-10-19 21:11:20 -0600128 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;
132 } else {
Simon Glassddf446b2014-10-10 08:21:59 -0600133 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100134 goto error;
Gabe Black540c2622011-12-05 12:09:26 +0000135 }
wdenk57b2d802003-06-27 21:31:46 +0000136
Simon Glassaa83f2b2014-10-19 21:11:20 -0600137 printf("Setup at %#08lx\n", images->ep);
138 ret = setup_zimage((void *)images->ep, cmd_line_dest,
Gabe Black540c2622011-12-05 12:09:26 +0000139 0, images->rd_start,
Simon Glass12d93ab2020-09-05 14:50:51 -0600140 images->rd_end - images->rd_start, 0);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600141
142 if (ret) {
Gabe Black540c2622011-12-05 12:09:26 +0000143 printf("## Setting up boot parameters failed ...\n");
Simon Glassaa83f2b2014-10-19 21:11:20 -0600144 return 1;
wdenk591dda52002-11-18 00:14:45 +0000145 }
wdenk57b2d802003-06-27 21:31:46 +0000146
Simon Glassaa83f2b2014-10-19 21:11:20 -0600147 return 0;
wdenk591dda52002-11-18 00:14:45 +0000148
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100149error:
Kumar Gala48626aa2008-08-15 08:24:45 -0500150 return 1;
wdenk57b2d802003-06-27 21:31:46 +0000151}
Simon Glassaa83f2b2014-10-19 21:11:20 -0600152
Simon Glass6d496322023-03-20 08:30:08 +1300153int boot_linux_kernel(ulong setup_base, ulong entry, bool image_64bit)
Simon Glassd98a5bd2014-10-10 08:21:56 -0600154{
155 bootm_announce_and_cleanup();
156
157#ifdef CONFIG_SYS_COREBOOT
158 timestamp_add_now(TS_U_BOOT_START_KERNEL);
159#endif
Simon Glass5f1a11e2023-03-20 08:30:09 +1300160
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 Glassd98a5bd2014-10-10 08:21:56 -0600177 if (image_64bit) {
Simon Glass67b22d52014-10-10 08:21:58 -0600178 if (!cpu_has_64bit()) {
179 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
180 return -EFAULT;
181 }
Simon Glass6d496322023-03-20 08:30:08 +1300182 /*
183 * At present 64-bit U-Boot only supports booting a 64-bit
Simon Glass78a62bd2017-01-16 07:04:10 -0700184 * kernel.
Simon Glass6d496322023-03-20 08:30:08 +1300185 *
186 * TODO(sjg@chromium.org): Support booting 32-bit kernels from
187 * 64-bit U-Boot
Simon Glass78a62bd2017-01-16 07:04:10 -0700188 */
Simon Glass6d496322023-03-20 08:30:08 +1300189 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 Glassd98a5bd2014-10-10 08:21:56 -0600199 } 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 Meng75574052016-02-05 19:30:11 -0800205 * U-Boot is setting them up that way for itself in
Simon Glassd98a5bd2014-10-10 08:21:56 -0600206 * arch/i386/cpu/cpu.c.
Simon Glass2b6d80b2015-08-04 12:34:00 -0600207 *
Simon Glass5c267a02021-12-29 11:57:38 -0700208 * 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 Glassd98a5bd2014-10-10 08:21:56 -0600215 */
216 __asm__ __volatile__ (
217 "movl $0, %%ebp\n"
218 "cli\n"
219 "jmp *%[kernel_entry]\n"
Simon Glass6d496322023-03-20 08:30:08 +1300220 :: [kernel_entry]"a"(entry),
Simon Glassd98a5bd2014-10-10 08:21:56 -0600221 [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 Glassaa83f2b2014-10-19 21:11:20 -0600230/* Subcommand: GO */
Simon Glassdf00afa2022-09-06 20:26:50 -0600231static int boot_jump_linux(struct bootm_headers *images)
Simon Glassaa83f2b2014-10-19 21:11:20 -0600232{
233 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
234 images->ep, images->os.load);
235
Simon Glass67b22d52014-10-10 08:21:58 -0600236 return boot_linux_kernel(images->ep, images->os.load,
237 images->os.arch == IH_ARCH_X86_64);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600238}
239
Simon Glass0726d9d2023-12-15 20:14:13 -0700240int do_bootm_linux(int flag, struct bootm_info *bmi)
Simon Glassaa83f2b2014-10-19 21:11:20 -0600241{
Simon Glass0726d9d2023-12-15 20:14:13 -0700242 struct bootm_headers *images = bmi->images;
243
Simon Glassaa83f2b2014-10-19 21:11:20 -0600244 /* No need for those on x86 */
245 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
246 return -1;
247
248 if (flag & BOOTM_STATE_OS_PREP)
249 return boot_prep_linux(images);
250
Simon Glassd98a5bd2014-10-10 08:21:56 -0600251 if (flag & BOOTM_STATE_OS_GO)
252 return boot_jump_linux(images);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600253
254 return boot_jump_linux(images);
255}