blob: 07d8f1f279ce28ed8161f5339489731314959784 [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>
11#include <command.h>
Simon Glassdb41d652019-12-28 10:45:07 -070012#include <hang.h>
Stefan Roese7025b052017-04-24 09:48:03 +020013#include <dm/device.h>
14#include <dm/root.h>
Simon Glass76539382014-10-10 08:21:56 -060015#include <errno.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060016#include <fdt_support.h>
wdenk2262cfe2002-11-18 00:14:45 +000017#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020018#include <u-boot/zlib.h>
Gabe Black69370d12011-12-05 12:09:26 +000019#include <asm/bootparam.h>
Simon Glass61643ae2014-10-10 08:21:58 -060020#include <asm/cpu.h>
wdenk2262cfe2002-11-18 00:14:45 +000021#include <asm/byteorder.h>
22#include <asm/zimage.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060023#ifdef CONFIG_SYS_COREBOOT
24#include <asm/arch/timestamp.h>
25#endif
wdenk2262cfe2002-11-18 00:14:45 +000026
Simon Glass8b097912015-07-31 09:31:31 -060027DECLARE_GLOBAL_DATA_PTR;
28
Gabe Black69370d12011-12-05 12:09:26 +000029#define COMMAND_LINE_OFFSET 0x9000
30
Simon Glass0d0ba592014-10-19 21:11:20 -060031void bootm_announce_and_cleanup(void)
32{
33 printf("\nStarting kernel ...\n\n");
34
35#ifdef CONFIG_SYS_COREBOOT
36 timestamp_add_now(TS_U_BOOT_START_KERNEL);
37#endif
38 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glassbf4d8be2019-04-25 21:59:07 -060039#if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT)
Simon Glass0d0ba592014-10-19 21:11:20 -060040 bootstage_report();
41#endif
Stefan Roese7025b052017-04-24 09:48:03 +020042
43 /*
44 * Call remove function of all devices with a removal flag set.
45 * This may be useful for last-stage operations, like cancelling
46 * of DMA operation or releasing device internal buffers.
47 */
48 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
Simon Glass0d0ba592014-10-19 21:11:20 -060049}
50
51#if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
52int arch_fixup_memory_node(void *blob)
53{
54 bd_t *bd = gd->bd;
55 int bank;
56 u64 start[CONFIG_NR_DRAM_BANKS];
57 u64 size[CONFIG_NR_DRAM_BANKS];
58
59 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
60 start[bank] = bd->bi_dram[bank].start;
61 size[bank] = bd->bi_dram[bank].size;
62 }
63
64 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
65}
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010066#endif
wdenk8bde7f72003-06-27 21:31:46 +000067
Simon Glass0d0ba592014-10-19 21:11:20 -060068/* Subcommand: PREP */
69static int boot_prep_linux(bootm_headers_t *images)
70{
71 char *cmd_line_dest = NULL;
72 image_header_t *hdr;
73 int is_zimage = 0;
74 void *data = NULL;
75 size_t len;
76 int ret;
Kumar Gala49c3a862008-10-21 17:25:45 -050077
Simon Glass0d0ba592014-10-19 21:11:20 -060078#ifdef CONFIG_OF_LIBFDT
79 if (images->ft_len) {
80 debug("using: FDT\n");
81 if (image_setup_linux(images)) {
82 puts("FDT creation failed! hanging...");
83 hang();
84 }
85 }
86#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010087 if (images->legacy_hdr_valid) {
88 hdr = images->legacy_hdr_os;
Graeme Russ83088af2011-11-08 02:33:15 +000089 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Simon Glass0d0ba592014-10-19 21:11:20 -060090 ulong os_data, os_len;
91
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010092 /* if multi-part image, we need to get first subimage */
Graeme Russ83088af2011-11-08 02:33:15 +000093 image_multi_getimg(hdr, 0, &os_data, &os_len);
Simon Glass0d0ba592014-10-19 21:11:20 -060094 data = (void *)os_data;
95 len = os_len;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010096 } else {
97 /* otherwise get image data */
Simon Glass0d0ba592014-10-19 21:11:20 -060098 data = (void *)image_get_data(hdr);
99 len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100100 }
Simon Glass0d0ba592014-10-19 21:11:20 -0600101 is_zimage = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100102#if defined(CONFIG_FIT)
Anatolij Gustschin25475242017-11-23 18:59:45 +0100103 } else if (images->fit_uname_os && is_zimage) {
Graeme Russ83088af2011-11-08 02:33:15 +0000104 ret = fit_image_get_data(images->fit_hdr_os,
Simon Glass0d0ba592014-10-19 21:11:20 -0600105 images->fit_noffset_os,
106 (const void **)&data, &len);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100107 if (ret) {
Graeme Russ83088af2011-11-08 02:33:15 +0000108 puts("Can't get image data/size!\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100109 goto error;
110 }
Simon Glass0d0ba592014-10-19 21:11:20 -0600111 is_zimage = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100112#endif
Simon Glass0d0ba592014-10-19 21:11:20 -0600113 }
114
115 if (is_zimage) {
Simon Glass76539382014-10-10 08:21:56 -0600116 ulong load_address;
Simon Glass0d0ba592014-10-19 21:11:20 -0600117 char *base_ptr;
118
119 base_ptr = (char *)load_zimage(data, len, &load_address);
Hannes Schmelzerc74e3292018-10-11 07:44:42 +0200120 if (!base_ptr) {
121 puts("## Kernel loading failed ...\n");
122 goto error;
123 }
Simon Glass76539382014-10-10 08:21:56 -0600124 images->os.load = load_address;
Simon Glass0d0ba592014-10-19 21:11:20 -0600125 cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET;
126 images->ep = (ulong)base_ptr;
127 } else if (images->ep) {
128 cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100129 } else {
Simon Glass2c363cb2014-10-10 08:21:59 -0600130 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100131 goto error;
Wolfgang Denke6446702006-07-21 11:30:18 +0200132 }
133
Simon Glass0d0ba592014-10-19 21:11:20 -0600134 printf("Setup at %#08lx\n", images->ep);
135 ret = setup_zimage((void *)images->ep, cmd_line_dest,
Gabe Black69370d12011-12-05 12:09:26 +0000136 0, images->rd_start,
Simon Glass0d0ba592014-10-19 21:11:20 -0600137 images->rd_end - images->rd_start);
138
139 if (ret) {
Gabe Black69370d12011-12-05 12:09:26 +0000140 printf("## Setting up boot parameters failed ...\n");
Simon Glass0d0ba592014-10-19 21:11:20 -0600141 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000142 }
wdenk8bde7f72003-06-27 21:31:46 +0000143
Simon Glass0d0ba592014-10-19 21:11:20 -0600144 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000145
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100146error:
Kumar Gala40d7e992008-08-15 08:24:45 -0500147 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000148}
Simon Glass0d0ba592014-10-19 21:11:20 -0600149
Simon Glass76539382014-10-10 08:21:56 -0600150int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
151{
152 bootm_announce_and_cleanup();
153
154#ifdef CONFIG_SYS_COREBOOT
155 timestamp_add_now(TS_U_BOOT_START_KERNEL);
156#endif
157 if (image_64bit) {
Simon Glass61643ae2014-10-10 08:21:58 -0600158 if (!cpu_has_64bit()) {
159 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
160 return -EFAULT;
161 }
Simon Glass23b89d42017-01-16 07:04:10 -0700162 /* At present 64-bit U-Boot does not support booting a
163 * kernel.
164 * TODO(sjg@chromium.org): Support booting both 32-bit and
165 * 64-bit kernels from 64-bit U-Boot.
166 */
167#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass61643ae2014-10-10 08:21:58 -0600168 return cpu_jump_to_64bit(setup_base, load_address);
Simon Glass23b89d42017-01-16 07:04:10 -0700169#endif
Simon Glass76539382014-10-10 08:21:56 -0600170 } else {
171 /*
172 * Set %ebx, %ebp, and %edi to 0, %esi to point to the
173 * boot_params structure, and then jump to the kernel. We
174 * assume that %cs is 0x10, 4GB flat, and read/execute, and
175 * the data segments are 0x18, 4GB flat, and read/write.
Bin Menga1875592016-02-05 19:30:11 -0800176 * U-Boot is setting them up that way for itself in
Simon Glass76539382014-10-10 08:21:56 -0600177 * arch/i386/cpu/cpu.c.
Simon Glasse49ccea2015-08-04 12:34:00 -0600178 *
179 * Note that we cannot currently boot a kernel while running as
180 * an EFI application. Please use the payload option for that.
Simon Glass76539382014-10-10 08:21:56 -0600181 */
Simon Glasse49ccea2015-08-04 12:34:00 -0600182#ifndef CONFIG_EFI_APP
Simon Glass76539382014-10-10 08:21:56 -0600183 __asm__ __volatile__ (
184 "movl $0, %%ebp\n"
185 "cli\n"
186 "jmp *%[kernel_entry]\n"
187 :: [kernel_entry]"a"(load_address),
188 [boot_params] "S"(setup_base),
189 "b"(0), "D"(0)
190 );
Simon Glasse49ccea2015-08-04 12:34:00 -0600191#endif
Simon Glass76539382014-10-10 08:21:56 -0600192 }
193
194 /* We can't get to here */
195 return -EFAULT;
196}
197
Simon Glass0d0ba592014-10-19 21:11:20 -0600198/* Subcommand: GO */
199static int boot_jump_linux(bootm_headers_t *images)
200{
201 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
202 images->ep, images->os.load);
203
Simon Glass61643ae2014-10-10 08:21:58 -0600204 return boot_linux_kernel(images->ep, images->os.load,
205 images->os.arch == IH_ARCH_X86_64);
Simon Glass0d0ba592014-10-19 21:11:20 -0600206}
207
208int do_bootm_linux(int flag, int argc, char * const argv[],
209 bootm_headers_t *images)
210{
211 /* No need for those on x86 */
212 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
213 return -1;
214
215 if (flag & BOOTM_STATE_OS_PREP)
216 return boot_prep_linux(images);
217
Simon Glass76539382014-10-10 08:21:56 -0600218 if (flag & BOOTM_STATE_OS_GO)
219 return boot_jump_linux(images);
Simon Glass0d0ba592014-10-19 21:11:20 -0600220
221 return boot_jump_linux(images);
222}