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> |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 26 | #include <asm/pgalloc.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 27 | |
Jimi Xenidis | 9d67028 | 2011-09-29 10:55:12 +0000 | [diff] [blame] | 28 | #include "icswx.h" |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 29 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 30 | static DEFINE_SPINLOCK(mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 31 | static DEFINE_IDA(mmu_context_ida); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 32 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 33 | int __init_new_context(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 34 | { |
| 35 | int index; |
| 36 | int err; |
| 37 | |
| 38 | again: |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 39 | if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL)) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 40 | return -ENOMEM; |
| 41 | |
| 42 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 43 | err = ida_get_new_above(&mmu_context_ida, 1, &index); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 44 | spin_unlock(&mmu_context_lock); |
| 45 | |
| 46 | if (err == -EAGAIN) |
| 47 | goto again; |
| 48 | else if (err) |
| 49 | return err; |
| 50 | |
Aneesh Kumar K.V | c60ac56 | 2013-03-13 03:34:54 +0000 | [diff] [blame] | 51 | if (index > MAX_USER_CONTEXT) { |
Sonny Rao | f86c9747 | 2006-06-27 08:46:09 -0400 | [diff] [blame] | 52 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 53 | ida_remove(&mmu_context_ida, index); |
Sonny Rao | f86c9747 | 2006-06-27 08:46:09 -0400 | [diff] [blame] | 54 | spin_unlock(&mmu_context_lock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 55 | return -ENOMEM; |
| 56 | } |
| 57 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 58 | return index; |
| 59 | } |
| 60 | EXPORT_SYMBOL_GPL(__init_new_context); |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 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 | } |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 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 | |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 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 |
Aneesh Kumar K.V | 2d56653 | 2016-05-02 16:21:50 +0530 | [diff] [blame] | 88 | * |
| 89 | * For book3s we have MMU_NO_CONTEXT set to be ~0. Hence check |
| 90 | * explicitly against context.id == 0. This ensures that we |
| 91 | * properly initialize context slice details for newly allocated |
| 92 | * mm's (which will have id == 0) and don't alter context slice |
| 93 | * inherited via fork (which will have id != 0). |
| 94 | * |
| 95 | * We should not be calling init_new_context() on init_mm. Hence a |
| 96 | * check against 0 is ok. |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 97 | */ |
Aneesh Kumar K.V | 2d56653 | 2016-05-02 16:21:50 +0530 | [diff] [blame] | 98 | if (mm->context.id == 0) |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 99 | slice_set_user_psize(mm, mmu_virtual_psize); |
| 100 | subpage_prot_init_new_context(mm); |
| 101 | } |
Stephen Rothwell | 9dfe5c53 | 2007-08-15 16:33:55 +1000 | [diff] [blame] | 102 | mm->context.id = index; |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 103 | #ifdef CONFIG_PPC_ICSWX |
| 104 | mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL); |
| 105 | if (!mm->context.cop_lockp) { |
| 106 | __destroy_context(index); |
| 107 | subpage_prot_free(mm); |
Stephen Rothwell | 79af218 | 2011-05-06 10:39:08 +1000 | [diff] [blame] | 108 | mm->context.id = MMU_NO_CONTEXT; |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 109 | return -ENOMEM; |
| 110 | } |
| 111 | spin_lock_init(mm->context.cop_lockp); |
| 112 | #endif /* CONFIG_PPC_ICSWX */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 113 | |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 114 | #ifdef CONFIG_PPC_64K_PAGES |
| 115 | mm->context.pte_frag = NULL; |
| 116 | #endif |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 117 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
| 118 | mm_iommu_init(&mm->context); |
| 119 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 120 | return 0; |
| 121 | } |
| 122 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 123 | void __destroy_context(int context_id) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 124 | { |
| 125 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 126 | ida_remove(&mmu_context_ida, context_id); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 127 | spin_unlock(&mmu_context_lock); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 128 | } |
| 129 | EXPORT_SYMBOL_GPL(__destroy_context); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 130 | |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 131 | #ifdef CONFIG_PPC_64K_PAGES |
| 132 | static void destroy_pagetable_page(struct mm_struct *mm) |
| 133 | { |
| 134 | int count; |
| 135 | void *pte_frag; |
| 136 | struct page *page; |
| 137 | |
| 138 | pte_frag = mm->context.pte_frag; |
| 139 | if (!pte_frag) |
| 140 | return; |
| 141 | |
| 142 | page = virt_to_page(pte_frag); |
| 143 | /* drop all the pending references */ |
| 144 | count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT; |
| 145 | /* We allow PTE_FRAG_NR fragments from a PTE page */ |
Joonsoo Kim | fe896d1 | 2016-03-17 14:19:26 -0700 | [diff] [blame] | 146 | if (page_ref_sub_and_test(page, PTE_FRAG_NR - count)) { |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 147 | pgtable_page_dtor(page); |
| 148 | free_hot_cold_page(page, 0); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | #else |
| 153 | static inline void destroy_pagetable_page(struct mm_struct *mm) |
| 154 | { |
| 155 | return; |
| 156 | } |
| 157 | #endif |
| 158 | |
| 159 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 160 | void destroy_context(struct mm_struct *mm) |
| 161 | { |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 162 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
| 163 | mm_iommu_cleanup(&mm->context); |
| 164 | #endif |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 165 | |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 166 | #ifdef CONFIG_PPC_ICSWX |
| 167 | drop_cop(mm->context.acop, mm); |
| 168 | kfree(mm->context.cop_lockp); |
| 169 | mm->context.cop_lockp = NULL; |
| 170 | #endif /* CONFIG_PPC_ICSWX */ |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 171 | |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 172 | if (radix_enabled()) |
| 173 | process_tb[mm->context.id].prtb1 = 0; |
| 174 | else |
| 175 | subpage_prot_free(mm); |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 176 | destroy_pagetable_page(mm); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 177 | __destroy_context(mm->context.id); |
Michael Ellerman | 5e8e7b4 | 2011-04-12 19:00:04 +0000 | [diff] [blame] | 178 | mm->context.id = MMU_NO_CONTEXT; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 179 | } |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 180 | |
| 181 | #ifdef CONFIG_PPC_RADIX_MMU |
| 182 | void radix__switch_mmu_context(struct mm_struct *prev, struct mm_struct *next) |
| 183 | { |
| 184 | mtspr(SPRN_PID, next->context.id); |
| 185 | asm volatile("isync": : :"memory"); |
| 186 | } |
| 187 | #endif |