fixmap_64.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_FIXMAP_H
  11. #define _ASM_FIXMAP_H
  12. #include <linux/kernel.h>
  13. #include <asm/apicdef.h>
  14. #include <asm/page.h>
  15. #include <asm/vsyscall.h>
  16. #include <asm/efi.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 + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
  34. VSYSCALL_HPET,
  35. FIX_DBGP_BASE,
  36. FIX_EARLYCON_MEM_BASE,
  37. FIX_HPET_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. FIX_EFI_IO_MAP_LAST_PAGE,
  42. FIX_EFI_IO_MAP_FIRST_PAGE = FIX_EFI_IO_MAP_LAST_PAGE+MAX_EFI_IO_PAGES-1,
  43. #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
  44. FIX_OHCI1394_BASE,
  45. #endif
  46. __end_of_fixed_addresses
  47. };
  48. extern void __set_fixmap (enum fixed_addresses idx,
  49. unsigned long phys, pgprot_t flags);
  50. #define set_fixmap(idx, phys) \
  51. __set_fixmap(idx, phys, PAGE_KERNEL)
  52. /*
  53. * Some hardware wants to get fixmapped without caching.
  54. */
  55. #define set_fixmap_nocache(idx, phys) \
  56. __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
  57. #define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
  58. #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  59. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  60. /* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
  61. #define FIXADDR_USER_START ((unsigned long)VSYSCALL32_VSYSCALL)
  62. #define FIXADDR_USER_END (FIXADDR_USER_START + PAGE_SIZE)
  63. #define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))
  64. extern void __this_fixmap_does_not_exist(void);
  65. /*
  66. * 'index to address' translation. If anyone tries to use the idx
  67. * directly without translation, we catch the bug with a NULL-deference
  68. * kernel oops. Illegal ranges of incoming indices are caught too.
  69. */
  70. static __always_inline unsigned long fix_to_virt(const unsigned int idx)
  71. {
  72. /*
  73. * this branch gets completely eliminated after inlining,
  74. * except when someone tries to use fixaddr indices in an
  75. * illegal way. (such as mixing up address types or using
  76. * out-of-range indices).
  77. *
  78. * If it doesn't get removed, the linker will complain
  79. * loudly with a reasonably clear error message..
  80. */
  81. if (idx >= __end_of_fixed_addresses)
  82. __this_fixmap_does_not_exist();
  83. return __fix_to_virt(idx);
  84. }
  85. #endif