Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Based on arch/arm/include/asm/page.h |
| 3 | * |
| 4 | * Copyright (C) 1995-2003 Russell King |
| 5 | * Copyright (C) 2012 ARM Ltd. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | */ |
| 19 | #ifndef __ASM_PAGE_H |
| 20 | #define __ASM_PAGE_H |
| 21 | |
James Morse | 8122645 | 2016-04-27 17:47:08 +0100 | [diff] [blame] | 22 | #include <linux/const.h> |
| 23 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 24 | /* PAGE_SHIFT determines the page size */ |
Jeremy Linton | 2ff4439 | 2015-10-07 12:00:19 -0500 | [diff] [blame] | 25 | /* CONT_SHIFT determines the number of pages which can be tracked together */ |
Mark Rutland | 030c4d2 | 2016-05-31 15:57:59 +0100 | [diff] [blame] | 26 | #define PAGE_SHIFT CONFIG_ARM64_PAGE_SHIFT |
| 27 | #define CONT_SHIFT CONFIG_ARM64_CONT_SHIFT |
Jeremy Linton | 2ff4439 | 2015-10-07 12:00:19 -0500 | [diff] [blame] | 28 | #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 29 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
| 30 | |
Jeremy Linton | 2ff4439 | 2015-10-07 12:00:19 -0500 | [diff] [blame] | 31 | #define CONT_SIZE (_AC(1, UL) << (CONT_SHIFT + PAGE_SHIFT)) |
| 32 | #define CONT_MASK (~(CONT_SIZE-1)) |
| 33 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 34 | #ifndef __ASSEMBLY__ |
| 35 | |
Mark Brown | 3e275c6 | 2016-01-28 12:18:28 +0000 | [diff] [blame] | 36 | #include <linux/personality.h> /* for READ_IMPLIES_EXEC */ |
Catalin Marinas | 0f17402 | 2014-07-15 16:35:38 +0100 | [diff] [blame] | 37 | #include <asm/pgtable-types.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 38 | |
| 39 | extern void __cpu_clear_user_page(void *p, unsigned long user); |
| 40 | extern void __cpu_copy_user_page(void *to, const void *from, |
| 41 | unsigned long user); |
| 42 | extern void copy_page(void *to, const void *from); |
| 43 | extern void clear_page(void *to); |
| 44 | |
| 45 | #define clear_user_page(addr,vaddr,pg) __cpu_clear_user_page(addr, vaddr) |
| 46 | #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr) |
| 47 | |
| 48 | typedef struct page *pgtable_t; |
| 49 | |
| 50 | #ifdef CONFIG_HAVE_ARCH_PFN_VALID |
| 51 | extern int pfn_valid(unsigned long); |
| 52 | #endif |
| 53 | |
| 54 | #include <asm/memory.h> |
| 55 | |
| 56 | #endif /* !__ASSEMBLY__ */ |
| 57 | |
| 58 | #define VM_DATA_DEFAULT_FLAGS \ |
| 59 | (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \ |
| 60 | VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) |
| 61 | |
| 62 | #include <asm-generic/getorder.h> |
| 63 | |
| 64 | #endif |