blob: 733dd71257062c89689859941b77fcd5541444f8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-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)
wdenk2262cfe2002-11-18 00:14:45 +00008 */
9
10#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -060011#include <bootstage.h>
wdenk2262cfe2002-11-18 00:14:45 +000012#include <command.h>
Simon Glassdb41d652019-12-28 10:45:07 -070013#include <hang.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Stefan Roese7025b052017-04-24 09:48:03 +020016#include <dm/device.h>
17#include <dm/root.h>
Simon Glass76539382014-10-10 08:21:56 -060018#include <errno.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060019#include <fdt_support.h>
wdenk2262cfe2002-11-18 00:14:45 +000020#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020021#include <u-boot/zlib.h>
Gabe Black69370d12011-12-05 12:09:26 +000022#include <asm/bootparam.h>
Simon Glass61643ae2014-10-10 08:21:58 -060023#include <asm/cpu.h>
wdenk2262cfe2002-11-18 00:14:45 +000024#include <asm/byteorder.h>
25#include <asm/zimage.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060026#ifdef CONFIG_SYS_COREBOOT
27#include <asm/arch/timestamp.h>
28#endif
wdenk2262cfe2002-11-18 00:14:45 +000029
Simon Glass8b097912015-07-31 09:31:31 -060030DECLARE_GLOBAL_DATA_PTR;
31
Gabe Black69370d12011-12-05 12:09:26 +000032#define COMMAND_LINE_OFFSET 0x9000
33
Simon Glass0d0ba592014-10-19 21:11:20 -060034void bootm_announce_and_cleanup(void)
35{
36 printf("\nStarting kernel ...\n\n");
37
38#ifdef CONFIG_SYS_COREBOOT
Simon Glassf9f06e62021-03-15 18:00:20 +130039 timestamp_add_now(TS_START_KERNEL);
Simon Glass0d0ba592014-10-19 21:11:20 -060040#endif
41 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glassbf4d8be2019-04-25 21:59:07 -060042#if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT)
Simon Glass0d0ba592014-10-19 21:11:20 -060043 bootstage_report();
44#endif
Stefan Roese7025b052017-04-24 09:48:03 +020045
46 /*
47 * Call remove function of all devices with a removal flag set.
48 * This may be useful for last-stage operations, like cancelling
49 * of DMA operation or releasing device internal buffers.
50 */
51 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
Simon Glass0d0ba592014-10-19 21:11:20 -060052}
53
54#if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
55int arch_fixup_memory_node(void *blob)
56{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090057 struct bd_info *bd = gd->bd;
Simon Glass0d0ba592014-10-19 21:11:20 -060058 int bank;
59 u64 start[CONFIG_NR_DRAM_BANKS];
60 u64 size[CONFIG_NR_DRAM_BANKS];
61
62 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
63 start[bank] = bd->bi_dram[bank].start;
64 size[bank] = bd->bi_dram[bank].size;
65 }
66
67 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
68}
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010069#endif
wdenk8bde7f72003-06-27 21:31:46 +000070
Simon Glass0d0ba592014-10-19 21:11:20 -060071/* Subcommand: PREP */
72static int boot_prep_linux(bootm_headers_t *images)
73{
74 char *cmd_line_dest = NULL;
75 image_header_t *hdr;
76 int is_zimage = 0;
77 void *data = NULL;
78 size_t len;
79 int ret;
Kumar Gala49c3a862008-10-21 17:25:45 -050080
Simon Glass0d0ba592014-10-19 21:11:20 -060081#ifdef CONFIG_OF_LIBFDT
82 if (images->ft_len) {
83 debug("using: FDT\n");
84 if (image_setup_linux(images)) {
85 puts("FDT creation failed! hanging...");
86 hang();
87 }
88 }
89#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010090 if (images->legacy_hdr_valid) {
91 hdr = images->legacy_hdr_os;
Graeme Russ83088af2011-11-08 02:33:15 +000092 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Simon Glass0d0ba592014-10-19 21:11:20 -060093 ulong os_data, os_len;
94
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010095 /* if multi-part image, we need to get first subimage */
Graeme Russ83088af2011-11-08 02:33:15 +000096 image_multi_getimg(hdr, 0, &os_data, &os_len);
Simon Glass0d0ba592014-10-19 21:11:20 -060097 data = (void *)os_data;
98 len = os_len;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010099 } else {
100 /* otherwise get image data */
Simon Glass0d0ba592014-10-19 21:11:20 -0600101 data = (void *)image_get_data(hdr);
102 len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100103 }
Simon Glass0d0ba592014-10-19 21:11:20 -0600104 is_zimage = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100105#if defined(CONFIG_FIT)
Anatolij Gustschin25475242017-11-23 18:59:45 +0100106 } else if (images->fit_uname_os && is_zimage) {
Graeme Russ83088af2011-11-08 02:33:15 +0000107 ret = fit_image_get_data(images->fit_hdr_os,
Simon Glass0d0ba592014-10-19 21:11:20 -0600108 images->fit_noffset_os,
109 (const void **)&data, &len);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100110 if (ret) {
Graeme Russ83088af2011-11-08 02:33:15 +0000111 puts("Can't get image data/size!\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100112 goto error;
113 }
Simon Glass0d0ba592014-10-19 21:11:20 -0600114 is_zimage = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100115#endif
Simon Glass0d0ba592014-10-19 21:11:20 -0600116 }
117
118 if (is_zimage) {
Simon Glass76539382014-10-10 08:21:56 -0600119 ulong load_address;
Simon Glass0d0ba592014-10-19 21:11:20 -0600120 char *base_ptr;
121
122 base_ptr = (char *)load_zimage(data, len, &load_address);
Hannes Schmelzerc74e3292018-10-11 07:44:42 +0200123 if (!base_ptr) {
124 puts("## Kernel loading failed ...\n");
125 goto error;
126 }
Simon Glass76539382014-10-10 08:21:56 -0600127 images->os.load = load_address;
Simon Glass0d0ba592014-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;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100132 } else {
Simon Glass2c363cb2014-10-10 08:21:59 -0600133 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100134 goto error;
Wolfgang Denke6446702006-07-21 11:30:18 +0200135 }
136
Simon Glass0d0ba592014-10-19 21:11:20 -0600137 printf("Setup at %#08lx\n", images->ep);
138 ret = setup_zimage((void *)images->ep, cmd_line_dest,
Gabe Black69370d12011-12-05 12:09:26 +0000139 0, images->rd_start,
Simon Glass4f960232020-09-05 14:50:51 -0600140 images->rd_end - images->rd_start, 0);
Simon Glass0d0ba592014-10-19 21:11:20 -0600141
142 if (ret) {
Gabe Black69370d12011-12-05 12:09:26 +0000143 printf("## Setting up boot parameters failed ...\n");
Simon Glass0d0ba592014-10-19 21:11:20 -0600144 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000145 }
wdenk8bde7f72003-06-27 21:31:46 +0000146
Simon Glass0d0ba592014-10-19 21:11:20 -0600147 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000148
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100149error:
Kumar Gala40d7e992008-08-15 08:24:45 -0500150 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000151}
Simon Glass0d0ba592014-10-19 21:11:20 -0600152
Simon Glass76539382014-10-10 08:21:56 -0600153int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
154{
155 bootm_announce_and_cleanup();
156
157#ifdef CONFIG_SYS_COREBOOT
158 timestamp_add_now(TS_U_BOOT_START_KERNEL);
159#endif
160 if (image_64bit) {
Simon Glass61643ae2014-10-10 08:21:58 -0600161 if (!cpu_has_64bit()) {
162 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
163 return -EFAULT;
164 }
Simon Glass23b89d42017-01-16 07:04:10 -0700165 /* At present 64-bit U-Boot does not support booting a
166 * kernel.
167 * TODO(sjg@chromium.org): Support booting both 32-bit and
168 * 64-bit kernels from 64-bit U-Boot.
169 */
170#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass61643ae2014-10-10 08:21:58 -0600171 return cpu_jump_to_64bit(setup_base, load_address);
Simon Glass23b89d42017-01-16 07:04:10 -0700172#endif
Simon Glass76539382014-10-10 08:21:56 -0600173 } else {
174 /*
175 * Set %ebx, %ebp, and %edi to 0, %esi to point to the
176 * boot_params structure, and then jump to the kernel. We
177 * assume that %cs is 0x10, 4GB flat, and read/execute, and
178 * the data segments are 0x18, 4GB flat, and read/write.
Bin Menga1875592016-02-05 19:30:11 -0800179 * U-Boot is setting them up that way for itself in
Simon Glass76539382014-10-10 08:21:56 -0600180 * arch/i386/cpu/cpu.c.
Simon Glasse49ccea2015-08-04 12:34:00 -0600181 *
182 * Note that we cannot currently boot a kernel while running as
183 * an EFI application. Please use the payload option for that.
Simon Glass76539382014-10-10 08:21:56 -0600184 */
Simon Glasse49ccea2015-08-04 12:34:00 -0600185#ifndef CONFIG_EFI_APP
Simon Glass76539382014-10-10 08:21:56 -0600186 __asm__ __volatile__ (
187 "movl $0, %%ebp\n"
188 "cli\n"
189 "jmp *%[kernel_entry]\n"
190 :: [kernel_entry]"a"(load_address),
191 [boot_params] "S"(setup_base),
192 "b"(0), "D"(0)
193 );
Simon Glasse49ccea2015-08-04 12:34:00 -0600194#endif
Simon Glass76539382014-10-10 08:21:56 -0600195 }
196
197 /* We can't get to here */
198 return -EFAULT;
199}
200
Simon Glass0d0ba592014-10-19 21:11:20 -0600201/* Subcommand: GO */
202static int boot_jump_linux(bootm_headers_t *images)
203{
204 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
205 images->ep, images->os.load);
206
Simon Glass61643ae2014-10-10 08:21:58 -0600207 return boot_linux_kernel(images->ep, images->os.load,
208 images->os.arch == IH_ARCH_X86_64);
Simon Glass0d0ba592014-10-19 21:11:20 -0600209}
210
Simon Glass09140112020-05-10 11:40:03 -0600211int do_bootm_linux(int flag, int argc, char *const argv[],
212 bootm_headers_t *images)
Simon Glass0d0ba592014-10-19 21:11:20 -0600213{
214 /* No need for those on x86 */
215 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
216 return -1;
217
218 if (flag & BOOTM_STATE_OS_PREP)
219 return boot_prep_linux(images);
220
Simon Glass76539382014-10-10 08:21:56 -0600221 if (flag & BOOTM_STATE_OS_GO)
222 return boot_jump_linux(images);
Simon Glass0d0ba592014-10-19 21:11:20 -0600223
224 return boot_jump_linux(images);
225}