blob: 178876aef40f8d6dd5d69b650e986225e0ddfb70 [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
Alexander Grafe85a4712009-11-02 12:02:30 +000033int __init_new_context(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100034{
35 int index;
36 int err;
37
38again:
Anton Blanchard7317ac82010-02-07 12:30:12 +000039 if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL))
Paul Mackerras14cf11a2005-09-26 16:04:21 +100040 return -ENOMEM;
41
42 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000043 err = ida_get_new_above(&mmu_context_ida, 1, &index);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100044 spin_unlock(&mmu_context_lock);
45
46 if (err == -EAGAIN)
47 goto again;
48 else if (err)
49 return err;
50
Aneesh Kumar K.Vc60ac562013-03-13 03:34:54 +000051 if (index > MAX_USER_CONTEXT) {
Sonny Raof86c97472006-06-27 08:46:09 -040052 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000053 ida_remove(&mmu_context_ida, index);
Sonny Raof86c97472006-06-27 08:46:09 -040054 spin_unlock(&mmu_context_lock);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100055 return -ENOMEM;
56 }
57
Alexander Grafe85a4712009-11-02 12:02:30 +000058 return index;
59}
60EXPORT_SYMBOL_GPL(__init_new_context);
61
62int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
63{
64 int index;
65
66 index = __init_new_context();
67 if (index < 0)
68 return index;
69
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100070 /* The old code would re-promote on fork, we don't do that
71 * when using slices as it could cause problem promoting slices
72 * that have been forced down to 4K
73 */
Stephen Rothwelle8ff0642007-08-15 16:51:18 +100074 if (slice_mm_new_context(mm))
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100075 slice_set_user_psize(mm, mmu_virtual_psize);
David Gibsond28513b2009-11-26 18:56:04 +000076 subpage_prot_init_new_context(mm);
Stephen Rothwell9dfe5c532007-08-15 16:33:55 +100077 mm->context.id = index;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000078#ifdef CONFIG_PPC_ICSWX
79 mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
80 if (!mm->context.cop_lockp) {
81 __destroy_context(index);
82 subpage_prot_free(mm);
Stephen Rothwell79af2182011-05-06 10:39:08 +100083 mm->context.id = MMU_NO_CONTEXT;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000084 return -ENOMEM;
85 }
86 spin_lock_init(mm->context.cop_lockp);
87#endif /* CONFIG_PPC_ICSWX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100088
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +000089#ifdef CONFIG_PPC_64K_PAGES
90 mm->context.pte_frag = NULL;
91#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +100092 return 0;
93}
94
Alexander Grafe85a4712009-11-02 12:02:30 +000095void __destroy_context(int context_id)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100096{
97 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000098 ida_remove(&mmu_context_ida, context_id);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100099 spin_unlock(&mmu_context_lock);
Alexander Grafe85a4712009-11-02 12:02:30 +0000100}
101EXPORT_SYMBOL_GPL(__destroy_context);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000102
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000103#ifdef CONFIG_PPC_64K_PAGES
104static void destroy_pagetable_page(struct mm_struct *mm)
105{
106 int count;
107 void *pte_frag;
108 struct page *page;
109
110 pte_frag = mm->context.pte_frag;
111 if (!pte_frag)
112 return;
113
114 page = virt_to_page(pte_frag);
115 /* drop all the pending references */
116 count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT;
117 /* We allow PTE_FRAG_NR fragments from a PTE page */
118 count = atomic_sub_return(PTE_FRAG_NR - count, &page->_count);
119 if (!count) {
120 pgtable_page_dtor(page);
121 free_hot_cold_page(page, 0);
122 }
123}
124
125#else
126static inline void destroy_pagetable_page(struct mm_struct *mm)
127{
128 return;
129}
130#endif
131
132
Alexander Grafe85a4712009-11-02 12:02:30 +0000133void destroy_context(struct mm_struct *mm)
134{
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000135
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000136#ifdef CONFIG_PPC_ICSWX
137 drop_cop(mm->context.acop, mm);
138 kfree(mm->context.cop_lockp);
139 mm->context.cop_lockp = NULL;
140#endif /* CONFIG_PPC_ICSWX */
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000141
142 destroy_pagetable_page(mm);
Alexander Grafe85a4712009-11-02 12:02:30 +0000143 __destroy_context(mm->context.id);
David Gibsond28513b2009-11-26 18:56:04 +0000144 subpage_prot_free(mm);
Michael Ellerman5e8e7b42011-04-12 19:00:04 +0000145 mm->context.id = MMU_NO_CONTEXT;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000146}