diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-07-27 21:59:34 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-08-19 20:25:06 -0400 |
commit | 57e2a99f74b0d3720c97a6aadb57ae6aad3c61ea (patch) | |
tree | 4268a98ad222dbcf790749aed52417eb0a3a2a35 /arch/powerpc/include/asm/pte-book3e.h | |
parent | 0257c99cdfaca53a881339e1cbca638c61569b05 (diff) |
powerpc: Add memory management headers for new 64-bit BookE
This adds the PTE and pgtable format definitions, along with changes
to the kernel memory map and other definitions related to implementing
support for 64-bit Book3E. This also shields some asm-offset bits that
are currently only relevant on 32-bit
We also move the definition of the "linux" page size constants to
the common mmu.h file and add a few sizes that are relevant to
embedded processors.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/pte-book3e.h')
-rw-r--r-- | arch/powerpc/include/asm/pte-book3e.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/pte-book3e.h b/arch/powerpc/include/asm/pte-book3e.h new file mode 100644 index 000000000000..1d27c77d7704 --- /dev/null +++ b/arch/powerpc/include/asm/pte-book3e.h | |||
@@ -0,0 +1,70 @@ | |||
1 | #ifndef _ASM_POWERPC_PTE_BOOK3E_H | ||
2 | #define _ASM_POWERPC_PTE_BOOK3E_H | ||
3 | #ifdef __KERNEL__ | ||
4 | |||
5 | /* PTE bit definitions for processors compliant to the Book3E | ||
6 | * architecture 2.06 or later. The position of the PTE bits | ||
7 | * matches the HW definition of the optional Embedded Page Table | ||
8 | * category. | ||
9 | */ | ||
10 | |||
11 | /* Architected bits */ | ||
12 | #define _PAGE_PRESENT 0x000001 /* software: pte contains a translation */ | ||
13 | #define _PAGE_FILE 0x000002 /* (!present only) software: pte holds file offset */ | ||
14 | #define _PAGE_SW1 0x000002 | ||
15 | #define _PAGE_BAP_SR 0x000004 | ||
16 | #define _PAGE_BAP_UR 0x000008 | ||
17 | #define _PAGE_BAP_SW 0x000010 | ||
18 | #define _PAGE_BAP_UW 0x000020 | ||
19 | #define _PAGE_BAP_SX 0x000040 | ||
20 | #define _PAGE_BAP_UX 0x000080 | ||
21 | #define _PAGE_PSIZE_MSK 0x000f00 | ||
22 | #define _PAGE_PSIZE_4K 0x000200 | ||
23 | #define _PAGE_PSIZE_64K 0x000600 | ||
24 | #define _PAGE_PSIZE_1M 0x000a00 | ||
25 | #define _PAGE_PSIZE_16M 0x000e00 | ||
26 | #define _PAGE_DIRTY 0x001000 /* C: page changed */ | ||
27 | #define _PAGE_SW0 0x002000 | ||
28 | #define _PAGE_U3 0x004000 | ||
29 | #define _PAGE_U2 0x008000 | ||
30 | #define _PAGE_U1 0x010000 | ||
31 | #define _PAGE_U0 0x020000 | ||
32 | #define _PAGE_ACCESSED 0x040000 | ||
33 | #define _PAGE_LENDIAN 0x080000 | ||
34 | #define _PAGE_GUARDED 0x100000 | ||
35 | #define _PAGE_COHERENT 0x200000 /* M: enforce memory coherence */ | ||
36 | #define _PAGE_NO_CACHE 0x400000 /* I: cache inhibit */ | ||
37 | #define _PAGE_WRITETHRU 0x800000 /* W: cache write-through */ | ||
38 | |||
39 | /* "Higher level" linux bit combinations */ | ||
40 | #define _PAGE_EXEC _PAGE_BAP_SX /* Can be executed from potentially */ | ||
41 | #define _PAGE_HWEXEC _PAGE_BAP_UX /* .. and was cache cleaned */ | ||
42 | #define _PAGE_RW (_PAGE_BAP_SW | _PAGE_BAP_UW) /* User write permission */ | ||
43 | #define _PAGE_KERNEL_RW (_PAGE_BAP_SW | _PAGE_BAP_SR | _PAGE_DIRTY) | ||
44 | #define _PAGE_KERNEL_RO (_PAGE_BAP_SR) | ||
45 | #define _PAGE_USER (_PAGE_BAP_UR | _PAGE_BAP_SR) /* Can be read */ | ||
46 | |||
47 | #define _PAGE_HASHPTE 0 | ||
48 | #define _PAGE_BUSY 0 | ||
49 | |||
50 | #define _PAGE_SPECIAL _PAGE_SW0 | ||
51 | |||
52 | /* Flags to be preserved on PTE modifications */ | ||
53 | #define _PAGE_HPTEFLAGS _PAGE_BUSY | ||
54 | |||
55 | /* Base page size */ | ||
56 | #ifdef CONFIG_PPC_64K_PAGES | ||
57 | #define _PAGE_PSIZE _PAGE_PSIZE_64K | ||
58 | #define PTE_RPN_SHIFT (28) | ||
59 | #else | ||
60 | #define _PAGE_PSIZE _PAGE_PSIZE_4K | ||
61 | #define PTE_RPN_SHIFT (24) | ||
62 | #endif | ||
63 | |||
64 | /* On 32-bit, we never clear the top part of the PTE */ | ||
65 | #ifdef CONFIG_PPC32 | ||
66 | #define _PTE_NONE_MASK 0xffffffff00000000ULL | ||
67 | #endif | ||
68 | |||
69 | #endif /* __KERNEL__ */ | ||
70 | #endif /* _ASM_POWERPC_PTE_FSL_BOOKE_H */ | ||