1 #ifndef _ASM_X86_BOOTPARAM_H
2 #define _ASM_X86_BOOTPARAM_H
4 #include <linux/types.h>
5 #include <linux/screen_info.h>
6 #include <linux/apm_bios.h>
10 #include <video/edid.h>
12 /* setup data types */
14 #define SETUP_E820_EXT 1
17 /* extensible setup data list node */
30 #define RAMDISK_IMAGE_START_MASK 0x07FF
31 #define RAMDISK_PROMPT_FLAG 0x8000
32 #define RAMDISK_LOAD_FLAG 0x4000
44 #define LOADED_HIGH (1<<0)
45 #define QUIET_FLAG (1<<5)
46 #define KEEP_SEGMENTS (1<<6)
47 #define CAN_USE_HEAP (1<<7)
48 __u16 setup_move_size
;
52 __u32 bootsect_kludge
;
57 __u32 initrd_addr_max
;
58 __u32 kernel_alignment
;
59 __u8 relocatable_kernel
;
62 __u32 hardware_subarch
;
63 __u64 hardware_subarch_data
;
69 } __attribute__((packed
));
71 struct sys_desc_table
{
76 /* Gleaned from OFW's set-parameters in cpu/x86/pc/linux.fth */
77 struct olpc_ofw_header
{
78 __u32 ofw_magic
; /* OFW signature */
80 __u32 cif_handler
; /* callback into OFW */
82 } __attribute__((packed
));
85 __u32 efi_loader_signature
;
87 __u32 efi_memdesc_size
;
88 __u32 efi_memdesc_version
;
90 __u32 efi_memmap_size
;
95 /* The so-called "zeropage" */
97 struct screen_info screen_info
; /* 0x000 */
98 struct apm_bios_info apm_bios_info
; /* 0x040 */
99 __u8 _pad2
[4]; /* 0x054 */
100 __u64 tboot_addr
; /* 0x058 */
101 struct ist_info ist_info
; /* 0x060 */
102 __u8 _pad3
[16]; /* 0x070 */
103 __u8 hd0_info
[16]; /* obsolete! */ /* 0x080 */
104 __u8 hd1_info
[16]; /* obsolete! */ /* 0x090 */
105 struct sys_desc_table sys_desc_table
; /* 0x0a0 */
106 struct olpc_ofw_header olpc_ofw_header
; /* 0x0b0 */
107 __u8 _pad4
[128]; /* 0x0c0 */
108 struct edid_info edid_info
; /* 0x140 */
109 struct efi_info efi_info
; /* 0x1c0 */
110 __u32 alt_mem_k
; /* 0x1e0 */
111 __u32 scratch
; /* Scratch field! */ /* 0x1e4 */
112 __u8 e820_entries
; /* 0x1e8 */
113 __u8 eddbuf_entries
; /* 0x1e9 */
114 __u8 edd_mbr_sig_buf_entries
; /* 0x1ea */
115 __u8 _pad6
[6]; /* 0x1eb */
116 struct setup_header hdr
; /* setup header */ /* 0x1f1 */
117 __u8 _pad7
[0x290-0x1f1-sizeof(struct setup_header
)];
118 __u32 edd_mbr_sig_buffer
[EDD_MBR_SIG_MAX
]; /* 0x290 */
119 struct e820entry e820_map
[E820MAX
]; /* 0x2d0 */
120 __u8 _pad8
[48]; /* 0xcd0 */
121 struct edd_info eddbuf
[EDDMAXNR
]; /* 0xd00 */
122 __u8 _pad9
[276]; /* 0xeec */
123 } __attribute__((packed
));
136 #endif /* _ASM_X86_BOOTPARAM_H */