fixmap_64.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #ifndef _ASM_X86_FIXMAP_64_H
  11. #define _ASM_X86_FIXMAP_64_H
  12. #include <linux/kernel.h>
  13. #include <asm/acpi.h>
  14. #include <asm/apicdef.h>
  15. #include <asm/page.h>
  16. #include <asm/vsyscall.h>
  17. /*
  18. * Here we define all the compile-time 'special' virtual
  19. * addresses. The point is to have a constant address at
  20. * compile time, but to set the physical address only
  21. * in the boot process.
  22. *
  23. * These 'compile-time allocated' memory buffers are
  24. * fixed-size 4k pages (or larger if used with an increment
  25. * higher than 1). Use set_fixmap(idx,phys) to associate
  26. * physical memory with fixmap indices.
  27. *
  28. * TLB entries of such buffers will not be flushed across
  29. * task switches.
  30. */
  31. enum fixed_addresses {
  32. VSYSCALL_LAST_PAGE,
  33. VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE
  34. + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
  35. VSYSCALL_HPET,
  36. FIX_DBGP_BASE,
  37. FIX_EARLYCON_MEM_BASE,
  38. FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
  39. FIX_IO_APIC_BASE_0,
  40. FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
  41. #ifdef CONFIG_PARAVIRT
  42. FIX_PARAVIRT_BOOTMAP,
  43. #endif
  44. __end_of_permanent_fixed_addresses,
  45. #ifdef CONFIG_ACPI
  46. FIX_ACPI_BEGIN,
  47. FIX_ACPI_END = FIX_ACPI_BEGIN + FIX_ACPI_PAGES - 1,
  48. #endif
  49. #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
  50. FIX_OHCI1394_BASE,
  51. #endif
  52. /*
  53. * 256 temporary boot-time mappings, used by early_ioremap(),
  54. * before ioremap() is functional.
  55. *
  56. * We round it up to the next 256 pages boundary so that we
  57. * can have a single pgd entry and a single pte table:
  58. */
  59. #define NR_FIX_BTMAPS 64
  60. #define FIX_BTMAPS_SLOTS 4
  61. FIX_BTMAP_END = __end_of_permanent_fixed_addresses + 256 -
  62. (__end_of_permanent_fixed_addresses & 255),
  63. FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_SLOTS - 1,
  64. __end_of_fixed_addresses
  65. };
  66. #define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
  67. #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  68. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  69. /* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
  70. #define FIXADDR_USER_START ((unsigned long)VSYSCALL32_VSYSCALL)
  71. #define FIXADDR_USER_END (FIXADDR_USER_START + PAGE_SIZE)
  72. #endif /* _ASM_X86_FIXMAP_64_H */