blob: 22c3d0b3e11aad1b0e10eacf7924b0a291075bdb [file] [log] [blame]
Paul Mundt26ff6c12006-09-27 15:13:36 +09001/*
2 * This file contains the functions and defines necessary to modify and
3 * use the SuperH page table tree.
4 *
5 * Copyright (C) 1999 Niibe Yutaka
6 * Copyright (C) 2002 - 2005 Paul Mundt
7 *
8 * This file is subject to the terms and conditions of the GNU General
9 * Public License. See the file "COPYING" in the main directory of this
10 * archive for more details.
11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#ifndef __ASM_SH_PGTABLE_H
13#define __ASM_SH_PGTABLE_H
14
Paul Mundt26ff6c12006-09-27 15:13:36 +090015#include <asm-generic/pgtable-nopmd.h>
16#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/addrspace.h>
20#include <asm/fixmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * ZERO_PAGE is a global shared page that is always zero: used
24 * for zero-mapped memory areas etc..
25 */
Paul Mundt26ff6c12006-09-27 15:13:36 +090026extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
28
29#endif /* !__ASSEMBLY__ */
30
Paul Mundt21440cf2006-11-20 14:30:26 +090031/*
32 * traditional two-level paging structure
33 */
34/* PTE bits */
35#ifdef CONFIG_X2TLB
36# define PTE_MAGNITUDE 3 /* 64-bit PTEs on extended mode SH-X2 TLB */
37#else
38# define PTE_MAGNITUDE 2 /* 32-bit PTEs */
39#endif
40#define PTE_SHIFT PAGE_SHIFT
41#define PTE_BITS (PTE_SHIFT - PTE_MAGNITUDE)
42
43/* PGD bits */
44#define PGDIR_SHIFT (PTE_SHIFT + PTE_BITS)
45#define PGDIR_BITS (32 - PGDIR_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
47#define PGDIR_MASK (~(PGDIR_SIZE-1))
48
Paul Mundt21440cf2006-11-20 14:30:26 +090049/* Entries per level */
50#define PTRS_PER_PTE (1UL << PTE_BITS)
51#define PTRS_PER_PGD (1UL << PGDIR_BITS)
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
Hugh Dickinsd455a362005-04-19 13:29:23 -070054#define FIRST_USER_ADDRESS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define PTE_PHYS_MASK 0x1ffff000
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * First 1MB map is used by fixed purpose.
60 * Currently only 4-enty (16kB) is used (see arch/sh/mm/cache.c)
61 */
62#define VMALLOC_START (P3SEG+0x00100000)
63#define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
64
Paul Mundtef48e8e2006-09-27 16:17:17 +090065/*
66 * Linux PTEL encoding.
67 *
Paul Mundt21440cf2006-11-20 14:30:26 +090068 * Hardware and software bit definitions for the PTEL value (see below for
69 * notes on SH-X2 MMUs and 64-bit PTEs):
Paul Mundtef48e8e2006-09-27 16:17:17 +090070 *
71 * - Bits 0 and 7 are reserved on SH-3 (_PAGE_WT and _PAGE_SZ1 on SH-4).
72 *
73 * - Bit 1 is the SH-bit, but is unused on SH-3 due to an MMU bug (the
74 * hardware PTEL value can't have the SH-bit set when MMUCR.IX is set,
75 * which is the default in cpu-sh3/mmu_context.h:MMU_CONTROL_INIT).
76 *
77 * In order to keep this relatively clean, do not use these for defining
78 * SH-3 specific flags until all of the other unused bits have been
79 * exhausted.
80 *
81 * - Bit 9 is reserved by everyone and used by _PAGE_PROTNONE.
82 *
83 * - Bits 10 and 11 are low bits of the PPN that are reserved on >= 4K pages.
84 * Bit 10 is used for _PAGE_ACCESSED, bit 11 remains unused.
85 *
86 * - Bits 31, 30, and 29 remain unused by everyone and can be used for future
87 * software flags, although care must be taken to update _PAGE_CLEAR_FLAGS.
Paul Mundt21440cf2006-11-20 14:30:26 +090088 *
89 * XXX: Leave the _PAGE_FILE and _PAGE_WT overhaul for a rainy day.
90 *
91 * SH-X2 MMUs and extended PTEs
92 *
93 * SH-X2 supports an extended mode TLB with split data arrays due to the
94 * number of bits needed for PR and SZ (now EPR and ESZ) encodings. The PR and
95 * SZ bit placeholders still exist in data array 1, but are implemented as
96 * reserved bits, with the real logic existing in data array 2.
97 *
98 * The downside to this is that we can no longer fit everything in to a 32-bit
99 * PTE encoding, so a 64-bit pte_t is necessary for these parts. On the plus
100 * side, this gives us quite a few spare bits to play with for future usage.
Paul Mundtef48e8e2006-09-27 16:17:17 +0900101 */
Paul Mundt21440cf2006-11-20 14:30:26 +0900102/* Legacy and compat mode bits */
Paul Mundtef48e8e2006-09-27 16:17:17 +0900103#define _PAGE_WT 0x001 /* WT-bit on SH-4, 0 on SH-3 */
104#define _PAGE_HW_SHARED 0x002 /* SH-bit : shared among processes */
105#define _PAGE_DIRTY 0x004 /* D-bit : page changed */
106#define _PAGE_CACHABLE 0x008 /* C-bit : cachable */
Paul Mundt21440cf2006-11-20 14:30:26 +0900107#ifndef CONFIG_X2TLB
108# define _PAGE_SZ0 0x010 /* SZ0-bit : Size of page */
109# define _PAGE_RW 0x020 /* PR0-bit : write access allowed */
110# define _PAGE_USER 0x040 /* PR1-bit : user space access allowed*/
111# define _PAGE_SZ1 0x080 /* SZ1-bit : Size of page (on SH-4) */
112#endif
Paul Mundtef48e8e2006-09-27 16:17:17 +0900113#define _PAGE_PRESENT 0x100 /* V-bit : page is valid */
114#define _PAGE_PROTNONE 0x200 /* software: if not present */
115#define _PAGE_ACCESSED 0x400 /* software: page referenced */
116#define _PAGE_FILE _PAGE_WT /* software: pagecache or swap? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Paul Mundt21440cf2006-11-20 14:30:26 +0900118/* Extended mode bits */
119#define _PAGE_EXT_ESZ0 0x0010 /* ESZ0-bit: Size of page */
120#define _PAGE_EXT_ESZ1 0x0020 /* ESZ1-bit: Size of page */
121#define _PAGE_EXT_ESZ2 0x0040 /* ESZ2-bit: Size of page */
122#define _PAGE_EXT_ESZ3 0x0080 /* ESZ3-bit: Size of page */
123
124#define _PAGE_EXT_USER_EXEC 0x0100 /* EPR0-bit: User space executable */
125#define _PAGE_EXT_USER_WRITE 0x0200 /* EPR1-bit: User space writable */
126#define _PAGE_EXT_USER_READ 0x0400 /* EPR2-bit: User space readable */
127
128#define _PAGE_EXT_KERN_EXEC 0x0800 /* EPR3-bit: Kernel space executable */
129#define _PAGE_EXT_KERN_WRITE 0x1000 /* EPR4-bit: Kernel space writable */
130#define _PAGE_EXT_KERN_READ 0x2000 /* EPR5-bit: Kernel space readable */
131
132/* Wrapper for extended mode pgprot twiddling */
133#ifdef CONFIG_X2TLB
134# define _PAGE_EXT(x) ((unsigned long long)(x) << 32)
135#else
136# define _PAGE_EXT(x) (0)
137#endif
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/* software: moves to PTEA.TC (Timing Control) */
140#define _PAGE_PCC_AREA5 0x00000000 /* use BSC registers for area5 */
141#define _PAGE_PCC_AREA6 0x80000000 /* use BSC registers for area6 */
142
143/* software: moves to PTEA.SA[2:0] (Space Attributes) */
144#define _PAGE_PCC_IODYN 0x00000001 /* IO space, dynamically sized bus */
145#define _PAGE_PCC_IO8 0x20000000 /* IO space, 8 bit bus */
146#define _PAGE_PCC_IO16 0x20000001 /* IO space, 16 bit bus */
147#define _PAGE_PCC_COM8 0x40000000 /* Common Memory space, 8 bit bus */
148#define _PAGE_PCC_COM16 0x40000001 /* Common Memory space, 16 bit bus */
149#define _PAGE_PCC_ATR8 0x60000000 /* Attribute Memory space, 8 bit bus */
150#define _PAGE_PCC_ATR16 0x60000001 /* Attribute Memory space, 6 bit bus */
151
Paul Mundtef48e8e2006-09-27 16:17:17 +0900152/* Mask which drops unused bits from the PTEL value */
153#ifdef CONFIG_CPU_SH3
154#define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED| \
155 _PAGE_FILE | _PAGE_SZ1 | \
156 _PAGE_HW_SHARED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#else
Paul Mundtef48e8e2006-09-27 16:17:17 +0900158#define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | _PAGE_FILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#endif
160
Paul Mundtef48e8e2006-09-27 16:17:17 +0900161#define _PAGE_FLAGS_HARDWARE_MASK (0x1fffffff & ~(_PAGE_CLEAR_FLAGS))
162
Paul Mundt21440cf2006-11-20 14:30:26 +0900163/* Hardware flags, page size encoding */
164#if defined(CONFIG_X2TLB)
165# if defined(CONFIG_PAGE_SIZE_4KB)
166# define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ0)
167# elif defined(CONFIG_PAGE_SIZE_8KB)
168# define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ1)
169# elif defined(CONFIG_PAGE_SIZE_64KB)
170# define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ2)
171# endif
172#else
173# if defined(CONFIG_PAGE_SIZE_4KB)
174# define _PAGE_FLAGS_HARD _PAGE_SZ0
175# elif defined(CONFIG_PAGE_SIZE_64KB)
176# define _PAGE_FLAGS_HARD _PAGE_SZ1
177# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#endif
179
Paul Mundt21440cf2006-11-20 14:30:26 +0900180#if defined(CONFIG_X2TLB)
181# if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
182# define _PAGE_SZHUGE (_PAGE_EXT_ESZ2)
183# elif defined(CONFIG_HUGETLB_PAGE_SIZE_256K)
184# define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ2)
185# elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
186# define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ1 | _PAGE_EXT_ESZ2)
187# elif defined(CONFIG_HUGETLB_PAGE_SIZE_4MB)
188# define _PAGE_SZHUGE (_PAGE_EXT_ESZ3)
189# elif defined(CONFIG_HUGETLB_PAGE_SIZE_64MB)
190# define _PAGE_SZHUGE (_PAGE_EXT_ESZ2 | _PAGE_EXT_ESZ3)
191# endif
192#else
193# if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
194# define _PAGE_SZHUGE (_PAGE_SZ1)
195# elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
196# define _PAGE_SZHUGE (_PAGE_SZ0 | _PAGE_SZ1)
197# endif
198#endif
199
200#define _PAGE_CHG_MASK \
201 (PTE_MASK | _PAGE_ACCESSED | _PAGE_CACHABLE | _PAGE_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Paul Mundt26ff6c12006-09-27 15:13:36 +0900203#ifndef __ASSEMBLY__
204
Paul Mundt21440cf2006-11-20 14:30:26 +0900205#if defined(CONFIG_X2TLB) /* SH-X2 TLB */
206#define _PAGE_TABLE \
207 (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_DIRTY | \
208 _PAGE_EXT(_PAGE_EXT_USER_READ | _PAGE_EXT_USER_WRITE))
209
210#define _KERNPG_TABLE \
211 (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_DIRTY | \
212 _PAGE_EXT(_PAGE_EXT_KERN_READ | _PAGE_EXT_KERN_WRITE))
213
214#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
215 _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
216
217#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
218 _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
219 _PAGE_EXT(_PAGE_EXT_USER_READ | \
220 _PAGE_EXT_USER_WRITE))
221
222#define PAGE_EXECREAD __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
223 _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
224 _PAGE_EXT(_PAGE_EXT_USER_EXEC | \
225 _PAGE_EXT_USER_READ))
226
227#define PAGE_COPY PAGE_EXECREAD
228
229#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
230 _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
231 _PAGE_EXT(_PAGE_EXT_USER_READ))
232
233#define PAGE_WRITEONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
234 _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
235 _PAGE_EXT(_PAGE_EXT_USER_WRITE))
236
237#define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \
238 _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \
239 _PAGE_EXT(_PAGE_EXT_USER_WRITE | \
240 _PAGE_EXT_USER_READ | \
241 _PAGE_EXT_USER_EXEC))
242
243#define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
244 _PAGE_DIRTY | _PAGE_ACCESSED | \
245 _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \
246 _PAGE_EXT(_PAGE_EXT_KERN_READ | \
247 _PAGE_EXT_KERN_WRITE | \
248 _PAGE_EXT_KERN_EXEC))
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#define PAGE_KERNEL_NOCACHE \
Paul Mundt21440cf2006-11-20 14:30:26 +0900251 __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \
252 _PAGE_ACCESSED | _PAGE_HW_SHARED | \
253 _PAGE_FLAGS_HARD | \
254 _PAGE_EXT(_PAGE_EXT_KERN_READ | \
255 _PAGE_EXT_KERN_WRITE | \
256 _PAGE_EXT_KERN_EXEC))
257
258#define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
259 _PAGE_DIRTY | _PAGE_ACCESSED | \
260 _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \
261 _PAGE_EXT(_PAGE_EXT_KERN_READ | \
262 _PAGE_EXT_KERN_EXEC))
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#define PAGE_KERNEL_PCC(slot, type) \
Paul Mundt21440cf2006-11-20 14:30:26 +0900265 __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \
266 _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \
267 _PAGE_EXT(_PAGE_EXT_KERN_READ | \
268 _PAGE_EXT_KERN_WRITE | \
269 _PAGE_EXT_KERN_EXEC) \
270 (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \
271 (type))
272
273#elif defined(CONFIG_MMU) /* SH-X TLB */
274#define _PAGE_TABLE \
275 (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
276#define _KERNPG_TABLE \
277 (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
278
279#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
280 _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
281
282#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
283 _PAGE_CACHABLE | _PAGE_ACCESSED | \
284 _PAGE_FLAGS_HARD)
285
286#define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
287 _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
288
289#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \
290 _PAGE_ACCESSED | _PAGE_FLAGS_HARD)
291
292#define PAGE_EXECREAD PAGE_READONLY
293#define PAGE_RWX PAGE_SHARED
294#define PAGE_WRITEONLY PAGE_SHARED
295
296#define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_CACHABLE | \
297 _PAGE_DIRTY | _PAGE_ACCESSED | \
298 _PAGE_HW_SHARED | _PAGE_FLAGS_HARD)
299
300#define PAGE_KERNEL_NOCACHE \
301 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
302 _PAGE_ACCESSED | _PAGE_HW_SHARED | \
303 _PAGE_FLAGS_HARD)
304
305#define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \
306 _PAGE_DIRTY | _PAGE_ACCESSED | \
307 _PAGE_HW_SHARED | _PAGE_FLAGS_HARD)
308
309#define PAGE_KERNEL_PCC(slot, type) \
310 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
311 _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \
312 (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \
313 (type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#else /* no mmu */
315#define PAGE_NONE __pgprot(0)
316#define PAGE_SHARED __pgprot(0)
317#define PAGE_COPY __pgprot(0)
Paul Mundt21440cf2006-11-20 14:30:26 +0900318#define PAGE_EXECREAD __pgprot(0)
319#define PAGE_RWX __pgprot(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#define PAGE_READONLY __pgprot(0)
Paul Mundt21440cf2006-11-20 14:30:26 +0900321#define PAGE_WRITEONLY __pgprot(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#define PAGE_KERNEL __pgprot(0)
323#define PAGE_KERNEL_NOCACHE __pgprot(0)
324#define PAGE_KERNEL_RO __pgprot(0)
325#define PAGE_KERNEL_PCC __pgprot(0)
326#endif
327
Paul Mundt26ff6c12006-09-27 15:13:36 +0900328#endif /* __ASSEMBLY__ */
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330/*
Paul Mundt21440cf2006-11-20 14:30:26 +0900331 * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page
332 * protection for execute, and considers it the same as a read. Also, write
333 * permission implies read permission. This is the closest we can get..
334 *
335 * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme,
336 * not only supporting separate execute, read, and write bits, but having
337 * completely separate permission bits for user and kernel space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
Paul Mundt21440cf2006-11-20 14:30:26 +0900339 /*xwr*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#define __P000 PAGE_NONE
341#define __P001 PAGE_READONLY
342#define __P010 PAGE_COPY
343#define __P011 PAGE_COPY
Paul Mundt21440cf2006-11-20 14:30:26 +0900344#define __P100 PAGE_EXECREAD
345#define __P101 PAGE_EXECREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#define __P110 PAGE_COPY
347#define __P111 PAGE_COPY
348
349#define __S000 PAGE_NONE
350#define __S001 PAGE_READONLY
Paul Mundt21440cf2006-11-20 14:30:26 +0900351#define __S010 PAGE_WRITEONLY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#define __S011 PAGE_SHARED
Paul Mundt21440cf2006-11-20 14:30:26 +0900353#define __S100 PAGE_EXECREAD
354#define __S101 PAGE_EXECREAD
355#define __S110 PAGE_RWX
356#define __S111 PAGE_RWX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Paul Mundt26ff6c12006-09-27 15:13:36 +0900358#ifndef __ASSEMBLY__
359
360/*
361 * Certain architectures need to do special things when PTEs
362 * within a page table are directly modified. Thus, the following
363 * hook is made available.
364 */
Paul Mundt21440cf2006-11-20 14:30:26 +0900365#ifdef CONFIG_X2TLB
366static inline void set_pte(pte_t *ptep, pte_t pte)
367{
368 ptep->pte_high = pte.pte_high;
369 smp_wmb();
370 ptep->pte_low = pte.pte_low;
371}
372#else
Paul Mundt26ff6c12006-09-27 15:13:36 +0900373#define set_pte(pteptr, pteval) (*(pteptr) = pteval)
Paul Mundt21440cf2006-11-20 14:30:26 +0900374#endif
375
Paul Mundt26ff6c12006-09-27 15:13:36 +0900376#define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
377
378/*
379 * (pmds are folded into pgds so this doesn't get actually called,
380 * but the define is needed for a generic inline function.)
381 */
382#define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval)
383
Paul Mundt21440cf2006-11-20 14:30:26 +0900384#define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT)))
Paul Mundt26ff6c12006-09-27 15:13:36 +0900385#define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
386#define pfn_pmd(pfn, prot) __pmd(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#define pte_none(x) (!pte_val(x))
389#define pte_present(x) (pte_val(x) & (_PAGE_PRESENT | _PAGE_PROTNONE))
Paul Mundt21440cf2006-11-20 14:30:26 +0900390#define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392#define pmd_none(x) (!pmd_val(x))
393#define pmd_present(x) (pmd_val(x) & _PAGE_PRESENT)
394#define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
395#define pmd_bad(x) ((pmd_val(x) & (~PAGE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE)
396
397#define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
Paul Mundt26ff6c12006-09-27 15:13:36 +0900398#define pte_page(x) phys_to_page(pte_val(x)&PTE_PHYS_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400/*
401 * The following only work if pte_present() is true.
402 * Undefined behaviour if not..
403 */
Paul Mundt21440cf2006-11-20 14:30:26 +0900404#define pte_not_present(pte) (!(pte_val(pte) & _PAGE_PRESENT))
405#define pte_dirty(pte) (pte_val(pte) & _PAGE_DIRTY)
406#define pte_young(pte) (pte_val(pte) & _PAGE_ACCESSED)
407#define pte_file(pte) (pte_val(pte) & _PAGE_FILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Paul Mundt21440cf2006-11-20 14:30:26 +0900409#ifdef CONFIG_X2TLB
410#define pte_read(pte) ((pte).pte_high & _PAGE_EXT_USER_READ)
411#define pte_exec(pte) ((pte).pte_high & _PAGE_EXT_USER_EXEC)
412#define pte_write(pte) ((pte).pte_high & _PAGE_EXT_USER_WRITE)
413#else
414#define pte_read(pte) (pte_val(pte) & _PAGE_USER)
415#define pte_exec(pte) (pte_val(pte) & _PAGE_USER)
416#define pte_write(pte) (pte_val(pte) & _PAGE_RW)
Paul Mundtd2294012005-11-07 00:58:23 -0800417#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Paul Mundt21440cf2006-11-20 14:30:26 +0900419#define PTE_BIT_FUNC(h,fn,op) \
420static inline pte_t pte_##fn(pte_t pte) { pte.pte_##h op; return pte; }
421
422#ifdef CONFIG_X2TLB
423/*
424 * We cheat a bit in the SH-X2 TLB case. As the permission bits are
425 * individually toggled (and user permissions are entirely decoupled from
426 * kernel permissions), we attempt to couple them a bit more sanely here.
427 */
428PTE_BIT_FUNC(high, rdprotect, &= ~_PAGE_EXT_USER_READ);
429PTE_BIT_FUNC(high, mkread, |= _PAGE_EXT_USER_READ | _PAGE_EXT_KERN_READ);
430PTE_BIT_FUNC(high, wrprotect, &= ~_PAGE_EXT_USER_WRITE);
431PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
432PTE_BIT_FUNC(high, exprotect, &= ~_PAGE_EXT_USER_EXEC);
433PTE_BIT_FUNC(high, mkexec, |= _PAGE_EXT_USER_EXEC | _PAGE_EXT_KERN_EXEC);
434PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
435#else
436PTE_BIT_FUNC(low, rdprotect, &= ~_PAGE_USER);
437PTE_BIT_FUNC(low, mkread, |= _PAGE_USER);
438PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
439PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
440PTE_BIT_FUNC(low, exprotect, &= ~_PAGE_USER);
441PTE_BIT_FUNC(low, mkexec, |= _PAGE_USER);
442PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
443#endif
444
445PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
446PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
447PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED);
448PTE_BIT_FUNC(low, mkyoung, |= _PAGE_ACCESSED);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/*
451 * Macro and implementation to make a page protection as uncachable.
452 */
453#define pgprot_noncached pgprot_noncached
454
455static inline pgprot_t pgprot_noncached(pgprot_t _prot)
456{
457 unsigned long prot = pgprot_val(_prot);
458
459 prot &= ~_PAGE_CACHABLE;
460 return __pgprot(prot);
461}
462
463#define pgprot_writecombine(prot) __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE)
464
465/*
466 * Conversion functions: convert a page and protection to a page entry,
467 * and a page entry and page directory to the page they refer to.
468 *
469 * extern pte_t mk_pte(struct page *page, pgprot_t pgprot)
470 */
471#define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
472
473static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
Paul Mundt21440cf2006-11-20 14:30:26 +0900474{
475 set_pte(&pte, __pte((pte_val(pte) & _PAGE_CHG_MASK) |
476 pgprot_val(newprot)));
477 return pte;
478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Dave McCracken46a82b22006-09-25 23:31:48 -0700480#define pmd_page_vaddr(pmd) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
482
483#define pmd_page(pmd) \
484 (phys_to_page(pmd_val(pmd)))
485
486/* to find an entry in a page-table-directory. */
487#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
488#define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
489
490/* to find an entry in a kernel page-table-directory */
491#define pgd_offset_k(address) pgd_offset(&init_mm, address)
492
493/* Find an entry in the third-level page table.. */
494#define pte_index(address) \
495 ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
496#define pte_offset_kernel(dir, address) \
Dave McCracken46a82b22006-09-25 23:31:48 -0700497 ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#define pte_offset_map(dir, address) pte_offset_kernel(dir, address)
499#define pte_offset_map_nested(dir, address) pte_offset_kernel(dir, address)
500#define pte_unmap(pte) do { } while (0)
501#define pte_unmap_nested(pte) do { } while (0)
502
Paul Mundt21440cf2006-11-20 14:30:26 +0900503#ifdef CONFIG_X2TLB
504#define pte_ERROR(e) \
505 printk("%s:%d: bad pte %p(%08lx%08lx).\n", __FILE__, __LINE__, \
506 &(e), (e).pte_high, (e).pte_low)
507#else
Paul Mundt26ff6c12006-09-27 15:13:36 +0900508#define pte_ERROR(e) \
509 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
Paul Mundt21440cf2006-11-20 14:30:26 +0900510#endif
511
Paul Mundt26ff6c12006-09-27 15:13:36 +0900512#define pgd_ERROR(e) \
513 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515struct vm_area_struct;
516extern void update_mmu_cache(struct vm_area_struct * vma,
517 unsigned long address, pte_t pte);
518
519/* Encode and de-code a swap entry */
520/*
521 * NOTE: We should set ZEROs at the position of _PAGE_PRESENT
522 * and _PAGE_PROTNONE bits
523 */
524#define __swp_type(x) ((x).val & 0xff)
525#define __swp_offset(x) ((x).val >> 10)
526#define __swp_entry(type, offset) ((swp_entry_t) { (type) | ((offset) << 10) })
527#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 1 })
528#define __swp_entry_to_pte(x) ((pte_t) { (x).val << 1 })
529
530/*
531 * Encode and decode a nonlinear file mapping entry
532 */
533#define PTE_FILE_MAX_BITS 29
534#define pte_to_pgoff(pte) (pte_val(pte) >> 1)
535#define pgoff_to_pte(off) ((pte_t) { ((off) << 1) | _PAGE_FILE })
536
537typedef pte_t *pte_addr_t;
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539#define kern_addr_valid(addr) (1)
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
542 remap_pfn_range(vma, vaddr, pfn, size, prot)
543
544#define MK_IOSPACE_PFN(space, pfn) (pfn)
545#define GET_IOSPACE(pfn) 0
546#define GET_PFN(pfn) (pfn)
547
Tim Schmielau8c65b4a2005-11-07 00:59:43 -0800548struct mm_struct;
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550/*
551 * No page table caches to initialise
552 */
553#define pgtable_cache_init() do { } while (0)
554
555#ifndef CONFIG_MMU
556extern unsigned int kobjsize(const void *objp);
557#endif /* !CONFIG_MMU */
558
559#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
560#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
561extern pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
562#endif
563
Paul Mundt21440cf2006-11-20 14:30:26 +0900564extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
565extern void paging_init(void);
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567#include <asm-generic/pgtable.h>
568
Paul Mundt26ff6c12006-09-27 15:13:36 +0900569#endif /* !__ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#endif /* __ASM_SH_PAGE_H */