blob: 8b0f4a29259a9358733fc19e3bed24cfccaf86ab [file] [log] [blame]
Aneesh Kumar K.V3dfcb3152015-12-01 09:06:28 +05301#ifndef _ASM_POWERPC_BOOK3S_PGTABLE_H
2#define _ASM_POWERPC_BOOK3S_PGTABLE_H
3
4#ifdef CONFIG_PPC64
5#include <asm/book3s/64/pgtable.h>
6#else
7#include <asm/book3s/32/pgtable.h>
8#endif
9
Aneesh Kumar K.Vcbbb8682015-12-01 09:06:31 +053010#define FIRST_USER_ADDRESS 0UL
Aneesh Kumar K.Vee4889c2015-12-01 09:06:32 +053011#ifndef __ASSEMBLY__
Aneesh Kumar K.Vee4889c2015-12-01 09:06:32 +053012/* Insert a PTE, top-level function is out of line. It uses an inline
13 * low level function in the respective pgtable-* files
14 */
15extern void set_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep,
16 pte_t pte);
17
Aneesh Kumar K.Vee4889c2015-12-01 09:06:32 +053018
19#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
20extern int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address,
21 pte_t *ptep, pte_t entry, int dirty);
22
Aneesh Kumar K.Vee4889c2015-12-01 09:06:32 +053023struct file;
24extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
25 unsigned long size, pgprot_t vma_prot);
26#define __HAVE_PHYS_MEM_ACCESS_PROT
27
28#endif /* __ASSEMBLY__ */
Aneesh Kumar K.V3dfcb3152015-12-01 09:06:28 +053029#endif