blob: 54c22fe6de3f50414446514d06bcda0412e5cfba [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>
11#include <command.h>
Stefan Roesef5fd9c42017-04-24 09:48:03 +020012#include <dm/device.h>
13#include <dm/root.h>
Simon Glassd98a5bd2014-10-10 08:21:56 -060014#include <errno.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060015#include <fdt_support.h>
wdenk591dda52002-11-18 00:14:45 +000016#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020017#include <u-boot/zlib.h>
Gabe Black540c2622011-12-05 12:09:26 +000018#include <asm/bootparam.h>
Simon Glass67b22d52014-10-10 08:21:58 -060019#include <asm/cpu.h>
wdenk591dda52002-11-18 00:14:45 +000020#include <asm/byteorder.h>
21#include <asm/zimage.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060022#ifdef CONFIG_SYS_COREBOOT
23#include <asm/arch/timestamp.h>
24#endif
wdenk591dda52002-11-18 00:14:45 +000025
Simon Glassdaa93d92015-07-31 09:31:31 -060026DECLARE_GLOBAL_DATA_PTR;
27
Gabe Black540c2622011-12-05 12:09:26 +000028#define COMMAND_LINE_OFFSET 0x9000
29
Simon Glassaa83f2b2014-10-19 21:11:20 -060030void bootm_announce_and_cleanup(void)
31{
32 printf("\nStarting kernel ...\n\n");
33
34#ifdef CONFIG_SYS_COREBOOT
35 timestamp_add_now(TS_U_BOOT_START_KERNEL);
36#endif
37 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
38#ifdef CONFIG_BOOTSTAGE_REPORT
39 bootstage_report();
Marian Balakowiczdf8ff332008-03-12 10:33:00 +010040#endif
Stefan Roesef5fd9c42017-04-24 09:48:03 +020041
42 /*
43 * Call remove function of all devices with a removal flag set.
44 * This may be useful for last-stage operations, like cancelling
45 * of DMA operation or releasing device internal buffers.
46 */
47 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
Simon Glassaa83f2b2014-10-19 21:11:20 -060048}
wdenk57b2d802003-06-27 21:31:46 +000049
Simon Glassaa83f2b2014-10-19 21:11:20 -060050#if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
51int arch_fixup_memory_node(void *blob)
52{
53 bd_t *bd = gd->bd;
54 int bank;
55 u64 start[CONFIG_NR_DRAM_BANKS];
56 u64 size[CONFIG_NR_DRAM_BANKS];
Kumar Gala18178bc2008-10-21 17:25:45 -050057
Simon Glassaa83f2b2014-10-19 21:11:20 -060058 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
59 start[bank] = bd->bi_dram[bank].start;
60 size[bank] = bd->bi_dram[bank].size;
61 }
62
63 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
64}
65#endif
66
67/* Subcommand: PREP */
68static int boot_prep_linux(bootm_headers_t *images)
69{
70 char *cmd_line_dest = NULL;
71 image_header_t *hdr;
72 int is_zimage = 0;
73 void *data = NULL;
74 size_t len;
75 int ret;
76
77#ifdef CONFIG_OF_LIBFDT
78 if (images->ft_len) {
79 debug("using: FDT\n");
80 if (image_setup_linux(images)) {
81 puts("FDT creation failed! hanging...");
82 hang();
83 }
84 }
85#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010086 if (images->legacy_hdr_valid) {
87 hdr = images->legacy_hdr_os;
Graeme Russ883c6032011-11-08 02:33:15 +000088 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Simon Glassaa83f2b2014-10-19 21:11:20 -060089 ulong os_data, os_len;
90
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010091 /* if multi-part image, we need to get first subimage */
Graeme Russ883c6032011-11-08 02:33:15 +000092 image_multi_getimg(hdr, 0, &os_data, &os_len);
Simon Glassaa83f2b2014-10-19 21:11:20 -060093 data = (void *)os_data;
94 len = os_len;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010095 } else {
96 /* otherwise get image data */
Simon Glassaa83f2b2014-10-19 21:11:20 -060097 data = (void *)image_get_data(hdr);
98 len = image_get_data_size(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +010099 }
Simon Glassaa83f2b2014-10-19 21:11:20 -0600100 is_zimage = 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100101#if defined(CONFIG_FIT)
Anatolij Gustschin93340c82017-11-23 18:59:45 +0100102 } else if (images->fit_uname_os && is_zimage) {
Graeme Russ883c6032011-11-08 02:33:15 +0000103 ret = fit_image_get_data(images->fit_hdr_os,
Simon Glassaa83f2b2014-10-19 21:11:20 -0600104 images->fit_noffset_os,
105 (const void **)&data, &len);
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100106 if (ret) {
Graeme Russ883c6032011-11-08 02:33:15 +0000107 puts("Can't get image data/size!\n");
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100108 goto error;
109 }
Simon Glassaa83f2b2014-10-19 21:11:20 -0600110 is_zimage = 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100111#endif
Wolfgang Denk44cacdc2006-07-21 11:30:18 +0200112 }
113
Simon Glassaa83f2b2014-10-19 21:11:20 -0600114 if (is_zimage) {
Simon Glassd98a5bd2014-10-10 08:21:56 -0600115 ulong load_address;
Simon Glassaa83f2b2014-10-19 21:11:20 -0600116 char *base_ptr;
wdenk591dda52002-11-18 00:14:45 +0000117
Simon Glassaa83f2b2014-10-19 21:11:20 -0600118 base_ptr = (char *)load_zimage(data, len, &load_address);
Simon Glassd98a5bd2014-10-10 08:21:56 -0600119 images->os.load = load_address;
Simon Glassaa83f2b2014-10-19 21:11:20 -0600120 cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET;
121 images->ep = (ulong)base_ptr;
122 } else if (images->ep) {
123 cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET;
124 } else {
Simon Glassddf446b2014-10-10 08:21:59 -0600125 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100126 goto error;
Gabe Black540c2622011-12-05 12:09:26 +0000127 }
wdenk57b2d802003-06-27 21:31:46 +0000128
Simon Glassaa83f2b2014-10-19 21:11:20 -0600129 printf("Setup at %#08lx\n", images->ep);
130 ret = setup_zimage((void *)images->ep, cmd_line_dest,
Gabe Black540c2622011-12-05 12:09:26 +0000131 0, images->rd_start,
Simon Glassaa83f2b2014-10-19 21:11:20 -0600132 images->rd_end - images->rd_start);
133
134 if (ret) {
Gabe Black540c2622011-12-05 12:09:26 +0000135 printf("## Setting up boot parameters failed ...\n");
Simon Glassaa83f2b2014-10-19 21:11:20 -0600136 return 1;
wdenk591dda52002-11-18 00:14:45 +0000137 }
wdenk57b2d802003-06-27 21:31:46 +0000138
Simon Glassaa83f2b2014-10-19 21:11:20 -0600139 return 0;
wdenk591dda52002-11-18 00:14:45 +0000140
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100141error:
Kumar Gala48626aa2008-08-15 08:24:45 -0500142 return 1;
wdenk57b2d802003-06-27 21:31:46 +0000143}
Simon Glassaa83f2b2014-10-19 21:11:20 -0600144
Simon Glassd98a5bd2014-10-10 08:21:56 -0600145int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
146{
147 bootm_announce_and_cleanup();
148
149#ifdef CONFIG_SYS_COREBOOT
150 timestamp_add_now(TS_U_BOOT_START_KERNEL);
151#endif
152 if (image_64bit) {
Simon Glass67b22d52014-10-10 08:21:58 -0600153 if (!cpu_has_64bit()) {
154 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
155 return -EFAULT;
156 }
Simon Glass78a62bd2017-01-16 07:04:10 -0700157 /* At present 64-bit U-Boot does not support booting a
158 * kernel.
159 * TODO(sjg@chromium.org): Support booting both 32-bit and
160 * 64-bit kernels from 64-bit U-Boot.
161 */
162#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass67b22d52014-10-10 08:21:58 -0600163 return cpu_jump_to_64bit(setup_base, load_address);
Simon Glass78a62bd2017-01-16 07:04:10 -0700164#endif
Simon Glassd98a5bd2014-10-10 08:21:56 -0600165 } else {
166 /*
167 * Set %ebx, %ebp, and %edi to 0, %esi to point to the
168 * boot_params structure, and then jump to the kernel. We
169 * assume that %cs is 0x10, 4GB flat, and read/execute, and
170 * the data segments are 0x18, 4GB flat, and read/write.
Bin Meng75574052016-02-05 19:30:11 -0800171 * U-Boot is setting them up that way for itself in
Simon Glassd98a5bd2014-10-10 08:21:56 -0600172 * arch/i386/cpu/cpu.c.
Simon Glass2b6d80b2015-08-04 12:34:00 -0600173 *
174 * Note that we cannot currently boot a kernel while running as
175 * an EFI application. Please use the payload option for that.
Simon Glassd98a5bd2014-10-10 08:21:56 -0600176 */
Simon Glass2b6d80b2015-08-04 12:34:00 -0600177#ifndef CONFIG_EFI_APP
Simon Glassd98a5bd2014-10-10 08:21:56 -0600178 __asm__ __volatile__ (
179 "movl $0, %%ebp\n"
180 "cli\n"
181 "jmp *%[kernel_entry]\n"
182 :: [kernel_entry]"a"(load_address),
183 [boot_params] "S"(setup_base),
184 "b"(0), "D"(0)
185 );
Simon Glass2b6d80b2015-08-04 12:34:00 -0600186#endif
Simon Glassd98a5bd2014-10-10 08:21:56 -0600187 }
188
189 /* We can't get to here */
190 return -EFAULT;
191}
192
Simon Glassaa83f2b2014-10-19 21:11:20 -0600193/* Subcommand: GO */
194static int boot_jump_linux(bootm_headers_t *images)
195{
196 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
197 images->ep, images->os.load);
198
Simon Glass67b22d52014-10-10 08:21:58 -0600199 return boot_linux_kernel(images->ep, images->os.load,
200 images->os.arch == IH_ARCH_X86_64);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600201}
202
203int do_bootm_linux(int flag, int argc, char * const argv[],
204 bootm_headers_t *images)
205{
206 /* No need for those on x86 */
207 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
208 return -1;
209
210 if (flag & BOOTM_STATE_OS_PREP)
211 return boot_prep_linux(images);
212
Simon Glassd98a5bd2014-10-10 08:21:56 -0600213 if (flag & BOOTM_STATE_OS_GO)
214 return boot_jump_linux(images);
Simon Glassaa83f2b2014-10-19 21:11:20 -0600215
216 return boot_jump_linux(images);
217}