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 | /* |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 15 | * The Linux memory management assumes a three-level page table setup. |
| 16 | * For s390 64 bit we use up to four of the five levels the hardware |
| 17 | * provides (region first tables are not used). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * |
| 19 | * The "pgd_xxx()" functions are trivial for a folded two-level |
| 20 | * setup: the pgd is never bad, and a pmd always exists (as it's folded |
| 21 | * into the pgd entry) |
| 22 | * |
| 23 | * This file contains the functions and defines necessary to modify and use |
| 24 | * the S390 page table tree. |
| 25 | */ |
| 26 | #ifndef __ASSEMBLY__ |
Heiko Carstens | 9789db0 | 2008-07-14 09:59:11 +0200 | [diff] [blame] | 27 | #include <linux/sched.h> |
Heiko Carstens | 2dcea57 | 2006-09-29 01:58:41 -0700 | [diff] [blame] | 28 | #include <linux/mm_types.h> |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 29 | #include <linux/page-flags.h> |
Martin Schwidefsky | 527e30b | 2014-04-30 16:04:25 +0200 | [diff] [blame] | 30 | #include <linux/radix-tree.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <asm/bug.h> |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 32 | #include <asm/page.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | extern pgd_t swapper_pg_dir[] __attribute__ ((aligned (4096))); |
| 35 | extern void paging_init(void); |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 36 | extern void vmem_map_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * The S390 doesn't have any external MMU info: the kernel page |
| 40 | * tables contain all the necessary information. |
| 41 | */ |
Russell King | 4b3073e | 2009-12-18 16:40:18 +0000 | [diff] [blame] | 42 | #define update_mmu_cache(vma, address, ptep) do { } while (0) |
David Miller | b113da6 | 2012-10-08 16:34:25 -0700 | [diff] [blame] | 43 | #define update_mmu_cache_pmd(vma, address, ptep) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | /* |
Martin Schwidefsky | 238ec4e | 2010-10-25 16:10:07 +0200 | [diff] [blame] | 46 | * ZERO_PAGE is a global shared page that is always zero; used |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | * for zero-mapped memory areas etc.. |
| 48 | */ |
Martin Schwidefsky | 238ec4e | 2010-10-25 16:10:07 +0200 | [diff] [blame] | 49 | |
| 50 | extern unsigned long empty_zero_page; |
| 51 | extern unsigned long zero_page_mask; |
| 52 | |
| 53 | #define ZERO_PAGE(vaddr) \ |
| 54 | (virt_to_page((void *)(empty_zero_page + \ |
| 55 | (((unsigned long)(vaddr)) &zero_page_mask)))) |
Kirill A. Shutemov | 816422a | 2012-12-12 13:52:36 -0800 | [diff] [blame] | 56 | #define __HAVE_COLOR_ZERO_PAGE |
Martin Schwidefsky | 238ec4e | 2010-10-25 16:10:07 +0200 | [diff] [blame] | 57 | |
Linus Torvalds | 4f2e290 | 2013-04-17 08:46:19 -0700 | [diff] [blame] | 58 | /* TODO: s390 cannot support io_remap_pfn_range... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #endif /* !__ASSEMBLY__ */ |
| 60 | |
| 61 | /* |
| 62 | * PMD_SHIFT determines the size of the area a second-level page |
| 63 | * table can map |
| 64 | * PGDIR_SHIFT determines what a third-level page table entry can map |
| 65 | */ |
Heiko Carstens | 5a79859a | 2015-02-12 13:08:27 +0100 | [diff] [blame] | 66 | #define PMD_SHIFT 20 |
| 67 | #define PUD_SHIFT 31 |
| 68 | #define PGDIR_SHIFT 42 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | #define PMD_SIZE (1UL << PMD_SHIFT) |
| 71 | #define PMD_MASK (~(PMD_SIZE-1)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 72 | #define PUD_SIZE (1UL << PUD_SHIFT) |
| 73 | #define PUD_MASK (~(PUD_SIZE-1)) |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 74 | #define PGDIR_SIZE (1UL << PGDIR_SHIFT) |
| 75 | #define PGDIR_MASK (~(PGDIR_SIZE-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * entries per page directory level: the S390 is two-level, so |
| 79 | * we don't really have any PMD directory physically. |
| 80 | * for S390 segment-table entries are combined to one PGD |
| 81 | * that leads to 1024 pte per pgd |
| 82 | */ |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 83 | #define PTRS_PER_PTE 256 |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 84 | #define PTRS_PER_PMD 2048 |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 85 | #define PTRS_PER_PUD 2048 |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 86 | #define PTRS_PER_PGD 2048 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Kirill A. Shutemov | d016bf7 | 2015-02-11 15:26:41 -0800 | [diff] [blame] | 88 | #define FIRST_USER_ADDRESS 0UL |
Hugh Dickins | d455a36 | 2005-04-19 13:29:23 -0700 | [diff] [blame] | 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | #define pte_ERROR(e) \ |
| 91 | printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e)) |
| 92 | #define pmd_ERROR(e) \ |
| 93 | 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] | 94 | #define pud_ERROR(e) \ |
| 95 | 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] | 96 | #define pgd_ERROR(e) \ |
| 97 | printk("%s:%d: bad pgd %p.\n", __FILE__, __LINE__, (void *) pgd_val(e)) |
| 98 | |
| 99 | #ifndef __ASSEMBLY__ |
| 100 | /* |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 101 | * The vmalloc and module area will always be on the topmost area of the |
| 102 | * kernel mapping. We reserve 128GB (64bit) for vmalloc and modules. |
Heiko Carstens | c972cc6 | 2012-10-05 16:52:18 +0200 | [diff] [blame] | 103 | * On 64 bit kernels we have a 2GB area at the top of the vmalloc area where |
| 104 | * modules will reside. That makes sure that inter module branches always |
| 105 | * happen without trampolines and in addition the placement within a 2GB frame |
| 106 | * is branch prediction unit friendly. |
Heiko Carstens | 8b62bc9 | 2006-12-04 15:40:56 +0100 | [diff] [blame] | 107 | */ |
Heiko Carstens | 239a6425 | 2009-06-12 10:26:33 +0200 | [diff] [blame] | 108 | extern unsigned long VMALLOC_START; |
Martin Schwidefsky | 14045eb | 2011-12-27 11:27:07 +0100 | [diff] [blame] | 109 | extern unsigned long VMALLOC_END; |
| 110 | extern struct page *vmemmap; |
Heiko Carstens | 239a6425 | 2009-06-12 10:26:33 +0200 | [diff] [blame] | 111 | |
Martin Schwidefsky | 14045eb | 2011-12-27 11:27:07 +0100 | [diff] [blame] | 112 | #define VMEM_MAX_PHYS ((unsigned long) vmemmap) |
Christian Borntraeger | 5fd9c6e | 2008-01-26 14:11:00 +0100 | [diff] [blame] | 113 | |
Heiko Carstens | c972cc6 | 2012-10-05 16:52:18 +0200 | [diff] [blame] | 114 | extern unsigned long MODULES_VADDR; |
| 115 | extern unsigned long MODULES_END; |
| 116 | #define MODULES_VADDR MODULES_VADDR |
| 117 | #define MODULES_END MODULES_END |
| 118 | #define MODULES_LEN (1UL << 31) |
Heiko Carstens | c972cc6 | 2012-10-05 16:52:18 +0200 | [diff] [blame] | 119 | |
Heiko Carstens | c933146 | 2014-10-15 12:17:38 +0200 | [diff] [blame] | 120 | static inline int is_module_addr(void *addr) |
| 121 | { |
Heiko Carstens | c933146 | 2014-10-15 12:17:38 +0200 | [diff] [blame] | 122 | BUILD_BUG_ON(MODULES_LEN > (1UL << 31)); |
| 123 | if (addr < (void *)MODULES_VADDR) |
| 124 | return 0; |
| 125 | if (addr > (void *)MODULES_END) |
| 126 | return 0; |
Heiko Carstens | c933146 | 2014-10-15 12:17:38 +0200 | [diff] [blame] | 127 | return 1; |
| 128 | } |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | * A 64 bit pagetable entry of S390 has following format: |
Christian Borntraeger | 6a985c6 | 2009-12-07 12:52:11 +0100 | [diff] [blame] | 132 | * | PFRA |0IPC| OS | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 134 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 135 | * |
| 136 | * I Page-Invalid Bit: Page is not available for address-translation |
| 137 | * P Page-Protection Bit: Store access not possible for page |
Christian Borntraeger | 6a985c6 | 2009-12-07 12:52:11 +0100 | [diff] [blame] | 138 | * C Change-bit override: HW is not required to set change bit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | * |
| 140 | * A 64 bit segmenttable entry of S390 has following format: |
| 141 | * | P-table origin | TT |
| 142 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 143 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 144 | * |
| 145 | * I Segment-Invalid Bit: Segment is not available for address-translation |
| 146 | * C Common-Segment Bit: Segment is not private (PoP 3-30) |
| 147 | * P Page-Protection Bit: Store access not possible for page |
| 148 | * TT Type 00 |
| 149 | * |
| 150 | * A 64 bit region table entry of S390 has following format: |
| 151 | * | S-table origin | TF TTTL |
| 152 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 153 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 154 | * |
| 155 | * I Segment-Invalid Bit: Segment is not available for address-translation |
| 156 | * TT Type 01 |
| 157 | * TF |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 158 | * TL Table length |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | * |
| 160 | * The 64 bit regiontable origin of S390 has following format: |
| 161 | * | region table origon | DTTL |
| 162 | * 0000000000111111111122222222223333333333444444444455555555556666 |
| 163 | * 0123456789012345678901234567890123456789012345678901234567890123 |
| 164 | * |
| 165 | * X Space-Switch event: |
| 166 | * G Segment-Invalid Bit: |
| 167 | * P Private-Space Bit: |
| 168 | * S Storage-Alteration: |
| 169 | * R Real space |
| 170 | * TL Table-Length: |
| 171 | * |
| 172 | * A storage key has the following format: |
| 173 | * | ACC |F|R|C|0| |
| 174 | * 0 3 4 5 6 7 |
| 175 | * ACC: access key |
| 176 | * F : fetch protection bit |
| 177 | * R : referenced bit |
| 178 | * C : changed bit |
| 179 | */ |
| 180 | |
| 181 | /* Hardware bits in the page table entry */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 182 | #define _PAGE_PROTECT 0x200 /* HW read-only bit */ |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 183 | #define _PAGE_INVALID 0x400 /* HW invalid bit */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 184 | #define _PAGE_LARGE 0x800 /* Bit to mark a large pte */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 185 | |
| 186 | /* Software bits in the page table entry */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 187 | #define _PAGE_PRESENT 0x001 /* SW pte present bit */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 188 | #define _PAGE_YOUNG 0x004 /* SW pte young bit */ |
| 189 | #define _PAGE_DIRTY 0x008 /* SW pte dirty bit */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 190 | #define _PAGE_READ 0x010 /* SW pte read bit */ |
| 191 | #define _PAGE_WRITE 0x020 /* SW pte write bit */ |
| 192 | #define _PAGE_SPECIAL 0x040 /* SW associated with special page */ |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 193 | #define _PAGE_UNUSED 0x080 /* SW bit for pgste usage state */ |
Nick Piggin | a08cb62 | 2008-04-28 02:13:03 -0700 | [diff] [blame] | 194 | #define __HAVE_ARCH_PTE_SPECIAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Martin Schwidefsky | 5614dd9 | 2015-04-22 14:47:42 +0200 | [diff] [blame] | 196 | #ifdef CONFIG_MEM_SOFT_DIRTY |
| 197 | #define _PAGE_SOFT_DIRTY 0x002 /* SW pte soft dirty bit */ |
| 198 | #else |
| 199 | #define _PAGE_SOFT_DIRTY 0x000 |
| 200 | #endif |
| 201 | |
Nick Piggin | 138c902 | 2008-07-08 11:31:06 +0200 | [diff] [blame] | 202 | /* Set of bits not changed in pte_modify */ |
Heiko Carstens | 6a5c148 | 2014-09-22 08:50:51 +0200 | [diff] [blame] | 203 | #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_SPECIAL | _PAGE_DIRTY | \ |
Martin Schwidefsky | 5614dd9 | 2015-04-22 14:47:42 +0200 | [diff] [blame] | 204 | _PAGE_YOUNG | _PAGE_SOFT_DIRTY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 206 | /* |
Kirill A. Shutemov | 6e76d4b | 2015-02-10 14:11:04 -0800 | [diff] [blame] | 207 | * handle_pte_fault uses pte_present and pte_none to find out the pte type |
| 208 | * WITHOUT holding the page table lock. The _PAGE_PRESENT bit is used to |
| 209 | * distinguish present from not-present ptes. It is changed only with the page |
| 210 | * table lock held. |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 211 | * |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 212 | * The following table gives the different possible bit combinations for |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 213 | * the pte hardware and software bits in the last 12 bits of a pte |
| 214 | * (. unassigned bit, x don't care, t swap type): |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 215 | * |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 216 | * 842100000000 |
| 217 | * 000084210000 |
| 218 | * 000000008421 |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 219 | * .IR.uswrdy.p |
| 220 | * empty .10.00000000 |
| 221 | * swap .11..ttttt.0 |
| 222 | * prot-none, clean, old .11.xx0000.1 |
| 223 | * prot-none, clean, young .11.xx0001.1 |
| 224 | * prot-none, dirty, old .10.xx0010.1 |
| 225 | * prot-none, dirty, young .10.xx0011.1 |
| 226 | * read-only, clean, old .11.xx0100.1 |
| 227 | * read-only, clean, young .01.xx0101.1 |
| 228 | * read-only, dirty, old .11.xx0110.1 |
| 229 | * read-only, dirty, young .01.xx0111.1 |
| 230 | * read-write, clean, old .11.xx1100.1 |
| 231 | * read-write, clean, young .01.xx1101.1 |
| 232 | * read-write, dirty, old .10.xx1110.1 |
| 233 | * read-write, dirty, young .00.xx1111.1 |
| 234 | * HW-bits: R read-only, I invalid |
| 235 | * SW-bits: p present, y young, d dirty, r read, w write, s special, |
| 236 | * u unused, l large |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 237 | * |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 238 | * pte_none is true for the bit pattern .10.00000000, pte == 0x400 |
| 239 | * pte_swap is true for the bit pattern .11..ooooo.0, (pte & 0x201) == 0x200 |
| 240 | * pte_present is true for the bit pattern .xx.xxxxxx.1, (pte & 0x001) == 0x001 |
Martin Schwidefsky | 8337748 | 2006-10-18 18:30:51 +0200 | [diff] [blame] | 241 | */ |
| 242 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 243 | /* Bits in the segment/region table address-space-control-element */ |
| 244 | #define _ASCE_ORIGIN ~0xfffUL/* segment table origin */ |
| 245 | #define _ASCE_PRIVATE_SPACE 0x100 /* private space control */ |
| 246 | #define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */ |
| 247 | #define _ASCE_SPACE_SWITCH 0x40 /* space switch event */ |
| 248 | #define _ASCE_REAL_SPACE 0x20 /* real space control */ |
| 249 | #define _ASCE_TYPE_MASK 0x0c /* asce table type mask */ |
| 250 | #define _ASCE_TYPE_REGION1 0x0c /* region first table type */ |
| 251 | #define _ASCE_TYPE_REGION2 0x08 /* region second table type */ |
| 252 | #define _ASCE_TYPE_REGION3 0x04 /* region third table type */ |
| 253 | #define _ASCE_TYPE_SEGMENT 0x00 /* segment table type */ |
| 254 | #define _ASCE_TABLE_LENGTH 0x03 /* region table length */ |
| 255 | |
| 256 | /* Bits in the region table entry */ |
| 257 | #define _REGION_ENTRY_ORIGIN ~0xfffUL/* region/segment table origin */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 258 | #define _REGION_ENTRY_PROTECT 0x200 /* region protection bit */ |
| 259 | #define _REGION_ENTRY_INVALID 0x20 /* invalid region table entry */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 260 | #define _REGION_ENTRY_TYPE_MASK 0x0c /* region/segment table type mask */ |
| 261 | #define _REGION_ENTRY_TYPE_R1 0x0c /* region first table type */ |
| 262 | #define _REGION_ENTRY_TYPE_R2 0x08 /* region second table type */ |
| 263 | #define _REGION_ENTRY_TYPE_R3 0x04 /* region third table type */ |
| 264 | #define _REGION_ENTRY_LENGTH 0x03 /* region third length */ |
| 265 | |
| 266 | #define _REGION1_ENTRY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_LENGTH) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 267 | #define _REGION1_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 268 | #define _REGION2_ENTRY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_LENGTH) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 269 | #define _REGION2_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 270 | #define _REGION3_ENTRY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_LENGTH) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 271 | #define _REGION3_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 272 | |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 273 | #define _REGION3_ENTRY_LARGE 0x400 /* RTTE-format control, large page */ |
Heiko Carstens | 1819ed1 | 2013-02-16 11:47:27 +0100 | [diff] [blame] | 274 | #define _REGION3_ENTRY_RO 0x200 /* page protection bit */ |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 275 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 276 | /* Bits in the segment table entry */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 277 | #define _SEGMENT_ENTRY_BITS 0xfffffffffffffe33UL |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 278 | #define _SEGMENT_ENTRY_BITS_LARGE 0xfffffffffff0ff33UL |
Heiko Carstens | ea81531 | 2013-03-21 12:50:39 +0100 | [diff] [blame] | 279 | #define _SEGMENT_ENTRY_ORIGIN_LARGE ~0xfffffUL /* large page address */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 280 | #define _SEGMENT_ENTRY_ORIGIN ~0x7ffUL/* segment table origin */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 281 | #define _SEGMENT_ENTRY_PROTECT 0x200 /* page protection bit */ |
| 282 | #define _SEGMENT_ENTRY_INVALID 0x20 /* invalid segment table entry */ |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 283 | |
| 284 | #define _SEGMENT_ENTRY (0) |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 285 | #define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INVALID) |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 286 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 287 | #define _SEGMENT_ENTRY_DIRTY 0x2000 /* SW segment dirty bit */ |
| 288 | #define _SEGMENT_ENTRY_YOUNG 0x1000 /* SW segment young bit */ |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 289 | #define _SEGMENT_ENTRY_LARGE 0x0400 /* STE-format control, large page */ |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 290 | #define _SEGMENT_ENTRY_READ 0x0002 /* SW segment read bit */ |
| 291 | #define _SEGMENT_ENTRY_WRITE 0x0001 /* SW segment write bit */ |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 292 | |
Martin Schwidefsky | 5614dd9 | 2015-04-22 14:47:42 +0200 | [diff] [blame] | 293 | #ifdef CONFIG_MEM_SOFT_DIRTY |
| 294 | #define _SEGMENT_ENTRY_SOFT_DIRTY 0x4000 /* SW segment soft dirty bit */ |
| 295 | #else |
| 296 | #define _SEGMENT_ENTRY_SOFT_DIRTY 0x0000 /* SW segment soft dirty bit */ |
| 297 | #endif |
| 298 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 299 | /* |
| 300 | * Segment table entry encoding (R = read-only, I = invalid, y = young bit): |
Martin Schwidefsky | 13c6a79 | 2016-02-10 16:47:14 +0100 | [diff] [blame] | 301 | * dy..R...I...rw |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 302 | * prot-none, clean, old 00..1...1...00 |
| 303 | * prot-none, clean, young 01..1...1...00 |
| 304 | * prot-none, dirty, old 10..1...1...00 |
| 305 | * prot-none, dirty, young 11..1...1...00 |
Martin Schwidefsky | 13c6a79 | 2016-02-10 16:47:14 +0100 | [diff] [blame] | 306 | * read-only, clean, old 00..1...1...10 |
| 307 | * read-only, clean, young 01..1...0...10 |
| 308 | * read-only, dirty, old 10..1...1...10 |
| 309 | * read-only, dirty, young 11..1...0...10 |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 310 | * read-write, clean, old 00..1...1...11 |
| 311 | * read-write, clean, young 01..1...0...11 |
| 312 | * read-write, dirty, old 10..0...1...11 |
| 313 | * read-write, dirty, young 11..0...0...11 |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 314 | * The segment table origin is used to distinguish empty (origin==0) from |
| 315 | * read-write, old segment table entries (origin!=0) |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 316 | * HW-bits: R read-only, I invalid |
| 317 | * SW-bits: y young, d dirty, r read, w write |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 318 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 319 | |
Martin Schwidefsky | 6c61cfe | 2011-06-06 14:14:42 +0200 | [diff] [blame] | 320 | /* Page status table bits for virtualization */ |
Martin Schwidefsky | 0d0dafc | 2013-05-17 14:41:33 +0200 | [diff] [blame] | 321 | #define PGSTE_ACC_BITS 0xf000000000000000UL |
| 322 | #define PGSTE_FP_BIT 0x0800000000000000UL |
| 323 | #define PGSTE_PCL_BIT 0x0080000000000000UL |
| 324 | #define PGSTE_HR_BIT 0x0040000000000000UL |
| 325 | #define PGSTE_HC_BIT 0x0020000000000000UL |
| 326 | #define PGSTE_GR_BIT 0x0004000000000000UL |
| 327 | #define PGSTE_GC_BIT 0x0002000000000000UL |
Martin Schwidefsky | 0a61b22 | 2013-10-18 12:03:41 +0200 | [diff] [blame] | 328 | #define PGSTE_UC_BIT 0x0000800000000000UL /* user dirty (migration) */ |
| 329 | #define PGSTE_IN_BIT 0x0000400000000000UL /* IPTE notify bit */ |
Martin Schwidefsky | 6c61cfe | 2011-06-06 14:14:42 +0200 | [diff] [blame] | 330 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 331 | /* Guest Page State used for virtualization */ |
| 332 | #define _PGSTE_GPS_ZERO 0x0000000080000000UL |
| 333 | #define _PGSTE_GPS_USAGE_MASK 0x0000000003000000UL |
| 334 | #define _PGSTE_GPS_USAGE_STABLE 0x0000000000000000UL |
| 335 | #define _PGSTE_GPS_USAGE_UNUSED 0x0000000001000000UL |
| 336 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 337 | /* |
| 338 | * A user page table pointer has the space-switch-event bit, the |
| 339 | * private-space-control bit and the storage-alteration-event-control |
| 340 | * bit set. A kernel page table pointer doesn't need them. |
| 341 | */ |
| 342 | #define _ASCE_USER_BITS (_ASCE_SPACE_SWITCH | _ASCE_PRIVATE_SPACE | \ |
| 343 | _ASCE_ALT_EVENT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | /* |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 346 | * Page protection definitions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 348 | #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_INVALID) |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 349 | #define PAGE_READ __pgprot(_PAGE_PRESENT | _PAGE_READ | \ |
| 350 | _PAGE_INVALID | _PAGE_PROTECT) |
| 351 | #define PAGE_WRITE __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ |
| 352 | _PAGE_INVALID | _PAGE_PROTECT) |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 353 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 354 | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ |
| 355 | _PAGE_YOUNG | _PAGE_DIRTY) |
| 356 | #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ |
| 357 | _PAGE_YOUNG | _PAGE_DIRTY) |
| 358 | #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_YOUNG | \ |
| 359 | _PAGE_PROTECT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | /* |
Martin Schwidefsky | 043d070 | 2011-05-23 10:24:23 +0200 | [diff] [blame] | 362 | * On s390 the page table entry has an invalid bit and a read-only bit. |
| 363 | * Read permission implies execute permission and write permission |
| 364 | * implies read permission. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | */ |
| 366 | /*xwr*/ |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 367 | #define __P000 PAGE_NONE |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 368 | #define __P001 PAGE_READ |
| 369 | #define __P010 PAGE_READ |
| 370 | #define __P011 PAGE_READ |
| 371 | #define __P100 PAGE_READ |
| 372 | #define __P101 PAGE_READ |
| 373 | #define __P110 PAGE_READ |
| 374 | #define __P111 PAGE_READ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 376 | #define __S000 PAGE_NONE |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 377 | #define __S001 PAGE_READ |
| 378 | #define __S010 PAGE_WRITE |
| 379 | #define __S011 PAGE_WRITE |
| 380 | #define __S100 PAGE_READ |
| 381 | #define __S101 PAGE_READ |
| 382 | #define __S110 PAGE_WRITE |
| 383 | #define __S111 PAGE_WRITE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 385 | /* |
| 386 | * Segment entry (large page) protection definitions. |
| 387 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 388 | #define SEGMENT_NONE __pgprot(_SEGMENT_ENTRY_INVALID | \ |
| 389 | _SEGMENT_ENTRY_PROTECT) |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 390 | #define SEGMENT_READ __pgprot(_SEGMENT_ENTRY_PROTECT | \ |
| 391 | _SEGMENT_ENTRY_READ) |
| 392 | #define SEGMENT_WRITE __pgprot(_SEGMENT_ENTRY_READ | \ |
| 393 | _SEGMENT_ENTRY_WRITE) |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 394 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 395 | static inline int mm_has_pgste(struct mm_struct *mm) |
| 396 | { |
| 397 | #ifdef CONFIG_PGSTE |
| 398 | if (unlikely(mm->context.has_pgste)) |
| 399 | return 1; |
| 400 | #endif |
| 401 | return 0; |
| 402 | } |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 403 | |
Martin Schwidefsky | 0b46e0a | 2015-04-15 13:23:26 +0200 | [diff] [blame] | 404 | static inline int mm_alloc_pgste(struct mm_struct *mm) |
| 405 | { |
| 406 | #ifdef CONFIG_PGSTE |
| 407 | if (unlikely(mm->context.alloc_pgste)) |
| 408 | return 1; |
| 409 | #endif |
| 410 | return 0; |
| 411 | } |
| 412 | |
Dominik Dingel | 2faee8f | 2014-10-23 12:08:38 +0200 | [diff] [blame] | 413 | /* |
| 414 | * In the case that a guest uses storage keys |
| 415 | * faults should no longer be backed by zero pages |
| 416 | */ |
| 417 | #define mm_forbids_zeropage mm_use_skey |
Dominik Dingel | 65eef335 | 2014-01-14 15:02:11 +0100 | [diff] [blame] | 418 | static inline int mm_use_skey(struct mm_struct *mm) |
| 419 | { |
| 420 | #ifdef CONFIG_PGSTE |
| 421 | if (mm->context.use_skey) |
| 422 | return 1; |
| 423 | #endif |
| 424 | return 0; |
| 425 | } |
| 426 | |
Heiko Carstens | 4ccccc5 | 2016-05-14 10:46:33 +0200 | [diff] [blame^] | 427 | static inline void csp(unsigned int *ptr, unsigned int old, unsigned int new) |
| 428 | { |
| 429 | register unsigned long reg2 asm("2") = old; |
| 430 | register unsigned long reg3 asm("3") = new; |
| 431 | unsigned long address = (unsigned long)ptr | 1; |
| 432 | |
| 433 | asm volatile( |
| 434 | " csp %0,%3" |
| 435 | : "+d" (reg2), "+m" (*ptr) |
| 436 | : "d" (reg3), "d" (address) |
| 437 | : "cc"); |
| 438 | } |
| 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | /* |
| 441 | * pgd/pmd/pte query functions |
| 442 | */ |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 443 | static inline int pgd_present(pgd_t pgd) |
| 444 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 445 | if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2) |
| 446 | return 1; |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 447 | return (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) != 0UL; |
| 448 | } |
| 449 | |
| 450 | static inline int pgd_none(pgd_t pgd) |
| 451 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 452 | if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2) |
| 453 | return 0; |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 454 | return (pgd_val(pgd) & _REGION_ENTRY_INVALID) != 0UL; |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | static inline int pgd_bad(pgd_t pgd) |
| 458 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 459 | /* |
| 460 | * With dynamic page table levels the pgd can be a region table |
| 461 | * entry or a segment table entry. Check for the bit that are |
| 462 | * invalid for either table entry. |
| 463 | */ |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 464 | unsigned long mask = |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 465 | ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID & |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 466 | ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH; |
| 467 | return (pgd_val(pgd) & mask) != 0; |
| 468 | } |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 469 | |
| 470 | static inline int pud_present(pud_t pud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 472 | if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3) |
| 473 | return 1; |
Martin Schwidefsky | 0d01792 | 2007-12-17 16:25:48 +0100 | [diff] [blame] | 474 | return (pud_val(pud) & _REGION_ENTRY_ORIGIN) != 0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 477 | static inline int pud_none(pud_t pud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 479 | if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3) |
| 480 | return 0; |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 481 | return (pud_val(pud) & _REGION_ENTRY_INVALID) != 0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | |
Heiko Carstens | 18da236 | 2012-10-08 09:18:26 +0200 | [diff] [blame] | 484 | static inline int pud_large(pud_t pud) |
| 485 | { |
| 486 | if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) != _REGION_ENTRY_TYPE_R3) |
| 487 | return 0; |
| 488 | return !!(pud_val(pud) & _REGION3_ENTRY_LARGE); |
| 489 | } |
| 490 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 491 | static inline int pud_bad(pud_t pud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 493 | /* |
| 494 | * With dynamic page table levels the pud can be a region table |
| 495 | * entry or a segment table entry. Check for the bit that are |
| 496 | * invalid for either table entry. |
| 497 | */ |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 498 | unsigned long mask = |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 499 | ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID & |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 500 | ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH; |
| 501 | return (pud_val(pud) & mask) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 504 | static inline int pmd_present(pmd_t pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 506 | return pmd_val(pmd) != _SEGMENT_ENTRY_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 509 | static inline int pmd_none(pmd_t pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 511 | return pmd_val(pmd) == _SEGMENT_ENTRY_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Heiko Carstens | 378b1e7 | 2012-10-01 12:58:34 +0200 | [diff] [blame] | 514 | static inline int pmd_large(pmd_t pmd) |
| 515 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 516 | return (pmd_val(pmd) & _SEGMENT_ENTRY_LARGE) != 0; |
Heiko Carstens | 378b1e7 | 2012-10-01 12:58:34 +0200 | [diff] [blame] | 517 | } |
| 518 | |
Martin Schwidefsky | 7cded34 | 2015-05-13 14:33:22 +0200 | [diff] [blame] | 519 | static inline unsigned long pmd_pfn(pmd_t pmd) |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 520 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 521 | unsigned long origin_mask; |
| 522 | |
| 523 | origin_mask = _SEGMENT_ENTRY_ORIGIN; |
| 524 | if (pmd_large(pmd)) |
| 525 | origin_mask = _SEGMENT_ENTRY_ORIGIN_LARGE; |
| 526 | return (pmd_val(pmd) & origin_mask) >> PAGE_SHIFT; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 527 | } |
| 528 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 529 | static inline int pmd_bad(pmd_t pmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 531 | if (pmd_large(pmd)) |
| 532 | return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS_LARGE) != 0; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 533 | return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
| 535 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 536 | #define __HAVE_ARCH_PMD_WRITE |
| 537 | static inline int pmd_write(pmd_t pmd) |
| 538 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 539 | return (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE) != 0; |
| 540 | } |
| 541 | |
| 542 | static inline int pmd_dirty(pmd_t pmd) |
| 543 | { |
| 544 | int dirty = 1; |
| 545 | if (pmd_large(pmd)) |
| 546 | dirty = (pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY) != 0; |
| 547 | return dirty; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | static inline int pmd_young(pmd_t pmd) |
| 551 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 552 | int young = 1; |
| 553 | if (pmd_large(pmd)) |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 554 | young = (pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG) != 0; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 555 | return young; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 556 | } |
| 557 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 558 | static inline int pte_present(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 560 | /* Bit pattern: (pte & 0x001) == 0x001 */ |
| 561 | return (pte_val(pte) & _PAGE_PRESENT) != 0; |
| 562 | } |
| 563 | |
| 564 | static inline int pte_none(pte_t pte) |
| 565 | { |
| 566 | /* Bit pattern: pte == 0x400 */ |
| 567 | return pte_val(pte) == _PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | } |
| 569 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 570 | static inline int pte_swap(pte_t pte) |
| 571 | { |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 572 | /* Bit pattern: (pte & 0x201) == 0x200 */ |
| 573 | return (pte_val(pte) & (_PAGE_PROTECT | _PAGE_PRESENT)) |
| 574 | == _PAGE_PROTECT; |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 575 | } |
| 576 | |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 577 | static inline int pte_special(pte_t pte) |
| 578 | { |
Nick Piggin | a08cb62 | 2008-04-28 02:13:03 -0700 | [diff] [blame] | 579 | return (pte_val(pte) & _PAGE_SPECIAL); |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 582 | #define __HAVE_ARCH_PTE_SAME |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 583 | static inline int pte_same(pte_t a, pte_t b) |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 584 | { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 585 | return pte_val(a) == pte_val(b); |
Christian Borntraeger | 5b7baf0 | 2008-03-25 18:47:12 +0100 | [diff] [blame] | 586 | } |
| 587 | |
Martin Schwidefsky | b54565b | 2014-09-23 14:01:34 +0200 | [diff] [blame] | 588 | #ifdef CONFIG_NUMA_BALANCING |
| 589 | static inline int pte_protnone(pte_t pte) |
| 590 | { |
| 591 | return pte_present(pte) && !(pte_val(pte) & _PAGE_READ); |
| 592 | } |
| 593 | |
| 594 | static inline int pmd_protnone(pmd_t pmd) |
| 595 | { |
| 596 | /* pmd_large(pmd) implies pmd_present(pmd) */ |
| 597 | return pmd_large(pmd) && !(pmd_val(pmd) & _SEGMENT_ENTRY_READ); |
| 598 | } |
| 599 | #endif |
| 600 | |
Martin Schwidefsky | 5614dd9 | 2015-04-22 14:47:42 +0200 | [diff] [blame] | 601 | static inline int pte_soft_dirty(pte_t pte) |
| 602 | { |
| 603 | return pte_val(pte) & _PAGE_SOFT_DIRTY; |
| 604 | } |
| 605 | #define pte_swp_soft_dirty pte_soft_dirty |
| 606 | |
| 607 | static inline pte_t pte_mksoft_dirty(pte_t pte) |
| 608 | { |
| 609 | pte_val(pte) |= _PAGE_SOFT_DIRTY; |
| 610 | return pte; |
| 611 | } |
| 612 | #define pte_swp_mksoft_dirty pte_mksoft_dirty |
| 613 | |
| 614 | static inline pte_t pte_clear_soft_dirty(pte_t pte) |
| 615 | { |
| 616 | pte_val(pte) &= ~_PAGE_SOFT_DIRTY; |
| 617 | return pte; |
| 618 | } |
| 619 | #define pte_swp_clear_soft_dirty pte_clear_soft_dirty |
| 620 | |
| 621 | static inline int pmd_soft_dirty(pmd_t pmd) |
| 622 | { |
| 623 | return pmd_val(pmd) & _SEGMENT_ENTRY_SOFT_DIRTY; |
| 624 | } |
| 625 | |
| 626 | static inline pmd_t pmd_mksoft_dirty(pmd_t pmd) |
| 627 | { |
| 628 | pmd_val(pmd) |= _SEGMENT_ENTRY_SOFT_DIRTY; |
| 629 | return pmd; |
| 630 | } |
| 631 | |
| 632 | static inline pmd_t pmd_clear_soft_dirty(pmd_t pmd) |
| 633 | { |
| 634 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_SOFT_DIRTY; |
| 635 | return pmd; |
| 636 | } |
| 637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | /* |
| 639 | * query functions pte_write/pte_dirty/pte_young only work if |
| 640 | * pte_present() is true. Undefined behaviour if not.. |
| 641 | */ |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 642 | static inline int pte_write(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 644 | return (pte_val(pte) & _PAGE_WRITE) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 647 | static inline int pte_dirty(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 649 | return (pte_val(pte) & _PAGE_DIRTY) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 652 | static inline int pte_young(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 654 | return (pte_val(pte) & _PAGE_YOUNG) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | } |
| 656 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 657 | #define __HAVE_ARCH_PTE_UNUSED |
| 658 | static inline int pte_unused(pte_t pte) |
| 659 | { |
| 660 | return pte_val(pte) & _PAGE_UNUSED; |
| 661 | } |
| 662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | /* |
| 664 | * pgd/pmd/pte modification functions |
| 665 | */ |
| 666 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 667 | static inline void pgd_clear(pgd_t *pgd) |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 668 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 669 | if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2) |
| 670 | pgd_val(*pgd) = _REGION2_ENTRY_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | } |
| 672 | |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 673 | static inline void pud_clear(pud_t *pud) |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 674 | { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 675 | if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3) |
| 676 | pud_val(*pud) = _REGION3_ENTRY_EMPTY; |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 677 | } |
Martin Schwidefsky | 146e4b3 | 2008-02-09 18:24:35 +0100 | [diff] [blame] | 678 | |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 679 | static inline void pmd_clear(pmd_t *pmdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 681 | pmd_val(*pmdp) = _SEGMENT_ENTRY_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | } |
| 683 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 684 | 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] | 685 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 686 | pte_val(*ptep) = _PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | /* |
| 690 | * The following pte modification functions only work if |
| 691 | * pte_present() is true. Undefined behaviour if not.. |
| 692 | */ |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 693 | static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | { |
Nick Piggin | 138c902 | 2008-07-08 11:31:06 +0200 | [diff] [blame] | 695 | pte_val(pte) &= _PAGE_CHG_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | pte_val(pte) |= pgprot_val(newprot); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 697 | /* |
| 698 | * newprot for PAGE_NONE, PAGE_READ and PAGE_WRITE has the |
| 699 | * invalid bit set, clear it again for readable, young pages |
| 700 | */ |
| 701 | if ((pte_val(pte) & _PAGE_YOUNG) && (pte_val(pte) & _PAGE_READ)) |
| 702 | pte_val(pte) &= ~_PAGE_INVALID; |
| 703 | /* |
| 704 | * newprot for PAGE_READ and PAGE_WRITE has the page protection |
| 705 | * bit set, clear it again for writable, dirty pages |
| 706 | */ |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 707 | if ((pte_val(pte) & _PAGE_DIRTY) && (pte_val(pte) & _PAGE_WRITE)) |
| 708 | pte_val(pte) &= ~_PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | return pte; |
| 710 | } |
| 711 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 712 | static inline pte_t pte_wrprotect(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 714 | pte_val(pte) &= ~_PAGE_WRITE; |
| 715 | pte_val(pte) |= _PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | return pte; |
| 717 | } |
| 718 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 719 | static inline pte_t pte_mkwrite(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 721 | pte_val(pte) |= _PAGE_WRITE; |
| 722 | if (pte_val(pte) & _PAGE_DIRTY) |
| 723 | pte_val(pte) &= ~_PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | return pte; |
| 725 | } |
| 726 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 727 | static inline pte_t pte_mkclean(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 729 | pte_val(pte) &= ~_PAGE_DIRTY; |
| 730 | pte_val(pte) |= _PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | return pte; |
| 732 | } |
| 733 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 734 | static inline pte_t pte_mkdirty(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { |
Martin Schwidefsky | 5614dd9 | 2015-04-22 14:47:42 +0200 | [diff] [blame] | 736 | pte_val(pte) |= _PAGE_DIRTY | _PAGE_SOFT_DIRTY; |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 737 | if (pte_val(pte) & _PAGE_WRITE) |
| 738 | pte_val(pte) &= ~_PAGE_PROTECT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | return pte; |
| 740 | } |
| 741 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 742 | static inline pte_t pte_mkold(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 744 | pte_val(pte) &= ~_PAGE_YOUNG; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 745 | pte_val(pte) |= _PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | return pte; |
| 747 | } |
| 748 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 749 | static inline pte_t pte_mkyoung(pte_t pte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 751 | pte_val(pte) |= _PAGE_YOUNG; |
| 752 | if (pte_val(pte) & _PAGE_READ) |
| 753 | pte_val(pte) &= ~_PAGE_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | return pte; |
| 755 | } |
| 756 | |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 757 | static inline pte_t pte_mkspecial(pte_t pte) |
| 758 | { |
Nick Piggin | a08cb62 | 2008-04-28 02:13:03 -0700 | [diff] [blame] | 759 | pte_val(pte) |= _PAGE_SPECIAL; |
Nick Piggin | 7e67513 | 2008-04-28 02:13:00 -0700 | [diff] [blame] | 760 | return pte; |
| 761 | } |
| 762 | |
Heiko Carstens | 84afdce | 2010-10-25 16:10:36 +0200 | [diff] [blame] | 763 | #ifdef CONFIG_HUGETLB_PAGE |
| 764 | static inline pte_t pte_mkhuge(pte_t pte) |
| 765 | { |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 766 | pte_val(pte) |= _PAGE_LARGE; |
Heiko Carstens | 84afdce | 2010-10-25 16:10:36 +0200 | [diff] [blame] | 767 | return pte; |
| 768 | } |
| 769 | #endif |
| 770 | |
Gerald Schaefer | 9282ed9 | 2006-09-20 15:59:37 +0200 | [diff] [blame] | 771 | static inline void __ptep_ipte(unsigned long address, pte_t *ptep) |
| 772 | { |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 773 | unsigned long pto = (unsigned long) ptep; |
| 774 | |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 775 | /* Invalidation + global TLB flush for the pte */ |
| 776 | asm volatile( |
| 777 | " ipte %2,%3" |
| 778 | : "=m" (*ptep) : "m" (*ptep), "a" (pto), "a" (address)); |
| 779 | } |
| 780 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 781 | static inline void __ptep_ipte_local(unsigned long address, pte_t *ptep) |
| 782 | { |
| 783 | unsigned long pto = (unsigned long) ptep; |
| 784 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 785 | /* Invalidation + local TLB flush for the pte */ |
| 786 | asm volatile( |
| 787 | " .insn rrf,0xb2210000,%2,%3,0,1" |
| 788 | : "=m" (*ptep) : "m" (*ptep), "a" (pto), "a" (address)); |
| 789 | } |
| 790 | |
Heiko Carstens | cfb0b24 | 2014-09-23 21:29:20 +0200 | [diff] [blame] | 791 | static inline void __ptep_ipte_range(unsigned long address, int nr, pte_t *ptep) |
| 792 | { |
| 793 | unsigned long pto = (unsigned long) ptep; |
| 794 | |
Heiko Carstens | cfb0b24 | 2014-09-23 21:29:20 +0200 | [diff] [blame] | 795 | /* Invalidate a range of ptes + global TLB flush of the ptes */ |
| 796 | do { |
| 797 | asm volatile( |
| 798 | " .insn rrf,0xb2210000,%2,%0,%1,0" |
| 799 | : "+a" (address), "+a" (nr) : "a" (pto) : "memory"); |
| 800 | } while (nr != 255); |
| 801 | } |
| 802 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 803 | /* |
| 804 | * This is hard to understand. ptep_get_and_clear and ptep_clear_flush |
| 805 | * both clear the TLB for the unmapped pte. The reason is that |
| 806 | * ptep_get_and_clear is used in common code (e.g. change_pte_range) |
| 807 | * to modify an active pte. The sequence is |
| 808 | * 1) ptep_get_and_clear |
| 809 | * 2) set_pte_at |
| 810 | * 3) flush_tlb_range |
| 811 | * On s390 the tlb needs to get flushed with the modification of the pte |
| 812 | * if the pte is active. The only way how this can be implemented is to |
| 813 | * have ptep_get_and_clear do the tlb flush. In exchange flush_tlb_range |
| 814 | * is a nop. |
| 815 | */ |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 816 | pte_t ptep_xchg_direct(struct mm_struct *, unsigned long, pte_t *, pte_t); |
| 817 | pte_t ptep_xchg_lazy(struct mm_struct *, unsigned long, pte_t *, pte_t); |
| 818 | |
| 819 | #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG |
| 820 | static inline int ptep_test_and_clear_young(struct vm_area_struct *vma, |
| 821 | unsigned long addr, pte_t *ptep) |
| 822 | { |
| 823 | pte_t pte = *ptep; |
| 824 | |
| 825 | pte = ptep_xchg_direct(vma->vm_mm, addr, ptep, pte_mkold(pte)); |
| 826 | return pte_young(pte); |
| 827 | } |
| 828 | |
| 829 | #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH |
| 830 | static inline int ptep_clear_flush_young(struct vm_area_struct *vma, |
| 831 | unsigned long address, pte_t *ptep) |
| 832 | { |
| 833 | return ptep_test_and_clear_young(vma, address, ptep); |
| 834 | } |
| 835 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 836 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 837 | static inline pte_t ptep_get_and_clear(struct mm_struct *mm, |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 838 | unsigned long addr, pte_t *ptep) |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 839 | { |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 840 | return ptep_xchg_lazy(mm, addr, ptep, __pte(_PAGE_INVALID)); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | #define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 844 | pte_t ptep_modify_prot_start(struct mm_struct *, unsigned long, pte_t *); |
| 845 | void ptep_modify_prot_commit(struct mm_struct *, unsigned long, pte_t *, pte_t); |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 846 | |
| 847 | #define __HAVE_ARCH_PTEP_CLEAR_FLUSH |
Martin Schwidefsky | f0e47c2 | 2007-07-17 04:03:03 -0700 | [diff] [blame] | 848 | static inline pte_t ptep_clear_flush(struct vm_area_struct *vma, |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 849 | unsigned long addr, pte_t *ptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | { |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 851 | return ptep_xchg_direct(vma->vm_mm, addr, ptep, __pte(_PAGE_INVALID)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | } |
| 853 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 854 | /* |
| 855 | * The batched pte unmap code uses ptep_get_and_clear_full to clear the |
| 856 | * ptes. Here an optimization is possible. tlb_gather_mmu flushes all |
| 857 | * tlbs of an mm if it can guarantee that the ptes of the mm_struct |
| 858 | * cannot be accessed while the batched unmap is running. In this case |
| 859 | * full==1 and a simple pte_clear is enough. See tlb.h. |
| 860 | */ |
| 861 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL |
| 862 | static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 863 | unsigned long addr, |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 864 | pte_t *ptep, int full) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | { |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 866 | if (full) { |
| 867 | pte_t pte = *ptep; |
| 868 | *ptep = __pte(_PAGE_INVALID); |
| 869 | return pte; |
Martin Schwidefsky | d338363 | 2013-04-17 10:53:39 +0200 | [diff] [blame] | 870 | } |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 871 | return ptep_xchg_lazy(mm, addr, ptep, __pte(_PAGE_INVALID)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
| 873 | |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 874 | #define __HAVE_ARCH_PTEP_SET_WRPROTECT |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 875 | static inline void ptep_set_wrprotect(struct mm_struct *mm, |
| 876 | unsigned long addr, pte_t *ptep) |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 877 | { |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 878 | pte_t pte = *ptep; |
| 879 | |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 880 | if (pte_write(pte)) |
| 881 | ptep_xchg_lazy(mm, addr, ptep, pte_wrprotect(pte)); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 882 | } |
Martin Schwidefsky | ba8a922 | 2007-10-22 12:52:44 +0200 | [diff] [blame] | 883 | |
| 884 | #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 885 | static inline int ptep_set_access_flags(struct vm_area_struct *vma, |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 886 | unsigned long addr, pte_t *ptep, |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 887 | pte_t entry, int dirty) |
| 888 | { |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 889 | if (pte_same(*ptep, entry)) |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 890 | return 0; |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 891 | ptep_xchg_direct(vma->vm_mm, addr, ptep, entry); |
Martin Schwidefsky | b2fa47e | 2011-05-23 10:24:40 +0200 | [diff] [blame] | 892 | return 1; |
| 893 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
Martin Schwidefsky | 1e133ab | 2016-03-08 11:49:57 +0100 | [diff] [blame] | 895 | /* |
| 896 | * Additional functions to handle KVM guest page tables |
| 897 | */ |
| 898 | void ptep_set_pte_at(struct mm_struct *mm, unsigned long addr, |
| 899 | pte_t *ptep, pte_t entry); |
| 900 | void ptep_set_notify(struct mm_struct *mm, unsigned long addr, pte_t *ptep); |
| 901 | void ptep_notify(struct mm_struct *mm, unsigned long addr, pte_t *ptep); |
| 902 | void ptep_zap_unused(struct mm_struct *mm, unsigned long addr, |
| 903 | pte_t *ptep , int reset); |
| 904 | void ptep_zap_key(struct mm_struct *mm, unsigned long addr, pte_t *ptep); |
| 905 | |
| 906 | bool test_and_clear_guest_dirty(struct mm_struct *mm, unsigned long address); |
| 907 | int set_guest_storage_key(struct mm_struct *mm, unsigned long addr, |
| 908 | unsigned char key, bool nq); |
| 909 | unsigned char get_guest_storage_key(struct mm_struct *mm, unsigned long addr); |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 910 | |
| 911 | /* |
| 912 | * Certain architectures need to do special things when PTEs |
| 913 | * within a page table are directly modified. Thus, the following |
| 914 | * hook is made available. |
| 915 | */ |
| 916 | static inline void set_pte_at(struct mm_struct *mm, unsigned long addr, |
| 917 | pte_t *ptep, pte_t entry) |
| 918 | { |
| 919 | if (mm_has_pgste(mm)) |
Martin Schwidefsky | 1e133ab | 2016-03-08 11:49:57 +0100 | [diff] [blame] | 920 | ptep_set_pte_at(mm, addr, ptep, entry); |
Martin Schwidefsky | ebde765 | 2016-03-08 11:08:09 +0100 | [diff] [blame] | 921 | else |
| 922 | *ptep = entry; |
| 923 | } |
| 924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | * Conversion functions: convert a page and protection to a page entry, |
| 927 | * and a page entry and page directory to the page they refer to. |
| 928 | */ |
| 929 | static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot) |
| 930 | { |
| 931 | pte_t __pte; |
| 932 | pte_val(__pte) = physpage + pgprot_val(pgprot); |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 933 | return pte_mkyoung(__pte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | } |
| 935 | |
Heiko Carstens | 2dcea57 | 2006-09-29 01:58:41 -0700 | [diff] [blame] | 936 | static inline pte_t mk_pte(struct page *page, pgprot_t pgprot) |
| 937 | { |
Heiko Carstens | 0b2b6e1d | 2006-10-04 20:02:23 +0200 | [diff] [blame] | 938 | unsigned long physpage = page_to_phys(page); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 939 | pte_t __pte = mk_pte_phys(physpage, pgprot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 941 | if (pte_write(__pte) && PageDirty(page)) |
| 942 | __pte = pte_mkdirty(__pte); |
Martin Schwidefsky | abf09be | 2012-11-07 13:17:37 +0100 | [diff] [blame] | 943 | return __pte; |
Heiko Carstens | 2dcea57 | 2006-09-29 01:58:41 -0700 | [diff] [blame] | 944 | } |
| 945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 947 | #define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1)) |
| 948 | #define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1)) |
| 949 | #define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 951 | #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | #define pgd_offset_k(address) pgd_offset(&init_mm, address) |
| 953 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 954 | #define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN) |
| 955 | #define pud_deref(pud) (pud_val(pud) & _REGION_ENTRY_ORIGIN) |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 956 | #define pgd_deref(pgd) (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 957 | |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 958 | static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address) |
| 959 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 960 | pud_t *pud = (pud_t *) pgd; |
| 961 | if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2) |
| 962 | pud = (pud_t *) pgd_deref(*pgd); |
Martin Schwidefsky | 5a216a2 | 2008-02-09 18:24:36 +0100 | [diff] [blame] | 963 | return pud + pud_index(address); |
| 964 | } |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 965 | |
| 966 | static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address) |
| 967 | { |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 968 | pmd_t *pmd = (pmd_t *) pud; |
| 969 | if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3) |
| 970 | pmd = (pmd_t *) pud_deref(*pud); |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 971 | return pmd + pmd_index(address); |
| 972 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 974 | #define pfn_pte(pfn,pgprot) mk_pte_phys(__pa((pfn) << PAGE_SHIFT),(pgprot)) |
| 975 | #define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT) |
| 976 | #define pte_page(x) pfn_to_page(pte_pfn(x)) |
| 977 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 978 | #define pmd_page(pmd) pfn_to_page(pmd_pfn(pmd)) |
Martin Schwidefsky | 190a1d7 | 2007-10-22 12:52:48 +0200 | [diff] [blame] | 979 | |
| 980 | /* Find an entry in the lowest level page table.. */ |
| 981 | #define pte_offset(pmd, addr) ((pte_t *) pmd_deref(*(pmd)) + pte_index(addr)) |
| 982 | #define pte_offset_kernel(pmd, address) pte_offset(pmd,address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | #define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | #define pte_unmap(pte) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 986 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLB_PAGE) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 987 | static inline unsigned long massage_pgprot_pmd(pgprot_t pgprot) |
| 988 | { |
Gerald Schaefer | d8e7a33 | 2012-10-25 17:42:50 +0200 | [diff] [blame] | 989 | /* |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 990 | * pgprot is PAGE_NONE, PAGE_READ, or PAGE_WRITE (see __Pxxx / __Sxxx) |
Gerald Schaefer | d8e7a33 | 2012-10-25 17:42:50 +0200 | [diff] [blame] | 991 | * Convert to segment table entry format. |
| 992 | */ |
| 993 | if (pgprot_val(pgprot) == pgprot_val(PAGE_NONE)) |
| 994 | return pgprot_val(SEGMENT_NONE); |
Martin Schwidefsky | e509861 | 2013-07-23 20:57:57 +0200 | [diff] [blame] | 995 | if (pgprot_val(pgprot) == pgprot_val(PAGE_READ)) |
| 996 | return pgprot_val(SEGMENT_READ); |
| 997 | return pgprot_val(SEGMENT_WRITE); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1000 | static inline pmd_t pmd_wrprotect(pmd_t pmd) |
| 1001 | { |
| 1002 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_WRITE; |
| 1003 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
| 1004 | return pmd; |
| 1005 | } |
| 1006 | |
| 1007 | static inline pmd_t pmd_mkwrite(pmd_t pmd) |
| 1008 | { |
| 1009 | pmd_val(pmd) |= _SEGMENT_ENTRY_WRITE; |
| 1010 | if (pmd_large(pmd) && !(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY)) |
| 1011 | return pmd; |
| 1012 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT; |
| 1013 | return pmd; |
| 1014 | } |
| 1015 | |
| 1016 | static inline pmd_t pmd_mkclean(pmd_t pmd) |
| 1017 | { |
| 1018 | if (pmd_large(pmd)) { |
| 1019 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_DIRTY; |
| 1020 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
| 1021 | } |
| 1022 | return pmd; |
| 1023 | } |
| 1024 | |
| 1025 | static inline pmd_t pmd_mkdirty(pmd_t pmd) |
| 1026 | { |
| 1027 | if (pmd_large(pmd)) { |
Martin Schwidefsky | 5614dd9 | 2015-04-22 14:47:42 +0200 | [diff] [blame] | 1028 | pmd_val(pmd) |= _SEGMENT_ENTRY_DIRTY | |
| 1029 | _SEGMENT_ENTRY_SOFT_DIRTY; |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1030 | if (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE) |
| 1031 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT; |
| 1032 | } |
| 1033 | return pmd; |
| 1034 | } |
| 1035 | |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1036 | static inline pmd_t pmd_mkyoung(pmd_t pmd) |
| 1037 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1038 | if (pmd_large(pmd)) { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1039 | pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG; |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1040 | if (pmd_val(pmd) & _SEGMENT_ENTRY_READ) |
| 1041 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_INVALID; |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1042 | } |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1043 | return pmd; |
| 1044 | } |
| 1045 | |
| 1046 | static inline pmd_t pmd_mkold(pmd_t pmd) |
| 1047 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1048 | if (pmd_large(pmd)) { |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1049 | pmd_val(pmd) &= ~_SEGMENT_ENTRY_YOUNG; |
| 1050 | pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID; |
| 1051 | } |
Martin Schwidefsky | 0944fe3 | 2013-07-23 22:11:42 +0200 | [diff] [blame] | 1052 | return pmd; |
| 1053 | } |
| 1054 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1055 | static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot) |
| 1056 | { |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1057 | if (pmd_large(pmd)) { |
| 1058 | pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN_LARGE | |
| 1059 | _SEGMENT_ENTRY_DIRTY | _SEGMENT_ENTRY_YOUNG | |
Kirill A. Shutemov | fecffad | 2016-01-15 16:53:24 -0800 | [diff] [blame] | 1060 | _SEGMENT_ENTRY_LARGE | _SEGMENT_ENTRY_SOFT_DIRTY; |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1061 | pmd_val(pmd) |= massage_pgprot_pmd(newprot); |
| 1062 | if (!(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY)) |
| 1063 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
| 1064 | if (!(pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG)) |
| 1065 | pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID; |
| 1066 | return pmd; |
| 1067 | } |
| 1068 | pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1069 | pmd_val(pmd) |= massage_pgprot_pmd(newprot); |
| 1070 | return pmd; |
| 1071 | } |
| 1072 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1073 | 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] | 1074 | { |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1075 | pmd_t __pmd; |
| 1076 | pmd_val(__pmd) = physpage + massage_pgprot_pmd(pgprot); |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1077 | return __pmd; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1080 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLB_PAGE */ |
| 1081 | |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1082 | static inline void __pmdp_csp(pmd_t *pmdp) |
| 1083 | { |
Heiko Carstens | 4ccccc5 | 2016-05-14 10:46:33 +0200 | [diff] [blame^] | 1084 | csp((unsigned int *)pmdp + 1, pmd_val(*pmdp), |
| 1085 | pmd_val(*pmdp) | _SEGMENT_ENTRY_INVALID); |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 1086 | } |
| 1087 | |
| 1088 | static inline void __pmdp_idte(unsigned long address, pmd_t *pmdp) |
| 1089 | { |
| 1090 | unsigned long sto; |
| 1091 | |
| 1092 | sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t); |
| 1093 | asm volatile( |
| 1094 | " .insn rrf,0xb98e0000,%2,%3,0,0" |
| 1095 | : "=m" (*pmdp) |
| 1096 | : "m" (*pmdp), "a" (sto), "a" ((address & HPAGE_MASK)) |
| 1097 | : "cc" ); |
| 1098 | } |
| 1099 | |
| 1100 | static inline void __pmdp_idte_local(unsigned long address, pmd_t *pmdp) |
| 1101 | { |
| 1102 | unsigned long sto; |
| 1103 | |
| 1104 | sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t); |
| 1105 | asm volatile( |
| 1106 | " .insn rrf,0xb98e0000,%2,%3,0,1" |
| 1107 | : "=m" (*pmdp) |
| 1108 | : "m" (*pmdp), "a" (sto), "a" ((address & HPAGE_MASK)) |
| 1109 | : "cc" ); |
| 1110 | } |
| 1111 | |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1112 | pmd_t pmdp_xchg_direct(struct mm_struct *, unsigned long, pmd_t *, pmd_t); |
| 1113 | pmd_t pmdp_xchg_lazy(struct mm_struct *, unsigned long, pmd_t *, pmd_t); |
Martin Schwidefsky | 3eabaee | 2013-07-26 15:04:02 +0200 | [diff] [blame] | 1114 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1115 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 1116 | |
| 1117 | #define __HAVE_ARCH_PGTABLE_DEPOSIT |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1118 | void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp, |
| 1119 | pgtable_t pgtable); |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1120 | |
| 1121 | #define __HAVE_ARCH_PGTABLE_WITHDRAW |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1122 | pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp); |
| 1123 | |
| 1124 | #define __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS |
| 1125 | static inline int pmdp_set_access_flags(struct vm_area_struct *vma, |
| 1126 | unsigned long addr, pmd_t *pmdp, |
| 1127 | pmd_t entry, int dirty) |
| 1128 | { |
| 1129 | VM_BUG_ON(addr & ~HPAGE_MASK); |
| 1130 | |
| 1131 | entry = pmd_mkyoung(entry); |
| 1132 | if (dirty) |
| 1133 | entry = pmd_mkdirty(entry); |
| 1134 | if (pmd_val(*pmdp) == pmd_val(entry)) |
| 1135 | return 0; |
| 1136 | pmdp_xchg_direct(vma->vm_mm, addr, pmdp, entry); |
| 1137 | return 1; |
| 1138 | } |
| 1139 | |
| 1140 | #define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG |
| 1141 | static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma, |
| 1142 | unsigned long addr, pmd_t *pmdp) |
| 1143 | { |
| 1144 | pmd_t pmd = *pmdp; |
| 1145 | |
| 1146 | pmd = pmdp_xchg_direct(vma->vm_mm, addr, pmdp, pmd_mkold(pmd)); |
| 1147 | return pmd_young(pmd); |
| 1148 | } |
| 1149 | |
| 1150 | #define __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH |
| 1151 | static inline int pmdp_clear_flush_young(struct vm_area_struct *vma, |
| 1152 | unsigned long addr, pmd_t *pmdp) |
| 1153 | { |
| 1154 | VM_BUG_ON(addr & ~HPAGE_MASK); |
| 1155 | return pmdp_test_and_clear_young(vma, addr, pmdp); |
| 1156 | } |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1157 | |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1158 | static inline void set_pmd_at(struct mm_struct *mm, unsigned long addr, |
| 1159 | pmd_t *pmdp, pmd_t entry) |
| 1160 | { |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 1161 | *pmdp = entry; |
| 1162 | } |
| 1163 | |
| 1164 | static inline pmd_t pmd_mkhuge(pmd_t pmd) |
| 1165 | { |
| 1166 | pmd_val(pmd) |= _SEGMENT_ENTRY_LARGE; |
Martin Schwidefsky | 152125b | 2014-07-24 11:03:41 +0200 | [diff] [blame] | 1167 | pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG; |
| 1168 | pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT; |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1169 | return pmd; |
| 1170 | } |
| 1171 | |
Aneesh Kumar K.V | 8809aa2 | 2015-06-24 16:57:44 -0700 | [diff] [blame] | 1172 | #define __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR |
| 1173 | static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm, |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1174 | unsigned long addr, pmd_t *pmdp) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1175 | { |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1176 | return pmdp_xchg_direct(mm, addr, pmdp, __pmd(_SEGMENT_ENTRY_INVALID)); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
Aneesh Kumar K.V | 8809aa2 | 2015-06-24 16:57:44 -0700 | [diff] [blame] | 1179 | #define __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR_FULL |
| 1180 | static inline pmd_t pmdp_huge_get_and_clear_full(struct mm_struct *mm, |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1181 | unsigned long addr, |
Aneesh Kumar K.V | 8809aa2 | 2015-06-24 16:57:44 -0700 | [diff] [blame] | 1182 | pmd_t *pmdp, int full) |
Martin Schwidefsky | fcbe08d6 | 2014-10-24 10:52:29 +0200 | [diff] [blame] | 1183 | { |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1184 | if (full) { |
| 1185 | pmd_t pmd = *pmdp; |
| 1186 | *pmdp = __pmd(_SEGMENT_ENTRY_INVALID); |
| 1187 | return pmd; |
| 1188 | } |
| 1189 | return pmdp_xchg_lazy(mm, addr, pmdp, __pmd(_SEGMENT_ENTRY_INVALID)); |
Martin Schwidefsky | fcbe08d6 | 2014-10-24 10:52:29 +0200 | [diff] [blame] | 1190 | } |
| 1191 | |
Aneesh Kumar K.V | 8809aa2 | 2015-06-24 16:57:44 -0700 | [diff] [blame] | 1192 | #define __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH |
| 1193 | static inline pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma, |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1194 | unsigned long addr, pmd_t *pmdp) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1195 | { |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1196 | return pmdp_huge_get_and_clear(vma->vm_mm, addr, pmdp); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | #define __HAVE_ARCH_PMDP_INVALIDATE |
| 1200 | static inline void pmdp_invalidate(struct vm_area_struct *vma, |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1201 | unsigned long addr, pmd_t *pmdp) |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1202 | { |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1203 | pmdp_xchg_direct(vma->vm_mm, addr, pmdp, __pmd(_SEGMENT_ENTRY_INVALID)); |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
Gerald Schaefer | be32865 | 2013-01-21 16:48:07 +0100 | [diff] [blame] | 1206 | #define __HAVE_ARCH_PMDP_SET_WRPROTECT |
| 1207 | static inline void pmdp_set_wrprotect(struct mm_struct *mm, |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1208 | unsigned long addr, pmd_t *pmdp) |
Gerald Schaefer | be32865 | 2013-01-21 16:48:07 +0100 | [diff] [blame] | 1209 | { |
| 1210 | pmd_t pmd = *pmdp; |
| 1211 | |
Martin Schwidefsky | 227be79 | 2016-03-08 11:09:25 +0100 | [diff] [blame] | 1212 | if (pmd_write(pmd)) |
| 1213 | pmd = pmdp_xchg_lazy(mm, addr, pmdp, pmd_wrprotect(pmd)); |
Gerald Schaefer | be32865 | 2013-01-21 16:48:07 +0100 | [diff] [blame] | 1214 | } |
| 1215 | |
Aneesh Kumar K.V | f28b6ff | 2015-06-24 16:57:42 -0700 | [diff] [blame] | 1216 | static inline pmd_t pmdp_collapse_flush(struct vm_area_struct *vma, |
| 1217 | unsigned long address, |
| 1218 | pmd_t *pmdp) |
| 1219 | { |
Aneesh Kumar K.V | 8809aa2 | 2015-06-24 16:57:44 -0700 | [diff] [blame] | 1220 | return pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp); |
Aneesh Kumar K.V | f28b6ff | 2015-06-24 16:57:42 -0700 | [diff] [blame] | 1221 | } |
| 1222 | #define pmdp_collapse_flush pmdp_collapse_flush |
| 1223 | |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1224 | #define pfn_pmd(pfn, pgprot) mk_pmd_phys(__pa((pfn) << PAGE_SHIFT), (pgprot)) |
| 1225 | #define mk_pmd(page, pgprot) pfn_pmd(page_to_pfn(page), (pgprot)) |
| 1226 | |
| 1227 | static inline int pmd_trans_huge(pmd_t pmd) |
| 1228 | { |
| 1229 | return pmd_val(pmd) & _SEGMENT_ENTRY_LARGE; |
| 1230 | } |
| 1231 | |
Hugh Dickins | fd8cfd3 | 2016-05-19 17:13:00 -0700 | [diff] [blame] | 1232 | #define has_transparent_hugepage has_transparent_hugepage |
Gerald Schaefer | 1ae1c1d | 2012-10-08 16:30:24 -0700 | [diff] [blame] | 1233 | static inline int has_transparent_hugepage(void) |
| 1234 | { |
| 1235 | return MACHINE_HAS_HPAGE ? 1 : 0; |
| 1236 | } |
Gerald Schaefer | 75077af | 2012-10-08 16:30:15 -0700 | [diff] [blame] | 1237 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
| 1238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | * 64 bit swap entry format: |
| 1241 | * A page-table entry has some bits we have to treat in a special way. |
Geert Uytterhoeven | 4e0a641 | 2015-05-21 14:00:47 +0200 | [diff] [blame] | 1242 | * Bits 52 and bit 55 have to be zero, otherwise a specification |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | * exception will occur instead of a page translation exception. The |
Geert Uytterhoeven | 4e0a641 | 2015-05-21 14:00:47 +0200 | [diff] [blame] | 1244 | * specification exception has the bad habit not to store necessary |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | * information in the lowcore. |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 1246 | * Bits 54 and 63 are used to indicate the page type. |
| 1247 | * A swap pte is indicated by bit pattern (pte & 0x201) == 0x200 |
| 1248 | * This leaves the bits 0-51 and bits 56-62 to store type and offset. |
| 1249 | * We use the 5 bits from 57-61 for the type and the 52 bits from 0-51 |
| 1250 | * for the offset. |
| 1251 | * | offset |01100|type |00| |
| 1252 | * |0000000000111111111122222222223333333333444444444455|55555|55566|66| |
| 1253 | * |0123456789012345678901234567890123456789012345678901|23456|78901|23| |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | */ |
Heiko Carstens | 5a79859a | 2015-02-12 13:08:27 +0100 | [diff] [blame] | 1255 | |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 1256 | #define __SWP_OFFSET_MASK ((1UL << 52) - 1) |
| 1257 | #define __SWP_OFFSET_SHIFT 12 |
| 1258 | #define __SWP_TYPE_MASK ((1UL << 5) - 1) |
| 1259 | #define __SWP_TYPE_SHIFT 2 |
Heiko Carstens | 5a79859a | 2015-02-12 13:08:27 +0100 | [diff] [blame] | 1260 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 1261 | 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] | 1262 | { |
| 1263 | pte_t pte; |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 1264 | |
| 1265 | pte_val(pte) = _PAGE_INVALID | _PAGE_PROTECT; |
| 1266 | pte_val(pte) |= (offset & __SWP_OFFSET_MASK) << __SWP_OFFSET_SHIFT; |
| 1267 | pte_val(pte) |= (type & __SWP_TYPE_MASK) << __SWP_TYPE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | return pte; |
| 1269 | } |
| 1270 | |
Martin Schwidefsky | a1c843b | 2015-04-22 13:55:59 +0200 | [diff] [blame] | 1271 | static inline unsigned long __swp_type(swp_entry_t entry) |
| 1272 | { |
| 1273 | return (entry.val >> __SWP_TYPE_SHIFT) & __SWP_TYPE_MASK; |
| 1274 | } |
| 1275 | |
| 1276 | static inline unsigned long __swp_offset(swp_entry_t entry) |
| 1277 | { |
| 1278 | return (entry.val >> __SWP_OFFSET_SHIFT) & __SWP_OFFSET_MASK; |
| 1279 | } |
| 1280 | |
| 1281 | static inline swp_entry_t __swp_entry(unsigned long type, unsigned long offset) |
| 1282 | { |
| 1283 | return (swp_entry_t) { pte_val(mk_swap_pte(type, offset)) }; |
| 1284 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
| 1286 | #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) |
| 1287 | #define __swp_entry_to_pte(x) ((pte_t) { (x).val }) |
| 1288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | #endif /* !__ASSEMBLY__ */ |
| 1290 | |
| 1291 | #define kern_addr_valid(addr) (1) |
| 1292 | |
Heiko Carstens | 17f3458 | 2008-04-30 13:38:47 +0200 | [diff] [blame] | 1293 | extern int vmem_add_mapping(unsigned long start, unsigned long size); |
| 1294 | extern int vmem_remove_mapping(unsigned long start, unsigned long size); |
Carsten Otte | 402b086 | 2008-03-25 18:47:10 +0100 | [diff] [blame] | 1295 | extern int s390_enable_sie(void); |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 1296 | extern int s390_enable_skey(void); |
Dominik Dingel | a13cff3 | 2014-10-23 12:07:14 +0200 | [diff] [blame] | 1297 | extern void s390_reset_cmma(struct mm_struct *mm); |
Heiko Carstens | f4eb07c | 2006-12-08 15:56:07 +0100 | [diff] [blame] | 1298 | |
Martin Schwidefsky | 1f6b83e | 2015-01-14 17:51:17 +0100 | [diff] [blame] | 1299 | /* s390 has a private copy of get unmapped area to deal with cache synonyms */ |
| 1300 | #define HAVE_ARCH_UNMAPPED_AREA |
| 1301 | #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN |
| 1302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | /* |
| 1304 | * No page table caches to initialise |
| 1305 | */ |
Heiko Carstens | 765a0ca | 2013-03-23 10:29:01 +0100 | [diff] [blame] | 1306 | static inline void pgtable_cache_init(void) { } |
| 1307 | static inline void check_pgt_cache(void) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | #include <asm-generic/pgtable.h> |
| 1310 | |
| 1311 | #endif /* _S390_PAGE_H */ |