]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - arch/powerpc/mm/hugetlbpage.c
Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / mm / hugetlbpage.c
1 /*
2 * PPC64 (POWER4) Huge TLB Page Support for Kernel.
3 *
4 * Copyright (C) 2003 David Gibson, IBM Corporation.
5 *
6 * Based on the IA-32 version:
7 * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com>
8 */
9
10 #include <linux/init.h>
11 #include <linux/fs.h>
12 #include <linux/mm.h>
13 #include <linux/hugetlb.h>
14 #include <linux/pagemap.h>
15 #include <linux/smp_lock.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/sysctl.h>
19 #include <asm/mman.h>
20 #include <asm/pgalloc.h>
21 #include <asm/tlb.h>
22 #include <asm/tlbflush.h>
23 #include <asm/mmu_context.h>
24 #include <asm/machdep.h>
25 #include <asm/cputable.h>
26 #include <asm/tlb.h>
27 #include <asm/spu.h>
28
29 #include <linux/sysctl.h>
30
31 #define NUM_LOW_AREAS (0x100000000UL >> SID_SHIFT)
32 #define NUM_HIGH_AREAS (PGTABLE_RANGE >> HTLB_AREA_SHIFT)
33
34 #ifdef CONFIG_PPC_64K_PAGES
35 #define HUGEPTE_INDEX_SIZE (PMD_SHIFT-HPAGE_SHIFT)
36 #else
37 #define HUGEPTE_INDEX_SIZE (PUD_SHIFT-HPAGE_SHIFT)
38 #endif
39 #define PTRS_PER_HUGEPTE (1 << HUGEPTE_INDEX_SIZE)
40 #define HUGEPTE_TABLE_SIZE (sizeof(pte_t) << HUGEPTE_INDEX_SIZE)
41
42 #define HUGEPD_SHIFT (HPAGE_SHIFT + HUGEPTE_INDEX_SIZE)
43 #define HUGEPD_SIZE (1UL << HUGEPD_SHIFT)
44 #define HUGEPD_MASK (~(HUGEPD_SIZE-1))
45
46 #define huge_pgtable_cache (pgtable_cache[HUGEPTE_CACHE_NUM])
47
48 /* Flag to mark huge PD pointers. This means pmd_bad() and pud_bad()
49 * will choke on pointers to hugepte tables, which is handy for
50 * catching screwups early. */
51 #define HUGEPD_OK 0x1
52
53 typedef struct { unsigned long pd; } hugepd_t;
54
55 #define hugepd_none(hpd) ((hpd).pd == 0)
56
57 static inline pte_t *hugepd_page(hugepd_t hpd)
58 {
59 BUG_ON(!(hpd.pd & HUGEPD_OK));
60 return (pte_t *)(hpd.pd & ~HUGEPD_OK);
61 }
62
63 static inline pte_t *hugepte_offset(hugepd_t *hpdp, unsigned long addr)
64 {
65 unsigned long idx = ((addr >> HPAGE_SHIFT) & (PTRS_PER_HUGEPTE-1));
66 pte_t *dir = hugepd_page(*hpdp);
67
68 return dir + idx;
69 }
70
71 static int __hugepte_alloc(struct mm_struct *mm, hugepd_t *hpdp,
72 unsigned long address)
73 {
74 pte_t *new = kmem_cache_alloc(huge_pgtable_cache,
75 GFP_KERNEL|__GFP_REPEAT);
76
77 if (! new)
78 return -ENOMEM;
79
80 spin_lock(&mm->page_table_lock);
81 if (!hugepd_none(*hpdp))
82 kmem_cache_free(huge_pgtable_cache, new);
83 else
84 hpdp->pd = (unsigned long)new | HUGEPD_OK;
85 spin_unlock(&mm->page_table_lock);
86 return 0;
87 }
88
89 /* Modelled after find_linux_pte() */
90 pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
91 {
92 pgd_t *pg;
93 pud_t *pu;
94
95 BUG_ON(! in_hugepage_area(mm->context, addr));
96
97 addr &= HPAGE_MASK;
98
99 pg = pgd_offset(mm, addr);
100 if (!pgd_none(*pg)) {
101 pu = pud_offset(pg, addr);
102 if (!pud_none(*pu)) {
103 #ifdef CONFIG_PPC_64K_PAGES
104 pmd_t *pm;
105 pm = pmd_offset(pu, addr);
106 if (!pmd_none(*pm))
107 return hugepte_offset((hugepd_t *)pm, addr);
108 #else
109 return hugepte_offset((hugepd_t *)pu, addr);
110 #endif
111 }
112 }
113
114 return NULL;
115 }
116
117 pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr)
118 {
119 pgd_t *pg;
120 pud_t *pu;
121 hugepd_t *hpdp = NULL;
122
123 BUG_ON(! in_hugepage_area(mm->context, addr));
124
125 addr &= HPAGE_MASK;
126
127 pg = pgd_offset(mm, addr);
128 pu = pud_alloc(mm, pg, addr);
129
130 if (pu) {
131 #ifdef CONFIG_PPC_64K_PAGES
132 pmd_t *pm;
133 pm = pmd_alloc(mm, pu, addr);
134 if (pm)
135 hpdp = (hugepd_t *)pm;
136 #else
137 hpdp = (hugepd_t *)pu;
138 #endif
139 }
140
141 if (! hpdp)
142 return NULL;
143
144 if (hugepd_none(*hpdp) && __hugepte_alloc(mm, hpdp, addr))
145 return NULL;
146
147 return hugepte_offset(hpdp, addr);
148 }
149
150 int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
151 {
152 return 0;
153 }
154
155 static void free_hugepte_range(struct mmu_gather *tlb, hugepd_t *hpdp)
156 {
157 pte_t *hugepte = hugepd_page(*hpdp);
158
159 hpdp->pd = 0;
160 tlb->need_flush = 1;
161 pgtable_free_tlb(tlb, pgtable_free_cache(hugepte, HUGEPTE_CACHE_NUM,
162 PGF_CACHENUM_MASK));
163 }
164
165 #ifdef CONFIG_PPC_64K_PAGES
166 static void hugetlb_free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
167 unsigned long addr, unsigned long end,
168 unsigned long floor, unsigned long ceiling)
169 {
170 pmd_t *pmd;
171 unsigned long next;
172 unsigned long start;
173
174 start = addr;
175 pmd = pmd_offset(pud, addr);
176 do {
177 next = pmd_addr_end(addr, end);
178 if (pmd_none(*pmd))
179 continue;
180 free_hugepte_range(tlb, (hugepd_t *)pmd);
181 } while (pmd++, addr = next, addr != end);
182
183 start &= PUD_MASK;
184 if (start < floor)
185 return;
186 if (ceiling) {
187 ceiling &= PUD_MASK;
188 if (!ceiling)
189 return;
190 }
191 if (end - 1 > ceiling - 1)
192 return;
193
194 pmd = pmd_offset(pud, start);
195 pud_clear(pud);
196 pmd_free_tlb(tlb, pmd);
197 }
198 #endif
199
200 static void hugetlb_free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
201 unsigned long addr, unsigned long end,
202 unsigned long floor, unsigned long ceiling)
203 {
204 pud_t *pud;
205 unsigned long next;
206 unsigned long start;
207
208 start = addr;
209 pud = pud_offset(pgd, addr);
210 do {
211 next = pud_addr_end(addr, end);
212 #ifdef CONFIG_PPC_64K_PAGES
213 if (pud_none_or_clear_bad(pud))
214 continue;
215 hugetlb_free_pmd_range(tlb, pud, addr, next, floor, ceiling);
216 #else
217 if (pud_none(*pud))
218 continue;
219 free_hugepte_range(tlb, (hugepd_t *)pud);
220 #endif
221 } while (pud++, addr = next, addr != end);
222
223 start &= PGDIR_MASK;
224 if (start < floor)
225 return;
226 if (ceiling) {
227 ceiling &= PGDIR_MASK;
228 if (!ceiling)
229 return;
230 }
231 if (end - 1 > ceiling - 1)
232 return;
233
234 pud = pud_offset(pgd, start);
235 pgd_clear(pgd);
236 pud_free_tlb(tlb, pud);
237 }
238
239 /*
240 * This function frees user-level page tables of a process.
241 *
242 * Must be called with pagetable lock held.
243 */
244 void hugetlb_free_pgd_range(struct mmu_gather **tlb,
245 unsigned long addr, unsigned long end,
246 unsigned long floor, unsigned long ceiling)
247 {
248 pgd_t *pgd;
249 unsigned long next;
250 unsigned long start;
251
252 /*
253 * Comments below take from the normal free_pgd_range(). They
254 * apply here too. The tests against HUGEPD_MASK below are
255 * essential, because we *don't* test for this at the bottom
256 * level. Without them we'll attempt to free a hugepte table
257 * when we unmap just part of it, even if there are other
258 * active mappings using it.
259 *
260 * The next few lines have given us lots of grief...
261 *
262 * Why are we testing HUGEPD* at this top level? Because
263 * often there will be no work to do at all, and we'd prefer
264 * not to go all the way down to the bottom just to discover
265 * that.
266 *
267 * Why all these "- 1"s? Because 0 represents both the bottom
268 * of the address space and the top of it (using -1 for the
269 * top wouldn't help much: the masks would do the wrong thing).
270 * The rule is that addr 0 and floor 0 refer to the bottom of
271 * the address space, but end 0 and ceiling 0 refer to the top
272 * Comparisons need to use "end - 1" and "ceiling - 1" (though
273 * that end 0 case should be mythical).
274 *
275 * Wherever addr is brought up or ceiling brought down, we
276 * must be careful to reject "the opposite 0" before it
277 * confuses the subsequent tests. But what about where end is
278 * brought down by HUGEPD_SIZE below? no, end can't go down to
279 * 0 there.
280 *
281 * Whereas we round start (addr) and ceiling down, by different
282 * masks at different levels, in order to test whether a table
283 * now has no other vmas using it, so can be freed, we don't
284 * bother to round floor or end up - the tests don't need that.
285 */
286
287 addr &= HUGEPD_MASK;
288 if (addr < floor) {
289 addr += HUGEPD_SIZE;
290 if (!addr)
291 return;
292 }
293 if (ceiling) {
294 ceiling &= HUGEPD_MASK;
295 if (!ceiling)
296 return;
297 }
298 if (end - 1 > ceiling - 1)
299 end -= HUGEPD_SIZE;
300 if (addr > end - 1)
301 return;
302
303 start = addr;
304 pgd = pgd_offset((*tlb)->mm, addr);
305 do {
306 BUG_ON(! in_hugepage_area((*tlb)->mm->context, addr));
307 next = pgd_addr_end(addr, end);
308 if (pgd_none_or_clear_bad(pgd))
309 continue;
310 hugetlb_free_pud_range(*tlb, pgd, addr, next, floor, ceiling);
311 } while (pgd++, addr = next, addr != end);
312 }
313
314 void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
315 pte_t *ptep, pte_t pte)
316 {
317 if (pte_present(*ptep)) {
318 /* We open-code pte_clear because we need to pass the right
319 * argument to hpte_need_flush (huge / !huge). Might not be
320 * necessary anymore if we make hpte_need_flush() get the
321 * page size from the slices
322 */
323 pte_update(mm, addr & HPAGE_MASK, ptep, ~0UL, 1);
324 }
325 *ptep = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS);
326 }
327
328 pte_t huge_ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
329 pte_t *ptep)
330 {
331 unsigned long old = pte_update(mm, addr, ptep, ~0UL, 1);
332 return __pte(old);
333 }
334
335 struct slb_flush_info {
336 struct mm_struct *mm;
337 u16 newareas;
338 };
339
340 static void flush_low_segments(void *parm)
341 {
342 struct slb_flush_info *fi = parm;
343 unsigned long i;
344
345 BUILD_BUG_ON((sizeof(fi->newareas)*8) != NUM_LOW_AREAS);
346
347 if (current->active_mm != fi->mm)
348 return;
349
350 /* Only need to do anything if this CPU is working in the same
351 * mm as the one which has changed */
352
353 /* update the paca copy of the context struct */
354 get_paca()->context = current->active_mm->context;
355
356 asm volatile("isync" : : : "memory");
357 for (i = 0; i < NUM_LOW_AREAS; i++) {
358 if (! (fi->newareas & (1U << i)))
359 continue;
360 asm volatile("slbie %0"
361 : : "r" ((i << SID_SHIFT) | SLBIE_C));
362 }
363 asm volatile("isync" : : : "memory");
364 }
365
366 static void flush_high_segments(void *parm)
367 {
368 struct slb_flush_info *fi = parm;
369 unsigned long i, j;
370
371
372 BUILD_BUG_ON((sizeof(fi->newareas)*8) != NUM_HIGH_AREAS);
373
374 if (current->active_mm != fi->mm)
375 return;
376
377 /* Only need to do anything if this CPU is working in the same
378 * mm as the one which has changed */
379
380 /* update the paca copy of the context struct */
381 get_paca()->context = current->active_mm->context;
382
383 asm volatile("isync" : : : "memory");
384 for (i = 0; i < NUM_HIGH_AREAS; i++) {
385 if (! (fi->newareas & (1U << i)))
386 continue;
387 for (j = 0; j < (1UL << (HTLB_AREA_SHIFT-SID_SHIFT)); j++)
388 asm volatile("slbie %0"
389 :: "r" (((i << HTLB_AREA_SHIFT)
390 + (j << SID_SHIFT)) | SLBIE_C));
391 }
392 asm volatile("isync" : : : "memory");
393 }
394
395 static int prepare_low_area_for_htlb(struct mm_struct *mm, unsigned long area)
396 {
397 unsigned long start = area << SID_SHIFT;
398 unsigned long end = (area+1) << SID_SHIFT;
399 struct vm_area_struct *vma;
400
401 BUG_ON(area >= NUM_LOW_AREAS);
402
403 /* Check no VMAs are in the region */
404 vma = find_vma(mm, start);
405 if (vma && (vma->vm_start < end))
406 return -EBUSY;
407
408 return 0;
409 }
410
411 static int prepare_high_area_for_htlb(struct mm_struct *mm, unsigned long area)
412 {
413 unsigned long start = area << HTLB_AREA_SHIFT;
414 unsigned long end = (area+1) << HTLB_AREA_SHIFT;
415 struct vm_area_struct *vma;
416
417 BUG_ON(area >= NUM_HIGH_AREAS);
418
419 /* Hack, so that each addresses is controlled by exactly one
420 * of the high or low area bitmaps, the first high area starts
421 * at 4GB, not 0 */
422 if (start == 0)
423 start = 0x100000000UL;
424
425 /* Check no VMAs are in the region */
426 vma = find_vma(mm, start);
427 if (vma && (vma->vm_start < end))
428 return -EBUSY;
429
430 return 0;
431 }
432
433 static int open_low_hpage_areas(struct mm_struct *mm, u16 newareas)
434 {
435 unsigned long i;
436 struct slb_flush_info fi;
437
438 BUILD_BUG_ON((sizeof(newareas)*8) != NUM_LOW_AREAS);
439 BUILD_BUG_ON((sizeof(mm->context.low_htlb_areas)*8) != NUM_LOW_AREAS);
440
441 newareas &= ~(mm->context.low_htlb_areas);
442 if (! newareas)
443 return 0; /* The segments we want are already open */
444
445 for (i = 0; i < NUM_LOW_AREAS; i++)
446 if ((1 << i) & newareas)
447 if (prepare_low_area_for_htlb(mm, i) != 0)
448 return -EBUSY;
449
450 mm->context.low_htlb_areas |= newareas;
451
452 /* the context change must make it to memory before the flush,
453 * so that further SLB misses do the right thing. */
454 mb();
455
456 fi.mm = mm;
457 fi.newareas = newareas;
458 on_each_cpu(flush_low_segments, &fi, 0, 1);
459
460 return 0;
461 }
462
463 static int open_high_hpage_areas(struct mm_struct *mm, u16 newareas)
464 {
465 struct slb_flush_info fi;
466 unsigned long i;
467
468 BUILD_BUG_ON((sizeof(newareas)*8) != NUM_HIGH_AREAS);
469 BUILD_BUG_ON((sizeof(mm->context.high_htlb_areas)*8)
470 != NUM_HIGH_AREAS);
471
472 newareas &= ~(mm->context.high_htlb_areas);
473 if (! newareas)
474 return 0; /* The areas we want are already open */
475
476 for (i = 0; i < NUM_HIGH_AREAS; i++)
477 if ((1 << i) & newareas)
478 if (prepare_high_area_for_htlb(mm, i) != 0)
479 return -EBUSY;
480
481 mm->context.high_htlb_areas |= newareas;
482
483 /* the context change must make it to memory before the flush,
484 * so that further SLB misses do the right thing. */
485 mb();
486
487 fi.mm = mm;
488 fi.newareas = newareas;
489 on_each_cpu(flush_high_segments, &fi, 0, 1);
490
491 return 0;
492 }
493
494 int prepare_hugepage_range(unsigned long addr, unsigned long len, pgoff_t pgoff)
495 {
496 int err = 0;
497
498 if (pgoff & (~HPAGE_MASK >> PAGE_SHIFT))
499 return -EINVAL;
500 if (len & ~HPAGE_MASK)
501 return -EINVAL;
502 if (addr & ~HPAGE_MASK)
503 return -EINVAL;
504
505 if (addr < 0x100000000UL)
506 err = open_low_hpage_areas(current->mm,
507 LOW_ESID_MASK(addr, len));
508 if ((addr + len) > 0x100000000UL)
509 err = open_high_hpage_areas(current->mm,
510 HTLB_AREA_MASK(addr, len));
511 #ifdef CONFIG_SPE_BASE
512 spu_flush_all_slbs(current->mm);
513 #endif
514 if (err) {
515 printk(KERN_DEBUG "prepare_hugepage_range(%lx, %lx)"
516 " failed (lowmask: 0x%04hx, highmask: 0x%04hx)\n",
517 addr, len,
518 LOW_ESID_MASK(addr, len), HTLB_AREA_MASK(addr, len));
519 return err;
520 }
521
522 return 0;
523 }
524
525 struct page *
526 follow_huge_addr(struct mm_struct *mm, unsigned long address, int write)
527 {
528 pte_t *ptep;
529 struct page *page;
530
531 if (! in_hugepage_area(mm->context, address))
532 return ERR_PTR(-EINVAL);
533
534 ptep = huge_pte_offset(mm, address);
535 page = pte_page(*ptep);
536 if (page)
537 page += (address % HPAGE_SIZE) / PAGE_SIZE;
538
539 return page;
540 }
541
542 int pmd_huge(pmd_t pmd)
543 {
544 return 0;
545 }
546
547 struct page *
548 follow_huge_pmd(struct mm_struct *mm, unsigned long address,
549 pmd_t *pmd, int write)
550 {
551 BUG();
552 return NULL;
553 }
554
555 /* Because we have an exclusive hugepage region which lies within the
556 * normal user address space, we have to take special measures to make
557 * non-huge mmap()s evade the hugepage reserved regions. */
558 unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr,
559 unsigned long len, unsigned long pgoff,
560 unsigned long flags)
561 {
562 struct mm_struct *mm = current->mm;
563 struct vm_area_struct *vma;
564 unsigned long start_addr;
565
566 if (len > TASK_SIZE)
567 return -ENOMEM;
568
569 if (addr) {
570 addr = PAGE_ALIGN(addr);
571 vma = find_vma(mm, addr);
572 if (((TASK_SIZE - len) >= addr)
573 && (!vma || (addr+len) <= vma->vm_start)
574 && !is_hugepage_only_range(mm, addr,len))
575 return addr;
576 }
577 if (len > mm->cached_hole_size) {
578 start_addr = addr = mm->free_area_cache;
579 } else {
580 start_addr = addr = TASK_UNMAPPED_BASE;
581 mm->cached_hole_size = 0;
582 }
583
584 full_search:
585 vma = find_vma(mm, addr);
586 while (TASK_SIZE - len >= addr) {
587 BUG_ON(vma && (addr >= vma->vm_end));
588
589 if (touches_hugepage_low_range(mm, addr, len)) {
590 addr = ALIGN(addr+1, 1<<SID_SHIFT);
591 vma = find_vma(mm, addr);
592 continue;
593 }
594 if (touches_hugepage_high_range(mm, addr, len)) {
595 addr = ALIGN(addr+1, 1UL<<HTLB_AREA_SHIFT);
596 vma = find_vma(mm, addr);
597 continue;
598 }
599 if (!vma || addr + len <= vma->vm_start) {
600 /*
601 * Remember the place where we stopped the search:
602 */
603 mm->free_area_cache = addr + len;
604 return addr;
605 }
606 if (addr + mm->cached_hole_size < vma->vm_start)
607 mm->cached_hole_size = vma->vm_start - addr;
608 addr = vma->vm_end;
609 vma = vma->vm_next;
610 }
611
612 /* Make sure we didn't miss any holes */
613 if (start_addr != TASK_UNMAPPED_BASE) {
614 start_addr = addr = TASK_UNMAPPED_BASE;
615 mm->cached_hole_size = 0;
616 goto full_search;
617 }
618 return -ENOMEM;
619 }
620
621 /*
622 * This mmap-allocator allocates new areas top-down from below the
623 * stack's low limit (the base):
624 *
625 * Because we have an exclusive hugepage region which lies within the
626 * normal user address space, we have to take special measures to make
627 * non-huge mmap()s evade the hugepage reserved regions.
628 */
629 unsigned long
630 arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
631 const unsigned long len, const unsigned long pgoff,
632 const unsigned long flags)
633 {
634 struct vm_area_struct *vma, *prev_vma;
635 struct mm_struct *mm = current->mm;
636 unsigned long base = mm->mmap_base, addr = addr0;
637 unsigned long largest_hole = mm->cached_hole_size;
638 int first_time = 1;
639
640 /* requested length too big for entire address space */
641 if (len > TASK_SIZE)
642 return -ENOMEM;
643
644 /* dont allow allocations above current base */
645 if (mm->free_area_cache > base)
646 mm->free_area_cache = base;
647
648 /* requesting a specific address */
649 if (addr) {
650 addr = PAGE_ALIGN(addr);
651 vma = find_vma(mm, addr);
652 if (TASK_SIZE - len >= addr &&
653 (!vma || addr + len <= vma->vm_start)
654 && !is_hugepage_only_range(mm, addr,len))
655 return addr;
656 }
657
658 if (len <= largest_hole) {
659 largest_hole = 0;
660 mm->free_area_cache = base;
661 }
662 try_again:
663 /* make sure it can fit in the remaining address space */
664 if (mm->free_area_cache < len)
665 goto fail;
666
667 /* either no address requested or cant fit in requested address hole */
668 addr = (mm->free_area_cache - len) & PAGE_MASK;
669 do {
670 hugepage_recheck:
671 if (touches_hugepage_low_range(mm, addr, len)) {
672 addr = (addr & ((~0) << SID_SHIFT)) - len;
673 goto hugepage_recheck;
674 } else if (touches_hugepage_high_range(mm, addr, len)) {
675 addr = (addr & ((~0UL) << HTLB_AREA_SHIFT)) - len;
676 goto hugepage_recheck;
677 }
678
679 /*
680 * Lookup failure means no vma is above this address,
681 * i.e. return with success:
682 */
683 if (!(vma = find_vma_prev(mm, addr, &prev_vma)))
684 return addr;
685
686 /*
687 * new region fits between prev_vma->vm_end and
688 * vma->vm_start, use it:
689 */
690 if (addr+len <= vma->vm_start &&
691 (!prev_vma || (addr >= prev_vma->vm_end))) {
692 /* remember the address as a hint for next time */
693 mm->cached_hole_size = largest_hole;
694 return (mm->free_area_cache = addr);
695 } else {
696 /* pull free_area_cache down to the first hole */
697 if (mm->free_area_cache == vma->vm_end) {
698 mm->free_area_cache = vma->vm_start;
699 mm->cached_hole_size = largest_hole;
700 }
701 }
702
703 /* remember the largest hole we saw so far */
704 if (addr + largest_hole < vma->vm_start)
705 largest_hole = vma->vm_start - addr;
706
707 /* try just below the current vma->vm_start */
708 addr = vma->vm_start-len;
709 } while (len <= vma->vm_start);
710
711 fail:
712 /*
713 * if hint left us with no space for the requested
714 * mapping then try again:
715 */
716 if (first_time) {
717 mm->free_area_cache = base;
718 largest_hole = 0;
719 first_time = 0;
720 goto try_again;
721 }
722 /*
723 * A failed mmap() very likely causes application failure,
724 * so fall back to the bottom-up function here. This scenario
725 * can happen with large stack limits and large mmap()
726 * allocations.
727 */
728 mm->free_area_cache = TASK_UNMAPPED_BASE;
729 mm->cached_hole_size = ~0UL;
730 addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
731 /*
732 * Restore the topdown base:
733 */
734 mm->free_area_cache = base;
735 mm->cached_hole_size = ~0UL;
736
737 return addr;
738 }
739
740 static int htlb_check_hinted_area(unsigned long addr, unsigned long len)
741 {
742 struct vm_area_struct *vma;
743
744 vma = find_vma(current->mm, addr);
745 if (TASK_SIZE - len >= addr &&
746 (!vma || ((addr + len) <= vma->vm_start)))
747 return 0;
748
749 return -ENOMEM;
750 }
751
752 static unsigned long htlb_get_low_area(unsigned long len, u16 segmask)
753 {
754 unsigned long addr = 0;
755 struct vm_area_struct *vma;
756
757 vma = find_vma(current->mm, addr);
758 while (addr + len <= 0x100000000UL) {
759 BUG_ON(vma && (addr >= vma->vm_end)); /* invariant */
760
761 if (! __within_hugepage_low_range(addr, len, segmask)) {
762 addr = ALIGN(addr+1, 1<<SID_SHIFT);
763 vma = find_vma(current->mm, addr);
764 continue;
765 }
766
767 if (!vma || (addr + len) <= vma->vm_start)
768 return addr;
769 addr = ALIGN(vma->vm_end, HPAGE_SIZE);
770 /* Depending on segmask this might not be a confirmed
771 * hugepage region, so the ALIGN could have skipped
772 * some VMAs */
773 vma = find_vma(current->mm, addr);
774 }
775
776 return -ENOMEM;
777 }
778
779 static unsigned long htlb_get_high_area(unsigned long len, u16 areamask)
780 {
781 unsigned long addr = 0x100000000UL;
782 struct vm_area_struct *vma;
783
784 vma = find_vma(current->mm, addr);
785 while (addr + len <= TASK_SIZE_USER64) {
786 BUG_ON(vma && (addr >= vma->vm_end)); /* invariant */
787
788 if (! __within_hugepage_high_range(addr, len, areamask)) {
789 addr = ALIGN(addr+1, 1UL<<HTLB_AREA_SHIFT);
790 vma = find_vma(current->mm, addr);
791 continue;
792 }
793
794 if (!vma || (addr + len) <= vma->vm_start)
795 return addr;
796 addr = ALIGN(vma->vm_end, HPAGE_SIZE);
797 /* Depending on segmask this might not be a confirmed
798 * hugepage region, so the ALIGN could have skipped
799 * some VMAs */
800 vma = find_vma(current->mm, addr);
801 }
802
803 return -ENOMEM;
804 }
805
806 unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
807 unsigned long len, unsigned long pgoff,
808 unsigned long flags)
809 {
810 int lastshift;
811 u16 areamask, curareas;
812
813 if (HPAGE_SHIFT == 0)
814 return -EINVAL;
815 if (len & ~HPAGE_MASK)
816 return -EINVAL;
817 if (len > TASK_SIZE)
818 return -ENOMEM;
819
820 if (!cpu_has_feature(CPU_FTR_16M_PAGE))
821 return -EINVAL;
822
823 /* Paranoia, caller should have dealt with this */
824 BUG_ON((addr + len) < addr);
825
826 if (test_thread_flag(TIF_32BIT)) {
827 curareas = current->mm->context.low_htlb_areas;
828
829 /* First see if we can use the hint address */
830 if (addr && (htlb_check_hinted_area(addr, len) == 0)) {
831 areamask = LOW_ESID_MASK(addr, len);
832 if (open_low_hpage_areas(current->mm, areamask) == 0)
833 return addr;
834 }
835
836 /* Next see if we can map in the existing low areas */
837 addr = htlb_get_low_area(len, curareas);
838 if (addr != -ENOMEM)
839 return addr;
840
841 /* Finally go looking for areas to open */
842 lastshift = 0;
843 for (areamask = LOW_ESID_MASK(0x100000000UL-len, len);
844 ! lastshift; areamask >>=1) {
845 if (areamask & 1)
846 lastshift = 1;
847
848 addr = htlb_get_low_area(len, curareas | areamask);
849 if ((addr != -ENOMEM)
850 && open_low_hpage_areas(current->mm, areamask) == 0)
851 return addr;
852 }
853 } else {
854 curareas = current->mm->context.high_htlb_areas;
855
856 /* First see if we can use the hint address */
857 /* We discourage 64-bit processes from doing hugepage
858 * mappings below 4GB (must use MAP_FIXED) */
859 if ((addr >= 0x100000000UL)
860 && (htlb_check_hinted_area(addr, len) == 0)) {
861 areamask = HTLB_AREA_MASK(addr, len);
862 if (open_high_hpage_areas(current->mm, areamask) == 0)
863 return addr;
864 }
865
866 /* Next see if we can map in the existing high areas */
867 addr = htlb_get_high_area(len, curareas);
868 if (addr != -ENOMEM)
869 return addr;
870
871 /* Finally go looking for areas to open */
872 lastshift = 0;
873 for (areamask = HTLB_AREA_MASK(TASK_SIZE_USER64-len, len);
874 ! lastshift; areamask >>=1) {
875 if (areamask & 1)
876 lastshift = 1;
877
878 addr = htlb_get_high_area(len, curareas | areamask);
879 if ((addr != -ENOMEM)
880 && open_high_hpage_areas(current->mm, areamask) == 0)
881 return addr;
882 }
883 }
884 printk(KERN_DEBUG "hugetlb_get_unmapped_area() unable to open"
885 " enough areas\n");
886 return -ENOMEM;
887 }
888
889 /*
890 * Called by asm hashtable.S for doing lazy icache flush
891 */
892 static unsigned int hash_huge_page_do_lazy_icache(unsigned long rflags,
893 pte_t pte, int trap)
894 {
895 struct page *page;
896 int i;
897
898 if (!pfn_valid(pte_pfn(pte)))
899 return rflags;
900
901 page = pte_page(pte);
902
903 /* page is dirty */
904 if (!test_bit(PG_arch_1, &page->flags) && !PageReserved(page)) {
905 if (trap == 0x400) {
906 for (i = 0; i < (HPAGE_SIZE / PAGE_SIZE); i++)
907 __flush_dcache_icache(page_address(page+i));
908 set_bit(PG_arch_1, &page->flags);
909 } else {
910 rflags |= HPTE_R_N;
911 }
912 }
913 return rflags;
914 }
915
916 int hash_huge_page(struct mm_struct *mm, unsigned long access,
917 unsigned long ea, unsigned long vsid, int local,
918 unsigned long trap)
919 {
920 pte_t *ptep;
921 unsigned long old_pte, new_pte;
922 unsigned long va, rflags, pa;
923 long slot;
924 int err = 1;
925
926 ptep = huge_pte_offset(mm, ea);
927
928 /* Search the Linux page table for a match with va */
929 va = (vsid << 28) | (ea & 0x0fffffff);
930
931 /*
932 * If no pte found or not present, send the problem up to
933 * do_page_fault
934 */
935 if (unlikely(!ptep || pte_none(*ptep)))
936 goto out;
937
938 /*
939 * Check the user's access rights to the page. If access should be
940 * prevented then send the problem up to do_page_fault.
941 */
942 if (unlikely(access & ~pte_val(*ptep)))
943 goto out;
944 /*
945 * At this point, we have a pte (old_pte) which can be used to build
946 * or update an HPTE. There are 2 cases:
947 *
948 * 1. There is a valid (present) pte with no associated HPTE (this is
949 * the most common case)
950 * 2. There is a valid (present) pte with an associated HPTE. The
951 * current values of the pp bits in the HPTE prevent access
952 * because we are doing software DIRTY bit management and the
953 * page is currently not DIRTY.
954 */
955
956
957 do {
958 old_pte = pte_val(*ptep);
959 if (old_pte & _PAGE_BUSY)
960 goto out;
961 new_pte = old_pte | _PAGE_BUSY |
962 _PAGE_ACCESSED | _PAGE_HASHPTE;
963 } while(old_pte != __cmpxchg_u64((unsigned long *)ptep,
964 old_pte, new_pte));
965
966 rflags = 0x2 | (!(new_pte & _PAGE_RW));
967 /* _PAGE_EXEC -> HW_NO_EXEC since it's inverted */
968 rflags |= ((new_pte & _PAGE_EXEC) ? 0 : HPTE_R_N);
969 if (!cpu_has_feature(CPU_FTR_COHERENT_ICACHE))
970 /* No CPU has hugepages but lacks no execute, so we
971 * don't need to worry about that case */
972 rflags = hash_huge_page_do_lazy_icache(rflags, __pte(old_pte),
973 trap);
974
975 /* Check if pte already has an hpte (case 2) */
976 if (unlikely(old_pte & _PAGE_HASHPTE)) {
977 /* There MIGHT be an HPTE for this pte */
978 unsigned long hash, slot;
979
980 hash = hpt_hash(va, HPAGE_SHIFT);
981 if (old_pte & _PAGE_F_SECOND)
982 hash = ~hash;
983 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
984 slot += (old_pte & _PAGE_F_GIX) >> 12;
985
986 if (ppc_md.hpte_updatepp(slot, rflags, va, mmu_huge_psize,
987 local) == -1)
988 old_pte &= ~_PAGE_HPTEFLAGS;
989 }
990
991 if (likely(!(old_pte & _PAGE_HASHPTE))) {
992 unsigned long hash = hpt_hash(va, HPAGE_SHIFT);
993 unsigned long hpte_group;
994
995 pa = pte_pfn(__pte(old_pte)) << PAGE_SHIFT;
996
997 repeat:
998 hpte_group = ((hash & htab_hash_mask) *
999 HPTES_PER_GROUP) & ~0x7UL;
1000
1001 /* clear HPTE slot informations in new PTE */
1002 new_pte = (new_pte & ~_PAGE_HPTEFLAGS) | _PAGE_HASHPTE;
1003
1004 /* Add in WIMG bits */
1005 /* XXX We should store these in the pte */
1006 /* --BenH: I think they are ... */
1007 rflags |= _PAGE_COHERENT;
1008
1009 /* Insert into the hash table, primary slot */
1010 slot = ppc_md.hpte_insert(hpte_group, va, pa, rflags, 0,
1011 mmu_huge_psize);
1012
1013 /* Primary is full, try the secondary */
1014 if (unlikely(slot == -1)) {
1015 hpte_group = ((~hash & htab_hash_mask) *
1016 HPTES_PER_GROUP) & ~0x7UL;
1017 slot = ppc_md.hpte_insert(hpte_group, va, pa, rflags,
1018 HPTE_V_SECONDARY,
1019 mmu_huge_psize);
1020 if (slot == -1) {
1021 if (mftb() & 0x1)
1022 hpte_group = ((hash & htab_hash_mask) *
1023 HPTES_PER_GROUP)&~0x7UL;
1024
1025 ppc_md.hpte_remove(hpte_group);
1026 goto repeat;
1027 }
1028 }
1029
1030 if (unlikely(slot == -2))
1031 panic("hash_huge_page: pte_insert failed\n");
1032
1033 new_pte |= (slot << 12) & (_PAGE_F_SECOND | _PAGE_F_GIX);
1034 }
1035
1036 /*
1037 * No need to use ldarx/stdcx here
1038 */
1039 *ptep = __pte(new_pte & ~_PAGE_BUSY);
1040
1041 err = 0;
1042
1043 out:
1044 return err;
1045 }
1046
1047 static void zero_ctor(void *addr, struct kmem_cache *cache, unsigned long flags)
1048 {
1049 memset(addr, 0, kmem_cache_size(cache));
1050 }
1051
1052 static int __init hugetlbpage_init(void)
1053 {
1054 if (!cpu_has_feature(CPU_FTR_16M_PAGE))
1055 return -ENODEV;
1056
1057 huge_pgtable_cache = kmem_cache_create("hugepte_cache",
1058 HUGEPTE_TABLE_SIZE,
1059 HUGEPTE_TABLE_SIZE,
1060 SLAB_HWCACHE_ALIGN |
1061 SLAB_MUST_HWCACHE_ALIGN,
1062 zero_ctor, NULL);
1063 if (! huge_pgtable_cache)
1064 panic("hugetlbpage_init(): could not create hugepte cache\n");
1065
1066 return 0;
1067 }
1068
1069 module_init(hugetlbpage_init);