blob: bc5f520f6f871f5d3c2fa5426257718204bb5d32 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/pgtable.h
3 *
4 * S390 version
5 * Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Hartmut Penner (hp@de.ibm.com)
7 * Ulrich Weigand (weigand@de.ibm.com)
8 * Martin Schwidefsky (schwidefsky@de.ibm.com)
9 *
10 * Derived from "include/asm-i386/pgtable.h"
11 */
12
13#ifndef _ASM_S390_PGTABLE_H
14#define _ASM_S390_PGTABLE_H
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016/*
17 * The Linux memory management assumes a three-level page table setup. For
18 * s390 31 bit we "fold" the mid level into the top-level page table, so
19 * that we physically have the same two-level page table as the s390 mmu
20 * expects in 31 bit mode. For s390 64 bit we use three of the five levels
21 * the hardware provides (region first and region second tables are not
22 * used).
23 *
24 * The "pgd_xxx()" functions are trivial for a folded two-level
25 * setup: the pgd is never bad, and a pmd always exists (as it's folded
26 * into the pgd entry)
27 *
28 * This file contains the functions and defines necessary to modify and use
29 * the S390 page table tree.
30 */
31#ifndef __ASSEMBLY__
Heiko Carstens9789db02008-07-14 09:59:11 +020032#include <linux/sched.h>
Heiko Carstens2dcea572006-09-29 01:58:41 -070033#include <linux/mm_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/bug.h>
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +020035#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037extern pgd_t swapper_pg_dir[] __attribute__ ((aligned (4096)));
38extern void paging_init(void);
Heiko Carstens2b67fc42007-02-05 21:16:47 +010039extern void vmem_map_init(void);
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020040extern void fault_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * The S390 doesn't have any external MMU info: the kernel page
44 * tables contain all the necessary information.
45 */
Russell King4b3073e2009-12-18 16:40:18 +000046#define update_mmu_cache(vma, address, ptep) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020049 * ZERO_PAGE is a global shared page that is always zero; used
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * for zero-mapped memory areas etc..
51 */
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020052
53extern unsigned long empty_zero_page;
54extern 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))))
59
60#define is_zero_pfn is_zero_pfn
61static inline int is_zero_pfn(unsigned long pfn)
62{
63 extern unsigned long zero_pfn;
64 unsigned long offset_from_zero_pfn = pfn - zero_pfn;
65 return offset_from_zero_pfn <= (zero_page_mask >> PAGE_SHIFT);
66}
67
68#define my_zero_pfn(addr) page_to_pfn(ZERO_PAGE(addr))
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#endif /* !__ASSEMBLY__ */
71
72/*
73 * PMD_SHIFT determines the size of the area a second-level page
74 * table can map
75 * PGDIR_SHIFT determines what a third-level page table entry can map
76 */
77#ifndef __s390x__
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010078# define PMD_SHIFT 20
79# define PUD_SHIFT 20
80# define PGDIR_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#else /* __s390x__ */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010082# define PMD_SHIFT 20
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020083# define PUD_SHIFT 31
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010084# define PGDIR_SHIFT 42
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#endif /* __s390x__ */
86
87#define PMD_SIZE (1UL << PMD_SHIFT)
88#define PMD_MASK (~(PMD_SIZE-1))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020089#define PUD_SIZE (1UL << PUD_SHIFT)
90#define PUD_MASK (~(PUD_SIZE-1))
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010091#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
92#define PGDIR_MASK (~(PGDIR_SIZE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/*
95 * entries per page directory level: the S390 is two-level, so
96 * we don't really have any PMD directory physically.
97 * for S390 segment-table entries are combined to one PGD
98 * that leads to 1024 pte per pgd
99 */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100100#define PTRS_PER_PTE 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#ifndef __s390x__
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100102#define PTRS_PER_PMD 1
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100103#define PTRS_PER_PUD 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#else /* __s390x__ */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100105#define PTRS_PER_PMD 2048
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100106#define PTRS_PER_PUD 2048
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#endif /* __s390x__ */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100108#define PTRS_PER_PGD 2048
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Hugh Dickinsd455a362005-04-19 13:29:23 -0700110#define FIRST_USER_ADDRESS 0
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define pte_ERROR(e) \
113 printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e))
114#define pmd_ERROR(e) \
115 printk("%s:%d: bad pmd %p.\n", __FILE__, __LINE__, (void *) pmd_val(e))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200116#define pud_ERROR(e) \
117 printk("%s:%d: bad pud %p.\n", __FILE__, __LINE__, (void *) pud_val(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define pgd_ERROR(e) \
119 printk("%s:%d: bad pgd %p.\n", __FILE__, __LINE__, (void *) pgd_val(e))
120
121#ifndef __ASSEMBLY__
122/*
Christian Borntraeger5fd9c6e2008-01-26 14:11:00 +0100123 * The vmalloc area will always be on the topmost area of the kernel
Martin Schwidefsky7d3f6612010-04-09 13:43:02 +0200124 * mapping. We reserve 96MB (31bit) / 128GB (64bit) for vmalloc,
Christian Borntraeger5fd9c6e2008-01-26 14:11:00 +0100125 * which should be enough for any sane case.
126 * By putting vmalloc at the top, we maximise the gap between physical
127 * memory and vmalloc to catch misplaced memory accesses. As a side
128 * effect, this also makes sure that 64 bit module code cannot be used
129 * as system call address.
Heiko Carstens8b62bc92006-12-04 15:40:56 +0100130 */
Heiko Carstens239a64252009-06-12 10:26:33 +0200131
132extern unsigned long VMALLOC_START;
133
Heiko Carstens8b62bc92006-12-04 15:40:56 +0100134#ifndef __s390x__
Heiko Carstens239a64252009-06-12 10:26:33 +0200135#define VMALLOC_SIZE (96UL << 20)
Christian Borntraeger5fd9c6e2008-01-26 14:11:00 +0100136#define VMALLOC_END 0x7e000000UL
Heiko Carstens01891032008-02-05 16:50:49 +0100137#define VMEM_MAP_END 0x80000000UL
Heiko Carstens8b62bc92006-12-04 15:40:56 +0100138#else /* __s390x__ */
Martin Schwidefsky7d3f6612010-04-09 13:43:02 +0200139#define VMALLOC_SIZE (128UL << 30)
140#define VMALLOC_END 0x3e000000000UL
Heiko Carstens01891032008-02-05 16:50:49 +0100141#define VMEM_MAP_END 0x40000000000UL
Heiko Carstens8b62bc92006-12-04 15:40:56 +0100142#endif /* __s390x__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Heiko Carstens01891032008-02-05 16:50:49 +0100144/*
145 * VMEM_MAX_PHYS is the highest physical address that can be added to the 1:1
146 * mapping. This needs to be calculated at compile time since the size of the
147 * VMEM_MAP is static but the size of struct page can change.
148 */
Martin Schwidefsky522d8dc2008-02-09 18:24:31 +0100149#define VMEM_MAX_PAGES ((VMEM_MAP_END - VMALLOC_END) / sizeof(struct page))
150#define VMEM_MAX_PFN min(VMALLOC_START >> PAGE_SHIFT, VMEM_MAX_PAGES)
151#define VMEM_MAX_PHYS ((VMEM_MAX_PFN << PAGE_SHIFT) & ~((16 << 20) - 1))
Heiko Carstens17f34582008-04-30 13:38:47 +0200152#define vmemmap ((struct page *) VMALLOC_END)
Christian Borntraeger5fd9c6e2008-01-26 14:11:00 +0100153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/*
155 * A 31 bit pagetable entry of S390 has following format:
156 * | PFRA | | OS |
157 * 0 0IP0
158 * 00000000001111111111222222222233
159 * 01234567890123456789012345678901
160 *
161 * I Page-Invalid Bit: Page is not available for address-translation
162 * P Page-Protection Bit: Store access not possible for page
163 *
164 * A 31 bit segmenttable entry of S390 has following format:
165 * | P-table origin | |PTL
166 * 0 IC
167 * 00000000001111111111222222222233
168 * 01234567890123456789012345678901
169 *
170 * I Segment-Invalid Bit: Segment is not available for address-translation
171 * C Common-Segment Bit: Segment is not private (PoP 3-30)
172 * PTL Page-Table-Length: Page-table length (PTL+1*16 entries -> up to 256)
173 *
174 * The 31 bit segmenttable origin of S390 has following format:
175 *
176 * |S-table origin | | STL |
177 * X **GPS
178 * 00000000001111111111222222222233
179 * 01234567890123456789012345678901
180 *
181 * X Space-Switch event:
182 * G Segment-Invalid Bit: *
183 * P Private-Space Bit: Segment is not private (PoP 3-30)
184 * S Storage-Alteration:
185 * STL Segment-Table-Length: Segment-table length (STL+1*16 entries -> up to 2048)
186 *
187 * A 64 bit pagetable entry of S390 has following format:
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100188 * | PFRA |0IPC| OS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * 0000000000111111111122222222223333333333444444444455555555556666
190 * 0123456789012345678901234567890123456789012345678901234567890123
191 *
192 * I Page-Invalid Bit: Page is not available for address-translation
193 * P Page-Protection Bit: Store access not possible for page
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100194 * C Change-bit override: HW is not required to set change bit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
196 * A 64 bit segmenttable entry of S390 has following format:
197 * | P-table origin | TT
198 * 0000000000111111111122222222223333333333444444444455555555556666
199 * 0123456789012345678901234567890123456789012345678901234567890123
200 *
201 * I Segment-Invalid Bit: Segment is not available for address-translation
202 * C Common-Segment Bit: Segment is not private (PoP 3-30)
203 * P Page-Protection Bit: Store access not possible for page
204 * TT Type 00
205 *
206 * A 64 bit region table entry of S390 has following format:
207 * | S-table origin | TF TTTL
208 * 0000000000111111111122222222223333333333444444444455555555556666
209 * 0123456789012345678901234567890123456789012345678901234567890123
210 *
211 * I Segment-Invalid Bit: Segment is not available for address-translation
212 * TT Type 01
213 * TF
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200214 * TL Table length
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 *
216 * The 64 bit regiontable origin of S390 has following format:
217 * | region table origon | DTTL
218 * 0000000000111111111122222222223333333333444444444455555555556666
219 * 0123456789012345678901234567890123456789012345678901234567890123
220 *
221 * X Space-Switch event:
222 * G Segment-Invalid Bit:
223 * P Private-Space Bit:
224 * S Storage-Alteration:
225 * R Real space
226 * TL Table-Length:
227 *
228 * A storage key has the following format:
229 * | ACC |F|R|C|0|
230 * 0 3 4 5 6 7
231 * ACC: access key
232 * F : fetch protection bit
233 * R : referenced bit
234 * C : changed bit
235 */
236
237/* Hardware bits in the page table entry */
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100238#define _PAGE_CO 0x100 /* HW Change-bit override */
Martin Schwidefsky83377482006-10-18 18:30:51 +0200239#define _PAGE_RO 0x200 /* HW read-only bit */
240#define _PAGE_INVALID 0x400 /* HW invalid bit */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200241
242/* Software bits in the page table entry */
Martin Schwidefsky83377482006-10-18 18:30:51 +0200243#define _PAGE_SWT 0x001 /* SW pte type bit t */
244#define _PAGE_SWX 0x002 /* SW pte type bit x */
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200245#define _PAGE_SWC 0x004 /* SW pte changed bit (for KVM) */
246#define _PAGE_SWR 0x008 /* SW pte referenced bit (for KVM) */
247#define _PAGE_SPECIAL 0x010 /* SW associated with special page */
Nick Piggina08cb622008-04-28 02:13:03 -0700248#define __HAVE_ARCH_PTE_SPECIAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Nick Piggin138c9022008-07-08 11:31:06 +0200250/* Set of bits not changed in pte_modify */
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200251#define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_SPECIAL | _PAGE_SWC | _PAGE_SWR)
Nick Piggin138c9022008-07-08 11:31:06 +0200252
Martin Schwidefsky83377482006-10-18 18:30:51 +0200253/* Six different types of pages. */
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200254#define _PAGE_TYPE_EMPTY 0x400
255#define _PAGE_TYPE_NONE 0x401
Martin Schwidefsky83377482006-10-18 18:30:51 +0200256#define _PAGE_TYPE_SWAP 0x403
257#define _PAGE_TYPE_FILE 0x601 /* bit 0x002 is used for offset !! */
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200258#define _PAGE_TYPE_RO 0x200
259#define _PAGE_TYPE_RW 0x000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Martin Schwidefsky83377482006-10-18 18:30:51 +0200261/*
Gerald Schaefer53492b12008-04-30 13:38:46 +0200262 * Only four types for huge pages, using the invalid bit and protection bit
263 * of a segment table entry.
264 */
265#define _HPAGE_TYPE_EMPTY 0x020 /* _SEGMENT_ENTRY_INV */
266#define _HPAGE_TYPE_NONE 0x220
267#define _HPAGE_TYPE_RO 0x200 /* _SEGMENT_ENTRY_RO */
268#define _HPAGE_TYPE_RW 0x000
269
270/*
Martin Schwidefsky83377482006-10-18 18:30:51 +0200271 * PTE type bits are rather complicated. handle_pte_fault uses pte_present,
272 * pte_none and pte_file to find out the pte type WITHOUT holding the page
273 * table lock. ptep_clear_flush on the other hand uses ptep_clear_flush to
274 * invalidate a given pte. ipte sets the hw invalid bit and clears all tlbs
275 * for the page. The page table entry is set to _PAGE_TYPE_EMPTY afterwards.
276 * This change is done while holding the lock, but the intermediate step
277 * of a previously valid pte with the hw invalid bit set can be observed by
278 * handle_pte_fault. That makes it necessary that all valid pte types with
279 * the hw invalid bit set must be distinguishable from the four pte types
280 * empty, none, swap and file.
281 *
282 * irxt ipte irxt
283 * _PAGE_TYPE_EMPTY 1000 -> 1000
284 * _PAGE_TYPE_NONE 1001 -> 1001
285 * _PAGE_TYPE_SWAP 1011 -> 1011
286 * _PAGE_TYPE_FILE 11?1 -> 11?1
287 * _PAGE_TYPE_RO 0100 -> 1100
288 * _PAGE_TYPE_RW 0000 -> 1000
289 *
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100290 * pte_none is true for bits combinations 1000, 1010, 1100, 1110
Martin Schwidefsky83377482006-10-18 18:30:51 +0200291 * pte_present is true for bits combinations 0000, 0010, 0100, 0110, 1001
292 * pte_file is true for bits combinations 1101, 1111
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100293 * swap pte is 1011 and 0001, 0011, 0101, 0111 are invalid.
Martin Schwidefsky83377482006-10-18 18:30:51 +0200294 */
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#ifndef __s390x__
297
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200298/* Bits in the segment table address-space-control-element */
299#define _ASCE_SPACE_SWITCH 0x80000000UL /* space switch event */
300#define _ASCE_ORIGIN_MASK 0x7ffff000UL /* segment table origin */
301#define _ASCE_PRIVATE_SPACE 0x100 /* private space control */
302#define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */
303#define _ASCE_TABLE_LENGTH 0x7f /* 128 x 64 entries = 8k */
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/* Bits in the segment table entry */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200306#define _SEGMENT_ENTRY_ORIGIN 0x7fffffc0UL /* page table origin */
Martin Schwidefsky80217142010-10-25 16:10:11 +0200307#define _SEGMENT_ENTRY_RO 0x200 /* page protection bit */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200308#define _SEGMENT_ENTRY_INV 0x20 /* invalid segment table entry */
309#define _SEGMENT_ENTRY_COMMON 0x10 /* common segment bit */
310#define _SEGMENT_ENTRY_PTL 0x0f /* page table length */
311
312#define _SEGMENT_ENTRY (_SEGMENT_ENTRY_PTL)
313#define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INV)
314
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200315/* Page status table bits for virtualization */
316#define RCP_ACC_BITS 0xf0000000UL
317#define RCP_FP_BIT 0x08000000UL
318#define RCP_PCL_BIT 0x00800000UL
319#define RCP_HR_BIT 0x00400000UL
320#define RCP_HC_BIT 0x00200000UL
321#define RCP_GR_BIT 0x00040000UL
322#define RCP_GC_BIT 0x00020000UL
323
324/* User dirty / referenced bit for KVM's migration feature */
325#define KVM_UR_BIT 0x00008000UL
326#define KVM_UC_BIT 0x00004000UL
327
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200328#else /* __s390x__ */
329
330/* Bits in the segment/region table address-space-control-element */
331#define _ASCE_ORIGIN ~0xfffUL/* segment table origin */
332#define _ASCE_PRIVATE_SPACE 0x100 /* private space control */
333#define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */
334#define _ASCE_SPACE_SWITCH 0x40 /* space switch event */
335#define _ASCE_REAL_SPACE 0x20 /* real space control */
336#define _ASCE_TYPE_MASK 0x0c /* asce table type mask */
337#define _ASCE_TYPE_REGION1 0x0c /* region first table type */
338#define _ASCE_TYPE_REGION2 0x08 /* region second table type */
339#define _ASCE_TYPE_REGION3 0x04 /* region third table type */
340#define _ASCE_TYPE_SEGMENT 0x00 /* segment table type */
341#define _ASCE_TABLE_LENGTH 0x03 /* region table length */
342
343/* Bits in the region table entry */
344#define _REGION_ENTRY_ORIGIN ~0xfffUL/* region/segment table origin */
345#define _REGION_ENTRY_INV 0x20 /* invalid region table entry */
346#define _REGION_ENTRY_TYPE_MASK 0x0c /* region/segment table type mask */
347#define _REGION_ENTRY_TYPE_R1 0x0c /* region first table type */
348#define _REGION_ENTRY_TYPE_R2 0x08 /* region second table type */
349#define _REGION_ENTRY_TYPE_R3 0x04 /* region third table type */
350#define _REGION_ENTRY_LENGTH 0x03 /* region third length */
351
352#define _REGION1_ENTRY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_LENGTH)
353#define _REGION1_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_INV)
354#define _REGION2_ENTRY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_LENGTH)
355#define _REGION2_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_INV)
356#define _REGION3_ENTRY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_LENGTH)
357#define _REGION3_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_INV)
358
359/* Bits in the segment table entry */
360#define _SEGMENT_ENTRY_ORIGIN ~0x7ffUL/* segment table origin */
361#define _SEGMENT_ENTRY_RO 0x200 /* page protection bit */
362#define _SEGMENT_ENTRY_INV 0x20 /* invalid segment table entry */
363
364#define _SEGMENT_ENTRY (0)
365#define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INV)
366
Gerald Schaefer53492b12008-04-30 13:38:46 +0200367#define _SEGMENT_ENTRY_LARGE 0x400 /* STE-format control, large page */
368#define _SEGMENT_ENTRY_CO 0x100 /* change-recording override */
369
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200370/* Page status table bits for virtualization */
371#define RCP_ACC_BITS 0xf000000000000000UL
372#define RCP_FP_BIT 0x0800000000000000UL
373#define RCP_PCL_BIT 0x0080000000000000UL
374#define RCP_HR_BIT 0x0040000000000000UL
375#define RCP_HC_BIT 0x0020000000000000UL
376#define RCP_GR_BIT 0x0004000000000000UL
377#define RCP_GC_BIT 0x0002000000000000UL
378
379/* User dirty / referenced bit for KVM's migration feature */
380#define KVM_UR_BIT 0x0000800000000000UL
381#define KVM_UC_BIT 0x0000400000000000UL
382
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200383#endif /* __s390x__ */
384
385/*
386 * A user page table pointer has the space-switch-event bit, the
387 * private-space-control bit and the storage-alteration-event-control
388 * bit set. A kernel page table pointer doesn't need them.
389 */
390#define _ASCE_USER_BITS (_ASCE_SPACE_SWITCH | _ASCE_PRIVATE_SPACE | \
391 _ASCE_ALT_EVENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200394 * Page protection definitions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200396#define PAGE_NONE __pgprot(_PAGE_TYPE_NONE)
397#define PAGE_RO __pgprot(_PAGE_TYPE_RO)
398#define PAGE_RW __pgprot(_PAGE_TYPE_RW)
399
400#define PAGE_KERNEL PAGE_RW
401#define PAGE_COPY PAGE_RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403/*
Martin Schwidefsky043d0702011-05-23 10:24:23 +0200404 * On s390 the page table entry has an invalid bit and a read-only bit.
405 * Read permission implies execute permission and write permission
406 * implies read permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
408 /*xwr*/
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200409#define __P000 PAGE_NONE
410#define __P001 PAGE_RO
411#define __P010 PAGE_RO
412#define __P011 PAGE_RO
Martin Schwidefsky043d0702011-05-23 10:24:23 +0200413#define __P100 PAGE_RO
414#define __P101 PAGE_RO
415#define __P110 PAGE_RO
416#define __P111 PAGE_RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200418#define __S000 PAGE_NONE
419#define __S001 PAGE_RO
420#define __S010 PAGE_RW
421#define __S011 PAGE_RW
Martin Schwidefsky043d0702011-05-23 10:24:23 +0200422#define __S100 PAGE_RO
423#define __S101 PAGE_RO
424#define __S110 PAGE_RW
425#define __S111 PAGE_RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200427static inline int mm_exclusive(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200429 return likely(mm == current->active_mm &&
430 atomic_read(&mm->context.attach_count) <= 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200433static inline int mm_has_pgste(struct mm_struct *mm)
434{
435#ifdef CONFIG_PGSTE
436 if (unlikely(mm->context.has_pgste))
437 return 1;
438#endif
439 return 0;
440}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/*
442 * pgd/pmd/pte query functions
443 */
444#ifndef __s390x__
445
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800446static inline int pgd_present(pgd_t pgd) { return 1; }
447static inline int pgd_none(pgd_t pgd) { return 0; }
448static inline int pgd_bad(pgd_t pgd) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200450static inline int pud_present(pud_t pud) { return 1; }
451static inline int pud_none(pud_t pud) { return 0; }
452static inline int pud_bad(pud_t pud) { return 0; }
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454#else /* __s390x__ */
455
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100456static inline int pgd_present(pgd_t pgd)
457{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100458 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2)
459 return 1;
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100460 return (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) != 0UL;
461}
462
463static inline int pgd_none(pgd_t pgd)
464{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100465 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2)
466 return 0;
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100467 return (pgd_val(pgd) & _REGION_ENTRY_INV) != 0UL;
468}
469
470static inline int pgd_bad(pgd_t pgd)
471{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100472 /*
473 * With dynamic page table levels the pgd can be a region table
474 * entry or a segment table entry. Check for the bit that are
475 * invalid for either table entry.
476 */
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100477 unsigned long mask =
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100478 ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INV &
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100479 ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH;
480 return (pgd_val(pgd) & mask) != 0;
481}
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200482
483static inline int pud_present(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100485 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
486 return 1;
Martin Schwidefsky0d017922007-12-17 16:25:48 +0100487 return (pud_val(pud) & _REGION_ENTRY_ORIGIN) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200490static inline int pud_none(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100492 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
493 return 0;
Martin Schwidefsky0d017922007-12-17 16:25:48 +0100494 return (pud_val(pud) & _REGION_ENTRY_INV) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200497static inline int pud_bad(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100499 /*
500 * With dynamic page table levels the pud can be a region table
501 * entry or a segment table entry. Check for the bit that are
502 * invalid for either table entry.
503 */
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100504 unsigned long mask =
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100505 ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INV &
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100506 ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH;
507 return (pud_val(pud) & mask) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200510#endif /* __s390x__ */
511
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800512static inline int pmd_present(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Martin Schwidefsky0d017922007-12-17 16:25:48 +0100514 return (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800517static inline int pmd_none(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Martin Schwidefsky0d017922007-12-17 16:25:48 +0100519 return (pmd_val(pmd) & _SEGMENT_ENTRY_INV) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800522static inline int pmd_bad(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200524 unsigned long mask = ~_SEGMENT_ENTRY_ORIGIN & ~_SEGMENT_ENTRY_INV;
525 return (pmd_val(pmd) & mask) != _SEGMENT_ENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800528static inline int pte_none(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Martin Schwidefsky83377482006-10-18 18:30:51 +0200530 return (pte_val(pte) & _PAGE_INVALID) && !(pte_val(pte) & _PAGE_SWT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800533static inline int pte_present(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Martin Schwidefsky83377482006-10-18 18:30:51 +0200535 unsigned long mask = _PAGE_RO | _PAGE_INVALID | _PAGE_SWT | _PAGE_SWX;
536 return (pte_val(pte) & mask) == _PAGE_TYPE_NONE ||
537 (!(pte_val(pte) & _PAGE_INVALID) &&
538 !(pte_val(pte) & _PAGE_SWT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800541static inline int pte_file(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Martin Schwidefsky83377482006-10-18 18:30:51 +0200543 unsigned long mask = _PAGE_RO | _PAGE_INVALID | _PAGE_SWT;
544 return (pte_val(pte) & mask) == _PAGE_TYPE_FILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Nick Piggin7e675132008-04-28 02:13:00 -0700547static inline int pte_special(pte_t pte)
548{
Nick Piggina08cb622008-04-28 02:13:03 -0700549 return (pte_val(pte) & _PAGE_SPECIAL);
Nick Piggin7e675132008-04-28 02:13:00 -0700550}
551
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200552#define __HAVE_ARCH_PTE_SAME
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200553static inline int pte_same(pte_t a, pte_t b)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100554{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200555 return pte_val(a) == pte_val(b);
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100556}
557
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200558static inline pgste_t pgste_get_lock(pte_t *ptep)
559{
560 unsigned long new = 0;
561#ifdef CONFIG_PGSTE
562 unsigned long old;
563
564 preempt_disable();
565 asm(
566 " lg %0,%2\n"
567 "0: lgr %1,%0\n"
568 " nihh %0,0xff7f\n" /* clear RCP_PCL_BIT in old */
569 " oihh %1,0x0080\n" /* set RCP_PCL_BIT in new */
570 " csg %0,%1,%2\n"
571 " jl 0b\n"
572 : "=&d" (old), "=&d" (new), "=Q" (ptep[PTRS_PER_PTE])
573 : "Q" (ptep[PTRS_PER_PTE]) : "cc");
574#endif
575 return __pgste(new);
576}
577
578static inline void pgste_set_unlock(pte_t *ptep, pgste_t pgste)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100579{
580#ifdef CONFIG_PGSTE
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200581 asm(
582 " nihh %1,0xff7f\n" /* clear RCP_PCL_BIT */
583 " stg %1,%0\n"
584 : "=Q" (ptep[PTRS_PER_PTE])
585 : "d" (pgste_val(pgste)), "Q" (ptep[PTRS_PER_PTE]) : "cc");
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100586 preempt_enable();
587#endif
588}
589
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200590static inline pgste_t pgste_update_all(pte_t *ptep, pgste_t pgste)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100591{
592#ifdef CONFIG_PGSTE
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200593 unsigned long address, bits;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200594 unsigned char skey;
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100595
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200596 address = pte_val(*ptep) & PAGE_MASK;
597 skey = page_get_storage_key(address);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200598 bits = skey & (_PAGE_CHANGED | _PAGE_REFERENCED);
599 /* Clear page changed & referenced bit in the storage key */
600 if (bits) {
601 skey ^= bits;
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200602 page_set_storage_key(address, skey, 1);
Florian Funke15e86b02008-10-10 21:33:26 +0200603 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200604 /* Transfer page changed & referenced bit to guest bits in pgste */
605 pgste_val(pgste) |= bits << 48; /* RCP_GR_BIT & RCP_GC_BIT */
606 /* Get host changed & referenced bits from pgste */
607 bits |= (pgste_val(pgste) & (RCP_HR_BIT | RCP_HC_BIT)) >> 52;
608 /* Clear host bits in pgste. */
609 pgste_val(pgste) &= ~(RCP_HR_BIT | RCP_HC_BIT);
610 pgste_val(pgste) &= ~(RCP_ACC_BITS | RCP_FP_BIT);
611 /* Copy page access key and fetch protection bit to pgste */
612 pgste_val(pgste) |=
613 (unsigned long) (skey & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56;
614 /* Transfer changed and referenced to kvm user bits */
615 pgste_val(pgste) |= bits << 45; /* KVM_UR_BIT & KVM_UC_BIT */
616 /* Transfer changed & referenced to pte sofware bits */
617 pte_val(*ptep) |= bits << 1; /* _PAGE_SWR & _PAGE_SWC */
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100618#endif
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200619 return pgste;
620
621}
622
623static inline pgste_t pgste_update_young(pte_t *ptep, pgste_t pgste)
624{
625#ifdef CONFIG_PGSTE
626 int young;
627
628 young = page_reset_referenced(pte_val(*ptep) & PAGE_MASK);
629 /* Transfer page referenced bit to pte software bit (host view) */
630 if (young || (pgste_val(pgste) & RCP_HR_BIT))
631 pte_val(*ptep) |= _PAGE_SWR;
632 /* Clear host referenced bit in pgste. */
633 pgste_val(pgste) &= ~RCP_HR_BIT;
634 /* Transfer page referenced bit to guest bit in pgste */
635 pgste_val(pgste) |= (unsigned long) young << 50; /* set RCP_GR_BIT */
636#endif
637 return pgste;
638
639}
640
641static inline void pgste_set_pte(pte_t *ptep, pgste_t pgste)
642{
643#ifdef CONFIG_PGSTE
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200644 unsigned long address;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200645 unsigned long okey, nkey;
646
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200647 address = pte_val(*ptep) & PAGE_MASK;
648 okey = nkey = page_get_storage_key(address);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200649 nkey &= ~(_PAGE_ACC_BITS | _PAGE_FP_BIT);
650 /* Set page access key and fetch protection bit from pgste */
651 nkey |= (pgste_val(pgste) & (RCP_ACC_BITS | RCP_FP_BIT)) >> 56;
652 if (okey != nkey)
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200653 page_set_storage_key(address, nkey, 1);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200654#endif
655}
656
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200657/**
658 * struct gmap_struct - guest address space
659 * @mm: pointer to the parent mm_struct
660 * @table: pointer to the page directory
Christian Borntraeger480e5922011-09-20 17:07:28 +0200661 * @asce: address space control element for gmap page table
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200662 * @crst_list: list of all crst tables used in the guest address space
663 */
664struct gmap {
665 struct list_head list;
666 struct mm_struct *mm;
667 unsigned long *table;
Christian Borntraeger480e5922011-09-20 17:07:28 +0200668 unsigned long asce;
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200669 struct list_head crst_list;
670};
671
672/**
673 * struct gmap_rmap - reverse mapping for segment table entries
674 * @next: pointer to the next gmap_rmap structure in the list
675 * @entry: pointer to a segment table entry
676 */
677struct gmap_rmap {
678 struct list_head list;
679 unsigned long *entry;
680};
681
682/**
683 * struct gmap_pgtable - gmap information attached to a page table
684 * @vmaddr: address of the 1MB segment in the process virtual memory
685 * @mapper: list of segment table entries maping a page table
686 */
687struct gmap_pgtable {
688 unsigned long vmaddr;
689 struct list_head mapper;
690};
691
692struct gmap *gmap_alloc(struct mm_struct *mm);
693void gmap_free(struct gmap *gmap);
694void gmap_enable(struct gmap *gmap);
695void gmap_disable(struct gmap *gmap);
696int gmap_map_segment(struct gmap *gmap, unsigned long from,
697 unsigned long to, unsigned long length);
698int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len);
Carsten Otte499069e2011-10-30 15:17:02 +0100699unsigned long __gmap_fault(unsigned long address, struct gmap *);
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200700unsigned long gmap_fault(unsigned long address, struct gmap *);
701
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200702/*
703 * Certain architectures need to do special things when PTEs
704 * within a page table are directly modified. Thus, the following
705 * hook is made available.
706 */
707static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
708 pte_t *ptep, pte_t entry)
709{
710 pgste_t pgste;
711
712 if (mm_has_pgste(mm)) {
713 pgste = pgste_get_lock(ptep);
714 pgste_set_pte(ptep, pgste);
715 *ptep = entry;
716 pgste_set_unlock(ptep, pgste);
717 } else
718 *ptep = entry;
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721/*
722 * query functions pte_write/pte_dirty/pte_young only work if
723 * pte_present() is true. Undefined behaviour if not..
724 */
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800725static inline int pte_write(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 return (pte_val(pte) & _PAGE_RO) == 0;
728}
729
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800730static inline int pte_dirty(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200732#ifdef CONFIG_PGSTE
733 if (pte_val(pte) & _PAGE_SWC)
734 return 1;
735#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
737}
738
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800739static inline int pte_young(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200741#ifdef CONFIG_PGSTE
742 if (pte_val(pte) & _PAGE_SWR)
743 return 1;
744#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return 0;
746}
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748/*
749 * pgd/pmd/pte modification functions
750 */
751
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200752static inline void pgd_clear(pgd_t *pgd)
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100753{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200754#ifdef __s390x__
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100755 if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
756 pgd_val(*pgd) = _REGION2_ENTRY_EMPTY;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100760static inline void pud_clear(pud_t *pud)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100761{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200762#ifdef __s390x__
763 if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
764 pud_val(*pud) = _REGION3_ENTRY_EMPTY;
765#endif
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100766}
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100767
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200768static inline void pmd_clear(pmd_t *pmdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200770 pmd_val(*pmdp) = _SEGMENT_ENTRY_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800773static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200775 pte_val(*ptep) = _PAGE_TYPE_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778/*
779 * The following pte modification functions only work if
780 * pte_present() is true. Undefined behaviour if not..
781 */
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800782static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Nick Piggin138c9022008-07-08 11:31:06 +0200784 pte_val(pte) &= _PAGE_CHG_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 pte_val(pte) |= pgprot_val(newprot);
786 return pte;
787}
788
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800789static inline pte_t pte_wrprotect(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200791 /* Do not clobber _PAGE_TYPE_NONE pages! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (!(pte_val(pte) & _PAGE_INVALID))
793 pte_val(pte) |= _PAGE_RO;
794 return pte;
795}
796
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800797static inline pte_t pte_mkwrite(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 pte_val(pte) &= ~_PAGE_RO;
800 return pte;
801}
802
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800803static inline pte_t pte_mkclean(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200805#ifdef CONFIG_PGSTE
806 pte_val(pte) &= ~_PAGE_SWC;
807#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return pte;
809}
810
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800811static inline pte_t pte_mkdirty(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return pte;
814}
815
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800816static inline pte_t pte_mkold(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200818#ifdef CONFIG_PGSTE
819 pte_val(pte) &= ~_PAGE_SWR;
820#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return pte;
822}
823
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800824static inline pte_t pte_mkyoung(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return pte;
827}
828
Nick Piggin7e675132008-04-28 02:13:00 -0700829static inline pte_t pte_mkspecial(pte_t pte)
830{
Nick Piggina08cb622008-04-28 02:13:03 -0700831 pte_val(pte) |= _PAGE_SPECIAL;
Nick Piggin7e675132008-04-28 02:13:00 -0700832 return pte;
833}
834
Heiko Carstens84afdce2010-10-25 16:10:36 +0200835#ifdef CONFIG_HUGETLB_PAGE
836static inline pte_t pte_mkhuge(pte_t pte)
837{
838 /*
839 * PROT_NONE needs to be remapped from the pte type to the ste type.
840 * The HW invalid bit is also different for pte and ste. The pte
841 * invalid bit happens to be the same as the ste _SEGMENT_ENTRY_LARGE
842 * bit, so we don't have to clear it.
843 */
844 if (pte_val(pte) & _PAGE_INVALID) {
845 if (pte_val(pte) & _PAGE_SWT)
846 pte_val(pte) |= _HPAGE_TYPE_NONE;
847 pte_val(pte) |= _SEGMENT_ENTRY_INV;
848 }
849 /*
850 * Clear SW pte bits SWT and SWX, there are no SW bits in a segment
851 * table entry.
852 */
853 pte_val(pte) &= ~(_PAGE_SWT | _PAGE_SWX);
854 /*
855 * Also set the change-override bit because we don't need dirty bit
856 * tracking for hugetlbfs pages.
857 */
858 pte_val(pte) |= (_SEGMENT_ENTRY_LARGE | _SEGMENT_ENTRY_CO);
859 return pte;
860}
861#endif
862
Florian Funke15e86b02008-10-10 21:33:26 +0200863/*
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200864 * Get (and clear) the user dirty bit for a pte.
Florian Funke15e86b02008-10-10 21:33:26 +0200865 */
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200866static inline int ptep_test_and_clear_user_dirty(struct mm_struct *mm,
867 pte_t *ptep)
Florian Funke15e86b02008-10-10 21:33:26 +0200868{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200869 pgste_t pgste;
870 int dirty = 0;
Florian Funke15e86b02008-10-10 21:33:26 +0200871
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200872 if (mm_has_pgste(mm)) {
873 pgste = pgste_get_lock(ptep);
874 pgste = pgste_update_all(ptep, pgste);
875 dirty = !!(pgste_val(pgste) & KVM_UC_BIT);
876 pgste_val(pgste) &= ~KVM_UC_BIT;
877 pgste_set_unlock(ptep, pgste);
878 return dirty;
Florian Funke15e86b02008-10-10 21:33:26 +0200879 }
Florian Funke15e86b02008-10-10 21:33:26 +0200880 return dirty;
881}
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200882
883/*
884 * Get (and clear) the user referenced bit for a pte.
885 */
886static inline int ptep_test_and_clear_user_young(struct mm_struct *mm,
887 pte_t *ptep)
888{
889 pgste_t pgste;
890 int young = 0;
891
892 if (mm_has_pgste(mm)) {
893 pgste = pgste_get_lock(ptep);
894 pgste = pgste_update_young(ptep, pgste);
895 young = !!(pgste_val(pgste) & KVM_UR_BIT);
896 pgste_val(pgste) &= ~KVM_UR_BIT;
897 pgste_set_unlock(ptep, pgste);
898 }
899 return young;
900}
Florian Funke15e86b02008-10-10 21:33:26 +0200901
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200902#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
903static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
904 unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200906 pgste_t pgste;
907 pte_t pte;
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100908
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200909 if (mm_has_pgste(vma->vm_mm)) {
910 pgste = pgste_get_lock(ptep);
911 pgste = pgste_update_young(ptep, pgste);
912 pte = *ptep;
913 *ptep = pte_mkold(pte);
914 pgste_set_unlock(ptep, pgste);
915 return pte_young(pte);
916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return 0;
918}
919
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200920#define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
921static inline int ptep_clear_flush_young(struct vm_area_struct *vma,
922 unsigned long address, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100924 /* No need to flush TLB
925 * On s390 reference bits are in storage key and never in TLB
926 * With virtualization we handle the reference bit, without we
927 * we can simply return */
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100928 return ptep_test_and_clear_young(vma, address, ptep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200931static inline void __ptep_ipte(unsigned long address, pte_t *ptep)
932{
933 if (!(pte_val(*ptep) & _PAGE_INVALID)) {
934#ifndef __s390x__
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100935 /* pto must point to the start of the segment table */
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200936 pte_t *pto = (pte_t *) (((unsigned long) ptep) & 0x7ffffc00);
937#else
938 /* ipte in zarch mode can do the math */
939 pte_t *pto = ptep;
940#endif
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200941 asm volatile(
942 " ipte %2,%3"
943 : "=m" (*ptep) : "m" (*ptep),
944 "a" (pto), "a" (address));
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200945 }
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200946}
947
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200948/*
949 * This is hard to understand. ptep_get_and_clear and ptep_clear_flush
950 * both clear the TLB for the unmapped pte. The reason is that
951 * ptep_get_and_clear is used in common code (e.g. change_pte_range)
952 * to modify an active pte. The sequence is
953 * 1) ptep_get_and_clear
954 * 2) set_pte_at
955 * 3) flush_tlb_range
956 * On s390 the tlb needs to get flushed with the modification of the pte
957 * if the pte is active. The only way how this can be implemented is to
958 * have ptep_get_and_clear do the tlb flush. In exchange flush_tlb_range
959 * is a nop.
960 */
961#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200962static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
963 unsigned long address, pte_t *ptep)
964{
965 pgste_t pgste;
966 pte_t pte;
967
968 mm->context.flush_mm = 1;
969 if (mm_has_pgste(mm))
970 pgste = pgste_get_lock(ptep);
971
972 pte = *ptep;
973 if (!mm_exclusive(mm))
974 __ptep_ipte(address, ptep);
975 pte_val(*ptep) = _PAGE_TYPE_EMPTY;
976
977 if (mm_has_pgste(mm)) {
978 pgste = pgste_update_all(&pte, pgste);
979 pgste_set_unlock(ptep, pgste);
980 }
981 return pte;
982}
983
984#define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
985static inline pte_t ptep_modify_prot_start(struct mm_struct *mm,
986 unsigned long address,
987 pte_t *ptep)
988{
989 pte_t pte;
990
991 mm->context.flush_mm = 1;
992 if (mm_has_pgste(mm))
993 pgste_get_lock(ptep);
994
995 pte = *ptep;
996 if (!mm_exclusive(mm))
997 __ptep_ipte(address, ptep);
998 return pte;
999}
1000
1001static inline void ptep_modify_prot_commit(struct mm_struct *mm,
1002 unsigned long address,
1003 pte_t *ptep, pte_t pte)
1004{
1005 *ptep = pte;
1006 if (mm_has_pgste(mm))
1007 pgste_set_unlock(ptep, *(pgste_t *)(ptep + PTRS_PER_PTE));
1008}
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001009
1010#define __HAVE_ARCH_PTEP_CLEAR_FLUSH
Martin Schwidefskyf0e47c22007-07-17 04:03:03 -07001011static inline pte_t ptep_clear_flush(struct vm_area_struct *vma,
1012 unsigned long address, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001014 pgste_t pgste;
1015 pte_t pte;
1016
1017 if (mm_has_pgste(vma->vm_mm))
1018 pgste = pgste_get_lock(ptep);
1019
1020 pte = *ptep;
1021 __ptep_ipte(address, ptep);
1022 pte_val(*ptep) = _PAGE_TYPE_EMPTY;
1023
1024 if (mm_has_pgste(vma->vm_mm)) {
1025 pgste = pgste_update_all(&pte, pgste);
1026 pgste_set_unlock(ptep, pgste);
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return pte;
1029}
1030
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001031/*
1032 * The batched pte unmap code uses ptep_get_and_clear_full to clear the
1033 * ptes. Here an optimization is possible. tlb_gather_mmu flushes all
1034 * tlbs of an mm if it can guarantee that the ptes of the mm_struct
1035 * cannot be accessed while the batched unmap is running. In this case
1036 * full==1 and a simple pte_clear is enough. See tlb.h.
1037 */
1038#define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
1039static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001040 unsigned long address,
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001041 pte_t *ptep, int full)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001043 pgste_t pgste;
1044 pte_t pte;
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001045
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001046 if (mm_has_pgste(mm))
1047 pgste = pgste_get_lock(ptep);
1048
1049 pte = *ptep;
1050 if (!full)
1051 __ptep_ipte(address, ptep);
1052 pte_val(*ptep) = _PAGE_TYPE_EMPTY;
1053
1054 if (mm_has_pgste(mm)) {
1055 pgste = pgste_update_all(&pte, pgste);
1056 pgste_set_unlock(ptep, pgste);
1057 }
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001058 return pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001061#define __HAVE_ARCH_PTEP_SET_WRPROTECT
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001062static inline pte_t ptep_set_wrprotect(struct mm_struct *mm,
1063 unsigned long address, pte_t *ptep)
1064{
1065 pgste_t pgste;
1066 pte_t pte = *ptep;
1067
1068 if (pte_write(pte)) {
1069 mm->context.flush_mm = 1;
1070 if (mm_has_pgste(mm))
1071 pgste = pgste_get_lock(ptep);
1072
1073 if (!mm_exclusive(mm))
1074 __ptep_ipte(address, ptep);
1075 *ptep = pte_wrprotect(pte);
1076
1077 if (mm_has_pgste(mm))
1078 pgste_set_unlock(ptep, pgste);
1079 }
1080 return pte;
1081}
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001082
1083#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001084static inline int ptep_set_access_flags(struct vm_area_struct *vma,
1085 unsigned long address, pte_t *ptep,
1086 pte_t entry, int dirty)
1087{
1088 pgste_t pgste;
1089
1090 if (pte_same(*ptep, entry))
1091 return 0;
1092 if (mm_has_pgste(vma->vm_mm))
1093 pgste = pgste_get_lock(ptep);
1094
1095 __ptep_ipte(address, ptep);
1096 *ptep = entry;
1097
1098 if (mm_has_pgste(vma->vm_mm))
1099 pgste_set_unlock(ptep, pgste);
1100 return 1;
1101}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * Conversion functions: convert a page and protection to a page entry,
1105 * and a page entry and page directory to the page they refer to.
1106 */
1107static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
1108{
1109 pte_t __pte;
1110 pte_val(__pte) = physpage + pgprot_val(pgprot);
1111 return __pte;
1112}
1113
Heiko Carstens2dcea572006-09-29 01:58:41 -07001114static inline pte_t mk_pte(struct page *page, pgprot_t pgprot)
1115{
Heiko Carstens0b2b6e12006-10-04 20:02:23 +02001116 unsigned long physpage = page_to_phys(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Heiko Carstens2dcea572006-09-29 01:58:41 -07001118 return mk_pte_phys(physpage, pgprot);
1119}
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001122#define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
1123#define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
1124#define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001126#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#define pgd_offset_k(address) pgd_offset(&init_mm, address)
1128
1129#ifndef __s390x__
1130
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001131#define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN)
1132#define pud_deref(pmd) ({ BUG(); 0UL; })
1133#define pgd_deref(pmd) ({ BUG(); 0UL; })
1134
1135#define pud_offset(pgd, address) ((pud_t *) pgd)
1136#define pmd_offset(pud, address) ((pmd_t *) pud + pmd_index(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138#else /* __s390x__ */
1139
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001140#define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN)
1141#define pud_deref(pud) (pud_val(pud) & _REGION_ENTRY_ORIGIN)
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001142#define pgd_deref(pgd) (pgd_val(pgd) & _REGION_ENTRY_ORIGIN)
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001143
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001144static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
1145{
Martin Schwidefsky6252d702008-02-09 18:24:37 +01001146 pud_t *pud = (pud_t *) pgd;
1147 if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
1148 pud = (pud_t *) pgd_deref(*pgd);
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001149 return pud + pud_index(address);
1150}
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001151
1152static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
1153{
Martin Schwidefsky6252d702008-02-09 18:24:37 +01001154 pmd_t *pmd = (pmd_t *) pud;
1155 if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
1156 pmd = (pmd_t *) pud_deref(*pud);
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001157 return pmd + pmd_index(address);
1158}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160#endif /* __s390x__ */
1161
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001162#define pfn_pte(pfn,pgprot) mk_pte_phys(__pa((pfn) << PAGE_SHIFT),(pgprot))
1163#define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT)
1164#define pte_page(x) pfn_to_page(pte_pfn(x))
1165
1166#define pmd_page(pmd) pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT)
1167
1168/* Find an entry in the lowest level page table.. */
1169#define pte_offset(pmd, addr) ((pte_t *) pmd_deref(*(pmd)) + pte_index(addr))
1170#define pte_offset_kernel(pmd, address) pte_offset(pmd,address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171#define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#define pte_unmap(pte) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174/*
1175 * 31 bit swap entry format:
1176 * A page-table entry has some bits we have to treat in a special way.
1177 * Bits 0, 20 and bit 23 have to be zero, otherwise an specification
1178 * exception will occur instead of a page translation exception. The
1179 * specifiation exception has the bad habit not to store necessary
1180 * information in the lowcore.
1181 * Bit 21 and bit 22 are the page invalid bit and the page protection
1182 * bit. We set both to indicate a swapped page.
1183 * Bit 30 and 31 are used to distinguish the different page types. For
1184 * a swapped page these bits need to be zero.
1185 * This leaves the bits 1-19 and bits 24-29 to store type and offset.
1186 * We use the 5 bits from 25-29 for the type and the 20 bits from 1-19
1187 * plus 24 for the offset.
1188 * 0| offset |0110|o|type |00|
1189 * 0 0000000001111111111 2222 2 22222 33
1190 * 0 1234567890123456789 0123 4 56789 01
1191 *
1192 * 64 bit swap entry format:
1193 * A page-table entry has some bits we have to treat in a special way.
1194 * Bits 52 and bit 55 have to be zero, otherwise an specification
1195 * exception will occur instead of a page translation exception. The
1196 * specifiation exception has the bad habit not to store necessary
1197 * information in the lowcore.
1198 * Bit 53 and bit 54 are the page invalid bit and the page protection
1199 * bit. We set both to indicate a swapped page.
1200 * Bit 62 and 63 are used to distinguish the different page types. For
1201 * a swapped page these bits need to be zero.
1202 * This leaves the bits 0-51 and bits 56-61 to store type and offset.
1203 * We use the 5 bits from 57-61 for the type and the 53 bits from 0-51
1204 * plus 56 for the offset.
1205 * | offset |0110|o|type |00|
1206 * 0000000000111111111122222222223333333333444444444455 5555 5 55566 66
1207 * 0123456789012345678901234567890123456789012345678901 2345 6 78901 23
1208 */
1209#ifndef __s390x__
1210#define __SWP_OFFSET_MASK (~0UL >> 12)
1211#else
1212#define __SWP_OFFSET_MASK (~0UL >> 11)
1213#endif
Adrian Bunk4448aaf2005-11-08 21:34:42 -08001214static inline pte_t mk_swap_pte(unsigned long type, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
1216 pte_t pte;
1217 offset &= __SWP_OFFSET_MASK;
Gerald Schaefer9282ed92006-09-20 15:59:37 +02001218 pte_val(pte) = _PAGE_TYPE_SWAP | ((type & 0x1f) << 2) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 ((offset & 1UL) << 7) | ((offset & ~1UL) << 11);
1220 return pte;
1221}
1222
1223#define __swp_type(entry) (((entry).val >> 2) & 0x1f)
1224#define __swp_offset(entry) (((entry).val >> 11) | (((entry).val >> 7) & 1))
1225#define __swp_entry(type,offset) ((swp_entry_t) { pte_val(mk_swap_pte((type),(offset))) })
1226
1227#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
1228#define __swp_entry_to_pte(x) ((pte_t) { (x).val })
1229
1230#ifndef __s390x__
1231# define PTE_FILE_MAX_BITS 26
1232#else /* __s390x__ */
1233# define PTE_FILE_MAX_BITS 59
1234#endif /* __s390x__ */
1235
1236#define pte_to_pgoff(__pte) \
1237 ((((__pte).pte >> 12) << 7) + (((__pte).pte >> 1) & 0x7f))
1238
1239#define pgoff_to_pte(__off) \
1240 ((pte_t) { ((((__off) & 0x7f) << 1) + (((__off) >> 7) << 12)) \
Gerald Schaefer9282ed92006-09-20 15:59:37 +02001241 | _PAGE_TYPE_FILE })
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243#endif /* !__ASSEMBLY__ */
1244
1245#define kern_addr_valid(addr) (1)
1246
Heiko Carstens17f34582008-04-30 13:38:47 +02001247extern int vmem_add_mapping(unsigned long start, unsigned long size);
1248extern int vmem_remove_mapping(unsigned long start, unsigned long size);
Carsten Otte402b0862008-03-25 18:47:10 +01001249extern int s390_enable_sie(void);
Heiko Carstensf4eb07c2006-12-08 15:56:07 +01001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/*
1252 * No page table caches to initialise
1253 */
1254#define pgtable_cache_init() do { } while (0)
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256#include <asm-generic/pgtable.h>
1257
1258#endif /* _S390_PAGE_H */