fixmap_64.h 2.5 KB

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