Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S390 version |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 3 | * Copyright IBM Corp. 1999, 2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Author(s): Hartmut Penner (hp@de.ibm.com) |
| 5 | * Ulrich Weigand (weigand@de.ibm.com) |
| 6 | * Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 7 | * |
| 8 | * Derived from "include/asm-i386/pgtable.h" |
| 9 | */ |
| 10 | |
| 11 | #ifndef _ASM_S390_PGTABLE_H |
| 12 | #define _ASM_S390_PGTABLE_H |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | /* |
| 15 | * The Linux memory management assumes a three-level page table setup. For |
| 16 | * s390 31 bit we "fold" the mid level into the top-level page table, so |
| 17 | * that we physically have the same two-level page table as the s390 mmu |
| 18 | * expects in 31 bit mode. For s390 64 bit we use three of the five levels |
| 19 | * the hardware provides (region first and region second tables are not |
| 20 | * used). |
| 21 | * |
| 22 | * The "pgd_xxx()" functions are trivial for a folded two-level |
| 23 | * setup: the pgd is never bad, and a pmd always exists (as it's folded |
| 24 | * into the pgd entry) |
| 25 | * |
| 26 | * This file contains the functions and defines necessary to modify and use |
| 27 | * the S390 page table tree. |
| 28 | */ |
| 29 | #ifndef __ASSEMBLY__ |
Heiko Carstens | 9789db0 | 2008-07-14 09:59:11 +0200 | [diff] [blame] | 30 | #include <linux/sched.h> |
Heiko Carstens | 2dcea57 | 2006-09-29 01:58:41 -0700 | [diff] [blame] | 31 | #include <linux/mm_types.h> |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 32 | #include <linux/page-flags.h> |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 33 | #include <linux/radix-tree.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/bug.h> |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 35 | #include <asm/page.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | extern pgd_t swapper_pg_dir[] __attribute__ ((aligned (4096))); |
| 38 | extern void paging_init(void); |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 39 | extern void vmem_map_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * The S390 doesn't have any external MMU info: the kernel page |
| 43 | * tables contain all the necessary information. |
| 44 | */ |
Russell King | 4b3073e | 2009-12-18 16:40:18 +0000 | [diff] [blame] | 45 | #define update_mmu_cache(vma, address, ptep) do { } while (0) |
David Miller | b113da6 | 2012-10-08 16:34:25 -0700 | [diff] [blame] | 46 | #define update_mmu_cache_pmd(vma, address, ptep) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
Martin Schwidefsky | 238ec4e | 2010-10-25 16:10:07 +0200 | [diff] [blame] | 49 | * ZERO_PAGE is a global shared page that is always zero; used |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * for zero-mapped memory areas etc.. |
| 51 | */ |
Martin Schwidefsky | 238ec4e | 2010-10-25 16:10:07 +0200 | [diff] [blame] | 52 | |
| 53 | extern unsigned long empty_zero_page; |
| 54 | extern unsigned long zero_page_mask; |
| 55 | |
| 56 | #define ZERO_PAGE(vaddr) \ |
| 57 | (virt_to_page((void *)(empty_zero_page + \ |
| 58 | (((unsigned long)(vaddr)) &zero_page_mask)))) |
Kirill A. Shutemov | 816422a | 2012-12-12 13:52:36 -0800 | [diff] [blame] | 59 | #define __HAVE_COLOR_ZERO_PAGE |
Martin Schwidefsky | 238ec4e | 2010-10-25 16:10:07 +0200 | [diff] [blame] | 60 | |
Linus Torvalds | 4f2e290 | 2013-04-17 08:46:19 -0700 | [diff] [blame] | 61 | /* TODO: s390 cannot support io_remap_pfn_range... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #endif /* !__ASSEMBLY__ */ |
| 63 | |
| 64 | /* |
| 65 | * PMD_SHIFT determines the size of the area a second-level page |
| 66 | * table can map |
| 67 | * PGDIR_SHIFT determines what a third-level page table entry can map |
| 68 | */ |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 69 | #ifndef CONFIG_64BIT |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 70 | # define PMD_SHIFT 20 |
| 71 | # define PUD_SHIFT 20 |
| 72 | # define PGDIR_SHIFT 20 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 73 | #else /* CONFIG_64BIT */ |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 74 | # define PMD_SHIFT 20 |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 75 | # define PUD_SHIFT 31 |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 76 | # define PGDIR_SHIFT 42 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 77 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | #define PMD_SIZE (1UL << PMD_SHIFT) |
| 80 | #define PMD_MASK (~(PMD_SIZE-1)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 81 | #define PUD_SIZE (1UL << PUD_SHIFT) |
| 82 | #define PUD_MASK (~(PUD_SIZE-1)) |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 83 | #define PGDIR_SIZE (1UL << PGDIR_SHIFT) |
| 84 | #define PGDIR_MASK (~(PGDIR_SIZE-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | /* |
| 87 | * entries per page directory level: the S390 is two-level, so |
| 88 | * we don't really have any PMD directory physically. |
| 89 | * for S390 segment-table entries are combined to one PGD |
| 90 | * that leads to 1024 pte per pgd |
| 91 | */ |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 92 | #define PTRS_PER_PTE 256 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 93 | #ifndef CONFIG_64BIT |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 94 | #define PTRS_PER_PMD 1 |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 95 | #define PTRS_PER_PUD 1 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 96 | #else /* CONFIG_64BIT */ |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 97 | #define PTRS_PER_PMD 2048 |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 98 | #define PTRS_PER_PUD 2048 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 99 | #endif /* CONFIG_64BIT */ |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 100 | #define PTRS_PER_PGD 2048 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Hugh Dickins | d455a36 | 2005-04-19 13:29:23 -0700 | [diff] [blame] | 102 | #define FIRST_USER_ADDRESS 0 |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #define pte_ERROR(e) \ |
| 105 | printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e)) |
| 106 | #define pmd_ERROR(e) \ |
| 107 | printk("%s:%d: bad pmd %p.\n", __FILE__, __LINE__, (void *) pmd_val(e)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 108 | #define pud_ERROR(e) \ |
| 109 | printk("%s:%d: bad pud %p.\n", __FILE__, __LINE__, (void *) pud_val(e)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #define pgd_ERROR(e) \ |
| 111 | printk("%s:%d: bad pgd %p.\n", __FILE__, __LINE__, (void *) pgd_val(e)) |
| 112 | |
| 113 | #ifndef __ASSEMBLY__ |
| 114 | /* |
Heiko Carstens | c972cc6 | 2012-10-05 16:52:18 +0200 | [diff] [blame] | 115 | * The vmalloc and module area will always be on the topmost area of the kernel |
| 116 | * mapping. We reserve 96MB (31bit) / 128GB (64bit) for vmalloc and modules. |
| 117 | * On 64 bit kernels we have a 2GB area at the top of the vmalloc area where |
| 118 | * modules will reside. That makes sure that inter module branches always |
| 119 | * happen without trampolines and in addition the placement within a 2GB frame |
| 120 | * is branch prediction unit friendly. |
Heiko Carstens | 8b62bc9 | 2006-12-04 15:40:56 +0100 | [diff] [blame] | 121 | */ |
Heiko Carstens | 239a6425 | 2009-06-12 10:26:33 +0200 | [diff] [blame] | 122 | extern unsigned long VMALLOC_START; |
Martin Schwidefsky | 14045eb | 2011-12-27 11:27:07 +0100 | [diff] [blame] | 123 | extern unsigned long VMALLOC_END; |
| 124 | extern struct page *vmemmap; |
Heiko Carstens | 239a6425 | 2009-06-12 10:26:33 +0200 | [diff] [blame] | 125 | |
Martin Schwidefsky | 14045eb | 2011-12-27 11:27:07 +0100 | [diff] [blame] | 126 | #define VMEM_MAX_PHYS ((unsigned long) vmemmap) |
Christian Borntraeger | 5fd9c6e | 2008-01-26 14:11:00 +0100 | [diff] [blame] | 127 | |
Heiko Carstens | c972cc6 | 2012-10-05 16:52:18 +0200 | [diff] [blame] | 128 | #ifdef CONFIG_64BIT |
| 129 | extern unsigned long MODULES_VADDR; |
| 130 | extern unsigned long MODULES_END; |
| 131 | #define MODULES_VADDR MODULES_VADDR |
| 132 | #define MODULES_END MODULES_END |
| 133 | #define MODULES_LEN (1UL << 31) |
| 134 | #endif |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | /* |
| 137 | * A 31 bit pagetable entry of S390 has following format: |
| 138 | * | PFRA | | OS | |
| 139 | * 0 0IP0 |
| 140 | * 00000000001111111111222222222233 |
| 141 | * 01234567890123456789012345678901 |
| 142 | * |
| 143 | * I Page-Invalid Bit: Page is not available for address-translation |
| 144 | * P Page-Protection Bit: Store access not possible for page |
| 145 | * |
| 146 | * A 31 bit segmenttable entry of S390 has following format: |
| 147 | * | P-table origin | |PTL |
| 148 | * 0 IC |
| 149 | * 00000000001111111111222222222233 |
| 150 | * 01234567890123456789012345678901 |
| 151 | * |
| 152 | * I Segment-Invalid Bit: Segment is not available for address-translation |
| 153 | * C Common-Segment Bit: Segment is not private (PoP 3-30) |
| 154 | * PTL Page-Table-Length: Page-table length (PTL+1*16 entries -> up to 256) |
| 155 | * |
| 156 | * The 31 bit segmenttable origin of S390 has following format: |
| 157 | * |
| 158 | * |S-table origin | | STL | |
| 159 | * X **GPS |
| 160 | * 00000000001111111111222222222233 |
| 161 | * 01234567890123456789012345678901 |
| 162 | * |
| 163 | * X Space-Switch event: |
| 164 | * G Segment-Invalid Bit: * |
| 165 | * P Private-Space Bit: Segment is not private (PoP 3-30) |
| 166 | * S Storage-Alteration: |
| 167 | * STL Segment-Table-Length: Segment-table length (STL+1*16 entries -> up to 2048) |
| 168 | * |
| 169 | * A 64 bit pagetable entry of S390 has following format: |
Christian Borntraeger | 6a985c6 | 2009-12-07 12:52:11 +0100 | [diff] [blame] | 170 | * | PFRA |0IPC| OS | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 172 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 173 | * |
| 174 | * I Page-Invalid Bit: Page is not available for address-translation |
| 175 | * P Page-Protection Bit: Store access not possible for page |
Christian Borntraeger | 6a985c6 | 2009-12-07 12:52:11 +0100 | [diff] [blame] | 176 | * C Change-bit override: HW is not required to set change bit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * |
| 178 | * A 64 bit segmenttable entry of S390 has following format: |
| 179 | * | P-table origin | TT |
| 180 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 181 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 182 | * |
| 183 | * I Segment-Invalid Bit: Segment is not available for address-translation |
| 184 | * C Common-Segment Bit: Segment is not private (PoP 3-30) |
| 185 | * P Page-Protection Bit: Store access not possible for page |
| 186 | * TT Type 00 |
| 187 | * |
| 188 | * A 64 bit region table entry of S390 has following format: |
| 189 | * | S-table origin | TF TTTL |
| 190 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 191 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 192 | * |
| 193 | * I Segment-Invalid Bit: Segment is not available for address-translation |
| 194 | * TT Type 01 |
| 195 | * TF |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 196 | * TL Table length |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | * |
| 198 | * The 64 bit regiontable origin of S390 has following format: |
| 199 | * | region table origon | DTTL |
| 200 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 201 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 202 | * |
| 203 | * X Space-Switch event: |
| 204 | * G Segment-Invalid Bit: |
| 205 | * P Private-Space Bit: |
| 206 | * S Storage-Alteration: |
| 207 | * R Real space |
| 208 | * TL Table-Length: |
| 209 | * |
| 210 | * A storage key has the following format: |
| 211 | * | ACC |F|R|C|0| |
| 212 | * 0 3 4 5 6 7 |
| 213 | * ACC: access key |
| 214 | * F : fetch protection bit |
| 215 | * R : referenced bit |
| 216 | * C : changed bit |
| 217 | */ |
| 218 | |
| 219 | /* Hardware bits in the page table entry */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 220 | #define _PAGE_PROTECT 0x200 /* HW read-only bit */ |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 221 | #define _PAGE_INVALID 0x400 /* HW invalid bit */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 222 | #define _PAGE_LARGE 0x800 /* Bit to mark a large pte */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 223 | |
| 224 | /* Software bits in the page table entry */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 225 | #define _PAGE_PRESENT 0x001 /* SW pte present bit */ |
| 226 | #define _PAGE_TYPE 0x002 /* SW pte type bit */ |
| 227 | #define _PAGE_YOUNG 0x004 /* SW pte young bit */ |
| 228 | #define _PAGE_DIRTY 0x008 /* SW pte dirty bit */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 229 | #define _PAGE_READ 0x010 /* SW pte read bit */ |
| 230 | #define _PAGE_WRITE 0x020 /* SW pte write bit */ |
| 231 | #define _PAGE_SPECIAL 0x040 /* SW associated with special page */ |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 232 | #define _PAGE_UNUSED 0x080 /* SW bit for pgste usage state */ |
Nick Piggin | a08cb62 | 2008-04-28 02:13:03 -0700 | [diff] [blame] | 233 | #define __HAVE_ARCH_PTE_SPECIAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Nick Piggin | 138c902 | 2008-07-08 11:31:06 +0200 | [diff] [blame] | 235 | /* Set of bits not changed in pte_modify */ |
Heiko Carstens | 6a5c148 | 2014-09-22 08:50:51 +0200 | [diff] [blame] | 236 | #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_SPECIAL | _PAGE_DIRTY | \ |
| 237 | _PAGE_YOUNG) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 239 | /* |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 240 | * handle_pte_fault uses pte_present, pte_none and pte_file to find out the |
| 241 | * pte type WITHOUT holding the page table lock. The _PAGE_PRESENT bit |
| 242 | * is used to distinguish present from not-present ptes. It is changed only |
| 243 | * with the page table lock held. |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 244 | * |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 245 | * The following table gives the different possible bit combinations for |
| 246 | * the pte hardware and software bits in the last 12 bits of a pte: |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 247 | * |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 248 | * 842100000000 |
| 249 | * 000084210000 |
| 250 | * 000000008421 |
| 251 | * .IR...wrdytp |
| 252 | * empty .10...000000 |
| 253 | * swap .10...xxxx10 |
| 254 | * file .11...xxxxx0 |
| 255 | * prot-none, clean, old .11...000001 |
| 256 | * prot-none, clean, young .11...000101 |
| 257 | * prot-none, dirty, old .10...001001 |
| 258 | * prot-none, dirty, young .10...001101 |
| 259 | * read-only, clean, old .11...010001 |
| 260 | * read-only, clean, young .01...010101 |
| 261 | * read-only, dirty, old .11...011001 |
| 262 | * read-only, dirty, young .01...011101 |
| 263 | * read-write, clean, old .11...110001 |
| 264 | * read-write, clean, young .01...110101 |
| 265 | * read-write, dirty, old .10...111001 |
| 266 | * read-write, dirty, young .00...111101 |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 267 | * |
| 268 | * pte_present is true for the bit pattern .xx...xxxxx1, (pte & 0x001) == 0x001 |
| 269 | * pte_none is true for the bit pattern .10...xxxx00, (pte & 0x603) == 0x400 |
| 270 | * pte_file is true for the bit pattern .11...xxxxx0, (pte & 0x601) == 0x600 |
| 271 | * pte_swap is true for the bit pattern .10...xxxx10, (pte & 0x603) == 0x402 |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 272 | */ |
| 273 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 274 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 276 | /* Bits in the segment table address-space-control-element */ |
| 277 | #define _ASCE_SPACE_SWITCH 0x80000000UL /* space switch event */ |
| 278 | #define _ASCE_ORIGIN_MASK 0x7ffff000UL /* segment table origin */ |
| 279 | #define _ASCE_PRIVATE_SPACE 0x100 /* private space control */ |
| 280 | #define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */ |
| 281 | #define _ASCE_TABLE_LENGTH 0x7f /* 128 x 64 entries = 8k */ |
| 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | /* Bits in the segment table entry */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 284 | #define _SEGMENT_ENTRY_BITS 0x7fffffffUL /* Valid segment table bits */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 285 | #define _SEGMENT_ENTRY_ORIGIN 0x7fffffc0UL /* page table origin */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 286 | #define _SEGMENT_ENTRY_PROTECT 0x200 /* page protection bit */ |
| 287 | #define _SEGMENT_ENTRY_INVALID 0x20 /* invalid segment table entry */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 288 | #define _SEGMENT_ENTRY_COMMON 0x10 /* common segment bit */ |
| 289 | #define _SEGMENT_ENTRY_PTL 0x0f /* page table length */ |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 290 | |
| 291 | #define _SEGMENT_ENTRY_DIRTY 0 /* No sw dirty bit for 31-bit */ |
| 292 | #define _SEGMENT_ENTRY_YOUNG 0 /* No sw young bit for 31-bit */ |
| 293 | #define _SEGMENT_ENTRY_READ 0 /* No sw read bit for 31-bit */ |
| 294 | #define _SEGMENT_ENTRY_WRITE 0 /* No sw write bit for 31-bit */ |
| 295 | #define _SEGMENT_ENTRY_LARGE 0 /* No large pages for 31-bit */ |
| 296 | #define _SEGMENT_ENTRY_BITS_LARGE 0 |
| 297 | #define _SEGMENT_ENTRY_ORIGIN_LARGE 0 |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 298 | |
| 299 | #define _SEGMENT_ENTRY (_SEGMENT_ENTRY_PTL) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 300 | #define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 301 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 302 | /* |
| 303 | * Segment table entry encoding (I = invalid, R = read-only bit): |
| 304 | * ..R...I..... |
| 305 | * prot-none ..1...1..... |
| 306 | * read-only ..1...0..... |
| 307 | * read-write ..0...0..... |
| 308 | * empty ..0...1..... |
| 309 | */ |
| 310 | |
Martin Schwidefsky | 6c61cfe | 2011-06-06 14:14:42 +0200 | [diff] [blame] | 311 | /* Page status table bits for virtualization */ |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 312 | #define PGSTE_ACC_BITS 0xf0000000UL |
| 313 | #define PGSTE_FP_BIT 0x08000000UL |
| 314 | #define PGSTE_PCL_BIT 0x00800000UL |
| 315 | #define PGSTE_HR_BIT 0x00400000UL |
| 316 | #define PGSTE_HC_BIT 0x00200000UL |
| 317 | #define PGSTE_GR_BIT 0x00040000UL |
| 318 | #define PGSTE_GC_BIT 0x00020000UL |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 319 | #define PGSTE_UC_BIT 0x00008000UL /* user dirty (migration) */ |
| 320 | #define PGSTE_IN_BIT 0x00004000UL /* IPTE notify bit */ |
Martin Schwidefsky | 6c61cfe | 2011-06-06 14:14:42 +0200 | [diff] [blame] | 321 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 322 | #else /* CONFIG_64BIT */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 323 | |
| 324 | /* Bits in the segment/region table address-space-control-element */ |
| 325 | #define _ASCE_ORIGIN ~0xfffUL/* segment table origin */ |
| 326 | #define _ASCE_PRIVATE_SPACE 0x100 /* private space control */ |
| 327 | #define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */ |
| 328 | #define _ASCE_SPACE_SWITCH 0x40 /* space switch event */ |
| 329 | #define _ASCE_REAL_SPACE 0x20 /* real space control */ |
| 330 | #define _ASCE_TYPE_MASK 0x0c /* asce table type mask */ |
| 331 | #define _ASCE_TYPE_REGION1 0x0c /* region first table type */ |
| 332 | #define _ASCE_TYPE_REGION2 0x08 /* region second table type */ |
| 333 | #define _ASCE_TYPE_REGION3 0x04 /* region third table type */ |
| 334 | #define _ASCE_TYPE_SEGMENT 0x00 /* segment table type */ |
| 335 | #define _ASCE_TABLE_LENGTH 0x03 /* region table length */ |
| 336 | |
| 337 | /* Bits in the region table entry */ |
| 338 | #define _REGION_ENTRY_ORIGIN ~0xfffUL/* region/segment table origin */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 339 | #define _REGION_ENTRY_PROTECT 0x200 /* region protection bit */ |
| 340 | #define _REGION_ENTRY_INVALID 0x20 /* invalid region table entry */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 341 | #define _REGION_ENTRY_TYPE_MASK 0x0c /* region/segment table type mask */ |
| 342 | #define _REGION_ENTRY_TYPE_R1 0x0c /* region first table type */ |
| 343 | #define _REGION_ENTRY_TYPE_R2 0x08 /* region second table type */ |
| 344 | #define _REGION_ENTRY_TYPE_R3 0x04 /* region third table type */ |
| 345 | #define _REGION_ENTRY_LENGTH 0x03 /* region third length */ |
| 346 | |
| 347 | #define _REGION1_ENTRY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_LENGTH) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 348 | #define _REGION1_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 349 | #define _REGION2_ENTRY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_LENGTH) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 350 | #define _REGION2_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 351 | #define _REGION3_ENTRY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_LENGTH) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 352 | #define _REGION3_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 353 | |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 354 | #define _REGION3_ENTRY_LARGE 0x400 /* RTTE-format control, large page */ |
Heiko Carstens | 1819ed1 | 2013-02-16 11:47:27 +0100 | [diff] [blame] | 355 | #define _REGION3_ENTRY_RO 0x200 /* page protection bit */ |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 356 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 357 | /* Bits in the segment table entry */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 358 | #define _SEGMENT_ENTRY_BITS 0xfffffffffffffe33UL |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 359 | #define _SEGMENT_ENTRY_BITS_LARGE 0xfffffffffff0ff33UL |
Heiko Carstens | ea81531 | 2013-03-21 12:50:39 +0100 | [diff] [blame] | 360 | #define _SEGMENT_ENTRY_ORIGIN_LARGE ~0xfffffUL /* large page address */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 361 | #define _SEGMENT_ENTRY_ORIGIN ~0x7ffUL/* segment table origin */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 362 | #define _SEGMENT_ENTRY_PROTECT 0x200 /* page protection bit */ |
| 363 | #define _SEGMENT_ENTRY_INVALID 0x20 /* invalid segment table entry */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 364 | |
| 365 | #define _SEGMENT_ENTRY (0) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 366 | #define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 367 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 368 | #define _SEGMENT_ENTRY_DIRTY 0x2000 /* SW segment dirty bit */ |
| 369 | #define _SEGMENT_ENTRY_YOUNG 0x1000 /* SW segment young bit */ |
| 370 | #define _SEGMENT_ENTRY_SPLIT 0x0800 /* THP splitting bit */ |
| 371 | #define _SEGMENT_ENTRY_LARGE 0x0400 /* STE-format control, large page */ |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 372 | #define _SEGMENT_ENTRY_READ 0x0002 /* SW segment read bit */ |
| 373 | #define _SEGMENT_ENTRY_WRITE 0x0001 /* SW segment write bit */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 374 | |
| 375 | /* |
| 376 | * Segment table entry encoding (R = read-only, I = invalid, y = young bit): |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 377 | * dy..R...I...wr |
| 378 | * prot-none, clean, old 00..1...1...00 |
| 379 | * prot-none, clean, young 01..1...1...00 |
| 380 | * prot-none, dirty, old 10..1...1...00 |
| 381 | * prot-none, dirty, young 11..1...1...00 |
| 382 | * read-only, clean, old 00..1...1...01 |
| 383 | * read-only, clean, young 01..1...0...01 |
| 384 | * read-only, dirty, old 10..1...1...01 |
| 385 | * read-only, dirty, young 11..1...0...01 |
| 386 | * read-write, clean, old 00..1...1...11 |
| 387 | * read-write, clean, young 01..1...0...11 |
| 388 | * read-write, dirty, old 10..0...1...11 |
| 389 | * read-write, dirty, young 11..0...0...11 |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 390 | * The segment table origin is used to distinguish empty (origin==0) from |
| 391 | * read-write, old segment table entries (origin!=0) |
| 392 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 393 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 394 | #define _SEGMENT_ENTRY_SPLIT_BIT 11 /* THP splitting bit number */ |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 395 | |
Martin Schwidefsky | 6c61cfe | 2011-06-06 14:14:42 +0200 | [diff] [blame] | 396 | /* Page status table bits for virtualization */ |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 397 | #define PGSTE_ACC_BITS 0xf000000000000000UL |
| 398 | #define PGSTE_FP_BIT 0x0800000000000000UL |
| 399 | #define PGSTE_PCL_BIT 0x0080000000000000UL |
| 400 | #define PGSTE_HR_BIT 0x0040000000000000UL |
| 401 | #define PGSTE_HC_BIT 0x0020000000000000UL |
| 402 | #define PGSTE_GR_BIT 0x0004000000000000UL |
| 403 | #define PGSTE_GC_BIT 0x0002000000000000UL |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 404 | #define PGSTE_UC_BIT 0x0000800000000000UL /* user dirty (migration) */ |
| 405 | #define PGSTE_IN_BIT 0x0000400000000000UL /* IPTE notify bit */ |
Martin Schwidefsky | 6c61cfe | 2011-06-06 14:14:42 +0200 | [diff] [blame] | 406 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 407 | #endif /* CONFIG_64BIT */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 408 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 409 | /* Guest Page State used for virtualization */ |
| 410 | #define _PGSTE_GPS_ZERO 0x0000000080000000UL |
| 411 | #define _PGSTE_GPS_USAGE_MASK 0x0000000003000000UL |
| 412 | #define _PGSTE_GPS_USAGE_STABLE 0x0000000000000000UL |
| 413 | #define _PGSTE_GPS_USAGE_UNUSED 0x0000000001000000UL |
| 414 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 415 | /* |
| 416 | * A user page table pointer has the space-switch-event bit, the |
| 417 | * private-space-control bit and the storage-alteration-event-control |
| 418 | * bit set. A kernel page table pointer doesn't need them. |
| 419 | */ |
| 420 | #define _ASCE_USER_BITS (_ASCE_SPACE_SWITCH | _ASCE_PRIVATE_SPACE | \ |
| 421 | _ASCE_ALT_EVENT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | /* |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 424 | * Page protection definitions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 426 | #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_INVALID) |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 427 | #define PAGE_READ __pgprot(_PAGE_PRESENT | _PAGE_READ | \ |
| 428 | _PAGE_INVALID | _PAGE_PROTECT) |
| 429 | #define PAGE_WRITE __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ |
| 430 | _PAGE_INVALID | _PAGE_PROTECT) |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 431 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 432 | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ |
| 433 | _PAGE_YOUNG | _PAGE_DIRTY) |
| 434 | #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ |
| 435 | _PAGE_YOUNG | _PAGE_DIRTY) |
| 436 | #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_YOUNG | \ |
| 437 | _PAGE_PROTECT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
| 439 | /* |
Martin Schwidefsky | 043d070 | 2011-05-23 10:24:23 +0200 | [diff] [blame] | 440 | * On s390 the page table entry has an invalid bit and a read-only bit. |
| 441 | * Read permission implies execute permission and write permission |
| 442 | * implies read permission. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | */ |
| 444 | /*xwr*/ |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 445 | #define __P000 PAGE_NONE |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 446 | #define __P001 PAGE_READ |
| 447 | #define __P010 PAGE_READ |
| 448 | #define __P011 PAGE_READ |
| 449 | #define __P100 PAGE_READ |
| 450 | #define __P101 PAGE_READ |
| 451 | #define __P110 PAGE_READ |
| 452 | #define __P111 PAGE_READ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 454 | #define __S000 PAGE_NONE |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 455 | #define __S001 PAGE_READ |
| 456 | #define __S010 PAGE_WRITE |
| 457 | #define __S011 PAGE_WRITE |
| 458 | #define __S100 PAGE_READ |
| 459 | #define __S101 PAGE_READ |
| 460 | #define __S110 PAGE_WRITE |
| 461 | #define __S111 PAGE_WRITE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 463 | /* |
| 464 | * Segment entry (large page) protection definitions. |
| 465 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 466 | #define SEGMENT_NONE __pgprot(_SEGMENT_ENTRY_INVALID | \ |
| 467 | _SEGMENT_ENTRY_PROTECT) |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 468 | #define SEGMENT_READ __pgprot(_SEGMENT_ENTRY_PROTECT | \ |
| 469 | _SEGMENT_ENTRY_READ) |
| 470 | #define SEGMENT_WRITE __pgprot(_SEGMENT_ENTRY_READ | \ |
| 471 | _SEGMENT_ENTRY_WRITE) |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 472 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 473 | static inline int mm_has_pgste(struct mm_struct *mm) |
| 474 | { |
| 475 | #ifdef CONFIG_PGSTE |
| 476 | if (unlikely(mm->context.has_pgste)) |
| 477 | return 1; |
| 478 | #endif |
| 479 | return 0; |
| 480 | } |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 481 | |
| 482 | static inline int mm_use_skey(struct mm_struct *mm) |
| 483 | { |
| 484 | #ifdef CONFIG_PGSTE |
| 485 | if (mm->context.use_skey) |
| 486 | return 1; |
| 487 | #endif |
| 488 | return 0; |
| 489 | } |
| 490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | /* |
| 492 | * pgd/pmd/pte query functions |
| 493 | */ |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 494 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 496 | static inline int pgd_present(pgd_t pgd) { return 1; } |
| 497 | static inline int pgd_none(pgd_t pgd) { return 0; } |
| 498 | static inline int pgd_bad(pgd_t pgd) { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 500 | static inline int pud_present(pud_t pud) { return 1; } |
| 501 | static inline int pud_none(pud_t pud) { return 0; } |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 502 | static inline int pud_large(pud_t pud) { return 0; } |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 503 | static inline int pud_bad(pud_t pud) { return 0; } |
| 504 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 505 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 507 | static inline int pgd_present(pgd_t pgd) |
| 508 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 509 | if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2) |
| 510 | return 1; |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 511 | return (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) != 0UL; |
| 512 | } |
| 513 | |
| 514 | static inline int pgd_none(pgd_t pgd) |
| 515 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 516 | if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2) |
| 517 | return 0; |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 518 | return (pgd_val(pgd) & _REGION_ENTRY_INVALID) != 0UL; |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | static inline int pgd_bad(pgd_t pgd) |
| 522 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 523 | /* |
| 524 | * With dynamic page table levels the pgd can be a region table |
| 525 | * entry or a segment table entry. Check for the bit that are |
| 526 | * invalid for either table entry. |
| 527 | */ |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 528 | unsigned long mask = |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 529 | ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID & |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 530 | ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH; |
| 531 | return (pgd_val(pgd) & mask) != 0; |
| 532 | } |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 533 | |
| 534 | static inline int pud_present(pud_t pud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 536 | if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3) |
| 537 | return 1; |
Martin Schwidefsky | 0d01792 | 2007-12-17 16:25:48 +0100 | [diff] [blame] | 538 | return (pud_val(pud) & _REGION_ENTRY_ORIGIN) != 0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 541 | static inline int pud_none(pud_t pud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 543 | if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3) |
| 544 | return 0; |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 545 | return (pud_val(pud) & _REGION_ENTRY_INVALID) != 0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
| 547 | |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 548 | static inline int pud_large(pud_t pud) |
| 549 | { |
| 550 | if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) != _REGION_ENTRY_TYPE_R3) |
| 551 | return 0; |
| 552 | return !!(pud_val(pud) & _REGION3_ENTRY_LARGE); |
| 553 | } |
| 554 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 555 | static inline int pud_bad(pud_t pud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 557 | /* |
| 558 | * With dynamic page table levels the pud can be a region table |
| 559 | * entry or a segment table entry. Check for the bit that are |
| 560 | * invalid for either table entry. |
| 561 | */ |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 562 | unsigned long mask = |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 563 | ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID & |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 564 | ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH; |
| 565 | return (pud_val(pud) & mask) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
| 567 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 568 | #endif /* CONFIG_64BIT */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 569 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 570 | static inline int pmd_present(pmd_t pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 572 | return pmd_val(pmd) != _SEGMENT_ENTRY_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |
| 574 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 575 | static inline int pmd_none(pmd_t pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 577 | return pmd_val(pmd) == _SEGMENT_ENTRY_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Heiko Carstens | 378b1e7 | 2012-10-01 12:58:34 +0200 | [diff] [blame] | 580 | static inline int pmd_large(pmd_t pmd) |
| 581 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 582 | return (pmd_val(pmd) & _SEGMENT_ENTRY_LARGE) != 0; |
Heiko Carstens | 378b1e7 | 2012-10-01 12:58:34 +0200 | [diff] [blame] | 583 | } |
| 584 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 585 | static inline int pmd_pfn(pmd_t pmd) |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 586 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 587 | unsigned long origin_mask; |
| 588 | |
| 589 | origin_mask = _SEGMENT_ENTRY_ORIGIN; |
| 590 | if (pmd_large(pmd)) |
| 591 | origin_mask = _SEGMENT_ENTRY_ORIGIN_LARGE; |
| 592 | return (pmd_val(pmd) & origin_mask) >> PAGE_SHIFT; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 593 | } |
| 594 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 595 | static inline int pmd_bad(pmd_t pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 597 | if (pmd_large(pmd)) |
| 598 | return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS_LARGE) != 0; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 599 | return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Gerald Schaefer | 75077af | 2012-10-08 16:30:15 -0700 | [diff] [blame] | 602 | #define __HAVE_ARCH_PMDP_SPLITTING_FLUSH |
| 603 | extern void pmdp_splitting_flush(struct vm_area_struct *vma, |
| 604 | unsigned long addr, pmd_t *pmdp); |
| 605 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 606 | #define __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS |
| 607 | extern int pmdp_set_access_flags(struct vm_area_struct *vma, |
| 608 | unsigned long address, pmd_t *pmdp, |
| 609 | pmd_t entry, int dirty); |
| 610 | |
| 611 | #define __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH |
| 612 | extern int pmdp_clear_flush_young(struct vm_area_struct *vma, |
| 613 | unsigned long address, pmd_t *pmdp); |
| 614 | |
| 615 | #define __HAVE_ARCH_PMD_WRITE |
| 616 | static inline int pmd_write(pmd_t pmd) |
| 617 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 618 | return (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE) != 0; |
| 619 | } |
| 620 | |
| 621 | static inline int pmd_dirty(pmd_t pmd) |
| 622 | { |
| 623 | int dirty = 1; |
| 624 | if (pmd_large(pmd)) |
| 625 | dirty = (pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY) != 0; |
| 626 | return dirty; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | static inline int pmd_young(pmd_t pmd) |
| 630 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 631 | int young = 1; |
| 632 | if (pmd_large(pmd)) |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 633 | young = (pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG) != 0; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 634 | return young; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 635 | } |
| 636 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 637 | static inline int pte_present(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 639 | /* Bit pattern: (pte & 0x001) == 0x001 */ |
| 640 | return (pte_val(pte) & _PAGE_PRESENT) != 0; |
| 641 | } |
| 642 | |
| 643 | static inline int pte_none(pte_t pte) |
| 644 | { |
| 645 | /* Bit pattern: pte == 0x400 */ |
| 646 | return pte_val(pte) == _PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
| 648 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 649 | static inline int pte_swap(pte_t pte) |
| 650 | { |
| 651 | /* Bit pattern: (pte & 0x603) == 0x402 */ |
| 652 | return (pte_val(pte) & (_PAGE_INVALID | _PAGE_PROTECT | |
| 653 | _PAGE_TYPE | _PAGE_PRESENT)) |
| 654 | == (_PAGE_INVALID | _PAGE_TYPE); |
| 655 | } |
| 656 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 657 | static inline int pte_file(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 659 | /* Bit pattern: (pte & 0x601) == 0x600 */ |
| 660 | return (pte_val(pte) & (_PAGE_INVALID | _PAGE_PROTECT | _PAGE_PRESENT)) |
| 661 | == (_PAGE_INVALID | _PAGE_PROTECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 664 | static inline int pte_special(pte_t pte) |
| 665 | { |
Nick Piggin | a08cb62 | 2008-04-28 02:13:03 -0700 | [diff] [blame] | 666 | return (pte_val(pte) & _PAGE_SPECIAL); |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 667 | } |
| 668 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 669 | #define __HAVE_ARCH_PTE_SAME |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 670 | static inline int pte_same(pte_t a, pte_t b) |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 671 | { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 672 | return pte_val(a) == pte_val(b); |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 673 | } |
| 674 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 675 | static inline pgste_t pgste_get_lock(pte_t *ptep) |
| 676 | { |
| 677 | unsigned long new = 0; |
| 678 | #ifdef CONFIG_PGSTE |
| 679 | unsigned long old; |
| 680 | |
| 681 | preempt_disable(); |
| 682 | asm( |
| 683 | " lg %0,%2\n" |
| 684 | "0: lgr %1,%0\n" |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 685 | " nihh %0,0xff7f\n" /* clear PCL bit in old */ |
| 686 | " oihh %1,0x0080\n" /* set PCL bit in new */ |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 687 | " csg %0,%1,%2\n" |
| 688 | " jl 0b\n" |
| 689 | : "=&d" (old), "=&d" (new), "=Q" (ptep[PTRS_PER_PTE]) |
Christian Borntraeger | a8f6e7f | 2013-06-05 09:25:34 +0200 | [diff] [blame] | 690 | : "Q" (ptep[PTRS_PER_PTE]) : "cc", "memory"); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 691 | #endif |
| 692 | return __pgste(new); |
| 693 | } |
| 694 | |
| 695 | static inline void pgste_set_unlock(pte_t *ptep, pgste_t pgste) |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 696 | { |
| 697 | #ifdef CONFIG_PGSTE |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 698 | asm( |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 699 | " nihh %1,0xff7f\n" /* clear PCL bit */ |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 700 | " stg %1,%0\n" |
| 701 | : "=Q" (ptep[PTRS_PER_PTE]) |
Christian Borntraeger | a8f6e7f | 2013-06-05 09:25:34 +0200 | [diff] [blame] | 702 | : "d" (pgste_val(pgste)), "Q" (ptep[PTRS_PER_PTE]) |
| 703 | : "cc", "memory"); |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 704 | preempt_enable(); |
| 705 | #endif |
| 706 | } |
| 707 | |
Martin Schwidefsky | d56c893 | 2013-07-19 11:15:54 +0200 | [diff] [blame] | 708 | static inline pgste_t pgste_get(pte_t *ptep) |
| 709 | { |
| 710 | unsigned long pgste = 0; |
| 711 | #ifdef CONFIG_PGSTE |
| 712 | pgste = *(unsigned long *)(ptep + PTRS_PER_PTE); |
| 713 | #endif |
| 714 | return __pgste(pgste); |
| 715 | } |
| 716 | |
Christian Borntraeger | 3a82603 | 2013-06-05 09:22:33 +0200 | [diff] [blame] | 717 | static inline void pgste_set(pte_t *ptep, pgste_t pgste) |
| 718 | { |
| 719 | #ifdef CONFIG_PGSTE |
| 720 | *(pgste_t *)(ptep + PTRS_PER_PTE) = pgste; |
| 721 | #endif |
| 722 | } |
| 723 | |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 724 | static inline pgste_t pgste_update_all(pte_t *ptep, pgste_t pgste, |
| 725 | struct mm_struct *mm) |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 726 | { |
| 727 | #ifdef CONFIG_PGSTE |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 728 | unsigned long address, bits, skey; |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 729 | |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 730 | if (!mm_use_skey(mm) || pte_val(*ptep) & _PAGE_INVALID) |
Martin Schwidefsky | 09b5388 | 2011-11-14 11:19:00 +0100 | [diff] [blame] | 731 | return pgste; |
Heiko Carstens | a43a9d9 | 2011-05-29 12:40:50 +0200 | [diff] [blame] | 732 | address = pte_val(*ptep) & PAGE_MASK; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 733 | skey = (unsigned long) page_get_storage_key(address); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 734 | bits = skey & (_PAGE_CHANGED | _PAGE_REFERENCED); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 735 | /* Transfer page changed & referenced bit to guest bits in pgste */ |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 736 | pgste_val(pgste) |= bits << 48; /* GR bit & GC bit */ |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 737 | /* Copy page access key and fetch protection bit to pgste */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 738 | pgste_val(pgste) &= ~(PGSTE_ACC_BITS | PGSTE_FP_BIT); |
| 739 | pgste_val(pgste) |= (skey & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56; |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 740 | #endif |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 741 | return pgste; |
| 742 | |
| 743 | } |
| 744 | |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 745 | static inline void pgste_set_key(pte_t *ptep, pgste_t pgste, pte_t entry, |
| 746 | struct mm_struct *mm) |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 747 | { |
| 748 | #ifdef CONFIG_PGSTE |
Heiko Carstens | a43a9d9 | 2011-05-29 12:40:50 +0200 | [diff] [blame] | 749 | unsigned long address; |
Christian Borntraeger | 338679f | 2013-06-04 09:53:59 +0200 | [diff] [blame] | 750 | unsigned long nkey; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 751 | |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 752 | if (!mm_use_skey(mm) || pte_val(entry) & _PAGE_INVALID) |
Martin Schwidefsky | 09b5388 | 2011-11-14 11:19:00 +0100 | [diff] [blame] | 753 | return; |
Christian Borntraeger | 338679f | 2013-06-04 09:53:59 +0200 | [diff] [blame] | 754 | VM_BUG_ON(!(pte_val(*ptep) & _PAGE_INVALID)); |
Martin Schwidefsky | 09b5388 | 2011-11-14 11:19:00 +0100 | [diff] [blame] | 755 | address = pte_val(entry) & PAGE_MASK; |
Christian Borntraeger | 338679f | 2013-06-04 09:53:59 +0200 | [diff] [blame] | 756 | /* |
| 757 | * Set page access key and fetch protection bit from pgste. |
| 758 | * The guest C/R information is still in the PGSTE, set real |
| 759 | * key C/R to 0. |
| 760 | */ |
Linus Torvalds | fe489bf | 2013-07-03 13:21:40 -0700 | [diff] [blame] | 761 | nkey = (pgste_val(pgste) & (PGSTE_ACC_BITS | PGSTE_FP_BIT)) >> 56; |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 762 | nkey |= (pgste_val(pgste) & (PGSTE_GR_BIT | PGSTE_GC_BIT)) >> 48; |
Christian Borntraeger | 338679f | 2013-06-04 09:53:59 +0200 | [diff] [blame] | 763 | page_set_storage_key(address, nkey, 0); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 764 | #endif |
| 765 | } |
| 766 | |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 767 | static inline pgste_t pgste_set_pte(pte_t *ptep, pgste_t pgste, pte_t entry) |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 768 | { |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 769 | if ((pte_val(entry) & _PAGE_PRESENT) && |
| 770 | (pte_val(entry) & _PAGE_WRITE) && |
| 771 | !(pte_val(entry) & _PAGE_INVALID)) { |
| 772 | if (!MACHINE_HAS_ESOP) { |
| 773 | /* |
| 774 | * Without enhanced suppression-on-protection force |
| 775 | * the dirty bit on for all writable ptes. |
| 776 | */ |
| 777 | pte_val(entry) |= _PAGE_DIRTY; |
| 778 | pte_val(entry) &= ~_PAGE_PROTECT; |
| 779 | } |
| 780 | if (!(pte_val(entry) & _PAGE_PROTECT)) |
| 781 | /* This pte allows write access, set user-dirty */ |
| 782 | pgste_val(pgste) |= PGSTE_UC_BIT; |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 783 | } |
| 784 | *ptep = entry; |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 785 | return pgste; |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 786 | } |
| 787 | |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 788 | /** |
| 789 | * struct gmap_struct - guest address space |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 790 | * @crst_list: list of all crst tables used in the guest address space |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 791 | * @mm: pointer to the parent mm_struct |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 792 | * @guest_to_host: radix tree with guest to host address translation |
| 793 | * @host_to_guest: radix tree with pointer to segment table entries |
| 794 | * @guest_table_lock: spinlock to protect all entries in the guest page table |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 795 | * @table: pointer to the page directory |
Christian Borntraeger | 480e592 | 2011-09-20 17:07:28 +0200 | [diff] [blame] | 796 | * @asce: address space control element for gmap page table |
Dominik Dingel | 24eb3a8 | 2013-06-17 16:25:18 +0200 | [diff] [blame] | 797 | * @pfault_enabled: defines if pfaults are applicable for the guest |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 798 | */ |
| 799 | struct gmap { |
| 800 | struct list_head list; |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 801 | struct list_head crst_list; |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 802 | struct mm_struct *mm; |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 803 | struct radix_tree_root guest_to_host; |
| 804 | struct radix_tree_root host_to_guest; |
| 805 | spinlock_t guest_table_lock; |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 806 | unsigned long *table; |
Christian Borntraeger | 480e592 | 2011-09-20 17:07:28 +0200 | [diff] [blame] | 807 | unsigned long asce; |
Martin Schwidefsky | c6c956b | 2014-07-01 14:36:04 +0200 | [diff] [blame] | 808 | unsigned long asce_end; |
Christian Borntraeger | 2c70fe4 | 2013-05-17 14:41:36 +0200 | [diff] [blame] | 809 | void *private; |
Dominik Dingel | 24eb3a8 | 2013-06-17 16:25:18 +0200 | [diff] [blame] | 810 | bool pfault_enabled; |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 811 | }; |
| 812 | |
| 813 | /** |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 814 | * struct gmap_notifier - notify function block for page invalidation |
| 815 | * @notifier_call: address of callback function |
| 816 | */ |
| 817 | struct gmap_notifier { |
| 818 | struct list_head list; |
Martin Schwidefsky | 6e0a043 | 2014-04-29 09:34:41 +0200 | [diff] [blame] | 819 | void (*notifier_call)(struct gmap *gmap, unsigned long gaddr); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 820 | }; |
| 821 | |
Martin Schwidefsky | c6c956b | 2014-07-01 14:36:04 +0200 | [diff] [blame] | 822 | struct gmap *gmap_alloc(struct mm_struct *mm, unsigned long limit); |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 823 | void gmap_free(struct gmap *gmap); |
| 824 | void gmap_enable(struct gmap *gmap); |
| 825 | void gmap_disable(struct gmap *gmap); |
| 826 | int gmap_map_segment(struct gmap *gmap, unsigned long from, |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 827 | unsigned long to, unsigned long len); |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 828 | int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len); |
Martin Schwidefsky | 6e0a043 | 2014-04-29 09:34:41 +0200 | [diff] [blame] | 829 | unsigned long __gmap_translate(struct gmap *, unsigned long gaddr); |
| 830 | unsigned long gmap_translate(struct gmap *, unsigned long gaddr); |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 831 | int __gmap_link(struct gmap *gmap, unsigned long gaddr, unsigned long vmaddr); |
| 832 | int gmap_fault(struct gmap *, unsigned long gaddr, unsigned int fault_flags); |
Martin Schwidefsky | 6e0a043 | 2014-04-29 09:34:41 +0200 | [diff] [blame] | 833 | void gmap_discard(struct gmap *, unsigned long from, unsigned long to); |
| 834 | void __gmap_zap(struct gmap *, unsigned long gaddr); |
Dominik Dingel | a0bf4f1 | 2014-03-24 14:27:58 +0100 | [diff] [blame] | 835 | bool gmap_test_and_clear_dirty(unsigned long address, struct gmap *); |
| 836 | |
Martin Schwidefsky | e5992f2 | 2011-07-24 10:48:20 +0200 | [diff] [blame] | 837 | |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 838 | void gmap_register_ipte_notifier(struct gmap_notifier *); |
| 839 | void gmap_unregister_ipte_notifier(struct gmap_notifier *); |
| 840 | int gmap_ipte_notify(struct gmap *, unsigned long start, unsigned long len); |
Martin Schwidefsky | 9da4e38 | 2014-04-30 14:46:26 +0200 | [diff] [blame] | 841 | void gmap_do_ipte_notify(struct mm_struct *, unsigned long addr, pte_t *); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 842 | |
| 843 | static inline pgste_t pgste_ipte_notify(struct mm_struct *mm, |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 844 | unsigned long addr, |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 845 | pte_t *ptep, pgste_t pgste) |
| 846 | { |
| 847 | #ifdef CONFIG_PGSTE |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 848 | if (pgste_val(pgste) & PGSTE_IN_BIT) { |
| 849 | pgste_val(pgste) &= ~PGSTE_IN_BIT; |
Martin Schwidefsky | 9da4e38 | 2014-04-30 14:46:26 +0200 | [diff] [blame] | 850 | gmap_do_ipte_notify(mm, addr, ptep); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 851 | } |
| 852 | #endif |
| 853 | return pgste; |
| 854 | } |
| 855 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 856 | /* |
| 857 | * Certain architectures need to do special things when PTEs |
| 858 | * within a page table are directly modified. Thus, the following |
| 859 | * hook is made available. |
| 860 | */ |
| 861 | static inline void set_pte_at(struct mm_struct *mm, unsigned long addr, |
| 862 | pte_t *ptep, pte_t entry) |
| 863 | { |
| 864 | pgste_t pgste; |
| 865 | |
| 866 | if (mm_has_pgste(mm)) { |
| 867 | pgste = pgste_get_lock(ptep); |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 868 | pgste_val(pgste) &= ~_PGSTE_GPS_ZERO; |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 869 | pgste_set_key(ptep, pgste, entry, mm); |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 870 | pgste = pgste_set_pte(ptep, pgste, entry); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 871 | pgste_set_unlock(ptep, pgste); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 872 | } else { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 873 | *ptep = entry; |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 874 | } |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 875 | } |
| 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | /* |
| 878 | * query functions pte_write/pte_dirty/pte_young only work if |
| 879 | * pte_present() is true. Undefined behaviour if not.. |
| 880 | */ |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 881 | static inline int pte_write(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 883 | return (pte_val(pte) & _PAGE_WRITE) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 886 | static inline int pte_dirty(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 888 | return (pte_val(pte) & _PAGE_DIRTY) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 891 | static inline int pte_young(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 893 | return (pte_val(pte) & _PAGE_YOUNG) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | } |
| 895 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 896 | #define __HAVE_ARCH_PTE_UNUSED |
| 897 | static inline int pte_unused(pte_t pte) |
| 898 | { |
| 899 | return pte_val(pte) & _PAGE_UNUSED; |
| 900 | } |
| 901 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | /* |
| 903 | * pgd/pmd/pte modification functions |
| 904 | */ |
| 905 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 906 | static inline void pgd_clear(pgd_t *pgd) |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 907 | { |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 908 | #ifdef CONFIG_64BIT |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 909 | if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2) |
| 910 | pgd_val(*pgd) = _REGION2_ENTRY_EMPTY; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 911 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | } |
| 913 | |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 914 | static inline void pud_clear(pud_t *pud) |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 915 | { |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 916 | #ifdef CONFIG_64BIT |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 917 | if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3) |
| 918 | pud_val(*pud) = _REGION3_ENTRY_EMPTY; |
| 919 | #endif |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 920 | } |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 921 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 922 | static inline void pmd_clear(pmd_t *pmdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 924 | pmd_val(*pmdp) = _SEGMENT_ENTRY_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 927 | static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 929 | pte_val(*ptep) = _PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | } |
| 931 | |
| 932 | /* |
| 933 | * The following pte modification functions only work if |
| 934 | * pte_present() is true. Undefined behaviour if not.. |
| 935 | */ |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 936 | static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | { |
Nick Piggin | 138c902 | 2008-07-08 11:31:06 +0200 | [diff] [blame] | 938 | pte_val(pte) &= _PAGE_CHG_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | pte_val(pte) |= pgprot_val(newprot); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 940 | /* |
| 941 | * newprot for PAGE_NONE, PAGE_READ and PAGE_WRITE has the |
| 942 | * invalid bit set, clear it again for readable, young pages |
| 943 | */ |
| 944 | if ((pte_val(pte) & _PAGE_YOUNG) && (pte_val(pte) & _PAGE_READ)) |
| 945 | pte_val(pte) &= ~_PAGE_INVALID; |
| 946 | /* |
| 947 | * newprot for PAGE_READ and PAGE_WRITE has the page protection |
| 948 | * bit set, clear it again for writable, dirty pages |
| 949 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 950 | if ((pte_val(pte) & _PAGE_DIRTY) && (pte_val(pte) & _PAGE_WRITE)) |
| 951 | pte_val(pte) &= ~_PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | return pte; |
| 953 | } |
| 954 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 955 | static inline pte_t pte_wrprotect(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 957 | pte_val(pte) &= ~_PAGE_WRITE; |
| 958 | pte_val(pte) |= _PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | return pte; |
| 960 | } |
| 961 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 962 | static inline pte_t pte_mkwrite(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 964 | pte_val(pte) |= _PAGE_WRITE; |
| 965 | if (pte_val(pte) & _PAGE_DIRTY) |
| 966 | pte_val(pte) &= ~_PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | return pte; |
| 968 | } |
| 969 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 970 | static inline pte_t pte_mkclean(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 972 | pte_val(pte) &= ~_PAGE_DIRTY; |
| 973 | pte_val(pte) |= _PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | return pte; |
| 975 | } |
| 976 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 977 | static inline pte_t pte_mkdirty(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 979 | pte_val(pte) |= _PAGE_DIRTY; |
| 980 | if (pte_val(pte) & _PAGE_WRITE) |
| 981 | pte_val(pte) &= ~_PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | return pte; |
| 983 | } |
| 984 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 985 | static inline pte_t pte_mkold(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 987 | pte_val(pte) &= ~_PAGE_YOUNG; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 988 | pte_val(pte) |= _PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | return pte; |
| 990 | } |
| 991 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 992 | static inline pte_t pte_mkyoung(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 994 | pte_val(pte) |= _PAGE_YOUNG; |
| 995 | if (pte_val(pte) & _PAGE_READ) |
| 996 | pte_val(pte) &= ~_PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | return pte; |
| 998 | } |
| 999 | |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 1000 | static inline pte_t pte_mkspecial(pte_t pte) |
| 1001 | { |
Nick Piggin | a08cb62 | 2008-04-28 02:13:03 -0700 | [diff] [blame] | 1002 | pte_val(pte) |= _PAGE_SPECIAL; |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 1003 | return pte; |
| 1004 | } |
| 1005 | |
Heiko Carstens | 84afdce | 2010-10-25 16:10:36 +0200 | [diff] [blame] | 1006 | #ifdef CONFIG_HUGETLB_PAGE |
| 1007 | static inline pte_t pte_mkhuge(pte_t pte) |
| 1008 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1009 | pte_val(pte) |= _PAGE_LARGE; |
Heiko Carstens | 84afdce | 2010-10-25 16:10:36 +0200 | [diff] [blame] | 1010 | return pte; |
| 1011 | } |
| 1012 | #endif |
| 1013 | |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 1014 | static inline void __ptep_ipte(unsigned long address, pte_t *ptep) |
| 1015 | { |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1016 | unsigned long pto = (unsigned long) ptep; |
| 1017 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1018 | #ifndef CONFIG_64BIT |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1019 | /* pto in ESA mode must point to the start of the segment table */ |
| 1020 | pto &= 0x7ffffc00; |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 1021 | #endif |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1022 | /* Invalidation + global TLB flush for the pte */ |
| 1023 | asm volatile( |
| 1024 | " ipte %2,%3" |
| 1025 | : "=m" (*ptep) : "m" (*ptep), "a" (pto), "a" (address)); |
| 1026 | } |
| 1027 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1028 | static inline void __ptep_ipte_local(unsigned long address, pte_t *ptep) |
| 1029 | { |
| 1030 | unsigned long pto = (unsigned long) ptep; |
| 1031 | |
| 1032 | #ifndef CONFIG_64BIT |
| 1033 | /* pto in ESA mode must point to the start of the segment table */ |
| 1034 | pto &= 0x7ffffc00; |
| 1035 | #endif |
| 1036 | /* Invalidation + local TLB flush for the pte */ |
| 1037 | asm volatile( |
| 1038 | " .insn rrf,0xb2210000,%2,%3,0,1" |
| 1039 | : "=m" (*ptep) : "m" (*ptep), "a" (pto), "a" (address)); |
| 1040 | } |
| 1041 | |
Heiko Carstens | cfb0b24 | 2014-09-23 21:29:20 +0200 | [diff] [blame] | 1042 | static inline void __ptep_ipte_range(unsigned long address, int nr, pte_t *ptep) |
| 1043 | { |
| 1044 | unsigned long pto = (unsigned long) ptep; |
| 1045 | |
| 1046 | #ifndef CONFIG_64BIT |
| 1047 | /* pto in ESA mode must point to the start of the segment table */ |
| 1048 | pto &= 0x7ffffc00; |
| 1049 | #endif |
| 1050 | /* Invalidate a range of ptes + global TLB flush of the ptes */ |
| 1051 | do { |
| 1052 | asm volatile( |
| 1053 | " .insn rrf,0xb2210000,%2,%0,%1,0" |
| 1054 | : "+a" (address), "+a" (nr) : "a" (pto) : "memory"); |
| 1055 | } while (nr != 255); |
| 1056 | } |
| 1057 | |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1058 | static inline void ptep_flush_direct(struct mm_struct *mm, |
| 1059 | unsigned long address, pte_t *ptep) |
| 1060 | { |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1061 | int active, count; |
| 1062 | |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1063 | if (pte_val(*ptep) & _PAGE_INVALID) |
| 1064 | return; |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1065 | active = (mm == current->active_mm) ? 1 : 0; |
| 1066 | count = atomic_add_return(0x10000, &mm->context.attach_count); |
| 1067 | if (MACHINE_HAS_TLB_LC && (count & 0xffff) <= active && |
| 1068 | cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) |
| 1069 | __ptep_ipte_local(address, ptep); |
| 1070 | else |
| 1071 | __ptep_ipte(address, ptep); |
| 1072 | atomic_sub(0x10000, &mm->context.attach_count); |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 1073 | } |
| 1074 | |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1075 | static inline void ptep_flush_lazy(struct mm_struct *mm, |
| 1076 | unsigned long address, pte_t *ptep) |
| 1077 | { |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1078 | int active, count; |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1079 | |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1080 | if (pte_val(*ptep) & _PAGE_INVALID) |
| 1081 | return; |
| 1082 | active = (mm == current->active_mm) ? 1 : 0; |
| 1083 | count = atomic_add_return(0x10000, &mm->context.attach_count); |
| 1084 | if ((count & 0xffff) <= active) { |
| 1085 | pte_val(*ptep) |= _PAGE_INVALID; |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1086 | mm->context.flush_mm = 1; |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1087 | } else |
| 1088 | __ptep_ipte(address, ptep); |
| 1089 | atomic_sub(0x10000, &mm->context.attach_count); |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1090 | } |
| 1091 | |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 1092 | /* |
| 1093 | * Get (and clear) the user dirty bit for a pte. |
| 1094 | */ |
| 1095 | static inline int ptep_test_and_clear_user_dirty(struct mm_struct *mm, |
| 1096 | unsigned long addr, |
| 1097 | pte_t *ptep) |
| 1098 | { |
| 1099 | pgste_t pgste; |
| 1100 | pte_t pte; |
| 1101 | int dirty; |
| 1102 | |
| 1103 | if (!mm_has_pgste(mm)) |
| 1104 | return 0; |
| 1105 | pgste = pgste_get_lock(ptep); |
| 1106 | dirty = !!(pgste_val(pgste) & PGSTE_UC_BIT); |
| 1107 | pgste_val(pgste) &= ~PGSTE_UC_BIT; |
| 1108 | pte = *ptep; |
| 1109 | if (dirty && (pte_val(pte) & _PAGE_PRESENT)) { |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1110 | pgste = pgste_ipte_notify(mm, addr, ptep, pgste); |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 1111 | __ptep_ipte(addr, ptep); |
| 1112 | if (MACHINE_HAS_ESOP || !(pte_val(pte) & _PAGE_WRITE)) |
| 1113 | pte_val(pte) |= _PAGE_PROTECT; |
| 1114 | else |
| 1115 | pte_val(pte) |= _PAGE_INVALID; |
| 1116 | *ptep = pte; |
| 1117 | } |
| 1118 | pgste_set_unlock(ptep, pgste); |
| 1119 | return dirty; |
| 1120 | } |
| 1121 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1122 | #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG |
| 1123 | static inline int ptep_test_and_clear_young(struct vm_area_struct *vma, |
| 1124 | unsigned long addr, pte_t *ptep) |
| 1125 | { |
| 1126 | pgste_t pgste; |
Christian Borntraeger | 3e03d4c | 2014-08-28 21:21:41 +0200 | [diff] [blame] | 1127 | pte_t pte, oldpte; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1128 | int young; |
| 1129 | |
| 1130 | if (mm_has_pgste(vma->vm_mm)) { |
| 1131 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1132 | pgste = pgste_ipte_notify(vma->vm_mm, addr, ptep, pgste); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1133 | } |
| 1134 | |
Christian Borntraeger | 3e03d4c | 2014-08-28 21:21:41 +0200 | [diff] [blame] | 1135 | oldpte = pte = *ptep; |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1136 | ptep_flush_direct(vma->vm_mm, addr, ptep); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1137 | young = pte_young(pte); |
| 1138 | pte = pte_mkold(pte); |
| 1139 | |
| 1140 | if (mm_has_pgste(vma->vm_mm)) { |
Christian Borntraeger | 3e03d4c | 2014-08-28 21:21:41 +0200 | [diff] [blame] | 1141 | pgste = pgste_update_all(&oldpte, pgste, vma->vm_mm); |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 1142 | pgste = pgste_set_pte(ptep, pgste, pte); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1143 | pgste_set_unlock(ptep, pgste); |
| 1144 | } else |
| 1145 | *ptep = pte; |
| 1146 | |
| 1147 | return young; |
| 1148 | } |
| 1149 | |
| 1150 | #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH |
| 1151 | static inline int ptep_clear_flush_young(struct vm_area_struct *vma, |
| 1152 | unsigned long address, pte_t *ptep) |
| 1153 | { |
| 1154 | return ptep_test_and_clear_young(vma, address, ptep); |
| 1155 | } |
| 1156 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1157 | /* |
| 1158 | * This is hard to understand. ptep_get_and_clear and ptep_clear_flush |
| 1159 | * both clear the TLB for the unmapped pte. The reason is that |
| 1160 | * ptep_get_and_clear is used in common code (e.g. change_pte_range) |
| 1161 | * to modify an active pte. The sequence is |
| 1162 | * 1) ptep_get_and_clear |
| 1163 | * 2) set_pte_at |
| 1164 | * 3) flush_tlb_range |
| 1165 | * On s390 the tlb needs to get flushed with the modification of the pte |
| 1166 | * if the pte is active. The only way how this can be implemented is to |
| 1167 | * have ptep_get_and_clear do the tlb flush. In exchange flush_tlb_range |
| 1168 | * is a nop. |
| 1169 | */ |
| 1170 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1171 | static inline pte_t ptep_get_and_clear(struct mm_struct *mm, |
| 1172 | unsigned long address, pte_t *ptep) |
| 1173 | { |
| 1174 | pgste_t pgste; |
| 1175 | pte_t pte; |
| 1176 | |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1177 | if (mm_has_pgste(mm)) { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1178 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1179 | pgste = pgste_ipte_notify(mm, address, ptep, pgste); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1180 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1181 | |
| 1182 | pte = *ptep; |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1183 | ptep_flush_lazy(mm, address, ptep); |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1184 | pte_val(*ptep) = _PAGE_INVALID; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1185 | |
| 1186 | if (mm_has_pgste(mm)) { |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 1187 | pgste = pgste_update_all(&pte, pgste, mm); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1188 | pgste_set_unlock(ptep, pgste); |
| 1189 | } |
| 1190 | return pte; |
| 1191 | } |
| 1192 | |
| 1193 | #define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION |
| 1194 | static inline pte_t ptep_modify_prot_start(struct mm_struct *mm, |
| 1195 | unsigned long address, |
| 1196 | pte_t *ptep) |
| 1197 | { |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1198 | pgste_t pgste; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1199 | pte_t pte; |
| 1200 | |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1201 | if (mm_has_pgste(mm)) { |
| 1202 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1203 | pgste_ipte_notify(mm, address, ptep, pgste); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1204 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1205 | |
| 1206 | pte = *ptep; |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1207 | ptep_flush_lazy(mm, address, ptep); |
Christian Borntraeger | b56433c | 2013-05-27 16:19:55 +0200 | [diff] [blame] | 1208 | |
Christian Borntraeger | 3a82603 | 2013-06-05 09:22:33 +0200 | [diff] [blame] | 1209 | if (mm_has_pgste(mm)) { |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 1210 | pgste = pgste_update_all(&pte, pgste, mm); |
Christian Borntraeger | 3a82603 | 2013-06-05 09:22:33 +0200 | [diff] [blame] | 1211 | pgste_set(ptep, pgste); |
| 1212 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1213 | return pte; |
| 1214 | } |
| 1215 | |
| 1216 | static inline void ptep_modify_prot_commit(struct mm_struct *mm, |
| 1217 | unsigned long address, |
| 1218 | pte_t *ptep, pte_t pte) |
| 1219 | { |
Christian Borntraeger | b56433c | 2013-05-27 16:19:55 +0200 | [diff] [blame] | 1220 | pgste_t pgste; |
| 1221 | |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1222 | if (mm_has_pgste(mm)) { |
Martin Schwidefsky | d56c893 | 2013-07-19 11:15:54 +0200 | [diff] [blame] | 1223 | pgste = pgste_get(ptep); |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 1224 | pgste_set_key(ptep, pgste, pte, mm); |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 1225 | pgste = pgste_set_pte(ptep, pgste, pte); |
Christian Borntraeger | b56433c | 2013-05-27 16:19:55 +0200 | [diff] [blame] | 1226 | pgste_set_unlock(ptep, pgste); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1227 | } else |
| 1228 | *ptep = pte; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1229 | } |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1230 | |
| 1231 | #define __HAVE_ARCH_PTEP_CLEAR_FLUSH |
Martin Schwidefsky | f0e47c2 | 2007-07-17 04:03:03 -0700 | [diff] [blame] | 1232 | static inline pte_t ptep_clear_flush(struct vm_area_struct *vma, |
| 1233 | unsigned long address, pte_t *ptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1235 | pgste_t pgste; |
| 1236 | pte_t pte; |
| 1237 | |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1238 | if (mm_has_pgste(vma->vm_mm)) { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1239 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1240 | pgste = pgste_ipte_notify(vma->vm_mm, address, ptep, pgste); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1241 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1242 | |
| 1243 | pte = *ptep; |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1244 | ptep_flush_direct(vma->vm_mm, address, ptep); |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1245 | pte_val(*ptep) = _PAGE_INVALID; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1246 | |
| 1247 | if (mm_has_pgste(vma->vm_mm)) { |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1248 | if ((pgste_val(pgste) & _PGSTE_GPS_USAGE_MASK) == |
| 1249 | _PGSTE_GPS_USAGE_UNUSED) |
| 1250 | pte_val(pte) |= _PAGE_UNUSED; |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 1251 | pgste = pgste_update_all(&pte, pgste, vma->vm_mm); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1252 | pgste_set_unlock(ptep, pgste); |
| 1253 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | return pte; |
| 1255 | } |
| 1256 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1257 | /* |
| 1258 | * The batched pte unmap code uses ptep_get_and_clear_full to clear the |
| 1259 | * ptes. Here an optimization is possible. tlb_gather_mmu flushes all |
| 1260 | * tlbs of an mm if it can guarantee that the ptes of the mm_struct |
| 1261 | * cannot be accessed while the batched unmap is running. In this case |
| 1262 | * full==1 and a simple pte_clear is enough. See tlb.h. |
| 1263 | */ |
| 1264 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL |
| 1265 | static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1266 | unsigned long address, |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1267 | pte_t *ptep, int full) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1269 | pgste_t pgste; |
| 1270 | pte_t pte; |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1271 | |
Martin Schwidefsky | a055f66 | 2013-07-19 10:31:55 +0200 | [diff] [blame] | 1272 | if (!full && mm_has_pgste(mm)) { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1273 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1274 | pgste = pgste_ipte_notify(mm, address, ptep, pgste); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1275 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1276 | |
| 1277 | pte = *ptep; |
| 1278 | if (!full) |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1279 | ptep_flush_lazy(mm, address, ptep); |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1280 | pte_val(*ptep) = _PAGE_INVALID; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1281 | |
Martin Schwidefsky | a055f66 | 2013-07-19 10:31:55 +0200 | [diff] [blame] | 1282 | if (!full && mm_has_pgste(mm)) { |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 1283 | pgste = pgste_update_all(&pte, pgste, mm); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1284 | pgste_set_unlock(ptep, pgste); |
| 1285 | } |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1286 | return pte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | } |
| 1288 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1289 | #define __HAVE_ARCH_PTEP_SET_WRPROTECT |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1290 | static inline pte_t ptep_set_wrprotect(struct mm_struct *mm, |
| 1291 | unsigned long address, pte_t *ptep) |
| 1292 | { |
| 1293 | pgste_t pgste; |
| 1294 | pte_t pte = *ptep; |
| 1295 | |
| 1296 | if (pte_write(pte)) { |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1297 | if (mm_has_pgste(mm)) { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1298 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1299 | pgste = pgste_ipte_notify(mm, address, ptep, pgste); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1300 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1301 | |
Martin Schwidefsky | 5c474a1 | 2013-08-16 13:31:40 +0200 | [diff] [blame] | 1302 | ptep_flush_lazy(mm, address, ptep); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1303 | pte = pte_wrprotect(pte); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1304 | |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1305 | if (mm_has_pgste(mm)) { |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 1306 | pgste = pgste_set_pte(ptep, pgste, pte); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1307 | pgste_set_unlock(ptep, pgste); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1308 | } else |
| 1309 | *ptep = pte; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1310 | } |
| 1311 | return pte; |
| 1312 | } |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 1313 | |
| 1314 | #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1315 | static inline int ptep_set_access_flags(struct vm_area_struct *vma, |
| 1316 | unsigned long address, pte_t *ptep, |
| 1317 | pte_t entry, int dirty) |
| 1318 | { |
| 1319 | pgste_t pgste; |
| 1320 | |
| 1321 | if (pte_same(*ptep, entry)) |
| 1322 | return 0; |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1323 | if (mm_has_pgste(vma->vm_mm)) { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1324 | pgste = pgste_get_lock(ptep); |
Martin Schwidefsky | 55dbbdd | 2014-04-30 14:44:44 +0200 | [diff] [blame] | 1325 | pgste = pgste_ipte_notify(vma->vm_mm, address, ptep, pgste); |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 1326 | } |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1327 | |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1328 | ptep_flush_direct(vma->vm_mm, address, ptep); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1329 | |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1330 | if (mm_has_pgste(vma->vm_mm)) { |
Christian Borntraeger | 1951497 | 2014-08-28 23:44:57 +0200 | [diff] [blame] | 1331 | pgste_set_key(ptep, pgste, entry, vma->vm_mm); |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 1332 | pgste = pgste_set_pte(ptep, pgste, entry); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1333 | pgste_set_unlock(ptep, pgste); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1334 | } else |
| 1335 | *ptep = entry; |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 1336 | return 1; |
| 1337 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | |
| 1339 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | * Conversion functions: convert a page and protection to a page entry, |
| 1341 | * and a page entry and page directory to the page they refer to. |
| 1342 | */ |
| 1343 | static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot) |
| 1344 | { |
| 1345 | pte_t __pte; |
| 1346 | pte_val(__pte) = physpage + pgprot_val(pgprot); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1347 | return pte_mkyoung(__pte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | } |
| 1349 | |
Heiko Carstens | 2dcea57 | 2006-09-29 01:58:41 -0700 | [diff] [blame] | 1350 | static inline pte_t mk_pte(struct page *page, pgprot_t pgprot) |
| 1351 | { |
Heiko Carstens | 0b2b6e1d | 2006-10-04 20:02:23 +0200 | [diff] [blame] | 1352 | unsigned long physpage = page_to_phys(page); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1353 | pte_t __pte = mk_pte_phys(physpage, pgprot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1355 | if (pte_write(__pte) && PageDirty(page)) |
| 1356 | __pte = pte_mkdirty(__pte); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 1357 | return __pte; |
Heiko Carstens | 2dcea57 | 2006-09-29 01:58:41 -0700 | [diff] [blame] | 1358 | } |
| 1359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1361 | #define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1)) |
| 1362 | #define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1)) |
| 1363 | #define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1365 | #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | #define pgd_offset_k(address) pgd_offset(&init_mm, address) |
| 1367 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1368 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1370 | #define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN) |
| 1371 | #define pud_deref(pmd) ({ BUG(); 0UL; }) |
| 1372 | #define pgd_deref(pmd) ({ BUG(); 0UL; }) |
| 1373 | |
| 1374 | #define pud_offset(pgd, address) ((pud_t *) pgd) |
| 1375 | #define pmd_offset(pud, address) ((pmd_t *) pud + pmd_index(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1377 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1379 | #define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN) |
| 1380 | #define pud_deref(pud) (pud_val(pud) & _REGION_ENTRY_ORIGIN) |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 1381 | #define pgd_deref(pgd) (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1382 | |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 1383 | static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address) |
| 1384 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 1385 | pud_t *pud = (pud_t *) pgd; |
| 1386 | if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2) |
| 1387 | pud = (pud_t *) pgd_deref(*pgd); |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 1388 | return pud + pud_index(address); |
| 1389 | } |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1390 | |
| 1391 | static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address) |
| 1392 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 1393 | pmd_t *pmd = (pmd_t *) pud; |
| 1394 | if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3) |
| 1395 | pmd = (pmd_t *) pud_deref(*pud); |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1396 | return pmd + pmd_index(address); |
| 1397 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1399 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1401 | #define pfn_pte(pfn,pgprot) mk_pte_phys(__pa((pfn) << PAGE_SHIFT),(pgprot)) |
| 1402 | #define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT) |
| 1403 | #define pte_page(x) pfn_to_page(pte_pfn(x)) |
| 1404 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1405 | #define pmd_page(pmd) pfn_to_page(pmd_pfn(pmd)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 1406 | |
| 1407 | /* Find an entry in the lowest level page table.. */ |
| 1408 | #define pte_offset(pmd, addr) ((pte_t *) pmd_deref(*(pmd)) + pte_index(addr)) |
| 1409 | #define pte_offset_kernel(pmd, address) pte_offset(pmd,address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | #define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | #define pte_unmap(pte) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1413 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLB_PAGE) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1414 | static inline unsigned long massage_pgprot_pmd(pgprot_t pgprot) |
| 1415 | { |
Gerald Schaefer | d8e7a33 | 2012-10-25 17:42:50 +0200 | [diff] [blame] | 1416 | /* |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1417 | * pgprot is PAGE_NONE, PAGE_READ, or PAGE_WRITE (see __Pxxx / __Sxxx) |
Gerald Schaefer | d8e7a33 | 2012-10-25 17:42:50 +0200 | [diff] [blame] | 1418 | * Convert to segment table entry format. |
| 1419 | */ |
| 1420 | if (pgprot_val(pgprot) == pgprot_val(PAGE_NONE)) |
| 1421 | return pgprot_val(SEGMENT_NONE); |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1422 | if (pgprot_val(pgprot) == pgprot_val(PAGE_READ)) |
| 1423 | return pgprot_val(SEGMENT_READ); |
| 1424 | return pgprot_val(SEGMENT_WRITE); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1425 | } |
| 1426 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1427 | static inline pmd_t pmd_wrprotect(pmd_t pmd) |
| 1428 | { |
| 1429 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_WRITE; |
| 1430 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
| 1431 | return pmd; |
| 1432 | } |
| 1433 | |
| 1434 | static inline pmd_t pmd_mkwrite(pmd_t pmd) |
| 1435 | { |
| 1436 | pmd_val(pmd) |= _SEGMENT_ENTRY_WRITE; |
| 1437 | if (pmd_large(pmd) && !(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY)) |
| 1438 | return pmd; |
| 1439 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT; |
| 1440 | return pmd; |
| 1441 | } |
| 1442 | |
| 1443 | static inline pmd_t pmd_mkclean(pmd_t pmd) |
| 1444 | { |
| 1445 | if (pmd_large(pmd)) { |
| 1446 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_DIRTY; |
| 1447 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
| 1448 | } |
| 1449 | return pmd; |
| 1450 | } |
| 1451 | |
| 1452 | static inline pmd_t pmd_mkdirty(pmd_t pmd) |
| 1453 | { |
| 1454 | if (pmd_large(pmd)) { |
| 1455 | pmd_val(pmd) |= _SEGMENT_ENTRY_DIRTY; |
| 1456 | if (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE) |
| 1457 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT; |
| 1458 | } |
| 1459 | return pmd; |
| 1460 | } |
| 1461 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1462 | static inline pmd_t pmd_mkyoung(pmd_t pmd) |
| 1463 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1464 | if (pmd_large(pmd)) { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1465 | pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG; |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1466 | if (pmd_val(pmd) & _SEGMENT_ENTRY_READ) |
| 1467 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_INVALID; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1468 | } |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1469 | return pmd; |
| 1470 | } |
| 1471 | |
| 1472 | static inline pmd_t pmd_mkold(pmd_t pmd) |
| 1473 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1474 | if (pmd_large(pmd)) { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1475 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_YOUNG; |
| 1476 | pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID; |
| 1477 | } |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1478 | return pmd; |
| 1479 | } |
| 1480 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1481 | static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot) |
| 1482 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1483 | if (pmd_large(pmd)) { |
| 1484 | pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN_LARGE | |
| 1485 | _SEGMENT_ENTRY_DIRTY | _SEGMENT_ENTRY_YOUNG | |
| 1486 | _SEGMENT_ENTRY_LARGE | _SEGMENT_ENTRY_SPLIT; |
| 1487 | pmd_val(pmd) |= massage_pgprot_pmd(newprot); |
| 1488 | if (!(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY)) |
| 1489 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
| 1490 | if (!(pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG)) |
| 1491 | pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID; |
| 1492 | return pmd; |
| 1493 | } |
| 1494 | pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1495 | pmd_val(pmd) |= massage_pgprot_pmd(newprot); |
| 1496 | return pmd; |
| 1497 | } |
| 1498 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1499 | static inline pmd_t mk_pmd_phys(unsigned long physpage, pgprot_t pgprot) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1500 | { |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1501 | pmd_t __pmd; |
| 1502 | pmd_val(__pmd) = physpage + massage_pgprot_pmd(pgprot); |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1503 | return __pmd; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1504 | } |
| 1505 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1506 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLB_PAGE */ |
| 1507 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1508 | static inline void __pmdp_csp(pmd_t *pmdp) |
| 1509 | { |
| 1510 | register unsigned long reg2 asm("2") = pmd_val(*pmdp); |
| 1511 | register unsigned long reg3 asm("3") = pmd_val(*pmdp) | |
| 1512 | _SEGMENT_ENTRY_INVALID; |
| 1513 | register unsigned long reg4 asm("4") = ((unsigned long) pmdp) + 5; |
| 1514 | |
| 1515 | asm volatile( |
| 1516 | " csp %1,%3" |
| 1517 | : "=m" (*pmdp) |
| 1518 | : "d" (reg2), "d" (reg3), "d" (reg4), "m" (*pmdp) : "cc"); |
| 1519 | } |
| 1520 | |
| 1521 | static inline void __pmdp_idte(unsigned long address, pmd_t *pmdp) |
| 1522 | { |
| 1523 | unsigned long sto; |
| 1524 | |
| 1525 | sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t); |
| 1526 | asm volatile( |
| 1527 | " .insn rrf,0xb98e0000,%2,%3,0,0" |
| 1528 | : "=m" (*pmdp) |
| 1529 | : "m" (*pmdp), "a" (sto), "a" ((address & HPAGE_MASK)) |
| 1530 | : "cc" ); |
| 1531 | } |
| 1532 | |
| 1533 | static inline void __pmdp_idte_local(unsigned long address, pmd_t *pmdp) |
| 1534 | { |
| 1535 | unsigned long sto; |
| 1536 | |
| 1537 | sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t); |
| 1538 | asm volatile( |
| 1539 | " .insn rrf,0xb98e0000,%2,%3,0,1" |
| 1540 | : "=m" (*pmdp) |
| 1541 | : "m" (*pmdp), "a" (sto), "a" ((address & HPAGE_MASK)) |
| 1542 | : "cc" ); |
| 1543 | } |
| 1544 | |
| 1545 | static inline void pmdp_flush_direct(struct mm_struct *mm, |
| 1546 | unsigned long address, pmd_t *pmdp) |
| 1547 | { |
| 1548 | int active, count; |
| 1549 | |
| 1550 | if (pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID) |
| 1551 | return; |
| 1552 | if (!MACHINE_HAS_IDTE) { |
| 1553 | __pmdp_csp(pmdp); |
| 1554 | return; |
| 1555 | } |
| 1556 | active = (mm == current->active_mm) ? 1 : 0; |
| 1557 | count = atomic_add_return(0x10000, &mm->context.attach_count); |
| 1558 | if (MACHINE_HAS_TLB_LC && (count & 0xffff) <= active && |
| 1559 | cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) |
| 1560 | __pmdp_idte_local(address, pmdp); |
| 1561 | else |
| 1562 | __pmdp_idte(address, pmdp); |
| 1563 | atomic_sub(0x10000, &mm->context.attach_count); |
| 1564 | } |
| 1565 | |
Martin Schwidefsky | 3eabaee | 2013-07-26 15:04:02 +0200 | [diff] [blame] | 1566 | static inline void pmdp_flush_lazy(struct mm_struct *mm, |
| 1567 | unsigned long address, pmd_t *pmdp) |
| 1568 | { |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1569 | int active, count; |
Martin Schwidefsky | 3eabaee | 2013-07-26 15:04:02 +0200 | [diff] [blame] | 1570 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1571 | if (pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID) |
| 1572 | return; |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1573 | active = (mm == current->active_mm) ? 1 : 0; |
| 1574 | count = atomic_add_return(0x10000, &mm->context.attach_count); |
| 1575 | if ((count & 0xffff) <= active) { |
| 1576 | pmd_val(*pmdp) |= _SEGMENT_ENTRY_INVALID; |
Martin Schwidefsky | 3eabaee | 2013-07-26 15:04:02 +0200 | [diff] [blame] | 1577 | mm->context.flush_mm = 1; |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1578 | } else if (MACHINE_HAS_IDTE) |
| 1579 | __pmdp_idte(address, pmdp); |
| 1580 | else |
| 1581 | __pmdp_csp(pmdp); |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 1582 | atomic_sub(0x10000, &mm->context.attach_count); |
Martin Schwidefsky | 3eabaee | 2013-07-26 15:04:02 +0200 | [diff] [blame] | 1583 | } |
| 1584 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1585 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 1586 | |
| 1587 | #define __HAVE_ARCH_PGTABLE_DEPOSIT |
Aneesh Kumar K.V | 6b0b50b | 2013-06-05 17:14:02 -0700 | [diff] [blame] | 1588 | extern void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp, |
| 1589 | pgtable_t pgtable); |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1590 | |
| 1591 | #define __HAVE_ARCH_PGTABLE_WITHDRAW |
Aneesh Kumar K.V | 6b0b50b | 2013-06-05 17:14:02 -0700 | [diff] [blame] | 1592 | extern pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp); |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1593 | |
| 1594 | static inline int pmd_trans_splitting(pmd_t pmd) |
| 1595 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1596 | return (pmd_val(pmd) & _SEGMENT_ENTRY_LARGE) && |
| 1597 | (pmd_val(pmd) & _SEGMENT_ENTRY_SPLIT); |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | static inline void set_pmd_at(struct mm_struct *mm, unsigned long addr, |
| 1601 | pmd_t *pmdp, pmd_t entry) |
| 1602 | { |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1603 | *pmdp = entry; |
| 1604 | } |
| 1605 | |
| 1606 | static inline pmd_t pmd_mkhuge(pmd_t pmd) |
| 1607 | { |
| 1608 | pmd_val(pmd) |= _SEGMENT_ENTRY_LARGE; |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1609 | pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG; |
| 1610 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1611 | return pmd; |
| 1612 | } |
| 1613 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1614 | #define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG |
| 1615 | static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma, |
| 1616 | unsigned long address, pmd_t *pmdp) |
| 1617 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1618 | pmd_t pmd; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1619 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1620 | pmd = *pmdp; |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1621 | pmdp_flush_direct(vma->vm_mm, address, pmdp); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1622 | *pmdp = pmd_mkold(pmd); |
| 1623 | return pmd_young(pmd); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1624 | } |
| 1625 | |
| 1626 | #define __HAVE_ARCH_PMDP_GET_AND_CLEAR |
| 1627 | static inline pmd_t pmdp_get_and_clear(struct mm_struct *mm, |
| 1628 | unsigned long address, pmd_t *pmdp) |
| 1629 | { |
| 1630 | pmd_t pmd = *pmdp; |
| 1631 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1632 | pmdp_flush_direct(mm, address, pmdp); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1633 | pmd_clear(pmdp); |
| 1634 | return pmd; |
| 1635 | } |
| 1636 | |
| 1637 | #define __HAVE_ARCH_PMDP_CLEAR_FLUSH |
| 1638 | static inline pmd_t pmdp_clear_flush(struct vm_area_struct *vma, |
| 1639 | unsigned long address, pmd_t *pmdp) |
| 1640 | { |
| 1641 | return pmdp_get_and_clear(vma->vm_mm, address, pmdp); |
| 1642 | } |
| 1643 | |
| 1644 | #define __HAVE_ARCH_PMDP_INVALIDATE |
| 1645 | static inline void pmdp_invalidate(struct vm_area_struct *vma, |
| 1646 | unsigned long address, pmd_t *pmdp) |
| 1647 | { |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1648 | pmdp_flush_direct(vma->vm_mm, address, pmdp); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
Gerald Schaefer | be32865 | 2013-01-21 16:48:07 +0100 | [diff] [blame] | 1651 | #define __HAVE_ARCH_PMDP_SET_WRPROTECT |
| 1652 | static inline void pmdp_set_wrprotect(struct mm_struct *mm, |
| 1653 | unsigned long address, pmd_t *pmdp) |
| 1654 | { |
| 1655 | pmd_t pmd = *pmdp; |
| 1656 | |
| 1657 | if (pmd_write(pmd)) { |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1658 | pmdp_flush_direct(mm, address, pmdp); |
Gerald Schaefer | be32865 | 2013-01-21 16:48:07 +0100 | [diff] [blame] | 1659 | set_pmd_at(mm, address, pmdp, pmd_wrprotect(pmd)); |
| 1660 | } |
| 1661 | } |
| 1662 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1663 | #define pfn_pmd(pfn, pgprot) mk_pmd_phys(__pa((pfn) << PAGE_SHIFT), (pgprot)) |
| 1664 | #define mk_pmd(page, pgprot) pfn_pmd(page_to_pfn(page), (pgprot)) |
| 1665 | |
| 1666 | static inline int pmd_trans_huge(pmd_t pmd) |
| 1667 | { |
| 1668 | return pmd_val(pmd) & _SEGMENT_ENTRY_LARGE; |
| 1669 | } |
| 1670 | |
| 1671 | static inline int has_transparent_hugepage(void) |
| 1672 | { |
| 1673 | return MACHINE_HAS_HPAGE ? 1 : 0; |
| 1674 | } |
Gerald Schaefer | 75077af | 2012-10-08 16:30:15 -0700 | [diff] [blame] | 1675 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
| 1676 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | /* |
| 1678 | * 31 bit swap entry format: |
| 1679 | * A page-table entry has some bits we have to treat in a special way. |
| 1680 | * Bits 0, 20 and bit 23 have to be zero, otherwise an specification |
| 1681 | * exception will occur instead of a page translation exception. The |
| 1682 | * specifiation exception has the bad habit not to store necessary |
| 1683 | * information in the lowcore. |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1684 | * Bits 21, 22, 30 and 31 are used to indicate the page type. |
| 1685 | * A swap pte is indicated by bit pattern (pte & 0x603) == 0x402 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | * This leaves the bits 1-19 and bits 24-29 to store type and offset. |
| 1687 | * We use the 5 bits from 25-29 for the type and the 20 bits from 1-19 |
| 1688 | * plus 24 for the offset. |
| 1689 | * 0| offset |0110|o|type |00| |
| 1690 | * 0 0000000001111111111 2222 2 22222 33 |
| 1691 | * 0 1234567890123456789 0123 4 56789 01 |
| 1692 | * |
| 1693 | * 64 bit swap entry format: |
| 1694 | * A page-table entry has some bits we have to treat in a special way. |
| 1695 | * Bits 52 and bit 55 have to be zero, otherwise an specification |
| 1696 | * exception will occur instead of a page translation exception. The |
| 1697 | * specifiation exception has the bad habit not to store necessary |
| 1698 | * information in the lowcore. |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1699 | * Bits 53, 54, 62 and 63 are used to indicate the page type. |
| 1700 | * A swap pte is indicated by bit pattern (pte & 0x603) == 0x402 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | * This leaves the bits 0-51 and bits 56-61 to store type and offset. |
| 1702 | * We use the 5 bits from 57-61 for the type and the 53 bits from 0-51 |
| 1703 | * plus 56 for the offset. |
| 1704 | * | offset |0110|o|type |00| |
| 1705 | * 0000000000111111111122222222223333333333444444444455 5555 5 55566 66 |
| 1706 | * 0123456789012345678901234567890123456789012345678901 2345 6 78901 23 |
| 1707 | */ |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1708 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | #define __SWP_OFFSET_MASK (~0UL >> 12) |
| 1710 | #else |
| 1711 | #define __SWP_OFFSET_MASK (~0UL >> 11) |
| 1712 | #endif |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 1713 | static inline pte_t mk_swap_pte(unsigned long type, unsigned long offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | { |
| 1715 | pte_t pte; |
| 1716 | offset &= __SWP_OFFSET_MASK; |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1717 | pte_val(pte) = _PAGE_INVALID | _PAGE_TYPE | ((type & 0x1f) << 2) | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | ((offset & 1UL) << 7) | ((offset & ~1UL) << 11); |
| 1719 | return pte; |
| 1720 | } |
| 1721 | |
| 1722 | #define __swp_type(entry) (((entry).val >> 2) & 0x1f) |
| 1723 | #define __swp_offset(entry) (((entry).val >> 11) | (((entry).val >> 7) & 1)) |
| 1724 | #define __swp_entry(type,offset) ((swp_entry_t) { pte_val(mk_swap_pte((type),(offset))) }) |
| 1725 | |
| 1726 | #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) |
| 1727 | #define __swp_entry_to_pte(x) ((pte_t) { (x).val }) |
| 1728 | |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1729 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | # define PTE_FILE_MAX_BITS 26 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1731 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | # define PTE_FILE_MAX_BITS 59 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 1733 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
| 1735 | #define pte_to_pgoff(__pte) \ |
| 1736 | ((((__pte).pte >> 12) << 7) + (((__pte).pte >> 1) & 0x7f)) |
| 1737 | |
| 1738 | #define pgoff_to_pte(__off) \ |
| 1739 | ((pte_t) { ((((__off) & 0x7f) << 1) + (((__off) >> 7) << 12)) \ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 1740 | | _PAGE_INVALID | _PAGE_PROTECT }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | |
| 1742 | #endif /* !__ASSEMBLY__ */ |
| 1743 | |
| 1744 | #define kern_addr_valid(addr) (1) |
| 1745 | |
Heiko Carstens | 17f3458 | 2008-04-30 13:38:47 +0200 | [diff] [blame] | 1746 | extern int vmem_add_mapping(unsigned long start, unsigned long size); |
| 1747 | extern int vmem_remove_mapping(unsigned long start, unsigned long size); |
Carsten Otte | 402b086 | 2008-03-25 18:47:10 +0100 | [diff] [blame] | 1748 | extern int s390_enable_sie(void); |
Dominik Dingel | 934bc13 | 2014-01-14 18:10:17 +0100 | [diff] [blame] | 1749 | extern void s390_enable_skey(void); |
Dominik Dingel | a13cff3 | 2014-10-23 12:07:14 +0200 | [diff] [blame^] | 1750 | extern void s390_reset_cmma(struct mm_struct *mm); |
Heiko Carstens | f4eb07c | 2006-12-08 15:56:07 +0100 | [diff] [blame] | 1751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | /* |
| 1753 | * No page table caches to initialise |
| 1754 | */ |
Heiko Carstens | 765a0ca | 2013-03-23 10:29:01 +0100 | [diff] [blame] | 1755 | static inline void pgtable_cache_init(void) { } |
| 1756 | static inline void check_pgt_cache(void) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | #include <asm-generic/pgtable.h> |
| 1759 | |
| 1760 | #endif /* _S390_PAGE_H */ |