Path: blob/master/arch/x86/include/uapi/asm/bootparam.h
26495 views
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1#ifndef _ASM_X86_BOOTPARAM_H2#define _ASM_X86_BOOTPARAM_H34#include <asm/setup_data.h>56/* ram_size flags */7#define RAMDISK_IMAGE_START_MASK 0x07FF8#define RAMDISK_PROMPT_FLAG 0x80009#define RAMDISK_LOAD_FLAG 0x40001011/* loadflags */12#define LOADED_HIGH (1<<0)13#define KASLR_FLAG (1<<1)14#define QUIET_FLAG (1<<5)15#define KEEP_SEGMENTS (1<<6)16#define CAN_USE_HEAP (1<<7)1718/* xloadflags */19#define XLF_KERNEL_64 (1<<0)20#define XLF_CAN_BE_LOADED_ABOVE_4G (1<<1)21#define XLF_EFI_HANDOVER_32 (1<<2)22#define XLF_EFI_HANDOVER_64 (1<<3)23#define XLF_EFI_KEXEC (1<<4)24#define XLF_5LEVEL (1<<5)25#define XLF_5LEVEL_ENABLED (1<<6)26#define XLF_MEM_ENCRYPTION (1<<7)2728#ifndef __ASSEMBLER__2930#include <linux/types.h>31#include <linux/screen_info.h>32#include <linux/apm_bios.h>33#include <linux/edd.h>34#include <asm/ist.h>35#include <video/edid.h>3637struct setup_header {38__u8 setup_sects;39__u16 root_flags;40__u32 syssize;41__u16 ram_size;42__u16 vid_mode;43__u16 root_dev;44__u16 boot_flag;45__u16 jump;46__u32 header;47__u16 version;48__u32 realmode_swtch;49__u16 start_sys_seg;50__u16 kernel_version;51__u8 type_of_loader;52__u8 loadflags;53__u16 setup_move_size;54__u32 code32_start;55__u32 ramdisk_image;56__u32 ramdisk_size;57__u32 bootsect_kludge;58__u16 heap_end_ptr;59__u8 ext_loader_ver;60__u8 ext_loader_type;61__u32 cmd_line_ptr;62__u32 initrd_addr_max;63__u32 kernel_alignment;64__u8 relocatable_kernel;65__u8 min_alignment;66__u16 xloadflags;67__u32 cmdline_size;68__u32 hardware_subarch;69__u64 hardware_subarch_data;70__u32 payload_offset;71__u32 payload_length;72__u64 setup_data;73__u64 pref_address;74__u32 init_size;75__u32 handover_offset;76__u32 kernel_info_offset;77} __attribute__((packed));7879struct sys_desc_table {80__u16 length;81__u8 table[14];82};8384/* Gleaned from OFW's set-parameters in cpu/x86/pc/linux.fth */85struct olpc_ofw_header {86__u32 ofw_magic; /* OFW signature */87__u32 ofw_version;88__u32 cif_handler; /* callback into OFW */89__u32 irq_desc_table;90} __attribute__((packed));9192struct efi_info {93__u32 efi_loader_signature;94__u32 efi_systab;95__u32 efi_memdesc_size;96__u32 efi_memdesc_version;97__u32 efi_memmap;98__u32 efi_memmap_size;99__u32 efi_systab_hi;100__u32 efi_memmap_hi;101};102103/*104* This is the maximum number of entries in struct boot_params::e820_table105* (the zeropage), which is part of the x86 boot protocol ABI:106*/107#define E820_MAX_ENTRIES_ZEROPAGE 128108109/*110* Smallest compatible version of jailhouse_setup_data required by this kernel.111*/112#define JAILHOUSE_SETUP_REQUIRED_VERSION 1113114/* The so-called "zeropage" */115struct boot_params {116struct screen_info screen_info; /* 0x000 */117struct apm_bios_info apm_bios_info; /* 0x040 */118__u8 _pad2[4]; /* 0x054 */119__u64 tboot_addr; /* 0x058 */120struct ist_info ist_info; /* 0x060 */121__u64 acpi_rsdp_addr; /* 0x070 */122__u8 _pad3[8]; /* 0x078 */123__u8 hd0_info[16]; /* obsolete! */ /* 0x080 */124__u8 hd1_info[16]; /* obsolete! */ /* 0x090 */125struct sys_desc_table sys_desc_table; /* obsolete! */ /* 0x0a0 */126struct olpc_ofw_header olpc_ofw_header; /* 0x0b0 */127__u32 ext_ramdisk_image; /* 0x0c0 */128__u32 ext_ramdisk_size; /* 0x0c4 */129__u32 ext_cmd_line_ptr; /* 0x0c8 */130__u8 _pad4[112]; /* 0x0cc */131__u32 cc_blob_address; /* 0x13c */132struct edid_info edid_info; /* 0x140 */133struct efi_info efi_info; /* 0x1c0 */134__u32 alt_mem_k; /* 0x1e0 */135__u32 scratch; /* Scratch field! */ /* 0x1e4 */136__u8 e820_entries; /* 0x1e8 */137__u8 eddbuf_entries; /* 0x1e9 */138__u8 edd_mbr_sig_buf_entries; /* 0x1ea */139__u8 kbd_status; /* 0x1eb */140__u8 secure_boot; /* 0x1ec */141__u8 _pad5[2]; /* 0x1ed */142/*143* The sentinel is set to a nonzero value (0xff) in header.S.144*145* A bootloader is supposed to only take setup_header and put146* it into a clean boot_params buffer. If it turns out that147* it is clumsy or too generous with the buffer, it most148* probably will pick up the sentinel variable too. The fact149* that this variable then is still 0xff will let kernel150* know that some variables in boot_params are invalid and151* kernel should zero out certain portions of boot_params.152*/153__u8 sentinel; /* 0x1ef */154__u8 _pad6[1]; /* 0x1f0 */155struct setup_header hdr; /* setup header */ /* 0x1f1 */156__u8 _pad7[0x290-0x1f1-sizeof(struct setup_header)];157__u32 edd_mbr_sig_buffer[EDD_MBR_SIG_MAX]; /* 0x290 */158struct boot_e820_entry e820_table[E820_MAX_ENTRIES_ZEROPAGE]; /* 0x2d0 */159__u8 _pad8[48]; /* 0xcd0 */160struct edd_info eddbuf[EDDMAXNR]; /* 0xd00 */161__u8 _pad9[276]; /* 0xeec */162} __attribute__((packed));163164/**165* enum x86_hardware_subarch - x86 hardware subarchitecture166*167* The x86 hardware_subarch and hardware_subarch_data were added as of the x86168* boot protocol 2.07 to help distinguish and support custom x86 boot169* sequences. This enum represents accepted values for the x86170* hardware_subarch. Custom x86 boot sequences (not X86_SUBARCH_PC) do not171* have or simply *cannot* make use of natural stubs like BIOS or EFI, the172* hardware_subarch can be used on the Linux entry path to revector to a173* subarchitecture stub when needed. This subarchitecture stub can be used to174* set up Linux boot parameters or for special care to account for nonstandard175* handling of page tables.176*177* These enums should only ever be used by x86 code, and the code that uses178* it should be well contained and compartmentalized.179*180* KVM and Xen HVM do not have a subarch as these are expected to follow181* standard x86 boot entries. If there is a genuine need for "hypervisor" type182* that should be considered separately in the future. Future guest types183* should seriously consider working with standard x86 boot stubs such as184* the BIOS or EFI boot stubs.185*186* WARNING: this enum is only used for legacy hacks, for platform features that187* are not easily enumerated or discoverable. You should not ever use188* this for new features.189*190* @X86_SUBARCH_PC: Should be used if the hardware is enumerable using standard191* PC mechanisms (PCI, ACPI) and doesn't need a special boot flow.192* @X86_SUBARCH_LGUEST: Used for x86 hypervisor demo, lguest, deprecated193* @X86_SUBARCH_XEN: Used for Xen guest types which follow the PV boot path,194* which start at asm startup_xen() entry point and later jump to the C195* xen_start_kernel() entry point. Both domU and dom0 type of guests are196* currently supported through this PV boot path.197* @X86_SUBARCH_INTEL_MID: Used for Intel MID (Mobile Internet Device) platform198* systems which do not have the PCI legacy interfaces.199* @X86_SUBARCH_CE4100: Used for Intel CE media processor (CE4100) SoC200* for settop boxes and media devices, the use of a subarch for CE4100201* is more of a hack...202*/203enum x86_hardware_subarch {204X86_SUBARCH_PC = 0,205X86_SUBARCH_LGUEST,206X86_SUBARCH_XEN,207X86_SUBARCH_INTEL_MID,208X86_SUBARCH_CE4100,209X86_NR_SUBARCHS,210};211212#endif /* __ASSEMBLER__ */213214#endif /* _ASM_X86_BOOTPARAM_H */215216217