fixmap_32.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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_32_H
  14. #define _ASM_X86_FIXMAP_32_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. #ifdef CONFIG_X86_32
  21. #include <linux/threads.h>
  22. #include <asm/kmap_types.h>
  23. #else
  24. #include <asm/vsyscall.h>
  25. #ifdef CONFIG_EFI
  26. #include <asm/efi.h>
  27. #endif
  28. #endif
  29. /*
  30. * We can't declare FIXADDR_TOP as variable for x86_64 because vsyscall
  31. * uses fixmaps that relies on FIXADDR_TOP for proper address calculation.
  32. * Because of this, FIXADDR_TOP x86 integration was left as later work.
  33. */
  34. #ifdef CONFIG_X86_32
  35. /* used by vmalloc.c, vsyscall.lds.S.
  36. *
  37. * Leave one empty page between vmalloc'ed areas and
  38. * the start of the fixmap.
  39. */
  40. extern unsigned long __FIXADDR_TOP;
  41. #define FIXADDR_TOP ((unsigned long)__FIXADDR_TOP)
  42. #define FIXADDR_USER_START __fix_to_virt(FIX_VDSO)
  43. #define FIXADDR_USER_END __fix_to_virt(FIX_VDSO - 1)
  44. #else
  45. #define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
  46. /* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
  47. #define FIXADDR_USER_START ((unsigned long)VSYSCALL32_VSYSCALL)
  48. #define FIXADDR_USER_END (FIXADDR_USER_START + PAGE_SIZE)
  49. #endif
  50. /*
  51. * Here we define all the compile-time 'special' virtual
  52. * addresses. The point is to have a constant address at
  53. * compile time, but to set the physical address only
  54. * in the boot process.
  55. * for x86_32: We allocate these special addresses
  56. * from the end of virtual memory (0xfffff000) backwards.
  57. * Also this lets us do fail-safe vmalloc(), we
  58. * can guarantee that these special addresses and
  59. * vmalloc()-ed addresses never overlap.
  60. *
  61. * These 'compile-time allocated' memory buffers are
  62. * fixed-size 4k pages (or larger if used with an increment
  63. * higher than 1). Use set_fixmap(idx,phys) to associate
  64. * physical memory with fixmap indices.
  65. *
  66. * TLB entries of such buffers will not be flushed across
  67. * task switches.
  68. */
  69. enum fixed_addresses {
  70. #ifdef CONFIG_X86_32
  71. FIX_HOLE,
  72. FIX_VDSO,
  73. #else
  74. VSYSCALL_LAST_PAGE,
  75. VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE
  76. + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
  77. VSYSCALL_HPET,
  78. #endif
  79. FIX_DBGP_BASE,
  80. FIX_EARLYCON_MEM_BASE,
  81. #ifdef CONFIG_X86_LOCAL_APIC
  82. FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
  83. #endif
  84. #ifdef CONFIG_X86_IO_APIC
  85. FIX_IO_APIC_BASE_0,
  86. FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
  87. #endif
  88. #ifdef CONFIG_X86_64
  89. #ifdef CONFIG_EFI
  90. FIX_EFI_IO_MAP_LAST_PAGE,
  91. FIX_EFI_IO_MAP_FIRST_PAGE = FIX_EFI_IO_MAP_LAST_PAGE
  92. + MAX_EFI_IO_PAGES - 1,
  93. #endif
  94. #endif
  95. #ifdef CONFIG_X86_VISWS_APIC
  96. FIX_CO_CPU, /* Cobalt timer */
  97. FIX_CO_APIC, /* Cobalt APIC Redirection Table */
  98. FIX_LI_PCIA, /* Lithium PCI Bridge A */
  99. FIX_LI_PCIB, /* Lithium PCI Bridge B */
  100. #endif
  101. #ifdef CONFIG_X86_F00F_BUG
  102. FIX_F00F_IDT, /* Virtual mapping for IDT */
  103. #endif
  104. #ifdef CONFIG_X86_CYCLONE_TIMER
  105. FIX_CYCLONE_TIMER, /*cyclone timer register*/
  106. #endif
  107. #ifdef CONFIG_X86_32
  108. FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */
  109. FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
  110. #ifdef CONFIG_PCI_MMCONFIG
  111. FIX_PCIE_MCFG,
  112. #endif
  113. #endif
  114. #ifdef CONFIG_PARAVIRT
  115. FIX_PARAVIRT_BOOTMAP,
  116. #endif
  117. __end_of_permanent_fixed_addresses,
  118. #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
  119. FIX_OHCI1394_BASE,
  120. #endif
  121. /*
  122. * 256 temporary boot-time mappings, used by early_ioremap(),
  123. * before ioremap() is functional.
  124. *
  125. * We round it up to the next 256 pages boundary so that we
  126. * can have a single pgd entry and a single pte table:
  127. */
  128. #define NR_FIX_BTMAPS 64
  129. #define FIX_BTMAPS_SLOTS 4
  130. FIX_BTMAP_END = __end_of_permanent_fixed_addresses + 256 -
  131. (__end_of_permanent_fixed_addresses & 255),
  132. FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_SLOTS - 1,
  133. #ifdef CONFIG_X86_32
  134. FIX_WP_TEST,
  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_BOOT_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  141. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  142. #define FIXADDR_BOOT_START (FIXADDR_TOP - FIXADDR_BOOT_SIZE)
  143. #endif /* !__ASSEMBLY__ */
  144. #endif /* _ASM_X86_FIXMAP_32_H */