WIP FPC-III support
[linux/fpc-iii.git] / arch / sh / include / asm / pgtable.h
blob27751e9470df3c2ef1293cd7d02d86cdd2af39fc
1 /* SPDX-License-Identifier: GPL-2.0
3 * This file contains the functions and defines necessary to modify and
4 * use the SuperH page table tree.
6 * Copyright (C) 1999 Niibe Yutaka
7 * Copyright (C) 2002 - 2007 Paul Mundt
8 */
9 #ifndef __ASM_SH_PGTABLE_H
10 #define __ASM_SH_PGTABLE_H
12 #ifdef CONFIG_X2TLB
13 #include <asm/pgtable-3level.h>
14 #else
15 #include <asm/pgtable-2level.h>
16 #endif
17 #include <asm/page.h>
18 #include <asm/mmu.h>
20 #ifndef __ASSEMBLY__
21 #include <asm/addrspace.h>
22 #include <asm/fixmap.h>
25 * ZERO_PAGE is a global shared page that is always zero: used
26 * for zero-mapped memory areas etc..
28 extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
29 #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
31 #endif /* !__ASSEMBLY__ */
34 * Effective and physical address definitions, to aid with sign
35 * extension.
37 #define NEFF 32
38 #define NEFF_SIGN (1LL << (NEFF - 1))
39 #define NEFF_MASK (-1LL << NEFF)
41 static inline unsigned long long neff_sign_extend(unsigned long val)
43 unsigned long long extended = val;
44 return (extended & NEFF_SIGN) ? (extended | NEFF_MASK) : extended;
47 #ifdef CONFIG_29BIT
48 #define NPHYS 29
49 #else
50 #define NPHYS 32
51 #endif
53 #define NPHYS_SIGN (1LL << (NPHYS - 1))
54 #define NPHYS_MASK (-1LL << NPHYS)
56 #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
57 #define PGDIR_MASK (~(PGDIR_SIZE-1))
59 /* Entries per level */
60 #define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE))
62 #define FIRST_USER_ADDRESS 0UL
64 #define PHYS_ADDR_MASK29 0x1fffffff
65 #define PHYS_ADDR_MASK32 0xffffffff
67 static inline unsigned long phys_addr_mask(void)
69 /* Is the MMU in 29bit mode? */
70 if (__in_29bit_mode())
71 return PHYS_ADDR_MASK29;
73 return PHYS_ADDR_MASK32;
76 #define PTE_PHYS_MASK (phys_addr_mask() & PAGE_MASK)
77 #define PTE_FLAGS_MASK (~(PTE_PHYS_MASK) << PAGE_SHIFT)
79 #define VMALLOC_START (P3SEG)
80 #define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
82 #include <asm/pgtable_32.h>
85 * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page
86 * protection for execute, and considers it the same as a read. Also, write
87 * permission implies read permission. This is the closest we can get..
89 * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme,
90 * not only supporting separate execute, read, and write bits, but having
91 * completely separate permission bits for user and kernel space.
93 /*xwr*/
94 #define __P000 PAGE_NONE
95 #define __P001 PAGE_READONLY
96 #define __P010 PAGE_COPY
97 #define __P011 PAGE_COPY
98 #define __P100 PAGE_EXECREAD
99 #define __P101 PAGE_EXECREAD
100 #define __P110 PAGE_COPY
101 #define __P111 PAGE_COPY
103 #define __S000 PAGE_NONE
104 #define __S001 PAGE_READONLY
105 #define __S010 PAGE_WRITEONLY
106 #define __S011 PAGE_SHARED
107 #define __S100 PAGE_EXECREAD
108 #define __S101 PAGE_EXECREAD
109 #define __S110 PAGE_RWX
110 #define __S111 PAGE_RWX
112 typedef pte_t *pte_addr_t;
114 #define kern_addr_valid(addr) (1)
116 #define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT)))
118 struct vm_area_struct;
119 struct mm_struct;
121 extern void __update_cache(struct vm_area_struct *vma,
122 unsigned long address, pte_t pte);
123 extern void __update_tlb(struct vm_area_struct *vma,
124 unsigned long address, pte_t pte);
126 static inline void
127 update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
129 pte_t pte = *ptep;
130 __update_cache(vma, address, pte);
131 __update_tlb(vma, address, pte);
134 extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
135 extern void paging_init(void);
136 extern void page_table_range_init(unsigned long start, unsigned long end,
137 pgd_t *pgd);
139 static inline bool __pte_access_permitted(pte_t pte, u64 prot)
141 return (pte_val(pte) & (prot | _PAGE_SPECIAL)) == prot;
144 #ifdef CONFIG_X2TLB
145 static inline bool pte_access_permitted(pte_t pte, bool write)
147 u64 prot = _PAGE_PRESENT;
149 prot |= _PAGE_EXT(_PAGE_EXT_KERN_READ | _PAGE_EXT_USER_READ);
150 if (write)
151 prot |= _PAGE_EXT(_PAGE_EXT_KERN_WRITE | _PAGE_EXT_USER_WRITE);
152 return __pte_access_permitted(pte, prot);
154 #else
155 static inline bool pte_access_permitted(pte_t pte, bool write)
157 u64 prot = _PAGE_PRESENT | _PAGE_USER;
159 if (write)
160 prot |= _PAGE_RW;
161 return __pte_access_permitted(pte, prot);
163 #endif
165 #define pte_access_permitted pte_access_permitted
167 /* arch/sh/mm/mmap.c */
168 #define HAVE_ARCH_UNMAPPED_AREA
169 #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
171 #endif /* __ASM_SH_PGTABLE_H */