fixmap.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. /*
  16. * Exposed to assembly code for setting up initial page tables. Cannot be
  17. * calculated in assembly code (fixmap entries are an enum), but is sanity
  18. * checked in the actual fixmap C code to make sure that the fixmap is
  19. * covered fully.
  20. */
  21. #define FIXMAP_PMD_NUM 2
  22. /* fixmap starts downwards from the 507th entry in level2_fixmap_pgt */
  23. #define FIXMAP_PMD_TOP 507
  24. #ifndef __ASSEMBLY__
  25. #include <linux/kernel.h>
  26. #include <asm/acpi.h>
  27. #include <asm/apicdef.h>
  28. #include <asm/page.h>
  29. #ifdef CONFIG_X86_32
  30. #include <linux/threads.h>
  31. #include <asm/kmap_types.h>
  32. #else
  33. #include <uapi/asm/vsyscall.h>
  34. #endif
  35. /*
  36. * We can't declare FIXADDR_TOP as variable for x86_64 because vsyscall
  37. * uses fixmaps that relies on FIXADDR_TOP for proper address calculation.
  38. * Because of this, FIXADDR_TOP x86 integration was left as later work.
  39. */
  40. #ifdef CONFIG_X86_32
  41. /* used by vmalloc.c, vsyscall.lds.S.
  42. *
  43. * Leave one empty page between vmalloc'ed areas and
  44. * the start of the fixmap.
  45. */
  46. extern unsigned long __FIXADDR_TOP;
  47. #define FIXADDR_TOP ((unsigned long)__FIXADDR_TOP)
  48. #else
  49. #define FIXADDR_TOP (round_up(VSYSCALL_ADDR + PAGE_SIZE, 1<<PMD_SHIFT) - \
  50. PAGE_SIZE)
  51. #endif
  52. /*
  53. * Here we define all the compile-time 'special' virtual
  54. * addresses. The point is to have a constant address at
  55. * compile time, but to set the physical address only
  56. * in the boot process.
  57. * for x86_32: We allocate these special addresses
  58. * from the end of virtual memory (0xfffff000) backwards.
  59. * Also this lets us do fail-safe vmalloc(), we
  60. * can guarantee that these special addresses and
  61. * vmalloc()-ed addresses never overlap.
  62. *
  63. * These 'compile-time allocated' memory buffers are
  64. * fixed-size 4k pages (or larger if used with an increment
  65. * higher than 1). Use set_fixmap(idx,phys) to associate
  66. * physical memory with fixmap indices.
  67. *
  68. * TLB entries of such buffers will not be flushed across
  69. * task switches.
  70. */
  71. enum fixed_addresses {
  72. #ifdef CONFIG_X86_32
  73. FIX_HOLE,
  74. #else
  75. #ifdef CONFIG_X86_VSYSCALL_EMULATION
  76. VSYSCALL_PAGE = (FIXADDR_TOP - VSYSCALL_ADDR) >> PAGE_SHIFT,
  77. #endif
  78. #endif
  79. FIX_DBGP_BASE,
  80. FIX_EARLYCON_MEM_BASE,
  81. #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
  82. FIX_OHCI1394_BASE,
  83. #endif
  84. #ifdef CONFIG_X86_LOCAL_APIC
  85. FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
  86. #endif
  87. #ifdef CONFIG_X86_IO_APIC
  88. FIX_IO_APIC_BASE_0,
  89. FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
  90. #endif
  91. #ifdef CONFIG_X86_32
  92. FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */
  93. FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
  94. #ifdef CONFIG_PCI_MMCONFIG
  95. FIX_PCIE_MCFG,
  96. #endif
  97. #endif
  98. #ifdef CONFIG_PARAVIRT
  99. FIX_PARAVIRT_BOOTMAP,
  100. #endif
  101. FIX_TEXT_POKE1, /* reserve 2 pages for text_poke() */
  102. FIX_TEXT_POKE0, /* first page is last, because allocation is backward */
  103. #ifdef CONFIG_X86_INTEL_MID
  104. FIX_LNW_VRTC,
  105. #endif
  106. #ifdef CONFIG_ACPI_APEI_GHES
  107. /* Used for GHES mapping from assorted contexts */
  108. FIX_APEI_GHES_IRQ,
  109. FIX_APEI_GHES_NMI,
  110. #endif
  111. __end_of_permanent_fixed_addresses,
  112. /*
  113. * 512 temporary boot-time mappings, used by early_ioremap(),
  114. * before ioremap() is functional.
  115. *
  116. * If necessary we round it up to the next 512 pages boundary so
  117. * that we can have a single pgd entry and a single pte table:
  118. */
  119. #define NR_FIX_BTMAPS 64
  120. #define FIX_BTMAPS_SLOTS 8
  121. #define TOTAL_FIX_BTMAPS (NR_FIX_BTMAPS * FIX_BTMAPS_SLOTS)
  122. FIX_BTMAP_END =
  123. (__end_of_permanent_fixed_addresses ^
  124. (__end_of_permanent_fixed_addresses + TOTAL_FIX_BTMAPS - 1)) &
  125. -PTRS_PER_PTE
  126. ? __end_of_permanent_fixed_addresses + TOTAL_FIX_BTMAPS -
  127. (__end_of_permanent_fixed_addresses & (TOTAL_FIX_BTMAPS - 1))
  128. : __end_of_permanent_fixed_addresses,
  129. FIX_BTMAP_BEGIN = FIX_BTMAP_END + TOTAL_FIX_BTMAPS - 1,
  130. #ifdef CONFIG_X86_32
  131. FIX_WP_TEST,
  132. #endif
  133. #ifdef CONFIG_INTEL_TXT
  134. FIX_TBOOT_BASE,
  135. #endif
  136. __end_of_fixed_addresses
  137. };
  138. extern void reserve_top_address(unsigned long reserve);
  139. #define FIXADDR_SIZE (__end_of_permanent_fixed_addresses << PAGE_SHIFT)
  140. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  141. #define FIXADDR_TOT_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  142. #define FIXADDR_TOT_START (FIXADDR_TOP - FIXADDR_TOT_SIZE)
  143. extern int fixmaps_set;
  144. extern pte_t *kmap_pte;
  145. #define kmap_prot PAGE_KERNEL
  146. extern pte_t *pkmap_page_table;
  147. void __native_set_fixmap(enum fixed_addresses idx, pte_t pte);
  148. void native_set_fixmap(enum fixed_addresses idx,
  149. phys_addr_t phys, pgprot_t flags);
  150. #ifndef CONFIG_PARAVIRT
  151. static inline void __set_fixmap(enum fixed_addresses idx,
  152. phys_addr_t phys, pgprot_t flags)
  153. {
  154. native_set_fixmap(idx, phys, flags);
  155. }
  156. #endif
  157. /*
  158. * FIXMAP_PAGE_NOCACHE is used for MMIO. Memory encryption is not
  159. * supported for MMIO addresses, so make sure that the memory encryption
  160. * mask is not part of the page attributes.
  161. */
  162. #define FIXMAP_PAGE_NOCACHE PAGE_KERNEL_IO_NOCACHE
  163. /*
  164. * Early memremap routines used for in-place encryption. The mappings created
  165. * by these routines are intended to be used as temporary mappings.
  166. */
  167. void __init *early_memremap_encrypted(resource_size_t phys_addr,
  168. unsigned long size);
  169. void __init *early_memremap_encrypted_wp(resource_size_t phys_addr,
  170. unsigned long size);
  171. void __init *early_memremap_decrypted(resource_size_t phys_addr,
  172. unsigned long size);
  173. void __init *early_memremap_decrypted_wp(resource_size_t phys_addr,
  174. unsigned long size);
  175. #include <asm-generic/fixmap.h>
  176. #define __late_set_fixmap(idx, phys, flags) __set_fixmap(idx, phys, flags)
  177. #define __late_clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  178. void __early_set_fixmap(enum fixed_addresses idx,
  179. phys_addr_t phys, pgprot_t flags);
  180. #endif /* !__ASSEMBLY__ */
  181. #endif /* _ASM_X86_FIXMAP_H */