2 * PowerPC64 port by Mike Corrigan and Dave Engebretsen
3 * {mikejc|engebret}@us.ibm.com
5 * Copyright (c) 2000 Mike Corrigan <mikejc@us.ibm.com>
7 * SMP scalability work:
8 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
13 * PowerPC Hashed Page Table functions
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
24 #include <linux/spinlock.h>
25 #include <linux/errno.h>
26 #include <linux/sched.h>
27 #include <linux/proc_fs.h>
28 #include <linux/stat.h>
29 #include <linux/sysctl.h>
30 #include <linux/ctype.h>
31 #include <linux/cache.h>
32 #include <linux/init.h>
33 #include <linux/signal.h>
35 #include <asm/processor.h>
36 #include <asm/pgtable.h>
38 #include <asm/mmu_context.h>
40 #include <asm/types.h>
41 #include <asm/system.h>
42 #include <asm/uaccess.h>
43 #include <asm/machdep.h>
45 #include <asm/abs_addr.h>
46 #include <asm/tlbflush.h>
50 #include <asm/cacheflush.h>
51 #include <asm/cputable.h>
52 #include <asm/sections.h>
56 #define DBG(fmt...) udbg_printf(fmt)
62 #define DBG_LOW(fmt...) udbg_printf(fmt)
64 #define DBG_LOW(fmt...)
71 * Note: pte --> Linux PTE
72 * HPTE --> PowerPC Hashed Page Table Entry
75 * htab_initialize is called with the MMU off (of course), but
76 * the kernel has been copied down to zero so it can directly
77 * reference global data. At this point it is very difficult
78 * to print debug info.
83 extern unsigned long dart_tablebase
;
84 #endif /* CONFIG_U3_DART */
86 static unsigned long _SDR1
;
87 struct mmu_psize_def mmu_psize_defs
[MMU_PAGE_COUNT
];
89 struct hash_pte
*htab_address
;
90 unsigned long htab_size_bytes
;
91 unsigned long htab_hash_mask
;
92 int mmu_linear_psize
= MMU_PAGE_4K
;
93 int mmu_virtual_psize
= MMU_PAGE_4K
;
94 int mmu_vmalloc_psize
= MMU_PAGE_4K
;
95 int mmu_io_psize
= MMU_PAGE_4K
;
96 int mmu_kernel_ssize
= MMU_SEGSIZE_256M
;
97 int mmu_highuser_ssize
= MMU_SEGSIZE_256M
;
98 #ifdef CONFIG_HUGETLB_PAGE
99 int mmu_huge_psize
= MMU_PAGE_16M
;
100 unsigned int HPAGE_SHIFT
;
102 #ifdef CONFIG_PPC_64K_PAGES
103 int mmu_ci_restrictions
;
105 #ifdef CONFIG_DEBUG_PAGEALLOC
106 static u8
*linear_map_hash_slots
;
107 static unsigned long linear_map_hash_count
;
108 static DEFINE_SPINLOCK(linear_map_hash_lock
);
109 #endif /* CONFIG_DEBUG_PAGEALLOC */
111 /* There are definitions of page sizes arrays to be used when none
112 * is provided by the firmware.
115 /* Pre-POWER4 CPUs (4k pages only)
117 struct mmu_psize_def mmu_psize_defaults_old
[] = {
127 /* POWER4, GPUL, POWER5
129 * Support for 16Mb large pages
131 struct mmu_psize_def mmu_psize_defaults_gp
[] = {
149 int htab_bolt_mapping(unsigned long vstart
, unsigned long vend
,
150 unsigned long pstart
, unsigned long mode
,
151 int psize
, int ssize
)
153 unsigned long vaddr
, paddr
;
154 unsigned int step
, shift
;
155 unsigned long tmp_mode
;
158 shift
= mmu_psize_defs
[psize
].shift
;
161 for (vaddr
= vstart
, paddr
= pstart
; vaddr
< vend
;
162 vaddr
+= step
, paddr
+= step
) {
163 unsigned long hash
, hpteg
;
164 unsigned long vsid
= get_kernel_vsid(vaddr
, ssize
);
165 unsigned long va
= hpt_va(vaddr
, vsid
, ssize
);
169 /* Make non-kernel text non-executable */
170 if (!in_kernel_text(vaddr
))
171 tmp_mode
= mode
| HPTE_R_N
;
173 hash
= hpt_hash(va
, shift
, ssize
);
174 hpteg
= ((hash
& htab_hash_mask
) * HPTES_PER_GROUP
);
176 DBG("htab_bolt_mapping: calling %p\n", ppc_md
.hpte_insert
);
178 BUG_ON(!ppc_md
.hpte_insert
);
179 ret
= ppc_md
.hpte_insert(hpteg
, va
, paddr
,
180 tmp_mode
, HPTE_V_BOLTED
, psize
, ssize
);
184 #ifdef CONFIG_DEBUG_PAGEALLOC
185 if ((paddr
>> PAGE_SHIFT
) < linear_map_hash_count
)
186 linear_map_hash_slots
[paddr
>> PAGE_SHIFT
] = ret
| 0x80;
187 #endif /* CONFIG_DEBUG_PAGEALLOC */
189 return ret
< 0 ? ret
: 0;
192 static int __init
htab_dt_scan_seg_sizes(unsigned long node
,
193 const char *uname
, int depth
,
196 char *type
= of_get_flat_dt_prop(node
, "device_type", NULL
);
198 unsigned long size
= 0;
200 /* We are scanning "cpu" nodes only */
201 if (type
== NULL
|| strcmp(type
, "cpu") != 0)
204 prop
= (u32
*)of_get_flat_dt_prop(node
, "ibm,processor-segment-sizes",
208 for (; size
>= 4; size
-= 4, ++prop
) {
210 DBG("1T segment support detected\n");
211 cur_cpu_spec
->cpu_features
|= CPU_FTR_1T_SEGMENT
;
215 cur_cpu_spec
->cpu_features
&= ~CPU_FTR_NO_SLBIE_B
;
219 static void __init
htab_init_seg_sizes(void)
221 of_scan_flat_dt(htab_dt_scan_seg_sizes
, NULL
);
224 static int __init
htab_dt_scan_page_sizes(unsigned long node
,
225 const char *uname
, int depth
,
228 char *type
= of_get_flat_dt_prop(node
, "device_type", NULL
);
230 unsigned long size
= 0;
232 /* We are scanning "cpu" nodes only */
233 if (type
== NULL
|| strcmp(type
, "cpu") != 0)
236 prop
= (u32
*)of_get_flat_dt_prop(node
,
237 "ibm,segment-page-sizes", &size
);
239 DBG("Page sizes from device-tree:\n");
241 cur_cpu_spec
->cpu_features
&= ~(CPU_FTR_16M_PAGE
);
243 unsigned int shift
= prop
[0];
244 unsigned int slbenc
= prop
[1];
245 unsigned int lpnum
= prop
[2];
246 unsigned int lpenc
= 0;
247 struct mmu_psize_def
*def
;
250 size
-= 3; prop
+= 3;
251 while(size
> 0 && lpnum
) {
252 if (prop
[0] == shift
)
254 prop
+= 2; size
-= 2;
269 cur_cpu_spec
->cpu_features
|= CPU_FTR_16M_PAGE
;
277 def
= &mmu_psize_defs
[idx
];
282 def
->avpnm
= (1 << (shift
- 23)) - 1;
285 /* We don't know for sure what's up with tlbiel, so
286 * for now we only set it for 4K and 64K pages
288 if (idx
== MMU_PAGE_4K
|| idx
== MMU_PAGE_64K
)
293 DBG(" %d: shift=%02x, sllp=%04x, avpnm=%08x, "
294 "tlbiel=%d, penc=%d\n",
295 idx
, shift
, def
->sllp
, def
->avpnm
, def
->tlbiel
,
303 static void __init
htab_init_page_sizes(void)
307 /* Default to 4K pages only */
308 memcpy(mmu_psize_defs
, mmu_psize_defaults_old
,
309 sizeof(mmu_psize_defaults_old
));
312 * Try to find the available page sizes in the device-tree
314 rc
= of_scan_flat_dt(htab_dt_scan_page_sizes
, NULL
);
315 if (rc
!= 0) /* Found */
319 * Not in the device-tree, let's fallback on known size
320 * list for 16M capable GP & GR
322 if (cpu_has_feature(CPU_FTR_16M_PAGE
))
323 memcpy(mmu_psize_defs
, mmu_psize_defaults_gp
,
324 sizeof(mmu_psize_defaults_gp
));
326 #ifndef CONFIG_DEBUG_PAGEALLOC
328 * Pick a size for the linear mapping. Currently, we only support
329 * 16M, 1M and 4K which is the default
331 if (mmu_psize_defs
[MMU_PAGE_16M
].shift
)
332 mmu_linear_psize
= MMU_PAGE_16M
;
333 else if (mmu_psize_defs
[MMU_PAGE_1M
].shift
)
334 mmu_linear_psize
= MMU_PAGE_1M
;
335 #endif /* CONFIG_DEBUG_PAGEALLOC */
337 #ifdef CONFIG_PPC_64K_PAGES
339 * Pick a size for the ordinary pages. Default is 4K, we support
340 * 64K for user mappings and vmalloc if supported by the processor.
341 * We only use 64k for ioremap if the processor
342 * (and firmware) support cache-inhibited large pages.
343 * If not, we use 4k and set mmu_ci_restrictions so that
344 * hash_page knows to switch processes that use cache-inhibited
345 * mappings to 4k pages.
347 if (mmu_psize_defs
[MMU_PAGE_64K
].shift
) {
348 mmu_virtual_psize
= MMU_PAGE_64K
;
349 mmu_vmalloc_psize
= MMU_PAGE_64K
;
350 if (mmu_linear_psize
== MMU_PAGE_4K
)
351 mmu_linear_psize
= MMU_PAGE_64K
;
352 if (cpu_has_feature(CPU_FTR_CI_LARGE_PAGE
))
353 mmu_io_psize
= MMU_PAGE_64K
;
355 mmu_ci_restrictions
= 1;
357 #endif /* CONFIG_PPC_64K_PAGES */
359 printk(KERN_DEBUG
"Page orders: linear mapping = %d, "
360 "virtual = %d, io = %d\n",
361 mmu_psize_defs
[mmu_linear_psize
].shift
,
362 mmu_psize_defs
[mmu_virtual_psize
].shift
,
363 mmu_psize_defs
[mmu_io_psize
].shift
);
365 #ifdef CONFIG_HUGETLB_PAGE
366 /* Init large page size. Currently, we pick 16M or 1M depending
367 * on what is available
369 if (mmu_psize_defs
[MMU_PAGE_16M
].shift
)
370 mmu_huge_psize
= MMU_PAGE_16M
;
371 /* With 4k/4level pagetables, we can't (for now) cope with a
372 * huge page size < PMD_SIZE */
373 else if (mmu_psize_defs
[MMU_PAGE_1M
].shift
)
374 mmu_huge_psize
= MMU_PAGE_1M
;
376 /* Calculate HPAGE_SHIFT and sanity check it */
377 if (mmu_psize_defs
[mmu_huge_psize
].shift
> MIN_HUGEPTE_SHIFT
&&
378 mmu_psize_defs
[mmu_huge_psize
].shift
< SID_SHIFT
)
379 HPAGE_SHIFT
= mmu_psize_defs
[mmu_huge_psize
].shift
;
381 HPAGE_SHIFT
= 0; /* No huge pages dude ! */
382 #endif /* CONFIG_HUGETLB_PAGE */
385 static int __init
htab_dt_scan_pftsize(unsigned long node
,
386 const char *uname
, int depth
,
389 char *type
= of_get_flat_dt_prop(node
, "device_type", NULL
);
392 /* We are scanning "cpu" nodes only */
393 if (type
== NULL
|| strcmp(type
, "cpu") != 0)
396 prop
= (u32
*)of_get_flat_dt_prop(node
, "ibm,pft-size", NULL
);
398 /* pft_size[0] is the NUMA CEC cookie */
399 ppc64_pft_size
= prop
[1];
405 static unsigned long __init
htab_get_table_size(void)
407 unsigned long mem_size
, rnd_mem_size
, pteg_count
;
409 /* If hash size isn't already provided by the platform, we try to
410 * retrieve it from the device-tree. If it's not there neither, we
411 * calculate it now based on the total RAM size
413 if (ppc64_pft_size
== 0)
414 of_scan_flat_dt(htab_dt_scan_pftsize
, NULL
);
416 return 1UL << ppc64_pft_size
;
418 /* round mem_size up to next power of 2 */
419 mem_size
= lmb_phys_mem_size();
420 rnd_mem_size
= 1UL << __ilog2(mem_size
);
421 if (rnd_mem_size
< mem_size
)
425 pteg_count
= max(rnd_mem_size
>> (12 + 1), 1UL << 11);
427 return pteg_count
<< 7;
430 #ifdef CONFIG_MEMORY_HOTPLUG
431 void create_section_mapping(unsigned long start
, unsigned long end
)
433 BUG_ON(htab_bolt_mapping(start
, end
, __pa(start
),
434 _PAGE_ACCESSED
| _PAGE_DIRTY
| _PAGE_COHERENT
| PP_RWXX
,
435 mmu_linear_psize
, mmu_kernel_ssize
));
437 #endif /* CONFIG_MEMORY_HOTPLUG */
439 static inline void make_bl(unsigned int *insn_addr
, void *func
)
441 unsigned long funcp
= *((unsigned long *)func
);
442 int offset
= funcp
- (unsigned long)insn_addr
;
444 *insn_addr
= (unsigned int)(0x48000001 | (offset
& 0x03fffffc));
445 flush_icache_range((unsigned long)insn_addr
, 4+
446 (unsigned long)insn_addr
);
449 static void __init
htab_finish_init(void)
451 extern unsigned int *htab_call_hpte_insert1
;
452 extern unsigned int *htab_call_hpte_insert2
;
453 extern unsigned int *htab_call_hpte_remove
;
454 extern unsigned int *htab_call_hpte_updatepp
;
456 #ifdef CONFIG_PPC_HAS_HASH_64K
457 extern unsigned int *ht64_call_hpte_insert1
;
458 extern unsigned int *ht64_call_hpte_insert2
;
459 extern unsigned int *ht64_call_hpte_remove
;
460 extern unsigned int *ht64_call_hpte_updatepp
;
462 make_bl(ht64_call_hpte_insert1
, ppc_md
.hpte_insert
);
463 make_bl(ht64_call_hpte_insert2
, ppc_md
.hpte_insert
);
464 make_bl(ht64_call_hpte_remove
, ppc_md
.hpte_remove
);
465 make_bl(ht64_call_hpte_updatepp
, ppc_md
.hpte_updatepp
);
466 #endif /* CONFIG_PPC_HAS_HASH_64K */
468 make_bl(htab_call_hpte_insert1
, ppc_md
.hpte_insert
);
469 make_bl(htab_call_hpte_insert2
, ppc_md
.hpte_insert
);
470 make_bl(htab_call_hpte_remove
, ppc_md
.hpte_remove
);
471 make_bl(htab_call_hpte_updatepp
, ppc_md
.hpte_updatepp
);
474 void __init
htab_initialize(void)
477 unsigned long pteg_count
;
478 unsigned long mode_rw
;
479 unsigned long base
= 0, size
= 0;
482 extern unsigned long tce_alloc_start
, tce_alloc_end
;
484 DBG(" -> htab_initialize()\n");
486 /* Initialize segment sizes */
487 htab_init_seg_sizes();
489 /* Initialize page sizes */
490 htab_init_page_sizes();
492 if (cpu_has_feature(CPU_FTR_1T_SEGMENT
)) {
493 mmu_kernel_ssize
= MMU_SEGSIZE_1T
;
494 mmu_highuser_ssize
= MMU_SEGSIZE_1T
;
495 printk(KERN_INFO
"Using 1TB segments\n");
499 * Calculate the required size of the htab. We want the number of
500 * PTEGs to equal one half the number of real pages.
502 htab_size_bytes
= htab_get_table_size();
503 pteg_count
= htab_size_bytes
>> 7;
505 htab_hash_mask
= pteg_count
- 1;
507 if (firmware_has_feature(FW_FEATURE_LPAR
)) {
508 /* Using a hypervisor which owns the htab */
512 /* Find storage for the HPT. Must be contiguous in
513 * the absolute address space.
515 table
= lmb_alloc(htab_size_bytes
, htab_size_bytes
);
517 DBG("Hash table allocated at %lx, size: %lx\n", table
,
520 htab_address
= abs_to_virt(table
);
522 /* htab absolute addr + encoded htabsize */
523 _SDR1
= table
+ __ilog2(pteg_count
) - 11;
525 /* Initialize the HPT with no entries */
526 memset((void *)table
, 0, htab_size_bytes
);
529 mtspr(SPRN_SDR1
, _SDR1
);
532 mode_rw
= _PAGE_ACCESSED
| _PAGE_DIRTY
| _PAGE_COHERENT
| PP_RWXX
;
534 #ifdef CONFIG_DEBUG_PAGEALLOC
535 linear_map_hash_count
= lmb_end_of_DRAM() >> PAGE_SHIFT
;
536 linear_map_hash_slots
= __va(lmb_alloc_base(linear_map_hash_count
,
538 memset(linear_map_hash_slots
, 0, linear_map_hash_count
);
539 #endif /* CONFIG_DEBUG_PAGEALLOC */
541 /* On U3 based machines, we need to reserve the DART area and
542 * _NOT_ map it to avoid cache paradoxes as it's remapped non
546 /* create bolted the linear mapping in the hash table */
547 for (i
=0; i
< lmb
.memory
.cnt
; i
++) {
548 base
= (unsigned long)__va(lmb
.memory
.region
[i
].base
);
549 size
= lmb
.memory
.region
[i
].size
;
551 DBG("creating mapping for region: %lx : %lx\n", base
, size
);
553 #ifdef CONFIG_U3_DART
554 /* Do not map the DART space. Fortunately, it will be aligned
555 * in such a way that it will not cross two lmb regions and
556 * will fit within a single 16Mb page.
557 * The DART space is assumed to be a full 16Mb region even if
558 * we only use 2Mb of that space. We will use more of it later
559 * for AGP GART. We have to use a full 16Mb large page.
561 DBG("DART base: %lx\n", dart_tablebase
);
563 if (dart_tablebase
!= 0 && dart_tablebase
>= base
564 && dart_tablebase
< (base
+ size
)) {
565 unsigned long dart_table_end
= dart_tablebase
+ 16 * MB
;
566 if (base
!= dart_tablebase
)
567 BUG_ON(htab_bolt_mapping(base
, dart_tablebase
,
571 if ((base
+ size
) > dart_table_end
)
572 BUG_ON(htab_bolt_mapping(dart_tablebase
+16*MB
,
574 __pa(dart_table_end
),
580 #endif /* CONFIG_U3_DART */
581 BUG_ON(htab_bolt_mapping(base
, base
+ size
, __pa(base
),
582 mode_rw
, mmu_linear_psize
, mmu_kernel_ssize
));
586 * If we have a memory_limit and we've allocated TCEs then we need to
587 * explicitly map the TCE area at the top of RAM. We also cope with the
588 * case that the TCEs start below memory_limit.
589 * tce_alloc_start/end are 16MB aligned so the mapping should work
590 * for either 4K or 16MB pages.
592 if (tce_alloc_start
) {
593 tce_alloc_start
= (unsigned long)__va(tce_alloc_start
);
594 tce_alloc_end
= (unsigned long)__va(tce_alloc_end
);
596 if (base
+ size
>= tce_alloc_start
)
597 tce_alloc_start
= base
+ size
+ 1;
599 BUG_ON(htab_bolt_mapping(tce_alloc_start
, tce_alloc_end
,
600 __pa(tce_alloc_start
), mode_rw
,
601 mmu_linear_psize
, mmu_kernel_ssize
));
606 DBG(" <- htab_initialize()\n");
611 void htab_initialize_secondary(void)
613 if (!firmware_has_feature(FW_FEATURE_LPAR
))
614 mtspr(SPRN_SDR1
, _SDR1
);
618 * Called by asm hashtable.S for doing lazy icache flush
620 unsigned int hash_page_do_lazy_icache(unsigned int pp
, pte_t pte
, int trap
)
624 if (!pfn_valid(pte_pfn(pte
)))
627 page
= pte_page(pte
);
630 if (!test_bit(PG_arch_1
, &page
->flags
) && !PageReserved(page
)) {
632 __flush_dcache_icache(page_address(page
));
633 set_bit(PG_arch_1
, &page
->flags
);
641 * Demote a segment to using 4k pages.
642 * For now this makes the whole process use 4k pages.
644 #ifdef CONFIG_PPC_64K_PAGES
645 static void demote_segment_4k(struct mm_struct
*mm
, unsigned long addr
)
647 if (mm
->context
.user_psize
== MMU_PAGE_4K
)
649 slice_set_user_psize(mm
, MMU_PAGE_4K
);
650 #ifdef CONFIG_SPU_BASE
651 spu_flush_all_slbs(mm
);
654 #endif /* CONFIG_PPC_64K_PAGES */
658 * 1 - normal page fault
659 * -1 - critical hash insertion error
661 int hash_page(unsigned long ea
, unsigned long access
, unsigned long trap
)
665 struct mm_struct
*mm
;
668 int rc
, user_region
= 0, local
= 0;
671 DBG_LOW("hash_page(ea=%016lx, access=%lx, trap=%lx\n",
674 if ((ea
& ~REGION_MASK
) >= PGTABLE_RANGE
) {
675 DBG_LOW(" out of pgtable range !\n");
679 /* Get region & vsid */
680 switch (REGION_ID(ea
)) {
685 DBG_LOW(" user region with no mm !\n");
688 #ifdef CONFIG_PPC_MM_SLICES
689 psize
= get_slice_psize(mm
, ea
);
691 psize
= mm
->context
.user_psize
;
693 ssize
= user_segment_size(ea
);
694 vsid
= get_vsid(mm
->context
.id
, ea
, ssize
);
696 case VMALLOC_REGION_ID
:
698 vsid
= get_kernel_vsid(ea
, mmu_kernel_ssize
);
699 if (ea
< VMALLOC_END
)
700 psize
= mmu_vmalloc_psize
;
702 psize
= mmu_io_psize
;
703 ssize
= mmu_kernel_ssize
;
707 * Send the problem up to do_page_fault
711 DBG_LOW(" mm=%p, mm->pgdir=%p, vsid=%016lx\n", mm
, mm
->pgd
, vsid
);
718 /* Check CPU locality */
719 tmp
= cpumask_of_cpu(smp_processor_id());
720 if (user_region
&& cpus_equal(mm
->cpu_vm_mask
, tmp
))
723 #ifdef CONFIG_HUGETLB_PAGE
724 /* Handle hugepage regions */
725 if (HPAGE_SHIFT
&& psize
== mmu_huge_psize
) {
726 DBG_LOW(" -> huge page !\n");
727 return hash_huge_page(mm
, access
, ea
, vsid
, local
, trap
);
729 #endif /* CONFIG_HUGETLB_PAGE */
731 #ifndef CONFIG_PPC_64K_PAGES
732 /* If we use 4K pages and our psize is not 4K, then we are hitting
733 * a special driver mapping, we need to align the address before
736 if (psize
!= MMU_PAGE_4K
)
737 ea
&= ~((1ul << mmu_psize_defs
[psize
].shift
) - 1);
738 #endif /* CONFIG_PPC_64K_PAGES */
740 /* Get PTE and page size from page tables */
741 ptep
= find_linux_pte(pgdir
, ea
);
742 if (ptep
== NULL
|| !pte_present(*ptep
)) {
743 DBG_LOW(" no PTE !\n");
747 #ifndef CONFIG_PPC_64K_PAGES
748 DBG_LOW(" i-pte: %016lx\n", pte_val(*ptep
));
750 DBG_LOW(" i-pte: %016lx %016lx\n", pte_val(*ptep
),
751 pte_val(*(ptep
+ PTRS_PER_PTE
)));
753 /* Pre-check access permissions (will be re-checked atomically
754 * in __hash_page_XX but this pre-check is a fast path
756 if (access
& ~pte_val(*ptep
)) {
757 DBG_LOW(" no access !\n");
761 /* Do actual hashing */
762 #ifdef CONFIG_PPC_64K_PAGES
763 /* If _PAGE_4K_PFN is set, make sure this is a 4k segment */
764 if (pte_val(*ptep
) & _PAGE_4K_PFN
) {
765 demote_segment_4k(mm
, ea
);
769 /* If this PTE is non-cacheable and we have restrictions on
770 * using non cacheable large pages, then we switch to 4k
772 if (mmu_ci_restrictions
&& psize
== MMU_PAGE_64K
&&
773 (pte_val(*ptep
) & _PAGE_NO_CACHE
)) {
775 demote_segment_4k(mm
, ea
);
777 } else if (ea
< VMALLOC_END
) {
779 * some driver did a non-cacheable mapping
780 * in vmalloc space, so switch vmalloc
783 printk(KERN_ALERT
"Reducing vmalloc segment "
784 "to 4kB pages because of "
785 "non-cacheable mapping\n");
786 psize
= mmu_vmalloc_psize
= MMU_PAGE_4K
;
787 #ifdef CONFIG_SPU_BASE
788 spu_flush_all_slbs(mm
);
793 if (psize
!= get_paca()->context
.user_psize
) {
794 get_paca()->context
.user_psize
=
795 mm
->context
.user_psize
;
796 slb_flush_and_rebolt();
798 } else if (get_paca()->vmalloc_sllp
!=
799 mmu_psize_defs
[mmu_vmalloc_psize
].sllp
) {
800 get_paca()->vmalloc_sllp
=
801 mmu_psize_defs
[mmu_vmalloc_psize
].sllp
;
802 slb_vmalloc_update();
804 #endif /* CONFIG_PPC_64K_PAGES */
806 #ifdef CONFIG_PPC_HAS_HASH_64K
807 if (psize
== MMU_PAGE_64K
)
808 rc
= __hash_page_64K(ea
, access
, vsid
, ptep
, trap
, local
, ssize
);
810 #endif /* CONFIG_PPC_HAS_HASH_64K */
811 rc
= __hash_page_4K(ea
, access
, vsid
, ptep
, trap
, local
, ssize
);
813 #ifndef CONFIG_PPC_64K_PAGES
814 DBG_LOW(" o-pte: %016lx\n", pte_val(*ptep
));
816 DBG_LOW(" o-pte: %016lx %016lx\n", pte_val(*ptep
),
817 pte_val(*(ptep
+ PTRS_PER_PTE
)));
819 DBG_LOW(" -> rc=%d\n", rc
);
822 EXPORT_SYMBOL_GPL(hash_page
);
824 void hash_preload(struct mm_struct
*mm
, unsigned long ea
,
825 unsigned long access
, unsigned long trap
)
835 BUG_ON(REGION_ID(ea
) != USER_REGION_ID
);
837 #ifdef CONFIG_PPC_MM_SLICES
838 /* We only prefault standard pages for now */
839 if (unlikely(get_slice_psize(mm
, ea
) != mm
->context
.user_psize
))
843 DBG_LOW("hash_preload(mm=%p, mm->pgdir=%p, ea=%016lx, access=%lx,"
844 " trap=%lx\n", mm
, mm
->pgd
, ea
, access
, trap
);
846 /* Get Linux PTE if available */
850 ptep
= find_linux_pte(pgdir
, ea
);
854 #ifdef CONFIG_PPC_64K_PAGES
855 /* If either _PAGE_4K_PFN or _PAGE_NO_CACHE is set (and we are on
856 * a 64K kernel), then we don't preload, hash_page() will take
857 * care of it once we actually try to access the page.
858 * That way we don't have to duplicate all of the logic for segment
859 * page size demotion here
861 if (pte_val(*ptep
) & (_PAGE_4K_PFN
| _PAGE_NO_CACHE
))
863 #endif /* CONFIG_PPC_64K_PAGES */
866 ssize
= user_segment_size(ea
);
867 vsid
= get_vsid(mm
->context
.id
, ea
, ssize
);
869 /* Hash doesn't like irqs */
870 local_irq_save(flags
);
872 /* Is that local to this CPU ? */
873 mask
= cpumask_of_cpu(smp_processor_id());
874 if (cpus_equal(mm
->cpu_vm_mask
, mask
))
878 #ifdef CONFIG_PPC_HAS_HASH_64K
879 if (mm
->context
.user_psize
== MMU_PAGE_64K
)
880 __hash_page_64K(ea
, access
, vsid
, ptep
, trap
, local
, ssize
);
882 #endif /* CONFIG_PPC_HAS_HASH_64K */
883 __hash_page_4K(ea
, access
, vsid
, ptep
, trap
, local
, ssize
);
885 local_irq_restore(flags
);
888 void flush_hash_page(unsigned long va
, real_pte_t pte
, int psize
, int ssize
,
891 unsigned long hash
, index
, shift
, hidx
, slot
;
893 DBG_LOW("flush_hash_page(va=%016x)\n", va
);
894 pte_iterate_hashed_subpages(pte
, psize
, va
, index
, shift
) {
895 hash
= hpt_hash(va
, shift
, ssize
);
896 hidx
= __rpte_to_hidx(pte
, index
);
897 if (hidx
& _PTEIDX_SECONDARY
)
899 slot
= (hash
& htab_hash_mask
) * HPTES_PER_GROUP
;
900 slot
+= hidx
& _PTEIDX_GROUP_IX
;
901 DBG_LOW(" sub %d: hash=%x, hidx=%x\n", index
, slot
, hidx
);
902 ppc_md
.hpte_invalidate(slot
, va
, psize
, ssize
, local
);
903 } pte_iterate_hashed_end();
906 void flush_hash_range(unsigned long number
, int local
)
908 if (ppc_md
.flush_hash_range
)
909 ppc_md
.flush_hash_range(number
, local
);
912 struct ppc64_tlb_batch
*batch
=
913 &__get_cpu_var(ppc64_tlb_batch
);
915 for (i
= 0; i
< number
; i
++)
916 flush_hash_page(batch
->vaddr
[i
], batch
->pte
[i
],
917 batch
->psize
, batch
->ssize
, local
);
922 * low_hash_fault is called when we the low level hash code failed
923 * to instert a PTE due to an hypervisor error
925 void low_hash_fault(struct pt_regs
*regs
, unsigned long address
)
927 if (user_mode(regs
)) {
930 info
.si_signo
= SIGBUS
;
932 info
.si_code
= BUS_ADRERR
;
933 info
.si_addr
= (void __user
*)address
;
934 force_sig_info(SIGBUS
, &info
, current
);
937 bad_page_fault(regs
, address
, SIGBUS
);
940 #ifdef CONFIG_DEBUG_PAGEALLOC
941 static void kernel_map_linear_page(unsigned long vaddr
, unsigned long lmi
)
943 unsigned long hash
, hpteg
;
944 unsigned long vsid
= get_kernel_vsid(vaddr
, mmu_kernel_ssize
);
945 unsigned long va
= hpt_va(vaddr
, vsid
, mmu_kernel_ssize
);
946 unsigned long mode
= _PAGE_ACCESSED
| _PAGE_DIRTY
|
947 _PAGE_COHERENT
| PP_RWXX
| HPTE_R_N
;
950 hash
= hpt_hash(va
, PAGE_SHIFT
, mmu_kernel_ssize
);
951 hpteg
= ((hash
& htab_hash_mask
) * HPTES_PER_GROUP
);
953 ret
= ppc_md
.hpte_insert(hpteg
, va
, __pa(vaddr
),
955 mmu_linear_psize
, mmu_kernel_ssize
);
957 spin_lock(&linear_map_hash_lock
);
958 BUG_ON(linear_map_hash_slots
[lmi
] & 0x80);
959 linear_map_hash_slots
[lmi
] = ret
| 0x80;
960 spin_unlock(&linear_map_hash_lock
);
963 static void kernel_unmap_linear_page(unsigned long vaddr
, unsigned long lmi
)
965 unsigned long hash
, hidx
, slot
;
966 unsigned long vsid
= get_kernel_vsid(vaddr
, mmu_kernel_ssize
);
967 unsigned long va
= hpt_va(vaddr
, vsid
, mmu_kernel_ssize
);
969 hash
= hpt_hash(va
, PAGE_SHIFT
, mmu_kernel_ssize
);
970 spin_lock(&linear_map_hash_lock
);
971 BUG_ON(!(linear_map_hash_slots
[lmi
] & 0x80));
972 hidx
= linear_map_hash_slots
[lmi
] & 0x7f;
973 linear_map_hash_slots
[lmi
] = 0;
974 spin_unlock(&linear_map_hash_lock
);
975 if (hidx
& _PTEIDX_SECONDARY
)
977 slot
= (hash
& htab_hash_mask
) * HPTES_PER_GROUP
;
978 slot
+= hidx
& _PTEIDX_GROUP_IX
;
979 ppc_md
.hpte_invalidate(slot
, va
, mmu_linear_psize
, mmu_kernel_ssize
, 0);
982 void kernel_map_pages(struct page
*page
, int numpages
, int enable
)
984 unsigned long flags
, vaddr
, lmi
;
987 local_irq_save(flags
);
988 for (i
= 0; i
< numpages
; i
++, page
++) {
989 vaddr
= (unsigned long)page_address(page
);
990 lmi
= __pa(vaddr
) >> PAGE_SHIFT
;
991 if (lmi
>= linear_map_hash_count
)
994 kernel_map_linear_page(vaddr
, lmi
);
996 kernel_unmap_linear_page(vaddr
, lmi
);
998 local_irq_restore(flags
);
1000 #endif /* CONFIG_DEBUG_PAGEALLOC */