]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/arm/boot.h
hw/arm/boot: Make write_bootloader() public as arm_write_bootloader()
[mirror_qemu.git] / include / hw / arm / boot.h
CommitLineData
87ecb68b 1/*
12ec8bd5 2 * ARM kernel loader.
87ecb68b
PB
3 *
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the LGPL.
87ecb68b
PB
8 *
9 */
10
12ec8bd5
PM
11#ifndef HW_ARM_BOOT_H
12#define HW_ARM_BOOT_H
87ecb68b 13
fcf5ef2a 14#include "target/arm/cpu-qom.h"
ac9d32e3 15#include "qemu/notify.h"
7d6f78cf 16
9776f636
PC
17typedef enum {
18 ARM_ENDIANNESS_UNKNOWN = 0,
19 ARM_ENDIANNESS_LE,
20 ARM_ENDIANNESS_BE8,
21 ARM_ENDIANNESS_BE32,
22} arm_endianness;
23
3651c285
PM
24/**
25 * armv7m_load_kernel:
26 * @cpu: CPU
27 * @kernel_filename: file to load
761c532a
PM
28 * @mem_base: base address to load image at (should be where the
29 * CPU expects to find its vector table on reset)
3651c285
PM
30 * @mem_size: mem_size: maximum image size to load
31 *
32 * Load the guest image for an ARMv7M system. This must be called by
38d81daf
PM
33 * any ARMv7M board. (This is necessary to ensure that the CPU resets
34 * correctly on system reset, as well as for kernel loading.)
3651c285 35 */
761c532a
PM
36void armv7m_load_kernel(ARMCPU *cpu, const char *kernel_filename,
37 hwaddr mem_base, int mem_size);
87ecb68b
PB
38
39/* arm_boot.c */
f93eb9ff 40struct arm_boot_info {
de841dea 41 uint64_t ram_size;
f93eb9ff
AZ
42 const char *kernel_filename;
43 const char *kernel_cmdline;
44 const char *initrd_filename;
412beee6 45 const char *dtb_filename;
a8170e5e 46 hwaddr loader_start;
3b77f6c3
IM
47 hwaddr dtb_start;
48 hwaddr dtb_limit;
49 /* If set to True, arm_load_kernel() will not load DTB.
50 * It allows board to load DTB manually later.
51 * (default: False)
52 */
53 bool skip_dtb_autoload;
9d5ba9bf
ML
54 /* multicore boards that use the default secondary core boot functions
55 * need to put the address of the secondary boot code, the boot reg,
56 * and the GIC address in the next 3 values, respectively. boards that
57 * have their own boot functions can use these values as they want.
58 */
a8170e5e
AK
59 hwaddr smp_loader_start;
60 hwaddr smp_bootreg_addr;
61 hwaddr gic_cpu_if_addr;
f93eb9ff 62 int board_id;
c8e829b7
GB
63 /* ARM machines that support the ARM Security Extensions use this field to
64 * control whether Linux is booted as secure(true) or non-secure(false).
65 */
66 bool secure_boot;
462a8bc6 67 int (*atag_board)(const struct arm_boot_info *info, void *p);
9d5ba9bf
ML
68 /* multicore boards that use the default secondary core boot functions
69 * can ignore these two function calls. If the default functions won't
70 * work, then write_secondary_boot() should write a suitable blob of
9b574c29 71 * code mimicking the secondary CPU startup process used by the board's
9d5ba9bf 72 * boot loader/boot ROM code, and secondary_cpu_reset_hook() should
9b574c29 73 * perform any necessary CPU reset handling and set the PC for the
9d5ba9bf 74 * secondary CPUs to point at this boot blob.
d4a29ed6
PM
75 *
76 * These hooks won't be called if secondary CPUs are booting via
77 * emulated PSCI (see psci_conduit below).
9d5ba9bf 78 */
9543b0cd 79 void (*write_secondary_boot)(ARMCPU *cpu,
9d5ba9bf 80 const struct arm_boot_info *info);
5d309320 81 void (*secondary_cpu_reset_hook)(ARMCPU *cpu,
9d5ba9bf 82 const struct arm_boot_info *info);
0fb79851
JR
83 /* if a board is able to create a dtb without a dtb file then it
84 * sets get_dtb. This will only be used if no dtb file is provided
85 * by the user. On success, sets *size to the length of the created
86 * dtb, and returns a pointer to it. (The caller must free this memory
87 * with g_free() when it has finished with it.) On failure, returns NULL.
88 */
89 void *(*get_dtb)(const struct arm_boot_info *info, int *size);
3b1cceb8
PM
90 /* if a board needs to be able to modify a device tree provided by
91 * the user it should implement this hook.
92 */
93 void (*modify_dtb)(const struct arm_boot_info *info, void *fdt);
817e2db8
PM
94 /*
95 * If a board wants to use the QEMU emulated-firmware PSCI support,
96 * it should set this to QEMU_PSCI_CONDUIT_HVC or QEMU_PSCI_CONDUIT_SMC
97 * as appropriate. arm_load_kernel() will set the psci-conduit and
98 * start-powered-off properties on the CPUs accordingly.
99 * Note that if the guest image is started at the same exception level
100 * as the conduit specifies calls should go to (eg guest firmware booted
101 * to EL3) then PSCI will not be enabled.
102 */
103 int psci_conduit;
f2d74978
PB
104 /* Used internally by arm_boot.c */
105 int is_linux;
fc53b7d4 106 hwaddr initrd_start;
a8170e5e
AK
107 hwaddr initrd_size;
108 hwaddr entry;
07abe45c
LE
109
110 /* Boot firmware has been loaded, typically at address 0, with -bios or
111 * -pflash. It also implies that fw_cfg_find() will succeed.
112 */
113 bool firmware_loaded;
10b8ec73
PC
114
115 /* Address at which board specific loader/setup code exists. If enabled,
116 * this code-blob will run before anything else. It must return to the
117 * caller via the link register. There is no stack set up. Enabled by
118 * defining write_board_setup, which is responsible for loading the blob
119 * to the specified address.
120 */
121 hwaddr board_setup_addr;
122 void (*write_board_setup)(ARMCPU *cpu,
123 const struct arm_boot_info *info);
baf6b681 124
45c078f1
CD
125 /*
126 * If set, the board specific loader/setup blob will be run from secure
baf6b681 127 * mode, regardless of secure_boot. The blob becomes responsible for
45c078f1
CD
128 * changing to non-secure state if implementing a non-secure boot,
129 * including setting up EL3/Secure registers such as the NSACR as
130 * required by the Linux booting ABI before the switch to non-secure.
baf6b681
PC
131 */
132 bool secure_board_setup;
9776f636
PC
133
134 arm_endianness endianness;
f93eb9ff 135};
ac9d32e3
EA
136
137/**
138 * arm_load_kernel - Loads memory with everything needed to boot
139 *
140 * @cpu: handle to the first CPU object
141 * @info: handle to the boot info struct
142 * Registers a machine init done notifier that copies to memory
143 * everything needed to boot, depending on machine and user options:
144 * kernel image, boot loaders, initrd, dtb. Also registers the CPU
145 * reset handler.
146 *
147 * In case the machine file supports the platform bus device and its
148 * dynamically instantiable sysbus devices, this function must be called
149 * before sysbus-fdt arm_register_platform_bus_fdt_creator. Indeed the
150 * machine init done notifiers are called in registration reverse order.
151 */
2744ece8 152void arm_load_kernel(ARMCPU *cpu, MachineState *ms, struct arm_boot_info *info);
87ecb68b 153
3b77f6c3
IM
154AddressSpace *arm_boot_address_space(ARMCPU *cpu,
155 const struct arm_boot_info *info);
156
157/**
158 * arm_load_dtb() - load a device tree binary image into memory
159 * @addr: the address to load the image at
160 * @binfo: struct describing the boot environment
161 * @addr_limit: upper limit of the available memory area at @addr
162 * @as: address space to load image to
163 *
164 * Load a device tree supplied by the machine or by the user with the
165 * '-dtb' command line option, and put it at offset @addr in target
166 * memory.
167 *
168 * If @addr_limit contains a meaningful value (i.e., it is strictly greater
169 * than @addr), the device tree is only loaded if its size does not exceed
170 * the limit.
171 *
172 * Returns: the size of the device tree image on success,
173 * 0 if the image size exceeds the limit,
174 * -1 on errors.
175 *
176 * Note: Must not be called unless have_dtb(binfo) is true.
177 */
178int arm_load_dtb(hwaddr addr, const struct arm_boot_info *binfo,
2744ece8 179 hwaddr addr_limit, AddressSpace *as, MachineState *ms);
3b77f6c3 180
716536a9
AB
181/* Write a secure board setup routine with a dummy handler for SMCs */
182void arm_write_secure_board_setup_dummy_smc(ARMCPU *cpu,
183 const struct arm_boot_info *info,
184 hwaddr mvbar_addr);
185
0fe43f0a
CLG
186typedef enum {
187 FIXUP_NONE = 0, /* do nothing */
188 FIXUP_TERMINATOR, /* end of insns */
189 FIXUP_BOARDID, /* overwrite with board ID number */
190 FIXUP_BOARD_SETUP, /* overwrite with board specific setup code address */
191 FIXUP_ARGPTR_LO, /* overwrite with pointer to kernel args */
192 FIXUP_ARGPTR_HI, /* overwrite with pointer to kernel args (high half) */
193 FIXUP_ENTRYPOINT_LO, /* overwrite with kernel entry point */
194 FIXUP_ENTRYPOINT_HI, /* overwrite with kernel entry point (high half) */
195 FIXUP_GIC_CPU_IF, /* overwrite with GIC CPU interface address */
196 FIXUP_BOOTREG, /* overwrite with boot register address */
197 FIXUP_DSB, /* overwrite with correct DSB insn for cpu */
198 FIXUP_MAX,
199} FixupType;
200
201typedef struct ARMInsnFixup {
202 uint32_t insn;
203 FixupType fixup;
204} ARMInsnFixup;
205
206/**
207 * arm_write_bootloader - write a bootloader to guest memory
208 * @name: name of the bootloader blob
209 * @as: AddressSpace to write the bootloader
210 * @addr: guest address to write it
211 * @insns: the blob to be loaded
212 * @fixupcontext: context to be used for any fixups in @insns
213 *
214 * Write a bootloader to guest memory at address @addr in the address
215 * space @as. @name is the name to use for the resulting ROM blob, so
216 * it should be unique in the system and reasonably identifiable for debugging.
217 *
218 * @insns must be an array of ARMInsnFixup structs, each of which has
219 * one 32-bit value to be written to the guest memory, and a fixup to be
220 * applied to the value. FIXUP_NONE (do nothing) is value 0, so effectively
221 * the fixup is optional when writing a struct initializer.
222 * The final entry in the array must be { 0, FIXUP_TERMINATOR }.
223 *
224 * All other supported fixup types have the semantics "ignore insn
225 * and instead use the value from the array element @fixupcontext[fixup]".
226 * The caller should therefore provide @fixupcontext as an array of
227 * size FIXUP_MAX whose elements have been initialized for at least
228 * the entries that @insns refers to.
229 */
230void arm_write_bootloader(const char *name,
231 AddressSpace *as, hwaddr addr,
232 const ARMInsnFixup *insns,
233 const uint32_t *fixupcontext);
234
12ec8bd5 235#endif /* HW_ARM_BOOT_H */