Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file contains the routines for flushing entries from the |
| 3 | * TLB and MMU hash table. |
| 4 | * |
| 5 | * Derived from arch/ppc64/mm/init.c: |
| 6 | * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) |
| 7 | * |
| 8 | * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au) |
| 9 | * and Cort Dougan (PReP) (cort@cs.nmt.edu) |
| 10 | * Copyright (C) 1996 Paul Mackerras |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | * Derived from "arch/i386/mm/init.c" |
| 13 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
| 14 | * |
| 15 | * Dave Engebretsen <engebret@us.ibm.com> |
| 16 | * Rework for PPC64 port. |
| 17 | * |
| 18 | * This program is free software; you can redistribute it and/or |
| 19 | * modify it under the terms of the GNU General Public License |
| 20 | * as published by the Free Software Foundation; either version |
| 21 | * 2 of the License, or (at your option) any later version. |
| 22 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/kernel.h> |
| 25 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/percpu.h> |
| 27 | #include <linux/hardirq.h> |
| 28 | #include <asm/pgalloc.h> |
| 29 | #include <asm/tlbflush.h> |
| 30 | #include <asm/tlb.h> |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 31 | #include <asm/bug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Aneesh Kumar K.V | 9e81330 | 2014-08-13 12:32:04 +0530 | [diff] [blame] | 33 | #include <trace/events/thp.h> |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | DEFINE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch); |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /* |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 38 | * A linux PTE was changed and the corresponding hash table entry |
| 39 | * neesd to be flushed. This function will either perform the flush |
| 40 | * immediately or will batch it up if the current CPU has an active |
| 41 | * batch on it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | */ |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 43 | void hpte_need_flush(struct mm_struct *mm, unsigned long addr, |
| 44 | pte_t *ptep, unsigned long pte, int huge) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 46 | unsigned long vpn; |
Peter Zijlstra | f342552 | 2011-02-24 10:47:32 +0000 | [diff] [blame] | 47 | struct ppc64_tlb_batch *batch = &get_cpu_var(ppc64_tlb_batch); |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 48 | unsigned long vsid; |
Paul Mackerras | bf72aeb | 2006-06-15 10:45:18 +1000 | [diff] [blame] | 49 | unsigned int psize; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 50 | int ssize; |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 51 | real_pte_t rpte; |
Benjamin Herrenschmidt | 61b1a94 | 2005-09-20 13:52:50 +1000 | [diff] [blame] | 52 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | i = batch->index; |
| 55 | |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 56 | /* Get page size (maybe move back to caller). |
| 57 | * |
| 58 | * NOTE: when using special 64K mappings in 4K environment like |
| 59 | * for SPEs, we obtain the page size from the slice, which thus |
| 60 | * must still exist (and thus the VMA not reused) at the time |
| 61 | * of this call |
| 62 | */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 63 | if (huge) { |
| 64 | #ifdef CONFIG_HUGETLB_PAGE |
Joe Perches | d258e64 | 2009-06-28 06:26:10 +0000 | [diff] [blame] | 65 | psize = get_slice_psize(mm, addr); |
David Gibson | 77058e1 | 2010-02-08 20:09:03 +0000 | [diff] [blame] | 66 | /* Mask the address for the correct page size */ |
| 67 | addr &= ~((1UL << mmu_psize_defs[psize].shift) - 1); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 68 | #else |
| 69 | BUG(); |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 70 | psize = pte_pagesize_index(mm, addr, pte); /* shutup gcc */ |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 71 | #endif |
David Gibson | 77058e1 | 2010-02-08 20:09:03 +0000 | [diff] [blame] | 72 | } else { |
Benjamin Herrenschmidt | 16c2d47 | 2007-05-08 16:27:28 +1000 | [diff] [blame] | 73 | psize = pte_pagesize_index(mm, addr, pte); |
David Gibson | 77058e1 | 2010-02-08 20:09:03 +0000 | [diff] [blame] | 74 | /* Mask the address for the standard page size. If we |
| 75 | * have a 64k page kernel, but the hardware does not |
| 76 | * support 64k pages, this might be different from the |
| 77 | * hardware page size encoded in the slice table. */ |
| 78 | addr &= PAGE_MASK; |
| 79 | } |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 80 | |
David Gibson | f71dc17 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 81 | |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 82 | /* Build full vaddr */ |
| 83 | if (!is_kernel_addr(addr)) { |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 84 | ssize = user_segment_size(addr); |
| 85 | vsid = get_vsid(mm->context.id, addr, ssize); |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 86 | } else { |
| 87 | vsid = get_kernel_vsid(addr, mmu_kernel_ssize); |
| 88 | ssize = mmu_kernel_ssize; |
| 89 | } |
Aneesh Kumar K.V | c60ac56 | 2013-03-13 03:34:54 +0000 | [diff] [blame] | 90 | WARN_ON(vsid == 0); |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 91 | vpn = hpt_vpn(addr, vsid, ssize); |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 92 | rpte = __real_pte(__pte(pte), ptep); |
| 93 | |
| 94 | /* |
| 95 | * Check if we have an active batch on this CPU. If not, just |
| 96 | * flush now and return. For now, we don global invalidates |
| 97 | * in that case, might be worth testing the mm cpu mask though |
| 98 | * and decide to use local invalidates instead... |
| 99 | */ |
| 100 | if (!batch->active) { |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 101 | flush_hash_page(vpn, rpte, psize, ssize, 0); |
Peter Zijlstra | f342552 | 2011-02-24 10:47:32 +0000 | [diff] [blame] | 102 | put_cpu_var(ppc64_tlb_batch); |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 103 | return; |
| 104 | } |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* |
| 107 | * This can happen when we are in the middle of a TLB batch and |
| 108 | * we encounter memory pressure (eg copy_page_range when it tries |
| 109 | * to allocate a new pte). If we have to reclaim memory and end |
| 110 | * up scanning and resetting referenced bits then our batch context |
| 111 | * will change mid stream. |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 112 | * |
| 113 | * We also need to ensure only one page size is present in a given |
| 114 | * batch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | */ |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 116 | if (i != 0 && (mm != batch->mm || batch->psize != psize || |
| 117 | batch->ssize != ssize)) { |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 118 | __flush_tlb_pending(batch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | i = 0; |
| 120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | if (i == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | batch->mm = mm; |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 123 | batch->psize = psize; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 124 | batch->ssize = ssize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 126 | batch->pte[i] = rpte; |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 127 | batch->vpn[i] = vpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | batch->index = ++i; |
| 129 | if (i >= PPC64_TLB_BATCH_NR) |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 130 | __flush_tlb_pending(batch); |
Peter Zijlstra | f342552 | 2011-02-24 10:47:32 +0000 | [diff] [blame] | 131 | put_cpu_var(ppc64_tlb_batch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 134 | /* |
| 135 | * This function is called when terminating an mmu batch or when a batch |
| 136 | * is full. It will perform the flush of all the entries currently stored |
| 137 | * in a batch. |
| 138 | * |
| 139 | * Must be called from within some kind of spinlock/non-preempt region... |
| 140 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | void __flush_tlb_pending(struct ppc64_tlb_batch *batch) |
| 142 | { |
Rusty Russell | 56aa412 | 2009-03-15 18:16:43 +0000 | [diff] [blame] | 143 | const struct cpumask *tmp; |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 144 | int i, local = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | i = batch->index; |
Rusty Russell | 56aa412 | 2009-03-15 18:16:43 +0000 | [diff] [blame] | 147 | tmp = cpumask_of(smp_processor_id()); |
| 148 | if (cpumask_equal(mm_cpumask(batch->mm), tmp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | local = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | if (i == 1) |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 151 | flush_hash_page(batch->vpn[0], batch->pte[0], |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 152 | batch->psize, batch->ssize, local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | else |
Benjamin Herrenschmidt | 61b1a94 | 2005-09-20 13:52:50 +1000 | [diff] [blame] | 154 | flush_hash_range(i, local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | batch->index = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Aneesh Kumar K.V | 676012a | 2016-04-29 23:26:04 +1000 | [diff] [blame] | 158 | void hash__tlb_flush(struct mmu_gather *tlb) |
Benjamin Herrenschmidt | c7cc58a1 | 2009-07-23 23:15:28 +0000 | [diff] [blame] | 159 | { |
Peter Zijlstra | d6bf29b | 2011-05-24 17:11:48 -0700 | [diff] [blame] | 160 | struct ppc64_tlb_batch *tlbbatch = &get_cpu_var(ppc64_tlb_batch); |
Benjamin Herrenschmidt | c7cc58a1 | 2009-07-23 23:15:28 +0000 | [diff] [blame] | 161 | |
| 162 | /* If there's a TLB batch pending, then we must flush it because the |
| 163 | * pages are going to be freed and we really don't want to have a CPU |
| 164 | * access a freed page because it has a stale TLB |
| 165 | */ |
| 166 | if (tlbbatch->index) |
| 167 | __flush_tlb_pending(tlbbatch); |
| 168 | |
Peter Zijlstra | d6bf29b | 2011-05-24 17:11:48 -0700 | [diff] [blame] | 169 | put_cpu_var(ppc64_tlb_batch); |
Benjamin Herrenschmidt | c7cc58a1 | 2009-07-23 23:15:28 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 172 | /** |
| 173 | * __flush_hash_table_range - Flush all HPTEs for a given address range |
| 174 | * from the hash table (and the TLB). But keeps |
| 175 | * the linux PTEs intact. |
| 176 | * |
| 177 | * @mm : mm_struct of the target address space (generally init_mm) |
| 178 | * @start : starting address |
| 179 | * @end : ending address (not included in the flush) |
| 180 | * |
| 181 | * This function is mostly to be used by some IO hotplug code in order |
| 182 | * to remove all hash entries from a given address range used to map IO |
| 183 | * space on a removed PCI-PCI bidge without tearing down the full mapping |
| 184 | * since 64K pages may overlap with other bridges when using 64K pages |
| 185 | * with 4K HW pages on IO space. |
| 186 | * |
Stephen Rothwell | 40b3136 | 2013-05-21 13:49:35 +1000 | [diff] [blame] | 187 | * Because of that usage pattern, it is implemented for small size rather |
| 188 | * than speed. |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 189 | */ |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 190 | void __flush_hash_table_range(struct mm_struct *mm, unsigned long start, |
| 191 | unsigned long end) |
| 192 | { |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 193 | bool is_thp; |
Aneesh Kumar K.V | 12bc9f6 | 2013-06-20 14:30:18 +0530 | [diff] [blame] | 194 | int hugepage_shift; |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 195 | unsigned long flags; |
| 196 | |
| 197 | start = _ALIGN_DOWN(start, PAGE_SIZE); |
| 198 | end = _ALIGN_UP(end, PAGE_SIZE); |
| 199 | |
| 200 | BUG_ON(!mm->pgd); |
| 201 | |
| 202 | /* Note: Normally, we should only ever use a batch within a |
| 203 | * PTE locked section. This violates the rule, but will work |
| 204 | * since we don't actually modify the PTEs, we just flush the |
| 205 | * hash while leaving the PTEs intact (including their reference |
| 206 | * to being hashed). This is not the most performance oriented |
| 207 | * way to do things but is fine for our needs here. |
| 208 | */ |
| 209 | local_irq_save(flags); |
| 210 | arch_enter_lazy_mmu_mode(); |
| 211 | for (; start < end; start += PAGE_SIZE) { |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 212 | pte_t *ptep = find_linux_pte_or_hugepte(mm->pgd, start, &is_thp, |
Aneesh Kumar K.V | 12bc9f6 | 2013-06-20 14:30:18 +0530 | [diff] [blame] | 213 | &hugepage_shift); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 214 | unsigned long pte; |
| 215 | |
| 216 | if (ptep == NULL) |
| 217 | continue; |
| 218 | pte = pte_val(*ptep); |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 219 | if (is_thp) |
Michael Ellerman | 4f9c53c | 2015-03-25 20:11:57 +1100 | [diff] [blame] | 220 | trace_hugepage_invalidate(start, pte); |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 221 | if (!(pte & H_PAGE_HASHPTE)) |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 222 | continue; |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 223 | if (unlikely(is_thp)) |
Aneesh Kumar K.V | fc04795 | 2014-08-13 12:32:00 +0530 | [diff] [blame] | 224 | hpte_do_hugepage_flush(mm, start, (pmd_t *)ptep, pte); |
Aneesh Kumar K.V | 12bc9f6 | 2013-06-20 14:30:18 +0530 | [diff] [blame] | 225 | else |
Aneesh Kumar K.V | 891121e | 2015-10-09 08:32:21 +0530 | [diff] [blame] | 226 | hpte_need_flush(mm, start, ptep, pte, hugepage_shift); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 227 | } |
| 228 | arch_leave_lazy_mmu_mode(); |
| 229 | local_irq_restore(flags); |
| 230 | } |
Aneesh Kumar K.V | 074c2ea | 2013-06-20 14:30:15 +0530 | [diff] [blame] | 231 | |
| 232 | void flush_tlb_pmd_range(struct mm_struct *mm, pmd_t *pmd, unsigned long addr) |
| 233 | { |
| 234 | pte_t *pte; |
| 235 | pte_t *start_pte; |
| 236 | unsigned long flags; |
| 237 | |
| 238 | addr = _ALIGN_DOWN(addr, PMD_SIZE); |
| 239 | /* Note: Normally, we should only ever use a batch within a |
| 240 | * PTE locked section. This violates the rule, but will work |
| 241 | * since we don't actually modify the PTEs, we just flush the |
| 242 | * hash while leaving the PTEs intact (including their reference |
| 243 | * to being hashed). This is not the most performance oriented |
| 244 | * way to do things but is fine for our needs here. |
| 245 | */ |
| 246 | local_irq_save(flags); |
| 247 | arch_enter_lazy_mmu_mode(); |
| 248 | start_pte = pte_offset_map(pmd, addr); |
| 249 | for (pte = start_pte; pte < start_pte + PTRS_PER_PTE; pte++) { |
| 250 | unsigned long pteval = pte_val(*pte); |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 251 | if (pteval & H_PAGE_HASHPTE) |
Aneesh Kumar K.V | 074c2ea | 2013-06-20 14:30:15 +0530 | [diff] [blame] | 252 | hpte_need_flush(mm, addr, pte, pteval, 0); |
| 253 | addr += PAGE_SIZE; |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 254 | } |
| 255 | arch_leave_lazy_mmu_mode(); |
| 256 | local_irq_restore(flags); |
| 257 | } |