1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
32#include <linux/export.h>
33#include <linux/hugetlb.h>
34#include <asm/mman.h>
35#include <asm/mmu.h>
36#include <asm/copro.h>
37#include <asm/hugetlb.h>
38
39
40#if (PGTABLE_RANGE >> 43) > SLICE_MASK_SIZE
41#error PGTABLE_RANGE exceeds slice_mask high_slices size
42#endif
43
44static DEFINE_SPINLOCK(slice_convert_lock);
45
46
47#ifdef DEBUG
48int _slice_debug = 1;
49
50static void slice_print_mask(const char *label, struct slice_mask mask)
51{
52 char *p, buf[16 + 3 + 64 + 1];
53 int i;
54
55 if (!_slice_debug)
56 return;
57 p = buf;
58 for (i = 0; i < SLICE_NUM_LOW; i++)
59 *(p++) = (mask.low_slices & (1 << i)) ? '1' : '0';
60 *(p++) = ' ';
61 *(p++) = '-';
62 *(p++) = ' ';
63 for (i = 0; i < SLICE_NUM_HIGH; i++)
64 *(p++) = (mask.high_slices & (1ul << i)) ? '1' : '0';
65 *(p++) = 0;
66
67 printk(KERN_DEBUG "%s:%s\n", label, buf);
68}
69
70#define slice_dbg(fmt...) do { if (_slice_debug) pr_debug(fmt); } while(0)
71
72#else
73
74static void slice_print_mask(const char *label, struct slice_mask mask) {}
75#define slice_dbg(fmt...)
76
77#endif
78
79static struct slice_mask slice_range_to_mask(unsigned long start,
80 unsigned long len)
81{
82 unsigned long end = start + len - 1;
83 struct slice_mask ret = { 0, 0 };
84
85 if (start < SLICE_LOW_TOP) {
86 unsigned long mend = min(end, SLICE_LOW_TOP);
87 unsigned long mstart = min(start, SLICE_LOW_TOP);
88
89 ret.low_slices = (1u << (GET_LOW_SLICE_INDEX(mend) + 1))
90 - (1u << GET_LOW_SLICE_INDEX(mstart));
91 }
92
93 if ((start + len) > SLICE_LOW_TOP)
94 ret.high_slices = (1ul << (GET_HIGH_SLICE_INDEX(end) + 1))
95 - (1ul << GET_HIGH_SLICE_INDEX(start));
96
97 return ret;
98}
99
100static int slice_area_is_free(struct mm_struct *mm, unsigned long addr,
101 unsigned long len)
102{
103 struct vm_area_struct *vma;
104
105 if ((mm->task_size - len) < addr)
106 return 0;
107 vma = find_vma(mm, addr);
108 return (!vma || (addr + len) <= vma->vm_start);
109}
110
111static int slice_low_has_vma(struct mm_struct *mm, unsigned long slice)
112{
113 return !slice_area_is_free(mm, slice << SLICE_LOW_SHIFT,
114 1ul << SLICE_LOW_SHIFT);
115}
116
117static int slice_high_has_vma(struct mm_struct *mm, unsigned long slice)
118{
119 unsigned long start = slice << SLICE_HIGH_SHIFT;
120 unsigned long end = start + (1ul << SLICE_HIGH_SHIFT);
121
122
123
124
125 if (start == 0)
126 start = SLICE_LOW_TOP;
127
128 return !slice_area_is_free(mm, start, end - start);
129}
130
131static struct slice_mask slice_mask_for_free(struct mm_struct *mm)
132{
133 struct slice_mask ret = { 0, 0 };
134 unsigned long i;
135
136 for (i = 0; i < SLICE_NUM_LOW; i++)
137 if (!slice_low_has_vma(mm, i))
138 ret.low_slices |= 1u << i;
139
140 if (mm->task_size <= SLICE_LOW_TOP)
141 return ret;
142
143 for (i = 0; i < SLICE_NUM_HIGH; i++)
144 if (!slice_high_has_vma(mm, i))
145 ret.high_slices |= 1ul << i;
146
147 return ret;
148}
149
150static struct slice_mask slice_mask_for_size(struct mm_struct *mm, int psize)
151{
152 unsigned char *hpsizes;
153 int index, mask_index;
154 struct slice_mask ret = { 0, 0 };
155 unsigned long i;
156 u64 lpsizes;
157
158 lpsizes = mm->context.low_slices_psize;
159 for (i = 0; i < SLICE_NUM_LOW; i++)
160 if (((lpsizes >> (i * 4)) & 0xf) == psize)
161 ret.low_slices |= 1u << i;
162
163 hpsizes = mm->context.high_slices_psize;
164 for (i = 0; i < SLICE_NUM_HIGH; i++) {
165 mask_index = i & 0x1;
166 index = i >> 1;
167 if (((hpsizes[index] >> (mask_index * 4)) & 0xf) == psize)
168 ret.high_slices |= 1ul << i;
169 }
170
171 return ret;
172}
173
174static int slice_check_fit(struct slice_mask mask, struct slice_mask available)
175{
176 return (mask.low_slices & available.low_slices) == mask.low_slices &&
177 (mask.high_slices & available.high_slices) == mask.high_slices;
178}
179
180static void slice_flush_segments(void *parm)
181{
182 struct mm_struct *mm = parm;
183 unsigned long flags;
184
185 if (mm != current->active_mm)
186 return;
187
188
189 get_paca()->context = current->active_mm->context;
190
191 local_irq_save(flags);
192 slb_flush_and_rebolt();
193 local_irq_restore(flags);
194}
195
196static void slice_convert(struct mm_struct *mm, struct slice_mask mask, int psize)
197{
198 int index, mask_index;
199
200 unsigned char *hpsizes;
201 u64 lpsizes;
202 unsigned long i, flags;
203
204 slice_dbg("slice_convert(mm=%p, psize=%d)\n", mm, psize);
205 slice_print_mask(" mask", mask);
206
207
208
209
210 spin_lock_irqsave(&slice_convert_lock, flags);
211
212 lpsizes = mm->context.low_slices_psize;
213 for (i = 0; i < SLICE_NUM_LOW; i++)
214 if (mask.low_slices & (1u << i))
215 lpsizes = (lpsizes & ~(0xful << (i * 4))) |
216 (((unsigned long)psize) << (i * 4));
217
218
219 mm->context.low_slices_psize = lpsizes;
220
221 hpsizes = mm->context.high_slices_psize;
222 for (i = 0; i < SLICE_NUM_HIGH; i++) {
223 mask_index = i & 0x1;
224 index = i >> 1;
225 if (mask.high_slices & (1ul << i))
226 hpsizes[index] = (hpsizes[index] &
227 ~(0xf << (mask_index * 4))) |
228 (((unsigned long)psize) << (mask_index * 4));
229 }
230
231 slice_dbg(" lsps=%lx, hsps=%lx\n",
232 mm->context.low_slices_psize,
233 mm->context.high_slices_psize);
234
235 spin_unlock_irqrestore(&slice_convert_lock, flags);
236
237 copro_flush_all_slbs(mm);
238}
239
240
241
242
243
244
245
246
247static bool slice_scan_available(unsigned long addr,
248 struct slice_mask available,
249 int end,
250 unsigned long *boundary_addr)
251{
252 unsigned long slice;
253 if (addr < SLICE_LOW_TOP) {
254 slice = GET_LOW_SLICE_INDEX(addr);
255 *boundary_addr = (slice + end) << SLICE_LOW_SHIFT;
256 return !!(available.low_slices & (1u << slice));
257 } else {
258 slice = GET_HIGH_SLICE_INDEX(addr);
259 *boundary_addr = (slice + end) ?
260 ((slice + end) << SLICE_HIGH_SHIFT) : SLICE_LOW_TOP;
261 return !!(available.high_slices & (1ul << slice));
262 }
263}
264
265static unsigned long slice_find_area_bottomup(struct mm_struct *mm,
266 unsigned long len,
267 struct slice_mask available,
268 int psize)
269{
270 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
271 unsigned long addr, found, next_end;
272 struct vm_unmapped_area_info info;
273
274 info.flags = 0;
275 info.length = len;
276 info.align_mask = PAGE_MASK & ((1ul << pshift) - 1);
277 info.align_offset = 0;
278
279 addr = TASK_UNMAPPED_BASE;
280 while (addr < TASK_SIZE) {
281 info.low_limit = addr;
282 if (!slice_scan_available(addr, available, 1, &addr))
283 continue;
284
285 next_slice:
286
287
288
289
290
291
292 if (addr >= TASK_SIZE)
293 addr = TASK_SIZE;
294 else if (slice_scan_available(addr, available, 1, &next_end)) {
295 addr = next_end;
296 goto next_slice;
297 }
298 info.high_limit = addr;
299
300 found = vm_unmapped_area(&info);
301 if (!(found & ~PAGE_MASK))
302 return found;
303 }
304
305 return -ENOMEM;
306}
307
308static unsigned long slice_find_area_topdown(struct mm_struct *mm,
309 unsigned long len,
310 struct slice_mask available,
311 int psize)
312{
313 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
314 unsigned long addr, found, prev;
315 struct vm_unmapped_area_info info;
316
317 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
318 info.length = len;
319 info.align_mask = PAGE_MASK & ((1ul << pshift) - 1);
320 info.align_offset = 0;
321
322 addr = mm->mmap_base;
323 while (addr > PAGE_SIZE) {
324 info.high_limit = addr;
325 if (!slice_scan_available(addr - 1, available, 0, &addr))
326 continue;
327
328 prev_slice:
329
330
331
332
333
334
335 if (addr < PAGE_SIZE)
336 addr = PAGE_SIZE;
337 else if (slice_scan_available(addr - 1, available, 0, &prev)) {
338 addr = prev;
339 goto prev_slice;
340 }
341 info.low_limit = addr;
342
343 found = vm_unmapped_area(&info);
344 if (!(found & ~PAGE_MASK))
345 return found;
346 }
347
348
349
350
351
352
353
354 return slice_find_area_bottomup(mm, len, available, psize);
355}
356
357
358static unsigned long slice_find_area(struct mm_struct *mm, unsigned long len,
359 struct slice_mask mask, int psize,
360 int topdown)
361{
362 if (topdown)
363 return slice_find_area_topdown(mm, len, mask, psize);
364 else
365 return slice_find_area_bottomup(mm, len, mask, psize);
366}
367
368#define or_mask(dst, src) do { \
369 (dst).low_slices |= (src).low_slices; \
370 (dst).high_slices |= (src).high_slices; \
371} while (0)
372
373#define andnot_mask(dst, src) do { \
374 (dst).low_slices &= ~(src).low_slices; \
375 (dst).high_slices &= ~(src).high_slices; \
376} while (0)
377
378#ifdef CONFIG_PPC_64K_PAGES
379#define MMU_PAGE_BASE MMU_PAGE_64K
380#else
381#define MMU_PAGE_BASE MMU_PAGE_4K
382#endif
383
384unsigned long slice_get_unmapped_area(unsigned long addr, unsigned long len,
385 unsigned long flags, unsigned int psize,
386 int topdown)
387{
388 struct slice_mask mask = {0, 0};
389 struct slice_mask good_mask;
390 struct slice_mask potential_mask = {0,0} ;
391 struct slice_mask compat_mask = {0, 0};
392 int fixed = (flags & MAP_FIXED);
393 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT);
394 struct mm_struct *mm = current->mm;
395 unsigned long newaddr;
396
397
398 BUG_ON(mm->task_size == 0);
399
400 slice_dbg("slice_get_unmapped_area(mm=%p, psize=%d...\n", mm, psize);
401 slice_dbg(" addr=%lx, len=%lx, flags=%lx, topdown=%d\n",
402 addr, len, flags, topdown);
403
404 if (len > mm->task_size)
405 return -ENOMEM;
406 if (len & ((1ul << pshift) - 1))
407 return -EINVAL;
408 if (fixed && (addr & ((1ul << pshift) - 1)))
409 return -EINVAL;
410 if (fixed && addr > (mm->task_size - len))
411 return -ENOMEM;
412
413
414 if (!fixed && addr) {
415 addr = _ALIGN_UP(addr, 1ul << pshift);
416 slice_dbg(" aligned addr=%lx\n", addr);
417
418 if (addr > mm->task_size - len ||
419 !slice_area_is_free(mm, addr, len))
420 addr = 0;
421 }
422
423
424
425
426 good_mask = slice_mask_for_size(mm, psize);
427 slice_print_mask(" good_mask", good_mask);
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448#ifdef CONFIG_PPC_64K_PAGES
449
450 if (psize == MMU_PAGE_64K) {
451 compat_mask = slice_mask_for_size(mm, MMU_PAGE_4K);
452 if (fixed)
453 or_mask(good_mask, compat_mask);
454 }
455#endif
456
457
458 if (addr != 0 || fixed) {
459
460 mask = slice_range_to_mask(addr, len);
461 slice_print_mask(" mask", mask);
462
463
464
465
466 if (slice_check_fit(mask, good_mask)) {
467 slice_dbg(" fits good !\n");
468 return addr;
469 }
470 } else {
471
472
473
474 newaddr = slice_find_area(mm, len, good_mask, psize, topdown);
475 if (newaddr != -ENOMEM) {
476
477
478
479 slice_dbg(" found area at 0x%lx\n", newaddr);
480 return newaddr;
481 }
482 }
483
484
485
486
487 potential_mask = slice_mask_for_free(mm);
488 or_mask(potential_mask, good_mask);
489 slice_print_mask(" potential", potential_mask);
490
491 if ((addr != 0 || fixed) && slice_check_fit(mask, potential_mask)) {
492 slice_dbg(" fits potential !\n");
493 goto convert;
494 }
495
496
497 if (fixed)
498 return -EBUSY;
499
500 slice_dbg(" search...\n");
501
502
503
504
505 if (addr) {
506 addr = slice_find_area(mm, len, good_mask, psize, topdown);
507 if (addr != -ENOMEM) {
508 slice_dbg(" found area at 0x%lx\n", addr);
509 return addr;
510 }
511 }
512
513
514
515
516 addr = slice_find_area(mm, len, potential_mask, psize, topdown);
517
518#ifdef CONFIG_PPC_64K_PAGES
519 if (addr == -ENOMEM && psize == MMU_PAGE_64K) {
520
521 or_mask(potential_mask, compat_mask);
522 addr = slice_find_area(mm, len, potential_mask, psize,
523 topdown);
524 }
525#endif
526
527 if (addr == -ENOMEM)
528 return -ENOMEM;
529
530 mask = slice_range_to_mask(addr, len);
531 slice_dbg(" found potential area at 0x%lx\n", addr);
532 slice_print_mask(" mask", mask);
533
534 convert:
535 andnot_mask(mask, good_mask);
536 andnot_mask(mask, compat_mask);
537 if (mask.low_slices || mask.high_slices) {
538 slice_convert(mm, mask, psize);
539 if (psize > MMU_PAGE_BASE)
540 on_each_cpu(slice_flush_segments, mm, 1);
541 }
542 return addr;
543
544}
545EXPORT_SYMBOL_GPL(slice_get_unmapped_area);
546
547unsigned long arch_get_unmapped_area(struct file *filp,
548 unsigned long addr,
549 unsigned long len,
550 unsigned long pgoff,
551 unsigned long flags)
552{
553 return slice_get_unmapped_area(addr, len, flags,
554 current->mm->context.user_psize, 0);
555}
556
557unsigned long arch_get_unmapped_area_topdown(struct file *filp,
558 const unsigned long addr0,
559 const unsigned long len,
560 const unsigned long pgoff,
561 const unsigned long flags)
562{
563 return slice_get_unmapped_area(addr0, len, flags,
564 current->mm->context.user_psize, 1);
565}
566
567unsigned int get_slice_psize(struct mm_struct *mm, unsigned long addr)
568{
569 unsigned char *hpsizes;
570 int index, mask_index;
571
572 if (addr < SLICE_LOW_TOP) {
573 u64 lpsizes;
574 lpsizes = mm->context.low_slices_psize;
575 index = GET_LOW_SLICE_INDEX(addr);
576 return (lpsizes >> (index * 4)) & 0xf;
577 }
578 hpsizes = mm->context.high_slices_psize;
579 index = GET_HIGH_SLICE_INDEX(addr);
580 mask_index = index & 0x1;
581 return (hpsizes[index >> 1] >> (mask_index * 4)) & 0xf;
582}
583EXPORT_SYMBOL_GPL(get_slice_psize);
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599void slice_set_user_psize(struct mm_struct *mm, unsigned int psize)
600{
601 int index, mask_index;
602 unsigned char *hpsizes;
603 unsigned long flags, lpsizes;
604 unsigned int old_psize;
605 int i;
606
607 slice_dbg("slice_set_user_psize(mm=%p, psize=%d)\n", mm, psize);
608
609 spin_lock_irqsave(&slice_convert_lock, flags);
610
611 old_psize = mm->context.user_psize;
612 slice_dbg(" old_psize=%d\n", old_psize);
613 if (old_psize == psize)
614 goto bail;
615
616 mm->context.user_psize = psize;
617 wmb();
618
619 lpsizes = mm->context.low_slices_psize;
620 for (i = 0; i < SLICE_NUM_LOW; i++)
621 if (((lpsizes >> (i * 4)) & 0xf) == old_psize)
622 lpsizes = (lpsizes & ~(0xful << (i * 4))) |
623 (((unsigned long)psize) << (i * 4));
624
625 mm->context.low_slices_psize = lpsizes;
626
627 hpsizes = mm->context.high_slices_psize;
628 for (i = 0; i < SLICE_NUM_HIGH; i++) {
629 mask_index = i & 0x1;
630 index = i >> 1;
631 if (((hpsizes[index] >> (mask_index * 4)) & 0xf) == old_psize)
632 hpsizes[index] = (hpsizes[index] &
633 ~(0xf << (mask_index * 4))) |
634 (((unsigned long)psize) << (mask_index * 4));
635 }
636
637
638
639
640 slice_dbg(" lsps=%lx, hsps=%lx\n",
641 mm->context.low_slices_psize,
642 mm->context.high_slices_psize);
643
644 bail:
645 spin_unlock_irqrestore(&slice_convert_lock, flags);
646}
647
648void slice_set_psize(struct mm_struct *mm, unsigned long address,
649 unsigned int psize)
650{
651 unsigned char *hpsizes;
652 unsigned long i, flags;
653 u64 *lpsizes;
654
655 spin_lock_irqsave(&slice_convert_lock, flags);
656 if (address < SLICE_LOW_TOP) {
657 i = GET_LOW_SLICE_INDEX(address);
658 lpsizes = &mm->context.low_slices_psize;
659 *lpsizes = (*lpsizes & ~(0xful << (i * 4))) |
660 ((unsigned long) psize << (i * 4));
661 } else {
662 int index, mask_index;
663 i = GET_HIGH_SLICE_INDEX(address);
664 hpsizes = mm->context.high_slices_psize;
665 mask_index = i & 0x1;
666 index = i >> 1;
667 hpsizes[index] = (hpsizes[index] &
668 ~(0xf << (mask_index * 4))) |
669 (((unsigned long)psize) << (mask_index * 4));
670 }
671
672 spin_unlock_irqrestore(&slice_convert_lock, flags);
673
674 copro_flush_all_slbs(mm);
675}
676
677void slice_set_range_psize(struct mm_struct *mm, unsigned long start,
678 unsigned long len, unsigned int psize)
679{
680 struct slice_mask mask = slice_range_to_mask(start, len);
681
682 slice_convert(mm, mask, psize);
683}
684
685#ifdef CONFIG_HUGETLB_PAGE
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr,
706 unsigned long len)
707{
708 struct slice_mask mask, available;
709 unsigned int psize = mm->context.user_psize;
710
711 mask = slice_range_to_mask(addr, len);
712 available = slice_mask_for_size(mm, psize);
713#ifdef CONFIG_PPC_64K_PAGES
714
715 if (psize == MMU_PAGE_64K) {
716 struct slice_mask compat_mask;
717 compat_mask = slice_mask_for_size(mm, MMU_PAGE_4K);
718 or_mask(available, compat_mask);
719 }
720#endif
721
722#if 0
723 slice_dbg("is_hugepage_only_range(mm=%p, addr=%lx, len=%lx)\n",
724 mm, addr, len);
725 slice_print_mask(" mask", mask);
726 slice_print_mask(" available", available);
727#endif
728 return !slice_check_fit(mask, available);
729}
730#endif
731