blob: d525f2eba3138ab28e13596363afe2da9261961a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110022#undef DEBUG_LOW
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/processor.h>
36#include <asm/pgtable.h>
37#include <asm/mmu.h>
38#include <asm/mmu_context.h>
39#include <asm/page.h>
40#include <asm/types.h>
41#include <asm/system.h>
42#include <asm/uaccess.h>
43#include <asm/machdep.h>
44#include <asm/lmb.h>
45#include <asm/abs_addr.h>
46#include <asm/tlbflush.h>
47#include <asm/io.h>
48#include <asm/eeh.h>
49#include <asm/tlb.h>
50#include <asm/cacheflush.h>
51#include <asm/cputable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/sections.h>
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100053#include <asm/spu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#ifdef DEBUG
56#define DBG(fmt...) udbg_printf(fmt)
57#else
58#define DBG(fmt...)
59#endif
60
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110061#ifdef DEBUG_LOW
62#define DBG_LOW(fmt...) udbg_printf(fmt)
63#else
64#define DBG_LOW(fmt...)
65#endif
66
67#define KB (1024)
68#define MB (1024*KB)
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * Note: pte --> Linux PTE
72 * HPTE --> PowerPC Hashed Page Table Entry
73 *
74 * Execution context:
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.
79 *
80 */
81
82#ifdef CONFIG_U3_DART
83extern unsigned long dart_tablebase;
84#endif /* CONFIG_U3_DART */
85
Paul Mackerras799d6042005-11-10 13:37:51 +110086static unsigned long _SDR1;
87struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];
88
David Gibson8e561e72007-06-13 14:52:56 +100089struct hash_pte *htab_address;
Michael Ellerman337a7122006-02-21 17:22:55 +110090unsigned long htab_size_bytes;
David Gibson96e28442005-07-13 01:11:42 -070091unsigned long htab_hash_mask;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110092int mmu_linear_psize = MMU_PAGE_4K;
93int mmu_virtual_psize = MMU_PAGE_4K;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +100094int mmu_vmalloc_psize = MMU_PAGE_4K;
95int mmu_io_psize = MMU_PAGE_4K;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110096#ifdef CONFIG_HUGETLB_PAGE
97int mmu_huge_psize = MMU_PAGE_16M;
98unsigned int HPAGE_SHIFT;
99#endif
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000100#ifdef CONFIG_PPC_64K_PAGES
101int mmu_ci_restrictions;
102#endif
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000103#ifdef CONFIG_DEBUG_PAGEALLOC
104static u8 *linear_map_hash_slots;
105static unsigned long linear_map_hash_count;
Michael Ellermaned166692007-04-18 11:50:09 +1000106static DEFINE_SPINLOCK(linear_map_hash_lock);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000107#endif /* CONFIG_DEBUG_PAGEALLOC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100109/* There are definitions of page sizes arrays to be used when none
110 * is provided by the firmware.
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100113/* Pre-POWER4 CPUs (4k pages only)
114 */
115struct mmu_psize_def mmu_psize_defaults_old[] = {
116 [MMU_PAGE_4K] = {
117 .shift = 12,
118 .sllp = 0,
119 .penc = 0,
120 .avpnm = 0,
121 .tlbiel = 0,
122 },
123};
124
125/* POWER4, GPUL, POWER5
126 *
127 * Support for 16Mb large pages
128 */
129struct mmu_psize_def mmu_psize_defaults_gp[] = {
130 [MMU_PAGE_4K] = {
131 .shift = 12,
132 .sllp = 0,
133 .penc = 0,
134 .avpnm = 0,
135 .tlbiel = 1,
136 },
137 [MMU_PAGE_16M] = {
138 .shift = 24,
139 .sllp = SLB_VSID_L,
140 .penc = 0,
141 .avpnm = 0x1UL,
142 .tlbiel = 0,
143 },
144};
145
146
147int htab_bolt_mapping(unsigned long vstart, unsigned long vend,
148 unsigned long pstart, unsigned long mode, int psize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100150 unsigned long vaddr, paddr;
151 unsigned int step, shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long tmp_mode;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100153 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100155 shift = mmu_psize_defs[psize].shift;
156 step = 1 << shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100158 for (vaddr = vstart, paddr = pstart; vaddr < vend;
159 vaddr += step, paddr += step) {
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000160 unsigned long hash, hpteg;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100161 unsigned long vsid = get_kernel_vsid(vaddr);
162 unsigned long va = (vsid << 28) | (vaddr & 0x0fffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 tmp_mode = mode;
165
166 /* Make non-kernel text non-executable */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100167 if (!in_kernel_text(vaddr))
168 tmp_mode = mode | HPTE_R_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100170 hash = hpt_hash(va, shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
172
Michael Ellermanc30a4df2006-06-23 18:16:39 +1000173 DBG("htab_bolt_mapping: calling %p\n", ppc_md.hpte_insert);
174
175 BUG_ON(!ppc_md.hpte_insert);
176 ret = ppc_md.hpte_insert(hpteg, va, paddr,
177 tmp_mode, HPTE_V_BOLTED, psize);
178
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100179 if (ret < 0)
180 break;
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000181#ifdef CONFIG_DEBUG_PAGEALLOC
182 if ((paddr >> PAGE_SHIFT) < linear_map_hash_count)
183 linear_map_hash_slots[paddr >> PAGE_SHIFT] = ret | 0x80;
184#endif /* CONFIG_DEBUG_PAGEALLOC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100186 return ret < 0 ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100189static int __init htab_dt_scan_page_sizes(unsigned long node,
190 const char *uname, int depth,
191 void *data)
192{
193 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
194 u32 *prop;
195 unsigned long size = 0;
196
197 /* We are scanning "cpu" nodes only */
198 if (type == NULL || strcmp(type, "cpu") != 0)
199 return 0;
200
201 prop = (u32 *)of_get_flat_dt_prop(node,
202 "ibm,segment-page-sizes", &size);
203 if (prop != NULL) {
204 DBG("Page sizes from device-tree:\n");
205 size /= 4;
206 cur_cpu_spec->cpu_features &= ~(CPU_FTR_16M_PAGE);
207 while(size > 0) {
208 unsigned int shift = prop[0];
209 unsigned int slbenc = prop[1];
210 unsigned int lpnum = prop[2];
211 unsigned int lpenc = 0;
212 struct mmu_psize_def *def;
213 int idx = -1;
214
215 size -= 3; prop += 3;
216 while(size > 0 && lpnum) {
217 if (prop[0] == shift)
218 lpenc = prop[1];
219 prop += 2; size -= 2;
220 lpnum--;
221 }
222 switch(shift) {
223 case 0xc:
224 idx = MMU_PAGE_4K;
225 break;
226 case 0x10:
227 idx = MMU_PAGE_64K;
228 break;
229 case 0x14:
230 idx = MMU_PAGE_1M;
231 break;
232 case 0x18:
233 idx = MMU_PAGE_16M;
234 cur_cpu_spec->cpu_features |= CPU_FTR_16M_PAGE;
235 break;
236 case 0x22:
237 idx = MMU_PAGE_16G;
238 break;
239 }
240 if (idx < 0)
241 continue;
242 def = &mmu_psize_defs[idx];
243 def->shift = shift;
244 if (shift <= 23)
245 def->avpnm = 0;
246 else
247 def->avpnm = (1 << (shift - 23)) - 1;
248 def->sllp = slbenc;
249 def->penc = lpenc;
250 /* We don't know for sure what's up with tlbiel, so
251 * for now we only set it for 4K and 64K pages
252 */
253 if (idx == MMU_PAGE_4K || idx == MMU_PAGE_64K)
254 def->tlbiel = 1;
255 else
256 def->tlbiel = 0;
257
258 DBG(" %d: shift=%02x, sllp=%04x, avpnm=%08x, "
259 "tlbiel=%d, penc=%d\n",
260 idx, shift, def->sllp, def->avpnm, def->tlbiel,
261 def->penc);
262 }
263 return 1;
264 }
265 return 0;
266}
267
268
269static void __init htab_init_page_sizes(void)
270{
271 int rc;
272
273 /* Default to 4K pages only */
274 memcpy(mmu_psize_defs, mmu_psize_defaults_old,
275 sizeof(mmu_psize_defaults_old));
276
277 /*
278 * Try to find the available page sizes in the device-tree
279 */
280 rc = of_scan_flat_dt(htab_dt_scan_page_sizes, NULL);
281 if (rc != 0) /* Found */
282 goto found;
283
284 /*
285 * Not in the device-tree, let's fallback on known size
286 * list for 16M capable GP & GR
287 */
Stephen Rothwell04704662006-11-30 11:46:22 +1100288 if (cpu_has_feature(CPU_FTR_16M_PAGE))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100289 memcpy(mmu_psize_defs, mmu_psize_defaults_gp,
290 sizeof(mmu_psize_defaults_gp));
291 found:
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000292#ifndef CONFIG_DEBUG_PAGEALLOC
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100293 /*
294 * Pick a size for the linear mapping. Currently, we only support
295 * 16M, 1M and 4K which is the default
296 */
297 if (mmu_psize_defs[MMU_PAGE_16M].shift)
298 mmu_linear_psize = MMU_PAGE_16M;
299 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
300 mmu_linear_psize = MMU_PAGE_1M;
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000301#endif /* CONFIG_DEBUG_PAGEALLOC */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100302
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000303#ifdef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100304 /*
305 * Pick a size for the ordinary pages. Default is 4K, we support
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000306 * 64K for user mappings and vmalloc if supported by the processor.
307 * We only use 64k for ioremap if the processor
308 * (and firmware) support cache-inhibited large pages.
309 * If not, we use 4k and set mmu_ci_restrictions so that
310 * hash_page knows to switch processes that use cache-inhibited
311 * mappings to 4k pages.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100312 */
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000313 if (mmu_psize_defs[MMU_PAGE_64K].shift) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100314 mmu_virtual_psize = MMU_PAGE_64K;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000315 mmu_vmalloc_psize = MMU_PAGE_64K;
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000316 if (mmu_linear_psize == MMU_PAGE_4K)
317 mmu_linear_psize = MMU_PAGE_64K;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000318 if (cpu_has_feature(CPU_FTR_CI_LARGE_PAGE))
319 mmu_io_psize = MMU_PAGE_64K;
320 else
321 mmu_ci_restrictions = 1;
322 }
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000323#endif /* CONFIG_PPC_64K_PAGES */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100324
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000325 printk(KERN_DEBUG "Page orders: linear mapping = %d, "
326 "virtual = %d, io = %d\n",
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100327 mmu_psize_defs[mmu_linear_psize].shift,
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000328 mmu_psize_defs[mmu_virtual_psize].shift,
329 mmu_psize_defs[mmu_io_psize].shift);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100330
331#ifdef CONFIG_HUGETLB_PAGE
332 /* Init large page size. Currently, we pick 16M or 1M depending
333 * on what is available
334 */
335 if (mmu_psize_defs[MMU_PAGE_16M].shift)
336 mmu_huge_psize = MMU_PAGE_16M;
David Gibson7d24f0b2005-11-07 00:57:52 -0800337 /* With 4k/4level pagetables, we can't (for now) cope with a
338 * huge page size < PMD_SIZE */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100339 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
340 mmu_huge_psize = MMU_PAGE_1M;
341
342 /* Calculate HPAGE_SHIFT and sanity check it */
David Gibson7d24f0b2005-11-07 00:57:52 -0800343 if (mmu_psize_defs[mmu_huge_psize].shift > MIN_HUGEPTE_SHIFT &&
344 mmu_psize_defs[mmu_huge_psize].shift < SID_SHIFT)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100345 HPAGE_SHIFT = mmu_psize_defs[mmu_huge_psize].shift;
346 else
347 HPAGE_SHIFT = 0; /* No huge pages dude ! */
348#endif /* CONFIG_HUGETLB_PAGE */
349}
350
351static int __init htab_dt_scan_pftsize(unsigned long node,
352 const char *uname, int depth,
353 void *data)
354{
355 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
356 u32 *prop;
357
358 /* We are scanning "cpu" nodes only */
359 if (type == NULL || strcmp(type, "cpu") != 0)
360 return 0;
361
362 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,pft-size", NULL);
363 if (prop != NULL) {
364 /* pft_size[0] is the NUMA CEC cookie */
365 ppc64_pft_size = prop[1];
366 return 1;
367 }
368 return 0;
369}
370
371static unsigned long __init htab_get_table_size(void)
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000372{
Paul Mackerras799d6042005-11-10 13:37:51 +1100373 unsigned long mem_size, rnd_mem_size, pteg_count;
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000374
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100375 /* If hash size isn't already provided by the platform, we try to
Adrian Bunk943ffb52006-01-10 00:10:13 +0100376 * retrieve it from the device-tree. If it's not there neither, we
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100377 * calculate it now based on the total RAM size
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000378 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100379 if (ppc64_pft_size == 0)
380 of_scan_flat_dt(htab_dt_scan_pftsize, NULL);
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000381 if (ppc64_pft_size)
382 return 1UL << ppc64_pft_size;
383
384 /* round mem_size up to next power of 2 */
Paul Mackerras799d6042005-11-10 13:37:51 +1100385 mem_size = lmb_phys_mem_size();
386 rnd_mem_size = 1UL << __ilog2(mem_size);
387 if (rnd_mem_size < mem_size)
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000388 rnd_mem_size <<= 1;
389
390 /* # pages / 2 */
391 pteg_count = max(rnd_mem_size >> (12 + 1), 1UL << 11);
392
393 return pteg_count << 7;
394}
395
Mike Kravetz54b79242005-11-07 16:25:48 -0800396#ifdef CONFIG_MEMORY_HOTPLUG
397void create_section_mapping(unsigned long start, unsigned long end)
398{
Michael Ellermancaf80e52006-03-21 20:45:51 +1100399 BUG_ON(htab_bolt_mapping(start, end, __pa(start),
Mike Kravetz54b79242005-11-07 16:25:48 -0800400 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX,
401 mmu_linear_psize));
402}
403#endif /* CONFIG_MEMORY_HOTPLUG */
404
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000405static inline void make_bl(unsigned int *insn_addr, void *func)
406{
407 unsigned long funcp = *((unsigned long *)func);
408 int offset = funcp - (unsigned long)insn_addr;
409
410 *insn_addr = (unsigned int)(0x48000001 | (offset & 0x03fffffc));
411 flush_icache_range((unsigned long)insn_addr, 4+
412 (unsigned long)insn_addr);
413}
414
415static void __init htab_finish_init(void)
416{
417 extern unsigned int *htab_call_hpte_insert1;
418 extern unsigned int *htab_call_hpte_insert2;
419 extern unsigned int *htab_call_hpte_remove;
420 extern unsigned int *htab_call_hpte_updatepp;
421
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000422#ifdef CONFIG_PPC_HAS_HASH_64K
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000423 extern unsigned int *ht64_call_hpte_insert1;
424 extern unsigned int *ht64_call_hpte_insert2;
425 extern unsigned int *ht64_call_hpte_remove;
426 extern unsigned int *ht64_call_hpte_updatepp;
427
428 make_bl(ht64_call_hpte_insert1, ppc_md.hpte_insert);
429 make_bl(ht64_call_hpte_insert2, ppc_md.hpte_insert);
430 make_bl(ht64_call_hpte_remove, ppc_md.hpte_remove);
431 make_bl(ht64_call_hpte_updatepp, ppc_md.hpte_updatepp);
Jon Tollefson5b825832007-05-17 04:43:02 +1000432#endif /* CONFIG_PPC_HAS_HASH_64K */
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000433
434 make_bl(htab_call_hpte_insert1, ppc_md.hpte_insert);
435 make_bl(htab_call_hpte_insert2, ppc_md.hpte_insert);
436 make_bl(htab_call_hpte_remove, ppc_md.hpte_remove);
437 make_bl(htab_call_hpte_updatepp, ppc_md.hpte_updatepp);
438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440void __init htab_initialize(void)
441{
Michael Ellerman337a7122006-02-21 17:22:55 +1100442 unsigned long table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 unsigned long pteg_count;
444 unsigned long mode_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned long base = 0, size = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100446 int i;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 extern unsigned long tce_alloc_start, tce_alloc_end;
449
450 DBG(" -> htab_initialize()\n");
451
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100452 /* Initialize page sizes */
453 htab_init_page_sizes();
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
456 * Calculate the required size of the htab. We want the number of
457 * PTEGs to equal one half the number of real pages.
458 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100459 htab_size_bytes = htab_get_table_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pteg_count = htab_size_bytes >> 7;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 htab_hash_mask = pteg_count - 1;
463
Michael Ellerman57cfb812006-03-21 20:45:59 +1100464 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* Using a hypervisor which owns the htab */
466 htab_address = NULL;
467 _SDR1 = 0;
468 } else {
469 /* Find storage for the HPT. Must be contiguous in
470 * the absolute address space.
471 */
472 table = lmb_alloc(htab_size_bytes, htab_size_bytes);
473
474 DBG("Hash table allocated at %lx, size: %lx\n", table,
475 htab_size_bytes);
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 htab_address = abs_to_virt(table);
478
479 /* htab absolute addr + encoded htabsize */
480 _SDR1 = table + __ilog2(pteg_count) - 11;
481
482 /* Initialize the HPT with no entries */
483 memset((void *)table, 0, htab_size_bytes);
Paul Mackerras799d6042005-11-10 13:37:51 +1100484
485 /* Set SDR1 */
486 mtspr(SPRN_SDR1, _SDR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
Anton Blanchard515bae92005-06-21 17:15:55 -0700489 mode_rw = _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000491#ifdef CONFIG_DEBUG_PAGEALLOC
492 linear_map_hash_count = lmb_end_of_DRAM() >> PAGE_SHIFT;
493 linear_map_hash_slots = __va(lmb_alloc_base(linear_map_hash_count,
494 1, lmb.rmo_size));
495 memset(linear_map_hash_slots, 0, linear_map_hash_count);
496#endif /* CONFIG_DEBUG_PAGEALLOC */
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* On U3 based machines, we need to reserve the DART area and
499 * _NOT_ map it to avoid cache paradoxes as it's remapped non
500 * cacheable later on
501 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /* create bolted the linear mapping in the hash table */
504 for (i=0; i < lmb.memory.cnt; i++) {
Michael Ellermanb5666f72005-12-05 10:24:33 -0600505 base = (unsigned long)__va(lmb.memory.region[i].base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 size = lmb.memory.region[i].size;
507
508 DBG("creating mapping for region: %lx : %lx\n", base, size);
509
510#ifdef CONFIG_U3_DART
511 /* Do not map the DART space. Fortunately, it will be aligned
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100512 * in such a way that it will not cross two lmb regions and
513 * will fit within a single 16Mb page.
514 * The DART space is assumed to be a full 16Mb region even if
515 * we only use 2Mb of that space. We will use more of it later
516 * for AGP GART. We have to use a full 16Mb large page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
518 DBG("DART base: %lx\n", dart_tablebase);
519
520 if (dart_tablebase != 0 && dart_tablebase >= base
521 && dart_tablebase < (base + size)) {
Michael Ellermancaf80e52006-03-21 20:45:51 +1100522 unsigned long dart_table_end = dart_tablebase + 16 * MB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (base != dart_tablebase)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100524 BUG_ON(htab_bolt_mapping(base, dart_tablebase,
Michael Ellermancaf80e52006-03-21 20:45:51 +1100525 __pa(base), mode_rw,
526 mmu_linear_psize));
527 if ((base + size) > dart_table_end)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100528 BUG_ON(htab_bolt_mapping(dart_tablebase+16*MB,
Michael Ellermancaf80e52006-03-21 20:45:51 +1100529 base + size,
530 __pa(dart_table_end),
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100531 mode_rw,
532 mmu_linear_psize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 continue;
534 }
535#endif /* CONFIG_U3_DART */
Michael Ellermancaf80e52006-03-21 20:45:51 +1100536 BUG_ON(htab_bolt_mapping(base, base + size, __pa(base),
537 mode_rw, mmu_linear_psize));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /*
541 * If we have a memory_limit and we've allocated TCEs then we need to
542 * explicitly map the TCE area at the top of RAM. We also cope with the
543 * case that the TCEs start below memory_limit.
544 * tce_alloc_start/end are 16MB aligned so the mapping should work
545 * for either 4K or 16MB pages.
546 */
547 if (tce_alloc_start) {
Michael Ellermanb5666f72005-12-05 10:24:33 -0600548 tce_alloc_start = (unsigned long)__va(tce_alloc_start);
549 tce_alloc_end = (unsigned long)__va(tce_alloc_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if (base + size >= tce_alloc_start)
552 tce_alloc_start = base + size + 1;
553
Michael Ellermancaf80e52006-03-21 20:45:51 +1100554 BUG_ON(htab_bolt_mapping(tce_alloc_start, tce_alloc_end,
555 __pa(tce_alloc_start), mode_rw,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100556 mmu_linear_psize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000559 htab_finish_init();
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 DBG(" <- htab_initialize()\n");
562}
563#undef KB
564#undef MB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Anton Blancharde597cb322005-12-29 10:46:29 +1100566void htab_initialize_secondary(void)
Paul Mackerras799d6042005-11-10 13:37:51 +1100567{
Michael Ellerman57cfb812006-03-21 20:45:59 +1100568 if (!firmware_has_feature(FW_FEATURE_LPAR))
Paul Mackerras799d6042005-11-10 13:37:51 +1100569 mtspr(SPRN_SDR1, _SDR1);
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*
573 * Called by asm hashtable.S for doing lazy icache flush
574 */
575unsigned int hash_page_do_lazy_icache(unsigned int pp, pte_t pte, int trap)
576{
577 struct page *page;
578
Benjamin Herrenschmidt76c8e252005-11-08 11:21:05 +1100579 if (!pfn_valid(pte_pfn(pte)))
580 return pp;
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 page = pte_page(pte);
583
584 /* page is dirty */
585 if (!test_bit(PG_arch_1, &page->flags) && !PageReserved(page)) {
586 if (trap == 0x400) {
587 __flush_dcache_icache(page_address(page));
588 set_bit(PG_arch_1, &page->flags);
589 } else
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100590 pp |= HPTE_R_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 return pp;
593}
594
Paul Mackerras721151d2007-04-03 21:24:02 +1000595/*
596 * Demote a segment to using 4k pages.
597 * For now this makes the whole process use 4k pages.
598 */
Paul Mackerras721151d2007-04-03 21:24:02 +1000599#ifdef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000600static void demote_segment_4k(struct mm_struct *mm, unsigned long addr)
601{
Paul Mackerras721151d2007-04-03 21:24:02 +1000602 if (mm->context.user_psize == MMU_PAGE_4K)
603 return;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000604 slice_set_user_psize(mm, MMU_PAGE_4K);
Geert Uytterhoeven1e57ba82007-07-17 02:35:38 +1000605#ifdef CONFIG_SPU_BASE
Paul Mackerras721151d2007-04-03 21:24:02 +1000606 spu_flush_all_slbs(mm);
607#endif
Paul Mackerras721151d2007-04-03 21:24:02 +1000608}
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000609#endif /* CONFIG_PPC_64K_PAGES */
Paul Mackerras721151d2007-04-03 21:24:02 +1000610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611/* Result code is:
612 * 0 - handled
613 * 1 - normal page fault
614 * -1 - critical hash insertion error
615 */
616int hash_page(unsigned long ea, unsigned long access, unsigned long trap)
617{
618 void *pgdir;
619 unsigned long vsid;
620 struct mm_struct *mm;
621 pte_t *ptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 cpumask_t tmp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100623 int rc, user_region = 0, local = 0;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000624 int psize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100626 DBG_LOW("hash_page(ea=%016lx, access=%lx, trap=%lx\n",
627 ea, access, trap);
David Gibson1f8d4192005-05-05 16:15:13 -0700628
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100629 if ((ea & ~REGION_MASK) >= PGTABLE_RANGE) {
630 DBG_LOW(" out of pgtable range !\n");
631 return 1;
632 }
633
634 /* Get region & vsid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 switch (REGION_ID(ea)) {
636 case USER_REGION_ID:
637 user_region = 1;
638 mm = current->mm;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100639 if (! mm) {
640 DBG_LOW(" user region with no mm !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return 1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 vsid = get_vsid(mm->context.id, ea);
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000644#ifdef CONFIG_PPC_MM_SLICES
645 psize = get_slice_psize(mm, ea);
646#else
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000647 psize = mm->context.user_psize;
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000648#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 case VMALLOC_REGION_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 mm = &init_mm;
652 vsid = get_kernel_vsid(ea);
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000653 if (ea < VMALLOC_END)
654 psize = mmu_vmalloc_psize;
655 else
656 psize = mmu_io_psize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 default:
659 /* Not a valid range
660 * Send the problem up to do_page_fault
661 */
662 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100664 DBG_LOW(" mm=%p, mm->pgdir=%p, vsid=%016lx\n", mm, mm->pgd, vsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100666 /* Get pgdir */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 pgdir = mm->pgd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (pgdir == NULL)
669 return 1;
670
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100671 /* Check CPU locality */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 tmp = cpumask_of_cpu(smp_processor_id());
673 if (user_region && cpus_equal(mm->cpu_vm_mask, tmp))
674 local = 1;
675
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000676#ifdef CONFIG_HUGETLB_PAGE
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100677 /* Handle hugepage regions */
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000678 if (HPAGE_SHIFT && psize == mmu_huge_psize) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100679 DBG_LOW(" -> huge page !\n");
David Gibsoncbf52af2005-12-09 14:20:52 +1100680 return hash_huge_page(mm, access, ea, vsid, local, trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000682#endif /* CONFIG_HUGETLB_PAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000684#ifndef CONFIG_PPC_64K_PAGES
685 /* If we use 4K pages and our psize is not 4K, then we are hitting
686 * a special driver mapping, we need to align the address before
687 * we fetch the PTE
688 */
689 if (psize != MMU_PAGE_4K)
690 ea &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
691#endif /* CONFIG_PPC_64K_PAGES */
692
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100693 /* Get PTE and page size from page tables */
694 ptep = find_linux_pte(pgdir, ea);
695 if (ptep == NULL || !pte_present(*ptep)) {
696 DBG_LOW(" no PTE !\n");
697 return 1;
698 }
699
700#ifndef CONFIG_PPC_64K_PAGES
701 DBG_LOW(" i-pte: %016lx\n", pte_val(*ptep));
702#else
703 DBG_LOW(" i-pte: %016lx %016lx\n", pte_val(*ptep),
704 pte_val(*(ptep + PTRS_PER_PTE)));
705#endif
706 /* Pre-check access permissions (will be re-checked atomically
707 * in __hash_page_XX but this pre-check is a fast path
708 */
709 if (access & ~pte_val(*ptep)) {
710 DBG_LOW(" no access !\n");
711 return 1;
712 }
713
714 /* Do actual hashing */
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000715#ifdef CONFIG_PPC_64K_PAGES
Paul Mackerras721151d2007-04-03 21:24:02 +1000716 /* If _PAGE_4K_PFN is set, make sure this is a 4k segment */
717 if (pte_val(*ptep) & _PAGE_4K_PFN) {
718 demote_segment_4k(mm, ea);
719 psize = MMU_PAGE_4K;
720 }
721
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000722 /* If this PTE is non-cacheable and we have restrictions on
723 * using non cacheable large pages, then we switch to 4k
724 */
725 if (mmu_ci_restrictions && psize == MMU_PAGE_64K &&
726 (pte_val(*ptep) & _PAGE_NO_CACHE)) {
727 if (user_region) {
728 demote_segment_4k(mm, ea);
729 psize = MMU_PAGE_4K;
730 } else if (ea < VMALLOC_END) {
731 /*
732 * some driver did a non-cacheable mapping
733 * in vmalloc space, so switch vmalloc
734 * to 4k pages
735 */
736 printk(KERN_ALERT "Reducing vmalloc segment "
737 "to 4kB pages because of "
738 "non-cacheable mapping\n");
739 psize = mmu_vmalloc_psize = MMU_PAGE_4K;
Geert Uytterhoeven1e57ba82007-07-17 02:35:38 +1000740#ifdef CONFIG_SPU_BASE
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100741 spu_flush_all_slbs(mm);
742#endif
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000743 }
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000744 }
745 if (user_region) {
746 if (psize != get_paca()->context.user_psize) {
747 get_paca()->context.user_psize =
748 mm->context.user_psize;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000749 slb_flush_and_rebolt();
750 }
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000751 } else if (get_paca()->vmalloc_sllp !=
752 mmu_psize_defs[mmu_vmalloc_psize].sllp) {
753 get_paca()->vmalloc_sllp =
754 mmu_psize_defs[mmu_vmalloc_psize].sllp;
Michael Neuling67439b72007-08-03 11:55:39 +1000755 slb_vmalloc_update();
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000756 }
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000757#endif /* CONFIG_PPC_64K_PAGES */
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000758
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000759#ifdef CONFIG_PPC_HAS_HASH_64K
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000760 if (psize == MMU_PAGE_64K)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100761 rc = __hash_page_64K(ea, access, vsid, ptep, trap, local);
762 else
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000763#endif /* CONFIG_PPC_HAS_HASH_64K */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100764 rc = __hash_page_4K(ea, access, vsid, ptep, trap, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100765
766#ifndef CONFIG_PPC_64K_PAGES
767 DBG_LOW(" o-pte: %016lx\n", pte_val(*ptep));
768#else
769 DBG_LOW(" o-pte: %016lx %016lx\n", pte_val(*ptep),
770 pte_val(*(ptep + PTRS_PER_PTE)));
771#endif
772 DBG_LOW(" -> rc=%d\n", rc);
773 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500775EXPORT_SYMBOL_GPL(hash_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100777void hash_preload(struct mm_struct *mm, unsigned long ea,
778 unsigned long access, unsigned long trap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100780 unsigned long vsid;
781 void *pgdir;
782 pte_t *ptep;
783 cpumask_t mask;
784 unsigned long flags;
785 int local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000787 BUG_ON(REGION_ID(ea) != USER_REGION_ID);
788
789#ifdef CONFIG_PPC_MM_SLICES
790 /* We only prefault standard pages for now */
Ilpo Järvinen2b02d132007-08-16 08:03:35 +1000791 if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100792 return;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000793#endif
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100794
795 DBG_LOW("hash_preload(mm=%p, mm->pgdir=%p, ea=%016lx, access=%lx,"
796 " trap=%lx\n", mm, mm->pgd, ea, access, trap);
797
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000798 /* Get Linux PTE if available */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100799 pgdir = mm->pgd;
800 if (pgdir == NULL)
801 return;
802 ptep = find_linux_pte(pgdir, ea);
803 if (!ptep)
804 return;
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000805
806#ifdef CONFIG_PPC_64K_PAGES
807 /* If either _PAGE_4K_PFN or _PAGE_NO_CACHE is set (and we are on
808 * a 64K kernel), then we don't preload, hash_page() will take
809 * care of it once we actually try to access the page.
810 * That way we don't have to duplicate all of the logic for segment
811 * page size demotion here
812 */
813 if (pte_val(*ptep) & (_PAGE_4K_PFN | _PAGE_NO_CACHE))
814 return;
815#endif /* CONFIG_PPC_64K_PAGES */
816
817 /* Get VSID */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100818 vsid = get_vsid(mm->context.id, ea);
819
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000820 /* Hash doesn't like irqs */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100821 local_irq_save(flags);
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000822
823 /* Is that local to this CPU ? */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100824 mask = cpumask_of_cpu(smp_processor_id());
825 if (cpus_equal(mm->cpu_vm_mask, mask))
826 local = 1;
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000827
828 /* Hash it in */
829#ifdef CONFIG_PPC_HAS_HASH_64K
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000830 if (mm->context.user_psize == MMU_PAGE_64K)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100831 __hash_page_64K(ea, access, vsid, ptep, trap, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 else
Jon Tollefson5b825832007-05-17 04:43:02 +1000833#endif /* CONFIG_PPC_HAS_HASH_64K */
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000834 __hash_page_4K(ea, access, vsid, ptep, trap, local);
835
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100836 local_irq_restore(flags);
837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100839void flush_hash_page(unsigned long va, real_pte_t pte, int psize, int local)
840{
841 unsigned long hash, index, shift, hidx, slot;
842
843 DBG_LOW("flush_hash_page(va=%016x)\n", va);
844 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
845 hash = hpt_hash(va, shift);
846 hidx = __rpte_to_hidx(pte, index);
847 if (hidx & _PTEIDX_SECONDARY)
848 hash = ~hash;
849 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
850 slot += hidx & _PTEIDX_GROUP_IX;
851 DBG_LOW(" sub %d: hash=%x, hidx=%x\n", index, slot, hidx);
852 ppc_md.hpte_invalidate(slot, va, psize, local);
853 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000856void flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100858 if (ppc_md.flush_hash_range)
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000859 ppc_md.flush_hash_range(number, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100860 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 int i;
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000862 struct ppc64_tlb_batch *batch =
863 &__get_cpu_var(ppc64_tlb_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 for (i = 0; i < number; i++)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100866 flush_hash_page(batch->vaddr[i], batch->pte[i],
867 batch->psize, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871/*
872 * low_hash_fault is called when we the low level hash code failed
873 * to instert a PTE due to an hypervisor error
874 */
875void low_hash_fault(struct pt_regs *regs, unsigned long address)
876{
877 if (user_mode(regs)) {
878 siginfo_t info;
879
880 info.si_signo = SIGBUS;
881 info.si_errno = 0;
882 info.si_code = BUS_ADRERR;
883 info.si_addr = (void __user *)address;
884 force_sig_info(SIGBUS, &info, current);
885 return;
886 }
887 bad_page_fault(regs, address, SIGBUS);
888}
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000889
890#ifdef CONFIG_DEBUG_PAGEALLOC
891static void kernel_map_linear_page(unsigned long vaddr, unsigned long lmi)
892{
893 unsigned long hash, hpteg, vsid = get_kernel_vsid(vaddr);
894 unsigned long va = (vsid << 28) | (vaddr & 0x0fffffff);
895 unsigned long mode = _PAGE_ACCESSED | _PAGE_DIRTY |
896 _PAGE_COHERENT | PP_RWXX | HPTE_R_N;
897 int ret;
898
899 hash = hpt_hash(va, PAGE_SHIFT);
900 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
901
902 ret = ppc_md.hpte_insert(hpteg, va, __pa(vaddr),
903 mode, HPTE_V_BOLTED, mmu_linear_psize);
904 BUG_ON (ret < 0);
905 spin_lock(&linear_map_hash_lock);
906 BUG_ON(linear_map_hash_slots[lmi] & 0x80);
907 linear_map_hash_slots[lmi] = ret | 0x80;
908 spin_unlock(&linear_map_hash_lock);
909}
910
911static void kernel_unmap_linear_page(unsigned long vaddr, unsigned long lmi)
912{
913 unsigned long hash, hidx, slot, vsid = get_kernel_vsid(vaddr);
914 unsigned long va = (vsid << 28) | (vaddr & 0x0fffffff);
915
916 hash = hpt_hash(va, PAGE_SHIFT);
917 spin_lock(&linear_map_hash_lock);
918 BUG_ON(!(linear_map_hash_slots[lmi] & 0x80));
919 hidx = linear_map_hash_slots[lmi] & 0x7f;
920 linear_map_hash_slots[lmi] = 0;
921 spin_unlock(&linear_map_hash_lock);
922 if (hidx & _PTEIDX_SECONDARY)
923 hash = ~hash;
924 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
925 slot += hidx & _PTEIDX_GROUP_IX;
926 ppc_md.hpte_invalidate(slot, va, mmu_linear_psize, 0);
927}
928
929void kernel_map_pages(struct page *page, int numpages, int enable)
930{
931 unsigned long flags, vaddr, lmi;
932 int i;
933
934 local_irq_save(flags);
935 for (i = 0; i < numpages; i++, page++) {
936 vaddr = (unsigned long)page_address(page);
937 lmi = __pa(vaddr) >> PAGE_SHIFT;
938 if (lmi >= linear_map_hash_count)
939 continue;
940 if (enable)
941 kernel_map_linear_page(vaddr, lmi);
942 else
943 kernel_unmap_linear_page(vaddr, lmi);
944 }
945 local_irq_restore(flags);
946}
947#endif /* CONFIG_DEBUG_PAGEALLOC */