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 | |
Michael Ellerman | c1ff840 | 2017-03-29 22:10:45 +1100 | [diff] [blame^] | 33 | static int alloc_context_id(int min_id, int max_id) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 34 | { |
Michael Ellerman | c1ff840 | 2017-03-29 22:10:45 +1100 | [diff] [blame^] | 35 | int index, err; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 36 | |
| 37 | again: |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 38 | if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL)) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 39 | return -ENOMEM; |
| 40 | |
| 41 | spin_lock(&mmu_context_lock); |
Michael Ellerman | c1ff840 | 2017-03-29 22:10:45 +1100 | [diff] [blame^] | 42 | err = ida_get_new_above(&mmu_context_ida, min_id, &index); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 43 | spin_unlock(&mmu_context_lock); |
| 44 | |
| 45 | if (err == -EAGAIN) |
| 46 | goto again; |
| 47 | else if (err) |
| 48 | return err; |
| 49 | |
Michael Ellerman | c1ff840 | 2017-03-29 22:10:45 +1100 | [diff] [blame^] | 50 | if (index > max_id) { |
Sonny Rao | f86c9747 | 2006-06-27 08:46:09 -0400 | [diff] [blame] | 51 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 52 | ida_remove(&mmu_context_ida, index); |
Sonny Rao | f86c9747 | 2006-06-27 08:46:09 -0400 | [diff] [blame] | 53 | spin_unlock(&mmu_context_lock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 54 | return -ENOMEM; |
| 55 | } |
| 56 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 57 | return index; |
| 58 | } |
Michael Ellerman | a336f2f | 2017-03-29 22:00:46 +1100 | [diff] [blame] | 59 | |
| 60 | int hash__alloc_context_id(void) |
| 61 | { |
Michael Ellerman | c1ff840 | 2017-03-29 22:10:45 +1100 | [diff] [blame^] | 62 | return alloc_context_id(1, MAX_USER_CONTEXT); |
Michael Ellerman | a336f2f | 2017-03-29 22:00:46 +1100 | [diff] [blame] | 63 | } |
| 64 | EXPORT_SYMBOL_GPL(hash__alloc_context_id); |
| 65 | |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 66 | static int radix__init_new_context(struct mm_struct *mm, int index) |
| 67 | { |
| 68 | unsigned long rts_field; |
| 69 | |
| 70 | /* |
| 71 | * set the process table entry, |
| 72 | */ |
Aneesh Kumar K.V | b23d9c5 | 2016-06-17 11:40:36 +0530 | [diff] [blame] | 73 | rts_field = radix__get_tree_size(); |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 74 | process_tb[index].prtb0 = cpu_to_be64(rts_field | __pa(mm->pgd) | RADIX_PGD_INDEX_SIZE); |
| 75 | return 0; |
| 76 | } |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 77 | |
| 78 | int init_new_context(struct task_struct *tsk, struct mm_struct *mm) |
| 79 | { |
| 80 | int index; |
| 81 | |
Michael Ellerman | c1ff840 | 2017-03-29 22:10:45 +1100 | [diff] [blame^] | 82 | index = hash__alloc_context_id(); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 83 | if (index < 0) |
| 84 | return index; |
| 85 | |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 86 | if (radix_enabled()) { |
| 87 | radix__init_new_context(mm, index); |
| 88 | } else { |
| 89 | |
| 90 | /* The old code would re-promote on fork, we don't do that |
| 91 | * when using slices as it could cause problem promoting slices |
| 92 | * that have been forced down to 4K |
Aneesh Kumar K.V | 2d56653 | 2016-05-02 16:21:50 +0530 | [diff] [blame] | 93 | * |
| 94 | * For book3s we have MMU_NO_CONTEXT set to be ~0. Hence check |
| 95 | * explicitly against context.id == 0. This ensures that we |
| 96 | * properly initialize context slice details for newly allocated |
| 97 | * mm's (which will have id == 0) and don't alter context slice |
| 98 | * inherited via fork (which will have id != 0). |
| 99 | * |
| 100 | * We should not be calling init_new_context() on init_mm. Hence a |
| 101 | * check against 0 is ok. |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 102 | */ |
Aneesh Kumar K.V | 2d56653 | 2016-05-02 16:21:50 +0530 | [diff] [blame] | 103 | if (mm->context.id == 0) |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 104 | slice_set_user_psize(mm, mmu_virtual_psize); |
| 105 | subpage_prot_init_new_context(mm); |
| 106 | } |
Stephen Rothwell | 9dfe5c53 | 2007-08-15 16:33:55 +1000 | [diff] [blame] | 107 | mm->context.id = index; |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 108 | #ifdef CONFIG_PPC_ICSWX |
| 109 | mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL); |
| 110 | if (!mm->context.cop_lockp) { |
| 111 | __destroy_context(index); |
| 112 | subpage_prot_free(mm); |
Stephen Rothwell | 79af218 | 2011-05-06 10:39:08 +1000 | [diff] [blame] | 113 | mm->context.id = MMU_NO_CONTEXT; |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 114 | return -ENOMEM; |
| 115 | } |
| 116 | spin_lock_init(mm->context.cop_lockp); |
| 117 | #endif /* CONFIG_PPC_ICSWX */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 118 | |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 119 | #ifdef CONFIG_PPC_64K_PAGES |
| 120 | mm->context.pte_frag = NULL; |
| 121 | #endif |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 122 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
Alexey Kardashevskiy | 88f54a3 | 2016-11-30 17:51:59 +1100 | [diff] [blame] | 123 | mm_iommu_init(mm); |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 124 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 125 | return 0; |
| 126 | } |
| 127 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 128 | void __destroy_context(int context_id) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 129 | { |
| 130 | spin_lock(&mmu_context_lock); |
Anton Blanchard | 7317ac8 | 2010-02-07 12:30:12 +0000 | [diff] [blame] | 131 | ida_remove(&mmu_context_ida, context_id); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 132 | spin_unlock(&mmu_context_lock); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 133 | } |
| 134 | EXPORT_SYMBOL_GPL(__destroy_context); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 135 | |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 136 | #ifdef CONFIG_PPC_64K_PAGES |
| 137 | static void destroy_pagetable_page(struct mm_struct *mm) |
| 138 | { |
| 139 | int count; |
| 140 | void *pte_frag; |
| 141 | struct page *page; |
| 142 | |
| 143 | pte_frag = mm->context.pte_frag; |
| 144 | if (!pte_frag) |
| 145 | return; |
| 146 | |
| 147 | page = virt_to_page(pte_frag); |
| 148 | /* drop all the pending references */ |
| 149 | count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT; |
| 150 | /* We allow PTE_FRAG_NR fragments from a PTE page */ |
Joonsoo Kim | fe896d1 | 2016-03-17 14:19:26 -0700 | [diff] [blame] | 151 | 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] | 152 | pgtable_page_dtor(page); |
| 153 | free_hot_cold_page(page, 0); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | #else |
| 158 | static inline void destroy_pagetable_page(struct mm_struct *mm) |
| 159 | { |
| 160 | return; |
| 161 | } |
| 162 | #endif |
| 163 | |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 164 | void destroy_context(struct mm_struct *mm) |
| 165 | { |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 166 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
Alexey Kardashevskiy | 4b6fad7 | 2016-11-30 17:52:05 +1100 | [diff] [blame] | 167 | WARN_ON_ONCE(!list_empty(&mm->context.iommu_group_mem_list)); |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 168 | #endif |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 169 | #ifdef CONFIG_PPC_ICSWX |
| 170 | drop_cop(mm->context.acop, mm); |
| 171 | kfree(mm->context.cop_lockp); |
| 172 | mm->context.cop_lockp = NULL; |
| 173 | #endif /* CONFIG_PPC_ICSWX */ |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 174 | |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 175 | if (radix_enabled()) |
| 176 | process_tb[mm->context.id].prtb1 = 0; |
| 177 | else |
| 178 | subpage_prot_free(mm); |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 179 | destroy_pagetable_page(mm); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 180 | __destroy_context(mm->context.id); |
Michael Ellerman | 5e8e7b4 | 2011-04-12 19:00:04 +0000 | [diff] [blame] | 181 | mm->context.id = MMU_NO_CONTEXT; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 182 | } |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 183 | |
| 184 | #ifdef CONFIG_PPC_RADIX_MMU |
| 185 | void radix__switch_mmu_context(struct mm_struct *prev, struct mm_struct *next) |
| 186 | { |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 187 | asm volatile("isync": : :"memory"); |
Aneesh Kumar K.V | 09cf5bc | 2016-07-13 15:05:27 +0530 | [diff] [blame] | 188 | mtspr(SPRN_PID, next->context.id); |
| 189 | asm volatile("isync \n" |
| 190 | PPC_SLBIA(0x7) |
| 191 | : : :"memory"); |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 192 | } |
| 193 | #endif |