blob: 7cf9de4d7b53e083acda9e0035250568ae1435ba [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00009 */
10
11#include <common.h>
12#include <command.h>
Simon Glass76539382014-10-10 08:21:56 -060013#include <errno.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060014#include <fdt_support.h>
wdenk2262cfe2002-11-18 00:14:45 +000015#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020016#include <u-boot/zlib.h>
Gabe Black69370d12011-12-05 12:09:26 +000017#include <asm/bootparam.h>
Simon Glass61643ae2014-10-10 08:21:58 -060018#include <asm/cpu.h>
wdenk2262cfe2002-11-18 00:14:45 +000019#include <asm/byteorder.h>
20#include <asm/zimage.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060021#ifdef CONFIG_SYS_COREBOOT
22#include <asm/arch/timestamp.h>
23#endif
wdenk2262cfe2002-11-18 00:14:45 +000024
Simon Glass8b097912015-07-31 09:31:31 -060025DECLARE_GLOBAL_DATA_PTR;
26
Gabe Black69370d12011-12-05 12:09:26 +000027#define COMMAND_LINE_OFFSET 0x9000
28
Simon Glass0d0ba592014-10-19 21:11:20 -060029void bootm_announce_and_cleanup(void)
30{
31 printf("\nStarting kernel ...\n\n");
32
33#ifdef CONFIG_SYS_COREBOOT
34 timestamp_add_now(TS_U_BOOT_START_KERNEL);
35#endif
36 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
37#ifdef CONFIG_BOOTSTAGE_REPORT
38 bootstage_report();
39#endif
Simon Glass0d0ba592014-10-19 21:11:20 -060040}
41
42#if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
43int arch_fixup_memory_node(void *blob)
44{
45 bd_t *bd = gd->bd;
46 int bank;
47 u64 start[CONFIG_NR_DRAM_BANKS];
48 u64 size[CONFIG_NR_DRAM_BANKS];
49
50 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
51 start[bank] = bd->bi_dram[bank].start;
52 size[bank] = bd->bi_dram[bank].size;
53 }
54
55 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
56}
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010057#endif
wdenk8bde7f72003-06-27 21:31:46 +000058
Simon Glass0d0ba592014-10-19 21:11:20 -060059/* Subcommand: PREP */
60static int boot_prep_linux(bootm_headers_t *images)
61{
62 char *cmd_line_dest = NULL;
63 image_header_t *hdr;
64 int is_zimage = 0;
65 void *data = NULL;
66 size_t len;
67 int ret;
Kumar Gala49c3a862008-10-21 17:25:45 -050068
Simon Glass0d0ba592014-10-19 21:11:20 -060069#ifdef CONFIG_OF_LIBFDT
70 if (images->ft_len) {
71 debug("using: FDT\n");
72 if (image_setup_linux(images)) {
73 puts("FDT creation failed! hanging...");
74 hang();
75 }
76 }
77#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010078 if (images->legacy_hdr_valid) {
79 hdr = images->legacy_hdr_os;
Graeme Russ83088af2011-11-08 02:33:15 +000080 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Simon Glass0d0ba592014-10-19 21:11:20 -060081 ulong os_data, os_len;
82
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010083 /* if multi-part image, we need to get first subimage */
Graeme Russ83088af2011-11-08 02:33:15 +000084 image_multi_getimg(hdr, 0, &os_data, &os_len);
Simon Glass0d0ba592014-10-19 21:11:20 -060085 data = (void *)os_data;
86 len = os_len;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010087 } else {
88 /* otherwise get image data */
Simon Glass0d0ba592014-10-19 21:11:20 -060089 data = (void *)image_get_data(hdr);
90 len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010091 }
Simon Glass0d0ba592014-10-19 21:11:20 -060092 is_zimage = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010093#if defined(CONFIG_FIT)
Simon Glass0d0ba592014-10-19 21:11:20 -060094 } else if (images->fit_uname_os && is_zimage) {
Graeme Russ83088af2011-11-08 02:33:15 +000095 ret = fit_image_get_data(images->fit_hdr_os,
Simon Glass0d0ba592014-10-19 21:11:20 -060096 images->fit_noffset_os,
97 (const void **)&data, &len);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010098 if (ret) {
Graeme Russ83088af2011-11-08 02:33:15 +000099 puts("Can't get image data/size!\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100100 goto error;
101 }
Simon Glass0d0ba592014-10-19 21:11:20 -0600102 is_zimage = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100103#endif
Simon Glass0d0ba592014-10-19 21:11:20 -0600104 }
105
106 if (is_zimage) {
Simon Glass76539382014-10-10 08:21:56 -0600107 ulong load_address;
Simon Glass0d0ba592014-10-19 21:11:20 -0600108 char *base_ptr;
109
110 base_ptr = (char *)load_zimage(data, len, &load_address);
Simon Glass76539382014-10-10 08:21:56 -0600111 images->os.load = load_address;
Simon Glass0d0ba592014-10-19 21:11:20 -0600112 cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET;
113 images->ep = (ulong)base_ptr;
114 } else if (images->ep) {
115 cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100116 } else {
Simon Glass2c363cb2014-10-10 08:21:59 -0600117 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100118 goto error;
Wolfgang Denke6446702006-07-21 11:30:18 +0200119 }
120
Simon Glass0d0ba592014-10-19 21:11:20 -0600121 printf("Setup at %#08lx\n", images->ep);
122 ret = setup_zimage((void *)images->ep, cmd_line_dest,
Gabe Black69370d12011-12-05 12:09:26 +0000123 0, images->rd_start,
Simon Glass0d0ba592014-10-19 21:11:20 -0600124 images->rd_end - images->rd_start);
125
126 if (ret) {
Gabe Black69370d12011-12-05 12:09:26 +0000127 printf("## Setting up boot parameters failed ...\n");
Simon Glass0d0ba592014-10-19 21:11:20 -0600128 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000129 }
wdenk8bde7f72003-06-27 21:31:46 +0000130
Simon Glass0d0ba592014-10-19 21:11:20 -0600131 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000132
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100133error:
Kumar Gala40d7e992008-08-15 08:24:45 -0500134 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000135}
Simon Glass0d0ba592014-10-19 21:11:20 -0600136
Simon Glass76539382014-10-10 08:21:56 -0600137int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
138{
139 bootm_announce_and_cleanup();
140
141#ifdef CONFIG_SYS_COREBOOT
142 timestamp_add_now(TS_U_BOOT_START_KERNEL);
143#endif
144 if (image_64bit) {
Simon Glass61643ae2014-10-10 08:21:58 -0600145 if (!cpu_has_64bit()) {
146 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
147 return -EFAULT;
148 }
149 return cpu_jump_to_64bit(setup_base, load_address);
Simon Glass76539382014-10-10 08:21:56 -0600150 } else {
151 /*
152 * Set %ebx, %ebp, and %edi to 0, %esi to point to the
153 * boot_params structure, and then jump to the kernel. We
154 * assume that %cs is 0x10, 4GB flat, and read/execute, and
155 * the data segments are 0x18, 4GB flat, and read/write.
Bin Menga1875592016-02-05 19:30:11 -0800156 * U-Boot is setting them up that way for itself in
Simon Glass76539382014-10-10 08:21:56 -0600157 * arch/i386/cpu/cpu.c.
Simon Glasse49ccea2015-08-04 12:34:00 -0600158 *
159 * Note that we cannot currently boot a kernel while running as
160 * an EFI application. Please use the payload option for that.
Simon Glass76539382014-10-10 08:21:56 -0600161 */
Simon Glasse49ccea2015-08-04 12:34:00 -0600162#ifndef CONFIG_EFI_APP
Simon Glass76539382014-10-10 08:21:56 -0600163 __asm__ __volatile__ (
164 "movl $0, %%ebp\n"
165 "cli\n"
166 "jmp *%[kernel_entry]\n"
167 :: [kernel_entry]"a"(load_address),
168 [boot_params] "S"(setup_base),
169 "b"(0), "D"(0)
170 );
Simon Glasse49ccea2015-08-04 12:34:00 -0600171#endif
Simon Glass76539382014-10-10 08:21:56 -0600172 }
173
174 /* We can't get to here */
175 return -EFAULT;
176}
177
Simon Glass0d0ba592014-10-19 21:11:20 -0600178/* Subcommand: GO */
179static int boot_jump_linux(bootm_headers_t *images)
180{
181 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
182 images->ep, images->os.load);
183
Simon Glass61643ae2014-10-10 08:21:58 -0600184 return boot_linux_kernel(images->ep, images->os.load,
185 images->os.arch == IH_ARCH_X86_64);
Simon Glass0d0ba592014-10-19 21:11:20 -0600186}
187
188int do_bootm_linux(int flag, int argc, char * const argv[],
189 bootm_headers_t *images)
190{
191 /* No need for those on x86 */
192 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
193 return -1;
194
195 if (flag & BOOTM_STATE_OS_PREP)
196 return boot_prep_linux(images);
197
Simon Glass76539382014-10-10 08:21:56 -0600198 if (flag & BOOTM_STATE_OS_GO)
199 return boot_jump_linux(images);
Simon Glass0d0ba592014-10-19 21:11:20 -0600200
201 return boot_jump_linux(images);
202}