1 #ifndef _ASM_BOOTPARAM_H
2 #define _ASM_BOOTPARAM_H
4 #include <linux/types.h>
5 #include <linux/screen_info.h>
6 #include <linux/apm_bios.h>
10 #include <video/edid.h>
17 #define RAMDISK_IMAGE_START_MASK 0x07FF
18 #define RAMDISK_PROMPT_FLAG 0x8000
19 #define RAMDISK_LOAD_FLAG 0x4000
31 #define LOADED_HIGH (1<<0)
32 #define KEEP_SEGMENTS (1<<6)
33 #define CAN_USE_HEAP (1<<7)
34 __u16 setup_move_size;
38 __u32 bootsect_kludge;
42 __u32 initrd_addr_max;
43 __u32 kernel_alignment;
44 __u8 relocatable_kernel;
47 __u32 hardware_subarch;
48 __u64 hardware_subarch_data;
49 } __attribute__((packed));
51 struct sys_desc_table {
57 __u32 efi_loader_signature;
59 __u32 efi_memdesc_size;
60 __u32 efi_memdesc_version;
62 __u32 efi_memmap_size;
67 /* The so-called "zeropage" */
69 struct screen_info screen_info; /* 0x000 */
70 struct apm_bios_info apm_bios_info; /* 0x040 */
71 __u8 _pad2[12]; /* 0x054 */
72 struct ist_info ist_info; /* 0x060 */
73 __u8 _pad3[16]; /* 0x070 */
74 __u8 hd0_info[16]; /* obsolete! */ /* 0x080 */
75 __u8 hd1_info[16]; /* obsolete! */ /* 0x090 */
76 struct sys_desc_table sys_desc_table; /* 0x0a0 */
77 __u8 _pad4[144]; /* 0x0b0 */
78 struct edid_info edid_info; /* 0x140 */
79 struct efi_info efi_info; /* 0x1c0 */
80 __u32 alt_mem_k; /* 0x1e0 */
81 __u32 scratch; /* Scratch field! */ /* 0x1e4 */
82 __u8 e820_entries; /* 0x1e8 */
83 __u8 eddbuf_entries; /* 0x1e9 */
84 __u8 edd_mbr_sig_buf_entries; /* 0x1ea */
85 __u8 _pad6[6]; /* 0x1eb */
86 struct setup_header hdr; /* setup header */ /* 0x1f1 */
87 __u8 _pad7[0x290-0x1f1-sizeof(struct setup_header)];
88 __u32 edd_mbr_sig_buffer[EDD_MBR_SIG_MAX]; /* 0x290 */
89 struct e820entry e820_map[E820MAX]; /* 0x2d0 */
90 __u8 _pad8[48]; /* 0xcd0 */
91 struct edd_info eddbuf[EDDMAXNR]; /* 0xd00 */
92 __u8 _pad9[276]; /* 0xeec */
93 } __attribute__((packed));
95 #endif /* _ASM_BOOTPARAM_H */