]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/asm-x86/bootparam.h
powerpc/pseries: Update the device tree correctly for drconf memory add/remove
[linux-2.6-omap-h63xx.git] / include / asm-x86 / bootparam.h
index 19f3ddf2df4be745426a0990770d30b591b3276e..f62f4733606bfa9388ad98dce4a0c72fec7e9b2f 100644 (file)
@@ -9,6 +9,17 @@
 #include <asm/ist.h>
 #include <video/edid.h>
 
+/* setup data types */
+#define SETUP_NONE                     0
+
+/* extensible setup data list node */
+struct setup_data {
+       __u64 next;
+       __u32 type;
+       __u32 len;
+       __u8 data[0];
+};
+
 struct setup_header {
        __u8    setup_sects;
        __u16   root_flags;
@@ -46,6 +57,9 @@ struct setup_header {
        __u32   cmdline_size;
        __u32   hardware_subarch;
        __u64   hardware_subarch_data;
+       __u32   payload_offset;
+       __u32   payload_length;
+       __u64   setup_data;
 } __attribute__((packed));
 
 struct sys_desc_table {
@@ -54,13 +68,14 @@ struct sys_desc_table {
 };
 
 struct efi_info {
-       __u32 _pad1;
+       __u32 efi_loader_signature;
        __u32 efi_systab;
        __u32 efi_memdesc_size;
        __u32 efi_memdesc_version;
        __u32 efi_memmap;
        __u32 efi_memmap_size;
-       __u32 _pad2[2];
+       __u32 efi_systab_hi;
+       __u32 efi_memmap_hi;
 };
 
 /* The so-called "zeropage" */