powerpc/mm: Disable hugepd for 64K page size.
[linux-2.6-block.git] / arch / powerpc / mm / hugetlbpage.c
CommitLineData
1da177e4 1/*
41151e77 2 * PPC Huge TLB Page Support for Kernel.
1da177e4
LT
3 *
4 * Copyright (C) 2003 David Gibson, IBM Corporation.
41151e77 5 * Copyright (C) 2011 Becky Bruce, Freescale Semiconductor
1da177e4
LT
6 *
7 * Based on the IA-32 version:
8 * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com>
9 */
10
1da177e4 11#include <linux/mm.h>
883a3e52 12#include <linux/io.h>
5a0e3ad6 13#include <linux/slab.h>
1da177e4 14#include <linux/hugetlb.h>
342d3db7 15#include <linux/export.h>
41151e77
BB
16#include <linux/of_fdt.h>
17#include <linux/memblock.h>
18#include <linux/bootmem.h>
13020be8 19#include <linux/moduleparam.h>
883a3e52 20#include <asm/pgtable.h>
1da177e4
LT
21#include <asm/pgalloc.h>
22#include <asm/tlb.h>
41151e77 23#include <asm/setup.h>
29409997
AK
24#include <asm/hugetlb.h>
25
26#ifdef CONFIG_HUGETLB_PAGE
1da177e4 27
91224346
JT
28#define PAGE_SHIFT_64K 16
29#define PAGE_SHIFT_16M 24
30#define PAGE_SHIFT_16G 34
4ec161cf 31
41151e77 32unsigned int HPAGE_SHIFT;
ec4b2c0c 33
41151e77
BB
34/*
35 * Tracks gpages after the device tree is scanned and before the
a6146888
BB
36 * huge_boot_pages list is ready. On non-Freescale implementations, this is
37 * just used to track 16G pages and so is a single array. FSL-based
38 * implementations may have more than one gpage size, so we need multiple
39 * arrays
41151e77 40 */
881fde1d 41#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77
BB
42#define MAX_NUMBER_GPAGES 128
43struct psize_gpages {
44 u64 gpage_list[MAX_NUMBER_GPAGES];
45 unsigned int nr_gpages;
46};
47static struct psize_gpages gpage_freearray[MMU_PAGE_COUNT];
881fde1d
BB
48#else
49#define MAX_NUMBER_GPAGES 1024
50static u64 gpage_freearray[MAX_NUMBER_GPAGES];
51static unsigned nr_gpages;
41151e77 52#endif
f10a04c0 53
a4fe3ce7
DG
54#define hugepd_none(hpd) ((hpd).pd == 0)
55
e2b3d202
AK
56#ifdef CONFIG_PPC_BOOK3S_64
57/*
58 * At this point we do the placement change only for BOOK3S 64. This would
59 * possibly work on other subarchs.
60 */
61
62/*
63 * We have PGD_INDEX_SIZ = 12 and PTE_INDEX_SIZE = 8, so that we can have
64 * 16GB hugepage pte in PGD and 16MB hugepage pte at PMD;
06743521
AK
65 *
66 * Defined in such a way that we can optimize away code block at build time
67 * if CONFIG_HUGETLB_PAGE=n.
e2b3d202
AK
68 */
69int pmd_huge(pmd_t pmd)
70{
71 /*
72 * leaf pte for huge page, bottom two bits != 00
73 */
74 return ((pmd_val(pmd) & 0x3) != 0x0);
75}
76
77int pud_huge(pud_t pud)
78{
79 /*
80 * leaf pte for huge page, bottom two bits != 00
81 */
82 return ((pud_val(pud) & 0x3) != 0x0);
83}
84
85int pgd_huge(pgd_t pgd)
86{
87 /*
88 * leaf pte for huge page, bottom two bits != 00
89 */
90 return ((pgd_val(pgd) & 0x3) != 0x0);
91}
ec2640b1
AK
92
93#if defined(CONFIG_PPC_64K_PAGES) && defined(CONFIG_DEBUG_VM)
94/*
95 * This enables us to catch the wrong page directory format
96 * Moved here so that we can use WARN() in the call.
97 */
98int hugepd_ok(hugepd_t hpd)
99{
100 bool is_hugepd;
101
102 /*
103 * We should not find this format in page directory, warn otherwise.
104 */
105 is_hugepd = (((hpd.pd & 0x3) == 0x0) && ((hpd.pd & HUGEPD_SHIFT_MASK) != 0));
106 WARN(is_hugepd, "Found wrong page directory format\n");
107 return 0;
108}
109#endif
110
e2b3d202
AK
111#else
112int pmd_huge(pmd_t pmd)
113{
114 return 0;
115}
116
117int pud_huge(pud_t pud)
118{
119 return 0;
120}
121
122int pgd_huge(pgd_t pgd)
123{
124 return 0;
125}
126#endif
127
a4fe3ce7
DG
128pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
129{
12bc9f6f 130 /* Only called for hugetlbfs pages, hence can ignore THP */
691e95fd 131 return __find_linux_pte_or_hugepte(mm->pgd, addr, NULL);
a4fe3ce7
DG
132}
133
f10a04c0 134static int __hugepte_alloc(struct mm_struct *mm, hugepd_t *hpdp,
a4fe3ce7 135 unsigned long address, unsigned pdshift, unsigned pshift)
f10a04c0 136{
41151e77
BB
137 struct kmem_cache *cachep;
138 pte_t *new;
139
881fde1d 140#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77
BB
141 int i;
142 int num_hugepd = 1 << (pshift - pdshift);
143 cachep = hugepte_cache;
881fde1d
BB
144#else
145 cachep = PGT_CACHE(pdshift - pshift);
41151e77
BB
146#endif
147
148 new = kmem_cache_zalloc(cachep, GFP_KERNEL|__GFP_REPEAT);
f10a04c0 149
a4fe3ce7
DG
150 BUG_ON(pshift > HUGEPD_SHIFT_MASK);
151 BUG_ON((unsigned long)new & HUGEPD_SHIFT_MASK);
152
f10a04c0
DG
153 if (! new)
154 return -ENOMEM;
155
156 spin_lock(&mm->page_table_lock);
881fde1d 157#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77
BB
158 /*
159 * We have multiple higher-level entries that point to the same
160 * actual pte location. Fill in each as we go and backtrack on error.
161 * We need all of these so the DTLB pgtable walk code can find the
162 * right higher-level entry without knowing if it's a hugepage or not.
163 */
164 for (i = 0; i < num_hugepd; i++, hpdp++) {
165 if (unlikely(!hugepd_none(*hpdp)))
166 break;
167 else
cf9427b8 168 /* We use the old format for PPC_FSL_BOOK3E */
41151e77
BB
169 hpdp->pd = ((unsigned long)new & ~PD_HUGE) | pshift;
170 }
171 /* If we bailed from the for loop early, an error occurred, clean up */
172 if (i < num_hugepd) {
173 for (i = i - 1 ; i >= 0; i--, hpdp--)
174 hpdp->pd = 0;
175 kmem_cache_free(cachep, new);
176 }
a1cd5419
BB
177#else
178 if (!hugepd_none(*hpdp))
179 kmem_cache_free(cachep, new);
cf9427b8
AK
180 else {
181#ifdef CONFIG_PPC_BOOK3S_64
182 hpdp->pd = (unsigned long)new |
183 (shift_to_mmu_psize(pshift) << 2);
184#else
a1cd5419 185 hpdp->pd = ((unsigned long)new & ~PD_HUGE) | pshift;
cf9427b8
AK
186#endif
187 }
41151e77 188#endif
f10a04c0
DG
189 spin_unlock(&mm->page_table_lock);
190 return 0;
191}
192
a1cd5419
BB
193/*
194 * These macros define how to determine which level of the page table holds
195 * the hpdp.
196 */
197#ifdef CONFIG_PPC_FSL_BOOK3E
198#define HUGEPD_PGD_SHIFT PGDIR_SHIFT
199#define HUGEPD_PUD_SHIFT PUD_SHIFT
200#else
201#define HUGEPD_PGD_SHIFT PUD_SHIFT
202#define HUGEPD_PUD_SHIFT PMD_SHIFT
203#endif
204
e2b3d202
AK
205#ifdef CONFIG_PPC_BOOK3S_64
206/*
207 * At this point we do the placement change only for BOOK3S 64. This would
208 * possibly work on other subarchs.
209 */
210pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz)
211{
212 pgd_t *pg;
213 pud_t *pu;
214 pmd_t *pm;
215 hugepd_t *hpdp = NULL;
216 unsigned pshift = __ffs(sz);
217 unsigned pdshift = PGDIR_SHIFT;
218
219 addr &= ~(sz-1);
220 pg = pgd_offset(mm, addr);
221
222 if (pshift == PGDIR_SHIFT)
223 /* 16GB huge page */
224 return (pte_t *) pg;
225 else if (pshift > PUD_SHIFT)
226 /*
227 * We need to use hugepd table
228 */
229 hpdp = (hugepd_t *)pg;
230 else {
231 pdshift = PUD_SHIFT;
232 pu = pud_alloc(mm, pg, addr);
233 if (pshift == PUD_SHIFT)
234 return (pte_t *)pu;
235 else if (pshift > PMD_SHIFT)
236 hpdp = (hugepd_t *)pu;
237 else {
238 pdshift = PMD_SHIFT;
239 pm = pmd_alloc(mm, pu, addr);
240 if (pshift == PMD_SHIFT)
241 /* 16MB hugepage */
242 return (pte_t *)pm;
243 else
244 hpdp = (hugepd_t *)pm;
245 }
246 }
247 if (!hpdp)
248 return NULL;
249
250 BUG_ON(!hugepd_none(*hpdp) && !hugepd_ok(*hpdp));
251
252 if (hugepd_none(*hpdp) && __hugepte_alloc(mm, hpdp, addr, pdshift, pshift))
253 return NULL;
254
b30e7590 255 return hugepte_offset(*hpdp, addr, pdshift);
e2b3d202
AK
256}
257
258#else
259
a4fe3ce7 260pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz)
0b26425c 261{
a4fe3ce7
DG
262 pgd_t *pg;
263 pud_t *pu;
264 pmd_t *pm;
265 hugepd_t *hpdp = NULL;
266 unsigned pshift = __ffs(sz);
267 unsigned pdshift = PGDIR_SHIFT;
268
269 addr &= ~(sz-1);
270
271 pg = pgd_offset(mm, addr);
a1cd5419
BB
272
273 if (pshift >= HUGEPD_PGD_SHIFT) {
a4fe3ce7
DG
274 hpdp = (hugepd_t *)pg;
275 } else {
276 pdshift = PUD_SHIFT;
277 pu = pud_alloc(mm, pg, addr);
a1cd5419 278 if (pshift >= HUGEPD_PUD_SHIFT) {
a4fe3ce7
DG
279 hpdp = (hugepd_t *)pu;
280 } else {
281 pdshift = PMD_SHIFT;
282 pm = pmd_alloc(mm, pu, addr);
283 hpdp = (hugepd_t *)pm;
284 }
285 }
286
287 if (!hpdp)
288 return NULL;
289
290 BUG_ON(!hugepd_none(*hpdp) && !hugepd_ok(*hpdp));
291
292 if (hugepd_none(*hpdp) && __hugepte_alloc(mm, hpdp, addr, pdshift, pshift))
293 return NULL;
294
b30e7590 295 return hugepte_offset(*hpdp, addr, pdshift);
4ec161cf 296}
e2b3d202 297#endif
4ec161cf 298
881fde1d 299#ifdef CONFIG_PPC_FSL_BOOK3E
658013e9 300/* Build list of addresses of gigantic pages. This function is used in early
14ed7409 301 * boot before the buddy allocator is setup.
658013e9 302 */
41151e77
BB
303void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages)
304{
305 unsigned int idx = shift_to_mmu_psize(__ffs(page_size));
306 int i;
307
308 if (addr == 0)
309 return;
310
311 gpage_freearray[idx].nr_gpages = number_of_pages;
312
313 for (i = 0; i < number_of_pages; i++) {
314 gpage_freearray[idx].gpage_list[i] = addr;
315 addr += page_size;
316 }
317}
318
319/*
320 * Moves the gigantic page addresses from the temporary list to the
321 * huge_boot_pages list.
322 */
323int alloc_bootmem_huge_page(struct hstate *hstate)
324{
325 struct huge_bootmem_page *m;
2415cf12 326 int idx = shift_to_mmu_psize(huge_page_shift(hstate));
41151e77
BB
327 int nr_gpages = gpage_freearray[idx].nr_gpages;
328
329 if (nr_gpages == 0)
330 return 0;
331
332#ifdef CONFIG_HIGHMEM
333 /*
334 * If gpages can be in highmem we can't use the trick of storing the
335 * data structure in the page; allocate space for this
336 */
e39f223f 337 m = memblock_virt_alloc(sizeof(struct huge_bootmem_page), 0);
41151e77
BB
338 m->phys = gpage_freearray[idx].gpage_list[--nr_gpages];
339#else
340 m = phys_to_virt(gpage_freearray[idx].gpage_list[--nr_gpages]);
341#endif
342
343 list_add(&m->list, &huge_boot_pages);
344 gpage_freearray[idx].nr_gpages = nr_gpages;
345 gpage_freearray[idx].gpage_list[nr_gpages] = 0;
346 m->hstate = hstate;
347
348 return 1;
349}
350/*
351 * Scan the command line hugepagesz= options for gigantic pages; store those in
352 * a list that we use to allocate the memory once all options are parsed.
353 */
354
355unsigned long gpage_npages[MMU_PAGE_COUNT];
356
89528127 357static int __init do_gpage_early_setup(char *param, char *val,
ecc86170 358 const char *unused, void *arg)
41151e77
BB
359{
360 static phys_addr_t size;
361 unsigned long npages;
362
363 /*
364 * The hugepagesz and hugepages cmdline options are interleaved. We
365 * use the size variable to keep track of whether or not this was done
366 * properly and skip over instances where it is incorrect. Other
367 * command-line parsing code will issue warnings, so we don't need to.
368 *
369 */
370 if ((strcmp(param, "default_hugepagesz") == 0) ||
371 (strcmp(param, "hugepagesz") == 0)) {
372 size = memparse(val, NULL);
373 } else if (strcmp(param, "hugepages") == 0) {
374 if (size != 0) {
375 if (sscanf(val, "%lu", &npages) <= 0)
376 npages = 0;
c4f3eb5f
JY
377 if (npages > MAX_NUMBER_GPAGES) {
378 pr_warn("MMU: %lu pages requested for page "
379 "size %llu KB, limiting to "
380 __stringify(MAX_NUMBER_GPAGES) "\n",
381 npages, size / 1024);
382 npages = MAX_NUMBER_GPAGES;
383 }
41151e77
BB
384 gpage_npages[shift_to_mmu_psize(__ffs(size))] = npages;
385 size = 0;
386 }
387 }
388 return 0;
389}
390
391
392/*
393 * This function allocates physical space for pages that are larger than the
394 * buddy allocator can handle. We want to allocate these in highmem because
395 * the amount of lowmem is limited. This means that this function MUST be
396 * called before lowmem_end_addr is set up in MMU_init() in order for the lmb
397 * allocate to grab highmem.
398 */
399void __init reserve_hugetlb_gpages(void)
400{
401 static __initdata char cmdline[COMMAND_LINE_SIZE];
402 phys_addr_t size, base;
403 int i;
404
405 strlcpy(cmdline, boot_command_line, COMMAND_LINE_SIZE);
026cee00 406 parse_args("hugetlb gpages", cmdline, NULL, 0, 0, 0,
ecc86170 407 NULL, &do_gpage_early_setup);
41151e77
BB
408
409 /*
410 * Walk gpage list in reverse, allocating larger page sizes first.
411 * Skip over unsupported sizes, or sizes that have 0 gpages allocated.
412 * When we reach the point in the list where pages are no longer
413 * considered gpages, we're done.
414 */
415 for (i = MMU_PAGE_COUNT-1; i >= 0; i--) {
416 if (mmu_psize_defs[i].shift == 0 || gpage_npages[i] == 0)
417 continue;
418 else if (mmu_psize_to_shift(i) < (MAX_ORDER + PAGE_SHIFT))
419 break;
420
421 size = (phys_addr_t)(1ULL << mmu_psize_to_shift(i));
422 base = memblock_alloc_base(size * gpage_npages[i], size,
423 MEMBLOCK_ALLOC_ANYWHERE);
424 add_gpage(base, size, gpage_npages[i]);
425 }
426}
427
881fde1d 428#else /* !PPC_FSL_BOOK3E */
41151e77
BB
429
430/* Build list of addresses of gigantic pages. This function is used in early
14ed7409 431 * boot before the buddy allocator is setup.
41151e77
BB
432 */
433void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages)
658013e9
JT
434{
435 if (!addr)
436 return;
437 while (number_of_pages > 0) {
438 gpage_freearray[nr_gpages] = addr;
439 nr_gpages++;
440 number_of_pages--;
441 addr += page_size;
442 }
443}
444
ec4b2c0c 445/* Moves the gigantic page addresses from the temporary list to the
0d9ea754
JT
446 * huge_boot_pages list.
447 */
448int alloc_bootmem_huge_page(struct hstate *hstate)
ec4b2c0c
JT
449{
450 struct huge_bootmem_page *m;
451 if (nr_gpages == 0)
452 return 0;
453 m = phys_to_virt(gpage_freearray[--nr_gpages]);
454 gpage_freearray[nr_gpages] = 0;
455 list_add(&m->list, &huge_boot_pages);
0d9ea754 456 m->hstate = hstate;
ec4b2c0c
JT
457 return 1;
458}
41151e77 459#endif
ec4b2c0c 460
881fde1d 461#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77
BB
462#define HUGEPD_FREELIST_SIZE \
463 ((PAGE_SIZE - sizeof(struct hugepd_freelist)) / sizeof(pte_t))
464
465struct hugepd_freelist {
466 struct rcu_head rcu;
467 unsigned int index;
468 void *ptes[0];
469};
470
471static DEFINE_PER_CPU(struct hugepd_freelist *, hugepd_freelist_cur);
472
473static void hugepd_free_rcu_callback(struct rcu_head *head)
474{
475 struct hugepd_freelist *batch =
476 container_of(head, struct hugepd_freelist, rcu);
477 unsigned int i;
478
479 for (i = 0; i < batch->index; i++)
480 kmem_cache_free(hugepte_cache, batch->ptes[i]);
481
482 free_page((unsigned long)batch);
483}
484
485static void hugepd_free(struct mmu_gather *tlb, void *hugepte)
486{
487 struct hugepd_freelist **batchp;
488
69111bac 489 batchp = this_cpu_ptr(&hugepd_freelist_cur);
41151e77
BB
490
491 if (atomic_read(&tlb->mm->mm_users) < 2 ||
492 cpumask_equal(mm_cpumask(tlb->mm),
493 cpumask_of(smp_processor_id()))) {
494 kmem_cache_free(hugepte_cache, hugepte);
94b09d75 495 put_cpu_var(hugepd_freelist_cur);
41151e77
BB
496 return;
497 }
498
499 if (*batchp == NULL) {
500 *batchp = (struct hugepd_freelist *)__get_free_page(GFP_ATOMIC);
501 (*batchp)->index = 0;
502 }
503
504 (*batchp)->ptes[(*batchp)->index++] = hugepte;
505 if ((*batchp)->index == HUGEPD_FREELIST_SIZE) {
506 call_rcu_sched(&(*batchp)->rcu, hugepd_free_rcu_callback);
507 *batchp = NULL;
508 }
94b09d75 509 put_cpu_var(hugepd_freelist_cur);
41151e77
BB
510}
511#endif
512
a4fe3ce7
DG
513static void free_hugepd_range(struct mmu_gather *tlb, hugepd_t *hpdp, int pdshift,
514 unsigned long start, unsigned long end,
515 unsigned long floor, unsigned long ceiling)
f10a04c0
DG
516{
517 pte_t *hugepte = hugepd_page(*hpdp);
41151e77
BB
518 int i;
519
a4fe3ce7 520 unsigned long pdmask = ~((1UL << pdshift) - 1);
41151e77
BB
521 unsigned int num_hugepd = 1;
522
881fde1d
BB
523#ifdef CONFIG_PPC_FSL_BOOK3E
524 /* Note: On fsl the hpdp may be the first of several */
41151e77 525 num_hugepd = (1 << (hugepd_shift(*hpdp) - pdshift));
881fde1d
BB
526#else
527 unsigned int shift = hugepd_shift(*hpdp);
41151e77 528#endif
a4fe3ce7
DG
529
530 start &= pdmask;
531 if (start < floor)
532 return;
533 if (ceiling) {
534 ceiling &= pdmask;
535 if (! ceiling)
536 return;
537 }
538 if (end - 1 > ceiling - 1)
539 return;
f10a04c0 540
41151e77
BB
541 for (i = 0; i < num_hugepd; i++, hpdp++)
542 hpdp->pd = 0;
543
881fde1d 544#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77 545 hugepd_free(tlb, hugepte);
881fde1d
BB
546#else
547 pgtable_free_tlb(tlb, hugepte, pdshift - shift);
41151e77 548#endif
f10a04c0
DG
549}
550
f10a04c0
DG
551static void hugetlb_free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
552 unsigned long addr, unsigned long end,
a4fe3ce7 553 unsigned long floor, unsigned long ceiling)
f10a04c0
DG
554{
555 pmd_t *pmd;
556 unsigned long next;
557 unsigned long start;
558
559 start = addr;
f10a04c0 560 do {
a1cd5419 561 pmd = pmd_offset(pud, addr);
f10a04c0 562 next = pmd_addr_end(addr, end);
b30e7590 563 if (!is_hugepd(__hugepd(pmd_val(*pmd)))) {
8bbd9f04
AK
564 /*
565 * if it is not hugepd pointer, we should already find
566 * it cleared.
567 */
568 WARN_ON(!pmd_none_or_clear_bad(pmd));
f10a04c0 569 continue;
8bbd9f04 570 }
a1cd5419
BB
571#ifdef CONFIG_PPC_FSL_BOOK3E
572 /*
573 * Increment next by the size of the huge mapping since
574 * there may be more than one entry at this level for a
575 * single hugepage, but all of them point to
576 * the same kmem cache that holds the hugepte.
577 */
578 next = addr + (1 << hugepd_shift(*(hugepd_t *)pmd));
579#endif
a4fe3ce7
DG
580 free_hugepd_range(tlb, (hugepd_t *)pmd, PMD_SHIFT,
581 addr, next, floor, ceiling);
a1cd5419 582 } while (addr = next, addr != end);
f10a04c0
DG
583
584 start &= PUD_MASK;
585 if (start < floor)
586 return;
587 if (ceiling) {
588 ceiling &= PUD_MASK;
589 if (!ceiling)
590 return;
1da177e4 591 }
f10a04c0
DG
592 if (end - 1 > ceiling - 1)
593 return;
1da177e4 594
f10a04c0
DG
595 pmd = pmd_offset(pud, start);
596 pud_clear(pud);
9e1b32ca 597 pmd_free_tlb(tlb, pmd, start);
50c6a665 598 mm_dec_nr_pmds(tlb->mm);
f10a04c0 599}
f10a04c0
DG
600
601static void hugetlb_free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
602 unsigned long addr, unsigned long end,
603 unsigned long floor, unsigned long ceiling)
604{
605 pud_t *pud;
606 unsigned long next;
607 unsigned long start;
608
609 start = addr;
f10a04c0 610 do {
a1cd5419 611 pud = pud_offset(pgd, addr);
f10a04c0 612 next = pud_addr_end(addr, end);
b30e7590 613 if (!is_hugepd(__hugepd(pud_val(*pud)))) {
4ec161cf
JT
614 if (pud_none_or_clear_bad(pud))
615 continue;
0d9ea754 616 hugetlb_free_pmd_range(tlb, pud, addr, next, floor,
a4fe3ce7 617 ceiling);
4ec161cf 618 } else {
a1cd5419
BB
619#ifdef CONFIG_PPC_FSL_BOOK3E
620 /*
621 * Increment next by the size of the huge mapping since
622 * there may be more than one entry at this level for a
623 * single hugepage, but all of them point to
624 * the same kmem cache that holds the hugepte.
625 */
626 next = addr + (1 << hugepd_shift(*(hugepd_t *)pud));
627#endif
a4fe3ce7
DG
628 free_hugepd_range(tlb, (hugepd_t *)pud, PUD_SHIFT,
629 addr, next, floor, ceiling);
4ec161cf 630 }
a1cd5419 631 } while (addr = next, addr != end);
f10a04c0
DG
632
633 start &= PGDIR_MASK;
634 if (start < floor)
635 return;
636 if (ceiling) {
637 ceiling &= PGDIR_MASK;
638 if (!ceiling)
639 return;
640 }
641 if (end - 1 > ceiling - 1)
642 return;
643
644 pud = pud_offset(pgd, start);
645 pgd_clear(pgd);
9e1b32ca 646 pud_free_tlb(tlb, pud, start);
f10a04c0
DG
647}
648
649/*
650 * This function frees user-level page tables of a process.
f10a04c0 651 */
42b77728 652void hugetlb_free_pgd_range(struct mmu_gather *tlb,
f10a04c0
DG
653 unsigned long addr, unsigned long end,
654 unsigned long floor, unsigned long ceiling)
655{
656 pgd_t *pgd;
657 unsigned long next;
f10a04c0
DG
658
659 /*
a4fe3ce7
DG
660 * Because there are a number of different possible pagetable
661 * layouts for hugepage ranges, we limit knowledge of how
662 * things should be laid out to the allocation path
663 * (huge_pte_alloc(), above). Everything else works out the
664 * structure as it goes from information in the hugepd
665 * pointers. That means that we can't here use the
666 * optimization used in the normal page free_pgd_range(), of
667 * checking whether we're actually covering a large enough
668 * range to have to do anything at the top level of the walk
669 * instead of at the bottom.
f10a04c0 670 *
a4fe3ce7
DG
671 * To make sense of this, you should probably go read the big
672 * block comment at the top of the normal free_pgd_range(),
673 * too.
f10a04c0 674 */
f10a04c0 675
f10a04c0 676 do {
f10a04c0 677 next = pgd_addr_end(addr, end);
41151e77 678 pgd = pgd_offset(tlb->mm, addr);
b30e7590 679 if (!is_hugepd(__hugepd(pgd_val(*pgd)))) {
0b26425c
DG
680 if (pgd_none_or_clear_bad(pgd))
681 continue;
682 hugetlb_free_pud_range(tlb, pgd, addr, next, floor, ceiling);
683 } else {
881fde1d 684#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77
BB
685 /*
686 * Increment next by the size of the huge mapping since
881fde1d
BB
687 * there may be more than one entry at the pgd level
688 * for a single hugepage, but all of them point to the
689 * same kmem cache that holds the hugepte.
41151e77
BB
690 */
691 next = addr + (1 << hugepd_shift(*(hugepd_t *)pgd));
692#endif
a4fe3ce7
DG
693 free_hugepd_range(tlb, (hugepd_t *)pgd, PGDIR_SHIFT,
694 addr, next, floor, ceiling);
0b26425c 695 }
41151e77 696 } while (addr = next, addr != end);
1da177e4
LT
697}
698
691e95fd
AK
699/*
700 * We are holding mmap_sem, so a parallel huge page collapse cannot run.
701 * To prevent hugepage split, disable irq.
702 */
1da177e4
LT
703struct page *
704follow_huge_addr(struct mm_struct *mm, unsigned long address, int write)
705{
7b868e81 706 pte_t *ptep, pte;
a4fe3ce7 707 unsigned shift;
691e95fd 708 unsigned long mask, flags;
7b868e81
AK
709 struct page *page = ERR_PTR(-EINVAL);
710
711 local_irq_save(flags);
712 ptep = find_linux_pte_or_hugepte(mm->pgd, address, &shift);
713 if (!ptep)
714 goto no_page;
715 pte = READ_ONCE(*ptep);
12bc9f6f 716 /*
7b868e81 717 * Verify it is a huge page else bail.
12bc9f6f
AK
718 * Transparent hugepages are handled by generic code. We can skip them
719 * here.
720 */
7b868e81
AK
721 if (!shift || pmd_trans_huge(__pmd(pte_val(pte))))
722 goto no_page;
1da177e4 723
7b868e81
AK
724 if (!pte_present(pte)) {
725 page = NULL;
726 goto no_page;
691e95fd 727 }
a4fe3ce7 728 mask = (1UL << shift) - 1;
7b868e81 729 page = pte_page(pte);
a4fe3ce7
DG
730 if (page)
731 page += (address & mask) / PAGE_SIZE;
1da177e4 732
7b868e81 733no_page:
691e95fd 734 local_irq_restore(flags);
1da177e4
LT
735 return page;
736}
737
1da177e4
LT
738struct page *
739follow_huge_pmd(struct mm_struct *mm, unsigned long address,
740 pmd_t *pmd, int write)
741{
742 BUG();
743 return NULL;
744}
745
61f77eda
NH
746struct page *
747follow_huge_pud(struct mm_struct *mm, unsigned long address,
748 pud_t *pud, int write)
749{
750 BUG();
751 return NULL;
752}
753
39adfa54
DG
754static unsigned long hugepte_addr_end(unsigned long addr, unsigned long end,
755 unsigned long sz)
756{
757 unsigned long __boundary = (addr + sz) & ~(sz-1);
758 return (__boundary - 1 < end - 1) ? __boundary : end;
759}
760
b30e7590
AK
761int gup_huge_pd(hugepd_t hugepd, unsigned long addr, unsigned pdshift,
762 unsigned long end, int write, struct page **pages, int *nr)
a4fe3ce7
DG
763{
764 pte_t *ptep;
b30e7590 765 unsigned long sz = 1UL << hugepd_shift(hugepd);
39adfa54 766 unsigned long next;
a4fe3ce7
DG
767
768 ptep = hugepte_offset(hugepd, addr, pdshift);
769 do {
39adfa54 770 next = hugepte_addr_end(addr, end, sz);
a4fe3ce7
DG
771 if (!gup_hugepte(ptep, sz, addr, end, write, pages, nr))
772 return 0;
39adfa54 773 } while (ptep++, addr = next, addr != end);
a4fe3ce7
DG
774
775 return 1;
776}
1da177e4 777
76512959 778#ifdef CONFIG_PPC_MM_SLICES
1da177e4
LT
779unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
780 unsigned long len, unsigned long pgoff,
781 unsigned long flags)
782{
0d9ea754
JT
783 struct hstate *hstate = hstate_file(file);
784 int mmu_psize = shift_to_mmu_psize(huge_page_shift(hstate));
48f797de 785
34d07177 786 return slice_get_unmapped_area(addr, len, flags, mmu_psize, 1);
1da177e4 787}
76512959 788#endif
1da177e4 789
3340289d
MG
790unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
791{
25c29f9e 792#ifdef CONFIG_PPC_MM_SLICES
3340289d
MG
793 unsigned int psize = get_slice_psize(vma->vm_mm, vma->vm_start);
794
795 return 1UL << mmu_psize_to_shift(psize);
41151e77
BB
796#else
797 if (!is_vm_hugetlb_page(vma))
798 return PAGE_SIZE;
799
800 return huge_page_size(hstate_vma(vma));
801#endif
802}
803
804static inline bool is_power_of_4(unsigned long x)
805{
806 if (is_power_of_2(x))
807 return (__ilog2(x) % 2) ? false : true;
808 return false;
3340289d
MG
809}
810
d1837cba 811static int __init add_huge_page_size(unsigned long long size)
4ec161cf 812{
d1837cba
DG
813 int shift = __ffs(size);
814 int mmu_psize;
a4fe3ce7 815
4ec161cf 816 /* Check that it is a page size supported by the hardware and
d1837cba 817 * that it fits within pagetable and slice limits. */
41151e77
BB
818#ifdef CONFIG_PPC_FSL_BOOK3E
819 if ((size < PAGE_SIZE) || !is_power_of_4(size))
820 return -EINVAL;
821#else
d1837cba
DG
822 if (!is_power_of_2(size)
823 || (shift > SLICE_HIGH_SHIFT) || (shift <= PAGE_SHIFT))
824 return -EINVAL;
41151e77 825#endif
91224346 826
d1837cba
DG
827 if ((mmu_psize = shift_to_mmu_psize(shift)) < 0)
828 return -EINVAL;
829
d1837cba
DG
830 BUG_ON(mmu_psize_defs[mmu_psize].shift != shift);
831
832 /* Return if huge page size has already been setup */
833 if (size_to_hstate(size))
834 return 0;
835
836 hugetlb_add_hstate(shift - PAGE_SHIFT);
837
838 return 0;
4ec161cf
JT
839}
840
841static int __init hugepage_setup_sz(char *str)
842{
843 unsigned long long size;
4ec161cf
JT
844
845 size = memparse(str, &str);
846
d1837cba 847 if (add_huge_page_size(size) != 0)
4ec161cf
JT
848 printk(KERN_WARNING "Invalid huge page size specified(%llu)\n", size);
849
850 return 1;
851}
852__setup("hugepagesz=", hugepage_setup_sz);
853
881fde1d 854#ifdef CONFIG_PPC_FSL_BOOK3E
41151e77
BB
855struct kmem_cache *hugepte_cache;
856static int __init hugetlbpage_init(void)
857{
858 int psize;
859
860 for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) {
861 unsigned shift;
862
863 if (!mmu_psize_defs[psize].shift)
864 continue;
865
866 shift = mmu_psize_to_shift(psize);
867
868 /* Don't treat normal page sizes as huge... */
869 if (shift != PAGE_SHIFT)
870 if (add_huge_page_size(1ULL << shift) < 0)
871 continue;
872 }
873
874 /*
875 * Create a kmem cache for hugeptes. The bottom bits in the pte have
876 * size information encoded in them, so align them to allow this
877 */
878 hugepte_cache = kmem_cache_create("hugepte-cache", sizeof(pte_t),
879 HUGEPD_SHIFT_MASK + 1, 0, NULL);
880 if (hugepte_cache == NULL)
881 panic("%s: Unable to create kmem cache for hugeptes\n",
882 __func__);
883
884 /* Default hpage size = 4M */
885 if (mmu_psize_defs[MMU_PAGE_4M].shift)
886 HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_4M].shift;
887 else
888 panic("%s: Unable to set default huge page size\n", __func__);
889
890
891 return 0;
892}
893#else
f10a04c0
DG
894static int __init hugetlbpage_init(void)
895{
a4fe3ce7 896 int psize;
0d9ea754 897
44ae3ab3 898 if (!mmu_has_feature(MMU_FTR_16M_PAGE))
f10a04c0 899 return -ENODEV;
00df438e 900
d1837cba
DG
901 for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) {
902 unsigned shift;
903 unsigned pdshift;
0d9ea754 904
d1837cba
DG
905 if (!mmu_psize_defs[psize].shift)
906 continue;
00df438e 907
d1837cba
DG
908 shift = mmu_psize_to_shift(psize);
909
910 if (add_huge_page_size(1ULL << shift) < 0)
911 continue;
912
913 if (shift < PMD_SHIFT)
914 pdshift = PMD_SHIFT;
915 else if (shift < PUD_SHIFT)
916 pdshift = PUD_SHIFT;
917 else
918 pdshift = PGDIR_SHIFT;
e2b3d202
AK
919 /*
920 * if we have pdshift and shift value same, we don't
921 * use pgt cache for hugepd.
922 */
923 if (pdshift != shift) {
924 pgtable_cache_add(pdshift - shift, NULL);
925 if (!PGT_CACHE(pdshift - shift))
926 panic("hugetlbpage_init(): could not create "
927 "pgtable cache for %d bit pagesize\n", shift);
928 }
0d9ea754 929 }
f10a04c0 930
d1837cba
DG
931 /* Set default large page size. Currently, we pick 16M or 1M
932 * depending on what is available
933 */
934 if (mmu_psize_defs[MMU_PAGE_16M].shift)
935 HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_16M].shift;
936 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
937 HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_1M].shift;
938
f10a04c0
DG
939 return 0;
940}
41151e77 941#endif
6f114281 942arch_initcall(hugetlbpage_init);
0895ecda
DG
943
944void flush_dcache_icache_hugepage(struct page *page)
945{
946 int i;
41151e77 947 void *start;
0895ecda
DG
948
949 BUG_ON(!PageCompound(page));
950
41151e77
BB
951 for (i = 0; i < (1UL << compound_order(page)); i++) {
952 if (!PageHighMem(page)) {
953 __flush_dcache_icache(page_address(page+i));
954 } else {
2480b208 955 start = kmap_atomic(page+i);
41151e77 956 __flush_dcache_icache(start);
2480b208 957 kunmap_atomic(start);
41151e77
BB
958 }
959 }
0895ecda 960}
29409997
AK
961
962#endif /* CONFIG_HUGETLB_PAGE */
963
964/*
965 * We have 4 cases for pgds and pmds:
966 * (1) invalid (all zeroes)
967 * (2) pointer to next table, as normal; bottom 6 bits == 0
968 * (3) leaf pte for huge page, bottom two bits != 00
969 * (4) hugepd pointer, bottom two bits == 00, next 4 bits indicate size of table
0ac52dd7
AK
970 *
971 * So long as we atomically load page table pointers we are safe against teardown,
972 * we can follow the address down to the the page and take a ref on it.
691e95fd
AK
973 * This function need to be called with interrupts disabled. We use this variant
974 * when we have MSR[EE] = 0 but the paca->soft_enabled = 1
29409997 975 */
0ac52dd7 976
691e95fd
AK
977pte_t *__find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea,
978 unsigned *shift)
29409997 979{
0ac52dd7
AK
980 pgd_t pgd, *pgdp;
981 pud_t pud, *pudp;
982 pmd_t pmd, *pmdp;
29409997
AK
983 pte_t *ret_pte;
984 hugepd_t *hpdp = NULL;
985 unsigned pdshift = PGDIR_SHIFT;
986
987 if (shift)
988 *shift = 0;
989
0ac52dd7 990 pgdp = pgdir + pgd_index(ea);
4f9c53c8 991 pgd = READ_ONCE(*pgdp);
ac52ae47 992 /*
0ac52dd7
AK
993 * Always operate on the local stack value. This make sure the
994 * value don't get updated by a parallel THP split/collapse,
995 * page fault or a page unmap. The return pte_t * is still not
996 * stable. So should be checked there for above conditions.
ac52ae47 997 */
0ac52dd7 998 if (pgd_none(pgd))
ac52ae47 999 return NULL;
0ac52dd7
AK
1000 else if (pgd_huge(pgd)) {
1001 ret_pte = (pte_t *) pgdp;
29409997 1002 goto out;
b30e7590 1003 } else if (is_hugepd(__hugepd(pgd_val(pgd))))
0ac52dd7 1004 hpdp = (hugepd_t *)&pgd;
ac52ae47 1005 else {
0ac52dd7
AK
1006 /*
1007 * Even if we end up with an unmap, the pgtable will not
1008 * be freed, because we do an rcu free and here we are
1009 * irq disabled
1010 */
29409997 1011 pdshift = PUD_SHIFT;
0ac52dd7 1012 pudp = pud_offset(&pgd, ea);
da1a288d 1013 pud = READ_ONCE(*pudp);
29409997 1014
0ac52dd7 1015 if (pud_none(pud))
ac52ae47 1016 return NULL;
0ac52dd7
AK
1017 else if (pud_huge(pud)) {
1018 ret_pte = (pte_t *) pudp;
29409997 1019 goto out;
b30e7590 1020 } else if (is_hugepd(__hugepd(pud_val(pud))))
0ac52dd7 1021 hpdp = (hugepd_t *)&pud;
ac52ae47 1022 else {
29409997 1023 pdshift = PMD_SHIFT;
0ac52dd7 1024 pmdp = pmd_offset(&pud, ea);
da1a288d 1025 pmd = READ_ONCE(*pmdp);
ac52ae47
AK
1026 /*
1027 * A hugepage collapse is captured by pmd_none, because
1028 * it mark the pmd none and do a hpte invalidate.
1029 *
7d6e7f7f
AK
1030 * We don't worry about pmd_trans_splitting here, The
1031 * caller if it needs to handle the splitting case
1032 * should check for that.
ac52ae47 1033 */
7d6e7f7f 1034 if (pmd_none(pmd))
ac52ae47 1035 return NULL;
29409997 1036
0ac52dd7
AK
1037 if (pmd_huge(pmd) || pmd_large(pmd)) {
1038 ret_pte = (pte_t *) pmdp;
29409997 1039 goto out;
b30e7590 1040 } else if (is_hugepd(__hugepd(pmd_val(pmd))))
0ac52dd7 1041 hpdp = (hugepd_t *)&pmd;
ac52ae47 1042 else
0ac52dd7 1043 return pte_offset_kernel(&pmd, ea);
29409997
AK
1044 }
1045 }
1046 if (!hpdp)
1047 return NULL;
1048
b30e7590 1049 ret_pte = hugepte_offset(*hpdp, ea, pdshift);
29409997
AK
1050 pdshift = hugepd_shift(*hpdp);
1051out:
1052 if (shift)
1053 *shift = pdshift;
1054 return ret_pte;
1055}
691e95fd 1056EXPORT_SYMBOL_GPL(__find_linux_pte_or_hugepte);
29409997
AK
1057
1058int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long addr,
1059 unsigned long end, int write, struct page **pages, int *nr)
1060{
1061 unsigned long mask;
1062 unsigned long pte_end;
1063 struct page *head, *page, *tail;
1064 pte_t pte;
1065 int refs;
1066
1067 pte_end = (addr + sz) & ~(sz-1);
1068 if (pte_end < end)
1069 end = pte_end;
1070
4f9c53c8 1071 pte = READ_ONCE(*ptep);
29409997
AK
1072 mask = _PAGE_PRESENT | _PAGE_USER;
1073 if (write)
1074 mask |= _PAGE_RW;
1075
1076 if ((pte_val(pte) & mask) != mask)
1077 return 0;
1078
1079 /* hugepages are never "special" */
1080 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
1081
1082 refs = 0;
1083 head = pte_page(pte);
1084
1085 page = head + ((addr & (sz-1)) >> PAGE_SHIFT);
1086 tail = page;
1087 do {
1088 VM_BUG_ON(compound_head(page) != head);
1089 pages[*nr] = page;
1090 (*nr)++;
1091 page++;
1092 refs++;
1093 } while (addr += PAGE_SIZE, addr != end);
1094
1095 if (!page_cache_add_speculative(head, refs)) {
1096 *nr -= refs;
1097 return 0;
1098 }
1099
1100 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
1101 /* Could be optimized better */
1102 *nr -= refs;
1103 while (refs--)
1104 put_page(head);
1105 return 0;
1106 }
1107
1108 /*
1109 * Any tail page need their mapcount reference taken before we
1110 * return.
1111 */
1112 while (refs--) {
1113 if (PageTail(tail))
1114 get_huge_page_tail(tail);
1115 tail++;
1116 }
1117
1118 return 1;
1119}