blob: a27ded3adac5aa8316213d987a3e3443d052d25f [file] [log] [blame]
Kumar Gala0186f472008-11-19 12:50:04 +00001/*
2 * This file contains common routines for dealing with free of page tables
Benjamin Herrenschmidt8d30c142009-02-10 16:02:37 +00003 * Along with common page table handling code
Kumar Gala0186f472008-11-19 12:50:04 +00004 *
5 * Derived from arch/powerpc/mm/tlb_64.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
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 */
23
24#include <linux/kernel.h>
25#include <linux/mm.h>
26#include <linux/init.h>
27#include <linux/percpu.h>
28#include <linux/hardirq.h>
29#include <asm/pgalloc.h>
30#include <asm/tlbflush.h>
31#include <asm/tlb.h>
32
33static DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
34static unsigned long pte_freelist_forced_free;
35
36struct pte_freelist_batch
37{
38 struct rcu_head rcu;
39 unsigned int index;
40 pgtable_free_t tables[0];
41};
42
43#define PTE_FREELIST_SIZE \
44 ((PAGE_SIZE - sizeof(struct pte_freelist_batch)) \
45 / sizeof(pgtable_free_t))
46
47static void pte_free_smp_sync(void *arg)
48{
49 /* Do nothing, just ensure we sync with all CPUs */
50}
51
52/* This is only called when we are critically out of memory
53 * (and fail to get a page in pte_free_tlb).
54 */
55static void pgtable_free_now(pgtable_free_t pgf)
56{
57 pte_freelist_forced_free++;
58
59 smp_call_function(pte_free_smp_sync, NULL, 1);
60
61 pgtable_free(pgf);
62}
63
64static void pte_free_rcu_callback(struct rcu_head *head)
65{
66 struct pte_freelist_batch *batch =
67 container_of(head, struct pte_freelist_batch, rcu);
68 unsigned int i;
69
70 for (i = 0; i < batch->index; i++)
71 pgtable_free(batch->tables[i]);
72
73 free_page((unsigned long)batch);
74}
75
76static void pte_free_submit(struct pte_freelist_batch *batch)
77{
78 INIT_RCU_HEAD(&batch->rcu);
79 call_rcu(&batch->rcu, pte_free_rcu_callback);
80}
81
82void pgtable_free_tlb(struct mmu_gather *tlb, pgtable_free_t pgf)
83{
84 /* This is safe since tlb_gather_mmu has disabled preemption */
85 cpumask_t local_cpumask = cpumask_of_cpu(smp_processor_id());
86 struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
87
88 if (atomic_read(&tlb->mm->mm_users) < 2 ||
89 cpus_equal(tlb->mm->cpu_vm_mask, local_cpumask)) {
90 pgtable_free(pgf);
91 return;
92 }
93
94 if (*batchp == NULL) {
95 *batchp = (struct pte_freelist_batch *)__get_free_page(GFP_ATOMIC);
96 if (*batchp == NULL) {
97 pgtable_free_now(pgf);
98 return;
99 }
100 (*batchp)->index = 0;
101 }
102 (*batchp)->tables[(*batchp)->index++] = pgf;
103 if ((*batchp)->index == PTE_FREELIST_SIZE) {
104 pte_free_submit(*batchp);
105 *batchp = NULL;
106 }
107}
108
109void pte_free_finish(void)
110{
111 /* This is safe since tlb_gather_mmu has disabled preemption */
112 struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
113
114 if (*batchp == NULL)
115 return;
116 pte_free_submit(*batchp);
117 *batchp = NULL;
118}
Benjamin Herrenschmidt8d30c142009-02-10 16:02:37 +0000119
120/*
121 * Handle i/d cache flushing, called from set_pte_at() or ptep_set_access_flags()
122 */
123static pte_t do_dcache_icache_coherency(pte_t pte)
124{
125 unsigned long pfn = pte_pfn(pte);
126 struct page *page;
127
128 if (unlikely(!pfn_valid(pfn)))
129 return pte;
130 page = pfn_to_page(pfn);
131
132 if (!PageReserved(page) && !test_bit(PG_arch_1, &page->flags)) {
133 pr_debug("do_dcache_icache_coherency... flushing\n");
134 flush_dcache_icache_page(page);
135 set_bit(PG_arch_1, &page->flags);
136 }
137 else
138 pr_debug("do_dcache_icache_coherency... already clean\n");
139 return __pte(pte_val(pte) | _PAGE_HWEXEC);
140}
141
142static inline int is_exec_fault(void)
143{
144 return current->thread.regs && TRAP(current->thread.regs) == 0x400;
145}
146
147/* We only try to do i/d cache coherency on stuff that looks like
148 * reasonably "normal" PTEs. We currently require a PTE to be present
149 * and we avoid _PAGE_SPECIAL and _PAGE_NO_CACHE
150 */
151static inline int pte_looks_normal(pte_t pte)
152{
153 return (pte_val(pte) &
154 (_PAGE_PRESENT | _PAGE_SPECIAL | _PAGE_NO_CACHE)) ==
155 (_PAGE_PRESENT);
156}
157
158#if defined(CONFIG_PPC_STD_MMU)
159/* Server-style MMU handles coherency when hashing if HW exec permission
160 * is supposed per page (currently 64-bit only). Else, we always flush
161 * valid PTEs in set_pte.
162 */
163static inline int pte_need_exec_flush(pte_t pte, int set_pte)
164{
165 return set_pte && pte_looks_normal(pte) &&
166 !(cpu_has_feature(CPU_FTR_COHERENT_ICACHE) ||
167 cpu_has_feature(CPU_FTR_NOEXECUTE));
168}
169#elif _PAGE_HWEXEC == 0
170/* Embedded type MMU without HW exec support (8xx only so far), we flush
171 * the cache for any present PTE
172 */
173static inline int pte_need_exec_flush(pte_t pte, int set_pte)
174{
175 return set_pte && pte_looks_normal(pte);
176}
177#else
178/* Other embedded CPUs with HW exec support per-page, we flush on exec
179 * fault if HWEXEC is not set
180 */
181static inline int pte_need_exec_flush(pte_t pte, int set_pte)
182{
183 return pte_looks_normal(pte) && is_exec_fault() &&
184 !(pte_val(pte) & _PAGE_HWEXEC);
185}
186#endif
187
188/*
189 * set_pte stores a linux PTE into the linux page table.
190 */
191void set_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep, pte_t pte)
192{
193#ifdef CONFIG_DEBUG_VM
194 WARN_ON(pte_present(*ptep));
195#endif
196 /* Note: mm->context.id might not yet have been assigned as
197 * this context might not have been activated yet when this
198 * is called.
199 */
200 pte = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS);
201 if (pte_need_exec_flush(pte, 1))
202 pte = do_dcache_icache_coherency(pte);
203
204 /* Perform the setting of the PTE */
205 __set_pte_at(mm, addr, ptep, pte, 0);
206}
207
208/*
209 * This is called when relaxing access to a PTE. It's also called in the page
210 * fault path when we don't hit any of the major fault cases, ie, a minor
211 * update of _PAGE_ACCESSED, _PAGE_DIRTY, etc... The generic code will have
212 * handled those two for us, we additionally deal with missing execute
213 * permission here on some processors
214 */
215int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address,
216 pte_t *ptep, pte_t entry, int dirty)
217{
218 int changed;
219 if (!dirty && pte_need_exec_flush(entry, 0))
220 entry = do_dcache_icache_coherency(entry);
221 changed = !pte_same(*(ptep), entry);
222 if (changed) {
223 assert_pte_locked(vma->vm_mm, address);
224 __ptep_set_access_flags(ptep, entry);
225 flush_tlb_page_nohash(vma, address);
226 }
227 return changed;
228}
229
230#ifdef CONFIG_DEBUG_VM
231void assert_pte_locked(struct mm_struct *mm, unsigned long addr)
232{
233 pgd_t *pgd;
234 pud_t *pud;
235 pmd_t *pmd;
236
237 if (mm == &init_mm)
238 return;
239 pgd = mm->pgd + pgd_index(addr);
240 BUG_ON(pgd_none(*pgd));
241 pud = pud_offset(pgd, addr);
242 BUG_ON(pud_none(*pud));
243 pmd = pmd_offset(pud, addr);
244 BUG_ON(!pmd_present(*pmd));
245 BUG_ON(!spin_is_locked(pte_lockptr(mm, pmd)));
246}
247#endif /* CONFIG_DEBUG_VM */
248