blob: 702d7689d714e2173353a7df38c9899e66854351 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * This file contains the routines for TLB flushing.
3 * On machines where the MMU uses a hash table to store virtual to
4 * physical translations, these routines flush entries from the
5 * hash table also.
6 * -- paulus
7 *
8 * Derived from arch/ppc/mm/init.c:
9 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
10 *
11 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
12 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
13 * Copyright (C) 1996 Paul Mackerras
Paul Mackerras14cf11a2005-09-26 16:04:21 +100014 *
15 * Derived from "arch/i386/mm/init.c"
16 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
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 *
23 */
24
Paul Mackerras14cf11a2005-09-26 16:04:21 +100025#include <linux/kernel.h>
26#include <linux/mm.h>
27#include <linux/init.h>
28#include <linux/highmem.h>
Mariusz Kozlowski97d22d22007-07-21 04:37:44 -070029#include <linux/pagemap.h>
Paul Gortmaker93087942011-07-29 16:19:31 +100030#include <linux/export.h>
Mariusz Kozlowski97d22d22007-07-21 04:37:44 -070031
Paul Mackerras14cf11a2005-09-26 16:04:21 +100032#include <asm/tlbflush.h>
33#include <asm/tlb.h>
34
35#include "mmu_decl.h"
36
37/*
38 * Called when unmapping pages to flush entries from the TLB/hash table.
39 */
40void flush_hash_entry(struct mm_struct *mm, pte_t *ptep, unsigned long addr)
41{
42 unsigned long ptephys;
43
44 if (Hash != 0) {
45 ptephys = __pa(ptep) & PAGE_MASK;
Paul Mackerras6218a762006-06-11 14:15:17 +100046 flush_hash_pages(mm->context.id, addr, ptephys, 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100047 }
48}
Becky Bruce4ee70842008-09-24 11:01:24 -050049EXPORT_SYMBOL(flush_hash_entry);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100050
51/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +100052 * Called at the end of a mmu_gather operation to make sure the
53 * TLB flush is completely done.
54 */
55void tlb_flush(struct mmu_gather *tlb)
56{
57 if (Hash == 0) {
58 /*
59 * 603 needs to flush the whole TLB here since
60 * it doesn't use a hash table.
61 */
62 _tlbia();
63 }
64}
65
66/*
67 * TLB flushing:
68 *
69 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
70 * - flush_tlb_page(vma, vmaddr) flushes one page
71 * - flush_tlb_range(vma, start, end) flushes a range of pages
72 * - flush_tlb_kernel_range(start, end) flushes kernel pages
73 *
74 * since the hardware hash table functions as an extension of the
75 * tlb as far as the linux tables are concerned, flush it too.
76 * -- Cort
77 */
78
Paul Mackerras14cf11a2005-09-26 16:04:21 +100079static void flush_range(struct mm_struct *mm, unsigned long start,
80 unsigned long end)
81{
82 pmd_t *pmd;
83 unsigned long pmd_end;
84 int count;
Paul Mackerras6218a762006-06-11 14:15:17 +100085 unsigned int ctx = mm->context.id;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100086
87 if (Hash == 0) {
88 _tlbia();
89 return;
90 }
91 start &= PAGE_MASK;
92 if (start >= end)
93 return;
94 end = (end - 1) | ~PAGE_MASK;
David Gibsonf1a1eb22007-05-09 15:20:37 +100095 pmd = pmd_offset(pud_offset(pgd_offset(mm, start), start), start);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100096 for (;;) {
97 pmd_end = ((start + PGDIR_SIZE) & PGDIR_MASK) - 1;
98 if (pmd_end > end)
99 pmd_end = end;
100 if (!pmd_none(*pmd)) {
101 count = ((pmd_end - start) >> PAGE_SHIFT) + 1;
102 flush_hash_pages(ctx, start, pmd_val(*pmd), count);
103 }
104 if (pmd_end == end)
105 break;
106 start = pmd_end + 1;
107 ++pmd;
108 }
109}
110
111/*
112 * Flush kernel TLB entries in the given range
113 */
114void flush_tlb_kernel_range(unsigned long start, unsigned long end)
115{
116 flush_range(&init_mm, start, end);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000117}
Benjamin Herrenschmidtf048aac2008-12-18 19:13:38 +0000118EXPORT_SYMBOL(flush_tlb_kernel_range);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000119
120/*
121 * Flush all the (user) entries for the address space described by mm.
122 */
123void flush_tlb_mm(struct mm_struct *mm)
124{
125 struct vm_area_struct *mp;
126
127 if (Hash == 0) {
128 _tlbia();
129 return;
130 }
131
Hugh Dickins01edcd82005-11-23 13:37:39 -0800132 /*
133 * It is safe to go down the mm's list of vmas when called
134 * from dup_mmap, holding mmap_sem. It would also be safe from
135 * unmap_region or exit_mmap, but not from vmtruncate on SMP -
136 * but it seems dup_mmap is the only SMP case which gets here.
137 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000138 for (mp = mm->mmap; mp != NULL; mp = mp->vm_next)
139 flush_range(mp->vm_mm, mp->vm_start, mp->vm_end);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000140}
Benjamin Herrenschmidtf048aac2008-12-18 19:13:38 +0000141EXPORT_SYMBOL(flush_tlb_mm);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000142
143void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
144{
145 struct mm_struct *mm;
146 pmd_t *pmd;
147
148 if (Hash == 0) {
149 _tlbie(vmaddr);
150 return;
151 }
152 mm = (vmaddr < TASK_SIZE)? vma->vm_mm: &init_mm;
David Gibsonf1a1eb22007-05-09 15:20:37 +1000153 pmd = pmd_offset(pud_offset(pgd_offset(mm, vmaddr), vmaddr), vmaddr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000154 if (!pmd_none(*pmd))
Paul Mackerras6218a762006-06-11 14:15:17 +1000155 flush_hash_pages(mm->context.id, vmaddr, pmd_val(*pmd), 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000156}
Benjamin Herrenschmidtf048aac2008-12-18 19:13:38 +0000157EXPORT_SYMBOL(flush_tlb_page);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000158
159/*
160 * For each address in the range, find the pte for the address
161 * and check _PAGE_HASHPTE bit; if it is set, find and destroy
162 * the corresponding HPTE.
163 */
164void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
165 unsigned long end)
166{
167 flush_range(vma->vm_mm, start, end);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000168}
Benjamin Herrenschmidtf048aac2008-12-18 19:13:38 +0000169EXPORT_SYMBOL(flush_tlb_range);
Dave Kleikamp91b191c2011-07-04 18:38:03 +0000170
171void __init early_init_mmu(void)
172{
173}