blob: e5fde156e11dd8688255979b578126d2a7524955 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
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
Paul Mackerras14cf11a2005-09-26 16:04:21 +100013#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>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040021#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000023#include <linux/slab.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100024
25#include <asm/mmu_context.h>
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +000026#include <asm/pgalloc.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100027
Jimi Xenidis9d670282011-09-29 10:55:12 +000028#include "icswx.h"
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000029
Paul Mackerras14cf11a2005-09-26 16:04:21 +100030static DEFINE_SPINLOCK(mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000031static DEFINE_IDA(mmu_context_ida);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100032
Michael Ellermanc1ff8402017-03-29 22:10:45 +110033static int alloc_context_id(int min_id, int max_id)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100034{
Michael Ellermanc1ff8402017-03-29 22:10:45 +110035 int index, err;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100036
37again:
Anton Blanchard7317ac82010-02-07 12:30:12 +000038 if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL))
Paul Mackerras14cf11a2005-09-26 16:04:21 +100039 return -ENOMEM;
40
41 spin_lock(&mmu_context_lock);
Michael Ellermanc1ff8402017-03-29 22:10:45 +110042 err = ida_get_new_above(&mmu_context_ida, min_id, &index);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043 spin_unlock(&mmu_context_lock);
44
45 if (err == -EAGAIN)
46 goto again;
47 else if (err)
48 return err;
49
Michael Ellermanc1ff8402017-03-29 22:10:45 +110050 if (index > max_id) {
Sonny Raof86c97472006-06-27 08:46:09 -040051 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000052 ida_remove(&mmu_context_ida, index);
Sonny Raof86c97472006-06-27 08:46:09 -040053 spin_unlock(&mmu_context_lock);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100054 return -ENOMEM;
55 }
56
Alexander Grafe85a4712009-11-02 12:02:30 +000057 return index;
58}
Michael Ellermana336f2f2017-03-29 22:00:46 +110059
60int hash__alloc_context_id(void)
61{
Aneesh Kumar K.Ve6f81a92017-03-29 17:21:53 +110062 unsigned long max;
63
64 if (mmu_has_feature(MMU_FTR_68_BIT_VA))
65 max = MAX_USER_CONTEXT;
66 else
67 max = MAX_USER_CONTEXT_65BIT_VA;
68
69 return alloc_context_id(MIN_USER_CONTEXT, max);
Michael Ellermana336f2f2017-03-29 22:00:46 +110070}
71EXPORT_SYMBOL_GPL(hash__alloc_context_id);
72
Michael Ellerman760573c2017-03-29 22:36:56 +110073static int hash__init_new_context(struct mm_struct *mm)
Alexander Grafe85a4712009-11-02 12:02:30 +000074{
75 int index;
76
Michael Ellermanc1ff8402017-03-29 22:10:45 +110077 index = hash__alloc_context_id();
Alexander Grafe85a4712009-11-02 12:02:30 +000078 if (index < 0)
79 return index;
80
Michael Ellerman760573c2017-03-29 22:36:56 +110081 /*
82 * The old code would re-promote on fork, we don't do that when using
83 * slices as it could cause problem promoting slices that have been
84 * forced down to 4K.
85 *
86 * For book3s we have MMU_NO_CONTEXT set to be ~0. Hence check
87 * explicitly against context.id == 0. This ensures that we properly
88 * initialize context slice details for newly allocated mm's (which will
89 * have id == 0) and don't alter context slice inherited via fork (which
90 * will have id != 0).
91 *
92 * We should not be calling init_new_context() on init_mm. Hence a
93 * check against 0 is OK.
94 */
95 if (mm->context.id == 0)
96 slice_set_user_psize(mm, mmu_virtual_psize);
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +100097
Michael Ellerman760573c2017-03-29 22:36:56 +110098 subpage_prot_init_new_context(mm);
99
100 return index;
101}
102
103static int radix__init_new_context(struct mm_struct *mm)
104{
105 unsigned long rts_field;
106 int index;
107
108 index = alloc_context_id(1, PRTB_ENTRIES - 1);
109 if (index < 0)
110 return index;
111
112 /*
113 * set the process table entry,
114 */
115 rts_field = radix__get_tree_size();
116 process_tb[index].prtb0 = cpu_to_be64(rts_field | __pa(mm->pgd) | RADIX_PGD_INDEX_SIZE);
117
118 return index;
119}
120
121int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
122{
123 int index;
124
125 if (radix_enabled())
126 index = radix__init_new_context(mm);
127 else
128 index = hash__init_new_context(mm);
129
130 if (index < 0)
131 return index;
132
Stephen Rothwell9dfe5c532007-08-15 16:33:55 +1000133 mm->context.id = index;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000134#ifdef CONFIG_PPC_ICSWX
135 mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
136 if (!mm->context.cop_lockp) {
137 __destroy_context(index);
138 subpage_prot_free(mm);
Stephen Rothwell79af2182011-05-06 10:39:08 +1000139 mm->context.id = MMU_NO_CONTEXT;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000140 return -ENOMEM;
141 }
142 spin_lock_init(mm->context.cop_lockp);
143#endif /* CONFIG_PPC_ICSWX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000144
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000145#ifdef CONFIG_PPC_64K_PAGES
146 mm->context.pte_frag = NULL;
147#endif
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000148#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy88f54a32016-11-30 17:51:59 +1100149 mm_iommu_init(mm);
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000150#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000151 return 0;
152}
153
Alexander Grafe85a4712009-11-02 12:02:30 +0000154void __destroy_context(int context_id)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000155{
156 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +0000157 ida_remove(&mmu_context_ida, context_id);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000158 spin_unlock(&mmu_context_lock);
Alexander Grafe85a4712009-11-02 12:02:30 +0000159}
160EXPORT_SYMBOL_GPL(__destroy_context);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000161
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000162#ifdef CONFIG_PPC_64K_PAGES
163static void destroy_pagetable_page(struct mm_struct *mm)
164{
165 int count;
166 void *pte_frag;
167 struct page *page;
168
169 pte_frag = mm->context.pte_frag;
170 if (!pte_frag)
171 return;
172
173 page = virt_to_page(pte_frag);
174 /* drop all the pending references */
175 count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT;
176 /* We allow PTE_FRAG_NR fragments from a PTE page */
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700177 if (page_ref_sub_and_test(page, PTE_FRAG_NR - count)) {
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000178 pgtable_page_dtor(page);
179 free_hot_cold_page(page, 0);
180 }
181}
182
183#else
184static inline void destroy_pagetable_page(struct mm_struct *mm)
185{
186 return;
187}
188#endif
189
Alexander Grafe85a4712009-11-02 12:02:30 +0000190void destroy_context(struct mm_struct *mm)
191{
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000192#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy4b6fad72016-11-30 17:52:05 +1100193 WARN_ON_ONCE(!list_empty(&mm->context.iommu_group_mem_list));
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000194#endif
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000195#ifdef CONFIG_PPC_ICSWX
196 drop_cop(mm->context.acop, mm);
197 kfree(mm->context.cop_lockp);
198 mm->context.cop_lockp = NULL;
199#endif /* CONFIG_PPC_ICSWX */
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000200
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000201 if (radix_enabled())
202 process_tb[mm->context.id].prtb1 = 0;
203 else
204 subpage_prot_free(mm);
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000205 destroy_pagetable_page(mm);
Alexander Grafe85a4712009-11-02 12:02:30 +0000206 __destroy_context(mm->context.id);
Michael Ellerman5e8e7b42011-04-12 19:00:04 +0000207 mm->context.id = MMU_NO_CONTEXT;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000208}
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000209
210#ifdef CONFIG_PPC_RADIX_MMU
211void radix__switch_mmu_context(struct mm_struct *prev, struct mm_struct *next)
212{
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000213 asm volatile("isync": : :"memory");
Aneesh Kumar K.V09cf5bc2016-07-13 15:05:27 +0530214 mtspr(SPRN_PID, next->context.id);
215 asm volatile("isync \n"
216 PPC_SLBIA(0x7)
217 : : :"memory");
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000218}
219#endif