setup.h 861 B

12345678910111213141516171819202122232425
  1. #ifndef __IA64_SETUP_H
  2. #define __IA64_SETUP_H
  3. #define COMMAND_LINE_SIZE 2048
  4. extern struct ia64_boot_param {
  5. __u64 command_line; /* physical address of command line arguments */
  6. __u64 efi_systab; /* physical address of EFI system table */
  7. __u64 efi_memmap; /* physical address of EFI memory map */
  8. __u64 efi_memmap_size; /* size of EFI memory map */
  9. __u64 efi_memdesc_size; /* size of an EFI memory map descriptor */
  10. __u32 efi_memdesc_version; /* memory descriptor version */
  11. struct {
  12. __u16 num_cols; /* number of columns on console output device */
  13. __u16 num_rows; /* number of rows on console output device */
  14. __u16 orig_x; /* cursor's x position */
  15. __u16 orig_y; /* cursor's y position */
  16. } console_info;
  17. __u64 fpswa; /* physical address of the fpswa interface */
  18. __u64 initrd_start;
  19. __u64 initrd_size;
  20. } *ia64_boot_param;
  21. #endif