1 // SPDX-License-Identifier: GPL-2.0+
4 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
5 * Marius Groeger <mgroeger@sysgo.de>
7 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
11 #include <bootstage.h>
15 #include <asm/global_data.h>
16 #include <dm/device.h>
19 #include <fdt_support.h>
21 #include <u-boot/zlib.h>
22 #include <asm/bootparam.h>
24 #include <asm/byteorder.h>
25 #include <asm/zimage.h>
26 #ifdef CONFIG_SYS_COREBOOT
27 #include <asm/arch/timestamp.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 #define COMMAND_LINE_OFFSET 0x9000
34 void bootm_announce_and_cleanup(void)
36 printf("\nStarting kernel ...\n\n");
38 #ifdef CONFIG_SYS_COREBOOT
39 timestamp_add_now(TS_U_BOOT_START_KERNEL);
41 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
42 #if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT)
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.
51 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
54 #if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
55 int arch_fixup_memory_node(void *blob)
57 struct bd_info *bd = gd->bd;
59 u64 start[CONFIG_NR_DRAM_BANKS];
60 u64 size[CONFIG_NR_DRAM_BANKS];
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;
67 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
71 /* Subcommand: PREP */
72 static int boot_prep_linux(bootm_headers_t *images)
74 char *cmd_line_dest = NULL;
81 #ifdef CONFIG_OF_LIBFDT
83 debug("using: FDT\n");
84 if (image_setup_linux(images)) {
85 puts("FDT creation failed! hanging...");
90 if (images->legacy_hdr_valid) {
91 hdr = images->legacy_hdr_os;
92 if (image_check_type(hdr, IH_TYPE_MULTI)) {
93 ulong os_data, os_len;
95 /* if multi-part image, we need to get first subimage */
96 image_multi_getimg(hdr, 0, &os_data, &os_len);
97 data = (void *)os_data;
100 /* otherwise get image data */
101 data = (void *)image_get_data(hdr);
102 len = image_get_data_size(hdr);
105 #if defined(CONFIG_FIT)
106 } else if (images->fit_uname_os && is_zimage) {
107 ret = fit_image_get_data(images->fit_hdr_os,
108 images->fit_noffset_os,
109 (const void **)&data, &len);
111 puts("Can't get image data/size!\n");
122 base_ptr = (char *)load_zimage(data, len, &load_address);
124 puts("## Kernel loading failed ...\n");
127 images->os.load = load_address;
128 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;
133 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
137 printf("Setup at %#08lx\n", images->ep);
138 ret = setup_zimage((void *)images->ep, cmd_line_dest,
140 images->rd_end - images->rd_start, 0);
143 printf("## Setting up boot parameters failed ...\n");
153 int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
155 bootm_announce_and_cleanup();
157 #ifdef CONFIG_SYS_COREBOOT
158 timestamp_add_now(TS_U_BOOT_START_KERNEL);
161 if (!cpu_has_64bit()) {
162 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
165 /* At present 64-bit U-Boot does not support booting a
167 * TODO(sjg@chromium.org): Support booting both 32-bit and
168 * 64-bit kernels from 64-bit U-Boot.
170 #if !CONFIG_IS_ENABLED(X86_64)
171 return cpu_jump_to_64bit(setup_base, load_address);
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.
179 * U-Boot is setting them up that way for itself in
180 * arch/i386/cpu/cpu.c.
182 * Note that we cannot currently boot a kernel while running as
183 * an EFI application. Please use the payload option for that.
185 #ifndef CONFIG_EFI_APP
186 __asm__ __volatile__ (
189 "jmp *%[kernel_entry]\n"
190 :: [kernel_entry]"a"(load_address),
191 [boot_params] "S"(setup_base),
197 /* We can't get to here */
202 static int boot_jump_linux(bootm_headers_t *images)
204 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
205 images->ep, images->os.load);
207 return boot_linux_kernel(images->ep, images->os.load,
208 images->os.arch == IH_ARCH_X86_64);
211 int do_bootm_linux(int flag, int argc, char *const argv[],
212 bootm_headers_t *images)
214 /* No need for those on x86 */
215 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
218 if (flag & BOOTM_STATE_OS_PREP)
219 return boot_prep_linux(images);
221 if (flag & BOOTM_STATE_OS_GO)
222 return boot_jump_linux(images);
224 return boot_jump_linux(images);