blob: 747e0c616526ec2b102d4cea949d326db91fd357 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Becky Bruce41151e72011-06-28 09:54:48 +00002 * PPC Huge TLB Page Support for Kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003 David Gibson, IBM Corporation.
Becky Bruce41151e72011-06-28 09:54:48 +00005 * Copyright (C) 2011 Becky Bruce, Freescale Semiconductor
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Based on the IA-32 version:
8 * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com>
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
David Gibson883a3e52009-10-26 19:24:31 +000012#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/hugetlb.h>
Paul Mackerras342d3db2011-12-12 12:38:05 +000015#include <linux/export.h>
Becky Bruce41151e72011-06-28 09:54:48 +000016#include <linux/of_fdt.h>
17#include <linux/memblock.h>
18#include <linux/bootmem.h>
Kumar Gala13020be2011-11-24 09:40:07 +000019#include <linux/moduleparam.h>
David Gibson883a3e52009-10-26 19:24:31 +000020#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/pgalloc.h>
22#include <asm/tlb.h>
Becky Bruce41151e72011-06-28 09:54:48 +000023#include <asm/setup.h>
Aneesh Kumar K.V29409992013-06-20 14:30:16 +053024#include <asm/hugetlb.h>
25
26#ifdef CONFIG_HUGETLB_PAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Jon Tollefson91224342008-07-23 21:27:55 -070028#define PAGE_SHIFT_64K 16
29#define PAGE_SHIFT_16M 24
30#define PAGE_SHIFT_16G 34
Jon Tollefson4ec161c2008-01-04 09:59:50 +110031
Becky Bruce41151e72011-06-28 09:54:48 +000032unsigned int HPAGE_SHIFT;
33
34/*
35 * Tracks gpages after the device tree is scanned and before the
Becky Brucea6146882011-10-10 10:50:43 +000036 * 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
Becky Bruce41151e72011-06-28 09:54:48 +000040 */
Becky Bruce881fde12011-10-10 10:50:40 +000041#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +000042#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];
Becky Bruce881fde12011-10-10 10:50:40 +000048#else
49#define MAX_NUMBER_GPAGES 1024
50static u64 gpage_freearray[MAX_NUMBER_GPAGES];
51static unsigned nr_gpages;
Becky Bruce41151e72011-06-28 09:54:48 +000052#endif
David Gibsonf10a04c2006-04-28 15:02:51 +100053
David Gibsona4fe3ce2009-10-26 19:24:31 +000054#define hugepd_none(hpd) ((hpd).pd == 0)
55
Aneesh Kumar K.Ve2b3d202013-04-28 09:37:30 +000056#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;
Aneesh Kumar K.V06743522014-11-05 21:57:39 +053065 *
66 * Defined in such a way that we can optimize away code block at build time
67 * if CONFIG_HUGETLB_PAGE=n.
Aneesh Kumar K.Ve2b3d202013-04-28 09:37:30 +000068 */
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}
92#else
93int pmd_huge(pmd_t pmd)
94{
95 return 0;
96}
97
98int pud_huge(pud_t pud)
99{
100 return 0;
101}
102
103int pgd_huge(pgd_t pgd)
104{
105 return 0;
106}
107#endif
108
David Gibsona4fe3ce2009-10-26 19:24:31 +0000109pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
110{
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530111 /* Only called for hugetlbfs pages, hence can ignore THP */
David Gibsona4fe3ce2009-10-26 19:24:31 +0000112 return find_linux_pte_or_hugepte(mm->pgd, addr, NULL);
113}
114
115static int __hugepte_alloc(struct mm_struct *mm, hugepd_t *hpdp,
116 unsigned long address, unsigned pdshift, unsigned pshift)
117{
Becky Bruce41151e72011-06-28 09:54:48 +0000118 struct kmem_cache *cachep;
119 pte_t *new;
120
Becky Bruce881fde12011-10-10 10:50:40 +0000121#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +0000122 int i;
123 int num_hugepd = 1 << (pshift - pdshift);
124 cachep = hugepte_cache;
Becky Bruce881fde12011-10-10 10:50:40 +0000125#else
126 cachep = PGT_CACHE(pdshift - pshift);
Becky Bruce41151e72011-06-28 09:54:48 +0000127#endif
128
129 new = kmem_cache_zalloc(cachep, GFP_KERNEL|__GFP_REPEAT);
David Gibsonf10a04c2006-04-28 15:02:51 +1000130
David Gibsona4fe3ce2009-10-26 19:24:31 +0000131 BUG_ON(pshift > HUGEPD_SHIFT_MASK);
132 BUG_ON((unsigned long)new & HUGEPD_SHIFT_MASK);
133
David Gibsonf10a04c2006-04-28 15:02:51 +1000134 if (! new)
135 return -ENOMEM;
136
137 spin_lock(&mm->page_table_lock);
Becky Bruce881fde12011-10-10 10:50:40 +0000138#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +0000139 /*
140 * We have multiple higher-level entries that point to the same
141 * actual pte location. Fill in each as we go and backtrack on error.
142 * We need all of these so the DTLB pgtable walk code can find the
143 * right higher-level entry without knowing if it's a hugepage or not.
144 */
145 for (i = 0; i < num_hugepd; i++, hpdp++) {
146 if (unlikely(!hugepd_none(*hpdp)))
147 break;
148 else
Aneesh Kumar K.Vcf9427b2013-04-28 09:37:29 +0000149 /* We use the old format for PPC_FSL_BOOK3E */
Becky Bruce41151e72011-06-28 09:54:48 +0000150 hpdp->pd = ((unsigned long)new & ~PD_HUGE) | pshift;
151 }
152 /* If we bailed from the for loop early, an error occurred, clean up */
153 if (i < num_hugepd) {
154 for (i = i - 1 ; i >= 0; i--, hpdp--)
155 hpdp->pd = 0;
156 kmem_cache_free(cachep, new);
157 }
Becky Brucea1cd5412011-10-10 10:50:39 +0000158#else
159 if (!hugepd_none(*hpdp))
160 kmem_cache_free(cachep, new);
Aneesh Kumar K.Vcf9427b2013-04-28 09:37:29 +0000161 else {
162#ifdef CONFIG_PPC_BOOK3S_64
163 hpdp->pd = (unsigned long)new |
164 (shift_to_mmu_psize(pshift) << 2);
165#else
Becky Brucea1cd5412011-10-10 10:50:39 +0000166 hpdp->pd = ((unsigned long)new & ~PD_HUGE) | pshift;
Becky Bruce41151e72011-06-28 09:54:48 +0000167#endif
Aneesh Kumar K.Vcf9427b2013-04-28 09:37:29 +0000168 }
169#endif
David Gibsonf10a04c2006-04-28 15:02:51 +1000170 spin_unlock(&mm->page_table_lock);
171 return 0;
172}
173
Becky Brucea1cd5412011-10-10 10:50:39 +0000174/*
175 * These macros define how to determine which level of the page table holds
176 * the hpdp.
177 */
178#ifdef CONFIG_PPC_FSL_BOOK3E
179#define HUGEPD_PGD_SHIFT PGDIR_SHIFT
180#define HUGEPD_PUD_SHIFT PUD_SHIFT
181#else
182#define HUGEPD_PGD_SHIFT PUD_SHIFT
183#define HUGEPD_PUD_SHIFT PMD_SHIFT
184#endif
185
Aneesh Kumar K.Ve2b3d202013-04-28 09:37:30 +0000186#ifdef CONFIG_PPC_BOOK3S_64
187/*
188 * At this point we do the placement change only for BOOK3S 64. This would
189 * possibly work on other subarchs.
190 */
191pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz)
192{
193 pgd_t *pg;
194 pud_t *pu;
195 pmd_t *pm;
196 hugepd_t *hpdp = NULL;
197 unsigned pshift = __ffs(sz);
198 unsigned pdshift = PGDIR_SHIFT;
199
200 addr &= ~(sz-1);
201 pg = pgd_offset(mm, addr);
202
203 if (pshift == PGDIR_SHIFT)
204 /* 16GB huge page */
205 return (pte_t *) pg;
206 else if (pshift > PUD_SHIFT)
207 /*
208 * We need to use hugepd table
209 */
210 hpdp = (hugepd_t *)pg;
211 else {
212 pdshift = PUD_SHIFT;
213 pu = pud_alloc(mm, pg, addr);
214 if (pshift == PUD_SHIFT)
215 return (pte_t *)pu;
216 else if (pshift > PMD_SHIFT)
217 hpdp = (hugepd_t *)pu;
218 else {
219 pdshift = PMD_SHIFT;
220 pm = pmd_alloc(mm, pu, addr);
221 if (pshift == PMD_SHIFT)
222 /* 16MB hugepage */
223 return (pte_t *)pm;
224 else
225 hpdp = (hugepd_t *)pm;
226 }
227 }
228 if (!hpdp)
229 return NULL;
230
231 BUG_ON(!hugepd_none(*hpdp) && !hugepd_ok(*hpdp));
232
233 if (hugepd_none(*hpdp) && __hugepte_alloc(mm, hpdp, addr, pdshift, pshift))
234 return NULL;
235
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530236 return hugepte_offset(*hpdp, addr, pdshift);
Aneesh Kumar K.Ve2b3d202013-04-28 09:37:30 +0000237}
238
239#else
240
David Gibsona4fe3ce2009-10-26 19:24:31 +0000241pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz)
242{
243 pgd_t *pg;
244 pud_t *pu;
245 pmd_t *pm;
246 hugepd_t *hpdp = NULL;
247 unsigned pshift = __ffs(sz);
248 unsigned pdshift = PGDIR_SHIFT;
David Gibson0b264252008-09-05 11:49:54 +1000249
David Gibsona4fe3ce2009-10-26 19:24:31 +0000250 addr &= ~(sz-1);
251
252 pg = pgd_offset(mm, addr);
Becky Brucea1cd5412011-10-10 10:50:39 +0000253
254 if (pshift >= HUGEPD_PGD_SHIFT) {
David Gibsona4fe3ce2009-10-26 19:24:31 +0000255 hpdp = (hugepd_t *)pg;
256 } else {
257 pdshift = PUD_SHIFT;
258 pu = pud_alloc(mm, pg, addr);
Becky Brucea1cd5412011-10-10 10:50:39 +0000259 if (pshift >= HUGEPD_PUD_SHIFT) {
David Gibsona4fe3ce2009-10-26 19:24:31 +0000260 hpdp = (hugepd_t *)pu;
261 } else {
262 pdshift = PMD_SHIFT;
263 pm = pmd_alloc(mm, pu, addr);
264 hpdp = (hugepd_t *)pm;
265 }
266 }
267
268 if (!hpdp)
269 return NULL;
270
271 BUG_ON(!hugepd_none(*hpdp) && !hugepd_ok(*hpdp));
272
273 if (hugepd_none(*hpdp) && __hugepte_alloc(mm, hpdp, addr, pdshift, pshift))
274 return NULL;
275
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530276 return hugepte_offset(*hpdp, addr, pdshift);
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100277}
Aneesh Kumar K.Ve2b3d202013-04-28 09:37:30 +0000278#endif
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100279
Becky Bruce881fde12011-10-10 10:50:40 +0000280#ifdef CONFIG_PPC_FSL_BOOK3E
Jon Tollefson658013e2008-07-23 21:27:54 -0700281/* Build list of addresses of gigantic pages. This function is used in early
Anton Blanchard14ed7402014-09-17 22:15:34 +1000282 * boot before the buddy allocator is setup.
Jon Tollefson658013e2008-07-23 21:27:54 -0700283 */
Becky Bruce41151e72011-06-28 09:54:48 +0000284void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages)
285{
286 unsigned int idx = shift_to_mmu_psize(__ffs(page_size));
287 int i;
288
289 if (addr == 0)
290 return;
291
292 gpage_freearray[idx].nr_gpages = number_of_pages;
293
294 for (i = 0; i < number_of_pages; i++) {
295 gpage_freearray[idx].gpage_list[i] = addr;
296 addr += page_size;
297 }
298}
299
300/*
301 * Moves the gigantic page addresses from the temporary list to the
302 * huge_boot_pages list.
303 */
304int alloc_bootmem_huge_page(struct hstate *hstate)
305{
306 struct huge_bootmem_page *m;
Wanpeng Li2415cf12013-07-03 15:02:43 -0700307 int idx = shift_to_mmu_psize(huge_page_shift(hstate));
Becky Bruce41151e72011-06-28 09:54:48 +0000308 int nr_gpages = gpage_freearray[idx].nr_gpages;
309
310 if (nr_gpages == 0)
311 return 0;
312
313#ifdef CONFIG_HIGHMEM
314 /*
315 * If gpages can be in highmem we can't use the trick of storing the
316 * data structure in the page; allocate space for this
317 */
318 m = alloc_bootmem(sizeof(struct huge_bootmem_page));
319 m->phys = gpage_freearray[idx].gpage_list[--nr_gpages];
320#else
321 m = phys_to_virt(gpage_freearray[idx].gpage_list[--nr_gpages]);
322#endif
323
324 list_add(&m->list, &huge_boot_pages);
325 gpage_freearray[idx].nr_gpages = nr_gpages;
326 gpage_freearray[idx].gpage_list[nr_gpages] = 0;
327 m->hstate = hstate;
328
329 return 1;
330}
331/*
332 * Scan the command line hugepagesz= options for gigantic pages; store those in
333 * a list that we use to allocate the memory once all options are parsed.
334 */
335
336unsigned long gpage_npages[MMU_PAGE_COUNT];
337
Paul Gortmaker89528122012-05-07 10:32:22 -0400338static int __init do_gpage_early_setup(char *param, char *val,
339 const char *unused)
Becky Bruce41151e72011-06-28 09:54:48 +0000340{
341 static phys_addr_t size;
342 unsigned long npages;
343
344 /*
345 * The hugepagesz and hugepages cmdline options are interleaved. We
346 * use the size variable to keep track of whether or not this was done
347 * properly and skip over instances where it is incorrect. Other
348 * command-line parsing code will issue warnings, so we don't need to.
349 *
350 */
351 if ((strcmp(param, "default_hugepagesz") == 0) ||
352 (strcmp(param, "hugepagesz") == 0)) {
353 size = memparse(val, NULL);
354 } else if (strcmp(param, "hugepages") == 0) {
355 if (size != 0) {
356 if (sscanf(val, "%lu", &npages) <= 0)
357 npages = 0;
James Yangc4f3eb52014-11-14 12:32:24 -0600358 if (npages > MAX_NUMBER_GPAGES) {
359 pr_warn("MMU: %lu pages requested for page "
360 "size %llu KB, limiting to "
361 __stringify(MAX_NUMBER_GPAGES) "\n",
362 npages, size / 1024);
363 npages = MAX_NUMBER_GPAGES;
364 }
Becky Bruce41151e72011-06-28 09:54:48 +0000365 gpage_npages[shift_to_mmu_psize(__ffs(size))] = npages;
366 size = 0;
367 }
368 }
369 return 0;
370}
371
372
373/*
374 * This function allocates physical space for pages that are larger than the
375 * buddy allocator can handle. We want to allocate these in highmem because
376 * the amount of lowmem is limited. This means that this function MUST be
377 * called before lowmem_end_addr is set up in MMU_init() in order for the lmb
378 * allocate to grab highmem.
379 */
380void __init reserve_hugetlb_gpages(void)
381{
382 static __initdata char cmdline[COMMAND_LINE_SIZE];
383 phys_addr_t size, base;
384 int i;
385
386 strlcpy(cmdline, boot_command_line, COMMAND_LINE_SIZE);
Pawel Moll026cee02012-03-26 12:50:51 +1030387 parse_args("hugetlb gpages", cmdline, NULL, 0, 0, 0,
388 &do_gpage_early_setup);
Becky Bruce41151e72011-06-28 09:54:48 +0000389
390 /*
391 * Walk gpage list in reverse, allocating larger page sizes first.
392 * Skip over unsupported sizes, or sizes that have 0 gpages allocated.
393 * When we reach the point in the list where pages are no longer
394 * considered gpages, we're done.
395 */
396 for (i = MMU_PAGE_COUNT-1; i >= 0; i--) {
397 if (mmu_psize_defs[i].shift == 0 || gpage_npages[i] == 0)
398 continue;
399 else if (mmu_psize_to_shift(i) < (MAX_ORDER + PAGE_SHIFT))
400 break;
401
402 size = (phys_addr_t)(1ULL << mmu_psize_to_shift(i));
403 base = memblock_alloc_base(size * gpage_npages[i], size,
404 MEMBLOCK_ALLOC_ANYWHERE);
405 add_gpage(base, size, gpage_npages[i]);
406 }
407}
408
Becky Bruce881fde12011-10-10 10:50:40 +0000409#else /* !PPC_FSL_BOOK3E */
Becky Bruce41151e72011-06-28 09:54:48 +0000410
411/* Build list of addresses of gigantic pages. This function is used in early
Anton Blanchard14ed7402014-09-17 22:15:34 +1000412 * boot before the buddy allocator is setup.
Becky Bruce41151e72011-06-28 09:54:48 +0000413 */
414void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages)
Jon Tollefson658013e2008-07-23 21:27:54 -0700415{
416 if (!addr)
417 return;
418 while (number_of_pages > 0) {
419 gpage_freearray[nr_gpages] = addr;
420 nr_gpages++;
421 number_of_pages--;
422 addr += page_size;
423 }
424}
425
Jon Tollefsonec4b2c02008-07-23 21:27:53 -0700426/* Moves the gigantic page addresses from the temporary list to the
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700427 * huge_boot_pages list.
428 */
429int alloc_bootmem_huge_page(struct hstate *hstate)
Jon Tollefsonec4b2c02008-07-23 21:27:53 -0700430{
431 struct huge_bootmem_page *m;
432 if (nr_gpages == 0)
433 return 0;
434 m = phys_to_virt(gpage_freearray[--nr_gpages]);
435 gpage_freearray[nr_gpages] = 0;
436 list_add(&m->list, &huge_boot_pages);
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700437 m->hstate = hstate;
Jon Tollefsonec4b2c02008-07-23 21:27:53 -0700438 return 1;
439}
Becky Bruce41151e72011-06-28 09:54:48 +0000440#endif
Jon Tollefsonec4b2c02008-07-23 21:27:53 -0700441
Chen, Kenneth W39dde652006-12-06 20:32:03 -0800442int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
443{
444 return 0;
445}
446
Becky Bruce881fde12011-10-10 10:50:40 +0000447#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +0000448#define HUGEPD_FREELIST_SIZE \
449 ((PAGE_SIZE - sizeof(struct hugepd_freelist)) / sizeof(pte_t))
450
451struct hugepd_freelist {
452 struct rcu_head rcu;
453 unsigned int index;
454 void *ptes[0];
455};
456
457static DEFINE_PER_CPU(struct hugepd_freelist *, hugepd_freelist_cur);
458
459static void hugepd_free_rcu_callback(struct rcu_head *head)
460{
461 struct hugepd_freelist *batch =
462 container_of(head, struct hugepd_freelist, rcu);
463 unsigned int i;
464
465 for (i = 0; i < batch->index; i++)
466 kmem_cache_free(hugepte_cache, batch->ptes[i]);
467
468 free_page((unsigned long)batch);
469}
470
471static void hugepd_free(struct mmu_gather *tlb, void *hugepte)
472{
473 struct hugepd_freelist **batchp;
474
Christoph Lameter69111ba2014-10-21 15:23:25 -0500475 batchp = this_cpu_ptr(&hugepd_freelist_cur);
Becky Bruce41151e72011-06-28 09:54:48 +0000476
477 if (atomic_read(&tlb->mm->mm_users) < 2 ||
478 cpumask_equal(mm_cpumask(tlb->mm),
479 cpumask_of(smp_processor_id()))) {
480 kmem_cache_free(hugepte_cache, hugepte);
Tiejun Chen94b09d72014-01-20 16:39:34 +0800481 put_cpu_var(hugepd_freelist_cur);
Becky Bruce41151e72011-06-28 09:54:48 +0000482 return;
483 }
484
485 if (*batchp == NULL) {
486 *batchp = (struct hugepd_freelist *)__get_free_page(GFP_ATOMIC);
487 (*batchp)->index = 0;
488 }
489
490 (*batchp)->ptes[(*batchp)->index++] = hugepte;
491 if ((*batchp)->index == HUGEPD_FREELIST_SIZE) {
492 call_rcu_sched(&(*batchp)->rcu, hugepd_free_rcu_callback);
493 *batchp = NULL;
494 }
Tiejun Chen94b09d72014-01-20 16:39:34 +0800495 put_cpu_var(hugepd_freelist_cur);
Becky Bruce41151e72011-06-28 09:54:48 +0000496}
497#endif
498
David Gibsona4fe3ce2009-10-26 19:24:31 +0000499static void free_hugepd_range(struct mmu_gather *tlb, hugepd_t *hpdp, int pdshift,
500 unsigned long start, unsigned long end,
501 unsigned long floor, unsigned long ceiling)
David Gibsonf10a04c2006-04-28 15:02:51 +1000502{
503 pte_t *hugepte = hugepd_page(*hpdp);
Becky Bruce41151e72011-06-28 09:54:48 +0000504 int i;
505
David Gibsona4fe3ce2009-10-26 19:24:31 +0000506 unsigned long pdmask = ~((1UL << pdshift) - 1);
Becky Bruce41151e72011-06-28 09:54:48 +0000507 unsigned int num_hugepd = 1;
508
Becky Bruce881fde12011-10-10 10:50:40 +0000509#ifdef CONFIG_PPC_FSL_BOOK3E
510 /* Note: On fsl the hpdp may be the first of several */
Becky Bruce41151e72011-06-28 09:54:48 +0000511 num_hugepd = (1 << (hugepd_shift(*hpdp) - pdshift));
Becky Bruce881fde12011-10-10 10:50:40 +0000512#else
513 unsigned int shift = hugepd_shift(*hpdp);
Becky Bruce41151e72011-06-28 09:54:48 +0000514#endif
David Gibsona4fe3ce2009-10-26 19:24:31 +0000515
516 start &= pdmask;
517 if (start < floor)
518 return;
519 if (ceiling) {
520 ceiling &= pdmask;
521 if (! ceiling)
522 return;
523 }
524 if (end - 1 > ceiling - 1)
525 return;
David Gibsonf10a04c2006-04-28 15:02:51 +1000526
Becky Bruce41151e72011-06-28 09:54:48 +0000527 for (i = 0; i < num_hugepd; i++, hpdp++)
528 hpdp->pd = 0;
529
David Gibsonf10a04c2006-04-28 15:02:51 +1000530 tlb->need_flush = 1;
Becky Bruce881fde12011-10-10 10:50:40 +0000531
532#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +0000533 hugepd_free(tlb, hugepte);
Becky Bruce881fde12011-10-10 10:50:40 +0000534#else
535 pgtable_free_tlb(tlb, hugepte, pdshift - shift);
Becky Bruce41151e72011-06-28 09:54:48 +0000536#endif
David Gibsonf10a04c2006-04-28 15:02:51 +1000537}
538
David Gibsonf10a04c2006-04-28 15:02:51 +1000539static void hugetlb_free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
540 unsigned long addr, unsigned long end,
David Gibsona4fe3ce2009-10-26 19:24:31 +0000541 unsigned long floor, unsigned long ceiling)
David Gibsonf10a04c2006-04-28 15:02:51 +1000542{
543 pmd_t *pmd;
544 unsigned long next;
545 unsigned long start;
546
547 start = addr;
David Gibsonf10a04c2006-04-28 15:02:51 +1000548 do {
Becky Brucea1cd5412011-10-10 10:50:39 +0000549 pmd = pmd_offset(pud, addr);
David Gibsonf10a04c2006-04-28 15:02:51 +1000550 next = pmd_addr_end(addr, end);
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530551 if (!is_hugepd(__hugepd(pmd_val(*pmd)))) {
Aneesh Kumar K.V8bbd9f02013-06-19 12:04:26 +0530552 /*
553 * if it is not hugepd pointer, we should already find
554 * it cleared.
555 */
556 WARN_ON(!pmd_none_or_clear_bad(pmd));
David Gibsonf10a04c2006-04-28 15:02:51 +1000557 continue;
Aneesh Kumar K.V8bbd9f02013-06-19 12:04:26 +0530558 }
Becky Brucea1cd5412011-10-10 10:50:39 +0000559#ifdef CONFIG_PPC_FSL_BOOK3E
560 /*
561 * Increment next by the size of the huge mapping since
562 * there may be more than one entry at this level for a
563 * single hugepage, but all of them point to
564 * the same kmem cache that holds the hugepte.
565 */
566 next = addr + (1 << hugepd_shift(*(hugepd_t *)pmd));
567#endif
David Gibsona4fe3ce2009-10-26 19:24:31 +0000568 free_hugepd_range(tlb, (hugepd_t *)pmd, PMD_SHIFT,
569 addr, next, floor, ceiling);
Becky Brucea1cd5412011-10-10 10:50:39 +0000570 } while (addr = next, addr != end);
David Gibsonf10a04c2006-04-28 15:02:51 +1000571
572 start &= PUD_MASK;
573 if (start < floor)
574 return;
575 if (ceiling) {
576 ceiling &= PUD_MASK;
577 if (!ceiling)
578 return;
579 }
580 if (end - 1 > ceiling - 1)
581 return;
582
583 pmd = pmd_offset(pud, start);
584 pud_clear(pud);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000585 pmd_free_tlb(tlb, pmd, start);
David Gibsonf10a04c2006-04-28 15:02:51 +1000586}
David Gibsonf10a04c2006-04-28 15:02:51 +1000587
588static void hugetlb_free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
589 unsigned long addr, unsigned long end,
590 unsigned long floor, unsigned long ceiling)
591{
592 pud_t *pud;
593 unsigned long next;
594 unsigned long start;
595
596 start = addr;
David Gibsonf10a04c2006-04-28 15:02:51 +1000597 do {
Becky Brucea1cd5412011-10-10 10:50:39 +0000598 pud = pud_offset(pgd, addr);
David Gibsonf10a04c2006-04-28 15:02:51 +1000599 next = pud_addr_end(addr, end);
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530600 if (!is_hugepd(__hugepd(pud_val(*pud)))) {
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100601 if (pud_none_or_clear_bad(pud))
602 continue;
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700603 hugetlb_free_pmd_range(tlb, pud, addr, next, floor,
David Gibsona4fe3ce2009-10-26 19:24:31 +0000604 ceiling);
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100605 } else {
Becky Brucea1cd5412011-10-10 10:50:39 +0000606#ifdef CONFIG_PPC_FSL_BOOK3E
607 /*
608 * Increment next by the size of the huge mapping since
609 * there may be more than one entry at this level for a
610 * single hugepage, but all of them point to
611 * the same kmem cache that holds the hugepte.
612 */
613 next = addr + (1 << hugepd_shift(*(hugepd_t *)pud));
614#endif
David Gibsona4fe3ce2009-10-26 19:24:31 +0000615 free_hugepd_range(tlb, (hugepd_t *)pud, PUD_SHIFT,
616 addr, next, floor, ceiling);
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100617 }
Becky Brucea1cd5412011-10-10 10:50:39 +0000618 } while (addr = next, addr != end);
David Gibsonf10a04c2006-04-28 15:02:51 +1000619
620 start &= PGDIR_MASK;
621 if (start < floor)
622 return;
623 if (ceiling) {
624 ceiling &= PGDIR_MASK;
625 if (!ceiling)
626 return;
627 }
628 if (end - 1 > ceiling - 1)
629 return;
630
631 pud = pud_offset(pgd, start);
632 pgd_clear(pgd);
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000633 pud_free_tlb(tlb, pud, start);
David Gibsonf10a04c2006-04-28 15:02:51 +1000634}
635
636/*
637 * This function frees user-level page tables of a process.
David Gibsonf10a04c2006-04-28 15:02:51 +1000638 */
Jan Beulich42b77722008-07-23 21:27:10 -0700639void hugetlb_free_pgd_range(struct mmu_gather *tlb,
David Gibsonf10a04c2006-04-28 15:02:51 +1000640 unsigned long addr, unsigned long end,
641 unsigned long floor, unsigned long ceiling)
642{
643 pgd_t *pgd;
644 unsigned long next;
David Gibsonf10a04c2006-04-28 15:02:51 +1000645
646 /*
David Gibsona4fe3ce2009-10-26 19:24:31 +0000647 * Because there are a number of different possible pagetable
648 * layouts for hugepage ranges, we limit knowledge of how
649 * things should be laid out to the allocation path
650 * (huge_pte_alloc(), above). Everything else works out the
651 * structure as it goes from information in the hugepd
652 * pointers. That means that we can't here use the
653 * optimization used in the normal page free_pgd_range(), of
654 * checking whether we're actually covering a large enough
655 * range to have to do anything at the top level of the walk
656 * instead of at the bottom.
David Gibsonf10a04c2006-04-28 15:02:51 +1000657 *
David Gibsona4fe3ce2009-10-26 19:24:31 +0000658 * To make sense of this, you should probably go read the big
659 * block comment at the top of the normal free_pgd_range(),
660 * too.
David Gibsonf10a04c2006-04-28 15:02:51 +1000661 */
662
David Gibsonf10a04c2006-04-28 15:02:51 +1000663 do {
David Gibsonf10a04c2006-04-28 15:02:51 +1000664 next = pgd_addr_end(addr, end);
Becky Bruce41151e72011-06-28 09:54:48 +0000665 pgd = pgd_offset(tlb->mm, addr);
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530666 if (!is_hugepd(__hugepd(pgd_val(*pgd)))) {
David Gibson0b264252008-09-05 11:49:54 +1000667 if (pgd_none_or_clear_bad(pgd))
668 continue;
669 hugetlb_free_pud_range(tlb, pgd, addr, next, floor, ceiling);
670 } else {
Becky Bruce881fde12011-10-10 10:50:40 +0000671#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +0000672 /*
673 * Increment next by the size of the huge mapping since
Becky Bruce881fde12011-10-10 10:50:40 +0000674 * there may be more than one entry at the pgd level
675 * for a single hugepage, but all of them point to the
676 * same kmem cache that holds the hugepte.
Becky Bruce41151e72011-06-28 09:54:48 +0000677 */
678 next = addr + (1 << hugepd_shift(*(hugepd_t *)pgd));
679#endif
David Gibsona4fe3ce2009-10-26 19:24:31 +0000680 free_hugepd_range(tlb, (hugepd_t *)pgd, PGDIR_SHIFT,
681 addr, next, floor, ceiling);
David Gibson0b264252008-09-05 11:49:54 +1000682 }
Becky Bruce41151e72011-06-28 09:54:48 +0000683 } while (addr = next, addr != end);
David Gibsone28f7fa2005-08-05 19:39:06 +1000684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686struct page *
687follow_huge_addr(struct mm_struct *mm, unsigned long address, int write)
688{
689 pte_t *ptep;
690 struct page *page;
David Gibsona4fe3ce2009-10-26 19:24:31 +0000691 unsigned shift;
692 unsigned long mask;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530693 /*
694 * Transparent hugepages are handled by generic code. We can skip them
695 * here.
696 */
David Gibsona4fe3ce2009-10-26 19:24:31 +0000697 ptep = find_linux_pte_or_hugepte(mm->pgd, address, &shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700699 /* Verify it is a huge page else bail. */
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530700 if (!ptep || !shift || pmd_trans_huge(*(pmd_t *)ptep))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return ERR_PTR(-EINVAL);
702
David Gibsona4fe3ce2009-10-26 19:24:31 +0000703 mask = (1UL << shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 page = pte_page(*ptep);
David Gibsona4fe3ce2009-10-26 19:24:31 +0000705 if (page)
706 page += (address & mask) / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 return page;
709}
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711struct page *
712follow_huge_pmd(struct mm_struct *mm, unsigned long address,
713 pmd_t *pmd, int write)
714{
715 BUG();
716 return NULL;
717}
718
David Gibson39adfa52009-11-23 20:03:40 +0000719static unsigned long hugepte_addr_end(unsigned long addr, unsigned long end,
720 unsigned long sz)
721{
722 unsigned long __boundary = (addr + sz) & ~(sz-1);
723 return (__boundary - 1 < end - 1) ? __boundary : end;
724}
725
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530726int gup_huge_pd(hugepd_t hugepd, unsigned long addr, unsigned pdshift,
727 unsigned long end, int write, struct page **pages, int *nr)
David Gibsona4fe3ce2009-10-26 19:24:31 +0000728{
729 pte_t *ptep;
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530730 unsigned long sz = 1UL << hugepd_shift(hugepd);
David Gibson39adfa52009-11-23 20:03:40 +0000731 unsigned long next;
David Gibsona4fe3ce2009-10-26 19:24:31 +0000732
733 ptep = hugepte_offset(hugepd, addr, pdshift);
734 do {
David Gibson39adfa52009-11-23 20:03:40 +0000735 next = hugepte_addr_end(addr, end, sz);
David Gibsona4fe3ce2009-10-26 19:24:31 +0000736 if (!gup_hugepte(ptep, sz, addr, end, write, pages, nr))
737 return 0;
David Gibson39adfa52009-11-23 20:03:40 +0000738 } while (ptep++, addr = next, addr != end);
David Gibsona4fe3ce2009-10-26 19:24:31 +0000739
740 return 1;
741}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Becky Bruce76512952011-10-10 10:50:36 +0000743#ifdef CONFIG_PPC_MM_SLICES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
745 unsigned long len, unsigned long pgoff,
746 unsigned long flags)
747{
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700748 struct hstate *hstate = hstate_file(file);
749 int mmu_psize = shift_to_mmu_psize(huge_page_shift(hstate));
Brian King48f797d2008-12-04 04:07:54 +0000750
Michel Lespinasse34d07172013-04-29 11:53:52 -0700751 return slice_get_unmapped_area(addr, len, flags, mmu_psize, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
Becky Bruce76512952011-10-10 10:50:36 +0000753#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Mel Gorman33402892009-01-06 14:38:54 -0800755unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
756{
Paul Mackerras25c29f92011-09-20 19:58:10 +0000757#ifdef CONFIG_PPC_MM_SLICES
Mel Gorman33402892009-01-06 14:38:54 -0800758 unsigned int psize = get_slice_psize(vma->vm_mm, vma->vm_start);
759
760 return 1UL << mmu_psize_to_shift(psize);
Becky Bruce41151e72011-06-28 09:54:48 +0000761#else
762 if (!is_vm_hugetlb_page(vma))
763 return PAGE_SIZE;
764
765 return huge_page_size(hstate_vma(vma));
766#endif
767}
768
769static inline bool is_power_of_4(unsigned long x)
770{
771 if (is_power_of_2(x))
772 return (__ilog2(x) % 2) ? false : true;
773 return false;
Mel Gorman33402892009-01-06 14:38:54 -0800774}
775
David Gibsond1837cb2009-10-26 19:24:31 +0000776static int __init add_huge_page_size(unsigned long long size)
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100777{
David Gibsond1837cb2009-10-26 19:24:31 +0000778 int shift = __ffs(size);
779 int mmu_psize;
David Gibsona4fe3ce2009-10-26 19:24:31 +0000780
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100781 /* Check that it is a page size supported by the hardware and
David Gibsond1837cb2009-10-26 19:24:31 +0000782 * that it fits within pagetable and slice limits. */
Becky Bruce41151e72011-06-28 09:54:48 +0000783#ifdef CONFIG_PPC_FSL_BOOK3E
784 if ((size < PAGE_SIZE) || !is_power_of_4(size))
785 return -EINVAL;
786#else
David Gibsond1837cb2009-10-26 19:24:31 +0000787 if (!is_power_of_2(size)
788 || (shift > SLICE_HIGH_SHIFT) || (shift <= PAGE_SHIFT))
789 return -EINVAL;
Becky Bruce41151e72011-06-28 09:54:48 +0000790#endif
Jon Tollefson91224342008-07-23 21:27:55 -0700791
David Gibsond1837cb2009-10-26 19:24:31 +0000792 if ((mmu_psize = shift_to_mmu_psize(shift)) < 0)
793 return -EINVAL;
794
795#ifdef CONFIG_SPU_FS_64K_LS
796 /* Disable support for 64K huge pages when 64K SPU local store
797 * support is enabled as the current implementation conflicts.
798 */
799 if (shift == PAGE_SHIFT_64K)
800 return -EINVAL;
801#endif /* CONFIG_SPU_FS_64K_LS */
802
803 BUG_ON(mmu_psize_defs[mmu_psize].shift != shift);
804
805 /* Return if huge page size has already been setup */
806 if (size_to_hstate(size))
807 return 0;
808
809 hugetlb_add_hstate(shift - PAGE_SHIFT);
810
811 return 0;
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100812}
813
814static int __init hugepage_setup_sz(char *str)
815{
816 unsigned long long size;
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100817
818 size = memparse(str, &str);
819
David Gibsond1837cb2009-10-26 19:24:31 +0000820 if (add_huge_page_size(size) != 0)
Jon Tollefson4ec161c2008-01-04 09:59:50 +1100821 printk(KERN_WARNING "Invalid huge page size specified(%llu)\n", size);
822
823 return 1;
824}
825__setup("hugepagesz=", hugepage_setup_sz);
826
Becky Bruce881fde12011-10-10 10:50:40 +0000827#ifdef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +0000828struct kmem_cache *hugepte_cache;
829static int __init hugetlbpage_init(void)
830{
831 int psize;
832
833 for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) {
834 unsigned shift;
835
836 if (!mmu_psize_defs[psize].shift)
837 continue;
838
839 shift = mmu_psize_to_shift(psize);
840
841 /* Don't treat normal page sizes as huge... */
842 if (shift != PAGE_SHIFT)
843 if (add_huge_page_size(1ULL << shift) < 0)
844 continue;
845 }
846
847 /*
848 * Create a kmem cache for hugeptes. The bottom bits in the pte have
849 * size information encoded in them, so align them to allow this
850 */
851 hugepte_cache = kmem_cache_create("hugepte-cache", sizeof(pte_t),
852 HUGEPD_SHIFT_MASK + 1, 0, NULL);
853 if (hugepte_cache == NULL)
854 panic("%s: Unable to create kmem cache for hugeptes\n",
855 __func__);
856
857 /* Default hpage size = 4M */
858 if (mmu_psize_defs[MMU_PAGE_4M].shift)
859 HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_4M].shift;
860 else
861 panic("%s: Unable to set default huge page size\n", __func__);
862
863
864 return 0;
865}
866#else
David Gibsonf10a04c2006-04-28 15:02:51 +1000867static int __init hugetlbpage_init(void)
868{
David Gibsona4fe3ce2009-10-26 19:24:31 +0000869 int psize;
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700870
Matt Evans44ae3ab2011-04-06 19:48:50 +0000871 if (!mmu_has_feature(MMU_FTR_16M_PAGE))
David Gibsonf10a04c2006-04-28 15:02:51 +1000872 return -ENODEV;
Benjamin Herrenschmidt00df4382008-07-28 16:13:18 +1000873
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700874 for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) {
David Gibsond1837cb2009-10-26 19:24:31 +0000875 unsigned shift;
876 unsigned pdshift;
877
878 if (!mmu_psize_defs[psize].shift)
879 continue;
880
881 shift = mmu_psize_to_shift(psize);
882
883 if (add_huge_page_size(1ULL << shift) < 0)
884 continue;
885
886 if (shift < PMD_SHIFT)
887 pdshift = PMD_SHIFT;
888 else if (shift < PUD_SHIFT)
889 pdshift = PUD_SHIFT;
890 else
891 pdshift = PGDIR_SHIFT;
Aneesh Kumar K.Ve2b3d202013-04-28 09:37:30 +0000892 /*
893 * if we have pdshift and shift value same, we don't
894 * use pgt cache for hugepd.
895 */
896 if (pdshift != shift) {
897 pgtable_cache_add(pdshift - shift, NULL);
898 if (!PGT_CACHE(pdshift - shift))
899 panic("hugetlbpage_init(): could not create "
900 "pgtable cache for %d bit pagesize\n", shift);
901 }
Jon Tollefson0d9ea752008-07-23 21:27:56 -0700902 }
David Gibsonf10a04c2006-04-28 15:02:51 +1000903
David Gibsond1837cb2009-10-26 19:24:31 +0000904 /* Set default large page size. Currently, we pick 16M or 1M
905 * depending on what is available
906 */
907 if (mmu_psize_defs[MMU_PAGE_16M].shift)
908 HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_16M].shift;
909 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
910 HPAGE_SHIFT = mmu_psize_defs[MMU_PAGE_1M].shift;
911
David Gibsonf10a04c2006-04-28 15:02:51 +1000912 return 0;
913}
Becky Bruce41151e72011-06-28 09:54:48 +0000914#endif
David Gibsonf10a04c2006-04-28 15:02:51 +1000915module_init(hugetlbpage_init);
David Gibson0895ecd2009-10-26 19:24:31 +0000916
917void flush_dcache_icache_hugepage(struct page *page)
918{
919 int i;
Becky Bruce41151e72011-06-28 09:54:48 +0000920 void *start;
David Gibson0895ecd2009-10-26 19:24:31 +0000921
922 BUG_ON(!PageCompound(page));
923
Becky Bruce41151e72011-06-28 09:54:48 +0000924 for (i = 0; i < (1UL << compound_order(page)); i++) {
925 if (!PageHighMem(page)) {
926 __flush_dcache_icache(page_address(page+i));
927 } else {
Cong Wang2480b202011-11-25 23:14:16 +0800928 start = kmap_atomic(page+i);
Becky Bruce41151e72011-06-28 09:54:48 +0000929 __flush_dcache_icache(start);
Cong Wang2480b202011-11-25 23:14:16 +0800930 kunmap_atomic(start);
Becky Bruce41151e72011-06-28 09:54:48 +0000931 }
932 }
David Gibson0895ecd2009-10-26 19:24:31 +0000933}
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530934
935#endif /* CONFIG_HUGETLB_PAGE */
936
937/*
938 * We have 4 cases for pgds and pmds:
939 * (1) invalid (all zeroes)
940 * (2) pointer to next table, as normal; bottom 6 bits == 0
941 * (3) leaf pte for huge page, bottom two bits != 00
942 * (4) hugepd pointer, bottom two bits == 00, next 4 bits indicate size of table
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530943 *
944 * So long as we atomically load page table pointers we are safe against teardown,
945 * we can follow the address down to the the page and take a ref on it.
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530946 */
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530947
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530948pte_t *find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, unsigned *shift)
949{
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530950 pgd_t pgd, *pgdp;
951 pud_t pud, *pudp;
952 pmd_t pmd, *pmdp;
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530953 pte_t *ret_pte;
954 hugepd_t *hpdp = NULL;
955 unsigned pdshift = PGDIR_SHIFT;
956
957 if (shift)
958 *shift = 0;
959
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530960 pgdp = pgdir + pgd_index(ea);
961 pgd = ACCESS_ONCE(*pgdp);
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530962 /*
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530963 * Always operate on the local stack value. This make sure the
964 * value don't get updated by a parallel THP split/collapse,
965 * page fault or a page unmap. The return pte_t * is still not
966 * stable. So should be checked there for above conditions.
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530967 */
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530968 if (pgd_none(pgd))
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530969 return NULL;
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530970 else if (pgd_huge(pgd)) {
971 ret_pte = (pte_t *) pgdp;
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530972 goto out;
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530973 } else if (is_hugepd(__hugepd(pgd_val(pgd))))
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530974 hpdp = (hugepd_t *)&pgd;
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530975 else {
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530976 /*
977 * Even if we end up with an unmap, the pgtable will not
978 * be freed, because we do an rcu free and here we are
979 * irq disabled
980 */
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530981 pdshift = PUD_SHIFT;
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530982 pudp = pud_offset(&pgd, ea);
983 pud = ACCESS_ONCE(*pudp);
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530984
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530985 if (pud_none(pud))
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530986 return NULL;
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530987 else if (pud_huge(pud)) {
988 ret_pte = (pte_t *) pudp;
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530989 goto out;
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +0530990 } else if (is_hugepd(__hugepd(pud_val(pud))))
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530991 hpdp = (hugepd_t *)&pud;
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530992 else {
Aneesh Kumar K.V29409992013-06-20 14:30:16 +0530993 pdshift = PMD_SHIFT;
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +0530994 pmdp = pmd_offset(&pud, ea);
995 pmd = ACCESS_ONCE(*pmdp);
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +0530996 /*
997 * A hugepage collapse is captured by pmd_none, because
998 * it mark the pmd none and do a hpte invalidate.
999 *
1000 * A hugepage split is captured by pmd_trans_splitting
1001 * because we mark the pmd trans splitting and do a
1002 * hpte invalidate
1003 *
1004 */
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +05301005 if (pmd_none(pmd) || pmd_trans_splitting(pmd))
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +05301006 return NULL;
Aneesh Kumar K.V29409992013-06-20 14:30:16 +05301007
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +05301008 if (pmd_huge(pmd) || pmd_large(pmd)) {
1009 ret_pte = (pte_t *) pmdp;
Aneesh Kumar K.V29409992013-06-20 14:30:16 +05301010 goto out;
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +05301011 } else if (is_hugepd(__hugepd(pmd_val(pmd))))
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +05301012 hpdp = (hugepd_t *)&pmd;
Aneesh Kumar K.Vac52ae42013-06-20 14:30:17 +05301013 else
Aneesh Kumar K.V0ac52dd2013-06-20 14:30:22 +05301014 return pte_offset_kernel(&pmd, ea);
Aneesh Kumar K.V29409992013-06-20 14:30:16 +05301015 }
1016 }
1017 if (!hpdp)
1018 return NULL;
1019
Aneesh Kumar K.Vb30e7592014-11-05 21:57:41 +05301020 ret_pte = hugepte_offset(*hpdp, ea, pdshift);
Aneesh Kumar K.V29409992013-06-20 14:30:16 +05301021 pdshift = hugepd_shift(*hpdp);
1022out:
1023 if (shift)
1024 *shift = pdshift;
1025 return ret_pte;
1026}
1027EXPORT_SYMBOL_GPL(find_linux_pte_or_hugepte);
1028
1029int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long addr,
1030 unsigned long end, int write, struct page **pages, int *nr)
1031{
1032 unsigned long mask;
1033 unsigned long pte_end;
1034 struct page *head, *page, *tail;
1035 pte_t pte;
1036 int refs;
1037
1038 pte_end = (addr + sz) & ~(sz-1);
1039 if (pte_end < end)
1040 end = pte_end;
1041
Aneesh Kumar K.V7888b4d2013-06-20 14:30:23 +05301042 pte = ACCESS_ONCE(*ptep);
Aneesh Kumar K.V29409992013-06-20 14:30:16 +05301043 mask = _PAGE_PRESENT | _PAGE_USER;
1044 if (write)
1045 mask |= _PAGE_RW;
1046
1047 if ((pte_val(pte) & mask) != mask)
1048 return 0;
1049
1050 /* hugepages are never "special" */
1051 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
1052
1053 refs = 0;
1054 head = pte_page(pte);
1055
1056 page = head + ((addr & (sz-1)) >> PAGE_SHIFT);
1057 tail = page;
1058 do {
1059 VM_BUG_ON(compound_head(page) != head);
1060 pages[*nr] = page;
1061 (*nr)++;
1062 page++;
1063 refs++;
1064 } while (addr += PAGE_SIZE, addr != end);
1065
1066 if (!page_cache_add_speculative(head, refs)) {
1067 *nr -= refs;
1068 return 0;
1069 }
1070
1071 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
1072 /* Could be optimized better */
1073 *nr -= refs;
1074 while (refs--)
1075 put_page(head);
1076 return 0;
1077 }
1078
1079 /*
1080 * Any tail page need their mapcount reference taken before we
1081 * return.
1082 */
1083 while (refs--) {
1084 if (PageTail(tail))
1085 get_huge_page_tail(tail);
1086 tail++;
1087 }
1088
1089 return 1;
1090}