Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #ifndef __ASM_SH_PGTABLE_H |
| 13 | #define __ASM_SH_PGTABLE_H |
| 14 | |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 15 | #include <asm-generic/pgtable-nopmd.h> |
| 16 | #include <asm/page.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #ifndef __ASSEMBLY__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/addrspace.h> |
| 20 | #include <asm/fixmap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * ZERO_PAGE is a global shared page that is always zero: used |
| 24 | * for zero-mapped memory areas etc.. |
| 25 | */ |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 26 | extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page)) |
| 28 | |
| 29 | #endif /* !__ASSEMBLY__ */ |
| 30 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 31 | /* |
Paul Mundt | 36bcd39 | 2007-11-10 19:16:55 +0900 | [diff] [blame^] | 32 | * Effective and physical address definitions, to aid with sign |
| 33 | * extension. |
| 34 | */ |
| 35 | #define NEFF 32 |
| 36 | #define NEFF_SIGN (1LL << (NEFF - 1)) |
| 37 | #define NEFF_MASK (-1LL << NEFF) |
| 38 | |
| 39 | #ifdef CONFIG_29BIT |
| 40 | #define NPHYS 29 |
| 41 | #else |
| 42 | #define NPHYS 32 |
| 43 | #endif |
| 44 | |
| 45 | #define NPHYS_SIGN (1LL << (NPHYS - 1)) |
| 46 | #define NPHYS_MASK (-1LL << NPHYS) |
| 47 | |
| 48 | /* |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 49 | * traditional two-level paging structure |
| 50 | */ |
| 51 | /* PTE bits */ |
| 52 | #ifdef CONFIG_X2TLB |
| 53 | # define PTE_MAGNITUDE 3 /* 64-bit PTEs on extended mode SH-X2 TLB */ |
| 54 | #else |
| 55 | # define PTE_MAGNITUDE 2 /* 32-bit PTEs */ |
| 56 | #endif |
| 57 | #define PTE_SHIFT PAGE_SHIFT |
| 58 | #define PTE_BITS (PTE_SHIFT - PTE_MAGNITUDE) |
| 59 | |
| 60 | /* PGD bits */ |
| 61 | #define PGDIR_SHIFT (PTE_SHIFT + PTE_BITS) |
Paul Mundt | db2e1fa | 2007-02-14 14:13:10 +0900 | [diff] [blame] | 62 | #define PGDIR_SIZE (1UL << PGDIR_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define PGDIR_MASK (~(PGDIR_SIZE-1)) |
| 64 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 65 | /* Entries per level */ |
Paul Mundt | 7a847f8 | 2006-12-26 15:29:19 +0900 | [diff] [blame] | 66 | #define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE)) |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 67 | #define PTRS_PER_PGD (PAGE_SIZE / sizeof(pgd_t)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE) |
Hugh Dickins | d455a36 | 2005-04-19 13:29:23 -0700 | [diff] [blame] | 70 | #define FIRST_USER_ADDRESS 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Paul Mundt | 7a847f8 | 2006-12-26 15:29:19 +0900 | [diff] [blame] | 72 | #define PTE_PHYS_MASK (0x20000000 - PAGE_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Paul Mundt | f0b859e | 2007-07-25 10:43:47 +0900 | [diff] [blame] | 74 | #define VMALLOC_START (P3SEG) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE) |
| 76 | |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 77 | /* |
| 78 | * Linux PTEL encoding. |
| 79 | * |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 80 | * Hardware and software bit definitions for the PTEL value (see below for |
| 81 | * notes on SH-X2 MMUs and 64-bit PTEs): |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 82 | * |
| 83 | * - Bits 0 and 7 are reserved on SH-3 (_PAGE_WT and _PAGE_SZ1 on SH-4). |
| 84 | * |
| 85 | * - Bit 1 is the SH-bit, but is unused on SH-3 due to an MMU bug (the |
| 86 | * hardware PTEL value can't have the SH-bit set when MMUCR.IX is set, |
| 87 | * which is the default in cpu-sh3/mmu_context.h:MMU_CONTROL_INIT). |
| 88 | * |
| 89 | * In order to keep this relatively clean, do not use these for defining |
| 90 | * SH-3 specific flags until all of the other unused bits have been |
| 91 | * exhausted. |
| 92 | * |
| 93 | * - Bit 9 is reserved by everyone and used by _PAGE_PROTNONE. |
| 94 | * |
| 95 | * - Bits 10 and 11 are low bits of the PPN that are reserved on >= 4K pages. |
| 96 | * Bit 10 is used for _PAGE_ACCESSED, bit 11 remains unused. |
| 97 | * |
| 98 | * - Bits 31, 30, and 29 remain unused by everyone and can be used for future |
| 99 | * software flags, although care must be taken to update _PAGE_CLEAR_FLAGS. |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 100 | * |
| 101 | * XXX: Leave the _PAGE_FILE and _PAGE_WT overhaul for a rainy day. |
| 102 | * |
| 103 | * SH-X2 MMUs and extended PTEs |
| 104 | * |
| 105 | * SH-X2 supports an extended mode TLB with split data arrays due to the |
| 106 | * number of bits needed for PR and SZ (now EPR and ESZ) encodings. The PR and |
| 107 | * SZ bit placeholders still exist in data array 1, but are implemented as |
| 108 | * reserved bits, with the real logic existing in data array 2. |
| 109 | * |
| 110 | * The downside to this is that we can no longer fit everything in to a 32-bit |
| 111 | * PTE encoding, so a 64-bit pte_t is necessary for these parts. On the plus |
| 112 | * side, this gives us quite a few spare bits to play with for future usage. |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 113 | */ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 114 | /* Legacy and compat mode bits */ |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 115 | #define _PAGE_WT 0x001 /* WT-bit on SH-4, 0 on SH-3 */ |
| 116 | #define _PAGE_HW_SHARED 0x002 /* SH-bit : shared among processes */ |
| 117 | #define _PAGE_DIRTY 0x004 /* D-bit : page changed */ |
| 118 | #define _PAGE_CACHABLE 0x008 /* C-bit : cachable */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 119 | #define _PAGE_SZ0 0x010 /* SZ0-bit : Size of page */ |
| 120 | #define _PAGE_RW 0x020 /* PR0-bit : write access allowed */ |
| 121 | #define _PAGE_USER 0x040 /* PR1-bit : user space access allowed*/ |
| 122 | #define _PAGE_SZ1 0x080 /* SZ1-bit : Size of page (on SH-4) */ |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 123 | #define _PAGE_PRESENT 0x100 /* V-bit : page is valid */ |
| 124 | #define _PAGE_PROTNONE 0x200 /* software: if not present */ |
| 125 | #define _PAGE_ACCESSED 0x400 /* software: page referenced */ |
| 126 | #define _PAGE_FILE _PAGE_WT /* software: pagecache or swap? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 128 | #define _PAGE_SZ_MASK (_PAGE_SZ0 | _PAGE_SZ1) |
| 129 | #define _PAGE_PR_MASK (_PAGE_RW | _PAGE_USER) |
| 130 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 131 | /* Extended mode bits */ |
| 132 | #define _PAGE_EXT_ESZ0 0x0010 /* ESZ0-bit: Size of page */ |
| 133 | #define _PAGE_EXT_ESZ1 0x0020 /* ESZ1-bit: Size of page */ |
| 134 | #define _PAGE_EXT_ESZ2 0x0040 /* ESZ2-bit: Size of page */ |
| 135 | #define _PAGE_EXT_ESZ3 0x0080 /* ESZ3-bit: Size of page */ |
| 136 | |
| 137 | #define _PAGE_EXT_USER_EXEC 0x0100 /* EPR0-bit: User space executable */ |
| 138 | #define _PAGE_EXT_USER_WRITE 0x0200 /* EPR1-bit: User space writable */ |
| 139 | #define _PAGE_EXT_USER_READ 0x0400 /* EPR2-bit: User space readable */ |
| 140 | |
| 141 | #define _PAGE_EXT_KERN_EXEC 0x0800 /* EPR3-bit: Kernel space executable */ |
| 142 | #define _PAGE_EXT_KERN_WRITE 0x1000 /* EPR4-bit: Kernel space writable */ |
| 143 | #define _PAGE_EXT_KERN_READ 0x2000 /* EPR5-bit: Kernel space readable */ |
| 144 | |
| 145 | /* Wrapper for extended mode pgprot twiddling */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 146 | #define _PAGE_EXT(x) ((unsigned long long)(x) << 32) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* software: moves to PTEA.TC (Timing Control) */ |
| 149 | #define _PAGE_PCC_AREA5 0x00000000 /* use BSC registers for area5 */ |
| 150 | #define _PAGE_PCC_AREA6 0x80000000 /* use BSC registers for area6 */ |
| 151 | |
| 152 | /* software: moves to PTEA.SA[2:0] (Space Attributes) */ |
| 153 | #define _PAGE_PCC_IODYN 0x00000001 /* IO space, dynamically sized bus */ |
| 154 | #define _PAGE_PCC_IO8 0x20000000 /* IO space, 8 bit bus */ |
| 155 | #define _PAGE_PCC_IO16 0x20000001 /* IO space, 16 bit bus */ |
| 156 | #define _PAGE_PCC_COM8 0x40000000 /* Common Memory space, 8 bit bus */ |
| 157 | #define _PAGE_PCC_COM16 0x40000001 /* Common Memory space, 16 bit bus */ |
| 158 | #define _PAGE_PCC_ATR8 0x60000000 /* Attribute Memory space, 8 bit bus */ |
| 159 | #define _PAGE_PCC_ATR16 0x60000001 /* Attribute Memory space, 6 bit bus */ |
| 160 | |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 161 | /* Mask which drops unused bits from the PTEL value */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 162 | #if defined(CONFIG_CPU_SH3) |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 163 | #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED| \ |
| 164 | _PAGE_FILE | _PAGE_SZ1 | \ |
| 165 | _PAGE_HW_SHARED) |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 166 | #elif defined(CONFIG_X2TLB) |
| 167 | /* Get rid of the legacy PR/SZ bits when using extended mode */ |
| 168 | #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | \ |
| 169 | _PAGE_FILE | _PAGE_PR_MASK | _PAGE_SZ_MASK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | #else |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 171 | #define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | _PAGE_FILE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | #endif |
| 173 | |
Paul Mundt | ef48e8e | 2006-09-27 16:17:17 +0900 | [diff] [blame] | 174 | #define _PAGE_FLAGS_HARDWARE_MASK (0x1fffffff & ~(_PAGE_CLEAR_FLAGS)) |
| 175 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 176 | /* Hardware flags, page size encoding */ |
| 177 | #if defined(CONFIG_X2TLB) |
| 178 | # if defined(CONFIG_PAGE_SIZE_4KB) |
| 179 | # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ0) |
| 180 | # elif defined(CONFIG_PAGE_SIZE_8KB) |
| 181 | # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ1) |
| 182 | # elif defined(CONFIG_PAGE_SIZE_64KB) |
| 183 | # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ2) |
| 184 | # endif |
| 185 | #else |
| 186 | # if defined(CONFIG_PAGE_SIZE_4KB) |
| 187 | # define _PAGE_FLAGS_HARD _PAGE_SZ0 |
| 188 | # elif defined(CONFIG_PAGE_SIZE_64KB) |
| 189 | # define _PAGE_FLAGS_HARD _PAGE_SZ1 |
| 190 | # endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | #endif |
| 192 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 193 | #if defined(CONFIG_X2TLB) |
| 194 | # if defined(CONFIG_HUGETLB_PAGE_SIZE_64K) |
| 195 | # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2) |
| 196 | # elif defined(CONFIG_HUGETLB_PAGE_SIZE_256K) |
| 197 | # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ2) |
| 198 | # elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB) |
| 199 | # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ1 | _PAGE_EXT_ESZ2) |
| 200 | # elif defined(CONFIG_HUGETLB_PAGE_SIZE_4MB) |
| 201 | # define _PAGE_SZHUGE (_PAGE_EXT_ESZ3) |
| 202 | # elif defined(CONFIG_HUGETLB_PAGE_SIZE_64MB) |
| 203 | # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2 | _PAGE_EXT_ESZ3) |
| 204 | # endif |
| 205 | #else |
| 206 | # if defined(CONFIG_HUGETLB_PAGE_SIZE_64K) |
| 207 | # define _PAGE_SZHUGE (_PAGE_SZ1) |
| 208 | # elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB) |
| 209 | # define _PAGE_SZHUGE (_PAGE_SZ0 | _PAGE_SZ1) |
| 210 | # endif |
| 211 | #endif |
| 212 | |
Paul Mundt | 5b67954 | 2006-12-06 11:20:53 +0900 | [diff] [blame] | 213 | /* |
| 214 | * Stub out _PAGE_SZHUGE if we don't have a good definition for it, |
| 215 | * to make pte_mkhuge() happy. |
| 216 | */ |
| 217 | #ifndef _PAGE_SZHUGE |
| 218 | # define _PAGE_SZHUGE (_PAGE_FLAGS_HARD) |
| 219 | #endif |
| 220 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 221 | #define _PAGE_CHG_MASK \ |
| 222 | (PTE_MASK | _PAGE_ACCESSED | _PAGE_CACHABLE | _PAGE_DIRTY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 224 | #ifndef __ASSEMBLY__ |
| 225 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 226 | #if defined(CONFIG_X2TLB) /* SH-X2 TLB */ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 227 | #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \ |
| 228 | _PAGE_ACCESSED | _PAGE_FLAGS_HARD) |
| 229 | |
| 230 | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \ |
| 231 | _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 232 | _PAGE_EXT(_PAGE_EXT_KERN_READ | \ |
| 233 | _PAGE_EXT_KERN_WRITE | \ |
| 234 | _PAGE_EXT_USER_READ | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 235 | _PAGE_EXT_USER_WRITE)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 236 | |
| 237 | #define PAGE_EXECREAD __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \ |
| 238 | _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 239 | _PAGE_EXT(_PAGE_EXT_KERN_EXEC | \ |
| 240 | _PAGE_EXT_KERN_READ | \ |
| 241 | _PAGE_EXT_USER_EXEC | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 242 | _PAGE_EXT_USER_READ)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 243 | |
| 244 | #define PAGE_COPY PAGE_EXECREAD |
| 245 | |
| 246 | #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \ |
| 247 | _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 248 | _PAGE_EXT(_PAGE_EXT_KERN_READ | \ |
| 249 | _PAGE_EXT_USER_READ)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 250 | |
| 251 | #define PAGE_WRITEONLY __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \ |
| 252 | _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 253 | _PAGE_EXT(_PAGE_EXT_KERN_WRITE | \ |
| 254 | _PAGE_EXT_USER_WRITE)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 255 | |
| 256 | #define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED | \ |
| 257 | _PAGE_CACHABLE | _PAGE_FLAGS_HARD | \ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 258 | _PAGE_EXT(_PAGE_EXT_KERN_WRITE | \ |
| 259 | _PAGE_EXT_KERN_READ | \ |
| 260 | _PAGE_EXT_KERN_EXEC | \ |
| 261 | _PAGE_EXT_USER_WRITE | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 262 | _PAGE_EXT_USER_READ | \ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 263 | _PAGE_EXT_USER_EXEC)) |
| 264 | |
| 265 | #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \ |
| 266 | _PAGE_DIRTY | _PAGE_ACCESSED | \ |
| 267 | _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \ |
| 268 | _PAGE_EXT(_PAGE_EXT_KERN_READ | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 269 | _PAGE_EXT_KERN_WRITE | \ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 270 | _PAGE_EXT_KERN_EXEC)) |
| 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | #define PAGE_KERNEL_NOCACHE \ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 273 | __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \ |
| 274 | _PAGE_ACCESSED | _PAGE_HW_SHARED | \ |
| 275 | _PAGE_FLAGS_HARD | \ |
| 276 | _PAGE_EXT(_PAGE_EXT_KERN_READ | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 277 | _PAGE_EXT_KERN_WRITE | \ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 278 | _PAGE_EXT_KERN_EXEC)) |
| 279 | |
| 280 | #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \ |
| 281 | _PAGE_DIRTY | _PAGE_ACCESSED | \ |
| 282 | _PAGE_HW_SHARED | _PAGE_FLAGS_HARD | \ |
| 283 | _PAGE_EXT(_PAGE_EXT_KERN_READ | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 284 | _PAGE_EXT_KERN_EXEC)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | #define PAGE_KERNEL_PCC(slot, type) \ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 287 | __pgprot(_PAGE_PRESENT | _PAGE_DIRTY | \ |
| 288 | _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \ |
| 289 | _PAGE_EXT(_PAGE_EXT_KERN_READ | \ |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 290 | _PAGE_EXT_KERN_WRITE | \ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 291 | _PAGE_EXT_KERN_EXEC) \ |
| 292 | (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \ |
| 293 | (type)) |
| 294 | |
| 295 | #elif defined(CONFIG_MMU) /* SH-X TLB */ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 296 | #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \ |
| 297 | _PAGE_ACCESSED | _PAGE_FLAGS_HARD) |
| 298 | |
| 299 | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \ |
| 300 | _PAGE_CACHABLE | _PAGE_ACCESSED | \ |
| 301 | _PAGE_FLAGS_HARD) |
| 302 | |
| 303 | #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \ |
| 304 | _PAGE_ACCESSED | _PAGE_FLAGS_HARD) |
| 305 | |
| 306 | #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | \ |
| 307 | _PAGE_ACCESSED | _PAGE_FLAGS_HARD) |
| 308 | |
| 309 | #define PAGE_EXECREAD PAGE_READONLY |
| 310 | #define PAGE_RWX PAGE_SHARED |
| 311 | #define PAGE_WRITEONLY PAGE_SHARED |
| 312 | |
| 313 | #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_CACHABLE | \ |
| 314 | _PAGE_DIRTY | _PAGE_ACCESSED | \ |
| 315 | _PAGE_HW_SHARED | _PAGE_FLAGS_HARD) |
| 316 | |
| 317 | #define PAGE_KERNEL_NOCACHE \ |
| 318 | __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \ |
| 319 | _PAGE_ACCESSED | _PAGE_HW_SHARED | \ |
| 320 | _PAGE_FLAGS_HARD) |
| 321 | |
| 322 | #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_CACHABLE | \ |
| 323 | _PAGE_DIRTY | _PAGE_ACCESSED | \ |
| 324 | _PAGE_HW_SHARED | _PAGE_FLAGS_HARD) |
| 325 | |
| 326 | #define PAGE_KERNEL_PCC(slot, type) \ |
| 327 | __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \ |
| 328 | _PAGE_ACCESSED | _PAGE_FLAGS_HARD | \ |
| 329 | (slot ? _PAGE_PCC_AREA5 : _PAGE_PCC_AREA6) | \ |
| 330 | (type)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | #else /* no mmu */ |
| 332 | #define PAGE_NONE __pgprot(0) |
| 333 | #define PAGE_SHARED __pgprot(0) |
| 334 | #define PAGE_COPY __pgprot(0) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 335 | #define PAGE_EXECREAD __pgprot(0) |
| 336 | #define PAGE_RWX __pgprot(0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | #define PAGE_READONLY __pgprot(0) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 338 | #define PAGE_WRITEONLY __pgprot(0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | #define PAGE_KERNEL __pgprot(0) |
| 340 | #define PAGE_KERNEL_NOCACHE __pgprot(0) |
| 341 | #define PAGE_KERNEL_RO __pgprot(0) |
Paul Mundt | ac11584 | 2007-11-07 11:40:24 +0900 | [diff] [blame] | 342 | |
| 343 | #define PAGE_KERNEL_PCC(slot, type) \ |
| 344 | __pgprot(0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | #endif |
| 346 | |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 347 | #endif /* __ASSEMBLY__ */ |
| 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | /* |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 350 | * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page |
| 351 | * protection for execute, and considers it the same as a read. Also, write |
| 352 | * permission implies read permission. This is the closest we can get.. |
| 353 | * |
| 354 | * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme, |
| 355 | * not only supporting separate execute, read, and write bits, but having |
| 356 | * completely separate permission bits for user and kernel space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | */ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 358 | /*xwr*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | #define __P000 PAGE_NONE |
| 360 | #define __P001 PAGE_READONLY |
| 361 | #define __P010 PAGE_COPY |
| 362 | #define __P011 PAGE_COPY |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 363 | #define __P100 PAGE_EXECREAD |
| 364 | #define __P101 PAGE_EXECREAD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | #define __P110 PAGE_COPY |
| 366 | #define __P111 PAGE_COPY |
| 367 | |
| 368 | #define __S000 PAGE_NONE |
| 369 | #define __S001 PAGE_READONLY |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 370 | #define __S010 PAGE_WRITEONLY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | #define __S011 PAGE_SHARED |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 372 | #define __S100 PAGE_EXECREAD |
| 373 | #define __S101 PAGE_EXECREAD |
| 374 | #define __S110 PAGE_RWX |
| 375 | #define __S111 PAGE_RWX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 377 | #ifndef __ASSEMBLY__ |
| 378 | |
| 379 | /* |
| 380 | * Certain architectures need to do special things when PTEs |
| 381 | * within a page table are directly modified. Thus, the following |
| 382 | * hook is made available. |
| 383 | */ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 384 | #ifdef CONFIG_X2TLB |
| 385 | static inline void set_pte(pte_t *ptep, pte_t pte) |
| 386 | { |
| 387 | ptep->pte_high = pte.pte_high; |
| 388 | smp_wmb(); |
| 389 | ptep->pte_low = pte.pte_low; |
| 390 | } |
| 391 | #else |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 392 | #define set_pte(pteptr, pteval) (*(pteptr) = pteval) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 393 | #endif |
| 394 | |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 395 | #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval) |
| 396 | |
| 397 | /* |
| 398 | * (pmds are folded into pgds so this doesn't get actually called, |
| 399 | * but the define is needed for a generic inline function.) |
| 400 | */ |
| 401 | #define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval) |
| 402 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 403 | #define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT))) |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 404 | |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 405 | #define pfn_pte(pfn, prot) \ |
| 406 | __pte(((unsigned long long)(pfn) << PAGE_SHIFT) | pgprot_val(prot)) |
| 407 | #define pfn_pmd(pfn, prot) \ |
| 408 | __pmd(((unsigned long long)(pfn) << PAGE_SHIFT) | pgprot_val(prot)) |
| 409 | |
| 410 | #define pte_none(x) (!pte_val(x)) |
| 411 | #define pte_present(x) ((x).pte_low & (_PAGE_PRESENT | _PAGE_PROTNONE)) |
| 412 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 413 | #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | #define pmd_none(x) (!pmd_val(x)) |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 416 | #define pmd_present(x) (pmd_val(x)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0) |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 418 | #define pmd_bad(x) (pmd_val(x) & ~PAGE_MASK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
| 420 | #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) |
Paul Mundt | afca035 | 2007-10-15 11:01:33 +0900 | [diff] [blame] | 421 | #define pte_page(x) pfn_to_page(pte_pfn(x)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | /* |
| 424 | * The following only work if pte_present() is true. |
| 425 | * Undefined behaviour if not.. |
| 426 | */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 427 | #define pte_not_present(pte) (!((pte).pte_low & _PAGE_PRESENT)) |
| 428 | #define pte_dirty(pte) ((pte).pte_low & _PAGE_DIRTY) |
| 429 | #define pte_young(pte) ((pte).pte_low & _PAGE_ACCESSED) |
| 430 | #define pte_file(pte) ((pte).pte_low & _PAGE_FILE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 432 | #ifdef CONFIG_X2TLB |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 433 | #define pte_write(pte) ((pte).pte_high & _PAGE_EXT_USER_WRITE) |
| 434 | #else |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 435 | #define pte_write(pte) ((pte).pte_low & _PAGE_RW) |
Paul Mundt | d229401 | 2005-11-07 00:58:23 -0800 | [diff] [blame] | 436 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 438 | #define PTE_BIT_FUNC(h,fn,op) \ |
| 439 | static inline pte_t pte_##fn(pte_t pte) { pte.pte_##h op; return pte; } |
| 440 | |
| 441 | #ifdef CONFIG_X2TLB |
| 442 | /* |
| 443 | * We cheat a bit in the SH-X2 TLB case. As the permission bits are |
| 444 | * individually toggled (and user permissions are entirely decoupled from |
| 445 | * kernel permissions), we attempt to couple them a bit more sanely here. |
| 446 | */ |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 447 | PTE_BIT_FUNC(high, wrprotect, &= ~_PAGE_EXT_USER_WRITE); |
| 448 | PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE); |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 449 | PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE); |
| 450 | #else |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 451 | PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW); |
| 452 | PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW); |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 453 | PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE); |
| 454 | #endif |
| 455 | |
| 456 | PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY); |
| 457 | PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY); |
| 458 | PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED); |
| 459 | PTE_BIT_FUNC(low, mkyoung, |= _PAGE_ACCESSED); |
| 460 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | /* |
| 462 | * Macro and implementation to make a page protection as uncachable. |
| 463 | */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 464 | #define pgprot_writecombine(prot) \ |
| 465 | __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 467 | #define pgprot_noncached pgprot_writecombine |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | /* |
| 470 | * Conversion functions: convert a page and protection to a page entry, |
| 471 | * and a page entry and page directory to the page they refer to. |
| 472 | * |
| 473 | * extern pte_t mk_pte(struct page *page, pgprot_t pgprot) |
| 474 | */ |
| 475 | #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot)) |
| 476 | |
| 477 | static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 478 | { |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 479 | pte.pte_low &= _PAGE_CHG_MASK; |
| 480 | pte.pte_low |= pgprot_val(newprot); |
| 481 | |
| 482 | #ifdef CONFIG_X2TLB |
| 483 | pte.pte_high |= pgprot_val(newprot) >> 32; |
| 484 | #endif |
| 485 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 486 | return pte; |
| 487 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 489 | #define pmd_page_vaddr(pmd) ((unsigned long)pmd_val(pmd)) |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 490 | #define pmd_page(pmd) (virt_to_page(pmd_val(pmd))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
| 492 | /* to find an entry in a page-table-directory. */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 493 | #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)) |
| 494 | #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | /* to find an entry in a kernel page-table-directory */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 497 | #define pgd_offset_k(address) pgd_offset(&init_mm, address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | /* Find an entry in the third-level page table.. */ |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 500 | #define pte_index(address) ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | #define pte_offset_kernel(dir, address) \ |
Dave McCracken | 46a82b2 | 2006-09-25 23:31:48 -0700 | [diff] [blame] | 502 | ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address)) |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 503 | #define pte_offset_map(dir, address) pte_offset_kernel(dir, address) |
| 504 | #define pte_offset_map_nested(dir, address) pte_offset_kernel(dir, address) |
| 505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | #define pte_unmap(pte) do { } while (0) |
| 507 | #define pte_unmap_nested(pte) do { } while (0) |
| 508 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 509 | #ifdef CONFIG_X2TLB |
| 510 | #define pte_ERROR(e) \ |
| 511 | printk("%s:%d: bad pte %p(%08lx%08lx).\n", __FILE__, __LINE__, \ |
| 512 | &(e), (e).pte_high, (e).pte_low) |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 513 | #define pgd_ERROR(e) \ |
| 514 | printk("%s:%d: bad pgd %016llx.\n", __FILE__, __LINE__, pgd_val(e)) |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 515 | #else |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 516 | #define pte_ERROR(e) \ |
| 517 | printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e)) |
| 518 | #define pgd_ERROR(e) \ |
| 519 | printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) |
Paul Mundt | d04a0f7 | 2007-09-21 11:55:03 +0900 | [diff] [blame] | 520 | #endif |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | struct vm_area_struct; |
| 523 | extern void update_mmu_cache(struct vm_area_struct * vma, |
| 524 | unsigned long address, pte_t pte); |
| 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | /* |
Paul Mundt | b9b382d | 2006-12-07 12:43:06 +0900 | [diff] [blame] | 527 | * Encode and de-code a swap entry |
| 528 | * |
| 529 | * Constraints: |
| 530 | * _PAGE_FILE at bit 0 |
| 531 | * _PAGE_PRESENT at bit 8 |
| 532 | * _PAGE_PROTNONE at bit 9 |
| 533 | * |
| 534 | * For the normal case, we encode the swap type into bits 0:7 and the |
| 535 | * swap offset into bits 10:30. For the 64-bit PTE case, we keep the |
| 536 | * preserved bits in the low 32-bits and use the upper 32 as the swap |
| 537 | * offset (along with a 5-bit type), following the same approach as x86 |
| 538 | * PAE. This keeps the logic quite simple, and allows for a full 32 |
| 539 | * PTE_FILE_MAX_BITS, as opposed to the 29-bits we're constrained with |
| 540 | * in the pte_low case. |
| 541 | * |
| 542 | * As is evident by the Alpha code, if we ever get a 64-bit unsigned |
| 543 | * long (swp_entry_t) to match up with the 64-bit PTEs, this all becomes |
| 544 | * much cleaner.. |
| 545 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | * NOTE: We should set ZEROs at the position of _PAGE_PRESENT |
| 547 | * and _PAGE_PROTNONE bits |
| 548 | */ |
Paul Mundt | b9b382d | 2006-12-07 12:43:06 +0900 | [diff] [blame] | 549 | #ifdef CONFIG_X2TLB |
| 550 | #define __swp_type(x) ((x).val & 0x1f) |
| 551 | #define __swp_offset(x) ((x).val >> 5) |
| 552 | #define __swp_entry(type, offset) ((swp_entry_t){ (type) | (offset) << 5}) |
| 553 | #define __pte_to_swp_entry(pte) ((swp_entry_t){ (pte).pte_high }) |
| 554 | #define __swp_entry_to_pte(x) ((pte_t){ 0, (x).val }) |
| 555 | |
| 556 | /* |
| 557 | * Encode and decode a nonlinear file mapping entry |
| 558 | */ |
| 559 | #define pte_to_pgoff(pte) ((pte).pte_high) |
| 560 | #define pgoff_to_pte(off) ((pte_t) { _PAGE_FILE, (off) }) |
| 561 | |
| 562 | #define PTE_FILE_MAX_BITS 32 |
| 563 | #else |
| 564 | #define __swp_type(x) ((x).val & 0xff) |
| 565 | #define __swp_offset(x) ((x).val >> 10) |
Paul Mundt | b6250e3 | 2006-12-07 17:27:18 +0900 | [diff] [blame] | 566 | #define __swp_entry(type, offset) ((swp_entry_t){(type) | (offset) <<10}) |
Paul Mundt | b9b382d | 2006-12-07 12:43:06 +0900 | [diff] [blame] | 567 | |
| 568 | #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 1 }) |
| 569 | #define __swp_entry_to_pte(x) ((pte_t) { (x).val << 1 }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | /* |
| 572 | * Encode and decode a nonlinear file mapping entry |
| 573 | */ |
| 574 | #define PTE_FILE_MAX_BITS 29 |
| 575 | #define pte_to_pgoff(pte) (pte_val(pte) >> 1) |
| 576 | #define pgoff_to_pte(off) ((pte_t) { ((off) << 1) | _PAGE_FILE }) |
Paul Mundt | b9b382d | 2006-12-07 12:43:06 +0900 | [diff] [blame] | 577 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
| 579 | typedef pte_t *pte_addr_t; |
| 580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | #define kern_addr_valid(addr) (1) |
| 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \ |
| 584 | remap_pfn_range(vma, vaddr, pfn, size, prot) |
| 585 | |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 586 | struct mm_struct; |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | /* |
| 589 | * No page table caches to initialise |
| 590 | */ |
| 591 | #define pgtable_cache_init() do { } while (0) |
| 592 | |
| 593 | #ifndef CONFIG_MMU |
| 594 | extern unsigned int kobjsize(const void *objp); |
| 595 | #endif /* !CONFIG_MMU */ |
| 596 | |
Paul Mundt | e7bd34a | 2007-07-31 17:07:28 +0900 | [diff] [blame] | 597 | #if !defined(CONFIG_CACHE_OFF) && (defined(CONFIG_CPU_SH4) || \ |
| 598 | defined(CONFIG_SH7705_CACHE_32KB)) |
Paul Mundt | 39e688a | 2007-03-05 19:46:47 +0900 | [diff] [blame] | 599 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR |
| 600 | extern pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep); |
| 601 | #endif |
| 602 | |
Paul Mundt | 21440cf | 2006-11-20 14:30:26 +0900 | [diff] [blame] | 603 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; |
| 604 | extern void paging_init(void); |
| 605 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | #include <asm-generic/pgtable.h> |
| 607 | |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 608 | #endif /* !__ASSEMBLY__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | #endif /* __ASM_SH_PAGE_H */ |