vserver 1.9.3
[linux-2.6.git] / arch / ppc64 / mm / tlb.c
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
11  *  Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
12  *
13  *  Derived from "arch/i386/mm/init.c"
14  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
15  *
16  *  Dave Engebretsen <engebret@us.ibm.com>
17  *      Rework for PPC64 port.
18  *
19  *  This program is free software; you can redistribute it and/or
20  *  modify it under the terms of the GNU General Public License
21  *  as published by the Free Software Foundation; either version
22  *  2 of the License, or (at your option) any later version.
23  */
24 #include <linux/config.h>
25 #include <linux/kernel.h>
26 #include <linux/mm.h>
27 #include <linux/init.h>
28 #include <linux/percpu.h>
29 #include <linux/hardirq.h>
30 #include <asm/pgalloc.h>
31 #include <asm/tlbflush.h>
32 #include <asm/tlb.h>
33 #include <linux/highmem.h>
34
35 DEFINE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
36
37 /* This is declared as we are using the more or less generic
38  * include/asm-ppc64/tlb.h file -- tgall
39  */
40 DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
41 DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
42 unsigned long pte_freelist_forced_free;
43
44 void __pte_free_tlb(struct mmu_gather *tlb, struct page *ptepage)
45 {
46         /* This is safe as we are holding page_table_lock */
47         cpumask_t local_cpumask = cpumask_of_cpu(smp_processor_id());
48         struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
49
50         if (atomic_read(&tlb->mm->mm_users) < 2 ||
51             cpus_equal(tlb->mm->cpu_vm_mask, local_cpumask)) {
52                 pte_free(ptepage);
53                 return;
54         }
55
56         if (*batchp == NULL) {
57                 *batchp = (struct pte_freelist_batch *)__get_free_page(GFP_ATOMIC);
58                 if (*batchp == NULL) {
59                         pte_free_now(ptepage);
60                         return;
61                 }
62                 (*batchp)->index = 0;
63         }
64         (*batchp)->pages[(*batchp)->index++] = ptepage;
65         if ((*batchp)->index == PTE_FREELIST_SIZE) {
66                 pte_free_submit(*batchp);
67                 *batchp = NULL;
68         }
69 }
70
71 /*
72  * Update the MMU hash table to correspond with a change to
73  * a Linux PTE.  If wrprot is true, it is permissible to
74  * change the existing HPTE to read-only rather than removing it
75  * (if we remove it we should clear the _PTE_HPTEFLAGS bits).
76  */
77 void hpte_update(pte_t *ptep, unsigned long pte, int wrprot)
78 {
79         struct page *ptepage;
80         struct mm_struct *mm;
81         unsigned long addr;
82         int i;
83         unsigned long context = 0;
84         struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
85
86         ptepage = virt_to_page(ptep);
87         mm = (struct mm_struct *) ptepage->mapping;
88         addr = ptepage->index +
89                 (((unsigned long)ptep & ~PAGE_MASK) * PTRS_PER_PTE);
90
91         if (REGION_ID(addr) == USER_REGION_ID)
92                 context = mm->context.id;
93         i = batch->index;
94
95         /*
96          * This can happen when we are in the middle of a TLB batch and
97          * we encounter memory pressure (eg copy_page_range when it tries
98          * to allocate a new pte). If we have to reclaim memory and end
99          * up scanning and resetting referenced bits then our batch context
100          * will change mid stream.
101          */
102         if (unlikely(i != 0 && context != batch->context)) {
103                 flush_tlb_pending();
104                 i = 0;
105         }
106
107         if (i == 0) {
108                 batch->context = context;
109                 batch->mm = mm;
110         }
111         batch->pte[i] = __pte(pte);
112         batch->addr[i] = addr;
113         batch->index = ++i;
114         if (i >= PPC64_TLB_BATCH_NR)
115                 flush_tlb_pending();
116 }
117
118 void __flush_tlb_pending(struct ppc64_tlb_batch *batch)
119 {
120         int i;
121         int cpu;
122         cpumask_t tmp;
123         int local = 0;
124
125         BUG_ON(in_interrupt());
126
127         cpu = get_cpu();
128         i = batch->index;
129         tmp = cpumask_of_cpu(cpu);
130         if (cpus_equal(batch->mm->cpu_vm_mask, tmp))
131                 local = 1;
132
133         if (i == 1)
134                 flush_hash_page(batch->context, batch->addr[0], batch->pte[0],
135                                 local);
136         else
137                 flush_hash_range(batch->context, i, local);
138         batch->index = 0;
139         put_cpu();
140 }
141
142 #ifdef CONFIG_SMP
143 static void pte_free_smp_sync(void *arg)
144 {
145         /* Do nothing, just ensure we sync with all CPUs */
146 }
147 #endif
148
149 /* This is only called when we are critically out of memory
150  * (and fail to get a page in pte_free_tlb).
151  */
152 void pte_free_now(struct page *ptepage)
153 {
154         pte_freelist_forced_free++;
155
156         smp_call_function(pte_free_smp_sync, NULL, 0, 1);
157
158         pte_free(ptepage);
159 }
160
161 static void pte_free_rcu_callback(struct rcu_head *head)
162 {
163         struct pte_freelist_batch *batch =
164                 container_of(head, struct pte_freelist_batch, rcu);
165         unsigned int i;
166
167         for (i = 0; i < batch->index; i++)
168                 pte_free(batch->pages[i]);
169         free_page((unsigned long)batch);
170 }
171
172 void pte_free_submit(struct pte_freelist_batch *batch)
173 {
174         INIT_RCU_HEAD(&batch->rcu);
175         call_rcu(&batch->rcu, pte_free_rcu_callback);
176 }
177
178 void pte_free_finish(void)
179 {
180         /* This is safe as we are holding page_table_lock */
181         struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
182
183         if (*batchp == NULL)
184                 return;
185         pte_free_submit(*batchp);
186         *batchp = NULL;
187 }