3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * SPDX-License-Identifier: GPL-2.0+
14 #include <fdt_support.h>
16 #include <u-boot/zlib.h>
17 #include <asm/bootparam.h>
19 #include <asm/byteorder.h>
20 #include <asm/zimage.h>
21 #ifdef CONFIG_SYS_COREBOOT
22 #include <asm/arch/timestamp.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 #define COMMAND_LINE_OFFSET 0x9000
29 void bootm_announce_and_cleanup(void)
31 printf("\nStarting kernel ...\n\n");
33 #ifdef CONFIG_SYS_COREBOOT
34 timestamp_add_now(TS_U_BOOT_START_KERNEL);
36 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
37 #ifdef CONFIG_BOOTSTAGE_REPORT
42 #if defined(CONFIG_OF_LIBFDT) && !defined(CONFIG_OF_NO_KERNEL)
43 int arch_fixup_memory_node(void *blob)
47 u64 start[CONFIG_NR_DRAM_BANKS];
48 u64 size[CONFIG_NR_DRAM_BANKS];
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;
55 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
59 /* Subcommand: PREP */
60 static int boot_prep_linux(bootm_headers_t *images)
62 char *cmd_line_dest = NULL;
69 #ifdef CONFIG_OF_LIBFDT
71 debug("using: FDT\n");
72 if (image_setup_linux(images)) {
73 puts("FDT creation failed! hanging...");
78 if (images->legacy_hdr_valid) {
79 hdr = images->legacy_hdr_os;
80 if (image_check_type(hdr, IH_TYPE_MULTI)) {
81 ulong os_data, os_len;
83 /* if multi-part image, we need to get first subimage */
84 image_multi_getimg(hdr, 0, &os_data, &os_len);
85 data = (void *)os_data;
88 /* otherwise get image data */
89 data = (void *)image_get_data(hdr);
90 len = image_get_data_size(hdr);
93 #if defined(CONFIG_FIT)
94 } else if (images->fit_uname_os && is_zimage) {
95 ret = fit_image_get_data(images->fit_hdr_os,
96 images->fit_noffset_os,
97 (const void **)&data, &len);
99 puts("Can't get image data/size!\n");
110 base_ptr = (char *)load_zimage(data, len, &load_address);
111 images->os.load = load_address;
112 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;
117 printf("## Kernel loading failed (missing x86 kernel setup) ...\n");
121 printf("Setup at %#08lx\n", images->ep);
122 ret = setup_zimage((void *)images->ep, cmd_line_dest,
124 images->rd_end - images->rd_start);
127 printf("## Setting up boot parameters failed ...\n");
137 int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit)
139 bootm_announce_and_cleanup();
141 #ifdef CONFIG_SYS_COREBOOT
142 timestamp_add_now(TS_U_BOOT_START_KERNEL);
145 if (!cpu_has_64bit()) {
146 puts("Cannot boot 64-bit kernel on 32-bit machine\n");
149 return cpu_jump_to_64bit(setup_base, load_address);
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.
156 * U-Boot is setting them up that way for itself in
157 * arch/i386/cpu/cpu.c.
159 * Note that we cannot currently boot a kernel while running as
160 * an EFI application. Please use the payload option for that.
162 #ifndef CONFIG_EFI_APP
163 __asm__ __volatile__ (
166 "jmp *%[kernel_entry]\n"
167 :: [kernel_entry]"a"(load_address),
168 [boot_params] "S"(setup_base),
174 /* We can't get to here */
179 static int boot_jump_linux(bootm_headers_t *images)
181 debug("## Transferring control to Linux (at address %08lx, kernel %08lx) ...\n",
182 images->ep, images->os.load);
184 return boot_linux_kernel(images->ep, images->os.load,
185 images->os.arch == IH_ARCH_X86_64);
188 int do_bootm_linux(int flag, int argc, char * const argv[],
189 bootm_headers_t *images)
191 /* No need for those on x86 */
192 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
195 if (flag & BOOTM_STATE_OS_PREP)
196 return boot_prep_linux(images);
198 if (flag & BOOTM_STATE_OS_GO)
199 return boot_jump_linux(images);
201 return boot_jump_linux(images);