blob: 3d83c3b84f0eed0c3fadf0f4e843b75633c1cf00 [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
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110062#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
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
84extern unsigned long dart_tablebase;
85#endif /* CONFIG_U3_DART */
86
David Gibson96e28442005-07-13 01:11:42 -070087hpte_t *htab_address;
88unsigned long htab_hash_mask;
Paul Mackerrasab1f9da2005-10-10 21:58:35 +100089unsigned long _SDR1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110090struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];
91int mmu_linear_psize = MMU_PAGE_4K;
92int mmu_virtual_psize = MMU_PAGE_4K;
93#ifdef CONFIG_HUGETLB_PAGE
94int mmu_huge_psize = MMU_PAGE_16M;
95unsigned int HPAGE_SHIFT;
96#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110098/* There are definitions of page sizes arrays to be used when none
99 * is provided by the firmware.
100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100102/* Pre-POWER4 CPUs (4k pages only)
103 */
104struct mmu_psize_def mmu_psize_defaults_old[] = {
105 [MMU_PAGE_4K] = {
106 .shift = 12,
107 .sllp = 0,
108 .penc = 0,
109 .avpnm = 0,
110 .tlbiel = 0,
111 },
112};
113
114/* POWER4, GPUL, POWER5
115 *
116 * Support for 16Mb large pages
117 */
118struct mmu_psize_def mmu_psize_defaults_gp[] = {
119 [MMU_PAGE_4K] = {
120 .shift = 12,
121 .sllp = 0,
122 .penc = 0,
123 .avpnm = 0,
124 .tlbiel = 1,
125 },
126 [MMU_PAGE_16M] = {
127 .shift = 24,
128 .sllp = SLB_VSID_L,
129 .penc = 0,
130 .avpnm = 0x1UL,
131 .tlbiel = 0,
132 },
133};
134
135
136int htab_bolt_mapping(unsigned long vstart, unsigned long vend,
137 unsigned long pstart, unsigned long mode, int psize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100139 unsigned long vaddr, paddr;
140 unsigned int step, shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned long tmp_mode;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100142 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100144 shift = mmu_psize_defs[psize].shift;
145 step = 1 << shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100147 for (vaddr = vstart, paddr = pstart; vaddr < vend;
148 vaddr += step, paddr += step) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned long vpn, hash, hpteg;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100150 unsigned long vsid = get_kernel_vsid(vaddr);
151 unsigned long va = (vsid << 28) | (vaddr & 0x0fffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100153 vpn = va >> shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 tmp_mode = mode;
155
156 /* Make non-kernel text non-executable */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100157 if (!in_kernel_text(vaddr))
158 tmp_mode = mode | HPTE_R_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100160 hash = hpt_hash(va, shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
162
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100163 /* The crap below can be cleaned once ppd_md.probe() can
164 * set up the hash callbacks, thus we can just used the
165 * normal insert callback here.
166 */
Michael Ellerman4c551302005-09-23 14:47:58 +1000167#ifdef CONFIG_PPC_ISERIES
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100168 if (systemcfg->platform == PLATFORM_ISERIES_LPAR)
169 ret = iSeries_hpte_insert(hpteg, va,
170 virt_to_abs(paddr),
171 tmp_mode,
172 HPTE_V_BOLTED,
173 psize);
Michael Ellerman4c551302005-09-23 14:47:58 +1000174 else
175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#ifdef CONFIG_PPC_PSERIES
177 if (systemcfg->platform & PLATFORM_LPAR)
178 ret = pSeries_lpar_hpte_insert(hpteg, va,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100179 virt_to_abs(paddr),
180 tmp_mode,
181 HPTE_V_BOLTED,
182 psize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 else
Michael Ellerman4c551302005-09-23 14:47:58 +1000184#endif
185#ifdef CONFIG_PPC_MULTIPLATFORM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 ret = native_hpte_insert(hpteg, va,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100187 virt_to_abs(paddr),
188 tmp_mode, HPTE_V_BOLTED,
189 psize);
Michael Ellerman4c551302005-09-23 14:47:58 +1000190#endif
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100191 if (ret < 0)
192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100194 return ret < 0 ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100197static int __init htab_dt_scan_page_sizes(unsigned long node,
198 const char *uname, int depth,
199 void *data)
200{
201 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
202 u32 *prop;
203 unsigned long size = 0;
204
205 /* We are scanning "cpu" nodes only */
206 if (type == NULL || strcmp(type, "cpu") != 0)
207 return 0;
208
209 prop = (u32 *)of_get_flat_dt_prop(node,
210 "ibm,segment-page-sizes", &size);
211 if (prop != NULL) {
212 DBG("Page sizes from device-tree:\n");
213 size /= 4;
214 cur_cpu_spec->cpu_features &= ~(CPU_FTR_16M_PAGE);
215 while(size > 0) {
216 unsigned int shift = prop[0];
217 unsigned int slbenc = prop[1];
218 unsigned int lpnum = prop[2];
219 unsigned int lpenc = 0;
220 struct mmu_psize_def *def;
221 int idx = -1;
222
223 size -= 3; prop += 3;
224 while(size > 0 && lpnum) {
225 if (prop[0] == shift)
226 lpenc = prop[1];
227 prop += 2; size -= 2;
228 lpnum--;
229 }
230 switch(shift) {
231 case 0xc:
232 idx = MMU_PAGE_4K;
233 break;
234 case 0x10:
235 idx = MMU_PAGE_64K;
236 break;
237 case 0x14:
238 idx = MMU_PAGE_1M;
239 break;
240 case 0x18:
241 idx = MMU_PAGE_16M;
242 cur_cpu_spec->cpu_features |= CPU_FTR_16M_PAGE;
243 break;
244 case 0x22:
245 idx = MMU_PAGE_16G;
246 break;
247 }
248 if (idx < 0)
249 continue;
250 def = &mmu_psize_defs[idx];
251 def->shift = shift;
252 if (shift <= 23)
253 def->avpnm = 0;
254 else
255 def->avpnm = (1 << (shift - 23)) - 1;
256 def->sllp = slbenc;
257 def->penc = lpenc;
258 /* We don't know for sure what's up with tlbiel, so
259 * for now we only set it for 4K and 64K pages
260 */
261 if (idx == MMU_PAGE_4K || idx == MMU_PAGE_64K)
262 def->tlbiel = 1;
263 else
264 def->tlbiel = 0;
265
266 DBG(" %d: shift=%02x, sllp=%04x, avpnm=%08x, "
267 "tlbiel=%d, penc=%d\n",
268 idx, shift, def->sllp, def->avpnm, def->tlbiel,
269 def->penc);
270 }
271 return 1;
272 }
273 return 0;
274}
275
276
277static void __init htab_init_page_sizes(void)
278{
279 int rc;
280
281 /* Default to 4K pages only */
282 memcpy(mmu_psize_defs, mmu_psize_defaults_old,
283 sizeof(mmu_psize_defaults_old));
284
285 /*
286 * Try to find the available page sizes in the device-tree
287 */
288 rc = of_scan_flat_dt(htab_dt_scan_page_sizes, NULL);
289 if (rc != 0) /* Found */
290 goto found;
291
292 /*
293 * Not in the device-tree, let's fallback on known size
294 * list for 16M capable GP & GR
295 */
296 if ((systemcfg->platform != PLATFORM_ISERIES_LPAR) &&
297 cpu_has_feature(CPU_FTR_16M_PAGE))
298 memcpy(mmu_psize_defs, mmu_psize_defaults_gp,
299 sizeof(mmu_psize_defaults_gp));
300 found:
301 /*
302 * Pick a size for the linear mapping. Currently, we only support
303 * 16M, 1M and 4K which is the default
304 */
305 if (mmu_psize_defs[MMU_PAGE_16M].shift)
306 mmu_linear_psize = MMU_PAGE_16M;
307 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
308 mmu_linear_psize = MMU_PAGE_1M;
309
310 /*
311 * Pick a size for the ordinary pages. Default is 4K, we support
312 * 64K if cache inhibited large pages are supported by the
313 * processor
314 */
315#ifdef CONFIG_PPC_64K_PAGES
316 if (mmu_psize_defs[MMU_PAGE_64K].shift &&
317 cpu_has_feature(CPU_FTR_CI_LARGE_PAGE))
318 mmu_virtual_psize = MMU_PAGE_64K;
319#endif
320
321 printk(KERN_INFO "Page orders: linear mapping = %d, others = %d\n",
322 mmu_psize_defs[mmu_linear_psize].shift,
323 mmu_psize_defs[mmu_virtual_psize].shift);
324
325#ifdef CONFIG_HUGETLB_PAGE
326 /* Init large page size. Currently, we pick 16M or 1M depending
327 * on what is available
328 */
329 if (mmu_psize_defs[MMU_PAGE_16M].shift)
330 mmu_huge_psize = MMU_PAGE_16M;
David Gibson7d24f0b2005-11-07 00:57:52 -0800331 /* With 4k/4level pagetables, we can't (for now) cope with a
332 * huge page size < PMD_SIZE */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100333 else if (mmu_psize_defs[MMU_PAGE_1M].shift)
334 mmu_huge_psize = MMU_PAGE_1M;
335
336 /* Calculate HPAGE_SHIFT and sanity check it */
David Gibson7d24f0b2005-11-07 00:57:52 -0800337 if (mmu_psize_defs[mmu_huge_psize].shift > MIN_HUGEPTE_SHIFT &&
338 mmu_psize_defs[mmu_huge_psize].shift < SID_SHIFT)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100339 HPAGE_SHIFT = mmu_psize_defs[mmu_huge_psize].shift;
340 else
341 HPAGE_SHIFT = 0; /* No huge pages dude ! */
342#endif /* CONFIG_HUGETLB_PAGE */
343}
344
345static int __init htab_dt_scan_pftsize(unsigned long node,
346 const char *uname, int depth,
347 void *data)
348{
349 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
350 u32 *prop;
351
352 /* We are scanning "cpu" nodes only */
353 if (type == NULL || strcmp(type, "cpu") != 0)
354 return 0;
355
356 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,pft-size", NULL);
357 if (prop != NULL) {
358 /* pft_size[0] is the NUMA CEC cookie */
359 ppc64_pft_size = prop[1];
360 return 1;
361 }
362 return 0;
363}
364
365static unsigned long __init htab_get_table_size(void)
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000366{
367 unsigned long rnd_mem_size, pteg_count;
368
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100369 /* If hash size isn't already provided by the platform, we try to
370 * retreive it from the device-tree. If it's not there neither, we
371 * calculate it now based on the total RAM size
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000372 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100373 if (ppc64_pft_size == 0)
374 of_scan_flat_dt(htab_dt_scan_pftsize, NULL);
Paul Mackerras3eac8c62005-10-12 16:58:53 +1000375 if (ppc64_pft_size)
376 return 1UL << ppc64_pft_size;
377
378 /* round mem_size up to next power of 2 */
379 rnd_mem_size = 1UL << __ilog2(systemcfg->physicalMemorySize);
380 if (rnd_mem_size < systemcfg->physicalMemorySize)
381 rnd_mem_size <<= 1;
382
383 /* # pages / 2 */
384 pteg_count = max(rnd_mem_size >> (12 + 1), 1UL << 11);
385
386 return pteg_count << 7;
387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389void __init htab_initialize(void)
390{
391 unsigned long table, htab_size_bytes;
392 unsigned long pteg_count;
393 unsigned long mode_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 unsigned long base = 0, size = 0;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100395 int i;
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 extern unsigned long tce_alloc_start, tce_alloc_end;
398
399 DBG(" -> htab_initialize()\n");
400
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100401 /* Initialize page sizes */
402 htab_init_page_sizes();
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /*
405 * Calculate the required size of the htab. We want the number of
406 * PTEGs to equal one half the number of real pages.
407 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100408 htab_size_bytes = htab_get_table_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 pteg_count = htab_size_bytes >> 7;
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 htab_hash_mask = pteg_count - 1;
412
413 if (systemcfg->platform & PLATFORM_LPAR) {
414 /* Using a hypervisor which owns the htab */
415 htab_address = NULL;
416 _SDR1 = 0;
417 } else {
418 /* Find storage for the HPT. Must be contiguous in
419 * the absolute address space.
420 */
421 table = lmb_alloc(htab_size_bytes, htab_size_bytes);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100422 BUG_ON(table == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 DBG("Hash table allocated at %lx, size: %lx\n", table,
425 htab_size_bytes);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 htab_address = abs_to_virt(table);
428
429 /* htab absolute addr + encoded htabsize */
430 _SDR1 = table + __ilog2(pteg_count) - 11;
431
432 /* Initialize the HPT with no entries */
433 memset((void *)table, 0, htab_size_bytes);
434 }
435
Anton Blanchard515bae92005-06-21 17:15:55 -0700436 mode_rw = _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* On U3 based machines, we need to reserve the DART area and
439 * _NOT_ map it to avoid cache paradoxes as it's remapped non
440 * cacheable later on
441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 /* create bolted the linear mapping in the hash table */
444 for (i=0; i < lmb.memory.cnt; i++) {
Michael Ellerman180379d2005-08-03 20:21:26 +1000445 base = lmb.memory.region[i].base + KERNELBASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 size = lmb.memory.region[i].size;
447
448 DBG("creating mapping for region: %lx : %lx\n", base, size);
449
450#ifdef CONFIG_U3_DART
451 /* Do not map the DART space. Fortunately, it will be aligned
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100452 * in such a way that it will not cross two lmb regions and
453 * will fit within a single 16Mb page.
454 * The DART space is assumed to be a full 16Mb region even if
455 * we only use 2Mb of that space. We will use more of it later
456 * for AGP GART. We have to use a full 16Mb large page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 */
458 DBG("DART base: %lx\n", dart_tablebase);
459
460 if (dart_tablebase != 0 && dart_tablebase >= base
461 && dart_tablebase < (base + size)) {
462 if (base != dart_tablebase)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100463 BUG_ON(htab_bolt_mapping(base, dart_tablebase,
464 base, mode_rw,
465 mmu_linear_psize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if ((base + size) > (dart_tablebase + 16*MB))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100467 BUG_ON(htab_bolt_mapping(dart_tablebase+16*MB,
468 base + size,
469 dart_tablebase+16*MB,
470 mode_rw,
471 mmu_linear_psize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 continue;
473 }
474#endif /* CONFIG_U3_DART */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100475 BUG_ON(htab_bolt_mapping(base, base + size, base,
476 mode_rw, mmu_linear_psize));
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 /*
480 * If we have a memory_limit and we've allocated TCEs then we need to
481 * explicitly map the TCE area at the top of RAM. We also cope with the
482 * case that the TCEs start below memory_limit.
483 * tce_alloc_start/end are 16MB aligned so the mapping should work
484 * for either 4K or 16MB pages.
485 */
486 if (tce_alloc_start) {
487 tce_alloc_start += KERNELBASE;
488 tce_alloc_end += KERNELBASE;
489
490 if (base + size >= tce_alloc_start)
491 tce_alloc_start = base + size + 1;
492
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100493 BUG_ON(htab_bolt_mapping(tce_alloc_start, tce_alloc_end,
494 tce_alloc_start, mode_rw,
495 mmu_linear_psize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
498 DBG(" <- htab_initialize()\n");
499}
500#undef KB
501#undef MB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503/*
504 * Called by asm hashtable.S for doing lazy icache flush
505 */
506unsigned int hash_page_do_lazy_icache(unsigned int pp, pte_t pte, int trap)
507{
508 struct page *page;
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 page = pte_page(pte);
511
512 /* page is dirty */
513 if (!test_bit(PG_arch_1, &page->flags) && !PageReserved(page)) {
514 if (trap == 0x400) {
515 __flush_dcache_icache(page_address(page));
516 set_bit(PG_arch_1, &page->flags);
517 } else
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100518 pp |= HPTE_R_N;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 return pp;
521}
522
523/* Result code is:
524 * 0 - handled
525 * 1 - normal page fault
526 * -1 - critical hash insertion error
527 */
528int hash_page(unsigned long ea, unsigned long access, unsigned long trap)
529{
530 void *pgdir;
531 unsigned long vsid;
532 struct mm_struct *mm;
533 pte_t *ptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 cpumask_t tmp;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100535 int rc, user_region = 0, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100537 DBG_LOW("hash_page(ea=%016lx, access=%lx, trap=%lx\n",
538 ea, access, trap);
David Gibson1f8d4192005-05-05 16:15:13 -0700539
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100540 if ((ea & ~REGION_MASK) >= PGTABLE_RANGE) {
541 DBG_LOW(" out of pgtable range !\n");
542 return 1;
543 }
544
545 /* Get region & vsid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 switch (REGION_ID(ea)) {
547 case USER_REGION_ID:
548 user_region = 1;
549 mm = current->mm;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100550 if (! mm) {
551 DBG_LOW(" user region with no mm !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return 1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 vsid = get_vsid(mm->context.id, ea);
555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case VMALLOC_REGION_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 mm = &init_mm;
558 vsid = get_kernel_vsid(ea);
559 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 default:
561 /* Not a valid range
562 * Send the problem up to do_page_fault
563 */
564 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100566 DBG_LOW(" mm=%p, mm->pgdir=%p, vsid=%016lx\n", mm, mm->pgd, vsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100568 /* Get pgdir */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 pgdir = mm->pgd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (pgdir == NULL)
571 return 1;
572
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100573 /* Check CPU locality */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 tmp = cpumask_of_cpu(smp_processor_id());
575 if (user_region && cpus_equal(mm->cpu_vm_mask, tmp))
576 local = 1;
577
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100578 /* Handle hugepage regions */
579 if (unlikely(in_hugepage_area(mm->context, ea))) {
580 DBG_LOW(" -> huge page !\n");
581 return hash_huge_page(mm, access, ea, vsid, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100584 /* Get PTE and page size from page tables */
585 ptep = find_linux_pte(pgdir, ea);
586 if (ptep == NULL || !pte_present(*ptep)) {
587 DBG_LOW(" no PTE !\n");
588 return 1;
589 }
590
591#ifndef CONFIG_PPC_64K_PAGES
592 DBG_LOW(" i-pte: %016lx\n", pte_val(*ptep));
593#else
594 DBG_LOW(" i-pte: %016lx %016lx\n", pte_val(*ptep),
595 pte_val(*(ptep + PTRS_PER_PTE)));
596#endif
597 /* Pre-check access permissions (will be re-checked atomically
598 * in __hash_page_XX but this pre-check is a fast path
599 */
600 if (access & ~pte_val(*ptep)) {
601 DBG_LOW(" no access !\n");
602 return 1;
603 }
604
605 /* Do actual hashing */
606#ifndef CONFIG_PPC_64K_PAGES
607 rc = __hash_page_4K(ea, access, vsid, ptep, trap, local);
608#else
609 if (mmu_virtual_psize == MMU_PAGE_64K)
610 rc = __hash_page_64K(ea, access, vsid, ptep, trap, local);
611 else
612 rc = __hash_page_4K(ea, access, vsid, ptep, trap, local);
613#endif /* CONFIG_PPC_64K_PAGES */
614
615#ifndef CONFIG_PPC_64K_PAGES
616 DBG_LOW(" o-pte: %016lx\n", pte_val(*ptep));
617#else
618 DBG_LOW(" o-pte: %016lx %016lx\n", pte_val(*ptep),
619 pte_val(*(ptep + PTRS_PER_PTE)));
620#endif
621 DBG_LOW(" -> rc=%d\n", rc);
622 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100625void hash_preload(struct mm_struct *mm, unsigned long ea,
626 unsigned long access, unsigned long trap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100628 unsigned long vsid;
629 void *pgdir;
630 pte_t *ptep;
631 cpumask_t mask;
632 unsigned long flags;
633 int local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100635 /* We don't want huge pages prefaulted for now
636 */
637 if (unlikely(in_hugepage_area(mm->context, ea)))
638 return;
639
640 DBG_LOW("hash_preload(mm=%p, mm->pgdir=%p, ea=%016lx, access=%lx,"
641 " trap=%lx\n", mm, mm->pgd, ea, access, trap);
642
643 /* Get PTE, VSID, access mask */
644 pgdir = mm->pgd;
645 if (pgdir == NULL)
646 return;
647 ptep = find_linux_pte(pgdir, ea);
648 if (!ptep)
649 return;
650 vsid = get_vsid(mm->context.id, ea);
651
652 /* Hash it in */
653 local_irq_save(flags);
654 mask = cpumask_of_cpu(smp_processor_id());
655 if (cpus_equal(mm->cpu_vm_mask, mask))
656 local = 1;
657#ifndef CONFIG_PPC_64K_PAGES
658 __hash_page_4K(ea, access, vsid, ptep, trap, local);
659#else
660 if (mmu_virtual_psize == MMU_PAGE_64K)
661 __hash_page_64K(ea, access, vsid, ptep, trap, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 else
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100663 __hash_page_4K(ea, access, vsid, ptep, trap, local);
664#endif /* CONFIG_PPC_64K_PAGES */
665 local_irq_restore(flags);
666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100668void flush_hash_page(unsigned long va, real_pte_t pte, int psize, int local)
669{
670 unsigned long hash, index, shift, hidx, slot;
671
672 DBG_LOW("flush_hash_page(va=%016x)\n", va);
673 pte_iterate_hashed_subpages(pte, psize, va, index, shift) {
674 hash = hpt_hash(va, shift);
675 hidx = __rpte_to_hidx(pte, index);
676 if (hidx & _PTEIDX_SECONDARY)
677 hash = ~hash;
678 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
679 slot += hidx & _PTEIDX_GROUP_IX;
680 DBG_LOW(" sub %d: hash=%x, hidx=%x\n", index, slot, hidx);
681 ppc_md.hpte_invalidate(slot, va, psize, local);
682 } pte_iterate_hashed_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000685void flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100687 if (ppc_md.flush_hash_range)
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000688 ppc_md.flush_hash_range(number, local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100689 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 int i;
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000691 struct ppc64_tlb_batch *batch =
692 &__get_cpu_var(ppc64_tlb_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 for (i = 0; i < number; i++)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100695 flush_hash_page(batch->vaddr[i], batch->pte[i],
696 batch->psize, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698}
699
700static inline void make_bl(unsigned int *insn_addr, void *func)
701{
702 unsigned long funcp = *((unsigned long *)func);
703 int offset = funcp - (unsigned long)insn_addr;
704
705 *insn_addr = (unsigned int)(0x48000001 | (offset & 0x03fffffc));
706 flush_icache_range((unsigned long)insn_addr, 4+
707 (unsigned long)insn_addr);
708}
709
710/*
711 * low_hash_fault is called when we the low level hash code failed
712 * to instert a PTE due to an hypervisor error
713 */
714void low_hash_fault(struct pt_regs *regs, unsigned long address)
715{
716 if (user_mode(regs)) {
717 siginfo_t info;
718
719 info.si_signo = SIGBUS;
720 info.si_errno = 0;
721 info.si_code = BUS_ADRERR;
722 info.si_addr = (void __user *)address;
723 force_sig_info(SIGBUS, &info, current);
724 return;
725 }
726 bad_page_fault(regs, address, SIGBUS);
727}
728
729void __init htab_finish_init(void)
730{
731 extern unsigned int *htab_call_hpte_insert1;
732 extern unsigned int *htab_call_hpte_insert2;
733 extern unsigned int *htab_call_hpte_remove;
734 extern unsigned int *htab_call_hpte_updatepp;
735
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100736#ifdef CONFIG_PPC_64K_PAGES
737 extern unsigned int *ht64_call_hpte_insert1;
738 extern unsigned int *ht64_call_hpte_insert2;
739 extern unsigned int *ht64_call_hpte_remove;
740 extern unsigned int *ht64_call_hpte_updatepp;
741
742 make_bl(ht64_call_hpte_insert1, ppc_md.hpte_insert);
743 make_bl(ht64_call_hpte_insert2, ppc_md.hpte_insert);
744 make_bl(ht64_call_hpte_remove, ppc_md.hpte_remove);
745 make_bl(ht64_call_hpte_updatepp, ppc_md.hpte_updatepp);
746#endif /* CONFIG_PPC_64K_PAGES */
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 make_bl(htab_call_hpte_insert1, ppc_md.hpte_insert);
749 make_bl(htab_call_hpte_insert2, ppc_md.hpte_insert);
750 make_bl(htab_call_hpte_remove, ppc_md.hpte_remove);
751 make_bl(htab_call_hpte_updatepp, ppc_md.hpte_updatepp);
752}