Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 4 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_ZIMAGE_H_ |
| 8 | #define _ASM_ZIMAGE_H_ |
| 9 | |
Gabe Black | 540c262 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 10 | #include <asm/bootparam.h> |
Gabe Black | c67a948 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 11 | #include <asm/e820.h> |
| 12 | |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 13 | struct bootm_info; |
| 14 | |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 15 | /* linux i386 zImage/bzImage header. Offsets relative to |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 16 | * the start of the image */ |
| 17 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 18 | #define HEAP_FLAG 0x80 |
| 19 | #define BIG_KERNEL_FLAG 0x01 |
| 20 | |
| 21 | /* magic numbers */ |
| 22 | #define KERNEL_MAGIC 0xaa55 |
| 23 | #define KERNEL_V2_MAGIC 0x53726448 |
| 24 | #define COMMAND_LINE_MAGIC 0xA33F |
| 25 | |
| 26 | /* limits */ |
| 27 | #define BZIMAGE_MAX_SIZE 15*1024*1024 /* 15MB */ |
| 28 | #define ZIMAGE_MAX_SIZE 512*1024 /* 512k */ |
| 29 | #define SETUP_MAX_SIZE 32768 |
| 30 | |
| 31 | #define SETUP_START_OFFSET 0x200 |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 32 | #define BZIMAGE_LOAD_ADDR 0x100000 |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 33 | #define ZIMAGE_LOAD_ADDR 0x10000 |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 34 | |
Simon Glass | bf4af11 | 2023-12-03 17:29:26 -0700 | [diff] [blame] | 35 | enum { |
| 36 | ZBOOT_STATE_START = BIT(0), |
| 37 | ZBOOT_STATE_LOAD = BIT(1), |
| 38 | ZBOOT_STATE_SETUP = BIT(2), |
| 39 | ZBOOT_STATE_INFO = BIT(3), |
| 40 | ZBOOT_STATE_GO = BIT(4), |
| 41 | |
| 42 | /* This one doesn't execute automatically, so stop the count before 5 */ |
| 43 | ZBOOT_STATE_DUMP = BIT(5), |
| 44 | ZBOOT_STATE_COUNT = 5, |
| 45 | }; |
| 46 | |
Simon Glass | 12d93ab | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 47 | /** |
Simon Glass | 2bf90bd | 2023-12-03 17:29:27 -0700 | [diff] [blame] | 48 | * zboot_load() - Load a zimage |
| 49 | * |
| 50 | * Load the zimage into the correct place |
| 51 | * |
| 52 | * Return: 0 if OK, -ve on error |
| 53 | */ |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 54 | int zboot_load(struct bootm_info *bmi); |
Simon Glass | 2bf90bd | 2023-12-03 17:29:27 -0700 | [diff] [blame] | 55 | |
| 56 | /** |
| 57 | * zboot_setup() - Set up the zboot image reeady for booting |
| 58 | * |
| 59 | * Return: 0 if OK, -ve on error |
| 60 | */ |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 61 | int zboot_setup(struct bootm_info *bmi); |
Simon Glass | 2bf90bd | 2023-12-03 17:29:27 -0700 | [diff] [blame] | 62 | |
| 63 | /** |
| 64 | * zboot_go() - Start the image |
| 65 | * |
| 66 | * Return: 0 if OK, -ve on error |
| 67 | */ |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 68 | int zboot_go(struct bootm_info *bmi); |
Simon Glass | 2bf90bd | 2023-12-03 17:29:27 -0700 | [diff] [blame] | 69 | |
| 70 | /** |
Simon Glass | 12d93ab | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 71 | * load_zimage() - Load a zImage or bzImage |
| 72 | * |
| 73 | * This copies an image into the standard location ready for setup |
| 74 | * |
| 75 | * @image: Address of image to load |
| 76 | * @kernel_size: Size of kernel including setup block (or 0 if the kernel is |
| 77 | * new enough to have a 'syssize' value) |
| 78 | * @load_addressp: Returns the address where the kernel has been loaded |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 79 | * Return: address of setup block, or NULL if something went wrong |
Simon Glass | 12d93ab | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 80 | */ |
Gabe Black | 540c262 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 81 | struct boot_params *load_zimage(char *image, unsigned long kernel_size, |
Simon Glass | d98a5bd | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 82 | ulong *load_addressp); |
Simon Glass | 12d93ab | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 83 | |
| 84 | /** |
| 85 | * setup_zimage() - Set up a loaded zImage or bzImage ready for booting |
| 86 | * |
| 87 | * @setup_base: Pointer to the boot parameters, typically at address |
| 88 | * DEFAULT_SETUP_BASE |
| 89 | * @cmd_line: Place to put the command line, or NULL to use the one in the setup |
| 90 | * block |
| 91 | * @initrd_addr: Address of the initial ramdisk, or 0 if none |
| 92 | * @initrd_size: Size of the initial ramdisk, or 0 if none |
| 93 | * @load_address: Address where the bzImage is moved before booting, either |
| 94 | * BZIMAGE_LOAD_ADDR or ZIMAGE_LOAD_ADDR |
| 95 | * @cmdline_force: Address of 'override' command line, or 0 to use the one in |
| 96 | * the * setup block |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 97 | * Return: 0 (always) |
Simon Glass | 12d93ab | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 98 | */ |
Gabe Black | 540c262 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 99 | int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot, |
Simon Glass | 12d93ab | 2020-09-05 14:50:51 -0600 | [diff] [blame] | 100 | ulong initrd_addr, ulong initrd_size, ulong cmdline_force); |
| 101 | |
Simon Glass | 14c0fc7 | 2023-12-03 17:29:36 -0700 | [diff] [blame] | 102 | /** |
| 103 | * zboot_start() - Prepare to boot a zimage |
| 104 | * |
| 105 | * Record information about a zimage so it can be booted |
| 106 | * |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 107 | * @bmi: Bootm information |
Simon Glass | 14c0fc7 | 2023-12-03 17:29:36 -0700 | [diff] [blame] | 108 | * @bzimage_addr: Address of the bzImage to boot |
| 109 | * @bzimage_size: Size of the bzImage, or 0 to detect this |
| 110 | * @initrd_addr: Address of the initial ramdisk, or 0 if none |
| 111 | * @initrd_size: Size of the initial ramdisk, or 0 if none |
| 112 | * @base_addr: If non-zero, this indicates that the boot parameters have already |
| 113 | * been loaded by the caller to this address, so the load_zimage() call |
| 114 | * in zboot_load() will be skipped when booting |
| 115 | * @cmdline: Environment variable containing the 'override' command line, or |
| 116 | * NULL to use the one in the setup block |
| 117 | */ |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 118 | void zboot_start(struct bootm_info *bmi, ulong bzimage_addr, ulong bzimage_size, |
| 119 | ulong initrd_addr, ulong initrd_size, ulong base_addr, |
| 120 | const char *cmdline); |
Simon Glass | 14c0fc7 | 2023-12-03 17:29:36 -0700 | [diff] [blame] | 121 | |
| 122 | /** |
| 123 | * zboot_info() - Show simple info about a zimage |
| 124 | * |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 125 | * Shows where the kernel was loaded and also the setup base |
| 126 | * |
| 127 | * @bmi: Bootm information |
Simon Glass | 14c0fc7 | 2023-12-03 17:29:36 -0700 | [diff] [blame] | 128 | */ |
Simon Glass | 7b15c57 | 2025-03-05 17:25:00 -0700 | [diff] [blame] | 129 | void zboot_info(struct bootm_info *bmi); |
Simon Glass | 14c0fc7 | 2023-12-03 17:29:36 -0700 | [diff] [blame] | 130 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 131 | #endif |