blob: d1d1b92c5b9964c3363f84a1719f0759507ba41d [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>
26
Jimi Xenidis9d670282011-09-29 10:55:12 +000027#include "icswx.h"
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000028
Paul Mackerras14cf11a2005-09-26 16:04:21 +100029static DEFINE_SPINLOCK(mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000030static DEFINE_IDA(mmu_context_ida);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031
Alexander Grafe85a4712009-11-02 12:02:30 +000032int __init_new_context(void)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100033{
34 int index;
35 int err;
36
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);
Anton Blanchard7317ac82010-02-07 12:30:12 +000042 err = ida_get_new_above(&mmu_context_ida, 1, &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
Aneesh Kumar K.Vc60ac562013-03-13 03:34:54 +000050 if (index > MAX_USER_CONTEXT) {
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}
59EXPORT_SYMBOL_GPL(__init_new_context);
60
61int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
62{
63 int index;
64
65 index = __init_new_context();
66 if (index < 0)
67 return index;
68
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100069 /* The old code would re-promote on fork, we don't do that
70 * when using slices as it could cause problem promoting slices
71 * that have been forced down to 4K
72 */
Stephen Rothwelle8ff0642007-08-15 16:51:18 +100073 if (slice_mm_new_context(mm))
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100074 slice_set_user_psize(mm, mmu_virtual_psize);
David Gibsond28513b2009-11-26 18:56:04 +000075 subpage_prot_init_new_context(mm);
Stephen Rothwell9dfe5c532007-08-15 16:33:55 +100076 mm->context.id = index;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000077#ifdef CONFIG_PPC_ICSWX
78 mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
79 if (!mm->context.cop_lockp) {
80 __destroy_context(index);
81 subpage_prot_free(mm);
Stephen Rothwell79af2182011-05-06 10:39:08 +100082 mm->context.id = MMU_NO_CONTEXT;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000083 return -ENOMEM;
84 }
85 spin_lock_init(mm->context.cop_lockp);
86#endif /* CONFIG_PPC_ICSWX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100087
88 return 0;
89}
90
Alexander Grafe85a4712009-11-02 12:02:30 +000091void __destroy_context(int context_id)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100092{
93 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000094 ida_remove(&mmu_context_ida, context_id);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100095 spin_unlock(&mmu_context_lock);
Alexander Grafe85a4712009-11-02 12:02:30 +000096}
97EXPORT_SYMBOL_GPL(__destroy_context);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100098
Alexander Grafe85a4712009-11-02 12:02:30 +000099void destroy_context(struct mm_struct *mm)
100{
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000101#ifdef CONFIG_PPC_ICSWX
102 drop_cop(mm->context.acop, mm);
103 kfree(mm->context.cop_lockp);
104 mm->context.cop_lockp = NULL;
105#endif /* CONFIG_PPC_ICSWX */
Alexander Grafe85a4712009-11-02 12:02:30 +0000106 __destroy_context(mm->context.id);
David Gibsond28513b2009-11-26 18:56:04 +0000107 subpage_prot_free(mm);
Michael Ellerman5e8e7b42011-04-12 19:00:04 +0000108 mm->context.id = MMU_NO_CONTEXT;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000109}