Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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> |
Paul Gortmaker | 4b16f8e | 2011-07-22 18:24:23 -0400 | [diff] [blame] | 21 | #include <linux/export.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/gfp.h> |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 23 | #include <linux/slab.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 24 | |
| 25 | #include <asm/mmu_context.h> |
| 26 | |
Jimi Xenidis | 9d67028 | 2011-09-29 10:55:12 +0000 | [diff] [blame^] | 27 | #include "icswx.h" |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 28 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 29 | static DEFINE_SPINLOCK(mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 30 | static DEFINE_IDA(mmu_context_ida); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 31 | |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 32 | /* |
| 33 | * The proto-VSID space has 2^35 - 1 segments available for user mappings. |
| 34 | * Each segment contains 2^28 bytes. Each context maps 2^44 bytes, |
| 35 | * so we can support 2^19-1 contexts (19 == 35 + 28 - 44). |
| 36 | */ |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 37 | #define MAX_CONTEXT ((1UL << 19) - 1) |
| 38 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 39 | int __init_new_context(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 40 | { |
| 41 | int index; |
| 42 | int err; |
| 43 | |
| 44 | again: |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 45 | if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL)) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 46 | return -ENOMEM; |
| 47 | |
| 48 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 49 | err = ida_get_new_above(&mmu_context_ida, 1, &index); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 50 | spin_unlock(&mmu_context_lock); |
| 51 | |
| 52 | if (err == -EAGAIN) |
| 53 | goto again; |
| 54 | else if (err) |
| 55 | return err; |
| 56 | |
| 57 | if (index > MAX_CONTEXT) { |
Sonny Rao | f86c9747 | 2006-06-27 08:46:09 -0400 | [diff] [blame] | 58 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 59 | ida_remove(&mmu_context_ida, index); |
Sonny Rao | f86c9747 | 2006-06-27 08:46:09 -0400 | [diff] [blame] | 60 | spin_unlock(&mmu_context_lock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 61 | return -ENOMEM; |
| 62 | } |
| 63 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 64 | return index; |
| 65 | } |
| 66 | EXPORT_SYMBOL_GPL(__init_new_context); |
| 67 | |
| 68 | int init_new_context(struct task_struct *tsk, struct mm_struct *mm) |
| 69 | { |
| 70 | int index; |
| 71 | |
| 72 | index = __init_new_context(); |
| 73 | if (index < 0) |
| 74 | return index; |
| 75 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 76 | /* The old code would re-promote on fork, we don't do that |
| 77 | * when using slices as it could cause problem promoting slices |
| 78 | * that have been forced down to 4K |
| 79 | */ |
Stephen Rothwell | e8ff064 | 2007-08-15 16:51:18 +1000 | [diff] [blame] | 80 | if (slice_mm_new_context(mm)) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 81 | slice_set_user_psize(mm, mmu_virtual_psize); |
David Gibson | d28513b | 2009-11-26 18:56:04 +0000 | [diff] [blame] | 82 | subpage_prot_init_new_context(mm); |
Stephen Rothwell | 9dfe5c53 | 2007-08-15 16:33:55 +1000 | [diff] [blame] | 83 | mm->context.id = index; |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 84 | #ifdef CONFIG_PPC_ICSWX |
| 85 | mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL); |
| 86 | if (!mm->context.cop_lockp) { |
| 87 | __destroy_context(index); |
| 88 | subpage_prot_free(mm); |
Stephen Rothwell | 79af218 | 2011-05-06 10:39:08 +1000 | [diff] [blame] | 89 | mm->context.id = MMU_NO_CONTEXT; |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 90 | return -ENOMEM; |
| 91 | } |
| 92 | spin_lock_init(mm->context.cop_lockp); |
| 93 | #endif /* CONFIG_PPC_ICSWX */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 98 | void __destroy_context(int context_id) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 99 | { |
| 100 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 101 | ida_remove(&mmu_context_ida, context_id); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 102 | spin_unlock(&mmu_context_lock); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 103 | } |
| 104 | EXPORT_SYMBOL_GPL(__destroy_context); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 105 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 106 | void destroy_context(struct mm_struct *mm) |
| 107 | { |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 108 | #ifdef CONFIG_PPC_ICSWX |
| 109 | drop_cop(mm->context.acop, mm); |
| 110 | kfree(mm->context.cop_lockp); |
| 111 | mm->context.cop_lockp = NULL; |
| 112 | #endif /* CONFIG_PPC_ICSWX */ |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 113 | __destroy_context(mm->context.id); |
David Gibson | d28513b | 2009-11-26 18:56:04 +0000 | [diff] [blame] | 114 | subpage_prot_free(mm); |
Michael Ellerman | 5e8e7b4 | 2011-04-12 19:00:04 +0000 | [diff] [blame] | 115 | mm->context.id = MMU_NO_CONTEXT; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 116 | } |