]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/x86/lib/bootm.c
Use correct spelling of "U-Boot"
[people/ms/u-boot.git] / arch / x86 / lib / bootm.c
CommitLineData
2262cfee
WD
1/*
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 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
2262cfee
WD
9 */
10
11#include <common.h>
12#include <command.h>
76539383 13#include <errno.h>
0d0ba59c 14#include <fdt_support.h>
2262cfee 15#include <image.h>
a31e091a 16#include <u-boot/zlib.h>
69370d14 17#include <asm/bootparam.h>
61643ae6 18#include <asm/cpu.h>
2262cfee
WD
19#include <asm/byteorder.h>
20#include <asm/zimage.h>
0d0ba59c
SG
21#ifdef CONFIG_SYS_COREBOOT
22#include <asm/arch/timestamp.h>
23#endif
2262cfee 24
8b097916
SG
25DECLARE_GLOBAL_DATA_PTR;
26
69370d14
GB
27#define COMMAND_LINE_OFFSET 0x9000
28
0d0ba59c
SG
29/*
30 * Implement a weak default function for boards that optionally
31 * need to clean up the system before jumping to the kernel.
32 */
33__weak void board_final_cleanup(void)
2262cfee 34{
0d0ba59c 35}
3ef96ded 36
0d0ba59c
SG
37void bootm_announce_and_cleanup(void)
38{
39 printf("\nStarting kernel ...\n\n");
40
41#ifdef CONFIG_SYS_COREBOOT
42 timestamp_add_now(TS_U_BOOT_START_KERNEL);
43#endif
44 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
45#ifdef CONFIG_BOOTSTAGE_REPORT
46 bootstage_report();
cd7c596e 47#endif
0d0ba59c
SG
48 board_final_cleanup();
49}
8bde7f77 50
0d0ba59c
SG
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}
66#endif
49c3a861 67
0d0ba59c
SG
68/* 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;
77
78#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
d5934ad7
MB
87 if (images->legacy_hdr_valid) {
88 hdr = images->legacy_hdr_os;
83088afb 89 if (image_check_type(hdr, IH_TYPE_MULTI)) {
0d0ba59c
SG
90 ulong os_data, os_len;
91
d5934ad7 92 /* if multi-part image, we need to get first subimage */
83088afb 93 image_multi_getimg(hdr, 0, &os_data, &os_len);
0d0ba59c
SG
94 data = (void *)os_data;
95 len = os_len;
d5934ad7
MB
96 } else {
97 /* otherwise get image data */
0d0ba59c
SG
98 data = (void *)image_get_data(hdr);
99 len = image_get_data_size(hdr);
d5934ad7 100 }
0d0ba59c 101 is_zimage = 1;
d5934ad7 102#if defined(CONFIG_FIT)
0d0ba59c 103 } else if (images->fit_uname_os && is_zimage) {
83088afb 104 ret = fit_image_get_data(images->fit_hdr_os,
0d0ba59c
SG
105 images->fit_noffset_os,
106 (const void **)&data, &len);
cd7c596e 107 if (ret) {
83088afb 108 puts("Can't get image data/size!\n");
cd7c596e
MB
109 goto error;
110 }
0d0ba59c 111 is_zimage = 1;
d5934ad7 112#endif
e644670b
WD
113 }
114
0d0ba59c 115 if (is_zimage) {
76539383 116 ulong load_address;
0d0ba59c 117 char *base_ptr;
2262cfee 118
0d0ba59c 119 base_ptr = (char *)load_zimage(data, len, &load_address);
76539383 120 images->os.load = load_address;
0d0ba59c
SG
121 cmd_line_dest = base_ptr + COMMAND_LINE_OFFSET;
122 images->ep = (ulong)base_ptr;
123 } else if (images->ep) {
124 cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET;
125 } else {
2c363cb0 126 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
cd7c596e 127 goto error;
69370d14 128 }
8bde7f77 129
0d0ba59c
SG
130 printf("Setup at %#08lx\n", images->ep);
131 ret = setup_zimage((void *)images->ep, cmd_line_dest,
69370d14 132 0, images->rd_start,
0d0ba59c
SG
133 images->rd_end - images->rd_start);
134
135 if (ret) {
69370d14 136 printf("## Setting up boot parameters failed ...\n");
0d0ba59c 137 return 1;
2262cfee 138 }
8bde7f77 139
0d0ba59c 140 return 0;
2262cfee 141
cd7c596e 142error:
40d7e99d 143 return 1;
8bde7f77 144}
0d0ba59c 145
76539383
SG
146int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
147{
148 bootm_announce_and_cleanup();
149
150#ifdef CONFIG_SYS_COREBOOT
151 timestamp_add_now(TS_U_BOOT_START_KERNEL);
152#endif
153 if (image_64bit) {
61643ae6
SG
154 if (!cpu_has_64bit()) {
155 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
156 return -EFAULT;
157 }
158 return cpu_jump_to_64bit(setup_base, load_address);
76539383
SG
159 } else {
160 /*
161 * Set %ebx, %ebp, and %edi to 0, %esi to point to the
162 * boot_params structure, and then jump to the kernel. We
163 * assume that %cs is 0x10, 4GB flat, and read/execute, and
164 * the data segments are 0x18, 4GB flat, and read/write.
a187559e 165 * U-Boot is setting them up that way for itself in
76539383 166 * arch/i386/cpu/cpu.c.
e49cceac
SG
167 *
168 * Note that we cannot currently boot a kernel while running as
169 * an EFI application. Please use the payload option for that.
76539383 170 */
e49cceac 171#ifndef CONFIG_EFI_APP
76539383
SG
172 __asm__ __volatile__ (
173 "movl $0, %%ebp\n"
174 "cli\n"
175 "jmp *%[kernel_entry]\n"
176 :: [kernel_entry]"a"(load_address),
177 [boot_params] "S"(setup_base),
178 "b"(0), "D"(0)
179 );
e49cceac 180#endif
76539383
SG
181 }
182
183 /* We can't get to here */
184 return -EFAULT;
185}
186
0d0ba59c
SG
187/* Subcommand: GO */
188static int boot_jump_linux(bootm_headers_t *images)
189{
190 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
191 images->ep, images->os.load);
192
61643ae6
SG
193 return boot_linux_kernel(images->ep, images->os.load,
194 images->os.arch == IH_ARCH_X86_64);
0d0ba59c
SG
195}
196
197int do_bootm_linux(int flag, int argc, char * const argv[],
198 bootm_headers_t *images)
199{
200 /* No need for those on x86 */
201 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
202 return -1;
203
204 if (flag & BOOTM_STATE_OS_PREP)
205 return boot_prep_linux(images);
206
76539383
SG
207 if (flag & BOOTM_STATE_OS_GO)
208 return boot_jump_linux(images);
0d0ba59c
SG
209
210 return boot_jump_linux(images);
211}