fixmap.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * fixmap.h: compile-time virtual memory allocation
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (C) 1998 Ingo Molnar
  9. *
  10. * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
  11. * x86_32 and x86_64 integration by Gustavo F. Padovan, February 2009
  12. */
  13. #ifndef _ASM_X86_FIXMAP_H
  14. #define _ASM_X86_FIXMAP_H
  15. #ifndef __ASSEMBLY__
  16. #include <linux/kernel.h>
  17. #include <asm/acpi.h>
  18. #include <asm/apicdef.h>
  19. #include <asm/page.h>
  20. #include <asm/pvclock.h>
  21. #ifdef CONFIG_X86_32
  22. #include <linux/threads.h>
  23. #include <asm/kmap_types.h>
  24. #else
  25. #include <uapi/asm/vsyscall.h>
  26. #endif
  27. /*
  28. * We can't declare FIXADDR_TOP as variable for x86_64 because vsyscall
  29. * uses fixmaps that relies on FIXADDR_TOP for proper address calculation.
  30. * Because of this, FIXADDR_TOP x86 integration was left as later work.
  31. */
  32. #ifdef CONFIG_X86_32
  33. /* used by vmalloc.c, vsyscall.lds.S.
  34. *
  35. * Leave one empty page between vmalloc'ed areas and
  36. * the start of the fixmap.
  37. */
  38. extern unsigned long __FIXADDR_TOP;
  39. #define FIXADDR_TOP ((unsigned long)__FIXADDR_TOP)
  40. #else
  41. #define FIXADDR_TOP (round_up(VSYSCALL_ADDR + PAGE_SIZE, 1<<PMD_SHIFT) - \
  42. PAGE_SIZE)
  43. #endif
  44. /*
  45. * Here we define all the compile-time 'special' virtual
  46. * addresses. The point is to have a constant address at
  47. * compile time, but to set the physical address only
  48. * in the boot process.
  49. * for x86_32: We allocate these special addresses
  50. * from the end of virtual memory (0xfffff000) backwards.
  51. * Also this lets us do fail-safe vmalloc(), we
  52. * can guarantee that these special addresses and
  53. * vmalloc()-ed addresses never overlap.
  54. *
  55. * These 'compile-time allocated' memory buffers are
  56. * fixed-size 4k pages (or larger if used with an increment
  57. * higher than 1). Use set_fixmap(idx,phys) to associate
  58. * physical memory with fixmap indices.
  59. *
  60. * TLB entries of such buffers will not be flushed across
  61. * task switches.
  62. */
  63. enum fixed_addresses {
  64. #ifdef CONFIG_X86_32
  65. FIX_HOLE,
  66. #else
  67. #ifdef CONFIG_X86_VSYSCALL_EMULATION
  68. VSYSCALL_PAGE = (FIXADDR_TOP - VSYSCALL_ADDR) >> PAGE_SHIFT,
  69. #endif
  70. #ifdef CONFIG_PARAVIRT_CLOCK
  71. PVCLOCK_FIXMAP_BEGIN,
  72. PVCLOCK_FIXMAP_END = PVCLOCK_FIXMAP_BEGIN+PVCLOCK_VSYSCALL_NR_PAGES-1,
  73. #endif
  74. #endif
  75. FIX_DBGP_BASE,
  76. FIX_EARLYCON_MEM_BASE,
  77. #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
  78. FIX_OHCI1394_BASE,
  79. #endif
  80. #ifdef CONFIG_X86_LOCAL_APIC
  81. FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
  82. #endif
  83. #ifdef CONFIG_X86_IO_APIC
  84. FIX_IO_APIC_BASE_0,
  85. FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
  86. #endif
  87. FIX_RO_IDT, /* Virtual mapping for read-only IDT */
  88. #ifdef CONFIG_X86_32
  89. FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */
  90. FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
  91. #ifdef CONFIG_PCI_MMCONFIG
  92. FIX_PCIE_MCFG,
  93. #endif
  94. #endif
  95. #ifdef CONFIG_PARAVIRT
  96. FIX_PARAVIRT_BOOTMAP,
  97. #endif
  98. FIX_TEXT_POKE1, /* reserve 2 pages for text_poke() */
  99. FIX_TEXT_POKE0, /* first page is last, because allocation is backward */
  100. #ifdef CONFIG_X86_INTEL_MID
  101. FIX_LNW_VRTC,
  102. #endif
  103. __end_of_permanent_fixed_addresses,
  104. /*
  105. * 512 temporary boot-time mappings, used by early_ioremap(),
  106. * before ioremap() is functional.
  107. *
  108. * If necessary we round it up to the next 512 pages boundary so
  109. * that we can have a single pgd entry and a single pte table:
  110. */
  111. #define NR_FIX_BTMAPS 64
  112. #define FIX_BTMAPS_SLOTS 8
  113. #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
  114. FIX_BTMAP_END =
  115. (__end_of_permanent_fixed_addresses ^
  116. (__end_of_permanent_fixed_addresses + TOTAL_FIX_BTMAPS - 1)) &
  117. -PTRS_PER_PTE
  118. ? __end_of_permanent_fixed_addresses + TOTAL_FIX_BTMAPS -
  119. (__end_of_permanent_fixed_addresses & (TOTAL_FIX_BTMAPS - 1))
  120. : __end_of_permanent_fixed_addresses,
  121. FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
  122. #ifdef CONFIG_X86_32
  123. FIX_WP_TEST,
  124. #endif
  125. #ifdef CONFIG_INTEL_TXT
  126. FIX_TBOOT_BASE,
  127. #endif
  128. __end_of_fixed_addresses
  129. };
  130. extern void reserve_top_address(unsigned long reserve);
  131. #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
  132. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  133. extern int fixmaps_set;
  134. extern pte_t *kmap_pte;
  135. extern pgprot_t kmap_prot;
  136. extern pte_t *pkmap_page_table;
  137. void __native_set_fixmap(enum fixed_addresses idx, pte_t pte);
  138. void native_set_fixmap(enum fixed_addresses idx,
  139. phys_addr_t phys, pgprot_t flags);
  140. #ifndef CONFIG_PARAVIRT
  141. static inline void __set_fixmap(enum fixed_addresses idx,
  142. phys_addr_t phys, pgprot_t flags)
  143. {
  144. native_set_fixmap(idx, phys, flags);
  145. }
  146. #endif
  147. #include <asm-generic/fixmap.h>
  148. #define __late_set_fixmap(idx, phys, flags) __set_fixmap(idx, phys, flags)
  149. #define __late_clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  150. void __early_set_fixmap(enum fixed_addresses idx,
  151. phys_addr_t phys, pgprot_t flags);
  152. #endif /* !__ASSEMBLY__ */
  153. #endif /* _ASM_X86_FIXMAP_H */