fixmap.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. /*
  17. * Here we define all the compile-time 'special' virtual
  18. * addresses. The point is to have a constant address at
  19. * compile time, but to set the physical address only
  20. * in the boot process.
  21. *
  22. * these 'compile-time allocated' memory buffers are
  23. * fixed-size 4k pages. (or larger if used with an increment
  24. * highger than 1) use fixmap_set(idx,phys) to associate
  25. * physical memory with fixmap indices.
  26. *
  27. * TLB entries of such buffers will not be flushed across
  28. * task switches.
  29. */
  30. enum fixed_addresses {
  31. VSYSCALL_LAST_PAGE,
  32. VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
  33. VSYSCALL_HPET,
  34. FIX_HPET_BASE,
  35. FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
  36. FIX_IO_APIC_BASE_0,
  37. FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS-1,
  38. __end_of_fixed_addresses
  39. };
  40. extern void __set_fixmap (enum fixed_addresses idx,
  41. unsigned long phys, pgprot_t flags);
  42. #define set_fixmap(idx, phys) \
  43. __set_fixmap(idx, phys, PAGE_KERNEL)
  44. /*
  45. * Some hardware wants to get fixmapped without caching.
  46. */
  47. #define set_fixmap_nocache(idx, phys) \
  48. __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
  49. #define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
  50. #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  51. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  52. /* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
  53. #define FIXADDR_USER_START ((unsigned long)VSYSCALL32_VSYSCALL)
  54. #define FIXADDR_USER_END (FIXADDR_USER_START + PAGE_SIZE)
  55. #define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))
  56. extern void __this_fixmap_does_not_exist(void);
  57. /*
  58. * 'index to address' translation. If anyone tries to use the idx
  59. * directly without translation, we catch the bug with a NULL-deference
  60. * kernel oops. Illegal ranges of incoming indices are caught too.
  61. */
  62. static __always_inline unsigned long fix_to_virt(const unsigned int idx)
  63. {
  64. /*
  65. * this branch gets completely eliminated after inlining,
  66. * except when someone tries to use fixaddr indices in an
  67. * illegal way. (such as mixing up address types or using
  68. * out-of-range indices).
  69. *
  70. * If it doesn't get removed, the linker will complain
  71. * loudly with a reasonably clear error message..
  72. */
  73. if (idx >= __end_of_fixed_addresses)
  74. __this_fixmap_does_not_exist();
  75. return __fix_to_virt(idx);
  76. }
  77. #endif