bootparam.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #ifndef _ASM_BOOTPARAM_H
  2. #define _ASM_BOOTPARAM_H
  3. #include <linux/types.h>
  4. #include <linux/screen_info.h>
  5. #include <linux/apm_bios.h>
  6. #include <linux/edd.h>
  7. #include <asm/e820.h>
  8. #include <asm/ist.h>
  9. #include <video/edid.h>
  10. struct setup_header {
  11. __u8 setup_sects;
  12. __u16 root_flags;
  13. __u32 syssize;
  14. __u16 ram_size;
  15. #define RAMDISK_IMAGE_START_MASK 0x07FF
  16. #define RAMDISK_PROMPT_FLAG 0x8000
  17. #define RAMDISK_LOAD_FLAG 0x4000
  18. __u16 vid_mode;
  19. __u16 root_dev;
  20. __u16 boot_flag;
  21. __u16 jump;
  22. __u32 header;
  23. __u16 version;
  24. __u32 realmode_swtch;
  25. __u16 start_sys;
  26. __u16 kernel_version;
  27. __u8 type_of_loader;
  28. __u8 loadflags;
  29. #define LOADED_HIGH (1<<0)
  30. #define KEEP_SEGMENTS (1<<6)
  31. #define CAN_USE_HEAP (1<<7)
  32. __u16 setup_move_size;
  33. __u32 code32_start;
  34. __u32 ramdisk_image;
  35. __u32 ramdisk_size;
  36. __u32 bootsect_kludge;
  37. __u16 heap_end_ptr;
  38. __u16 _pad1;
  39. __u32 cmd_line_ptr;
  40. __u32 initrd_addr_max;
  41. __u32 kernel_alignment;
  42. __u8 relocatable_kernel;
  43. __u8 _pad2[3];
  44. __u32 cmdline_size;
  45. __u32 hardware_subarch;
  46. __u64 hardware_subarch_data;
  47. } __attribute__((packed));
  48. struct sys_desc_table {
  49. __u16 length;
  50. __u8 table[14];
  51. };
  52. struct efi_info {
  53. __u32 efi_loader_signature;
  54. __u32 efi_systab;
  55. __u32 efi_memdesc_size;
  56. __u32 efi_memdesc_version;
  57. __u32 efi_memmap;
  58. __u32 efi_memmap_size;
  59. __u32 efi_systab_hi;
  60. __u32 efi_memmap_hi;
  61. };
  62. /* The so-called "zeropage" */
  63. struct boot_params {
  64. struct screen_info screen_info; /* 0x000 */
  65. struct apm_bios_info apm_bios_info; /* 0x040 */
  66. __u8 _pad2[12]; /* 0x054 */
  67. struct ist_info ist_info; /* 0x060 */
  68. __u8 _pad3[16]; /* 0x070 */
  69. __u8 hd0_info[16]; /* obsolete! */ /* 0x080 */
  70. __u8 hd1_info[16]; /* obsolete! */ /* 0x090 */
  71. struct sys_desc_table sys_desc_table; /* 0x0a0 */
  72. __u8 _pad4[144]; /* 0x0b0 */
  73. struct edid_info edid_info; /* 0x140 */
  74. struct efi_info efi_info; /* 0x1c0 */
  75. __u32 alt_mem_k; /* 0x1e0 */
  76. __u32 scratch; /* Scratch field! */ /* 0x1e4 */
  77. __u8 e820_entries; /* 0x1e8 */
  78. __u8 eddbuf_entries; /* 0x1e9 */
  79. __u8 edd_mbr_sig_buf_entries; /* 0x1ea */
  80. __u8 _pad6[6]; /* 0x1eb */
  81. struct setup_header hdr; /* setup header */ /* 0x1f1 */
  82. __u8 _pad7[0x290-0x1f1-sizeof(struct setup_header)];
  83. __u32 edd_mbr_sig_buffer[EDD_MBR_SIG_MAX]; /* 0x290 */
  84. struct e820entry e820_map[E820MAX]; /* 0x2d0 */
  85. __u8 _pad8[48]; /* 0xcd0 */
  86. struct edd_info eddbuf[EDDMAXNR]; /* 0xd00 */
  87. __u8 _pad9[276]; /* 0xeec */
  88. } __attribute__((packed));
  89. #endif /* _ASM_BOOTPARAM_H */