Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
[deliverable/linux.git] / arch / powerpc / mm / hash_utils_64.c
1 /*
2 * PowerPC64 port by Mike Corrigan and Dave Engebretsen
3 * {mikejc|engebret}@us.ibm.com
4 *
5 * Copyright (c) 2000 Mike Corrigan <mikejc@us.ibm.com>
6 *
7 * SMP scalability work:
8 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
9 *
10 * Module name: htab.c
11 *
12 * Description:
13 * PowerPC Hashed Page Table functions
14 *
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.
19 */
20
21 #undef DEBUG
22 #undef DEBUG_LOW
23
24 #include <linux/config.h>
25 #include <linux/spinlock.h>
26 #include <linux/errno.h>
27 #include <linux/sched.h>
28 #include <linux/proc_fs.h>
29 #include <linux/stat.h>
30 #include <linux/sysctl.h>
31 #include <linux/ctype.h>
32 #include <linux/cache.h>
33 #include <linux/init.h>
34 #include <linux/signal.h>
35
36 #include <asm/processor.h>
37 #include <asm/pgtable.h>
38 #include <asm/mmu.h>
39 #include <asm/mmu_context.h>
40 #include <asm/page.h>
41 #include <asm/types.h>
42 #include <asm/system.h>
43 #include <asm/uaccess.h>
44 #include <asm/machdep.h>
45 #include <asm/lmb.h>
46 #include <asm/abs_addr.h>
47 #include <asm/tlbflush.h>
48 #include <asm/io.h>
49 #include <asm/eeh.h>
50 #include <asm/tlb.h>
51 #include <asm/cacheflush.h>
52 #include <asm/cputable.h>
53 #include <asm/abs_addr.h>
54 #include <asm/sections.h>
55
56 #ifdef DEBUG
57 #define DBG(fmt...) udbg_printf(fmt)
58 #else
59 #define DBG(fmt...)
60 #endif
61
62 #ifdef DEBUG_LOW
63 #define DBG_LOW(fmt...) udbg_printf(fmt)
64 #else
65 #define DBG_LOW(fmt...)
66 #endif
67
68 #define KB (1024)
69 #define MB (1024*KB)
70
71 /*
72 * Note: pte --> Linux PTE
73 * HPTE --> PowerPC Hashed Page Table Entry
74 *
75 * Execution context:
76 * htab_initialize is called with the MMU off (of course), but
77 * the kernel has been copied down to zero so it can directly
78 * reference global data. At this point it is very difficult
79 * to print debug info.
80 *
81 */
82
83 #ifdef CONFIG_U3_DART
84 extern unsigned long dart_tablebase;
85 #endif /* CONFIG_U3_DART */
86
87 static unsigned long _SDR1;
88 struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];
89
90 hpte_t *htab_address;
91 unsigned long htab_hash_mask;
92 int mmu_linear_psize = MMU_PAGE_4K;
93 int mmu_virtual_psize = MMU_PAGE_4K;
94 #ifdef CONFIG_HUGETLB_PAGE
95 int mmu_huge_psize = MMU_PAGE_16M;
96 unsigned int HPAGE_SHIFT;
97 #endif
98
99 /* There are definitions of page sizes arrays to be used when none
100 * is provided by the firmware.
101 */
102
103 /* Pre-POWER4 CPUs (4k pages only)
104 */
105 struct mmu_psize_def mmu_psize_defaults_old[] = {
106 [MMU_PAGE_4K] = {
107 .shift = 12,
108 .sllp = 0,
109 .penc = 0,
110 .avpnm = 0,
111 .tlbiel = 0,
112 },
113 };
114
115 /* POWER4, GPUL, POWER5
116 *
117 * Support for 16Mb large pages
118 */
119 struct mmu_psize_def mmu_psize_defaults_gp[] = {
120 [MMU_PAGE_4K] = {
121 .shift = 12,
122 .sllp = 0,
123 .penc = 0,
124 .avpnm = 0,
125 .tlbiel = 1,
126 },
127 [MMU_PAGE_16M] = {
128 .shift = 24,
129 .sllp = SLB_VSID_L,
130 .penc = 0,
131 .avpnm = 0x1UL,
132 .tlbiel = 0,
133 },
134 };
135
136
137 int htab_bolt_mapping(unsigned long vstart, unsigned long vend,
138 unsigned long pstart, unsigned long mode, int psize)
139 {
140 unsigned long vaddr, paddr;
141 unsigned int step, shift;
142 unsigned long tmp_mode;
143 int ret = 0;
144
145 shift = mmu_psize_defs[psize].shift;
146 step = 1 << shift;
147
148 for (vaddr = vstart, paddr = pstart; vaddr < vend;
149 vaddr += step, paddr += step) {
150 unsigned long vpn, hash, hpteg;
151 unsigned long vsid = get_kernel_vsid(vaddr);
152 unsigned long va = (vsid << 28) | (vaddr & 0x0fffffff);
153
154 vpn = va >> shift;
155 tmp_mode = mode;
156
157 /* Make non-kernel text non-executable */
158 if (!in_kernel_text(vaddr))
159 tmp_mode = mode | HPTE_R_N;
160
161 hash = hpt_hash(va, shift);
162 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
163
164 /* The crap below can be cleaned once ppd_md.probe() can
165 * set up the hash callbacks, thus we can just used the
166 * normal insert callback here.
167 */
168 #ifdef CONFIG_PPC_ISERIES
169 if (_machine == PLATFORM_ISERIES_LPAR)
170 ret = iSeries_hpte_insert(hpteg, va,
171 virt_to_abs(paddr),
172 tmp_mode,
173 HPTE_V_BOLTED,
174 psize);
175 else
176 #endif
177 #ifdef CONFIG_PPC_PSERIES
178 if (_machine & PLATFORM_LPAR)
179 ret = pSeries_lpar_hpte_insert(hpteg, va,
180 virt_to_abs(paddr),
181 tmp_mode,
182 HPTE_V_BOLTED,
183 psize);
184 else
185 #endif
186 #ifdef CONFIG_PPC_MULTIPLATFORM
187 ret = native_hpte_insert(hpteg, va,
188 virt_to_abs(paddr),
189 tmp_mode, HPTE_V_BOLTED,
190 psize);
191 #endif
192 if (ret < 0)
193 break;
194 }
195 return ret < 0 ? ret : 0;
196 }
197
198 static int __init htab_dt_scan_page_sizes(unsigned long node,
199 const char *uname, int depth,
200 void *data)
201 {
202 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
203 u32 *prop;
204 unsigned long size = 0;
205
206 /* We are scanning "cpu" nodes only */
207 if (type == NULL || strcmp(type, "cpu") != 0)
208 return 0;
209
210 prop = (u32 *)of_get_flat_dt_prop(node,
211 "ibm,segment-page-sizes", &size);
212 if (prop != NULL) {
213 DBG("Page sizes from device-tree:\n");
214 size /= 4;
215 cur_cpu_spec->cpu_features &= ~(CPU_FTR_16M_PAGE);
216 while(size > 0) {
217 unsigned int shift = prop[0];
218 unsigned int slbenc = prop[1];
219 unsigned int lpnum = prop[2];
220 unsigned int lpenc = 0;
221 struct mmu_psize_def *def;
222 int idx = -1;
223
224 size -= 3; prop += 3;
225 while(size > 0 && lpnum) {
226 if (prop[0] == shift)
227 lpenc = prop[1];
228 prop += 2; size -= 2;
229 lpnum--;
230 }
231 switch(shift) {
232 case 0xc:
233 idx = MMU_PAGE_4K;
234 break;
235 case 0x10:
236 idx = MMU_PAGE_64K;
237 break;
238 case 0x14:
239 idx = MMU_PAGE_1M;
240 break;
241 case 0x18:
242 idx = MMU_PAGE_16M;
243 cur_cpu_spec->cpu_features |= CPU_FTR_16M_PAGE;
244 break;
245 case 0x22:
246 idx = MMU_PAGE_16G;
247 break;
248 }
249 if (idx < 0)
250 continue;
251 def = &mmu_psize_defs[idx];
252 def->shift = shift;
253 if (shift <= 23)
254 def->avpnm = 0;
255 else
256 def->avpnm = (1 << (shift - 23)) - 1;
257 def->sllp = slbenc;
258 def->penc = lpenc;
259 /* We don't know for sure what's up with tlbiel, so
260 * for now we only set it for 4K and 64K pages
261 */
262 if (idx == MMU_PAGE_4K || idx == MMU_PAGE_64K)
263 def->tlbiel = 1;
264 else
265 def->tlbiel = 0;
266
267 DBG(" %d: shift=%02x, sllp=%04x, avpnm=%08x, "
268 "tlbiel=%d, penc=%d\n",
269 idx, shift, def->sllp, def->avpnm, def->tlbiel,
270 def->penc);
271 }
272 return 1;
273 }
274 return 0;
275 }
276
277
278 static void __init htab_init_page_sizes(void)
279 {
280 int rc;
281
282 /* Default to 4K pages only */
283 memcpy(mmu_psize_defs, mmu_psize_defaults_old,
284 sizeof(mmu_psize_defaults_old));
285
286 /*
287 * Try to find the available page sizes in the device-tree
288 */
289 rc = of_scan_flat_dt(htab_dt_scan_page_sizes, NULL);
290 if (rc != 0) /* Found */
291 goto found;
292
293 /*
294 * Not in the device-tree, let's fallback on known size
295 * list for 16M capable GP & GR
296 */
297 if ((_machine != PLATFORM_ISERIES_LPAR) &&
298 cpu_has_feature(CPU_FTR_16M_PAGE))
299 memcpy(mmu_psize_defs, mmu_psize_defaults_gp,
300 sizeof(mmu_psize_defaults_gp));
301 found:
302 /*
303 * Pick a size for the linear mapping. Currently, we only support
304 * 16M, 1M and 4K which is the default
305 */
306 if (mmu_psize_defs[MMU_PAGE_16M].shift)
307 mmu_linear_psize = MMU_PAGE_16M;
308 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
309 mmu_linear_psize = MMU_PAGE_1M;
310
311 /*
312 * Pick a size for the ordinary pages. Default is 4K, we support
313 * 64K if cache inhibited large pages are supported by the
314 * processor
315 */
316 #ifdef CONFIG_PPC_64K_PAGES
317 if (mmu_psize_defs[MMU_PAGE_64K].shift &&
318 cpu_has_feature(CPU_FTR_CI_LARGE_PAGE))
319 mmu_virtual_psize = MMU_PAGE_64K;
320 #endif
321
322 printk(KERN_INFO "Page orders: linear mapping = %d, others = %d\n",
323 mmu_psize_defs[mmu_linear_psize].shift,
324 mmu_psize_defs[mmu_virtual_psize].shift);
325
326 #ifdef CONFIG_HUGETLB_PAGE
327 /* Init large page size. Currently, we pick 16M or 1M depending
328 * on what is available
329 */
330 if (mmu_psize_defs[MMU_PAGE_16M].shift)
331 mmu_huge_psize = MMU_PAGE_16M;
332 /* With 4k/4level pagetables, we can't (for now) cope with a
333 * huge page size < PMD_SIZE */
334 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
335 mmu_huge_psize = MMU_PAGE_1M;
336
337 /* Calculate HPAGE_SHIFT and sanity check it */
338 if (mmu_psize_defs[mmu_huge_psize].shift > MIN_HUGEPTE_SHIFT &&
339 mmu_psize_defs[mmu_huge_psize].shift < SID_SHIFT)
340 HPAGE_SHIFT = mmu_psize_defs[mmu_huge_psize].shift;
341 else
342 HPAGE_SHIFT = 0; /* No huge pages dude ! */
343 #endif /* CONFIG_HUGETLB_PAGE */
344 }
345
346 static int __init htab_dt_scan_pftsize(unsigned long node,
347 const char *uname, int depth,
348 void *data)
349 {
350 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
351 u32 *prop;
352
353 /* We are scanning "cpu" nodes only */
354 if (type == NULL || strcmp(type, "cpu") != 0)
355 return 0;
356
357 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,pft-size", NULL);
358 if (prop != NULL) {
359 /* pft_size[0] is the NUMA CEC cookie */
360 ppc64_pft_size = prop[1];
361 return 1;
362 }
363 return 0;
364 }
365
366 static unsigned long __init htab_get_table_size(void)
367 {
368 unsigned long mem_size, rnd_mem_size, pteg_count;
369
370 /* If hash size isn't already provided by the platform, we try to
371 * retrieve it from the device-tree. If it's not there neither, we
372 * calculate it now based on the total RAM size
373 */
374 if (ppc64_pft_size == 0)
375 of_scan_flat_dt(htab_dt_scan_pftsize, NULL);
376 if (ppc64_pft_size)
377 return 1UL << ppc64_pft_size;
378
379 /* round mem_size up to next power of 2 */
380 mem_size = lmb_phys_mem_size();
381 rnd_mem_size = 1UL << __ilog2(mem_size);
382 if (rnd_mem_size < mem_size)
383 rnd_mem_size <<= 1;
384
385 /* # pages / 2 */
386 pteg_count = max(rnd_mem_size >> (12 + 1), 1UL << 11);
387
388 return pteg_count << 7;
389 }
390
391 #ifdef CONFIG_MEMORY_HOTPLUG
392 void create_section_mapping(unsigned long start, unsigned long end)
393 {
394 BUG_ON(htab_bolt_mapping(start, end, start,
395 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX,
396 mmu_linear_psize));
397 }
398 #endif /* CONFIG_MEMORY_HOTPLUG */
399
400 void __init htab_initialize(void)
401 {
402 unsigned long table, htab_size_bytes;
403 unsigned long pteg_count;
404 unsigned long mode_rw;
405 unsigned long base = 0, size = 0;
406 int i;
407
408 extern unsigned long tce_alloc_start, tce_alloc_end;
409
410 DBG(" -> htab_initialize()\n");
411
412 /* Initialize page sizes */
413 htab_init_page_sizes();
414
415 /*
416 * Calculate the required size of the htab. We want the number of
417 * PTEGs to equal one half the number of real pages.
418 */
419 htab_size_bytes = htab_get_table_size();
420 pteg_count = htab_size_bytes >> 7;
421
422 htab_hash_mask = pteg_count - 1;
423
424 if (platform_is_lpar()) {
425 /* Using a hypervisor which owns the htab */
426 htab_address = NULL;
427 _SDR1 = 0;
428 } else {
429 /* Find storage for the HPT. Must be contiguous in
430 * the absolute address space.
431 */
432 table = lmb_alloc(htab_size_bytes, htab_size_bytes);
433
434 DBG("Hash table allocated at %lx, size: %lx\n", table,
435 htab_size_bytes);
436
437 htab_address = abs_to_virt(table);
438
439 /* htab absolute addr + encoded htabsize */
440 _SDR1 = table + __ilog2(pteg_count) - 11;
441
442 /* Initialize the HPT with no entries */
443 memset((void *)table, 0, htab_size_bytes);
444
445 /* Set SDR1 */
446 mtspr(SPRN_SDR1, _SDR1);
447 }
448
449 mode_rw = _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX;
450
451 /* On U3 based machines, we need to reserve the DART area and
452 * _NOT_ map it to avoid cache paradoxes as it's remapped non
453 * cacheable later on
454 */
455
456 /* create bolted the linear mapping in the hash table */
457 for (i=0; i < lmb.memory.cnt; i++) {
458 base = (unsigned long)__va(lmb.memory.region[i].base);
459 size = lmb.memory.region[i].size;
460
461 DBG("creating mapping for region: %lx : %lx\n", base, size);
462
463 #ifdef CONFIG_U3_DART
464 /* Do not map the DART space. Fortunately, it will be aligned
465 * in such a way that it will not cross two lmb regions and
466 * will fit within a single 16Mb page.
467 * The DART space is assumed to be a full 16Mb region even if
468 * we only use 2Mb of that space. We will use more of it later
469 * for AGP GART. We have to use a full 16Mb large page.
470 */
471 DBG("DART base: %lx\n", dart_tablebase);
472
473 if (dart_tablebase != 0 && dart_tablebase >= base
474 && dart_tablebase < (base + size)) {
475 if (base != dart_tablebase)
476 BUG_ON(htab_bolt_mapping(base, dart_tablebase,
477 base, mode_rw,
478 mmu_linear_psize));
479 if ((base + size) > (dart_tablebase + 16*MB))
480 BUG_ON(htab_bolt_mapping(dart_tablebase+16*MB,
481 base + size,
482 dart_tablebase+16*MB,
483 mode_rw,
484 mmu_linear_psize));
485 continue;
486 }
487 #endif /* CONFIG_U3_DART */
488 BUG_ON(htab_bolt_mapping(base, base + size, base,
489 mode_rw, mmu_linear_psize));
490 }
491
492 /*
493 * If we have a memory_limit and we've allocated TCEs then we need to
494 * explicitly map the TCE area at the top of RAM. We also cope with the
495 * case that the TCEs start below memory_limit.
496 * tce_alloc_start/end are 16MB aligned so the mapping should work
497 * for either 4K or 16MB pages.
498 */
499 if (tce_alloc_start) {
500 tce_alloc_start = (unsigned long)__va(tce_alloc_start);
501 tce_alloc_end = (unsigned long)__va(tce_alloc_end);
502
503 if (base + size >= tce_alloc_start)
504 tce_alloc_start = base + size + 1;
505
506 BUG_ON(htab_bolt_mapping(tce_alloc_start, tce_alloc_end,
507 tce_alloc_start, mode_rw,
508 mmu_linear_psize));
509 }
510
511 DBG(" <- htab_initialize()\n");
512 }
513 #undef KB
514 #undef MB
515
516 void htab_initialize_secondary(void)
517 {
518 if (!platform_is_lpar())
519 mtspr(SPRN_SDR1, _SDR1);
520 }
521
522 /*
523 * Called by asm hashtable.S for doing lazy icache flush
524 */
525 unsigned int hash_page_do_lazy_icache(unsigned int pp, pte_t pte, int trap)
526 {
527 struct page *page;
528
529 if (!pfn_valid(pte_pfn(pte)))
530 return pp;
531
532 page = pte_page(pte);
533
534 /* page is dirty */
535 if (!test_bit(PG_arch_1, &page->flags) && !PageReserved(page)) {
536 if (trap == 0x400) {
537 __flush_dcache_icache(page_address(page));
538 set_bit(PG_arch_1, &page->flags);
539 } else
540 pp |= HPTE_R_N;
541 }
542 return pp;
543 }
544
545 /* Result code is:
546 * 0 - handled
547 * 1 - normal page fault
548 * -1 - critical hash insertion error
549 */
550 int hash_page(unsigned long ea, unsigned long access, unsigned long trap)
551 {
552 void *pgdir;
553 unsigned long vsid;
554 struct mm_struct *mm;
555 pte_t *ptep;
556 cpumask_t tmp;
557 int rc, user_region = 0, local = 0;
558
559 DBG_LOW("hash_page(ea=%016lx, access=%lx, trap=%lx\n",
560 ea, access, trap);
561
562 if ((ea & ~REGION_MASK) >= PGTABLE_RANGE) {
563 DBG_LOW(" out of pgtable range !\n");
564 return 1;
565 }
566
567 /* Get region & vsid */
568 switch (REGION_ID(ea)) {
569 case USER_REGION_ID:
570 user_region = 1;
571 mm = current->mm;
572 if (! mm) {
573 DBG_LOW(" user region with no mm !\n");
574 return 1;
575 }
576 vsid = get_vsid(mm->context.id, ea);
577 break;
578 case VMALLOC_REGION_ID:
579 mm = &init_mm;
580 vsid = get_kernel_vsid(ea);
581 break;
582 default:
583 /* Not a valid range
584 * Send the problem up to do_page_fault
585 */
586 return 1;
587 }
588 DBG_LOW(" mm=%p, mm->pgdir=%p, vsid=%016lx\n", mm, mm->pgd, vsid);
589
590 /* Get pgdir */
591 pgdir = mm->pgd;
592 if (pgdir == NULL)
593 return 1;
594
595 /* Check CPU locality */
596 tmp = cpumask_of_cpu(smp_processor_id());
597 if (user_region && cpus_equal(mm->cpu_vm_mask, tmp))
598 local = 1;
599
600 /* Handle hugepage regions */
601 if (unlikely(in_hugepage_area(mm->context, ea))) {
602 DBG_LOW(" -> huge page !\n");
603 return hash_huge_page(mm, access, ea, vsid, local, trap);
604 }
605
606 /* Get PTE and page size from page tables */
607 ptep = find_linux_pte(pgdir, ea);
608 if (ptep == NULL || !pte_present(*ptep)) {
609 DBG_LOW(" no PTE !\n");
610 return 1;
611 }
612
613 #ifndef CONFIG_PPC_64K_PAGES
614 DBG_LOW(" i-pte: %016lx\n", pte_val(*ptep));
615 #else
616 DBG_LOW(" i-pte: %016lx %016lx\n", pte_val(*ptep),
617 pte_val(*(ptep + PTRS_PER_PTE)));
618 #endif
619 /* Pre-check access permissions (will be re-checked atomically
620 * in __hash_page_XX but this pre-check is a fast path
621 */
622 if (access & ~pte_val(*ptep)) {
623 DBG_LOW(" no access !\n");
624 return 1;
625 }
626
627 /* Do actual hashing */
628 #ifndef CONFIG_PPC_64K_PAGES
629 rc = __hash_page_4K(ea, access, vsid, ptep, trap, local);
630 #else
631 if (mmu_virtual_psize == MMU_PAGE_64K)
632 rc = __hash_page_64K(ea, access, vsid, ptep, trap, local);
633 else
634 rc = __hash_page_4K(ea, access, vsid, ptep, trap, local);
635 #endif /* CONFIG_PPC_64K_PAGES */
636
637 #ifndef CONFIG_PPC_64K_PAGES
638 DBG_LOW(" o-pte: %016lx\n", pte_val(*ptep));
639 #else
640 DBG_LOW(" o-pte: %016lx %016lx\n", pte_val(*ptep),
641 pte_val(*(ptep + PTRS_PER_PTE)));
642 #endif
643 DBG_LOW(" -> rc=%d\n", rc);
644 return rc;
645 }
646 EXPORT_SYMBOL_GPL(hash_page);
647
648 void hash_preload(struct mm_struct *mm, unsigned long ea,
649 unsigned long access, unsigned long trap)
650 {
651 unsigned long vsid;
652 void *pgdir;
653 pte_t *ptep;
654 cpumask_t mask;
655 unsigned long flags;
656 int local = 0;
657
658 /* We don't want huge pages prefaulted for now
659 */
660 if (unlikely(in_hugepage_area(mm->context, ea)))
661 return;
662
663 DBG_LOW("hash_preload(mm=%p, mm->pgdir=%p, ea=%016lx, access=%lx,"
664 " trap=%lx\n", mm, mm->pgd, ea, access, trap);
665
666 /* Get PTE, VSID, access mask */
667 pgdir = mm->pgd;
668 if (pgdir == NULL)
669 return;
670 ptep = find_linux_pte(pgdir, ea);
671 if (!ptep)
672 return;
673 vsid = get_vsid(mm->context.id, ea);
674
675 /* Hash it in */
676 local_irq_save(flags);
677 mask = cpumask_of_cpu(smp_processor_id());
678 if (cpus_equal(mm->cpu_vm_mask, mask))
679 local = 1;
680 #ifndef CONFIG_PPC_64K_PAGES
681 __hash_page_4K(ea, access, vsid, ptep, trap, local);
682 #else
683 if (mmu_virtual_psize == MMU_PAGE_64K)
684 __hash_page_64K(ea, access, vsid, ptep, trap, local);
685 else
686 __hash_page_4K(ea, access, vsid, ptep, trap, local);
687 #endif /* CONFIG_PPC_64K_PAGES */
688 local_irq_restore(flags);
689 }
690
691 void flush_hash_page(unsigned long va, real_pte_t pte, int psize, int local)
692 {
693 unsigned long hash, index, shift, hidx, slot;
694
695 DBG_LOW("flush_hash_page(va=%016x)\n", va);
696 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
697 hash = hpt_hash(va, shift);
698 hidx = __rpte_to_hidx(pte, index);
699 if (hidx & _PTEIDX_SECONDARY)
700 hash = ~hash;
701 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
702 slot += hidx & _PTEIDX_GROUP_IX;
703 DBG_LOW(" sub %d: hash=%x, hidx=%x\n", index, slot, hidx);
704 ppc_md.hpte_invalidate(slot, va, psize, local);
705 } pte_iterate_hashed_end();
706 }
707
708 void flush_hash_range(unsigned long number, int local)
709 {
710 if (ppc_md.flush_hash_range)
711 ppc_md.flush_hash_range(number, local);
712 else {
713 int i;
714 struct ppc64_tlb_batch *batch =
715 &__get_cpu_var(ppc64_tlb_batch);
716
717 for (i = 0; i < number; i++)
718 flush_hash_page(batch->vaddr[i], batch->pte[i],
719 batch->psize, local);
720 }
721 }
722
723 static inline void make_bl(unsigned int *insn_addr, void *func)
724 {
725 unsigned long funcp = *((unsigned long *)func);
726 int offset = funcp - (unsigned long)insn_addr;
727
728 *insn_addr = (unsigned int)(0x48000001 | (offset & 0x03fffffc));
729 flush_icache_range((unsigned long)insn_addr, 4+
730 (unsigned long)insn_addr);
731 }
732
733 /*
734 * low_hash_fault is called when we the low level hash code failed
735 * to instert a PTE due to an hypervisor error
736 */
737 void low_hash_fault(struct pt_regs *regs, unsigned long address)
738 {
739 if (user_mode(regs)) {
740 siginfo_t info;
741
742 info.si_signo = SIGBUS;
743 info.si_errno = 0;
744 info.si_code = BUS_ADRERR;
745 info.si_addr = (void __user *)address;
746 force_sig_info(SIGBUS, &info, current);
747 return;
748 }
749 bad_page_fault(regs, address, SIGBUS);
750 }
751
752 void __init htab_finish_init(void)
753 {
754 extern unsigned int *htab_call_hpte_insert1;
755 extern unsigned int *htab_call_hpte_insert2;
756 extern unsigned int *htab_call_hpte_remove;
757 extern unsigned int *htab_call_hpte_updatepp;
758
759 #ifdef CONFIG_PPC_64K_PAGES
760 extern unsigned int *ht64_call_hpte_insert1;
761 extern unsigned int *ht64_call_hpte_insert2;
762 extern unsigned int *ht64_call_hpte_remove;
763 extern unsigned int *ht64_call_hpte_updatepp;
764
765 make_bl(ht64_call_hpte_insert1, ppc_md.hpte_insert);
766 make_bl(ht64_call_hpte_insert2, ppc_md.hpte_insert);
767 make_bl(ht64_call_hpte_remove, ppc_md.hpte_remove);
768 make_bl(ht64_call_hpte_updatepp, ppc_md.hpte_updatepp);
769 #endif /* CONFIG_PPC_64K_PAGES */
770
771 make_bl(htab_call_hpte_insert1, ppc_md.hpte_insert);
772 make_bl(htab_call_hpte_insert2, ppc_md.hpte_insert);
773 make_bl(htab_call_hpte_remove, ppc_md.hpte_remove);
774 make_bl(htab_call_hpte_updatepp, ppc_md.hpte_updatepp);
775 }
This page took 0.081514 seconds and 6 git commands to generate.