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>
28 #define LOADED_HIGH 0x01
29 #define CAN_USE_HEAP 0x80
40 u8 relocatable_kernel;
41 } __attribute__((packed));
43 struct sys_desc_table {
52 u32 efi_memdesc_version;
58 /* The so-called "zeropage" */
60 struct screen_info screen_info; /* 0x000 */
61 struct apm_bios_info apm_bios_info; /* 0x040 */
62 u8 _pad2[12]; /* 0x054 */
63 struct ist_info ist_info; /* 0x060 */
64 u8 _pad3[16]; /* 0x070 */
65 u8 hd0_info[16]; /* obsolete! */ /* 0x080 */
66 u8 hd1_info[16]; /* obsolete! */ /* 0x090 */
67 struct sys_desc_table sys_desc_table; /* 0x0a0 */
68 u8 _pad4[144]; /* 0x0b0 */
69 struct edid_info edid_info; /* 0x140 */
70 struct efi_info efi_info; /* 0x1c0 */
71 u32 alt_mem_k; /* 0x1e0 */
72 u32 scratch; /* Scratch field! */ /* 0x1e4 */
73 u8 e820_entries; /* 0x1e8 */
74 u8 eddbuf_entries; /* 0x1e9 */
75 u8 edd_mbr_sig_buf_entries; /* 0x1ea */
76 u8 _pad6[6]; /* 0x1eb */
77 struct setup_header hdr; /* setup header */ /* 0x1f1 */
78 u8 _pad7[0x290-0x1f1-sizeof(struct setup_header)];
79 u32 edd_mbr_sig_buffer[EDD_MBR_SIG_MAX]; /* 0x290 */
80 struct e820entry e820_map[E820MAX]; /* 0x2d0 */
81 u8 _pad8[48]; /* 0xcd0 */
82 struct edd_info eddbuf[EDDMAXNR]; /* 0xd00 */
83 u8 _pad9[276]; /* 0xeec */
84 } __attribute__((packed));
86 #endif /* _ASM_BOOTPARAM_H */