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 | |
| 22 | /* PAGE_SHIFT determines the page size */ |
| 23 | #ifdef CONFIG_ARM64_64K_PAGES |
| 24 | #define PAGE_SHIFT 16 |
| 25 | #else |
| 26 | #define PAGE_SHIFT 12 |
| 27 | #endif |
| 28 | #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) |
| 29 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
| 30 | |
| 31 | /* We do define AT_SYSINFO_EHDR but don't use the gate mechanism */ |
| 32 | #define __HAVE_ARCH_GATE_AREA 1 |
| 33 | |
Mark Rutland | bd00cd5 | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 34 | /* |
| 35 | * The idmap and swapper page tables need some space reserved in the kernel |
Jungseok Lee | c79b954 | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 36 | * image. Both require pgd, pud (4 levels only) and pmd tables to (section) |
| 37 | * map the kernel. The swapper also maps the FDT (see __create_page_tables for |
Catalin Marinas | 7edd88a | 2014-07-16 12:07:17 +0100 | [diff] [blame] | 38 | * more information). |
Mark Rutland | bd00cd5 | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 39 | */ |
Catalin Marinas | abe669d | 2014-07-15 15:37:21 +0100 | [diff] [blame^] | 40 | #if CONFIG_ARM64_PGTABLE_LEVELS == 4 |
Jungseok Lee | c79b954 | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 41 | #define SWAPPER_DIR_SIZE (3 * PAGE_SIZE) |
| 42 | #define IDMAP_DIR_SIZE (3 * PAGE_SIZE) |
| 43 | #else |
Catalin Marinas | 7edd88a | 2014-07-16 12:07:17 +0100 | [diff] [blame] | 44 | #define SWAPPER_DIR_SIZE (2 * PAGE_SIZE) |
Mark Rutland | bd00cd5 | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 45 | #define IDMAP_DIR_SIZE (2 * PAGE_SIZE) |
Jungseok Lee | c79b954 | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 46 | #endif |
Mark Rutland | bd00cd5 | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 47 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 48 | #ifndef __ASSEMBLY__ |
| 49 | |
Catalin Marinas | abe669d | 2014-07-15 15:37:21 +0100 | [diff] [blame^] | 50 | #if CONFIG_ARM64_PGTABLE_LEVELS == 2 |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 51 | #include <asm/pgtable-2level-types.h> |
Catalin Marinas | abe669d | 2014-07-15 15:37:21 +0100 | [diff] [blame^] | 52 | #elif CONFIG_ARM64_PGTABLE_LEVELS == 3 |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 53 | #include <asm/pgtable-3level-types.h> |
Jungseok Lee | c79b954 | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 54 | #else |
| 55 | #include <asm/pgtable-4level-types.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 56 | #endif |
| 57 | |
| 58 | extern void __cpu_clear_user_page(void *p, unsigned long user); |
| 59 | extern void __cpu_copy_user_page(void *to, const void *from, |
| 60 | unsigned long user); |
| 61 | extern void copy_page(void *to, const void *from); |
| 62 | extern void clear_page(void *to); |
| 63 | |
| 64 | #define clear_user_page(addr,vaddr,pg) __cpu_clear_user_page(addr, vaddr) |
| 65 | #define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr) |
| 66 | |
| 67 | typedef struct page *pgtable_t; |
| 68 | |
| 69 | #ifdef CONFIG_HAVE_ARCH_PFN_VALID |
| 70 | extern int pfn_valid(unsigned long); |
| 71 | #endif |
| 72 | |
| 73 | #include <asm/memory.h> |
| 74 | |
| 75 | #endif /* !__ASSEMBLY__ */ |
| 76 | |
| 77 | #define VM_DATA_DEFAULT_FLAGS \ |
| 78 | (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \ |
| 79 | VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) |
| 80 | |
| 81 | #include <asm-generic/getorder.h> |
| 82 | |
| 83 | #endif |