blob: 1b1195555473dc9b4c60c314e8491ab43cf20629 [file] [log] [blame]
David Gibsonf88df142007-04-30 16:30:56 +10001#ifndef _ASM_POWERPC_PGTABLE_PPC32_H
2#define _ASM_POWERPC_PGTABLE_PPC32_H
3
David Gibsond1953c82007-05-08 12:46:49 +10004#include <asm-generic/pgtable-nopmd.h>
David Gibsonf88df142007-04-30 16:30:56 +10005
6#ifndef __ASSEMBLY__
7#include <linux/sched.h>
8#include <linux/threads.h>
David Gibsonf88df142007-04-30 16:30:56 +10009#include <asm/io.h> /* For sub-arch specific PPC_PIN_SIZE */
David Gibsonf88df142007-04-30 16:30:56 +100010
11extern unsigned long va_to_phys(unsigned long address);
12extern pte_t *va_to_pte(unsigned long address);
13extern unsigned long ioremap_bot, ioremap_base;
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +110014
15#ifdef CONFIG_44x
16extern int icache_44x_need_flush;
17#endif
18
David Gibsonf88df142007-04-30 16:30:56 +100019#endif /* __ASSEMBLY__ */
20
21/*
22 * The PowerPC MMU uses a hash table containing PTEs, together with
23 * a set of 16 segment registers (on 32-bit implementations), to define
24 * the virtual to physical address mapping.
25 *
26 * We use the hash table as an extended TLB, i.e. a cache of currently
27 * active mappings. We maintain a two-level page table tree, much
28 * like that used by the i386, for the sake of the Linux memory
29 * management code. Low-level assembler code in hashtable.S
30 * (procedure hash_page) is responsible for extracting ptes from the
31 * tree and putting them into the hash table when necessary, and
32 * updating the accessed and modified bits in the page table tree.
33 */
34
35/*
36 * The PowerPC MPC8xx uses a TLB with hardware assisted, software tablewalk.
37 * We also use the two level tables, but we can put the real bits in them
38 * needed for the TLB and tablewalk. These definitions require Mx_CTR.PPM = 0,
39 * Mx_CTR.PPCS = 0, and MD_CTR.TWAM = 1. The level 2 descriptor has
40 * additional page protection (when Mx_CTR.PPCS = 1) that allows TLB hit
41 * based upon user/super access. The TLB does not have accessed nor write
42 * protect. We assume that if the TLB get loaded with an entry it is
43 * accessed, and overload the changed bit for write protect. We use
44 * two bits in the software pte that are supposed to be set to zero in
45 * the TLB entry (24 and 25) for these indicators. Although the level 1
46 * descriptor contains the guarded and writethrough/copyback bits, we can
47 * set these at the page level since they get copied from the Mx_TWC
48 * register when the TLB entry is loaded. We will use bit 27 for guard, since
49 * that is where it exists in the MD_TWC, and bit 26 for writethrough.
50 * These will get masked from the level 2 descriptor at TLB load time, and
51 * copied to the MD_TWC before it gets loaded.
52 * Large page sizes added. We currently support two sizes, 4K and 8M.
53 * This also allows a TLB hander optimization because we can directly
54 * load the PMD into MD_TWC. The 8M pages are only used for kernel
55 * mapping of well known areas. The PMD (PGD) entries contain control
56 * flags in addition to the address, so care must be taken that the
57 * software no longer assumes these are only pointers.
58 */
59
60/*
61 * At present, all PowerPC 400-class processors share a similar TLB
62 * architecture. The instruction and data sides share a unified,
63 * 64-entry, fully-associative TLB which is maintained totally under
64 * software control. In addition, the instruction side has a
65 * hardware-managed, 4-entry, fully-associative TLB which serves as a
66 * first level to the shared TLB. These two TLBs are known as the UTLB
67 * and ITLB, respectively (see "mmu.h" for definitions).
68 */
69
70/*
71 * The normal case is that PTEs are 32-bits and we have a 1-page
72 * 1024-entry pgdir pointing to 1-page 1024-entry PTE pages. -- paulus
73 *
74 * For any >32-bit physical address platform, we can use the following
75 * two level page table layout where the pgdir is 8KB and the MS 13 bits
76 * are an index to the second level table. The combined pgdir/pmd first
77 * level has 2048 entries and the second level has 512 64-bit PTE entries.
78 * -Matt
79 */
David Gibsonf88df142007-04-30 16:30:56 +100080/* PGDIR_SHIFT determines what a top-level page table entry can map */
David Gibsond1953c82007-05-08 12:46:49 +100081#define PGDIR_SHIFT (PAGE_SHIFT + PTE_SHIFT)
David Gibsonf88df142007-04-30 16:30:56 +100082#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
83#define PGDIR_MASK (~(PGDIR_SIZE-1))
84
85/*
86 * entries per page directory level: our page-table tree is two-level, so
87 * we don't really have any PMD directory.
88 */
Kumar Galabee86f12007-12-06 13:11:04 -060089#ifndef __ASSEMBLY__
90#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_SHIFT)
91#define PGD_TABLE_SIZE (sizeof(pgd_t) << (32 - PGDIR_SHIFT))
92#endif /* __ASSEMBLY__ */
93
David Gibsonf88df142007-04-30 16:30:56 +100094#define PTRS_PER_PTE (1 << PTE_SHIFT)
95#define PTRS_PER_PMD 1
96#define PTRS_PER_PGD (1 << (32 - PGDIR_SHIFT))
97
98#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
99#define FIRST_USER_ADDRESS 0
100
David Gibsonf88df142007-04-30 16:30:56 +1000101#define pte_ERROR(e) \
David Gibson0aeafb02007-05-04 16:47:51 +1000102 printk("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \
103 (unsigned long long)pte_val(e))
David Gibsonf88df142007-04-30 16:30:56 +1000104#define pgd_ERROR(e) \
105 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
106
107/*
108 * Just any arbitrary offset to the start of the vmalloc VM area: the
109 * current 64MB value just means that there will be a 64MB "hole" after the
110 * physical memory until the kernel virtual memory starts. That means that
111 * any out-of-bounds memory accesses will hopefully be caught.
112 * The vmalloc() routines leaves a hole of 4kB between each vmalloced
113 * area for the same reason. ;)
114 *
115 * We no longer map larger than phys RAM with the BATs so we don't have
116 * to worry about the VMALLOC_OFFSET causing problems. We do have to worry
117 * about clashes between our early calls to ioremap() that start growing down
118 * from ioremap_base being run into the VM area allocations (growing upwards
119 * from VMALLOC_START). For this reason we have ioremap_bot to check when
120 * we actually run into our mappings setup in the early boot with the VM
121 * system. This really does become a problem for machines with good amounts
122 * of RAM. -- Cort
123 */
124#define VMALLOC_OFFSET (0x1000000) /* 16M */
125#ifdef PPC_PIN_SIZE
126#define VMALLOC_START (((_ALIGN((long)high_memory, PPC_PIN_SIZE) + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
127#else
128#define VMALLOC_START ((((long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
129#endif
130#define VMALLOC_END ioremap_bot
131
132/*
133 * Bits in a linux-style PTE. These match the bits in the
134 * (hardware-defined) PowerPC PTE as closely as possible.
135 */
136
137#if defined(CONFIG_40x)
138
139/* There are several potential gotchas here. The 40x hardware TLBLO
140 field looks like this:
141
142 0 1 2 3 4 ... 18 19 20 21 22 23 24 25 26 27 28 29 30 31
143 RPN..................... 0 0 EX WR ZSEL....... W I M G
144
145 Where possible we make the Linux PTE bits match up with this
146
147 - bits 20 and 21 must be cleared, because we use 4k pages (40x can
148 support down to 1k pages), this is done in the TLBMiss exception
149 handler.
150 - We use only zones 0 (for kernel pages) and 1 (for user pages)
151 of the 16 available. Bit 24-26 of the TLB are cleared in the TLB
152 miss handler. Bit 27 is PAGE_USER, thus selecting the correct
153 zone.
154 - PRESENT *must* be in the bottom two bits because swap cache
155 entries use the top 30 bits. Because 40x doesn't support SMP
156 anyway, M is irrelevant so we borrow it for PAGE_PRESENT. Bit 30
157 is cleared in the TLB miss handler before the TLB entry is loaded.
158 - All other bits of the PTE are loaded into TLBLO without
159 modification, leaving us only the bits 20, 21, 24, 25, 26, 30 for
160 software PTE bits. We actually use use bits 21, 24, 25, and
161 30 respectively for the software bits: ACCESSED, DIRTY, RW, and
162 PRESENT.
163*/
164
165/* Definitions for 40x embedded chips. */
166#define _PAGE_GUARDED 0x001 /* G: page is guarded from prefetch */
167#define _PAGE_FILE 0x001 /* when !present: nonlinear file mapping */
168#define _PAGE_PRESENT 0x002 /* software: PTE contains a translation */
169#define _PAGE_NO_CACHE 0x004 /* I: caching is inhibited */
170#define _PAGE_WRITETHRU 0x008 /* W: caching is write-through */
171#define _PAGE_USER 0x010 /* matches one of the zone permission bits */
172#define _PAGE_RW 0x040 /* software: Writes permitted */
173#define _PAGE_DIRTY 0x080 /* software: dirty page */
174#define _PAGE_HWWRITE 0x100 /* hardware: Dirty & RW, set in exception */
175#define _PAGE_HWEXEC 0x200 /* hardware: EX permission */
176#define _PAGE_ACCESSED 0x400 /* software: R: page referenced */
177
178#define _PMD_PRESENT 0x400 /* PMD points to page of PTEs */
179#define _PMD_BAD 0x802
180#define _PMD_SIZE 0x0e0 /* size field, != 0 for large-page PMD entry */
181#define _PMD_SIZE_4M 0x0c0
182#define _PMD_SIZE_16M 0x0e0
183#define PMD_PAGE_SIZE(pmdval) (1024 << (((pmdval) & _PMD_SIZE) >> 4))
184
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000185/* Until my rework is finished, 40x still needs atomic PTE updates */
186#define PTE_ATOMIC_UPDATES 1
187
David Gibsonf88df142007-04-30 16:30:56 +1000188#elif defined(CONFIG_44x)
189/*
190 * Definitions for PPC440
191 *
192 * Because of the 3 word TLB entries to support 36-bit addressing,
193 * the attribute are difficult to map in such a fashion that they
194 * are easily loaded during exception processing. I decided to
195 * organize the entry so the ERPN is the only portion in the
196 * upper word of the PTE and the attribute bits below are packed
197 * in as sensibly as they can be in the area below a 4KB page size
198 * oriented RPN. This at least makes it easy to load the RPN and
199 * ERPN fields in the TLB. -Matt
200 *
201 * Note that these bits preclude future use of a page size
202 * less than 4KB.
203 *
204 *
205 * PPC 440 core has following TLB attribute fields;
206 *
207 * TLB1:
208 * 0 1 2 3 4 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
209 * RPN................................. - - - - - - ERPN.......
210 *
211 * TLB2:
212 * 0 1 2 3 4 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
213 * - - - - - - U0 U1 U2 U3 W I M G E - UX UW UR SX SW SR
214 *
Stefan Roesea96df492008-05-05 16:53:19 +1000215 * Newer 440 cores (440x6 as used on AMCC 460EX/460GT) have additional
216 * TLB2 storage attibute fields. Those are:
217 *
218 * TLB2:
219 * 0...10 11 12 13 14 15 16...31
220 * no change WL1 IL1I IL1D IL2I IL2D no change
221 *
David Gibsonf88df142007-04-30 16:30:56 +1000222 * There are some constrains and options, to decide mapping software bits
223 * into TLB entry.
224 *
225 * - PRESENT *must* be in the bottom three bits because swap cache
226 * entries use the top 29 bits for TLB2.
227 *
228 * - FILE *must* be in the bottom three bits because swap cache
229 * entries use the top 29 bits for TLB2.
230 *
231 * - CACHE COHERENT bit (M) has no effect on PPC440 core, because it
232 * doesn't support SMP. So we can use this as software bit, like
233 * DIRTY.
234 *
235 * With the PPC 44x Linux implementation, the 0-11th LSBs of the PTE are used
236 * for memory protection related functions (see PTE structure in
237 * include/asm-ppc/mmu.h). The _PAGE_XXX definitions in this file map to the
238 * above bits. Note that the bit values are CPU specific, not architecture
239 * specific.
240 *
241 * The kernel PTE entry holds an arch-dependent swp_entry structure under
242 * certain situations. In other words, in such situations some portion of
243 * the PTE bits are used as a swp_entry. In the PPC implementation, the
244 * 3-24th LSB are shared with swp_entry, however the 0-2nd three LSB still
245 * hold protection values. That means the three protection bits are
246 * reserved for both PTE and SWAP entry at the most significant three
247 * LSBs.
248 *
249 * There are three protection bits available for SWAP entry:
250 * _PAGE_PRESENT
251 * _PAGE_FILE
252 * _PAGE_HASHPTE (if HW has)
253 *
254 * So those three bits have to be inside of 0-2nd LSB of PTE.
255 *
256 */
257
258#define _PAGE_PRESENT 0x00000001 /* S: PTE valid */
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000259#define _PAGE_RW 0x00000002 /* S: Write permission */
David Gibsonf88df142007-04-30 16:30:56 +1000260#define _PAGE_FILE 0x00000004 /* S: nonlinear file mapping */
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000261#define _PAGE_HWEXEC 0x00000004 /* H: Execute permission */
David Gibsonf88df142007-04-30 16:30:56 +1000262#define _PAGE_ACCESSED 0x00000008 /* S: Page referenced */
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000263#define _PAGE_DIRTY 0x00000010 /* S: Page dirty */
264#define _PAGE_USER 0x00000040 /* S: User page */
265#define _PAGE_ENDIAN 0x00000080 /* H: E bit */
266#define _PAGE_GUARDED 0x00000100 /* H: G bit */
267#define _PAGE_COHERENT 0x00000200 /* H: M bit */
268#define _PAGE_NO_CACHE 0x00000400 /* H: I bit */
269#define _PAGE_WRITETHRU 0x00000800 /* H: W bit */
David Gibsonf88df142007-04-30 16:30:56 +1000270
271/* TODO: Add large page lowmem mapping support */
272#define _PMD_PRESENT 0
273#define _PMD_PRESENT_MASK (PAGE_MASK)
274#define _PMD_BAD (~PAGE_MASK)
275
276/* ERPN in a PTE never gets cleared, ignore it */
277#define _PTE_NONE_MASK 0xffffffff00000000ULL
278
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000279
David Gibsonf88df142007-04-30 16:30:56 +1000280#elif defined(CONFIG_FSL_BOOKE)
281/*
282 MMU Assist Register 3:
283
284 32 33 34 35 36 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63
285 RPN...................... 0 0 U0 U1 U2 U3 UX SX UW SW UR SR
286
287 - PRESENT *must* be in the bottom three bits because swap cache
288 entries use the top 29 bits.
289
290 - FILE *must* be in the bottom three bits because swap cache
291 entries use the top 29 bits.
292*/
293
294/* Definitions for FSL Book-E Cores */
295#define _PAGE_PRESENT 0x00001 /* S: PTE contains a translation */
296#define _PAGE_USER 0x00002 /* S: User page (maps to UR) */
297#define _PAGE_FILE 0x00002 /* S: when !present: nonlinear file mapping */
Kumar Gala6cfd8992008-07-09 10:03:28 -0500298#define _PAGE_RW 0x00004 /* S: Write permission (SW) */
299#define _PAGE_DIRTY 0x00008 /* S: Page dirty */
300#define _PAGE_HWEXEC 0x00010 /* H: SX permission */
301#define _PAGE_ACCESSED 0x00020 /* S: Page referenced */
David Gibsonf88df142007-04-30 16:30:56 +1000302
303#define _PAGE_ENDIAN 0x00040 /* H: E bit */
304#define _PAGE_GUARDED 0x00080 /* H: G bit */
305#define _PAGE_COHERENT 0x00100 /* H: M bit */
306#define _PAGE_NO_CACHE 0x00200 /* H: I bit */
307#define _PAGE_WRITETHRU 0x00400 /* H: W bit */
308
309#ifdef CONFIG_PTE_64BIT
David Gibsonf88df142007-04-30 16:30:56 +1000310/* ERPN in a PTE never gets cleared, ignore it */
311#define _PTE_NONE_MASK 0xffffffffffff0000ULL
David Gibsonf88df142007-04-30 16:30:56 +1000312#endif
313
314#define _PMD_PRESENT 0
315#define _PMD_PRESENT_MASK (PAGE_MASK)
316#define _PMD_BAD (~PAGE_MASK)
317
318#elif defined(CONFIG_8xx)
319/* Definitions for 8xx embedded chips. */
320#define _PAGE_PRESENT 0x0001 /* Page is valid */
321#define _PAGE_FILE 0x0002 /* when !present: nonlinear file mapping */
322#define _PAGE_NO_CACHE 0x0002 /* I: cache inhibit */
323#define _PAGE_SHARED 0x0004 /* No ASID (context) compare */
324
325/* These five software bits must be masked out when the entry is loaded
326 * into the TLB.
327 */
328#define _PAGE_EXEC 0x0008 /* software: i-cache coherency required */
329#define _PAGE_GUARDED 0x0010 /* software: guarded access */
330#define _PAGE_DIRTY 0x0020 /* software: page changed */
331#define _PAGE_RW 0x0040 /* software: user write access allowed */
332#define _PAGE_ACCESSED 0x0080 /* software: page referenced */
333
334/* Setting any bits in the nibble with the follow two controls will
335 * require a TLB exception handler change. It is assumed unused bits
336 * are always zero.
337 */
338#define _PAGE_HWWRITE 0x0100 /* h/w write enable: never set in Linux PTE */
339#define _PAGE_USER 0x0800 /* One of the PP bits, the other is USER&~RW */
340
341#define _PMD_PRESENT 0x0001
342#define _PMD_BAD 0x0ff0
343#define _PMD_PAGE_MASK 0x000c
344#define _PMD_PAGE_8M 0x000c
345
David Gibsonf88df142007-04-30 16:30:56 +1000346#define _PTE_NONE_MASK _PAGE_ACCESSED
347
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000348/* Until my rework is finished, 8xx still needs atomic PTE updates */
349#define PTE_ATOMIC_UPDATES 1
350
David Gibsonf88df142007-04-30 16:30:56 +1000351#else /* CONFIG_6xx */
352/* Definitions for 60x, 740/750, etc. */
353#define _PAGE_PRESENT 0x001 /* software: pte contains a translation */
354#define _PAGE_HASHPTE 0x002 /* hash_page has made an HPTE for this pte */
355#define _PAGE_FILE 0x004 /* when !present: nonlinear file mapping */
356#define _PAGE_USER 0x004 /* usermode access allowed */
357#define _PAGE_GUARDED 0x008 /* G: prohibit speculative access */
358#define _PAGE_COHERENT 0x010 /* M: enforce memory coherence (SMP systems) */
359#define _PAGE_NO_CACHE 0x020 /* I: cache inhibit */
360#define _PAGE_WRITETHRU 0x040 /* W: cache write-through */
361#define _PAGE_DIRTY 0x080 /* C: page changed */
362#define _PAGE_ACCESSED 0x100 /* R: page referenced */
363#define _PAGE_EXEC 0x200 /* software: i-cache coherency required */
364#define _PAGE_RW 0x400 /* software: user write access allowed */
365
366#define _PTE_NONE_MASK _PAGE_HASHPTE
367
368#define _PMD_PRESENT 0
369#define _PMD_PRESENT_MASK (PAGE_MASK)
370#define _PMD_BAD (~PAGE_MASK)
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000371
372/* Hash table based platforms need atomic updates of the linux PTE */
373#define PTE_ATOMIC_UPDATES 1
374
David Gibsonf88df142007-04-30 16:30:56 +1000375#endif
376
377/*
378 * Some bits are only used on some cpu families...
379 */
380#ifndef _PAGE_HASHPTE
381#define _PAGE_HASHPTE 0
382#endif
383#ifndef _PTE_NONE_MASK
384#define _PTE_NONE_MASK 0
385#endif
386#ifndef _PAGE_SHARED
387#define _PAGE_SHARED 0
388#endif
389#ifndef _PAGE_HWWRITE
390#define _PAGE_HWWRITE 0
391#endif
392#ifndef _PAGE_HWEXEC
393#define _PAGE_HWEXEC 0
394#endif
395#ifndef _PAGE_EXEC
396#define _PAGE_EXEC 0
397#endif
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700398#ifndef _PAGE_ENDIAN
399#define _PAGE_ENDIAN 0
400#endif
401#ifndef _PAGE_COHERENT
402#define _PAGE_COHERENT 0
403#endif
Kumar Galaff8dc7692008-07-27 03:57:30 +1000404#ifndef _PAGE_WRITETHRU
405#define _PAGE_WRITETHRU 0
406#endif
David Gibsonf88df142007-04-30 16:30:56 +1000407#ifndef _PMD_PRESENT_MASK
408#define _PMD_PRESENT_MASK _PMD_PRESENT
409#endif
410#ifndef _PMD_SIZE
411#define _PMD_SIZE 0
412#define PMD_PAGE_SIZE(pmd) bad_call_to_PMD_PAGE_SIZE()
413#endif
414
415#define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
416
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700417
418#define PAGE_PROT_BITS __pgprot(_PAGE_GUARDED | _PAGE_COHERENT | _PAGE_NO_CACHE | \
419 _PAGE_WRITETHRU | _PAGE_ENDIAN | \
420 _PAGE_USER | _PAGE_ACCESSED | \
421 _PAGE_RW | _PAGE_HWWRITE | _PAGE_DIRTY | \
422 _PAGE_EXEC | _PAGE_HWEXEC)
David Gibsonf88df142007-04-30 16:30:56 +1000423/*
424 * Note: the _PAGE_COHERENT bit automatically gets set in the hardware
425 * PTE if CONFIG_SMP is defined (hash_page does this); there is no need
426 * to have it in the Linux PTE, and in fact the bit could be reused for
427 * another purpose. -- paulus.
428 */
429
430#ifdef CONFIG_44x
431#define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_GUARDED)
432#else
433#define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED)
434#endif
435#define _PAGE_WRENABLE (_PAGE_RW | _PAGE_DIRTY | _PAGE_HWWRITE)
436#define _PAGE_KERNEL (_PAGE_BASE | _PAGE_SHARED | _PAGE_WRENABLE)
437
438#ifdef CONFIG_PPC_STD_MMU
439/* On standard PPC MMU, no user access implies kernel read/write access,
440 * so to write-protect kernel memory we must turn on user access */
441#define _PAGE_KERNEL_RO (_PAGE_BASE | _PAGE_SHARED | _PAGE_USER)
442#else
443#define _PAGE_KERNEL_RO (_PAGE_BASE | _PAGE_SHARED)
444#endif
445
446#define _PAGE_IO (_PAGE_KERNEL | _PAGE_NO_CACHE | _PAGE_GUARDED)
447#define _PAGE_RAM (_PAGE_KERNEL | _PAGE_HWEXEC)
448
Ionut Nicu221ac322008-03-06 03:12:54 +1100449#if defined(CONFIG_KGDB) || defined(CONFIG_XMON) || defined(CONFIG_BDI_SWITCH) ||\
450 defined(CONFIG_KPROBES)
David Gibsonf88df142007-04-30 16:30:56 +1000451/* We want the debuggers to be able to set breakpoints anywhere, so
452 * don't write protect the kernel text */
453#define _PAGE_RAM_TEXT _PAGE_RAM
454#else
455#define _PAGE_RAM_TEXT (_PAGE_KERNEL_RO | _PAGE_HWEXEC)
456#endif
457
458#define PAGE_NONE __pgprot(_PAGE_BASE)
459#define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
460#define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
461#define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
462#define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
463#define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
464#define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
465
466#define PAGE_KERNEL __pgprot(_PAGE_RAM)
467#define PAGE_KERNEL_NOCACHE __pgprot(_PAGE_IO)
468
469/*
470 * The PowerPC can only do execute protection on a segment (256MB) basis,
471 * not on a page basis. So we consider execute permission the same as read.
472 * Also, write permissions imply read permissions.
473 * This is the closest we can get..
474 */
475#define __P000 PAGE_NONE
476#define __P001 PAGE_READONLY_X
477#define __P010 PAGE_COPY
478#define __P011 PAGE_COPY_X
479#define __P100 PAGE_READONLY
480#define __P101 PAGE_READONLY_X
481#define __P110 PAGE_COPY
482#define __P111 PAGE_COPY_X
483
484#define __S000 PAGE_NONE
485#define __S001 PAGE_READONLY_X
486#define __S010 PAGE_SHARED
487#define __S011 PAGE_SHARED_X
488#define __S100 PAGE_READONLY
489#define __S101 PAGE_READONLY_X
490#define __S110 PAGE_SHARED
491#define __S111 PAGE_SHARED_X
492
493#ifndef __ASSEMBLY__
494/* Make sure we get a link error if PMD_PAGE_SIZE is ever called on a
495 * kernel without large page PMD support */
496extern unsigned long bad_call_to_PMD_PAGE_SIZE(void);
497
498/*
499 * Conversions between PTE values and page frame numbers.
500 */
501
502/* in some case we want to additionaly adjust where the pfn is in the pte to
503 * allow room for more flags */
504#if defined(CONFIG_FSL_BOOKE) && defined(CONFIG_PTE_64BIT)
505#define PFN_SHIFT_OFFSET (PAGE_SHIFT + 8)
506#else
507#define PFN_SHIFT_OFFSET (PAGE_SHIFT)
508#endif
509
510#define pte_pfn(x) (pte_val(x) >> PFN_SHIFT_OFFSET)
511#define pte_page(x) pfn_to_page(pte_pfn(x))
512
513#define pfn_pte(pfn, prot) __pte(((pte_basic_t)(pfn) << PFN_SHIFT_OFFSET) |\
514 pgprot_val(prot))
515#define mk_pte(page, prot) pfn_pte(page_to_pfn(page), prot)
David Gibsonf88df142007-04-30 16:30:56 +1000516#endif /* __ASSEMBLY__ */
517
518#define pte_none(pte) ((pte_val(pte) & ~_PTE_NONE_MASK) == 0)
519#define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
Kumar Gala9bf2b5c2008-07-16 15:54:21 -0500520#define pte_clear(mm, addr, ptep) \
521 do { pte_update(ptep, ~_PAGE_HASHPTE, 0); } while (0)
David Gibsonf88df142007-04-30 16:30:56 +1000522
523#define pmd_none(pmd) (!pmd_val(pmd))
524#define pmd_bad(pmd) (pmd_val(pmd) & _PMD_BAD)
525#define pmd_present(pmd) (pmd_val(pmd) & _PMD_PRESENT_MASK)
526#define pmd_clear(pmdp) do { pmd_val(*(pmdp)) = 0; } while (0)
527
528#ifndef __ASSEMBLY__
529/*
David Gibsonf88df142007-04-30 16:30:56 +1000530 * The following only work if pte_present() is true.
531 * Undefined behaviour if not..
532 */
David Gibsonf88df142007-04-30 16:30:56 +1000533static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
David Gibsonf88df142007-04-30 16:30:56 +1000534static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
535static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
536static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
Nick Piggin7e675132008-04-28 02:13:00 -0700537static inline int pte_special(pte_t pte) { return 0; }
David Gibsonf88df142007-04-30 16:30:56 +1000538
539static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; }
540static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; }
541
David Gibsonf88df142007-04-30 16:30:56 +1000542static inline pte_t pte_wrprotect(pte_t pte) {
543 pte_val(pte) &= ~(_PAGE_RW | _PAGE_HWWRITE); return pte; }
David Gibsonf88df142007-04-30 16:30:56 +1000544static inline pte_t pte_mkclean(pte_t pte) {
545 pte_val(pte) &= ~(_PAGE_DIRTY | _PAGE_HWWRITE); return pte; }
546static inline pte_t pte_mkold(pte_t pte) {
547 pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
548
David Gibsonf88df142007-04-30 16:30:56 +1000549static inline pte_t pte_mkwrite(pte_t pte) {
550 pte_val(pte) |= _PAGE_RW; return pte; }
551static inline pte_t pte_mkdirty(pte_t pte) {
552 pte_val(pte) |= _PAGE_DIRTY; return pte; }
553static inline pte_t pte_mkyoung(pte_t pte) {
554 pte_val(pte) |= _PAGE_ACCESSED; return pte; }
Nick Piggin7e675132008-04-28 02:13:00 -0700555static inline pte_t pte_mkspecial(pte_t pte) {
556 return pte; }
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700557static inline unsigned long pte_pgprot(pte_t pte)
558{
559 return __pgprot(pte_val(pte)) & PAGE_PROT_BITS;
560}
David Gibsonf88df142007-04-30 16:30:56 +1000561
562static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
563{
564 pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot);
565 return pte;
566}
567
568/*
569 * When flushing the tlb entry for a page, we also need to flush the hash
570 * table entry. flush_hash_pages is assembler (for speed) in hashtable.S.
571 */
572extern int flush_hash_pages(unsigned context, unsigned long va,
573 unsigned long pmdval, int count);
574
575/* Add an HPTE to the hash table */
576extern void add_hash_page(unsigned context, unsigned long va,
577 unsigned long pmdval);
578
579/*
580 * Atomic PTE updates.
581 *
582 * pte_update clears and sets bit atomically, and returns
583 * the old pte value. In the 64-bit PTE case we lock around the
584 * low PTE word since we expect ALL flag bits to be there
585 */
586#ifndef CONFIG_PTE_64BIT
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000587static inline unsigned long pte_update(pte_t *p,
588 unsigned long clr,
David Gibsonf88df142007-04-30 16:30:56 +1000589 unsigned long set)
590{
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000591#ifdef PTE_ATOMIC_UPDATES
David Gibsonf88df142007-04-30 16:30:56 +1000592 unsigned long old, tmp;
593
594 __asm__ __volatile__("\
5951: lwarx %0,0,%3\n\
596 andc %1,%0,%4\n\
597 or %1,%1,%5\n"
598 PPC405_ERR77(0,%3)
599" stwcx. %1,0,%3\n\
600 bne- 1b"
601 : "=&r" (old), "=&r" (tmp), "=m" (*p)
602 : "r" (p), "r" (clr), "r" (set), "m" (*p)
603 : "cc" );
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000604#else /* PTE_ATOMIC_UPDATES */
605 unsigned long old = pte_val(*p);
606 *p = __pte((old & ~clr) | set);
607#endif /* !PTE_ATOMIC_UPDATES */
608
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100609#ifdef CONFIG_44x
610 if ((old & _PAGE_USER) && (old & _PAGE_HWEXEC))
611 icache_44x_need_flush = 1;
612#endif
David Gibsonf88df142007-04-30 16:30:56 +1000613 return old;
614}
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000615#else /* CONFIG_PTE_64BIT */
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000616static inline unsigned long long pte_update(pte_t *p,
617 unsigned long clr,
618 unsigned long set)
David Gibsonf88df142007-04-30 16:30:56 +1000619{
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000620#ifdef PTE_ATOMIC_UPDATES
David Gibsonf88df142007-04-30 16:30:56 +1000621 unsigned long long old;
622 unsigned long tmp;
623
624 __asm__ __volatile__("\
6251: lwarx %L0,0,%4\n\
626 lwzx %0,0,%3\n\
627 andc %1,%L0,%5\n\
628 or %1,%1,%6\n"
629 PPC405_ERR77(0,%3)
630" stwcx. %1,0,%4\n\
631 bne- 1b"
632 : "=&r" (old), "=&r" (tmp), "=m" (*p)
633 : "r" (p), "r" ((unsigned long)(p) + 4), "r" (clr), "r" (set), "m" (*p)
634 : "cc" );
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000635#else /* PTE_ATOMIC_UPDATES */
636 unsigned long long old = pte_val(*p);
Kumar Gala585583d2008-07-14 08:08:45 -0500637 *p = __pte((old & ~(unsigned long long)clr) | set);
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000638#endif /* !PTE_ATOMIC_UPDATES */
639
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100640#ifdef CONFIG_44x
641 if ((old & _PAGE_USER) && (old & _PAGE_HWEXEC))
642 icache_44x_need_flush = 1;
643#endif
David Gibsonf88df142007-04-30 16:30:56 +1000644 return old;
645}
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000646#endif /* CONFIG_PTE_64BIT */
David Gibsonf88df142007-04-30 16:30:56 +1000647
648/*
649 * set_pte stores a linux PTE into the linux page table.
650 * On machines which use an MMU hash table we avoid changing the
651 * _PAGE_HASHPTE bit.
652 */
Kumar Gala9bf2b5c2008-07-16 15:54:21 -0500653
654static inline void __set_pte_at(struct mm_struct *mm, unsigned long addr,
David Gibsonf88df142007-04-30 16:30:56 +1000655 pte_t *ptep, pte_t pte)
656{
657#if _PAGE_HASHPTE != 0
658 pte_update(ptep, ~_PAGE_HASHPTE, pte_val(pte) & ~_PAGE_HASHPTE);
Kumar Gala9bf2b5c2008-07-16 15:54:21 -0500659#elif defined(CONFIG_PTE_64BIT) && defined(CONFIG_SMP)
660 __asm__ __volatile__("\
661 stw%U0%X0 %2,%0\n\
662 eieio\n\
663 stw%U0%X0 %L2,%1"
664 : "=m" (*ptep), "=m" (*((unsigned char *)ptep+4))
665 : "r" (pte) : "memory");
David Gibsonf88df142007-04-30 16:30:56 +1000666#else
667 *ptep = pte;
668#endif
669}
670
Kumar Gala9bf2b5c2008-07-16 15:54:21 -0500671static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
672 pte_t *ptep, pte_t pte)
673{
674#if defined(CONFIG_PTE_64BIT) && defined(CONFIG_SMP)
675 WARN_ON(pte_present(*ptep));
676#endif
677 __set_pte_at(mm, addr, ptep, pte);
678}
679
David Gibsonf88df142007-04-30 16:30:56 +1000680/*
Becky Brucebf2737f2008-06-14 09:12:44 +1000681 * 2.6 calls this without flushing the TLB entry; this is wrong
682 * for our hash-based implementation, we fix that up here.
David Gibsonf88df142007-04-30 16:30:56 +1000683 */
684#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
685static inline int __ptep_test_and_clear_young(unsigned int context, unsigned long addr, pte_t *ptep)
686{
687 unsigned long old;
688 old = pte_update(ptep, _PAGE_ACCESSED, 0);
689#if _PAGE_HASHPTE != 0
690 if (old & _PAGE_HASHPTE) {
691 unsigned long ptephys = __pa(ptep) & PAGE_MASK;
692 flush_hash_pages(context, addr, ptephys, 1);
693 }
694#endif
695 return (old & _PAGE_ACCESSED) != 0;
696}
697#define ptep_test_and_clear_young(__vma, __addr, __ptep) \
698 __ptep_test_and_clear_young((__vma)->vm_mm->context.id, __addr, __ptep)
699
David Gibsonf88df142007-04-30 16:30:56 +1000700#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
701static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
702 pte_t *ptep)
703{
704 return __pte(pte_update(ptep, ~_PAGE_HASHPTE, 0));
705}
706
707#define __HAVE_ARCH_PTEP_SET_WRPROTECT
708static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr,
709 pte_t *ptep)
710{
711 pte_update(ptep, (_PAGE_RW | _PAGE_HWWRITE), 0);
712}
Andy Whitcroft016b33c2008-06-26 19:55:58 +1000713static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
714 unsigned long addr, pte_t *ptep)
715{
716 ptep_set_wrprotect(mm, addr, ptep);
717}
718
David Gibsonf88df142007-04-30 16:30:56 +1000719
720#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
721static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry, int dirty)
722{
723 unsigned long bits = pte_val(entry) &
724 (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW);
725 pte_update(ptep, 0, bits);
726}
727
728#define ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -0700729({ \
730 int __changed = !pte_same(*(__ptep), __entry); \
731 if (__changed) { \
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000732 __ptep_set_access_flags(__ptep, __entry, __dirty); \
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -0700733 flush_tlb_page_nohash(__vma, __address); \
734 } \
735 __changed; \
736})
David Gibsonf88df142007-04-30 16:30:56 +1000737
738/*
739 * Macro to mark a page protection value as "uncacheable".
740 */
741#define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_NO_CACHE | _PAGE_GUARDED))
742
743struct file;
744extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
745 unsigned long size, pgprot_t vma_prot);
746#define __HAVE_PHYS_MEM_ACCESS_PROT
747
748#define __HAVE_ARCH_PTE_SAME
749#define pte_same(A,B) (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HASHPTE) == 0)
750
751/*
752 * Note that on Book E processors, the pmd contains the kernel virtual
753 * (lowmem) address of the pte page. The physical address is less useful
754 * because everything runs with translation enabled (even the TLB miss
755 * handler). On everything else the pmd contains the physical address
756 * of the pte page. -- paulus
757 */
758#ifndef CONFIG_BOOKE
759#define pmd_page_vaddr(pmd) \
760 ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
761#define pmd_page(pmd) \
762 (mem_map + (pmd_val(pmd) >> PAGE_SHIFT))
763#else
764#define pmd_page_vaddr(pmd) \
765 ((unsigned long) (pmd_val(pmd) & PAGE_MASK))
766#define pmd_page(pmd) \
Kumar Galaaf892e02008-04-16 05:52:30 +1000767 pfn_to_page((__pa(pmd_val(pmd)) >> PAGE_SHIFT))
David Gibsonf88df142007-04-30 16:30:56 +1000768#endif
769
770/* to find an entry in a kernel page-table-directory */
771#define pgd_offset_k(address) pgd_offset(&init_mm, address)
772
773/* to find an entry in a page-table-directory */
774#define pgd_index(address) ((address) >> PGDIR_SHIFT)
775#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
776
David Gibsonf88df142007-04-30 16:30:56 +1000777/* Find an entry in the third-level page table.. */
778#define pte_index(address) \
779 (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
780#define pte_offset_kernel(dir, addr) \
781 ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(addr))
782#define pte_offset_map(dir, addr) \
783 ((pte_t *) kmap_atomic(pmd_page(*(dir)), KM_PTE0) + pte_index(addr))
784#define pte_offset_map_nested(dir, addr) \
785 ((pte_t *) kmap_atomic(pmd_page(*(dir)), KM_PTE1) + pte_index(addr))
786
787#define pte_unmap(pte) kunmap_atomic(pte, KM_PTE0)
788#define pte_unmap_nested(pte) kunmap_atomic(pte, KM_PTE1)
789
David Gibsonf88df142007-04-30 16:30:56 +1000790/*
791 * Encode and decode a swap entry.
792 * Note that the bits we use in a PTE for representing a swap entry
793 * must not include the _PAGE_PRESENT bit, the _PAGE_FILE bit, or the
794 *_PAGE_HASHPTE bit (if used). -- paulus
795 */
796#define __swp_type(entry) ((entry).val & 0x1f)
797#define __swp_offset(entry) ((entry).val >> 5)
798#define __swp_entry(type, offset) ((swp_entry_t) { (type) | ((offset) << 5) })
799#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 })
800#define __swp_entry_to_pte(x) ((pte_t) { (x).val << 3 })
801
802/* Encode and decode a nonlinear file mapping entry */
803#define PTE_FILE_MAX_BITS 29
804#define pte_to_pgoff(pte) (pte_val(pte) >> 3)
805#define pgoff_to_pte(off) ((pte_t) { ((off) << 3) | _PAGE_FILE })
806
David Gibsonf88df142007-04-30 16:30:56 +1000807/*
808 * No page table caches to initialise
809 */
810#define pgtable_cache_init() do { } while (0)
811
812extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep,
813 pmd_t **pmdp);
814
815#endif /* !__ASSEMBLY__ */
816
817#endif /* _ASM_POWERPC_PGTABLE_PPC32_H */