powerpc/mm: Rename mmu_context_hash64.c to mmu_context_book3s64.c
[linux-block.git] / arch / powerpc / mm / mmu_context_book3s64.c
1 /*
2  *  MMU context allocation for 64-bit kernels.
3  *
4  *  Copyright (C) 2004 Anton Blanchard, IBM Corp. <anton@samba.org>
5  *
6  *  This program is free software; you can redistribute it and/or
7  *  modify it under the terms of the GNU General Public License
8  *  as published by the Free Software Foundation; either version
9  *  2 of the License, or (at your option) any later version.
10  *
11  */
12
13 #include <linux/sched.h>
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/string.h>
17 #include <linux/types.h>
18 #include <linux/mm.h>
19 #include <linux/spinlock.h>
20 #include <linux/idr.h>
21 #include <linux/export.h>
22 #include <linux/gfp.h>
23 #include <linux/slab.h>
24
25 #include <asm/mmu_context.h>
26 #include <asm/pgalloc.h>
27
28 #include "icswx.h"
29
30 static DEFINE_SPINLOCK(mmu_context_lock);
31 static DEFINE_IDA(mmu_context_ida);
32
33 int __init_new_context(void)
34 {
35         int index;
36         int err;
37
38 again:
39         if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL))
40                 return -ENOMEM;
41
42         spin_lock(&mmu_context_lock);
43         err = ida_get_new_above(&mmu_context_ida, 1, &index);
44         spin_unlock(&mmu_context_lock);
45
46         if (err == -EAGAIN)
47                 goto again;
48         else if (err)
49                 return err;
50
51         if (index > MAX_USER_CONTEXT) {
52                 spin_lock(&mmu_context_lock);
53                 ida_remove(&mmu_context_ida, index);
54                 spin_unlock(&mmu_context_lock);
55                 return -ENOMEM;
56         }
57
58         return index;
59 }
60 EXPORT_SYMBOL_GPL(__init_new_context);
61 static int radix__init_new_context(struct mm_struct *mm, int index)
62 {
63         unsigned long rts_field;
64
65         /*
66          * set the process table entry,
67          */
68         rts_field = 3ull << PPC_BITLSHIFT(2);
69         process_tb[index].prtb0 = cpu_to_be64(rts_field | __pa(mm->pgd) | RADIX_PGD_INDEX_SIZE);
70         return 0;
71 }
72
73 int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
74 {
75         int index;
76
77         index = __init_new_context();
78         if (index < 0)
79                 return index;
80
81         if (radix_enabled()) {
82                 radix__init_new_context(mm, index);
83         } else {
84
85                 /* The old code would re-promote on fork, we don't do that
86                  * when using slices as it could cause problem promoting slices
87                  * that have been forced down to 4K
88                  */
89                 if (slice_mm_new_context(mm))
90                         slice_set_user_psize(mm, mmu_virtual_psize);
91                 subpage_prot_init_new_context(mm);
92         }
93         mm->context.id = index;
94 #ifdef CONFIG_PPC_ICSWX
95         mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
96         if (!mm->context.cop_lockp) {
97                 __destroy_context(index);
98                 subpage_prot_free(mm);
99                 mm->context.id = MMU_NO_CONTEXT;
100                 return -ENOMEM;
101         }
102         spin_lock_init(mm->context.cop_lockp);
103 #endif /* CONFIG_PPC_ICSWX */
104
105 #ifdef CONFIG_PPC_64K_PAGES
106         mm->context.pte_frag = NULL;
107 #endif
108 #ifdef CONFIG_SPAPR_TCE_IOMMU
109         mm_iommu_init(&mm->context);
110 #endif
111         return 0;
112 }
113
114 void __destroy_context(int context_id)
115 {
116         spin_lock(&mmu_context_lock);
117         ida_remove(&mmu_context_ida, context_id);
118         spin_unlock(&mmu_context_lock);
119 }
120 EXPORT_SYMBOL_GPL(__destroy_context);
121
122 #ifdef CONFIG_PPC_64K_PAGES
123 static void destroy_pagetable_page(struct mm_struct *mm)
124 {
125         int count;
126         void *pte_frag;
127         struct page *page;
128
129         pte_frag = mm->context.pte_frag;
130         if (!pte_frag)
131                 return;
132
133         page = virt_to_page(pte_frag);
134         /* drop all the pending references */
135         count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT;
136         /* We allow PTE_FRAG_NR fragments from a PTE page */
137         if (page_ref_sub_and_test(page, PTE_FRAG_NR - count)) {
138                 pgtable_page_dtor(page);
139                 free_hot_cold_page(page, 0);
140         }
141 }
142
143 #else
144 static inline void destroy_pagetable_page(struct mm_struct *mm)
145 {
146         return;
147 }
148 #endif
149
150
151 void destroy_context(struct mm_struct *mm)
152 {
153 #ifdef CONFIG_SPAPR_TCE_IOMMU
154         mm_iommu_cleanup(&mm->context);
155 #endif
156
157 #ifdef CONFIG_PPC_ICSWX
158         drop_cop(mm->context.acop, mm);
159         kfree(mm->context.cop_lockp);
160         mm->context.cop_lockp = NULL;
161 #endif /* CONFIG_PPC_ICSWX */
162
163         if (radix_enabled())
164                 process_tb[mm->context.id].prtb1 = 0;
165         else
166                 subpage_prot_free(mm);
167         destroy_pagetable_page(mm);
168         __destroy_context(mm->context.id);
169         mm->context.id = MMU_NO_CONTEXT;
170 }
171
172 #ifdef CONFIG_PPC_RADIX_MMU
173 void radix__switch_mmu_context(struct mm_struct *prev, struct mm_struct *next)
174 {
175         mtspr(SPRN_PID, next->context.id);
176         asm volatile("isync": : :"memory");
177 }
178 #endif