blob: 050c420e86b69d211750cd3fdbe2ef6b09827d6e [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
10#include <common.h>
Simon Glass0726d9d2023-12-15 20:14:13 -070011#include <bootm.h>
Simon Glass1ea97892020-05-10 11:40:00 -060012#include <bootstage.h>
wdenk591dda52002-11-18 00:14:45 +000013#include <command.h>
Simon Glass5f1a11e2023-03-20 08:30:09 +130014#include <efi.h>
Simon Glassf11478f2019-12-28 10:45:07 -070015#include <hang.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060017#include <asm/global_data.h>
Stefan Roesef5fd9c42017-04-24 09:48:03 +020018#include <dm/device.h>
19#include <dm/root.h>
Simon Glassd98a5bd2014-10-10 08:21:56 -060020#include <errno.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060021#include <fdt_support.h>
wdenk591dda52002-11-18 00:14:45 +000022#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020023#include <u-boot/zlib.h>
Gabe Black540c2622011-12-05 12:09:26 +000024#include <asm/bootparam.h>
Simon Glass67b22d52014-10-10 08:21:58 -060025#include <asm/cpu.h>
wdenk591dda52002-11-18 00:14:45 +000026#include <asm/byteorder.h>
27#include <asm/zimage.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060028#ifdef CONFIG_SYS_COREBOOT
29#include <asm/arch/timestamp.h>
30#endif
wdenk591dda52002-11-18 00:14:45 +000031
Simon Glassdaa93d92015-07-31 09:31:31 -060032DECLARE_GLOBAL_DATA_PTR;
33
Gabe Black540c2622011-12-05 12:09:26 +000034#define COMMAND_LINE_OFFSET 0x9000
35
Simon Glassaa83f2b2014-10-19 21:11:20 -060036void bootm_announce_and_cleanup(void)
37{
38 printf("\nStarting kernel ...\n\n");
39
40#ifdef CONFIG_SYS_COREBOOT
Simon Glass5478c582021-03-15 18:00:20 +130041 timestamp_add_now(TS_START_KERNEL);
Simon Glassaa83f2b2014-10-19 21:11:20 -060042#endif
43 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glasscd197952023-02-05 15:36:20 -070044#if IS_ENABLED(CONFIG_BOOTSTAGE_REPORT)
Simon Glassaa83f2b2014-10-19 21:11:20 -060045 bootstage_report();
Marian Balakowiczdf8ff332008-03-12 10:33:00 +010046#endif
Stefan Roesef5fd9c42017-04-24 09:48:03 +020047
48 /*
49 * Call remove function of all devices with a removal flag set.
50 * This may be useful for last-stage operations, like cancelling
51 * of DMA operation or releasing device internal buffers.
52 */
53 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
Simon Glassaa83f2b2014-10-19 21:11:20 -060054}
wdenk57b2d802003-06-27 21:31:46 +000055
Simon Glassaa83f2b2014-10-19 21:11:20 -060056#if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
57int arch_fixup_memory_node(void *blob)
58{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090059 struct bd_info *bd = gd->bd;
Simon Glassaa83f2b2014-10-19 21:11:20 -060060 int bank;
61 u64 start[CONFIG_NR_DRAM_BANKS];
62 u64 size[CONFIG_NR_DRAM_BANKS];
Kumar Gala18178bc2008-10-21 17:25:45 -050063
Simon Glassaa83f2b2014-10-19 21:11:20 -060064 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
65 start[bank] = bd->bi_dram[bank].start;
66 size[bank] = bd->bi_dram[bank].size;
67 }
68
69 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
70}
71#endif
72
73/* Subcommand: PREP */
Simon Glassdf00afa2022-09-06 20:26:50 -060074static int boot_prep_linux(struct bootm_headers *images)
Simon Glassaa83f2b2014-10-19 21:11:20 -060075{
76 char *cmd_line_dest = NULL;
Simon Glassbb7d3bb2022-09-06 20:26:52 -060077 struct legacy_img_hdr *hdr;
Simon Glassaa83f2b2014-10-19 21:11:20 -060078 int is_zimage = 0;
79 void *data = NULL;
80 size_t len;
81 int ret;
82
Simon Glassae7ed572023-02-05 15:40:13 -070083 if (CONFIG_IS_ENABLED(OF_LIBFDT) && IS_ENABLED(CONFIG_LMB) && images->ft_len) {
Simon Glassaa83f2b2014-10-19 21:11:20 -060084 debug("using: FDT\n");
85 if (image_setup_linux(images)) {
86 puts("FDT creation failed! hanging...");
87 hang();
88 }
89 }
Ashok Reddy Soma8aaae3d2022-07-07 10:45:37 +020090
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010091 if (images->legacy_hdr_valid) {
92 hdr = images->legacy_hdr_os;
Graeme Russ883c6032011-11-08 02:33:15 +000093 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Simon Glassaa83f2b2014-10-19 21:11:20 -060094 ulong os_data, os_len;
95
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010096 /* if multi-part image, we need to get first subimage */
Graeme Russ883c6032011-11-08 02:33:15 +000097 image_multi_getimg(hdr, 0, &os_data, &os_len);
Simon Glassaa83f2b2014-10-19 21:11:20 -060098 data = (void *)os_data;
99 len = os_len;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100100 } else {
101 /* otherwise get image data */
Simon Glassaa83f2b2014-10-19 21:11:20 -0600102 data = (void *)image_get_data(hdr);
103 len = image_get_data_size(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100104 }
Simon Glassaa83f2b2014-10-19 21:11:20 -0600105 is_zimage = 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100106#if defined(CONFIG_FIT)
Anatolij Gustschin93340c82017-11-23 18:59:45 +0100107 } else if (images->fit_uname_os && is_zimage) {
Graeme Russ883c6032011-11-08 02:33:15 +0000108 ret = fit_image_get_data(images->fit_hdr_os,
Simon Glassaa83f2b2014-10-19 21:11:20 -0600109 images->fit_noffset_os,
110 (const void **)&data, &len);
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100111 if (ret) {
Graeme Russ883c6032011-11-08 02:33:15 +0000112 puts("Can't get image data/size!\n");
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100113 goto error;
114 }
Simon Glassaa83f2b2014-10-19 21:11:20 -0600115 is_zimage = 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100116#endif
Wolfgang Denk44cacdc2006-07-21 11:30:18 +0200117 }
118
Simon Glassaa83f2b2014-10-19 21:11:20 -0600119 if (is_zimage) {
Simon Glassd98a5bd2014-10-10 08:21:56 -0600120 ulong load_address;
Simon Glassaa83f2b2014-10-19 21:11:20 -0600121 char *base_ptr;
wdenk591dda52002-11-18 00:14:45 +0000122
Simon Glassaa83f2b2014-10-19 21:11:20 -0600123 base_ptr = (char *)load_zimage(data, len, &load_address);
Hannes Schmelzer833f2b52018-10-11 07:44:42 +0200124 if (!base_ptr) {
125 puts("## Kernel loading failed ...\n");
126 goto error;
127 }
Simon Glassd98a5bd2014-10-10 08:21:56 -0600128 images->os.load = load_address;
Simon Glassaa83f2b2014-10-19 21:11:20 -0600129 cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET;
130 images->ep = (ulong)base_ptr;
131 } else if (images->ep) {
132 cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET;
133 } else {
Simon Glassddf446b2014-10-10 08:21:59 -0600134 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100135 goto error;
Gabe Black540c2622011-12-05 12:09:26 +0000136 }
wdenk57b2d802003-06-27 21:31:46 +0000137
Simon Glassaa83f2b2014-10-19 21:11:20 -0600138 printf("Setup at %#08lx\n", images->ep);
139 ret = setup_zimage((void *)images->ep, cmd_line_dest,
Gabe Black540c2622011-12-05 12:09:26 +0000140 0, images->rd_start,
Simon Glass12d93ab2020-09-05 14:50:51 -0600141 images->rd_end - images->rd_start, 0);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600142
143 if (ret) {
Gabe Black540c2622011-12-05 12:09:26 +0000144 printf("## Setting up boot parameters failed ...\n");
Simon Glassaa83f2b2014-10-19 21:11:20 -0600145 return 1;
wdenk591dda52002-11-18 00:14:45 +0000146 }
wdenk57b2d802003-06-27 21:31:46 +0000147
Simon Glassaa83f2b2014-10-19 21:11:20 -0600148 return 0;
wdenk591dda52002-11-18 00:14:45 +0000149
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100150error:
Kumar Gala48626aa2008-08-15 08:24:45 -0500151 return 1;
wdenk57b2d802003-06-27 21:31:46 +0000152}
Simon Glassaa83f2b2014-10-19 21:11:20 -0600153
Simon Glass6d496322023-03-20 08:30:08 +1300154int boot_linux_kernel(ulong setup_base, ulong entry, bool image_64bit)
Simon Glassd98a5bd2014-10-10 08:21:56 -0600155{
156 bootm_announce_and_cleanup();
157
158#ifdef CONFIG_SYS_COREBOOT
159 timestamp_add_now(TS_U_BOOT_START_KERNEL);
160#endif
Simon Glass5f1a11e2023-03-20 08:30:09 +1300161
162 /*
163 * Exit EFI boot services just before jumping, after all console
164 * output, since the console won't be available afterwards.
165 */
166 if (IS_ENABLED(CONFIG_EFI_APP)) {
167 int ret;
168
169 ret = efi_store_memory_map(efi_get_priv());
170 if (ret)
171 return ret;
172 printf("Exiting EFI boot services\n");
173 ret = efi_call_exit_boot_services();
174 if (ret)
175 return ret;
176 }
177
Simon Glassd98a5bd2014-10-10 08:21:56 -0600178 if (image_64bit) {
Simon Glass67b22d52014-10-10 08:21:58 -0600179 if (!cpu_has_64bit()) {
180 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
181 return -EFAULT;
182 }
Simon Glass6d496322023-03-20 08:30:08 +1300183 /*
184 * At present 64-bit U-Boot only supports booting a 64-bit
Simon Glass78a62bd2017-01-16 07:04:10 -0700185 * kernel.
Simon Glass6d496322023-03-20 08:30:08 +1300186 *
187 * TODO(sjg@chromium.org): Support booting 32-bit kernels from
188 * 64-bit U-Boot
Simon Glass78a62bd2017-01-16 07:04:10 -0700189 */
Simon Glass6d496322023-03-20 08:30:08 +1300190 if (CONFIG_IS_ENABLED(X86_64)) {
191 typedef void (*h_func)(ulong zero, ulong setup);
192 h_func func;
193
194 /* jump to Linux with rdi=0, rsi=setup_base */
195 func = (h_func)entry;
196 func(0, setup_base);
197 } else {
198 return cpu_jump_to_64bit(setup_base, entry);
199 }
Simon Glassd98a5bd2014-10-10 08:21:56 -0600200 } else {
201 /*
202 * Set %ebx, %ebp, and %edi to 0, %esi to point to the
203 * boot_params structure, and then jump to the kernel. We
204 * assume that %cs is 0x10, 4GB flat, and read/execute, and
205 * the data segments are 0x18, 4GB flat, and read/write.
Bin Meng75574052016-02-05 19:30:11 -0800206 * U-Boot is setting them up that way for itself in
Simon Glassd98a5bd2014-10-10 08:21:56 -0600207 * arch/i386/cpu/cpu.c.
Simon Glass2b6d80b2015-08-04 12:34:00 -0600208 *
Simon Glass5c267a02021-12-29 11:57:38 -0700209 * Note: this is incomplete for EFI kernels!
210 *
211 * This can boot a kernel while running as an EFI application,
212 * but if the kernel requires EFI support then that support needs
213 * to be enabled first (see EFI_LOADER). Also the EFI information
214 * must enabled with setup_efi_info(). See setup_zimage() for
215 * how this is done with the stub.
Simon Glassd98a5bd2014-10-10 08:21:56 -0600216 */
217 __asm__ __volatile__ (
218 "movl $0, %%ebp\n"
219 "cli\n"
220 "jmp *%[kernel_entry]\n"
Simon Glass6d496322023-03-20 08:30:08 +1300221 :: [kernel_entry]"a"(entry),
Simon Glassd98a5bd2014-10-10 08:21:56 -0600222 [boot_params] "S"(setup_base),
223 "b"(0), "D"(0)
224 );
225 }
226
227 /* We can't get to here */
228 return -EFAULT;
229}
230
Simon Glassaa83f2b2014-10-19 21:11:20 -0600231/* Subcommand: GO */
Simon Glassdf00afa2022-09-06 20:26:50 -0600232static int boot_jump_linux(struct bootm_headers *images)
Simon Glassaa83f2b2014-10-19 21:11:20 -0600233{
234 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
235 images->ep, images->os.load);
236
Simon Glass67b22d52014-10-10 08:21:58 -0600237 return boot_linux_kernel(images->ep, images->os.load,
238 images->os.arch == IH_ARCH_X86_64);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600239}
240
Simon Glass0726d9d2023-12-15 20:14:13 -0700241int do_bootm_linux(int flag, struct bootm_info *bmi)
Simon Glassaa83f2b2014-10-19 21:11:20 -0600242{
Simon Glass0726d9d2023-12-15 20:14:13 -0700243 struct bootm_headers *images = bmi->images;
244
Simon Glassaa83f2b2014-10-19 21:11:20 -0600245 /* No need for those on x86 */
246 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
247 return -1;
248
249 if (flag & BOOTM_STATE_OS_PREP)
250 return boot_prep_linux(images);
251
Simon Glassd98a5bd2014-10-10 08:21:56 -0600252 if (flag & BOOTM_STATE_OS_GO)
253 return boot_jump_linux(images);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600254
255 return boot_jump_linux(images);
256}
Marek Vasuta1f258b2021-09-10 22:47:18 +0200257
258static ulong get_sp(void)
259{
260 ulong ret;
261
262#if CONFIG_IS_ENABLED(X86_64)
Simon Glassc43faa82023-07-15 21:38:43 -0600263 asm("mov %%rsp, %0" : "=r"(ret) : );
Marek Vasuta1f258b2021-09-10 22:47:18 +0200264#else
265 asm("mov %%esp, %0" : "=r"(ret) : );
266#endif
267
268 return ret;
269}
270
271void arch_lmb_reserve(struct lmb *lmb)
272{
273 arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096);
274}