Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 2 | /* |
| 3 | * address space "slices" (meta-segments) support |
| 4 | * |
| 5 | * Copyright (C) 2007 Benjamin Herrenschmidt, IBM Corporation. |
| 6 | * |
| 7 | * Based on hugetlb implementation |
| 8 | * |
| 9 | * Copyright (C) 2003 David Gibson, IBM Corporation. |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #undef DEBUG |
| 13 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/mm.h> |
| 16 | #include <linux/pagemap.h> |
| 17 | #include <linux/err.h> |
| 18 | #include <linux/spinlock.h> |
Paul Gortmaker | 4b16f8e | 2011-07-22 18:24:23 -0400 | [diff] [blame] | 19 | #include <linux/export.h> |
Anton Blanchard | 1217d34 | 2014-08-20 08:55:19 +1000 | [diff] [blame] | 20 | #include <linux/hugetlb.h> |
Christophe Leroy | aa5456a | 2018-06-22 13:49:48 +0000 | [diff] [blame] | 21 | #include <linux/sched/mm.h> |
Aneesh Kumar K.V | 3b4d07d | 2019-02-26 10:09:35 +0530 | [diff] [blame] | 22 | #include <linux/security.h> |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 23 | #include <asm/mman.h> |
| 24 | #include <asm/mmu.h> |
Ian Munsie | be3ebfe | 2014-10-08 19:54:52 +1100 | [diff] [blame] | 25 | #include <asm/copro.h> |
Anton Blanchard | 1217d34 | 2014-08-20 08:55:19 +1000 | [diff] [blame] | 26 | #include <asm/hugetlb.h> |
Aneesh Kumar K.V | 032900e | 2018-04-10 14:21:26 +0530 | [diff] [blame] | 27 | #include <asm/mmu_context.h> |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 28 | |
Roel Kluin | f7a75f0 | 2007-10-16 23:30:25 -0700 | [diff] [blame] | 29 | static DEFINE_SPINLOCK(slice_convert_lock); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 30 | |
| 31 | #ifdef DEBUG |
| 32 | int _slice_debug = 1; |
| 33 | |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 34 | static void slice_print_mask(const char *label, const struct slice_mask *mask) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 35 | { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 36 | if (!_slice_debug) |
| 37 | return; |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 38 | pr_devel("%s low_slice: %*pbl\n", label, |
| 39 | (int)SLICE_NUM_LOW, &mask->low_slices); |
| 40 | pr_devel("%s high_slice: %*pbl\n", label, |
| 41 | (int)SLICE_NUM_HIGH, mask->high_slices); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 42 | } |
| 43 | |
Aneesh Kumar K.V | 302413c | 2017-03-22 09:06:52 +0530 | [diff] [blame] | 44 | #define slice_dbg(fmt...) do { if (_slice_debug) pr_devel(fmt); } while (0) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 45 | |
| 46 | #else |
| 47 | |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 48 | static void slice_print_mask(const char *label, const struct slice_mask *mask) {} |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 49 | #define slice_dbg(fmt...) |
| 50 | |
| 51 | #endif |
| 52 | |
Michael Ellerman | 91a063c | 2019-12-21 14:16:54 +1100 | [diff] [blame] | 53 | static inline notrace bool slice_addr_is_low(unsigned long addr) |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 54 | { |
| 55 | u64 tmp = (u64)addr; |
| 56 | |
| 57 | return tmp < SLICE_LOW_TOP; |
| 58 | } |
| 59 | |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 60 | static void slice_range_to_mask(unsigned long start, unsigned long len, |
| 61 | struct slice_mask *ret) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 62 | { |
| 63 | unsigned long end = start + len - 1; |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 64 | |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 65 | ret->low_slices = 0; |
Christophe Leroy | db3a528 | 2018-02-22 15:27:24 +0100 | [diff] [blame] | 66 | if (SLICE_NUM_HIGH) |
| 67 | bitmap_zero(ret->high_slices, SLICE_NUM_HIGH); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 68 | |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 69 | if (slice_addr_is_low(start)) { |
Christophe Leroy | db3a528 | 2018-02-22 15:27:24 +0100 | [diff] [blame] | 70 | unsigned long mend = min(end, |
| 71 | (unsigned long)(SLICE_LOW_TOP - 1)); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 72 | |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 73 | ret->low_slices = (1u << (GET_LOW_SLICE_INDEX(mend) + 1)) |
Aneesh Kumar K.V | 98beda7 | 2017-03-21 22:59:52 +0530 | [diff] [blame] | 74 | - (1u << GET_LOW_SLICE_INDEX(start)); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 75 | } |
| 76 | |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 77 | if (SLICE_NUM_HIGH && !slice_addr_is_low(end)) { |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 78 | unsigned long start_index = GET_HIGH_SLICE_INDEX(start); |
| 79 | unsigned long align_end = ALIGN(end, (1UL << SLICE_HIGH_SHIFT)); |
| 80 | unsigned long count = GET_HIGH_SLICE_INDEX(align_end) - start_index; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 81 | |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 82 | bitmap_set(ret->high_slices, start_index, count); |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 83 | } |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static int slice_area_is_free(struct mm_struct *mm, unsigned long addr, |
| 87 | unsigned long len) |
| 88 | { |
| 89 | struct vm_area_struct *vma; |
| 90 | |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 91 | if ((mm_ctx_slb_addr_limit(&mm->context) - len) < addr) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 92 | return 0; |
| 93 | vma = find_vma(mm, addr); |
Hugh Dickins | 1be7107 | 2017-06-19 04:03:24 -0700 | [diff] [blame] | 94 | return (!vma || (addr + len) <= vm_start_gap(vma)); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static int slice_low_has_vma(struct mm_struct *mm, unsigned long slice) |
| 98 | { |
| 99 | return !slice_area_is_free(mm, slice << SLICE_LOW_SHIFT, |
| 100 | 1ul << SLICE_LOW_SHIFT); |
| 101 | } |
| 102 | |
| 103 | static int slice_high_has_vma(struct mm_struct *mm, unsigned long slice) |
| 104 | { |
| 105 | unsigned long start = slice << SLICE_HIGH_SHIFT; |
| 106 | unsigned long end = start + (1ul << SLICE_HIGH_SHIFT); |
| 107 | |
| 108 | /* Hack, so that each addresses is controlled by exactly one |
| 109 | * of the high or low area bitmaps, the first high area starts |
| 110 | * at 4GB, not 0 */ |
| 111 | if (start == 0) |
Christophe Leroy | b4baad0 | 2019-04-25 14:29:32 +0000 | [diff] [blame] | 112 | start = (unsigned long)SLICE_LOW_TOP; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 113 | |
| 114 | return !slice_area_is_free(mm, start, end - start); |
| 115 | } |
| 116 | |
Aneesh Kumar K.V | 7a06c66 | 2017-11-10 10:25:07 +0530 | [diff] [blame] | 117 | static void slice_mask_for_free(struct mm_struct *mm, struct slice_mask *ret, |
| 118 | unsigned long high_limit) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 119 | { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 120 | unsigned long i; |
| 121 | |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 122 | ret->low_slices = 0; |
Christophe Leroy | db3a528 | 2018-02-22 15:27:24 +0100 | [diff] [blame] | 123 | if (SLICE_NUM_HIGH) |
| 124 | bitmap_zero(ret->high_slices, SLICE_NUM_HIGH); |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 125 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 126 | for (i = 0; i < SLICE_NUM_LOW; i++) |
| 127 | if (!slice_low_has_vma(mm, i)) |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 128 | ret->low_slices |= 1u << i; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 129 | |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 130 | if (slice_addr_is_low(high_limit - 1)) |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 131 | return; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 132 | |
Aneesh Kumar K.V | 7a06c66 | 2017-11-10 10:25:07 +0530 | [diff] [blame] | 133 | for (i = 0; i < GET_HIGH_SLICE_INDEX(high_limit); i++) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 134 | if (!slice_high_has_vma(mm, i)) |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 135 | __set_bit(i, ret->high_slices); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 136 | } |
| 137 | |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 138 | static bool slice_check_range_fits(struct mm_struct *mm, |
| 139 | const struct slice_mask *available, |
| 140 | unsigned long start, unsigned long len) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 141 | { |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 142 | unsigned long end = start + len - 1; |
| 143 | u64 low_slices = 0; |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 144 | |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 145 | if (slice_addr_is_low(start)) { |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 146 | unsigned long mend = min(end, |
| 147 | (unsigned long)(SLICE_LOW_TOP - 1)); |
Christophe Leroy | db3a528 | 2018-02-22 15:27:24 +0100 | [diff] [blame] | 148 | |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 149 | low_slices = (1u << (GET_LOW_SLICE_INDEX(mend) + 1)) |
| 150 | - (1u << GET_LOW_SLICE_INDEX(start)); |
| 151 | } |
| 152 | if ((low_slices & available->low_slices) != low_slices) |
| 153 | return false; |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 154 | |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 155 | if (SLICE_NUM_HIGH && !slice_addr_is_low(end)) { |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 156 | unsigned long start_index = GET_HIGH_SLICE_INDEX(start); |
| 157 | unsigned long align_end = ALIGN(end, (1UL << SLICE_HIGH_SHIFT)); |
| 158 | unsigned long count = GET_HIGH_SLICE_INDEX(align_end) - start_index; |
| 159 | unsigned long i; |
| 160 | |
| 161 | for (i = start_index; i < start_index + count; i++) { |
| 162 | if (!test_bit(i, available->high_slices)) |
| 163 | return false; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | return true; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 168 | } |
| 169 | |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 170 | static void slice_flush_segments(void *parm) |
| 171 | { |
| 172 | #ifdef CONFIG_PPC64 |
| 173 | struct mm_struct *mm = parm; |
| 174 | unsigned long flags; |
| 175 | |
| 176 | if (mm != current->active_mm) |
| 177 | return; |
| 178 | |
| 179 | copy_mm_to_paca(current->active_mm); |
| 180 | |
| 181 | local_irq_save(flags); |
Nicholas Piggin | 94ee4272 | 2018-10-03 00:27:58 +1000 | [diff] [blame] | 182 | slb_flush_and_restore_bolted(); |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 183 | local_irq_restore(flags); |
| 184 | #endif |
| 185 | } |
| 186 | |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 187 | static void slice_convert(struct mm_struct *mm, |
| 188 | const struct slice_mask *mask, int psize) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 189 | { |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 190 | int index, mask_index; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 191 | /* Write the new slice psize bits */ |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 192 | unsigned char *hpsizes, *lpsizes; |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 193 | struct slice_mask *psize_mask, *old_mask; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 194 | unsigned long i, flags; |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 195 | int old_psize; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 196 | |
| 197 | slice_dbg("slice_convert(mm=%p, psize=%d)\n", mm, psize); |
| 198 | slice_print_mask(" mask", mask); |
| 199 | |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 200 | psize_mask = slice_mask_for_size(&mm->context, psize); |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 201 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 202 | /* We need to use a spinlock here to protect against |
| 203 | * concurrent 64k -> 4k demotion ... |
| 204 | */ |
| 205 | spin_lock_irqsave(&slice_convert_lock, flags); |
| 206 | |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 207 | lpsizes = mm_ctx_low_slices(&mm->context); |
Nicholas Piggin | 5a807e0 | 2018-03-07 11:37:10 +1000 | [diff] [blame] | 208 | for (i = 0; i < SLICE_NUM_LOW; i++) { |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 209 | if (!(mask->low_slices & (1u << i))) |
Nicholas Piggin | 5a807e0 | 2018-03-07 11:37:10 +1000 | [diff] [blame] | 210 | continue; |
| 211 | |
| 212 | mask_index = i & 0x1; |
| 213 | index = i >> 1; |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 214 | |
| 215 | /* Update the slice_mask */ |
| 216 | old_psize = (lpsizes[index] >> (mask_index * 4)) & 0xf; |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 217 | old_mask = slice_mask_for_size(&mm->context, old_psize); |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 218 | old_mask->low_slices &= ~(1u << i); |
| 219 | psize_mask->low_slices |= 1u << i; |
| 220 | |
| 221 | /* Update the sizes array */ |
Nicholas Piggin | 5a807e0 | 2018-03-07 11:37:10 +1000 | [diff] [blame] | 222 | lpsizes[index] = (lpsizes[index] & ~(0xf << (mask_index * 4))) | |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 223 | (((unsigned long)psize) << (mask_index * 4)); |
Nicholas Piggin | 5a807e0 | 2018-03-07 11:37:10 +1000 | [diff] [blame] | 224 | } |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 225 | |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 226 | hpsizes = mm_ctx_high_slices(&mm->context); |
| 227 | for (i = 0; i < GET_HIGH_SLICE_INDEX(mm_ctx_slb_addr_limit(&mm->context)); i++) { |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 228 | if (!test_bit(i, mask->high_slices)) |
Nicholas Piggin | 5a807e0 | 2018-03-07 11:37:10 +1000 | [diff] [blame] | 229 | continue; |
| 230 | |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 231 | mask_index = i & 0x1; |
| 232 | index = i >> 1; |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 233 | |
| 234 | /* Update the slice_mask */ |
| 235 | old_psize = (hpsizes[index] >> (mask_index * 4)) & 0xf; |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 236 | old_mask = slice_mask_for_size(&mm->context, old_psize); |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 237 | __clear_bit(i, old_mask->high_slices); |
| 238 | __set_bit(i, psize_mask->high_slices); |
| 239 | |
| 240 | /* Update the sizes array */ |
Nicholas Piggin | 5a807e0 | 2018-03-07 11:37:10 +1000 | [diff] [blame] | 241 | hpsizes[index] = (hpsizes[index] & ~(0xf << (mask_index * 4))) | |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 242 | (((unsigned long)psize) << (mask_index * 4)); |
| 243 | } |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 244 | |
| 245 | slice_dbg(" lsps=%lx, hsps=%lx\n", |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 246 | (unsigned long)mm_ctx_low_slices(&mm->context), |
| 247 | (unsigned long)mm_ctx_high_slices(&mm->context)); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 248 | |
| 249 | spin_unlock_irqrestore(&slice_convert_lock, flags); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 250 | |
Ian Munsie | be3ebfe | 2014-10-08 19:54:52 +1100 | [diff] [blame] | 251 | copro_flush_all_slbs(mm); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 252 | } |
| 253 | |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 254 | /* |
| 255 | * Compute which slice addr is part of; |
| 256 | * set *boundary_addr to the start or end boundary of that slice |
| 257 | * (depending on 'end' parameter); |
| 258 | * return boolean indicating if the slice is marked as available in the |
| 259 | * 'available' slice_mark. |
| 260 | */ |
| 261 | static bool slice_scan_available(unsigned long addr, |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 262 | const struct slice_mask *available, |
| 263 | int end, unsigned long *boundary_addr) |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 264 | { |
| 265 | unsigned long slice; |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 266 | if (slice_addr_is_low(addr)) { |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 267 | slice = GET_LOW_SLICE_INDEX(addr); |
| 268 | *boundary_addr = (slice + end) << SLICE_LOW_SHIFT; |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 269 | return !!(available->low_slices & (1u << slice)); |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 270 | } else { |
| 271 | slice = GET_HIGH_SLICE_INDEX(addr); |
| 272 | *boundary_addr = (slice + end) ? |
| 273 | ((slice + end) << SLICE_HIGH_SHIFT) : SLICE_LOW_TOP; |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 274 | return !!test_bit(slice, available->high_slices); |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 278 | static unsigned long slice_find_area_bottomup(struct mm_struct *mm, |
| 279 | unsigned long len, |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 280 | const struct slice_mask *available, |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 281 | int psize, unsigned long high_limit) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 282 | { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 283 | int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT); |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 284 | unsigned long addr, found, next_end; |
| 285 | struct vm_unmapped_area_info info; |
| 286 | |
| 287 | info.flags = 0; |
| 288 | info.length = len; |
| 289 | info.align_mask = PAGE_MASK & ((1ul << pshift) - 1); |
| 290 | info.align_offset = 0; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 291 | |
Michel Lespinasse | 34d0717 | 2013-04-29 11:53:52 -0700 | [diff] [blame] | 292 | addr = TASK_UNMAPPED_BASE; |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 293 | /* |
| 294 | * Check till the allow max value for this mmap request |
| 295 | */ |
| 296 | while (addr < high_limit) { |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 297 | info.low_limit = addr; |
| 298 | if (!slice_scan_available(addr, available, 1, &addr)) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 299 | continue; |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 300 | |
| 301 | next_slice: |
| 302 | /* |
| 303 | * At this point [info.low_limit; addr) covers |
| 304 | * available slices only and ends at a slice boundary. |
| 305 | * Check if we need to reduce the range, or if we can |
| 306 | * extend it to cover the next available slice. |
| 307 | */ |
Aneesh Kumar K.V | be77e99 | 2017-04-14 00:48:21 +0530 | [diff] [blame] | 308 | if (addr >= high_limit) |
| 309 | addr = high_limit; |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 310 | else if (slice_scan_available(addr, available, 1, &next_end)) { |
| 311 | addr = next_end; |
| 312 | goto next_slice; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 313 | } |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 314 | info.high_limit = addr; |
| 315 | |
| 316 | found = vm_unmapped_area(&info); |
| 317 | if (!(found & ~PAGE_MASK)) |
| 318 | return found; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 319 | } |
| 320 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 321 | return -ENOMEM; |
| 322 | } |
| 323 | |
| 324 | static unsigned long slice_find_area_topdown(struct mm_struct *mm, |
| 325 | unsigned long len, |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 326 | const struct slice_mask *available, |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 327 | int psize, unsigned long high_limit) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 328 | { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 329 | int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT); |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 330 | unsigned long addr, found, prev; |
| 331 | struct vm_unmapped_area_info info; |
Aneesh Kumar K.V | 3b4d07d | 2019-02-26 10:09:35 +0530 | [diff] [blame] | 332 | unsigned long min_addr = max(PAGE_SIZE, mmap_min_addr); |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 333 | |
| 334 | info.flags = VM_UNMAPPED_AREA_TOPDOWN; |
| 335 | info.length = len; |
| 336 | info.align_mask = PAGE_MASK & ((1ul << pshift) - 1); |
| 337 | info.align_offset = 0; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 338 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 339 | addr = mm->mmap_base; |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 340 | /* |
| 341 | * If we are trying to allocate above DEFAULT_MAP_WINDOW |
| 342 | * Add the different to the mmap_base. |
| 343 | * Only for that request for which high_limit is above |
| 344 | * DEFAULT_MAP_WINDOW we should apply this. |
| 345 | */ |
Nicholas Piggin | 4722476 | 2017-11-10 04:27:40 +1100 | [diff] [blame] | 346 | if (high_limit > DEFAULT_MAP_WINDOW) |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 347 | addr += mm_ctx_slb_addr_limit(&mm->context) - DEFAULT_MAP_WINDOW; |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 348 | |
Aneesh Kumar K.V | 3b4d07d | 2019-02-26 10:09:35 +0530 | [diff] [blame] | 349 | while (addr > min_addr) { |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 350 | info.high_limit = addr; |
| 351 | if (!slice_scan_available(addr - 1, available, 0, &addr)) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 352 | continue; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 353 | |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 354 | prev_slice: |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 355 | /* |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 356 | * At this point [addr; info.high_limit) covers |
| 357 | * available slices only and starts at a slice boundary. |
| 358 | * Check if we need to reduce the range, or if we can |
| 359 | * extend it to cover the previous available slice. |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 360 | */ |
Aneesh Kumar K.V | 3b4d07d | 2019-02-26 10:09:35 +0530 | [diff] [blame] | 361 | if (addr < min_addr) |
| 362 | addr = min_addr; |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 363 | else if (slice_scan_available(addr - 1, available, 0, &prev)) { |
| 364 | addr = prev; |
| 365 | goto prev_slice; |
| 366 | } |
| 367 | info.low_limit = addr; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 368 | |
Michel Lespinasse | fba2369 | 2013-04-29 11:53:53 -0700 | [diff] [blame] | 369 | found = vm_unmapped_area(&info); |
| 370 | if (!(found & ~PAGE_MASK)) |
| 371 | return found; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | /* |
| 375 | * A failed mmap() very likely causes application failure, |
| 376 | * so fall back to the bottom-up function here. This scenario |
| 377 | * can happen with large stack limits and large mmap() |
| 378 | * allocations. |
| 379 | */ |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 380 | return slice_find_area_bottomup(mm, len, available, psize, high_limit); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | |
| 384 | static unsigned long slice_find_area(struct mm_struct *mm, unsigned long len, |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 385 | const struct slice_mask *mask, int psize, |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 386 | int topdown, unsigned long high_limit) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 387 | { |
| 388 | if (topdown) |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 389 | return slice_find_area_topdown(mm, len, mask, psize, high_limit); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 390 | else |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 391 | return slice_find_area_bottomup(mm, len, mask, psize, high_limit); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 392 | } |
| 393 | |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 394 | static inline void slice_copy_mask(struct slice_mask *dst, |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 395 | const struct slice_mask *src) |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 396 | { |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 397 | dst->low_slices = src->low_slices; |
Christophe Leroy | db3a528 | 2018-02-22 15:27:24 +0100 | [diff] [blame] | 398 | if (!SLICE_NUM_HIGH) |
| 399 | return; |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 400 | bitmap_copy(dst->high_slices, src->high_slices, SLICE_NUM_HIGH); |
| 401 | } |
| 402 | |
| 403 | static inline void slice_or_mask(struct slice_mask *dst, |
| 404 | const struct slice_mask *src1, |
| 405 | const struct slice_mask *src2) |
| 406 | { |
| 407 | dst->low_slices = src1->low_slices | src2->low_slices; |
| 408 | if (!SLICE_NUM_HIGH) |
| 409 | return; |
| 410 | bitmap_or(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH); |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 411 | } |
| 412 | |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 413 | static inline void slice_andnot_mask(struct slice_mask *dst, |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 414 | const struct slice_mask *src1, |
| 415 | const struct slice_mask *src2) |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 416 | { |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 417 | dst->low_slices = src1->low_slices & ~src2->low_slices; |
Christophe Leroy | db3a528 | 2018-02-22 15:27:24 +0100 | [diff] [blame] | 418 | if (!SLICE_NUM_HIGH) |
| 419 | return; |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 420 | bitmap_andnot(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH); |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 421 | } |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 422 | |
| 423 | #ifdef CONFIG_PPC_64K_PAGES |
| 424 | #define MMU_PAGE_BASE MMU_PAGE_64K |
| 425 | #else |
| 426 | #define MMU_PAGE_BASE MMU_PAGE_4K |
| 427 | #endif |
| 428 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 429 | unsigned long slice_get_unmapped_area(unsigned long addr, unsigned long len, |
| 430 | unsigned long flags, unsigned int psize, |
Michel Lespinasse | 34d0717 | 2013-04-29 11:53:52 -0700 | [diff] [blame] | 431 | int topdown) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 432 | { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 433 | struct slice_mask good_mask; |
Aneesh Kumar K.V | f3207c1 | 2017-03-22 09:06:47 +0530 | [diff] [blame] | 434 | struct slice_mask potential_mask; |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 435 | const struct slice_mask *maskp; |
| 436 | const struct slice_mask *compat_maskp = NULL; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 437 | int fixed = (flags & MAP_FIXED); |
| 438 | int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT); |
Nicholas Piggin | 6a72dc0 | 2017-11-10 04:27:36 +1100 | [diff] [blame] | 439 | unsigned long page_size = 1UL << pshift; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 440 | struct mm_struct *mm = current->mm; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 441 | unsigned long newaddr; |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 442 | unsigned long high_limit; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 443 | |
Nicholas Piggin | 6a72dc0 | 2017-11-10 04:27:36 +1100 | [diff] [blame] | 444 | high_limit = DEFAULT_MAP_WINDOW; |
Nicholas Piggin | 35602f8 | 2017-11-10 04:27:38 +1100 | [diff] [blame] | 445 | if (addr >= high_limit || (fixed && (addr + len > high_limit))) |
Nicholas Piggin | 6a72dc0 | 2017-11-10 04:27:36 +1100 | [diff] [blame] | 446 | high_limit = TASK_SIZE; |
| 447 | |
| 448 | if (len > high_limit) |
| 449 | return -ENOMEM; |
| 450 | if (len & (page_size - 1)) |
| 451 | return -EINVAL; |
| 452 | if (fixed) { |
| 453 | if (addr & (page_size - 1)) |
| 454 | return -EINVAL; |
| 455 | if (addr > high_limit - len) |
| 456 | return -ENOMEM; |
| 457 | } |
| 458 | |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 459 | if (high_limit > mm_ctx_slb_addr_limit(&mm->context)) { |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 460 | /* |
| 461 | * Increasing the slb_addr_limit does not require |
| 462 | * slice mask cache to be recalculated because it should |
| 463 | * be already initialised beyond the old address limit. |
| 464 | */ |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 465 | mm_ctx_set_slb_addr_limit(&mm->context, high_limit); |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 466 | |
| 467 | on_each_cpu(slice_flush_segments, mm, 1); |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 468 | } |
Nicholas Piggin | 6a72dc0 | 2017-11-10 04:27:36 +1100 | [diff] [blame] | 469 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 470 | /* Sanity checks */ |
| 471 | BUG_ON(mm->task_size == 0); |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 472 | BUG_ON(mm_ctx_slb_addr_limit(&mm->context) == 0); |
Aneesh Kumar K.V | 764041e | 2016-04-29 23:26:09 +1000 | [diff] [blame] | 473 | VM_BUG_ON(radix_enabled()); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 474 | |
| 475 | slice_dbg("slice_get_unmapped_area(mm=%p, psize=%d...\n", mm, psize); |
Michel Lespinasse | 34d0717 | 2013-04-29 11:53:52 -0700 | [diff] [blame] | 476 | slice_dbg(" addr=%lx, len=%lx, flags=%lx, topdown=%d\n", |
| 477 | addr, len, flags, topdown); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 478 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 479 | /* If hint, make sure it matches our alignment restrictions */ |
| 480 | if (!fixed && addr) { |
Christophe Leroy | b711531 | 2020-04-20 18:36:36 +0000 | [diff] [blame] | 481 | addr = ALIGN(addr, page_size); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 482 | slice_dbg(" aligned addr=%lx\n", addr); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 483 | /* Ignore hint if it's too large or overlaps a VMA */ |
Aneesh Kumar K.V | 3b4d07d | 2019-02-26 10:09:35 +0530 | [diff] [blame] | 484 | if (addr > high_limit - len || addr < mmap_min_addr || |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 485 | !slice_area_is_free(mm, addr, len)) |
| 486 | addr = 0; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 487 | } |
| 488 | |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 489 | /* First make up a "good" mask of slices that have the right size |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 490 | * already |
| 491 | */ |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 492 | maskp = slice_mask_for_size(&mm->context, psize); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 493 | |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 494 | /* |
| 495 | * Here "good" means slices that are already the right page size, |
| 496 | * "compat" means slices that have a compatible page size (i.e. |
| 497 | * 4k in a 64k pagesize kernel), and "free" means slices without |
| 498 | * any VMAs. |
| 499 | * |
| 500 | * If MAP_FIXED: |
| 501 | * check if fits in good | compat => OK |
| 502 | * check if fits in good | compat | free => convert free |
| 503 | * else bad |
| 504 | * If have hint: |
| 505 | * check if hint fits in good => OK |
| 506 | * check if hint fits in good | free => convert free |
| 507 | * Otherwise: |
| 508 | * search in good, found => OK |
| 509 | * search in good | free, found => convert free |
| 510 | * search in good | compat | free, found => convert free. |
| 511 | */ |
| 512 | |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 513 | /* |
| 514 | * If we support combo pages, we can allow 64k pages in 4k slices |
| 515 | * The mask copies could be avoided in most cases here if we had |
| 516 | * a pointer to good mask for the next code to use. |
| 517 | */ |
| 518 | if (IS_ENABLED(CONFIG_PPC_64K_PAGES) && psize == MMU_PAGE_64K) { |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 519 | compat_maskp = slice_mask_for_size(&mm->context, MMU_PAGE_4K); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 520 | if (fixed) |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 521 | slice_or_mask(&good_mask, maskp, compat_maskp); |
| 522 | else |
| 523 | slice_copy_mask(&good_mask, maskp); |
| 524 | } else { |
| 525 | slice_copy_mask(&good_mask, maskp); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 526 | } |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 527 | |
| 528 | slice_print_mask(" good_mask", &good_mask); |
| 529 | if (compat_maskp) |
| 530 | slice_print_mask(" compat_mask", compat_maskp); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 531 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 532 | /* First check hint if it's valid or if we have MAP_FIXED */ |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 533 | if (addr != 0 || fixed) { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 534 | /* Check if we fit in the good mask. If we do, we just return, |
| 535 | * nothing else to do |
| 536 | */ |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 537 | if (slice_check_range_fits(mm, &good_mask, addr, len)) { |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 538 | slice_dbg(" fits good !\n"); |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 539 | newaddr = addr; |
| 540 | goto return_addr; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 541 | } |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 542 | } else { |
| 543 | /* Now let's see if we can find something in the existing |
| 544 | * slices for that size |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 545 | */ |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 546 | newaddr = slice_find_area(mm, len, &good_mask, |
Aneesh Kumar K.V | f4ea6dc | 2017-03-30 16:35:21 +0530 | [diff] [blame] | 547 | psize, topdown, high_limit); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 548 | if (newaddr != -ENOMEM) { |
| 549 | /* Found within the good mask, we don't have to setup, |
| 550 | * we thus return directly |
| 551 | */ |
| 552 | slice_dbg(" found area at 0x%lx\n", newaddr); |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 553 | goto return_addr; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 554 | } |
| 555 | } |
Aneesh Kumar K.V | 7a06c66 | 2017-11-10 10:25:07 +0530 | [diff] [blame] | 556 | /* |
| 557 | * We don't fit in the good mask, check what other slices are |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 558 | * empty and thus can be converted |
| 559 | */ |
Aneesh Kumar K.V | 7a06c66 | 2017-11-10 10:25:07 +0530 | [diff] [blame] | 560 | slice_mask_for_free(mm, &potential_mask, high_limit); |
Nicholas Piggin | b8c9354 | 2018-03-07 11:37:14 +1000 | [diff] [blame] | 561 | slice_or_mask(&potential_mask, &potential_mask, &good_mask); |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 562 | slice_print_mask(" potential", &potential_mask); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 563 | |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 564 | if (addr != 0 || fixed) { |
| 565 | if (slice_check_range_fits(mm, &potential_mask, addr, len)) { |
| 566 | slice_dbg(" fits potential !\n"); |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 567 | newaddr = addr; |
Nicholas Piggin | ae3066b | 2018-03-07 11:37:13 +1000 | [diff] [blame] | 568 | goto convert; |
| 569 | } |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | /* If we have MAP_FIXED and failed the above steps, then error out */ |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 573 | if (fixed) |
| 574 | return -EBUSY; |
| 575 | |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 576 | slice_dbg(" search...\n"); |
| 577 | |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 578 | /* If we had a hint that didn't work out, see if we can fit |
| 579 | * anywhere in the good area. |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 580 | */ |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 581 | if (addr) { |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 582 | newaddr = slice_find_area(mm, len, &good_mask, |
| 583 | psize, topdown, high_limit); |
| 584 | if (newaddr != -ENOMEM) { |
| 585 | slice_dbg(" found area at 0x%lx\n", newaddr); |
| 586 | goto return_addr; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 587 | } |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | /* Now let's see if we can find something in the existing slices |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 591 | * for that size plus free slices |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 592 | */ |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 593 | newaddr = slice_find_area(mm, len, &potential_mask, |
| 594 | psize, topdown, high_limit); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 595 | |
Christophe Leroy | 203a1fa | 2019-04-25 14:29:33 +0000 | [diff] [blame] | 596 | if (IS_ENABLED(CONFIG_PPC_64K_PAGES) && newaddr == -ENOMEM && |
| 597 | psize == MMU_PAGE_64K) { |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 598 | /* retry the search with 4k-page slices included */ |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 599 | slice_or_mask(&potential_mask, &potential_mask, compat_maskp); |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 600 | newaddr = slice_find_area(mm, len, &potential_mask, |
| 601 | psize, topdown, high_limit); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 602 | } |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 603 | |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 604 | if (newaddr == -ENOMEM) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 605 | return -ENOMEM; |
| 606 | |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 607 | slice_range_to_mask(newaddr, len, &potential_mask); |
| 608 | slice_dbg(" found potential area at 0x%lx\n", newaddr); |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 609 | slice_print_mask(" mask", &potential_mask); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 610 | |
| 611 | convert: |
Aneesh Kumar K.V | f384796c | 2018-03-26 15:34:48 +0530 | [diff] [blame] | 612 | /* |
| 613 | * Try to allocate the context before we do slice convert |
| 614 | * so that we handle the context allocation failure gracefully. |
| 615 | */ |
| 616 | if (need_extra_context(mm, newaddr)) { |
| 617 | if (alloc_extended_context(mm, newaddr) < 0) |
| 618 | return -ENOMEM; |
| 619 | } |
| 620 | |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 621 | slice_andnot_mask(&potential_mask, &potential_mask, &good_mask); |
| 622 | if (compat_maskp && !fixed) |
| 623 | slice_andnot_mask(&potential_mask, &potential_mask, compat_maskp); |
| 624 | if (potential_mask.low_slices || |
| 625 | (SLICE_NUM_HIGH && |
| 626 | !bitmap_empty(potential_mask.high_slices, SLICE_NUM_HIGH))) { |
| 627 | slice_convert(mm, &potential_mask, psize); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 628 | if (psize > MMU_PAGE_BASE) |
Michael Ellerman | 54be0b9 | 2018-10-02 23:56:39 +1000 | [diff] [blame] | 629 | on_each_cpu(slice_flush_segments, mm, 1); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 630 | } |
Aneesh Kumar K.V | 0dea04b | 2018-03-26 15:34:47 +0530 | [diff] [blame] | 631 | return newaddr; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 632 | |
Aneesh Kumar K.V | f384796c | 2018-03-26 15:34:48 +0530 | [diff] [blame] | 633 | return_addr: |
| 634 | if (need_extra_context(mm, newaddr)) { |
| 635 | if (alloc_extended_context(mm, newaddr) < 0) |
| 636 | return -ENOMEM; |
| 637 | } |
| 638 | return newaddr; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 639 | } |
| 640 | EXPORT_SYMBOL_GPL(slice_get_unmapped_area); |
| 641 | |
| 642 | unsigned long arch_get_unmapped_area(struct file *filp, |
| 643 | unsigned long addr, |
| 644 | unsigned long len, |
| 645 | unsigned long pgoff, |
| 646 | unsigned long flags) |
| 647 | { |
| 648 | return slice_get_unmapped_area(addr, len, flags, |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 649 | mm_ctx_user_psize(¤t->mm->context), 0); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | unsigned long arch_get_unmapped_area_topdown(struct file *filp, |
| 653 | const unsigned long addr0, |
| 654 | const unsigned long len, |
| 655 | const unsigned long pgoff, |
| 656 | const unsigned long flags) |
| 657 | { |
| 658 | return slice_get_unmapped_area(addr0, len, flags, |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 659 | mm_ctx_user_psize(¤t->mm->context), 1); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 660 | } |
| 661 | |
Michael Ellerman | 91a063c | 2019-12-21 14:16:54 +1100 | [diff] [blame] | 662 | unsigned int notrace get_slice_psize(struct mm_struct *mm, unsigned long addr) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 663 | { |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 664 | unsigned char *psizes; |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 665 | int index, mask_index; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 666 | |
Nicholas Piggin | 014a32b | 2018-03-07 11:37:17 +1000 | [diff] [blame] | 667 | VM_BUG_ON(radix_enabled()); |
| 668 | |
Christophe Leroy | 37e9c67 | 2018-08-02 09:25:55 +0000 | [diff] [blame] | 669 | if (slice_addr_is_low(addr)) { |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 670 | psizes = mm_ctx_low_slices(&mm->context); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 671 | index = GET_LOW_SLICE_INDEX(addr); |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 672 | } else { |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 673 | psizes = mm_ctx_high_slices(&mm->context); |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 674 | index = GET_HIGH_SLICE_INDEX(addr); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 675 | } |
Aneesh Kumar K.V | 7aa0727 | 2012-09-10 02:52:52 +0000 | [diff] [blame] | 676 | mask_index = index & 0x1; |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 677 | return (psizes[index >> 1] >> (mask_index * 4)) & 0xf; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 678 | } |
| 679 | EXPORT_SYMBOL_GPL(get_slice_psize); |
| 680 | |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 681 | void slice_init_new_context_exec(struct mm_struct *mm) |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 682 | { |
Christophe Leroy | 1547242 | 2018-02-22 15:27:28 +0100 | [diff] [blame] | 683 | unsigned char *hpsizes, *lpsizes; |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 684 | struct slice_mask *mask; |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 685 | unsigned int psize = mmu_virtual_psize; |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 686 | |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 687 | slice_dbg("slice_init_new_context_exec(mm=%p)\n", mm); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 688 | |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 689 | /* |
| 690 | * In the case of exec, use the default limit. In the |
| 691 | * case of fork it is just inherited from the mm being |
| 692 | * duplicated. |
| 693 | */ |
Christophe Leroy | 5953fb4 | 2019-04-25 14:29:36 +0000 | [diff] [blame] | 694 | mm_ctx_set_slb_addr_limit(&mm->context, SLB_ADDR_LIMIT_DEFAULT); |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 695 | mm_ctx_set_user_psize(&mm->context, psize); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 696 | |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 697 | /* |
| 698 | * Set all slice psizes to the default. |
| 699 | */ |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 700 | lpsizes = mm_ctx_low_slices(&mm->context); |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 701 | memset(lpsizes, (psize << 4) | psize, SLICE_NUM_LOW >> 1); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 702 | |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 703 | hpsizes = mm_ctx_high_slices(&mm->context); |
Nicholas Piggin | 1753dd1 | 2018-03-07 11:37:09 +1000 | [diff] [blame] | 704 | memset(hpsizes, (psize << 4) | psize, SLICE_NUM_HIGH >> 1); |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 705 | |
| 706 | /* |
| 707 | * Slice mask cache starts zeroed, fill the default size cache. |
| 708 | */ |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 709 | mask = slice_mask_for_size(&mm->context, psize); |
Nicholas Piggin | 5709f7c | 2018-03-07 11:37:12 +1000 | [diff] [blame] | 710 | mask->low_slices = ~0UL; |
| 711 | if (SLICE_NUM_HIGH) |
| 712 | bitmap_fill(mask->high_slices, SLICE_NUM_HIGH); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 713 | } |
| 714 | |
Nicholas Piggin | 425d331 | 2018-09-15 01:30:55 +1000 | [diff] [blame] | 715 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 716 | void slice_setup_new_exec(void) |
| 717 | { |
| 718 | struct mm_struct *mm = current->mm; |
| 719 | |
| 720 | slice_dbg("slice_setup_new_exec(mm=%p)\n", mm); |
| 721 | |
| 722 | if (!is_32bit_task()) |
| 723 | return; |
| 724 | |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 725 | mm_ctx_set_slb_addr_limit(&mm->context, DEFAULT_MAP_WINDOW); |
Nicholas Piggin | 425d331 | 2018-09-15 01:30:55 +1000 | [diff] [blame] | 726 | } |
| 727 | #endif |
| 728 | |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 729 | void slice_set_range_psize(struct mm_struct *mm, unsigned long start, |
| 730 | unsigned long len, unsigned int psize) |
| 731 | { |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 732 | struct slice_mask mask; |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 733 | |
Aneesh Kumar K.V | 764041e | 2016-04-29 23:26:09 +1000 | [diff] [blame] | 734 | VM_BUG_ON(radix_enabled()); |
Aneesh Kumar K.V | a4d36215 | 2017-03-22 09:06:48 +0530 | [diff] [blame] | 735 | |
| 736 | slice_range_to_mask(start, len, &mask); |
Nicholas Piggin | 830fd2d | 2018-03-07 11:37:11 +1000 | [diff] [blame] | 737 | slice_convert(mm, &mask, psize); |
Paul Mackerras | 3a8247c | 2008-06-18 15:29:12 +1000 | [diff] [blame] | 738 | } |
| 739 | |
Aneesh Kumar K.V | 6643773 | 2014-10-21 14:25:38 +1100 | [diff] [blame] | 740 | #ifdef CONFIG_HUGETLB_PAGE |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 741 | /* |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 742 | * is_hugepage_only_range() is used by generic code to verify whether |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 743 | * a normal mmap mapping (non hugetlbfs) is valid on a given area. |
| 744 | * |
| 745 | * until the generic code provides a more generic hook and/or starts |
| 746 | * calling arch get_unmapped_area for MAP_FIXED (which our implementation |
| 747 | * here knows how to deal with), we hijack it to keep standard mappings |
| 748 | * away from us. |
| 749 | * |
| 750 | * because of that generic code limitation, MAP_FIXED mapping cannot |
| 751 | * "convert" back a slice with no VMAs to the standard page size, only |
| 752 | * get_unmapped_area() can. It would be possible to fix it here but I |
| 753 | * prefer working on fixing the generic code instead. |
| 754 | * |
| 755 | * WARNING: This will not work if hugetlbfs isn't enabled since the |
| 756 | * generic code will redefine that function as 0 in that. This is ok |
| 757 | * for now as we only use slices with hugetlbfs enabled. This should |
| 758 | * be fixed as the generic code gets fixed. |
| 759 | */ |
Nicholas Piggin | 014a32b | 2018-03-07 11:37:17 +1000 | [diff] [blame] | 760 | int slice_is_hugepage_only_range(struct mm_struct *mm, unsigned long addr, |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 761 | unsigned long len) |
| 762 | { |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 763 | const struct slice_mask *maskp; |
Aneesh Kumar K.V | 60458fb | 2019-04-17 18:33:48 +0530 | [diff] [blame] | 764 | unsigned int psize = mm_ctx_user_psize(&mm->context); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 765 | |
Nicholas Piggin | 014a32b | 2018-03-07 11:37:17 +1000 | [diff] [blame] | 766 | VM_BUG_ON(radix_enabled()); |
Aneesh Kumar K.V | 764041e | 2016-04-29 23:26:09 +1000 | [diff] [blame] | 767 | |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 768 | maskp = slice_mask_for_size(&mm->context, psize); |
Christophe Leroy | 203a1fa | 2019-04-25 14:29:33 +0000 | [diff] [blame] | 769 | |
Dave Kleikamp | 9ba0fdb | 2009-01-14 09:09:34 +0000 | [diff] [blame] | 770 | /* We need to account for 4k slices too */ |
Christophe Leroy | 203a1fa | 2019-04-25 14:29:33 +0000 | [diff] [blame] | 771 | if (IS_ENABLED(CONFIG_PPC_64K_PAGES) && psize == MMU_PAGE_64K) { |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 772 | const struct slice_mask *compat_maskp; |
| 773 | struct slice_mask available; |
| 774 | |
Christophe Leroy | 6f60cc98 | 2019-04-25 14:29:29 +0000 | [diff] [blame] | 775 | compat_maskp = slice_mask_for_size(&mm->context, MMU_PAGE_4K); |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 776 | slice_or_mask(&available, maskp, compat_maskp); |
| 777 | return !slice_check_range_fits(mm, &available, addr, len); |
Dave Kleikamp | 9ba0fdb | 2009-01-14 09:09:34 +0000 | [diff] [blame] | 778 | } |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 779 | |
Nicholas Piggin | d262bd5 | 2018-03-07 11:37:16 +1000 | [diff] [blame] | 780 | return !slice_check_range_fits(mm, maskp, addr, len); |
Benjamin Herrenschmidt | d0f13e3 | 2007-05-08 16:27:27 +1000 | [diff] [blame] | 781 | } |
Aneesh Kumar K.V | 6643773 | 2014-10-21 14:25:38 +1100 | [diff] [blame] | 782 | #endif |