fixmap.h 3.0 KB

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