blob: 2525f23da4be1160250745a2fd40580717bfa543 [file] [log] [blame]
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +10001/*
2 * Page table handling routines for radix page table.
3 *
4 * Copyright 2015-2016, Aneesh Kumar K.V, IBM Corporation.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11#include <linux/sched.h>
12#include <linux/memblock.h>
13#include <linux/of_fdt.h>
14
15#include <asm/pgtable.h>
16#include <asm/pgalloc.h>
17#include <asm/dma.h>
18#include <asm/machdep.h>
19#include <asm/mmu.h>
20#include <asm/firmware.h>
21
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +100022#include <trace/events/thp.h>
23
Aneesh Kumar K.V83209bc2016-07-13 15:05:28 +053024static int native_register_process_table(unsigned long base, unsigned long pg_sz,
25 unsigned long table_size)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100026{
Aneesh Kumar K.V83209bc2016-07-13 15:05:28 +053027 unsigned long patb1 = base | table_size | PATB_GR;
28
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100029 partition_tb->patb1 = cpu_to_be64(patb1);
30 return 0;
31}
32
33static __ref void *early_alloc_pgtable(unsigned long size)
34{
35 void *pt;
36
37 pt = __va(memblock_alloc_base(size, size, MEMBLOCK_ALLOC_ANYWHERE));
38 memset(pt, 0, size);
39
40 return pt;
41}
42
43int radix__map_kernel_page(unsigned long ea, unsigned long pa,
44 pgprot_t flags,
45 unsigned int map_page_size)
46{
47 pgd_t *pgdp;
48 pud_t *pudp;
49 pmd_t *pmdp;
50 pte_t *ptep;
51 /*
52 * Make sure task size is correct as per the max adddr
53 */
54 BUILD_BUG_ON(TASK_SIZE_USER64 > RADIX_PGTABLE_RANGE);
55 if (slab_is_available()) {
56 pgdp = pgd_offset_k(ea);
57 pudp = pud_alloc(&init_mm, pgdp, ea);
58 if (!pudp)
59 return -ENOMEM;
60 if (map_page_size == PUD_SIZE) {
61 ptep = (pte_t *)pudp;
62 goto set_the_pte;
63 }
64 pmdp = pmd_alloc(&init_mm, pudp, ea);
65 if (!pmdp)
66 return -ENOMEM;
67 if (map_page_size == PMD_SIZE) {
Reza Arbab4c953842017-01-25 09:54:33 -060068 ptep = pmdp_ptep(pmdp);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100069 goto set_the_pte;
70 }
71 ptep = pte_alloc_kernel(pmdp, ea);
72 if (!ptep)
73 return -ENOMEM;
74 } else {
75 pgdp = pgd_offset_k(ea);
76 if (pgd_none(*pgdp)) {
77 pudp = early_alloc_pgtable(PUD_TABLE_SIZE);
78 BUG_ON(pudp == NULL);
79 pgd_populate(&init_mm, pgdp, pudp);
80 }
81 pudp = pud_offset(pgdp, ea);
82 if (map_page_size == PUD_SIZE) {
83 ptep = (pte_t *)pudp;
84 goto set_the_pte;
85 }
86 if (pud_none(*pudp)) {
87 pmdp = early_alloc_pgtable(PMD_TABLE_SIZE);
88 BUG_ON(pmdp == NULL);
89 pud_populate(&init_mm, pudp, pmdp);
90 }
91 pmdp = pmd_offset(pudp, ea);
92 if (map_page_size == PMD_SIZE) {
Reza Arbab4c953842017-01-25 09:54:33 -060093 ptep = pmdp_ptep(pmdp);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +100094 goto set_the_pte;
95 }
96 if (!pmd_present(*pmdp)) {
97 ptep = early_alloc_pgtable(PAGE_SIZE);
98 BUG_ON(ptep == NULL);
99 pmd_populate_kernel(&init_mm, pmdp, ptep);
100 }
101 ptep = pte_offset_kernel(pmdp, ea);
102 }
103
104set_the_pte:
105 set_pte_at(&init_mm, ea, ptep, pfn_pte(pa >> PAGE_SHIFT, flags));
106 smp_wmb();
107 return 0;
108}
109
110static void __init radix_init_pgtable(void)
111{
112 int loop_count;
113 u64 base, end, start_addr;
114 unsigned long rts_field;
115 struct memblock_region *reg;
116 unsigned long linear_page_size;
117
118 /* We don't support slb for radix */
119 mmu_slb_size = 0;
120 /*
121 * Create the linear mapping, using standard page size for now
122 */
123 loop_count = 0;
124 for_each_memblock(memory, reg) {
125
126 start_addr = reg->base;
127
128redo:
129 if (loop_count < 1 && mmu_psize_defs[MMU_PAGE_1G].shift)
130 linear_page_size = PUD_SIZE;
131 else if (loop_count < 2 && mmu_psize_defs[MMU_PAGE_2M].shift)
132 linear_page_size = PMD_SIZE;
133 else
134 linear_page_size = PAGE_SIZE;
135
136 base = _ALIGN_UP(start_addr, linear_page_size);
137 end = _ALIGN_DOWN(reg->base + reg->size, linear_page_size);
138
139 pr_info("Mapping range 0x%lx - 0x%lx with 0x%lx\n",
140 (unsigned long)base, (unsigned long)end,
141 linear_page_size);
142
143 while (base < end) {
144 radix__map_kernel_page((unsigned long)__va(base),
145 base, PAGE_KERNEL_X,
146 linear_page_size);
147 base += linear_page_size;
148 }
149 /*
150 * map the rest using lower page size
151 */
152 if (end < reg->base + reg->size) {
153 start_addr = end;
154 loop_count++;
155 goto redo;
156 }
157 }
158 /*
159 * Allocate Partition table and process table for the
160 * host.
161 */
Suraj Jitindar Singhae4c24b2016-11-09 16:36:33 +1100162 BUILD_BUG_ON_MSG((PRTB_SIZE_SHIFT > 36), "Process table size too large.");
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000163 process_tb = early_alloc_pgtable(1UL << PRTB_SIZE_SHIFT);
164 /*
165 * Fill in the process table.
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000166 */
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530167 rts_field = radix__get_tree_size();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000168 process_tb->prtb0 = cpu_to_be64(rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE);
169 /*
170 * Fill in the partition table. We are suppose to use effective address
171 * of process table here. But our linear mapping also enable us to use
172 * physical address here.
173 */
Michael Ellermaneea81482016-08-04 15:32:06 +1000174 register_process_table(__pa(process_tb), 0, PRTB_SIZE_SHIFT - 12);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000175 pr_info("Process table %p and radix root for kernel: %p\n", process_tb, init_mm.pgd);
Paul Mackerras0bf8f6e2017-02-27 14:32:41 +1100176 asm volatile("ptesync" : : : "memory");
177 asm volatile(PPC_TLBIE_5(%0,%1,2,1,1) : :
178 "r" (TLBIEL_INVAL_SET_LPID), "r" (0));
179 asm volatile("eieio; tlbsync; ptesync" : : : "memory");
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000180}
181
182static void __init radix_init_partition_table(void)
183{
184 unsigned long rts_field;
Aneesh Kumar K.Vb23d9c52016-06-17 11:40:36 +0530185
186 rts_field = radix__get_tree_size();
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000187
Suraj Jitindar Singhae4c24b2016-11-09 16:36:33 +1100188 BUILD_BUG_ON_MSG((PATB_SIZE_SHIFT > 36), "Partition table size too large.");
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000189 partition_tb = early_alloc_pgtable(1UL << PATB_SIZE_SHIFT);
190 partition_tb->patb0 = cpu_to_be64(rts_field | __pa(init_mm.pgd) |
191 RADIX_PGD_INDEX_SIZE | PATB_HR);
Aneesh Kumar K.V56547412016-07-13 15:05:25 +0530192 pr_info("Initializing Radix MMU\n");
193 pr_info("Partition table %p\n", partition_tb);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000194
195 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
196 /*
197 * update partition table control register,
198 * 64 K size.
199 */
200 mtspr(SPRN_PTCR, __pa(partition_tb) | (PATB_SIZE_SHIFT - 12));
201}
202
203void __init radix_init_native(void)
204{
Michael Ellermaneea81482016-08-04 15:32:06 +1000205 register_process_table = native_register_process_table;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000206}
207
208static int __init get_idx_from_shift(unsigned int shift)
209{
210 int idx = -1;
211
212 switch (shift) {
213 case 0xc:
214 idx = MMU_PAGE_4K;
215 break;
216 case 0x10:
217 idx = MMU_PAGE_64K;
218 break;
219 case 0x15:
220 idx = MMU_PAGE_2M;
221 break;
222 case 0x1e:
223 idx = MMU_PAGE_1G;
224 break;
225 }
226 return idx;
227}
228
229static int __init radix_dt_scan_page_sizes(unsigned long node,
230 const char *uname, int depth,
231 void *data)
232{
233 int size = 0;
234 int shift, idx;
235 unsigned int ap;
236 const __be32 *prop;
237 const char *type = of_get_flat_dt_prop(node, "device_type", NULL);
238
239 /* We are scanning "cpu" nodes only */
240 if (type == NULL || strcmp(type, "cpu") != 0)
241 return 0;
242
243 prop = of_get_flat_dt_prop(node, "ibm,processor-radix-AP-encodings", &size);
244 if (!prop)
245 return 0;
246
247 pr_info("Page sizes from device-tree:\n");
248 for (; size >= 4; size -= 4, ++prop) {
249
250 struct mmu_psize_def *def;
251
252 /* top 3 bit is AP encoding */
253 shift = be32_to_cpu(prop[0]) & ~(0xe << 28);
254 ap = be32_to_cpu(prop[0]) >> 29;
255 pr_info("Page size sift = %d AP=0x%x\n", shift, ap);
256
257 idx = get_idx_from_shift(shift);
258 if (idx < 0)
259 continue;
260
261 def = &mmu_psize_defs[idx];
262 def->shift = shift;
263 def->ap = ap;
264 }
265
266 /* needed ? */
267 cur_cpu_spec->mmu_features &= ~MMU_FTR_NO_SLBIE_B;
268 return 1;
269}
270
Michael Ellerman2537b092016-07-26 21:55:27 +1000271void __init radix__early_init_devtree(void)
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000272{
273 int rc;
274
275 /*
276 * Try to find the available page sizes in the device-tree
277 */
278 rc = of_scan_flat_dt(radix_dt_scan_page_sizes, NULL);
279 if (rc != 0) /* Found */
280 goto found;
281 /*
282 * let's assume we have page 4k and 64k support
283 */
284 mmu_psize_defs[MMU_PAGE_4K].shift = 12;
285 mmu_psize_defs[MMU_PAGE_4K].ap = 0x0;
286
287 mmu_psize_defs[MMU_PAGE_64K].shift = 16;
288 mmu_psize_defs[MMU_PAGE_64K].ap = 0x5;
289found:
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000290 return;
291}
292
Aneesh Kumar K.Vad410672016-08-24 15:03:39 +0530293static void update_hid_for_radix(void)
294{
295 unsigned long hid0;
296 unsigned long rb = 3UL << PPC_BITLSHIFT(53); /* IS = 3 */
297
298 asm volatile("ptesync": : :"memory");
299 /* prs = 0, ric = 2, rs = 0, r = 1 is = 3 */
300 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
301 : : "r"(rb), "i"(1), "i"(0), "i"(2), "r"(0) : "memory");
302 /* prs = 1, ric = 2, rs = 0, r = 1 is = 3 */
303 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
304 : : "r"(rb), "i"(1), "i"(1), "i"(2), "r"(0) : "memory");
305 asm volatile("eieio; tlbsync; ptesync; isync; slbia": : :"memory");
306 /*
307 * now switch the HID
308 */
309 hid0 = mfspr(SPRN_HID0);
310 hid0 |= HID0_POWER9_RADIX;
311 mtspr(SPRN_HID0, hid0);
312 asm volatile("isync": : :"memory");
313
314 /* Wait for it to happen */
315 while (!(mfspr(SPRN_HID0) & HID0_POWER9_RADIX))
316 cpu_relax();
317}
318
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000319void __init radix__early_init_mmu(void)
320{
321 unsigned long lpcr;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000322
323#ifdef CONFIG_PPC_64K_PAGES
324 /* PAGE_SIZE mappings */
325 mmu_virtual_psize = MMU_PAGE_64K;
326#else
327 mmu_virtual_psize = MMU_PAGE_4K;
328#endif
329
330#ifdef CONFIG_SPARSEMEM_VMEMMAP
331 /* vmemmap mapping */
Aneesh Kumar K.Va49808a2019-07-01 20:04:42 +0530332 if (mmu_psize_defs[MMU_PAGE_2M].shift) {
333 /*
334 * map vmemmap using 2M if available
335 */
336 mmu_vmemmap_psize = MMU_PAGE_2M;
337 } else
338 mmu_vmemmap_psize = mmu_virtual_psize;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000339#endif
340 /*
341 * initialize page table size
342 */
343 __pte_index_size = RADIX_PTE_INDEX_SIZE;
344 __pmd_index_size = RADIX_PMD_INDEX_SIZE;
345 __pud_index_size = RADIX_PUD_INDEX_SIZE;
346 __pgd_index_size = RADIX_PGD_INDEX_SIZE;
347 __pmd_cache_index = RADIX_PMD_INDEX_SIZE;
348 __pte_table_size = RADIX_PTE_TABLE_SIZE;
349 __pmd_table_size = RADIX_PMD_TABLE_SIZE;
350 __pud_table_size = RADIX_PUD_TABLE_SIZE;
351 __pgd_table_size = RADIX_PGD_TABLE_SIZE;
352
Aneesh Kumar K.Va2f41eb2016-04-29 23:26:19 +1000353 __pmd_val_bits = RADIX_PMD_VAL_BITS;
354 __pud_val_bits = RADIX_PUD_VAL_BITS;
355 __pgd_val_bits = RADIX_PGD_VAL_BITS;
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000356
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000357 __kernel_virt_start = RADIX_KERN_VIRT_START;
358 __kernel_virt_size = RADIX_KERN_VIRT_SIZE;
359 __vmalloc_start = RADIX_VMALLOC_START;
360 __vmalloc_end = RADIX_VMALLOC_END;
361 vmemmap = (struct page *)RADIX_VMEMMAP_BASE;
362 ioremap_bot = IOREMAP_BASE;
Darren Stevensbfa37082016-06-29 21:06:28 +0100363
364#ifdef CONFIG_PCI
365 pci_io_base = ISA_IO_BASE;
366#endif
367
Aneesh Kumar K.V5ed7ecd2016-04-29 23:26:23 +1000368 /*
369 * For now radix also use the same frag size
370 */
371 __pte_frag_nr = H_PTE_FRAG_NR;
372 __pte_frag_size_shift = H_PTE_FRAG_SIZE_SHIFT;
Aneesh Kumar K.Vd6a99962016-04-29 23:26:21 +1000373
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530374 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
Benjamin Herrenschmidt166dd7d2016-07-05 15:03:51 +1000375 radix_init_native();
Aneesh Kumar K.Vad410672016-08-24 15:03:39 +0530376 if (cpu_has_feature(CPU_FTR_POWER9_DD1))
377 update_hid_for_radix();
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530378 lpcr = mfspr(SPRN_LPCR);
Aneesh Kumar K.Vbf16cdf2016-07-13 15:05:21 +0530379 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000380 radix_init_partition_table();
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530381 }
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000382
383 radix_init_pgtable();
384}
385
386void radix__early_init_mmu_secondary(void)
387{
388 unsigned long lpcr;
389 /*
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530390 * update partition table control register and UPRT
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000391 */
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530392 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
Aneesh Kumar K.Vcac4a182016-11-17 15:46:23 +0530393
394 if (cpu_has_feature(CPU_FTR_POWER9_DD1))
395 update_hid_for_radix();
396
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530397 lpcr = mfspr(SPRN_LPCR);
Aneesh Kumar K.Vbf16cdf2016-07-13 15:05:21 +0530398 mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR);
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530399
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000400 mtspr(SPRN_PTCR,
401 __pa(partition_tb) | (PATB_SIZE_SHIFT - 12));
Aneesh Kumar K.Vd6c88602016-05-31 11:56:29 +0530402 }
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000403}
404
Benjamin Herrenschmidtfe036a02016-08-19 14:22:37 +0530405void radix__mmu_cleanup_all(void)
406{
407 unsigned long lpcr;
408
409 if (!firmware_has_feature(FW_FEATURE_LPAR)) {
410 lpcr = mfspr(SPRN_LPCR);
411 mtspr(SPRN_LPCR, lpcr & ~LPCR_UPRT);
412 mtspr(SPRN_PTCR, 0);
413 radix__flush_tlb_all();
414 }
415}
416
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000417void radix__setup_initial_memory_limit(phys_addr_t first_memblock_base,
418 phys_addr_t first_memblock_size)
419{
Aneesh Kumar K.V177ba7c2016-04-29 23:26:10 +1000420 /* We don't currently support the first MEMBLOCK not mapping 0
421 * physical on those processors
422 */
423 BUG_ON(first_memblock_base != 0);
424 /*
425 * We limit the allocation that depend on ppc64_rma_size
426 * to first_memblock_size. We also clamp it to 1GB to
427 * avoid some funky things such as RTAS bugs.
428 *
429 * On radix config we really don't have a limitation
430 * on real mode access. But keeping it as above works
431 * well enough.
432 */
433 ppc64_rma_size = min_t(u64, first_memblock_size, 0x40000000);
434 /*
435 * Finally limit subsequent allocations. We really don't want
436 * to limit the memblock allocations to rma_size. FIXME!! should
437 * we even limit at all ?
438 */
Aneesh Kumar K.V2bfd65e2016-04-29 23:25:58 +1000439 memblock_set_current_limit(first_memblock_base + first_memblock_size);
440}
Aneesh Kumar K.Vd9225ad2016-04-29 23:26:00 +1000441
442#ifdef CONFIG_SPARSEMEM_VMEMMAP
443int __meminit radix__vmemmap_create_mapping(unsigned long start,
444 unsigned long page_size,
445 unsigned long phys)
446{
447 /* Create a PTE encoding */
448 unsigned long flags = _PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_KERNEL_RW;
449
450 BUG_ON(radix__map_kernel_page(start, phys, __pgprot(flags), page_size));
451 return 0;
452}
453
454#ifdef CONFIG_MEMORY_HOTPLUG
455void radix__vmemmap_remove_mapping(unsigned long start, unsigned long page_size)
456{
457 /* FIXME!! intel does more. We should free page tables mapping vmemmap ? */
458}
459#endif
460#endif
Aneesh Kumar K.Vbde3eb62016-04-29 23:26:30 +1000461
462#ifdef CONFIG_TRANSPARENT_HUGEPAGE
463
464unsigned long radix__pmd_hugepage_update(struct mm_struct *mm, unsigned long addr,
465 pmd_t *pmdp, unsigned long clr,
466 unsigned long set)
467{
468 unsigned long old;
469
470#ifdef CONFIG_DEBUG_VM
471 WARN_ON(!radix__pmd_trans_huge(*pmdp));
472 assert_spin_locked(&mm->page_table_lock);
473#endif
474
475 old = radix__pte_update(mm, addr, (pte_t *)pmdp, clr, set, 1);
476 trace_hugepage_update(addr, old, clr, set);
477
478 return old;
479}
480
481pmd_t radix__pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
482 pmd_t *pmdp)
483
484{
485 pmd_t pmd;
486
487 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
488 VM_BUG_ON(radix__pmd_trans_huge(*pmdp));
489 /*
490 * khugepaged calls this for normal pmd
491 */
492 pmd = *pmdp;
493 pmd_clear(pmdp);
494 /*FIXME!! Verify whether we need this kick below */
495 kick_all_cpus_sync();
496 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
497 return pmd;
498}
499
500/*
501 * For us pgtable_t is pte_t *. Inorder to save the deposisted
502 * page table, we consider the allocated page table as a list
503 * head. On withdraw we need to make sure we zero out the used
504 * list_head memory area.
505 */
506void radix__pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
507 pgtable_t pgtable)
508{
509 struct list_head *lh = (struct list_head *) pgtable;
510
511 assert_spin_locked(pmd_lockptr(mm, pmdp));
512
513 /* FIFO */
514 if (!pmd_huge_pte(mm, pmdp))
515 INIT_LIST_HEAD(lh);
516 else
517 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
518 pmd_huge_pte(mm, pmdp) = pgtable;
519}
520
521pgtable_t radix__pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
522{
523 pte_t *ptep;
524 pgtable_t pgtable;
525 struct list_head *lh;
526
527 assert_spin_locked(pmd_lockptr(mm, pmdp));
528
529 /* FIFO */
530 pgtable = pmd_huge_pte(mm, pmdp);
531 lh = (struct list_head *) pgtable;
532 if (list_empty(lh))
533 pmd_huge_pte(mm, pmdp) = NULL;
534 else {
535 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
536 list_del(lh);
537 }
538 ptep = (pte_t *) pgtable;
539 *ptep = __pte(0);
540 ptep++;
541 *ptep = __pte(0);
542 return pgtable;
543}
544
545
546pmd_t radix__pmdp_huge_get_and_clear(struct mm_struct *mm,
547 unsigned long addr, pmd_t *pmdp)
548{
549 pmd_t old_pmd;
550 unsigned long old;
551
552 old = radix__pmd_hugepage_update(mm, addr, pmdp, ~0UL, 0);
553 old_pmd = __pmd(old);
554 /*
555 * Serialize against find_linux_pte_or_hugepte which does lock-less
556 * lookup in page tables with local interrupts disabled. For huge pages
557 * it casts pmd_t to pte_t. Since format of pte_t is different from
558 * pmd_t we want to prevent transit from pmd pointing to page table
559 * to pmd pointing to huge page (and back) while interrupts are disabled.
560 * We clear pmd to possibly replace it with page table pointer in
561 * different code paths. So make sure we wait for the parallel
562 * find_linux_pte_or_hugepage to finish.
563 */
564 kick_all_cpus_sync();
565 return old_pmd;
566}
567
568int radix__has_transparent_hugepage(void)
569{
570 /* For radix 2M at PMD level means thp */
571 if (mmu_psize_defs[MMU_PAGE_2M].shift == PMD_SHIFT)
572 return 1;
573 return 0;
574}
575#endif /* CONFIG_TRANSPARENT_HUGEPAGE */