blob: 17b45f7d96d3e3f7668bcc93dd914dbde8bd1e84 [file] [log] [blame]
Catalin Marinas1d18c472012-03-05 11:49:27 +00001/*
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 Morse81226452016-04-27 17:47:08 +010022#include <linux/const.h>
23
Catalin Marinas1d18c472012-03-05 11:49:27 +000024/* PAGE_SHIFT determines the page size */
Jeremy Linton2ff44392015-10-07 12:00:19 -050025/* CONT_SHIFT determines the number of pages which can be tracked together */
Catalin Marinas1d18c472012-03-05 11:49:27 +000026#ifdef CONFIG_ARM64_64K_PAGES
27#define PAGE_SHIFT 16
Jeremy Linton2ff44392015-10-07 12:00:19 -050028#define CONT_SHIFT 5
Suzuki K. Poulose44eaacf2015-10-19 14:19:37 +010029#elif defined(CONFIG_ARM64_16K_PAGES)
30#define PAGE_SHIFT 14
31#define CONT_SHIFT 7
Catalin Marinas1d18c472012-03-05 11:49:27 +000032#else
33#define PAGE_SHIFT 12
Jeremy Linton2ff44392015-10-07 12:00:19 -050034#define CONT_SHIFT 4
Catalin Marinas1d18c472012-03-05 11:49:27 +000035#endif
Jeremy Linton2ff44392015-10-07 12:00:19 -050036#define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
Catalin Marinas1d18c472012-03-05 11:49:27 +000037#define PAGE_MASK (~(PAGE_SIZE-1))
38
Jeremy Linton2ff44392015-10-07 12:00:19 -050039#define CONT_SIZE (_AC(1, UL) << (CONT_SHIFT + PAGE_SHIFT))
40#define CONT_MASK (~(CONT_SIZE-1))
41
Catalin Marinas1d18c472012-03-05 11:49:27 +000042#ifndef __ASSEMBLY__
43
Mark Brown3e275c62016-01-28 12:18:28 +000044#include <linux/personality.h> /* for READ_IMPLIES_EXEC */
Catalin Marinas0f174022014-07-15 16:35:38 +010045#include <asm/pgtable-types.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000046
47extern void __cpu_clear_user_page(void *p, unsigned long user);
48extern void __cpu_copy_user_page(void *to, const void *from,
49 unsigned long user);
50extern void copy_page(void *to, const void *from);
51extern void clear_page(void *to);
52
53#define clear_user_page(addr,vaddr,pg) __cpu_clear_user_page(addr, vaddr)
54#define copy_user_page(to,from,vaddr,pg) __cpu_copy_user_page(to, from, vaddr)
55
56typedef struct page *pgtable_t;
57
58#ifdef CONFIG_HAVE_ARCH_PFN_VALID
59extern int pfn_valid(unsigned long);
60#endif
61
62#include <asm/memory.h>
63
64#endif /* !__ASSEMBLY__ */
65
66#define VM_DATA_DEFAULT_FLAGS \
67 (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \
68 VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
69
70#include <asm-generic/getorder.h>
71
72#endif