setup.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #ifndef _ASM_X86_SETUP_H
  2. #define _ASM_X86_SETUP_H
  3. #include <uapi/asm/setup.h>
  4. #define COMMAND_LINE_SIZE 2048
  5. #include <linux/linkage.h>
  6. #include <asm/page_types.h>
  7. #ifdef __i386__
  8. #include <linux/pfn.h>
  9. /*
  10. * Reserved space for vmalloc and iomap - defined in asm/page.h
  11. */
  12. #define MAXMEM_PFN PFN_DOWN(MAXMEM)
  13. #define MAX_NONPAE_PFN (1 << 20)
  14. #endif /* __i386__ */
  15. #define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
  16. #define OLD_CL_MAGIC 0xA33F
  17. #define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
  18. #define NEW_CL_POINTER 0x228 /* Relative to real mode data */
  19. #ifndef __ASSEMBLY__
  20. #include <asm/bootparam.h>
  21. #include <asm/x86_init.h>
  22. extern u64 relocated_ramdisk;
  23. /* Interrupt control for vSMPowered x86_64 systems */
  24. #ifdef CONFIG_X86_64
  25. void vsmp_init(void);
  26. #else
  27. static inline void vsmp_init(void) { }
  28. #endif
  29. void setup_bios_corruption_check(void);
  30. extern unsigned long saved_video_mode;
  31. extern void reserve_standard_io_resources(void);
  32. extern void i386_reserve_resources(void);
  33. extern void setup_default_timer_irq(void);
  34. #ifdef CONFIG_X86_INTEL_MID
  35. extern void x86_intel_mid_early_setup(void);
  36. #else
  37. static inline void x86_intel_mid_early_setup(void) { }
  38. #endif
  39. #ifdef CONFIG_X86_INTEL_CE
  40. extern void x86_ce4100_early_setup(void);
  41. #else
  42. static inline void x86_ce4100_early_setup(void) { }
  43. #endif
  44. #ifndef _SETUP
  45. #include <asm/espfix.h>
  46. #include <linux/kernel.h>
  47. /*
  48. * This is set up by the setup-routine at boot-time
  49. */
  50. extern struct boot_params boot_params;
  51. extern char _text[];
  52. static inline bool kaslr_enabled(void)
  53. {
  54. return !!(boot_params.hdr.loadflags & KASLR_FLAG);
  55. }
  56. static inline unsigned long kaslr_offset(void)
  57. {
  58. return (unsigned long)&_text - __START_KERNEL;
  59. }
  60. /*
  61. * Do NOT EVER look at the BIOS memory size location.
  62. * It does not work on many machines.
  63. */
  64. #define LOWMEMSIZE() (0x9f000)
  65. /* exceedingly early brk-like allocator */
  66. extern unsigned long _brk_end;
  67. void *extend_brk(size_t size, size_t align);
  68. /*
  69. * Reserve space in the brk section. The name must be unique within
  70. * the file, and somewhat descriptive. The size is in bytes. Must be
  71. * used at file scope.
  72. *
  73. * (This uses a temp function to wrap the asm so we can pass it the
  74. * size parameter; otherwise we wouldn't be able to. We can't use a
  75. * "section" attribute on a normal variable because it always ends up
  76. * being @progbits, which ends up allocating space in the vmlinux
  77. * executable.)
  78. */
  79. #define RESERVE_BRK(name,sz) \
  80. static void __section(.discard.text) __used notrace \
  81. __brk_reservation_fn_##name##__(void) { \
  82. asm volatile ( \
  83. ".pushsection .brk_reservation,\"aw\",@nobits;" \
  84. ".brk." #name ":" \
  85. " 1:.skip %c0;" \
  86. " .size .brk." #name ", . - 1b;" \
  87. " .popsection" \
  88. : : "i" (sz)); \
  89. }
  90. /* Helper for reserving space for arrays of things */
  91. #define RESERVE_BRK_ARRAY(type, name, entries) \
  92. type *name; \
  93. RESERVE_BRK(name, sizeof(type) * entries)
  94. extern void probe_roms(void);
  95. #ifdef __i386__
  96. asmlinkage void __init i386_start_kernel(void);
  97. #else
  98. asmlinkage void __init x86_64_start_kernel(char *real_mode);
  99. asmlinkage void __init x86_64_start_reservations(char *real_mode_data);
  100. #endif /* __i386__ */
  101. #endif /* _SETUP */
  102. #else
  103. #define RESERVE_BRK(name,sz) \
  104. .pushsection .brk_reservation,"aw",@nobits; \
  105. .brk.name: \
  106. 1: .skip sz; \
  107. .size .brk.name,.-1b; \
  108. .popsection
  109. #endif /* __ASSEMBLY__ */
  110. #endif /* _ASM_X86_SETUP_H */