2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1994 - 2002 by Ralf Baechle
7 * Copyright (C) 1999, 2000, 2001 Silicon Graphics, Inc.
8 * Copyright (C) 2002 Maciej W. Rozycki
10 #ifndef _ASM_PGTABLE_BITS_H
11 #define _ASM_PGTABLE_BITS_H
15 * Note that we shift the lower 32bits of each EntryLo[01] entry
16 * 6 bits to the left. That way we can convert the PFN into the
17 * physical address by a single 'and' operation and gain 6 additional
18 * bits for storing information which isn't present in a normal
21 * Similar to the Alpha port, we need to keep track of the ref
22 * and mod bits in software. We have a software "yeah you can read
23 * from this page" bit, and a hardware one which actually lets the
24 * process read from the page. On the same token we have a software
25 * writable bit and the real hardware one which actually lets the
26 * process write to the page, this keeps a mod bit via the hardware
29 * Certain revisions of the R4000 and R5000 have a bug where if a
30 * certain sequence occurs in the last 3 instructions of an executable
31 * page, and the following page is not mapped, the cpu can do
32 * unpredictable things. The code (when it is written) to deal with
33 * this problem will be in the update_mmu_cache() code for the r4k.
35 #if defined(CONFIG_XPA)
38 * Page table bit offsets used for 64 bit physical addressing on
42 /* Used by TLB hardware (placed in EntryLo*) */
50 /* Used only by software (masked out before writing EntryLo*) */
51 _PAGE_PRESENT_SHIFT
= 24,
55 #if defined(CONFIG_ARCH_HAS_PTE_SPECIAL)
58 #if defined(CONFIG_HAVE_ARCH_SOFT_DIRTY)
59 _PAGE_SOFT_DIRTY_SHIFT
,
64 * Bits for extended EntryLo0/EntryLo1 registers
66 #define _PFNX_MASK 0xffffff
68 #elif defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
71 * Page table bit offsets used for 36 bit physical addressing on MIPS32,
72 * for example with Alchemy or Netlogic XLP/XLR.
75 /* Used by TLB hardware (placed in EntryLo*) */
81 /* Used only by software (masked out before writing EntryLo*) */
82 _PAGE_PRESENT_SHIFT
= _CACHE_SHIFT
+ 3,
87 #if defined(CONFIG_ARCH_HAS_PTE_SPECIAL)
90 #if defined(CONFIG_HAVE_ARCH_SOFT_DIRTY)
91 _PAGE_SOFT_DIRTY_SHIFT
,
95 #elif defined(CONFIG_CPU_R3K_TLB)
97 /* Page table bits used for r3k systems */
99 /* Used only by software (writes to EntryLo ignored) */
103 _PAGE_ACCESSED_SHIFT
,
104 _PAGE_MODIFIED_SHIFT
,
105 #if defined(CONFIG_ARCH_HAS_PTE_SPECIAL)
108 #if defined(CONFIG_HAVE_ARCH_SOFT_DIRTY)
109 _PAGE_SOFT_DIRTY_SHIFT
,
112 /* Used by TLB hardware (placed in EntryLo) */
113 _PAGE_GLOBAL_SHIFT
= 8,
116 _CACHE_UNCACHED_SHIFT
,
121 /* Page table bits used for r4k systems */
123 /* Used only by software (masked out before writing EntryLo*) */
125 #if !defined(CONFIG_CPU_HAS_RIXI)
129 _PAGE_ACCESSED_SHIFT
,
130 _PAGE_MODIFIED_SHIFT
,
131 #if defined(CONFIG_MIPS_HUGE_TLB_SUPPORT)
134 #if defined(CONFIG_ARCH_HAS_PTE_SPECIAL)
137 #if defined(CONFIG_HAVE_ARCH_SOFT_DIRTY)
138 _PAGE_SOFT_DIRTY_SHIFT
,
140 /* Used by TLB hardware (placed in EntryLo*) */
141 #if defined(CONFIG_CPU_HAS_RIXI)
151 #endif /* defined(CONFIG_PHYS_ADDR_T_64BIT && defined(CONFIG_CPU_MIPS32) */
153 /* Used only by software */
154 #define _PAGE_PRESENT (1 << _PAGE_PRESENT_SHIFT)
155 #define _PAGE_WRITE (1 << _PAGE_WRITE_SHIFT)
156 #define _PAGE_ACCESSED (1 << _PAGE_ACCESSED_SHIFT)
157 #define _PAGE_MODIFIED (1 << _PAGE_MODIFIED_SHIFT)
158 #if defined(CONFIG_MIPS_HUGE_TLB_SUPPORT)
159 # define _PAGE_HUGE (1 << _PAGE_HUGE_SHIFT)
161 #if defined(CONFIG_ARCH_HAS_PTE_SPECIAL)
162 # define _PAGE_SPECIAL (1 << _PAGE_SPECIAL_SHIFT)
164 # define _PAGE_SPECIAL 0
166 #if defined(CONFIG_HAVE_ARCH_SOFT_DIRTY)
167 # define _PAGE_SOFT_DIRTY (1 << _PAGE_SOFT_DIRTY_SHIFT)
169 # define _PAGE_SOFT_DIRTY 0
172 /* Used by TLB hardware (placed in EntryLo*) */
173 #if defined(CONFIG_XPA)
174 # define _PAGE_NO_EXEC (1 << _PAGE_NO_EXEC_SHIFT)
175 #elif defined(CONFIG_CPU_HAS_RIXI)
176 # define _PAGE_NO_EXEC (cpu_has_rixi ? (1 << _PAGE_NO_EXEC_SHIFT) : 0)
178 #define _PAGE_NO_READ (1 << _PAGE_NO_READ_SHIFT)
179 #define _PAGE_GLOBAL (1 << _PAGE_GLOBAL_SHIFT)
180 #define _PAGE_VALID (1 << _PAGE_VALID_SHIFT)
181 #define _PAGE_DIRTY (1 << _PAGE_DIRTY_SHIFT)
182 #if defined(CONFIG_CPU_R3K_TLB)
183 # define _CACHE_UNCACHED (1 << _CACHE_UNCACHED_SHIFT)
184 # define _CACHE_MASK _CACHE_UNCACHED
185 # define _PFN_SHIFT PAGE_SHIFT
187 # define _CACHE_MASK (7 << _CACHE_SHIFT)
188 # define _PFN_SHIFT (PAGE_SHIFT - 12 + _CACHE_SHIFT + 3)
191 #ifndef _PAGE_NO_EXEC
192 #define _PAGE_NO_EXEC 0
195 #define _PAGE_SILENT_READ _PAGE_VALID
196 #define _PAGE_SILENT_WRITE _PAGE_DIRTY
198 #define _PFN_MASK (~((1 << (_PFN_SHIFT)) - 1))
201 * The final layouts of the PTE bits are:
203 * 64-bit, R1 or earlier: CCC D V G [S H] M A W R P
204 * 32-bit, R1 or earler: CCC D V G M A W R P
205 * 64-bit, R2 or later: CCC D V G RI/R XI [S H] M A W P
206 * 32-bit, R2 or later: CCC D V G RI/R XI M A W P
211 * pte_to_entrylo converts a page table entry (PTE) into a Mips
214 static inline uint64_t pte_to_entrylo(unsigned long pte_val
)
216 #ifdef CONFIG_CPU_HAS_RIXI
220 sa
= 31 - _PAGE_NO_READ_SHIFT
;
222 sa
= 63 - _PAGE_NO_READ_SHIFT
;
225 * C has no way to express that this is a DSRL
226 * _PAGE_NO_EXEC_SHIFT followed by a ROTR 2. Luckily
227 * in the fast path this is done in assembly
229 return (pte_val
>> _PAGE_GLOBAL_SHIFT
) |
230 ((pte_val
& (_PAGE_NO_EXEC
| _PAGE_NO_READ
)) << sa
);
234 return pte_val
>> _PAGE_GLOBAL_SHIFT
;
240 #if defined(CONFIG_CPU_R3K_TLB)
242 #define _CACHE_CACHABLE_NONCOHERENT 0
243 #define _CACHE_UNCACHED_ACCELERATED _CACHE_UNCACHED
245 #elif defined(CONFIG_CPU_SB1)
247 /* No penalty for being coherent on the SB1, so just
248 use it for "noncoherent" spaces, too. Shouldn't hurt. */
250 #define _CACHE_CACHABLE_NONCOHERENT (5<<_CACHE_SHIFT)
254 #ifndef _CACHE_CACHABLE_NO_WA
255 #define _CACHE_CACHABLE_NO_WA (0<<_CACHE_SHIFT)
257 #ifndef _CACHE_CACHABLE_WA
258 #define _CACHE_CACHABLE_WA (1<<_CACHE_SHIFT)
260 #ifndef _CACHE_UNCACHED
261 #define _CACHE_UNCACHED (2<<_CACHE_SHIFT)
263 #ifndef _CACHE_CACHABLE_NONCOHERENT
264 #define _CACHE_CACHABLE_NONCOHERENT (3<<_CACHE_SHIFT)
266 #ifndef _CACHE_CACHABLE_CE
267 #define _CACHE_CACHABLE_CE (4<<_CACHE_SHIFT)
269 #ifndef _CACHE_CACHABLE_COW
270 #define _CACHE_CACHABLE_COW (5<<_CACHE_SHIFT)
272 #ifndef _CACHE_CACHABLE_CUW
273 #define _CACHE_CACHABLE_CUW (6<<_CACHE_SHIFT)
275 #ifndef _CACHE_UNCACHED_ACCELERATED
276 #define _CACHE_UNCACHED_ACCELERATED (7<<_CACHE_SHIFT)
279 #define __READABLE (_PAGE_SILENT_READ | _PAGE_ACCESSED)
280 #define __WRITEABLE (_PAGE_SILENT_WRITE | _PAGE_WRITE | _PAGE_MODIFIED)
282 #define _PAGE_CHG_MASK (_PAGE_ACCESSED | _PAGE_MODIFIED | \
283 _PAGE_SOFT_DIRTY | _PFN_MASK | _CACHE_MASK)
285 #endif /* _ASM_PGTABLE_BITS_H */