Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Russell King | d84b471 | 2006-08-21 19:23:38 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mm/context.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2002-2003 Deep Blue Solutions Ltd, all rights reserved. |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 5 | * Copyright (C) 2012 ARM Limited |
| 6 | * |
| 7 | * Author: Will Deacon <will.deacon@arm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/sched.h> |
| 15 | #include <linux/mm.h> |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 16 | #include <linux/smp.h> |
| 17 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | #include <asm/mmu_context.h> |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 20 | #include <asm/smp_plat.h> |
Will Deacon | 575320d | 2012-07-06 15:43:03 +0100 | [diff] [blame] | 21 | #include <asm/thread_notify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/tlbflush.h> |
| 23 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 24 | /* |
| 25 | * On ARMv6, we have the following structure in the Context ID: |
| 26 | * |
| 27 | * 31 7 0 |
| 28 | * +-------------------------+-----------+ |
| 29 | * | process ID | ASID | |
| 30 | * +-------------------------+-----------+ |
| 31 | * | context ID | |
| 32 | * +-------------------------------------+ |
| 33 | * |
| 34 | * The ASID is used to tag entries in the CPU caches and TLBs. |
| 35 | * The context ID is used by debuggers and trace logic, and |
| 36 | * should be unique within all running processes. |
| 37 | */ |
| 38 | #define ASID_FIRST_VERSION (1ULL << ASID_BITS) |
| 39 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 40 | static DEFINE_RAW_SPINLOCK(cpu_asid_lock); |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 41 | static atomic64_t cpu_last_asid = ATOMIC64_INIT(ASID_FIRST_VERSION); |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 42 | |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 43 | static DEFINE_PER_CPU(atomic64_t, active_asids); |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 44 | static DEFINE_PER_CPU(u64, reserved_asids); |
| 45 | static cpumask_t tlb_flush_pending; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Catalin Marinas | 14d8c95 | 2011-11-22 17:30:31 +0000 | [diff] [blame] | 47 | #ifdef CONFIG_ARM_LPAE |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 48 | static void cpu_set_reserved_ttbr0(void) |
Will Deacon | 3c5f7e7 | 2011-05-31 15:38:43 +0100 | [diff] [blame] | 49 | { |
| 50 | unsigned long ttbl = __pa(swapper_pg_dir); |
| 51 | unsigned long ttbh = 0; |
| 52 | |
| 53 | /* |
| 54 | * Set TTBR0 to swapper_pg_dir which contains only global entries. The |
| 55 | * ASID is set to 0. |
| 56 | */ |
| 57 | asm volatile( |
| 58 | " mcrr p15, 0, %0, %1, c2 @ set TTBR0\n" |
| 59 | : |
| 60 | : "r" (ttbl), "r" (ttbh)); |
| 61 | isb(); |
Catalin Marinas | 14d8c95 | 2011-11-22 17:30:31 +0000 | [diff] [blame] | 62 | } |
| 63 | #else |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 64 | static void cpu_set_reserved_ttbr0(void) |
Will Deacon | 3c5f7e7 | 2011-05-31 15:38:43 +0100 | [diff] [blame] | 65 | { |
| 66 | u32 ttb; |
| 67 | /* Copy TTBR1 into TTBR0 */ |
| 68 | asm volatile( |
| 69 | " mrc p15, 0, %0, c2, c0, 1 @ read TTBR1\n" |
| 70 | " mcr p15, 0, %0, c2, c0, 0 @ set TTBR0\n" |
| 71 | : "=r" (ttb)); |
| 72 | isb(); |
| 73 | } |
Catalin Marinas | 14d8c95 | 2011-11-22 17:30:31 +0000 | [diff] [blame] | 74 | #endif |
| 75 | |
Will Deacon | 575320d | 2012-07-06 15:43:03 +0100 | [diff] [blame] | 76 | #ifdef CONFIG_PID_IN_CONTEXTIDR |
| 77 | static int contextidr_notifier(struct notifier_block *unused, unsigned long cmd, |
| 78 | void *t) |
| 79 | { |
| 80 | u32 contextidr; |
| 81 | pid_t pid; |
| 82 | struct thread_info *thread = t; |
| 83 | |
| 84 | if (cmd != THREAD_NOTIFY_SWITCH) |
| 85 | return NOTIFY_DONE; |
| 86 | |
| 87 | pid = task_pid_nr(thread->task) << ASID_BITS; |
| 88 | asm volatile( |
| 89 | " mrc p15, 0, %0, c13, c0, 1\n" |
Will Deacon | ae3790b | 2012-08-24 15:21:52 +0100 | [diff] [blame] | 90 | " and %0, %0, %2\n" |
| 91 | " orr %0, %0, %1\n" |
| 92 | " mcr p15, 0, %0, c13, c0, 1\n" |
Will Deacon | 575320d | 2012-07-06 15:43:03 +0100 | [diff] [blame] | 93 | : "=r" (contextidr), "+r" (pid) |
Will Deacon | ae3790b | 2012-08-24 15:21:52 +0100 | [diff] [blame] | 94 | : "I" (~ASID_MASK)); |
Will Deacon | 575320d | 2012-07-06 15:43:03 +0100 | [diff] [blame] | 95 | isb(); |
| 96 | |
| 97 | return NOTIFY_OK; |
| 98 | } |
| 99 | |
| 100 | static struct notifier_block contextidr_notifier_block = { |
| 101 | .notifier_call = contextidr_notifier, |
| 102 | }; |
| 103 | |
| 104 | static int __init contextidr_notifier_init(void) |
| 105 | { |
| 106 | return thread_register_notifier(&contextidr_notifier_block); |
| 107 | } |
| 108 | arch_initcall(contextidr_notifier_init); |
| 109 | #endif |
| 110 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 111 | static void flush_context(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 113 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 115 | /* Update the list of reserved ASIDs. */ |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 116 | for_each_possible_cpu(i) |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 117 | per_cpu(reserved_asids, i) = |
| 118 | atomic64_xchg(&per_cpu(active_asids, i), 0); |
| 119 | per_cpu(reserved_asids, cpu) = 0; |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 120 | |
| 121 | /* Queue a TLB invalidate and flush the I-cache if necessary. */ |
| 122 | if (!tlb_ops_need_broadcast()) |
| 123 | cpumask_set_cpu(cpu, &tlb_flush_pending); |
| 124 | else |
| 125 | cpumask_setall(&tlb_flush_pending); |
| 126 | |
| 127 | if (icache_is_vivt_asid_tagged()) |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 128 | __flush_icache_all(); |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 129 | } |
| 130 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 131 | static int is_reserved_asid(u64 asid, u64 mask) |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 132 | { |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 133 | int cpu; |
| 134 | for_each_possible_cpu(cpu) |
| 135 | if ((per_cpu(reserved_asids, cpu) & mask) == (asid & mask)) |
| 136 | return 1; |
| 137 | return 0; |
| 138 | } |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 139 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 140 | static void new_context(struct mm_struct *mm, unsigned int cpu) |
| 141 | { |
| 142 | u64 asid = mm->context.id; |
| 143 | |
| 144 | if (asid != 0 && is_reserved_asid(asid, ULLONG_MAX)) { |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 145 | /* |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 146 | * Our current ASID was active during a rollover, we can |
| 147 | * continue to use it and this was just a false alarm. |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 148 | */ |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 149 | asid = (atomic64_read(&cpu_last_asid) & ASID_MASK) | \ |
| 150 | (asid & ~ASID_MASK); |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 151 | } else { |
| 152 | /* |
| 153 | * Allocate a free ASID. If we can't find one, take a |
| 154 | * note of the currently active ASIDs and mark the TLBs |
| 155 | * as requiring flushes. |
| 156 | */ |
| 157 | do { |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 158 | asid = atomic64_inc_return(&cpu_last_asid); |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 159 | if ((asid & ~ASID_MASK) == 0) |
| 160 | flush_context(cpu); |
| 161 | } while (is_reserved_asid(asid, ~ASID_MASK)); |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 162 | cpumask_clear(mm_cpumask(mm)); |
| 163 | } |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 164 | |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 165 | mm->context.id = asid; |
Catalin Marinas | 11805bc | 2010-01-26 19:09:42 +0100 | [diff] [blame] | 166 | } |
| 167 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 168 | void check_and_switch_context(struct mm_struct *mm, struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 170 | unsigned long flags; |
| 171 | unsigned int cpu = smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 173 | if (unlikely(mm->context.kvm_seq != init_mm.context.kvm_seq)) |
| 174 | __check_kvm_seq(mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | /* |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 177 | * Required during context switch to avoid speculative page table |
| 178 | * walking with the wrong TTBR. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | */ |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 180 | cpu_set_reserved_ttbr0(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 182 | if (!((mm->context.id ^ atomic64_read(&cpu_last_asid)) >> ASID_BITS) |
| 183 | && atomic64_xchg(&per_cpu(active_asids, cpu), mm->context.id)) |
| 184 | goto switch_mm_fastpath; |
| 185 | |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 186 | raw_spin_lock_irqsave(&cpu_asid_lock, flags); |
| 187 | /* Check that our ASID belongs to the current generation. */ |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 188 | if ((mm->context.id ^ atomic64_read(&cpu_last_asid)) >> ASID_BITS) |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 189 | new_context(mm, cpu); |
| 190 | |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 191 | atomic64_set(&per_cpu(active_asids, cpu), mm->context.id); |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 192 | cpumask_set_cpu(cpu, mm_cpumask(mm)); |
| 193 | |
| 194 | if (cpumask_test_and_clear_cpu(cpu, &tlb_flush_pending)) |
| 195 | local_flush_tlb_all(); |
| 196 | raw_spin_unlock_irqrestore(&cpu_asid_lock, flags); |
| 197 | |
Will Deacon | 4b88316 | 2012-07-27 12:31:35 +0100 | [diff] [blame^] | 198 | switch_mm_fastpath: |
Will Deacon | b5466f8 | 2012-06-15 14:47:31 +0100 | [diff] [blame] | 199 | cpu_switch_mm(mm->pgd, mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |