blob: c5a603fdb22d0121cd47aa3d31d10e1ca4d6f19d [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;
Paul Mackerras1189be62007-10-11 20:37:10 +100096int mmu_kernel_ssize = MMU_SEGSIZE_256M;
97int mmu_highuser_ssize = MMU_SEGSIZE_256M;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110098#ifdef CONFIG_HUGETLB_PAGE
99int mmu_huge_psize = MMU_PAGE_16M;
100unsigned int HPAGE_SHIFT;
101#endif
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000102#ifdef CONFIG_PPC_64K_PAGES
103int mmu_ci_restrictions;
104#endif
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000105#ifdef CONFIG_DEBUG_PAGEALLOC
106static u8 *linear_map_hash_slots;
107static unsigned long linear_map_hash_count;
Michael Ellermaned166692007-04-18 11:50:09 +1000108static DEFINE_SPINLOCK(linear_map_hash_lock);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000109#endif /* CONFIG_DEBUG_PAGEALLOC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100111/* There are definitions of page sizes arrays to be used when none
112 * is provided by the firmware.
113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100115/* Pre-POWER4 CPUs (4k pages only)
116 */
117struct mmu_psize_def mmu_psize_defaults_old[] = {
118 [MMU_PAGE_4K] = {
119 .shift = 12,
120 .sllp = 0,
121 .penc = 0,
122 .avpnm = 0,
123 .tlbiel = 0,
124 },
125};
126
127/* POWER4, GPUL, POWER5
128 *
129 * Support for 16Mb large pages
130 */
131struct mmu_psize_def mmu_psize_defaults_gp[] = {
132 [MMU_PAGE_4K] = {
133 .shift = 12,
134 .sllp = 0,
135 .penc = 0,
136 .avpnm = 0,
137 .tlbiel = 1,
138 },
139 [MMU_PAGE_16M] = {
140 .shift = 24,
141 .sllp = SLB_VSID_L,
142 .penc = 0,
143 .avpnm = 0x1UL,
144 .tlbiel = 0,
145 },
146};
147
148
149int htab_bolt_mapping(unsigned long vstart, unsigned long vend,
Paul Mackerras1189be62007-10-11 20:37:10 +1000150 unsigned long pstart, unsigned long mode,
151 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100153 unsigned long vaddr, paddr;
154 unsigned int step, shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned long tmp_mode;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100156 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100158 shift = mmu_psize_defs[psize].shift;
159 step = 1 << shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100161 for (vaddr = vstart, paddr = pstart; vaddr < vend;
162 vaddr += step, paddr += step) {
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000163 unsigned long hash, hpteg;
Paul Mackerras1189be62007-10-11 20:37:10 +1000164 unsigned long vsid = get_kernel_vsid(vaddr, ssize);
165 unsigned long va = hpt_va(vaddr, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 tmp_mode = mode;
168
169 /* Make non-kernel text non-executable */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100170 if (!in_kernel_text(vaddr))
171 tmp_mode = mode | HPTE_R_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Paul Mackerras1189be62007-10-11 20:37:10 +1000173 hash = hpt_hash(va, shift, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
175
Michael Ellermanc30a4df2006-06-23 18:16:39 +1000176 DBG("htab_bolt_mapping: calling %p\n", ppc_md.hpte_insert);
177
178 BUG_ON(!ppc_md.hpte_insert);
179 ret = ppc_md.hpte_insert(hpteg, va, paddr,
Paul Mackerras1189be62007-10-11 20:37:10 +1000180 tmp_mode, HPTE_V_BOLTED, psize, ssize);
Michael Ellermanc30a4df2006-06-23 18:16:39 +1000181
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100182 if (ret < 0)
183 break;
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000184#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100189 return ret < 0 ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Paul Mackerras1189be62007-10-11 20:37:10 +1000192static int __init htab_dt_scan_seg_sizes(unsigned long node,
193 const char *uname, int depth,
194 void *data)
195{
196 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
197 u32 *prop;
198 unsigned long size = 0;
199
200 /* We are scanning "cpu" nodes only */
201 if (type == NULL || strcmp(type, "cpu") != 0)
202 return 0;
203
204 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,processor-segment-sizes",
205 &size);
206 if (prop == NULL)
207 return 0;
208 for (; size >= 4; size -= 4, ++prop) {
209 if (prop[0] == 40) {
210 DBG("1T segment support detected\n");
211 cur_cpu_spec->cpu_features |= CPU_FTR_1T_SEGMENT;
Olof Johanssonf5534002007-10-12 16:44:55 +1000212 return 1;
Paul Mackerras1189be62007-10-11 20:37:10 +1000213 }
Paul Mackerras1189be62007-10-11 20:37:10 +1000214 }
Olof Johanssonf66bce52007-10-16 00:58:59 +1000215 cur_cpu_spec->cpu_features &= ~CPU_FTR_NO_SLBIE_B;
Paul Mackerras1189be62007-10-11 20:37:10 +1000216 return 0;
217}
218
219static void __init htab_init_seg_sizes(void)
220{
221 of_scan_flat_dt(htab_dt_scan_seg_sizes, NULL);
222}
223
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100224static int __init htab_dt_scan_page_sizes(unsigned long node,
225 const char *uname, int depth,
226 void *data)
227{
228 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
229 u32 *prop;
230 unsigned long size = 0;
231
232 /* We are scanning "cpu" nodes only */
233 if (type == NULL || strcmp(type, "cpu") != 0)
234 return 0;
235
236 prop = (u32 *)of_get_flat_dt_prop(node,
237 "ibm,segment-page-sizes", &size);
238 if (prop != NULL) {
239 DBG("Page sizes from device-tree:\n");
240 size /= 4;
241 cur_cpu_spec->cpu_features &= ~(CPU_FTR_16M_PAGE);
242 while(size > 0) {
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;
248 int idx = -1;
249
250 size -= 3; prop += 3;
251 while(size > 0 && lpnum) {
252 if (prop[0] == shift)
253 lpenc = prop[1];
254 prop += 2; size -= 2;
255 lpnum--;
256 }
257 switch(shift) {
258 case 0xc:
259 idx = MMU_PAGE_4K;
260 break;
261 case 0x10:
262 idx = MMU_PAGE_64K;
263 break;
264 case 0x14:
265 idx = MMU_PAGE_1M;
266 break;
267 case 0x18:
268 idx = MMU_PAGE_16M;
269 cur_cpu_spec->cpu_features |= CPU_FTR_16M_PAGE;
270 break;
271 case 0x22:
272 idx = MMU_PAGE_16G;
273 break;
274 }
275 if (idx < 0)
276 continue;
277 def = &mmu_psize_defs[idx];
278 def->shift = shift;
279 if (shift <= 23)
280 def->avpnm = 0;
281 else
282 def->avpnm = (1 << (shift - 23)) - 1;
283 def->sllp = slbenc;
284 def->penc = lpenc;
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
287 */
288 if (idx == MMU_PAGE_4K || idx == MMU_PAGE_64K)
289 def->tlbiel = 1;
290 else
291 def->tlbiel = 0;
292
293 DBG(" %d: shift=%02x, sllp=%04x, avpnm=%08x, "
294 "tlbiel=%d, penc=%d\n",
295 idx, shift, def->sllp, def->avpnm, def->tlbiel,
296 def->penc);
297 }
298 return 1;
299 }
300 return 0;
301}
302
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100303static void __init htab_init_page_sizes(void)
304{
305 int rc;
306
307 /* Default to 4K pages only */
308 memcpy(mmu_psize_defs, mmu_psize_defaults_old,
309 sizeof(mmu_psize_defaults_old));
310
311 /*
312 * Try to find the available page sizes in the device-tree
313 */
314 rc = of_scan_flat_dt(htab_dt_scan_page_sizes, NULL);
315 if (rc != 0) /* Found */
316 goto found;
317
318 /*
319 * Not in the device-tree, let's fallback on known size
320 * list for 16M capable GP & GR
321 */
Stephen Rothwell04704662006-11-30 11:46:22 +1100322 if (cpu_has_feature(CPU_FTR_16M_PAGE))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100323 memcpy(mmu_psize_defs, mmu_psize_defaults_gp,
324 sizeof(mmu_psize_defaults_gp));
325 found:
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000326#ifndef CONFIG_DEBUG_PAGEALLOC
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100327 /*
328 * Pick a size for the linear mapping. Currently, we only support
329 * 16M, 1M and 4K which is the default
330 */
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;
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000335#endif /* CONFIG_DEBUG_PAGEALLOC */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100336
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000337#ifdef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100338 /*
339 * Pick a size for the ordinary pages. Default is 4K, we support
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000340 * 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.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100346 */
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000347 if (mmu_psize_defs[MMU_PAGE_64K].shift) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100348 mmu_virtual_psize = MMU_PAGE_64K;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000349 mmu_vmalloc_psize = MMU_PAGE_64K;
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000350 if (mmu_linear_psize == MMU_PAGE_4K)
351 mmu_linear_psize = MMU_PAGE_64K;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000352 if (cpu_has_feature(CPU_FTR_CI_LARGE_PAGE))
353 mmu_io_psize = MMU_PAGE_64K;
354 else
355 mmu_ci_restrictions = 1;
356 }
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000357#endif /* CONFIG_PPC_64K_PAGES */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100358
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000359 printk(KERN_DEBUG "Page orders: linear mapping = %d, "
360 "virtual = %d, io = %d\n",
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100361 mmu_psize_defs[mmu_linear_psize].shift,
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000362 mmu_psize_defs[mmu_virtual_psize].shift,
363 mmu_psize_defs[mmu_io_psize].shift);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100364
365#ifdef CONFIG_HUGETLB_PAGE
366 /* Init large page size. Currently, we pick 16M or 1M depending
367 * on what is available
368 */
369 if (mmu_psize_defs[MMU_PAGE_16M].shift)
370 mmu_huge_psize = MMU_PAGE_16M;
David Gibson7d24f0b2005-11-07 00:57:52 -0800371 /* With 4k/4level pagetables, we can't (for now) cope with a
372 * huge page size < PMD_SIZE */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100373 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
374 mmu_huge_psize = MMU_PAGE_1M;
375
376 /* Calculate HPAGE_SHIFT and sanity check it */
David Gibson7d24f0b2005-11-07 00:57:52 -0800377 if (mmu_psize_defs[mmu_huge_psize].shift > MIN_HUGEPTE_SHIFT &&
378 mmu_psize_defs[mmu_huge_psize].shift < SID_SHIFT)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100379 HPAGE_SHIFT = mmu_psize_defs[mmu_huge_psize].shift;
380 else
381 HPAGE_SHIFT = 0; /* No huge pages dude ! */
382#endif /* CONFIG_HUGETLB_PAGE */
383}
384
385static int __init htab_dt_scan_pftsize(unsigned long node,
386 const char *uname, int depth,
387 void *data)
388{
389 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
390 u32 *prop;
391
392 /* We are scanning "cpu" nodes only */
393 if (type == NULL || strcmp(type, "cpu") != 0)
394 return 0;
395
396 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,pft-size", NULL);
397 if (prop != NULL) {
398 /* pft_size[0] is the NUMA CEC cookie */
399 ppc64_pft_size = prop[1];
400 return 1;
401 }
402 return 0;
403}
404
405static unsigned long __init htab_get_table_size(void)
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000406{
Paul Mackerras799d6042005-11-10 13:37:51 +1100407 unsigned long mem_size, rnd_mem_size, pteg_count;
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000408
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100409 /* If hash size isn't already provided by the platform, we try to
Adrian Bunk943ffb52006-01-10 00:10:13 +0100410 * retrieve it from the device-tree. If it's not there neither, we
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100411 * calculate it now based on the total RAM size
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000412 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100413 if (ppc64_pft_size == 0)
414 of_scan_flat_dt(htab_dt_scan_pftsize, NULL);
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000415 if (ppc64_pft_size)
416 return 1UL << ppc64_pft_size;
417
418 /* round mem_size up to next power of 2 */
Paul Mackerras799d6042005-11-10 13:37:51 +1100419 mem_size = lmb_phys_mem_size();
420 rnd_mem_size = 1UL << __ilog2(mem_size);
421 if (rnd_mem_size < mem_size)
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000422 rnd_mem_size <<= 1;
423
424 /* # pages / 2 */
425 pteg_count = max(rnd_mem_size >> (12 + 1), 1UL << 11);
426
427 return pteg_count << 7;
428}
429
Mike Kravetz54b79242005-11-07 16:25:48 -0800430#ifdef CONFIG_MEMORY_HOTPLUG
431void create_section_mapping(unsigned long start, unsigned long end)
432{
Michael Ellermancaf80e52006-03-21 20:45:51 +1100433 BUG_ON(htab_bolt_mapping(start, end, __pa(start),
Mike Kravetz54b79242005-11-07 16:25:48 -0800434 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX,
Paul Mackerras1189be62007-10-11 20:37:10 +1000435 mmu_linear_psize, mmu_kernel_ssize));
Mike Kravetz54b79242005-11-07 16:25:48 -0800436}
437#endif /* CONFIG_MEMORY_HOTPLUG */
438
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000439static inline void make_bl(unsigned int *insn_addr, void *func)
440{
441 unsigned long funcp = *((unsigned long *)func);
442 int offset = funcp - (unsigned long)insn_addr;
443
444 *insn_addr = (unsigned int)(0x48000001 | (offset & 0x03fffffc));
445 flush_icache_range((unsigned long)insn_addr, 4+
446 (unsigned long)insn_addr);
447}
448
449static void __init htab_finish_init(void)
450{
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;
455
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000456#ifdef CONFIG_PPC_HAS_HASH_64K
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000457 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;
461
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);
Jon Tollefson5b825832007-05-17 04:43:02 +1000466#endif /* CONFIG_PPC_HAS_HASH_64K */
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000467
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);
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474void __init htab_initialize(void)
475{
Michael Ellerman337a7122006-02-21 17:22:55 +1100476 unsigned long table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 unsigned long pteg_count;
478 unsigned long mode_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 unsigned long base = 0, size = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100480 int i;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 extern unsigned long tce_alloc_start, tce_alloc_end;
483
484 DBG(" -> htab_initialize()\n");
485
Paul Mackerras1189be62007-10-11 20:37:10 +1000486 /* Initialize segment sizes */
487 htab_init_seg_sizes();
488
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100489 /* Initialize page sizes */
490 htab_init_page_sizes();
491
Paul Mackerras1189be62007-10-11 20:37:10 +1000492 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");
496 }
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * Calculate the required size of the htab. We want the number of
500 * PTEGs to equal one half the number of real pages.
501 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100502 htab_size_bytes = htab_get_table_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 pteg_count = htab_size_bytes >> 7;
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 htab_hash_mask = pteg_count - 1;
506
Michael Ellerman57cfb812006-03-21 20:45:59 +1100507 if (firmware_has_feature(FW_FEATURE_LPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* Using a hypervisor which owns the htab */
509 htab_address = NULL;
510 _SDR1 = 0;
511 } else {
512 /* Find storage for the HPT. Must be contiguous in
513 * the absolute address space.
514 */
515 table = lmb_alloc(htab_size_bytes, htab_size_bytes);
516
517 DBG("Hash table allocated at %lx, size: %lx\n", table,
518 htab_size_bytes);
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 htab_address = abs_to_virt(table);
521
522 /* htab absolute addr + encoded htabsize */
523 _SDR1 = table + __ilog2(pteg_count) - 11;
524
525 /* Initialize the HPT with no entries */
526 memset((void *)table, 0, htab_size_bytes);
Paul Mackerras799d6042005-11-10 13:37:51 +1100527
528 /* Set SDR1 */
529 mtspr(SPRN_SDR1, _SDR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
Anton Blanchard515bae92005-06-21 17:15:55 -0700532 mode_rw = _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000534#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,
537 1, lmb.rmo_size));
538 memset(linear_map_hash_slots, 0, linear_map_hash_count);
539#endif /* CONFIG_DEBUG_PAGEALLOC */
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* 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
543 * cacheable later on
544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /* create bolted the linear mapping in the hash table */
547 for (i=0; i < lmb.memory.cnt; i++) {
Michael Ellermanb5666f72005-12-05 10:24:33 -0600548 base = (unsigned long)__va(lmb.memory.region[i].base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 size = lmb.memory.region[i].size;
550
551 DBG("creating mapping for region: %lx : %lx\n", base, size);
552
553#ifdef CONFIG_U3_DART
554 /* Do not map the DART space. Fortunately, it will be aligned
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100555 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 */
561 DBG("DART base: %lx\n", dart_tablebase);
562
563 if (dart_tablebase != 0 && dart_tablebase >= base
564 && dart_tablebase < (base + size)) {
Michael Ellermancaf80e52006-03-21 20:45:51 +1100565 unsigned long dart_table_end = dart_tablebase + 16 * MB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (base != dart_tablebase)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100567 BUG_ON(htab_bolt_mapping(base, dart_tablebase,
Michael Ellermancaf80e52006-03-21 20:45:51 +1100568 __pa(base), mode_rw,
Paul Mackerras1189be62007-10-11 20:37:10 +1000569 mmu_linear_psize,
570 mmu_kernel_ssize));
Michael Ellermancaf80e52006-03-21 20:45:51 +1100571 if ((base + size) > dart_table_end)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100572 BUG_ON(htab_bolt_mapping(dart_tablebase+16*MB,
Michael Ellermancaf80e52006-03-21 20:45:51 +1100573 base + size,
574 __pa(dart_table_end),
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100575 mode_rw,
Paul Mackerras1189be62007-10-11 20:37:10 +1000576 mmu_linear_psize,
577 mmu_kernel_ssize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 continue;
579 }
580#endif /* CONFIG_U3_DART */
Michael Ellermancaf80e52006-03-21 20:45:51 +1100581 BUG_ON(htab_bolt_mapping(base, base + size, __pa(base),
Paul Mackerras1189be62007-10-11 20:37:10 +1000582 mode_rw, mmu_linear_psize, mmu_kernel_ssize));
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 /*
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.
591 */
592 if (tce_alloc_start) {
Michael Ellermanb5666f72005-12-05 10:24:33 -0600593 tce_alloc_start = (unsigned long)__va(tce_alloc_start);
594 tce_alloc_end = (unsigned long)__va(tce_alloc_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 if (base + size >= tce_alloc_start)
597 tce_alloc_start = base + size + 1;
598
Michael Ellermancaf80e52006-03-21 20:45:51 +1100599 BUG_ON(htab_bolt_mapping(tce_alloc_start, tce_alloc_end,
600 __pa(tce_alloc_start), mode_rw,
Paul Mackerras1189be62007-10-11 20:37:10 +1000601 mmu_linear_psize, mmu_kernel_ssize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000604 htab_finish_init();
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 DBG(" <- htab_initialize()\n");
607}
608#undef KB
609#undef MB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Anton Blancharde597cb322005-12-29 10:46:29 +1100611void htab_initialize_secondary(void)
Paul Mackerras799d6042005-11-10 13:37:51 +1100612{
Michael Ellerman57cfb812006-03-21 20:45:59 +1100613 if (!firmware_has_feature(FW_FEATURE_LPAR))
Paul Mackerras799d6042005-11-10 13:37:51 +1100614 mtspr(SPRN_SDR1, _SDR1);
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*
618 * Called by asm hashtable.S for doing lazy icache flush
619 */
620unsigned int hash_page_do_lazy_icache(unsigned int pp, pte_t pte, int trap)
621{
622 struct page *page;
623
Benjamin Herrenschmidt76c8e252005-11-08 11:21:05 +1100624 if (!pfn_valid(pte_pfn(pte)))
625 return pp;
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 page = pte_page(pte);
628
629 /* page is dirty */
630 if (!test_bit(PG_arch_1, &page->flags) && !PageReserved(page)) {
631 if (trap == 0x400) {
632 __flush_dcache_icache(page_address(page));
633 set_bit(PG_arch_1, &page->flags);
634 } else
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100635 pp |= HPTE_R_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 return pp;
638}
639
Paul Mackerras721151d2007-04-03 21:24:02 +1000640/*
641 * Demote a segment to using 4k pages.
642 * For now this makes the whole process use 4k pages.
643 */
Paul Mackerras721151d2007-04-03 21:24:02 +1000644#ifdef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000645static void demote_segment_4k(struct mm_struct *mm, unsigned long addr)
646{
Paul Mackerras721151d2007-04-03 21:24:02 +1000647 if (mm->context.user_psize == MMU_PAGE_4K)
648 return;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000649 slice_set_user_psize(mm, MMU_PAGE_4K);
Geert Uytterhoeven1e57ba82007-07-17 02:35:38 +1000650#ifdef CONFIG_SPU_BASE
Paul Mackerras721151d2007-04-03 21:24:02 +1000651 spu_flush_all_slbs(mm);
652#endif
Paul Mackerras721151d2007-04-03 21:24:02 +1000653}
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000654#endif /* CONFIG_PPC_64K_PAGES */
Paul Mackerras721151d2007-04-03 21:24:02 +1000655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656/* Result code is:
657 * 0 - handled
658 * 1 - normal page fault
659 * -1 - critical hash insertion error
660 */
661int hash_page(unsigned long ea, unsigned long access, unsigned long trap)
662{
663 void *pgdir;
664 unsigned long vsid;
665 struct mm_struct *mm;
666 pte_t *ptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 cpumask_t tmp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100668 int rc, user_region = 0, local = 0;
Paul Mackerras1189be62007-10-11 20:37:10 +1000669 int psize, ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100671 DBG_LOW("hash_page(ea=%016lx, access=%lx, trap=%lx\n",
672 ea, access, trap);
David Gibson1f8d4192005-05-05 16:15:13 -0700673
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100674 if ((ea & ~REGION_MASK) >= PGTABLE_RANGE) {
675 DBG_LOW(" out of pgtable range !\n");
676 return 1;
677 }
678
679 /* Get region & vsid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 switch (REGION_ID(ea)) {
681 case USER_REGION_ID:
682 user_region = 1;
683 mm = current->mm;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100684 if (! mm) {
685 DBG_LOW(" user region with no mm !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100687 }
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000688#ifdef CONFIG_PPC_MM_SLICES
689 psize = get_slice_psize(mm, ea);
690#else
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000691 psize = mm->context.user_psize;
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000692#endif
Paul Mackerras1189be62007-10-11 20:37:10 +1000693 ssize = user_segment_size(ea);
694 vsid = get_vsid(mm->context.id, ea, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 case VMALLOC_REGION_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 mm = &init_mm;
Paul Mackerras1189be62007-10-11 20:37:10 +1000698 vsid = get_kernel_vsid(ea, mmu_kernel_ssize);
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000699 if (ea < VMALLOC_END)
700 psize = mmu_vmalloc_psize;
701 else
702 psize = mmu_io_psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000703 ssize = mmu_kernel_ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 default:
706 /* Not a valid range
707 * Send the problem up to do_page_fault
708 */
709 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100711 DBG_LOW(" mm=%p, mm->pgdir=%p, vsid=%016lx\n", mm, mm->pgd, vsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100713 /* Get pgdir */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 pgdir = mm->pgd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (pgdir == NULL)
716 return 1;
717
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100718 /* Check CPU locality */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 tmp = cpumask_of_cpu(smp_processor_id());
720 if (user_region && cpus_equal(mm->cpu_vm_mask, tmp))
721 local = 1;
722
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000723#ifdef CONFIG_HUGETLB_PAGE
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100724 /* Handle hugepage regions */
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000725 if (HPAGE_SHIFT && psize == mmu_huge_psize) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100726 DBG_LOW(" -> huge page !\n");
David Gibsoncbf52af2005-12-09 14:20:52 +1100727 return hash_huge_page(mm, access, ea, vsid, local, trap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000729#endif /* CONFIG_HUGETLB_PAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000731#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
734 * we fetch the PTE
735 */
736 if (psize != MMU_PAGE_4K)
737 ea &= ~((1ul << mmu_psize_defs[psize].shift) - 1);
738#endif /* CONFIG_PPC_64K_PAGES */
739
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100740 /* 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");
744 return 1;
745 }
746
747#ifndef CONFIG_PPC_64K_PAGES
748 DBG_LOW(" i-pte: %016lx\n", pte_val(*ptep));
749#else
750 DBG_LOW(" i-pte: %016lx %016lx\n", pte_val(*ptep),
751 pte_val(*(ptep + PTRS_PER_PTE)));
752#endif
753 /* Pre-check access permissions (will be re-checked atomically
754 * in __hash_page_XX but this pre-check is a fast path
755 */
756 if (access & ~pte_val(*ptep)) {
757 DBG_LOW(" no access !\n");
758 return 1;
759 }
760
761 /* Do actual hashing */
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000762#ifdef CONFIG_PPC_64K_PAGES
Paul Mackerras721151d2007-04-03 21:24:02 +1000763 /* 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);
766 psize = MMU_PAGE_4K;
767 }
768
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000769 /* If this PTE is non-cacheable and we have restrictions on
770 * using non cacheable large pages, then we switch to 4k
771 */
772 if (mmu_ci_restrictions && psize == MMU_PAGE_64K &&
773 (pte_val(*ptep) & _PAGE_NO_CACHE)) {
774 if (user_region) {
775 demote_segment_4k(mm, ea);
776 psize = MMU_PAGE_4K;
777 } else if (ea < VMALLOC_END) {
778 /*
779 * some driver did a non-cacheable mapping
780 * in vmalloc space, so switch vmalloc
781 * to 4k pages
782 */
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;
Geert Uytterhoeven1e57ba82007-07-17 02:35:38 +1000787#ifdef CONFIG_SPU_BASE
Benjamin Herrenschmidt94b2a432007-03-10 00:05:37 +0100788 spu_flush_all_slbs(mm);
789#endif
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000790 }
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000791 }
792 if (user_region) {
793 if (psize != get_paca()->context.user_psize) {
Benjamin Herrenschmidtf6ab0b92007-10-29 12:05:18 +1100794 get_paca()->context = mm->context;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000795 slb_flush_and_rebolt();
796 }
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000797 } else if (get_paca()->vmalloc_sllp !=
798 mmu_psize_defs[mmu_vmalloc_psize].sllp) {
799 get_paca()->vmalloc_sllp =
800 mmu_psize_defs[mmu_vmalloc_psize].sllp;
Michael Neuling67439b72007-08-03 11:55:39 +1000801 slb_vmalloc_update();
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000802 }
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000803#endif /* CONFIG_PPC_64K_PAGES */
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000804
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000805#ifdef CONFIG_PPC_HAS_HASH_64K
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000806 if (psize == MMU_PAGE_64K)
Paul Mackerras1189be62007-10-11 20:37:10 +1000807 rc = __hash_page_64K(ea, access, vsid, ptep, trap, local, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100808 else
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000809#endif /* CONFIG_PPC_HAS_HASH_64K */
Paul Mackerras1189be62007-10-11 20:37:10 +1000810 rc = __hash_page_4K(ea, access, vsid, ptep, trap, local, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100811
812#ifndef CONFIG_PPC_64K_PAGES
813 DBG_LOW(" o-pte: %016lx\n", pte_val(*ptep));
814#else
815 DBG_LOW(" o-pte: %016lx %016lx\n", pte_val(*ptep),
816 pte_val(*(ptep + PTRS_PER_PTE)));
817#endif
818 DBG_LOW(" -> rc=%d\n", rc);
819 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500821EXPORT_SYMBOL_GPL(hash_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100823void hash_preload(struct mm_struct *mm, unsigned long ea,
824 unsigned long access, unsigned long trap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100826 unsigned long vsid;
827 void *pgdir;
828 pte_t *ptep;
829 cpumask_t mask;
830 unsigned long flags;
831 int local = 0;
Paul Mackerras1189be62007-10-11 20:37:10 +1000832 int ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000834 BUG_ON(REGION_ID(ea) != USER_REGION_ID);
835
836#ifdef CONFIG_PPC_MM_SLICES
837 /* We only prefault standard pages for now */
Ilpo Järvinen2b02d132007-08-16 08:03:35 +1000838 if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100839 return;
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000840#endif
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100841
842 DBG_LOW("hash_preload(mm=%p, mm->pgdir=%p, ea=%016lx, access=%lx,"
843 " trap=%lx\n", mm, mm->pgd, ea, access, trap);
844
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000845 /* Get Linux PTE if available */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100846 pgdir = mm->pgd;
847 if (pgdir == NULL)
848 return;
849 ptep = find_linux_pte(pgdir, ea);
850 if (!ptep)
851 return;
Benjamin Herrenschmidt16f1c742007-05-08 16:27:27 +1000852
853#ifdef CONFIG_PPC_64K_PAGES
854 /* If either _PAGE_4K_PFN or _PAGE_NO_CACHE is set (and we are on
855 * a 64K kernel), then we don't preload, hash_page() will take
856 * care of it once we actually try to access the page.
857 * That way we don't have to duplicate all of the logic for segment
858 * page size demotion here
859 */
860 if (pte_val(*ptep) & (_PAGE_4K_PFN | _PAGE_NO_CACHE))
861 return;
862#endif /* CONFIG_PPC_64K_PAGES */
863
864 /* Get VSID */
Paul Mackerras1189be62007-10-11 20:37:10 +1000865 ssize = user_segment_size(ea);
866 vsid = get_vsid(mm->context.id, ea, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100867
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000868 /* Hash doesn't like irqs */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100869 local_irq_save(flags);
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000870
871 /* Is that local to this CPU ? */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100872 mask = cpumask_of_cpu(smp_processor_id());
873 if (cpus_equal(mm->cpu_vm_mask, mask))
874 local = 1;
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000875
876 /* Hash it in */
877#ifdef CONFIG_PPC_HAS_HASH_64K
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000878 if (mm->context.user_psize == MMU_PAGE_64K)
Paul Mackerras1189be62007-10-11 20:37:10 +1000879 __hash_page_64K(ea, access, vsid, ptep, trap, local, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 else
Jon Tollefson5b825832007-05-17 04:43:02 +1000881#endif /* CONFIG_PPC_HAS_HASH_64K */
Paul Mackerras1189be62007-10-11 20:37:10 +1000882 __hash_page_4K(ea, access, vsid, ptep, trap, local, ssize);
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000883
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100884 local_irq_restore(flags);
885}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Benjamin Herrenschmidtf6ab0b92007-10-29 12:05:18 +1100887/* WARNING: This is called from hash_low_64.S, if you change this prototype,
888 * do not forget to update the assembly call site !
889 */
Paul Mackerras1189be62007-10-11 20:37:10 +1000890void flush_hash_page(unsigned long va, real_pte_t pte, int psize, int ssize,
891 int local)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100892{
893 unsigned long hash, index, shift, hidx, slot;
894
895 DBG_LOW("flush_hash_page(va=%016x)\n", va);
896 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000897 hash = hpt_hash(va, shift, ssize);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100898 hidx = __rpte_to_hidx(pte, index);
899 if (hidx & _PTEIDX_SECONDARY)
900 hash = ~hash;
901 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
902 slot += hidx & _PTEIDX_GROUP_IX;
903 DBG_LOW(" sub %d: hash=%x, hidx=%x\n", index, slot, hidx);
Paul Mackerras1189be62007-10-11 20:37:10 +1000904 ppc_md.hpte_invalidate(slot, va, psize, ssize, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100905 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000908void flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100910 if (ppc_md.flush_hash_range)
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000911 ppc_md.flush_hash_range(number, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100912 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 int i;
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000914 struct ppc64_tlb_batch *batch =
915 &__get_cpu_var(ppc64_tlb_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 for (i = 0; i < number; i++)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100918 flush_hash_page(batch->vaddr[i], batch->pte[i],
Paul Mackerras1189be62007-10-11 20:37:10 +1000919 batch->psize, batch->ssize, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921}
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923/*
924 * low_hash_fault is called when we the low level hash code failed
925 * to instert a PTE due to an hypervisor error
926 */
927void low_hash_fault(struct pt_regs *regs, unsigned long address)
928{
929 if (user_mode(regs)) {
930 siginfo_t info;
931
932 info.si_signo = SIGBUS;
933 info.si_errno = 0;
934 info.si_code = BUS_ADRERR;
935 info.si_addr = (void __user *)address;
936 force_sig_info(SIGBUS, &info, current);
937 return;
938 }
939 bad_page_fault(regs, address, SIGBUS);
940}
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000941
942#ifdef CONFIG_DEBUG_PAGEALLOC
943static void kernel_map_linear_page(unsigned long vaddr, unsigned long lmi)
944{
Paul Mackerras1189be62007-10-11 20:37:10 +1000945 unsigned long hash, hpteg;
946 unsigned long vsid = get_kernel_vsid(vaddr, mmu_kernel_ssize);
947 unsigned long va = hpt_va(vaddr, vsid, mmu_kernel_ssize);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000948 unsigned long mode = _PAGE_ACCESSED | _PAGE_DIRTY |
949 _PAGE_COHERENT | PP_RWXX | HPTE_R_N;
950 int ret;
951
Paul Mackerras1189be62007-10-11 20:37:10 +1000952 hash = hpt_hash(va, PAGE_SHIFT, mmu_kernel_ssize);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000953 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
954
955 ret = ppc_md.hpte_insert(hpteg, va, __pa(vaddr),
Paul Mackerras1189be62007-10-11 20:37:10 +1000956 mode, HPTE_V_BOLTED,
957 mmu_linear_psize, mmu_kernel_ssize);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000958 BUG_ON (ret < 0);
959 spin_lock(&linear_map_hash_lock);
960 BUG_ON(linear_map_hash_slots[lmi] & 0x80);
961 linear_map_hash_slots[lmi] = ret | 0x80;
962 spin_unlock(&linear_map_hash_lock);
963}
964
965static void kernel_unmap_linear_page(unsigned long vaddr, unsigned long lmi)
966{
Paul Mackerras1189be62007-10-11 20:37:10 +1000967 unsigned long hash, hidx, slot;
968 unsigned long vsid = get_kernel_vsid(vaddr, mmu_kernel_ssize);
969 unsigned long va = hpt_va(vaddr, vsid, mmu_kernel_ssize);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000970
Paul Mackerras1189be62007-10-11 20:37:10 +1000971 hash = hpt_hash(va, PAGE_SHIFT, mmu_kernel_ssize);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000972 spin_lock(&linear_map_hash_lock);
973 BUG_ON(!(linear_map_hash_slots[lmi] & 0x80));
974 hidx = linear_map_hash_slots[lmi] & 0x7f;
975 linear_map_hash_slots[lmi] = 0;
976 spin_unlock(&linear_map_hash_lock);
977 if (hidx & _PTEIDX_SECONDARY)
978 hash = ~hash;
979 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
980 slot += hidx & _PTEIDX_GROUP_IX;
Paul Mackerras1189be62007-10-11 20:37:10 +1000981 ppc_md.hpte_invalidate(slot, va, mmu_linear_psize, mmu_kernel_ssize, 0);
Benjamin Herrenschmidt370a9082007-04-12 15:30:23 +1000982}
983
984void kernel_map_pages(struct page *page, int numpages, int enable)
985{
986 unsigned long flags, vaddr, lmi;
987 int i;
988
989 local_irq_save(flags);
990 for (i = 0; i < numpages; i++, page++) {
991 vaddr = (unsigned long)page_address(page);
992 lmi = __pa(vaddr) >> PAGE_SHIFT;
993 if (lmi >= linear_map_hash_count)
994 continue;
995 if (enable)
996 kernel_map_linear_page(vaddr, lmi);
997 else
998 kernel_unmap_linear_page(vaddr, lmi);
999 }
1000 local_irq_restore(flags);
1001}
1002#endif /* CONFIG_DEBUG_PAGEALLOC */