fixmap.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #ifndef __UM_FIXMAP_H
  2. #define __UM_FIXMAP_H
  3. #include <linux/config.h>
  4. #include <asm/kmap_types.h>
  5. #include <asm/archparam.h>
  6. #include <asm/elf.h>
  7. /*
  8. * Here we define all the compile-time 'special' virtual
  9. * addresses. The point is to have a constant address at
  10. * compile time, but to set the physical address only
  11. * in the boot process. We allocate these special addresses
  12. * from the end of virtual memory (0xfffff000) backwards.
  13. * Also this lets us do fail-safe vmalloc(), we
  14. * can guarantee that these special addresses and
  15. * vmalloc()-ed addresses never overlap.
  16. *
  17. * these 'compile-time allocated' memory buffers are
  18. * fixed-size 4k pages. (or larger if used with an increment
  19. * highger than 1) use fixmap_set(idx,phys) to associate
  20. * physical memory with fixmap indices.
  21. *
  22. * TLB entries of such buffers will not be flushed across
  23. * task switches.
  24. */
  25. /*
  26. * on UP currently we will have no trace of the fixmap mechanizm,
  27. * no page table allocations, etc. This might change in the
  28. * future, say framebuffers for the console driver(s) could be
  29. * fix-mapped?
  30. */
  31. enum fixed_addresses {
  32. #ifdef CONFIG_HIGHMEM
  33. FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */
  34. FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
  35. #endif
  36. __end_of_fixed_addresses
  37. };
  38. extern void __set_fixmap (enum fixed_addresses idx,
  39. unsigned long phys, pgprot_t flags);
  40. #define set_fixmap(idx, phys) \
  41. __set_fixmap(idx, phys, PAGE_KERNEL)
  42. /*
  43. * Some hardware wants to get fixmapped without caching.
  44. */
  45. #define set_fixmap_nocache(idx, phys) \
  46. __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
  47. /*
  48. * used by vmalloc.c.
  49. *
  50. * Leave one empty page between vmalloc'ed areas and
  51. * the start of the fixmap, and leave one page empty
  52. * at the top of mem..
  53. */
  54. extern unsigned long get_kmem_end(void);
  55. #define FIXADDR_TOP (get_kmem_end() - 0x2000)
  56. #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  57. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  58. #define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))
  59. #define __virt_to_fix(x) ((FIXADDR_TOP - ((x)&PAGE_MASK)) >> PAGE_SHIFT)
  60. extern void __this_fixmap_does_not_exist(void);
  61. /*
  62. * 'index to address' translation. If anyone tries to use the idx
  63. * directly without tranlation, we catch the bug with a NULL-deference
  64. * kernel oops. Illegal ranges of incoming indices are caught too.
  65. */
  66. static inline unsigned long fix_to_virt(const unsigned int idx)
  67. {
  68. /*
  69. * this branch gets completely eliminated after inlining,
  70. * except when someone tries to use fixaddr indices in an
  71. * illegal way. (such as mixing up address types or using
  72. * out-of-range indices).
  73. *
  74. * If it doesn't get removed, the linker will complain
  75. * loudly with a reasonably clear error message..
  76. */
  77. if (idx >= __end_of_fixed_addresses)
  78. __this_fixmap_does_not_exist();
  79. return __fix_to_virt(idx);
  80. }
  81. static inline unsigned long virt_to_fix(const unsigned long vaddr)
  82. {
  83. BUG_ON(vaddr >= FIXADDR_TOP || vaddr < FIXADDR_START);
  84. return __virt_to_fix(vaddr);
  85. }
  86. #endif