mmu_context.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Based on arch/arm/include/asm/mmu_context.h
  3. *
  4. * Copyright (C) 1996 Russell King.
  5. * Copyright (C) 2012 ARM Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __ASM_MMU_CONTEXT_H
  20. #define __ASM_MMU_CONTEXT_H
  21. #include <linux/compiler.h>
  22. #include <linux/sched.h>
  23. #include <asm/cacheflush.h>
  24. #include <asm/proc-fns.h>
  25. #include <asm-generic/mm_hooks.h>
  26. #include <asm/cputype.h>
  27. #include <asm/pgtable.h>
  28. #ifdef CONFIG_PID_IN_CONTEXTIDR
  29. static inline void contextidr_thread_switch(struct task_struct *next)
  30. {
  31. asm(
  32. " msr contextidr_el1, %0\n"
  33. " isb"
  34. :
  35. : "r" (task_pid_nr(next)));
  36. }
  37. #else
  38. static inline void contextidr_thread_switch(struct task_struct *next)
  39. {
  40. }
  41. #endif
  42. /*
  43. * Set TTBR0 to empty_zero_page. No translations will be possible via TTBR0.
  44. */
  45. static inline void cpu_set_reserved_ttbr0(void)
  46. {
  47. unsigned long ttbr = page_to_phys(empty_zero_page);
  48. asm(
  49. " msr ttbr0_el1, %0 // set TTBR0\n"
  50. " isb"
  51. :
  52. : "r" (ttbr));
  53. }
  54. /*
  55. * TCR.T0SZ value to use when the ID map is active. Usually equals
  56. * TCR_T0SZ(VA_BITS), unless system RAM is positioned very high in
  57. * physical memory, in which case it will be smaller.
  58. */
  59. extern u64 idmap_t0sz;
  60. static inline bool __cpu_uses_extended_idmap(void)
  61. {
  62. return (!IS_ENABLED(CONFIG_ARM64_VA_BITS_48) &&
  63. unlikely(idmap_t0sz != TCR_T0SZ(VA_BITS)));
  64. }
  65. /*
  66. * Set TCR.T0SZ to its default value (based on VA_BITS)
  67. */
  68. static inline void cpu_set_default_tcr_t0sz(void)
  69. {
  70. unsigned long tcr;
  71. if (!__cpu_uses_extended_idmap())
  72. return;
  73. asm volatile (
  74. " mrs %0, tcr_el1 ;"
  75. " bfi %0, %1, %2, %3 ;"
  76. " msr tcr_el1, %0 ;"
  77. " isb"
  78. : "=&r" (tcr)
  79. : "r"(TCR_T0SZ(VA_BITS)), "I"(TCR_T0SZ_OFFSET), "I"(TCR_TxSZ_WIDTH));
  80. }
  81. /*
  82. * It would be nice to return ASIDs back to the allocator, but unfortunately
  83. * that introduces a race with a generation rollover where we could erroneously
  84. * free an ASID allocated in a future generation. We could workaround this by
  85. * freeing the ASID from the context of the dying mm (e.g. in arch_exit_mmap),
  86. * but we'd then need to make sure that we didn't dirty any TLBs afterwards.
  87. * Setting a reserved TTBR0 or EPD0 would work, but it all gets ugly when you
  88. * take CPU migration into account.
  89. */
  90. #define destroy_context(mm) do { } while(0)
  91. void check_and_switch_context(struct mm_struct *mm, unsigned int cpu);
  92. #define init_new_context(tsk,mm) ({ atomic64_set(&(mm)->context.id, 0); 0; })
  93. /*
  94. * This is called when "tsk" is about to enter lazy TLB mode.
  95. *
  96. * mm: describes the currently active mm context
  97. * tsk: task which is entering lazy tlb
  98. * cpu: cpu number which is entering lazy tlb
  99. *
  100. * tsk->mm will be NULL
  101. */
  102. static inline void
  103. enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
  104. {
  105. }
  106. /*
  107. * This is the actual mm switch as far as the scheduler
  108. * is concerned. No registers are touched. We avoid
  109. * calling the CPU specific function when the mm hasn't
  110. * actually changed.
  111. */
  112. static inline void
  113. switch_mm(struct mm_struct *prev, struct mm_struct *next,
  114. struct task_struct *tsk)
  115. {
  116. unsigned int cpu = smp_processor_id();
  117. if (prev == next)
  118. return;
  119. /*
  120. * init_mm.pgd does not contain any user mappings and it is always
  121. * active for kernel addresses in TTBR1. Just set the reserved TTBR0.
  122. */
  123. if (next == &init_mm) {
  124. cpu_set_reserved_ttbr0();
  125. return;
  126. }
  127. check_and_switch_context(next, cpu);
  128. }
  129. #define deactivate_mm(tsk,mm) do { } while (0)
  130. #define activate_mm(prev,next) switch_mm(prev, next, NULL)
  131. #endif