blob: 999a74f25ebe1ee45beecdc9654a0464ca5b8bf1 [file] [log] [blame]
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +10001/*
2 * address space "slices" (meta-segments) support
3 *
4 * Copyright (C) 2007 Benjamin Herrenschmidt, IBM Corporation.
5 *
6 * Based on hugetlb implementation
7 *
8 * Copyright (C) 2003 David Gibson, IBM Corporation.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25#undef DEBUG
26
27#include <linux/kernel.h>
28#include <linux/mm.h>
29#include <linux/pagemap.h>
30#include <linux/err.h>
31#include <linux/spinlock.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040032#include <linux/export.h>
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100033#include <asm/mman.h>
34#include <asm/mmu.h>
35#include <asm/spu.h>
36
Aneesh Kumar K.V78f1dbd2012-09-10 02:52:57 +000037/* some sanity checks */
38#if (PGTABLE_RANGE >> 43) > SLICE_MASK_SIZE
39#error PGTABLE_RANGE exceeds slice_mask high_slices size
40#endif
41
Roel Kluinf7a75f02007-10-16 23:30:25 -070042static DEFINE_SPINLOCK(slice_convert_lock);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100043
44
45#ifdef DEBUG
46int _slice_debug = 1;
47
48static void slice_print_mask(const char *label, struct slice_mask mask)
49{
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +000050 char *p, buf[16 + 3 + 64 + 1];
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100051 int i;
52
53 if (!_slice_debug)
54 return;
55 p = buf;
56 for (i = 0; i < SLICE_NUM_LOW; i++)
57 *(p++) = (mask.low_slices & (1 << i)) ? '1' : '0';
58 *(p++) = ' ';
59 *(p++) = '-';
60 *(p++) = ' ';
61 for (i = 0; i < SLICE_NUM_HIGH; i++)
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +000062 *(p++) = (mask.high_slices & (1ul << i)) ? '1' : '0';
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100063 *(p++) = 0;
64
65 printk(KERN_DEBUG "%s:%s\n", label, buf);
66}
67
68#define slice_dbg(fmt...) do { if (_slice_debug) pr_debug(fmt); } while(0)
69
70#else
71
72static void slice_print_mask(const char *label, struct slice_mask mask) {}
73#define slice_dbg(fmt...)
74
75#endif
76
77static struct slice_mask slice_range_to_mask(unsigned long start,
78 unsigned long len)
79{
80 unsigned long end = start + len - 1;
81 struct slice_mask ret = { 0, 0 };
82
83 if (start < SLICE_LOW_TOP) {
84 unsigned long mend = min(end, SLICE_LOW_TOP);
85 unsigned long mstart = min(start, SLICE_LOW_TOP);
86
87 ret.low_slices = (1u << (GET_LOW_SLICE_INDEX(mend) + 1))
88 - (1u << GET_LOW_SLICE_INDEX(mstart));
89 }
90
91 if ((start + len) > SLICE_LOW_TOP)
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +000092 ret.high_slices = (1ul << (GET_HIGH_SLICE_INDEX(end) + 1))
93 - (1ul << GET_HIGH_SLICE_INDEX(start));
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100094
95 return ret;
96}
97
98static int slice_area_is_free(struct mm_struct *mm, unsigned long addr,
99 unsigned long len)
100{
101 struct vm_area_struct *vma;
102
103 if ((mm->task_size - len) < addr)
104 return 0;
105 vma = find_vma(mm, addr);
106 return (!vma || (addr + len) <= vma->vm_start);
107}
108
109static int slice_low_has_vma(struct mm_struct *mm, unsigned long slice)
110{
111 return !slice_area_is_free(mm, slice << SLICE_LOW_SHIFT,
112 1ul << SLICE_LOW_SHIFT);
113}
114
115static int slice_high_has_vma(struct mm_struct *mm, unsigned long slice)
116{
117 unsigned long start = slice << SLICE_HIGH_SHIFT;
118 unsigned long end = start + (1ul << SLICE_HIGH_SHIFT);
119
120 /* Hack, so that each addresses is controlled by exactly one
121 * of the high or low area bitmaps, the first high area starts
122 * at 4GB, not 0 */
123 if (start == 0)
124 start = SLICE_LOW_TOP;
125
126 return !slice_area_is_free(mm, start, end - start);
127}
128
129static struct slice_mask slice_mask_for_free(struct mm_struct *mm)
130{
131 struct slice_mask ret = { 0, 0 };
132 unsigned long i;
133
134 for (i = 0; i < SLICE_NUM_LOW; i++)
135 if (!slice_low_has_vma(mm, i))
136 ret.low_slices |= 1u << i;
137
138 if (mm->task_size <= SLICE_LOW_TOP)
139 return ret;
140
141 for (i = 0; i < SLICE_NUM_HIGH; i++)
142 if (!slice_high_has_vma(mm, i))
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000143 ret.high_slices |= 1ul << i;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000144
145 return ret;
146}
147
148static struct slice_mask slice_mask_for_size(struct mm_struct *mm, int psize)
149{
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000150 unsigned char *hpsizes;
151 int index, mask_index;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000152 struct slice_mask ret = { 0, 0 };
153 unsigned long i;
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000154 u64 lpsizes;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000155
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000156 lpsizes = mm->context.low_slices_psize;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000157 for (i = 0; i < SLICE_NUM_LOW; i++)
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000158 if (((lpsizes >> (i * 4)) & 0xf) == psize)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000159 ret.low_slices |= 1u << i;
160
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000161 hpsizes = mm->context.high_slices_psize;
162 for (i = 0; i < SLICE_NUM_HIGH; i++) {
163 mask_index = i & 0x1;
164 index = i >> 1;
165 if (((hpsizes[index] >> (mask_index * 4)) & 0xf) == psize)
166 ret.high_slices |= 1ul << i;
167 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000168
169 return ret;
170}
171
172static int slice_check_fit(struct slice_mask mask, struct slice_mask available)
173{
174 return (mask.low_slices & available.low_slices) == mask.low_slices &&
175 (mask.high_slices & available.high_slices) == mask.high_slices;
176}
177
178static void slice_flush_segments(void *parm)
179{
180 struct mm_struct *mm = parm;
181 unsigned long flags;
182
183 if (mm != current->active_mm)
184 return;
185
186 /* update the paca copy of the context struct */
187 get_paca()->context = current->active_mm->context;
188
189 local_irq_save(flags);
190 slb_flush_and_rebolt();
191 local_irq_restore(flags);
192}
193
194static void slice_convert(struct mm_struct *mm, struct slice_mask mask, int psize)
195{
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000196 int index, mask_index;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000197 /* Write the new slice psize bits */
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000198 unsigned char *hpsizes;
199 u64 lpsizes;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000200 unsigned long i, flags;
201
202 slice_dbg("slice_convert(mm=%p, psize=%d)\n", mm, psize);
203 slice_print_mask(" mask", mask);
204
205 /* We need to use a spinlock here to protect against
206 * concurrent 64k -> 4k demotion ...
207 */
208 spin_lock_irqsave(&slice_convert_lock, flags);
209
210 lpsizes = mm->context.low_slices_psize;
211 for (i = 0; i < SLICE_NUM_LOW; i++)
212 if (mask.low_slices & (1u << i))
213 lpsizes = (lpsizes & ~(0xful << (i * 4))) |
214 (((unsigned long)psize) << (i * 4));
215
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000216 /* Assign the value back */
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000217 mm->context.low_slices_psize = lpsizes;
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000218
219 hpsizes = mm->context.high_slices_psize;
220 for (i = 0; i < SLICE_NUM_HIGH; i++) {
221 mask_index = i & 0x1;
222 index = i >> 1;
223 if (mask.high_slices & (1ul << i))
224 hpsizes[index] = (hpsizes[index] &
225 ~(0xf << (mask_index * 4))) |
226 (((unsigned long)psize) << (mask_index * 4));
227 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000228
229 slice_dbg(" lsps=%lx, hsps=%lx\n",
230 mm->context.low_slices_psize,
231 mm->context.high_slices_psize);
232
233 spin_unlock_irqrestore(&slice_convert_lock, flags);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000234
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000235#ifdef CONFIG_SPU_BASE
236 spu_flush_all_slbs(mm);
237#endif
238}
239
240static unsigned long slice_find_area_bottomup(struct mm_struct *mm,
241 unsigned long len,
242 struct slice_mask available,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700243 int psize)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000244{
245 struct vm_area_struct *vma;
Michel Lespinasse34d07172013-04-29 11:53:52 -0700246 unsigned long addr;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000247 struct slice_mask mask;
248 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
249
Michel Lespinasse34d07172013-04-29 11:53:52 -0700250 addr = TASK_UNMAPPED_BASE;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000251
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000252 for (;;) {
253 addr = _ALIGN_UP(addr, 1ul << pshift);
254 if ((TASK_SIZE - len) < addr)
255 break;
256 vma = find_vma(mm, addr);
257 BUG_ON(vma && (addr >= vma->vm_end));
258
259 mask = slice_range_to_mask(addr, len);
260 if (!slice_check_fit(mask, available)) {
261 if (addr < SLICE_LOW_TOP)
262 addr = _ALIGN_UP(addr + 1, 1ul << SLICE_LOW_SHIFT);
263 else
264 addr = _ALIGN_UP(addr + 1, 1ul << SLICE_HIGH_SHIFT);
265 continue;
266 }
Michel Lespinasse34d07172013-04-29 11:53:52 -0700267 if (!vma || addr + len <= vma->vm_start)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000268 return addr;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000269 addr = vma->vm_end;
270 }
271
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000272 return -ENOMEM;
273}
274
275static unsigned long slice_find_area_topdown(struct mm_struct *mm,
276 unsigned long len,
277 struct slice_mask available,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700278 int psize)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000279{
280 struct vm_area_struct *vma;
281 unsigned long addr;
282 struct slice_mask mask;
283 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
284
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000285 addr = mm->mmap_base;
286 while (addr > len) {
287 /* Go down by chunk size */
288 addr = _ALIGN_DOWN(addr - len, 1ul << pshift);
289
290 /* Check for hit with different page size */
291 mask = slice_range_to_mask(addr, len);
292 if (!slice_check_fit(mask, available)) {
293 if (addr < SLICE_LOW_TOP)
294 addr = _ALIGN_DOWN(addr, 1ul << SLICE_LOW_SHIFT);
295 else if (addr < (1ul << SLICE_HIGH_SHIFT))
296 addr = SLICE_LOW_TOP;
297 else
298 addr = _ALIGN_DOWN(addr, 1ul << SLICE_HIGH_SHIFT);
299 continue;
300 }
301
302 /*
303 * Lookup failure means no vma is above this address,
304 * else if new region fits below vma->vm_start,
305 * return with success:
306 */
307 vma = find_vma(mm, addr);
Michel Lespinasse34d07172013-04-29 11:53:52 -0700308 if (!vma || (addr + len) <= vma->vm_start)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000309 return addr;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000310
311 /* try just below the current vma->vm_start */
312 addr = vma->vm_start;
313 }
314
315 /*
316 * A failed mmap() very likely causes application failure,
317 * so fall back to the bottom-up function here. This scenario
318 * can happen with large stack limits and large mmap()
319 * allocations.
320 */
Michel Lespinasse34d07172013-04-29 11:53:52 -0700321 return slice_find_area_bottomup(mm, len, available, psize);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000322}
323
324
325static unsigned long slice_find_area(struct mm_struct *mm, unsigned long len,
326 struct slice_mask mask, int psize,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700327 int topdown)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000328{
329 if (topdown)
Michel Lespinasse34d07172013-04-29 11:53:52 -0700330 return slice_find_area_topdown(mm, len, mask, psize);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000331 else
Michel Lespinasse34d07172013-04-29 11:53:52 -0700332 return slice_find_area_bottomup(mm, len, mask, psize);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000333}
334
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000335#define or_mask(dst, src) do { \
336 (dst).low_slices |= (src).low_slices; \
337 (dst).high_slices |= (src).high_slices; \
338} while (0)
339
340#define andnot_mask(dst, src) do { \
341 (dst).low_slices &= ~(src).low_slices; \
342 (dst).high_slices &= ~(src).high_slices; \
343} while (0)
344
345#ifdef CONFIG_PPC_64K_PAGES
346#define MMU_PAGE_BASE MMU_PAGE_64K
347#else
348#define MMU_PAGE_BASE MMU_PAGE_4K
349#endif
350
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000351unsigned long slice_get_unmapped_area(unsigned long addr, unsigned long len,
352 unsigned long flags, unsigned int psize,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700353 int topdown)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000354{
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000355 struct slice_mask mask = {0, 0};
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000356 struct slice_mask good_mask;
357 struct slice_mask potential_mask = {0,0} /* silence stupid warning */;
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000358 struct slice_mask compat_mask = {0, 0};
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000359 int fixed = (flags & MAP_FIXED);
360 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
361 struct mm_struct *mm = current->mm;
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000362 unsigned long newaddr;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000363
364 /* Sanity checks */
365 BUG_ON(mm->task_size == 0);
366
367 slice_dbg("slice_get_unmapped_area(mm=%p, psize=%d...\n", mm, psize);
Michel Lespinasse34d07172013-04-29 11:53:52 -0700368 slice_dbg(" addr=%lx, len=%lx, flags=%lx, topdown=%d\n",
369 addr, len, flags, topdown);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000370
371 if (len > mm->task_size)
372 return -ENOMEM;
Benjamin Herrenschmidtd1f5a772007-08-08 15:44:15 +1000373 if (len & ((1ul << pshift) - 1))
374 return -EINVAL;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000375 if (fixed && (addr & ((1ul << pshift) - 1)))
376 return -EINVAL;
377 if (fixed && addr > (mm->task_size - len))
378 return -EINVAL;
379
380 /* If hint, make sure it matches our alignment restrictions */
381 if (!fixed && addr) {
382 addr = _ALIGN_UP(addr, 1ul << pshift);
383 slice_dbg(" aligned addr=%lx\n", addr);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000384 /* Ignore hint if it's too large or overlaps a VMA */
385 if (addr > mm->task_size - len ||
386 !slice_area_is_free(mm, addr, len))
387 addr = 0;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000388 }
389
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000390 /* First make up a "good" mask of slices that have the right size
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000391 * already
392 */
393 good_mask = slice_mask_for_size(mm, psize);
394 slice_print_mask(" good_mask", good_mask);
395
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000396 /*
397 * Here "good" means slices that are already the right page size,
398 * "compat" means slices that have a compatible page size (i.e.
399 * 4k in a 64k pagesize kernel), and "free" means slices without
400 * any VMAs.
401 *
402 * If MAP_FIXED:
403 * check if fits in good | compat => OK
404 * check if fits in good | compat | free => convert free
405 * else bad
406 * If have hint:
407 * check if hint fits in good => OK
408 * check if hint fits in good | free => convert free
409 * Otherwise:
410 * search in good, found => OK
411 * search in good | free, found => convert free
412 * search in good | compat | free, found => convert free.
413 */
414
415#ifdef CONFIG_PPC_64K_PAGES
416 /* If we support combo pages, we can allow 64k pages in 4k slices */
417 if (psize == MMU_PAGE_64K) {
418 compat_mask = slice_mask_for_size(mm, MMU_PAGE_4K);
419 if (fixed)
420 or_mask(good_mask, compat_mask);
421 }
422#endif
423
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000424 /* First check hint if it's valid or if we have MAP_FIXED */
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000425 if (addr != 0 || fixed) {
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000426 /* Build a mask for the requested range */
427 mask = slice_range_to_mask(addr, len);
428 slice_print_mask(" mask", mask);
429
430 /* Check if we fit in the good mask. If we do, we just return,
431 * nothing else to do
432 */
433 if (slice_check_fit(mask, good_mask)) {
434 slice_dbg(" fits good !\n");
435 return addr;
436 }
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000437 } else {
438 /* Now let's see if we can find something in the existing
439 * slices for that size
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000440 */
Michel Lespinasse34d07172013-04-29 11:53:52 -0700441 newaddr = slice_find_area(mm, len, good_mask, psize, topdown);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000442 if (newaddr != -ENOMEM) {
443 /* Found within the good mask, we don't have to setup,
444 * we thus return directly
445 */
446 slice_dbg(" found area at 0x%lx\n", newaddr);
447 return newaddr;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000448 }
449 }
450
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000451 /* We don't fit in the good mask, check what other slices are
452 * empty and thus can be converted
453 */
454 potential_mask = slice_mask_for_free(mm);
455 or_mask(potential_mask, good_mask);
456 slice_print_mask(" potential", potential_mask);
457
458 if ((addr != 0 || fixed) && slice_check_fit(mask, potential_mask)) {
459 slice_dbg(" fits potential !\n");
460 goto convert;
461 }
462
463 /* If we have MAP_FIXED and failed the above steps, then error out */
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000464 if (fixed)
465 return -EBUSY;
466
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000467 slice_dbg(" search...\n");
468
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000469 /* If we had a hint that didn't work out, see if we can fit
470 * anywhere in the good area.
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000471 */
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000472 if (addr) {
Michel Lespinasse34d07172013-04-29 11:53:52 -0700473 addr = slice_find_area(mm, len, good_mask, psize, topdown);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000474 if (addr != -ENOMEM) {
475 slice_dbg(" found area at 0x%lx\n", addr);
476 return addr;
477 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000478 }
479
480 /* Now let's see if we can find something in the existing slices
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000481 * for that size plus free slices
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000482 */
Michel Lespinasse34d07172013-04-29 11:53:52 -0700483 addr = slice_find_area(mm, len, potential_mask, psize, topdown);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000484
485#ifdef CONFIG_PPC_64K_PAGES
486 if (addr == -ENOMEM && psize == MMU_PAGE_64K) {
487 /* retry the search with 4k-page slices included */
488 or_mask(potential_mask, compat_mask);
489 addr = slice_find_area(mm, len, potential_mask, psize,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700490 topdown);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000491 }
492#endif
493
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000494 if (addr == -ENOMEM)
495 return -ENOMEM;
496
497 mask = slice_range_to_mask(addr, len);
498 slice_dbg(" found potential area at 0x%lx\n", addr);
499 slice_print_mask(" mask", mask);
500
501 convert:
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000502 andnot_mask(mask, good_mask);
503 andnot_mask(mask, compat_mask);
504 if (mask.low_slices || mask.high_slices) {
505 slice_convert(mm, mask, psize);
506 if (psize > MMU_PAGE_BASE)
Benjamin Herrenschmidt84c3d4a2008-07-16 11:07:59 +1000507 on_each_cpu(slice_flush_segments, mm, 1);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000508 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000509 return addr;
510
511}
512EXPORT_SYMBOL_GPL(slice_get_unmapped_area);
513
514unsigned long arch_get_unmapped_area(struct file *filp,
515 unsigned long addr,
516 unsigned long len,
517 unsigned long pgoff,
518 unsigned long flags)
519{
520 return slice_get_unmapped_area(addr, len, flags,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700521 current->mm->context.user_psize, 0);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000522}
523
524unsigned long arch_get_unmapped_area_topdown(struct file *filp,
525 const unsigned long addr0,
526 const unsigned long len,
527 const unsigned long pgoff,
528 const unsigned long flags)
529{
530 return slice_get_unmapped_area(addr0, len, flags,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700531 current->mm->context.user_psize, 1);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000532}
533
534unsigned int get_slice_psize(struct mm_struct *mm, unsigned long addr)
535{
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000536 unsigned char *hpsizes;
537 int index, mask_index;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000538
539 if (addr < SLICE_LOW_TOP) {
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000540 u64 lpsizes;
541 lpsizes = mm->context.low_slices_psize;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000542 index = GET_LOW_SLICE_INDEX(addr);
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000543 return (lpsizes >> (index * 4)) & 0xf;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000544 }
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000545 hpsizes = mm->context.high_slices_psize;
546 index = GET_HIGH_SLICE_INDEX(addr);
547 mask_index = index & 0x1;
548 return (hpsizes[index >> 1] >> (mask_index * 4)) & 0xf;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000549}
550EXPORT_SYMBOL_GPL(get_slice_psize);
551
552/*
553 * This is called by hash_page when it needs to do a lazy conversion of
554 * an address space from real 64K pages to combo 4K pages (typically
555 * when hitting a non cacheable mapping on a processor or hypervisor
556 * that won't allow them for 64K pages).
557 *
558 * This is also called in init_new_context() to change back the user
559 * psize from whatever the parent context had it set to
Stephen Rothwell9dfe5c532007-08-15 16:33:55 +1000560 * N.B. This may be called before mm->context.id has been set.
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000561 *
562 * This function will only change the content of the {low,high)_slice_psize
563 * masks, it will not flush SLBs as this shall be handled lazily by the
564 * caller.
565 */
566void slice_set_user_psize(struct mm_struct *mm, unsigned int psize)
567{
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000568 int index, mask_index;
569 unsigned char *hpsizes;
570 unsigned long flags, lpsizes;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000571 unsigned int old_psize;
572 int i;
573
574 slice_dbg("slice_set_user_psize(mm=%p, psize=%d)\n", mm, psize);
575
576 spin_lock_irqsave(&slice_convert_lock, flags);
577
578 old_psize = mm->context.user_psize;
579 slice_dbg(" old_psize=%d\n", old_psize);
580 if (old_psize == psize)
581 goto bail;
582
583 mm->context.user_psize = psize;
584 wmb();
585
586 lpsizes = mm->context.low_slices_psize;
587 for (i = 0; i < SLICE_NUM_LOW; i++)
588 if (((lpsizes >> (i * 4)) & 0xf) == old_psize)
589 lpsizes = (lpsizes & ~(0xful << (i * 4))) |
590 (((unsigned long)psize) << (i * 4));
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000591 /* Assign the value back */
592 mm->context.low_slices_psize = lpsizes;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000593
594 hpsizes = mm->context.high_slices_psize;
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000595 for (i = 0; i < SLICE_NUM_HIGH; i++) {
596 mask_index = i & 0x1;
597 index = i >> 1;
598 if (((hpsizes[index] >> (mask_index * 4)) & 0xf) == old_psize)
599 hpsizes[index] = (hpsizes[index] &
600 ~(0xf << (mask_index * 4))) |
601 (((unsigned long)psize) << (mask_index * 4));
602 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000603
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000604
605
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000606
607 slice_dbg(" lsps=%lx, hsps=%lx\n",
608 mm->context.low_slices_psize,
609 mm->context.high_slices_psize);
610
611 bail:
612 spin_unlock_irqrestore(&slice_convert_lock, flags);
613}
614
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000615void slice_set_psize(struct mm_struct *mm, unsigned long address,
616 unsigned int psize)
617{
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000618 unsigned char *hpsizes;
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000619 unsigned long i, flags;
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000620 u64 *lpsizes;
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000621
622 spin_lock_irqsave(&slice_convert_lock, flags);
623 if (address < SLICE_LOW_TOP) {
624 i = GET_LOW_SLICE_INDEX(address);
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000625 lpsizes = &mm->context.low_slices_psize;
626 *lpsizes = (*lpsizes & ~(0xful << (i * 4))) |
627 ((unsigned long) psize << (i * 4));
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000628 } else {
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000629 int index, mask_index;
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000630 i = GET_HIGH_SLICE_INDEX(address);
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000631 hpsizes = mm->context.high_slices_psize;
632 mask_index = i & 0x1;
633 index = i >> 1;
634 hpsizes[index] = (hpsizes[index] &
635 ~(0xf << (mask_index * 4))) |
636 (((unsigned long)psize) << (mask_index * 4));
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000637 }
Aneesh Kumar K.V7aa07272012-09-10 02:52:52 +0000638
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000639 spin_unlock_irqrestore(&slice_convert_lock, flags);
640
641#ifdef CONFIG_SPU_BASE
642 spu_flush_all_slbs(mm);
643#endif
644}
645
646void slice_set_range_psize(struct mm_struct *mm, unsigned long start,
647 unsigned long len, unsigned int psize)
648{
649 struct slice_mask mask = slice_range_to_mask(start, len);
650
651 slice_convert(mm, mask, psize);
652}
653
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000654/*
Adam Buchbinder48fc7f72012-09-19 21:48:00 -0400655 * is_hugepage_only_range() is used by generic code to verify whether
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000656 * a normal mmap mapping (non hugetlbfs) is valid on a given area.
657 *
658 * until the generic code provides a more generic hook and/or starts
659 * calling arch get_unmapped_area for MAP_FIXED (which our implementation
660 * here knows how to deal with), we hijack it to keep standard mappings
661 * away from us.
662 *
663 * because of that generic code limitation, MAP_FIXED mapping cannot
664 * "convert" back a slice with no VMAs to the standard page size, only
665 * get_unmapped_area() can. It would be possible to fix it here but I
666 * prefer working on fixing the generic code instead.
667 *
668 * WARNING: This will not work if hugetlbfs isn't enabled since the
669 * generic code will redefine that function as 0 in that. This is ok
670 * for now as we only use slices with hugetlbfs enabled. This should
671 * be fixed as the generic code gets fixed.
672 */
673int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr,
674 unsigned long len)
675{
676 struct slice_mask mask, available;
Dave Kleikamp9ba0fdb2009-01-14 09:09:34 +0000677 unsigned int psize = mm->context.user_psize;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000678
679 mask = slice_range_to_mask(addr, len);
Dave Kleikamp9ba0fdb2009-01-14 09:09:34 +0000680 available = slice_mask_for_size(mm, psize);
681#ifdef CONFIG_PPC_64K_PAGES
682 /* We need to account for 4k slices too */
683 if (psize == MMU_PAGE_64K) {
684 struct slice_mask compat_mask;
685 compat_mask = slice_mask_for_size(mm, MMU_PAGE_4K);
686 or_mask(available, compat_mask);
687 }
688#endif
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000689
690#if 0 /* too verbose */
691 slice_dbg("is_hugepage_only_range(mm=%p, addr=%lx, len=%lx)\n",
692 mm, addr, len);
693 slice_print_mask(" mask", mask);
694 slice_print_mask(" available", available);
695#endif
696 return !slice_check_fit(mask, available);
697}
698