blob: 9e9e94415d08f13db779b0d63ea42692f0705c64 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2003 Ralf Baechle
7 */
8#ifndef _ASM_PGTABLE_H
9#define _ASM_PGTABLE_H
10
Corey Minyard5bbea362013-04-08 16:06:35 +020011#include <linux/mm_types.h>
Ralf Baechle970d0322012-10-18 13:54:15 +020012#include <linux/mmzone.h>
Ralf Baechle875d43e2005-09-03 15:56:16 -070013#ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/pgtable-32.h>
15#endif
Ralf Baechle875d43e2005-09-03 15:56:16 -070016#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/pgtable-64.h>
18#endif
19
Pete Popovf10fae02005-07-14 00:17:05 +000020#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/pgtable-bits.h>
22
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080023struct mm_struct;
24struct vm_area_struct;
25
Paul Burton780602d2016-04-19 09:25:03 +010026#define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_NO_READ | \
Ralf Baechle6d037de2016-07-01 15:01:01 +020027 _page_cachable_default)
Paul Burton780602d2016-04-19 09:25:03 +010028#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_WRITE | \
Chris Dearman35133692007-09-19 00:58:24 +010029 _page_cachable_default)
Paul Burton780602d2016-04-19 09:25:03 +010030#define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_NO_EXEC | \
Steven J. Hillbe0c37c2015-02-26 18:16:37 -060031 _page_cachable_default)
Paul Burton780602d2016-04-19 09:25:03 +010032#define PAGE_READONLY __pgprot(_PAGE_PRESENT | \
Chris Dearman35133692007-09-19 00:58:24 +010033 _page_cachable_default)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define PAGE_KERNEL __pgprot(_PAGE_PRESENT | __READABLE | __WRITEABLE | \
Chris Dearman35133692007-09-19 00:58:24 +010035 _PAGE_GLOBAL | _page_cachable_default)
Paul Burtone2a9e5a2014-03-03 12:08:40 +000036#define PAGE_KERNEL_NC __pgprot(_PAGE_PRESENT | __READABLE | __WRITEABLE | \
37 _PAGE_GLOBAL | _CACHE_CACHABLE_NONCOHERENT)
Paul Burton780602d2016-04-19 09:25:03 +010038#define PAGE_USERIO __pgprot(_PAGE_PRESENT | _PAGE_WRITE | \
Chris Dearman35133692007-09-19 00:58:24 +010039 _page_cachable_default)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define PAGE_KERNEL_UNCACHED __pgprot(_PAGE_PRESENT | __READABLE | \
41 __WRITEABLE | _PAGE_GLOBAL | _CACHE_UNCACHED)
42
43/*
David Daney6dd93442010-02-10 15:12:47 -080044 * If _PAGE_NO_EXEC is not defined, we can't do page protection for
45 * execute, and consider it to be the same as read. Also, write
46 * permissions imply read permissions. This is the closest we can get
47 * by reasonable means..
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Chris Dearman35133692007-09-19 00:58:24 +010050/*
51 * Dummy values to fill the table in mmap.c
52 * The real values will be generated at runtime
53 */
54#define __P000 __pgprot(0)
55#define __P001 __pgprot(0)
56#define __P010 __pgprot(0)
57#define __P011 __pgprot(0)
58#define __P100 __pgprot(0)
59#define __P101 __pgprot(0)
60#define __P110 __pgprot(0)
61#define __P111 __pgprot(0)
62
63#define __S000 __pgprot(0)
64#define __S001 __pgprot(0)
65#define __S010 __pgprot(0)
66#define __S011 __pgprot(0)
67#define __S100 __pgprot(0)
68#define __S101 __pgprot(0)
69#define __S110 __pgprot(0)
70#define __S111 __pgprot(0)
71
72extern unsigned long _page_cachable_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * ZERO_PAGE is a global shared page that is always zero; used
76 * for zero-mapped memory areas etc..
77 */
78
79extern unsigned long empty_zero_page;
80extern unsigned long zero_page_mask;
81
82#define ZERO_PAGE(vaddr) \
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020083 (virt_to_page((void *)(empty_zero_page + (((unsigned long)(vaddr)) & zero_page_mask))))
Kirill A. Shutemov816422a2012-12-12 13:52:36 -080084#define __HAVE_COLOR_ZERO_PAGE
Hugh Dickins62eede62009-09-21 17:03:34 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086extern void paging_init(void);
87
88/*
89 * Conversion functions: convert a page and protection to a page entry,
90 * and a page entry and page directory to the page they refer to.
91 */
Franck Bui-Huuc9d06962007-03-19 17:36:42 +010092#define pmd_phys(pmd) virt_to_phys((void *)pmd_val(pmd))
Ralf Baechle970d0322012-10-18 13:54:15 +020093
94#define __pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT))
95#ifndef CONFIG_TRANSPARENT_HUGEPAGE
96#define pmd_page(pmd) __pmd_page(pmd)
97#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
98
Dave McCracken46a82b22006-09-25 23:31:48 -070099#define pmd_page_vaddr(pmd) pmd_val(pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Markos Chandrasf1014d12014-07-14 12:47:09 +0100101#define htw_stop() \
102do { \
Markos Chandrased4cbc82015-01-26 13:04:33 +0000103 unsigned long flags; \
104 \
Markos Chandras461d15972015-01-26 09:40:34 +0000105 if (cpu_has_htw) { \
Markos Chandrased4cbc82015-01-26 13:04:33 +0000106 local_irq_save(flags); \
107 if(!raw_current_cpu_data.htw_seq++) { \
108 write_c0_pwctl(read_c0_pwctl() & \
109 ~(1 << MIPS_PWCTL_PWEN_SHIFT)); \
110 back_to_back_c0_hazard(); \
111 } \
112 local_irq_restore(flags); \
Markos Chandras461d15972015-01-26 09:40:34 +0000113 } \
Markos Chandrasf1014d12014-07-14 12:47:09 +0100114} while(0)
115
116#define htw_start() \
117do { \
Markos Chandrased4cbc82015-01-26 13:04:33 +0000118 unsigned long flags; \
119 \
Markos Chandrasf1014d12014-07-14 12:47:09 +0100120 if (cpu_has_htw) { \
Markos Chandrased4cbc82015-01-26 13:04:33 +0000121 local_irq_save(flags); \
122 if (!--raw_current_cpu_data.htw_seq) { \
123 write_c0_pwctl(read_c0_pwctl() | \
124 (1 << MIPS_PWCTL_PWEN_SHIFT)); \
125 back_to_back_c0_hazard(); \
126 } \
127 local_irq_restore(flags); \
Markos Chandrasf1014d12014-07-14 12:47:09 +0100128 } \
129} while(0)
130
Paul Burton37d22a0d2016-03-01 02:37:59 +0000131static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
132 pte_t *ptep, pte_t pteval);
133
Ralf Baechle34adb282014-11-22 00:16:48 +0100134#if defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400135
Paul Burton7b2cb642016-04-19 09:25:05 +0100136#ifdef CONFIG_XPA
137# define pte_none(pte) (!(((pte).pte_high) & ~_PAGE_GLOBAL))
138#else
139# define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL))
140#endif
141
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400142#define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT)
Paul Burton37d22a0d2016-03-01 02:37:59 +0000143#define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC)
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static inline void set_pte(pte_t *ptep, pte_t pte)
146{
147 ptep->pte_high = pte.pte_high;
148 smp_wmb();
149 ptep->pte_low = pte.pte_low;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Paul Burton7b2cb642016-04-19 09:25:05 +0100151#ifdef CONFIG_XPA
Steven J. Hillc5b36782015-02-26 18:16:38 -0600152 if (pte.pte_high & _PAGE_GLOBAL) {
Paul Burton7b2cb642016-04-19 09:25:05 +0100153#else
154 if (pte.pte_low & _PAGE_GLOBAL) {
155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 pte_t *buddy = ptep_buddy(ptep);
157 /*
158 * Make sure the buddy is global too (if it's !none,
159 * it better already be global)
160 */
Paul Burton7b2cb642016-04-19 09:25:05 +0100161 if (pte_none(*buddy)) {
Masahiro Yamada97f26452016-08-03 13:45:50 -0700162 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100163 buddy->pte_low |= _PAGE_GLOBAL;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400164 buddy->pte_high |= _PAGE_GLOBAL;
Paul Burton7b2cb642016-04-19 09:25:05 +0100165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
170{
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400171 pte_t null = __pte(0);
172
Markos Chandrasfde35382015-01-26 09:40:36 +0000173 htw_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* Preserve global status for the pair */
Masahiro Yamada97f26452016-08-03 13:45:50 -0700175 if (IS_ENABLED(CONFIG_XPA)) {
Paul Burton7b2cb642016-04-19 09:25:05 +0100176 if (ptep_buddy(ptep)->pte_high & _PAGE_GLOBAL)
177 null.pte_high = _PAGE_GLOBAL;
178 } else {
179 if (ptep_buddy(ptep)->pte_low & _PAGE_GLOBAL)
180 null.pte_low = null.pte_high = _PAGE_GLOBAL;
181 }
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400182
183 set_pte_at(mm, addr, ptep, null);
Markos Chandrasfde35382015-01-26 09:40:36 +0000184 htw_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186#else
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400187
188#define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL))
189#define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
Paul Burton37d22a0d2016-03-01 02:37:59 +0000190#define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC)
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
193 * Certain architectures need to do special things when pte's
194 * within a page table are directly modified. Thus, the following
195 * hook is made available.
196 */
197static inline void set_pte(pte_t *ptep, pte_t pteval)
198{
199 *ptep = pteval;
200#if !defined(CONFIG_CPU_R3000) && !defined(CONFIG_CPU_TX39XX)
201 if (pte_val(pteval) & _PAGE_GLOBAL) {
202 pte_t *buddy = ptep_buddy(ptep);
203 /*
204 * Make sure the buddy is global too (if it's !none,
205 * it better already be global)
206 */
David Daney46011e62015-08-03 17:48:43 -0700207#ifdef CONFIG_SMP
208 /*
209 * For SMP, multiple CPUs can race, so we need to do
210 * this atomically.
211 */
David Daney46011e62015-08-03 17:48:43 -0700212 unsigned long page_global = _PAGE_GLOBAL;
213 unsigned long tmp;
214
Joshua Kinard12863932015-09-07 06:42:30 -0400215 if (kernel_uses_llsc && R10000_LLSC_WAR) {
216 __asm__ __volatile__ (
217 " .set arch=r4000 \n"
218 " .set push \n"
219 " .set noreorder \n"
220 "1:" __LL "%[tmp], %[buddy] \n"
221 " bnez %[tmp], 2f \n"
222 " or %[tmp], %[tmp], %[global] \n"
223 __SC "%[tmp], %[buddy] \n"
224 " beqzl %[tmp], 1b \n"
225 " nop \n"
226 "2: \n"
227 " .set pop \n"
228 " .set mips0 \n"
229 : [buddy] "+m" (buddy->pte), [tmp] "=&r" (tmp)
David Daney46011e62015-08-03 17:48:43 -0700230 : [global] "r" (page_global));
Joshua Kinard12863932015-09-07 06:42:30 -0400231 } else if (kernel_uses_llsc) {
232 __asm__ __volatile__ (
233 " .set "MIPS_ISA_ARCH_LEVEL" \n"
234 " .set push \n"
235 " .set noreorder \n"
236 "1:" __LL "%[tmp], %[buddy] \n"
237 " bnez %[tmp], 2f \n"
238 " or %[tmp], %[tmp], %[global] \n"
239 __SC "%[tmp], %[buddy] \n"
240 " beqz %[tmp], 1b \n"
241 " nop \n"
242 "2: \n"
243 " .set pop \n"
244 " .set mips0 \n"
245 : [buddy] "+m" (buddy->pte), [tmp] "=&r" (tmp)
246 : [global] "r" (page_global));
247 }
David Daney46011e62015-08-03 17:48:43 -0700248#else /* !CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (pte_none(*buddy))
250 pte_val(*buddy) = pte_val(*buddy) | _PAGE_GLOBAL;
David Daney46011e62015-08-03 17:48:43 -0700251#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253#endif
254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
257{
Markos Chandrasfde35382015-01-26 09:40:36 +0000258 htw_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#if !defined(CONFIG_CPU_R3000) && !defined(CONFIG_CPU_TX39XX)
260 /* Preserve global status for the pair */
261 if (pte_val(*ptep_buddy(ptep)) & _PAGE_GLOBAL)
262 set_pte_at(mm, addr, ptep, __pte(_PAGE_GLOBAL));
263 else
264#endif
265 set_pte_at(mm, addr, ptep, __pte(0));
Markos Chandrasfde35382015-01-26 09:40:36 +0000266 htw_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268#endif
269
Paul Burton37d22a0d2016-03-01 02:37:59 +0000270static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
271 pte_t *ptep, pte_t pteval)
272{
273 extern void __update_cache(unsigned long address, pte_t pte);
274
275 if (!pte_present(pteval))
276 goto cache_sync_done;
277
278 if (pte_present(*ptep) && (pte_pfn(*ptep) == pte_pfn(pteval)))
279 goto cache_sync_done;
280
281 __update_cache(addr, pteval);
282cache_sync_done:
283 set_pte(ptep, pteval);
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000287 * (pmds are folded into puds so this doesn't get actually called,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 * but the define is needed for a generic inline function.)
289 */
290#define set_pmd(pmdptr, pmdval) do { *(pmdptr) = (pmdval); } while(0)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000291
David Daney325f8a02009-12-04 13:52:36 -0800292#ifndef __PAGETABLE_PMD_FOLDED
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000293/*
294 * (puds are folded into pgds so this doesn't get actually called,
295 * but the define is needed for a generic inline function.)
296 */
297#define set_pud(pudptr, pudval) do { *(pudptr) = (pudval); } while(0)
298#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Ralf Baechle5ff97472007-08-01 15:25:28 +0100300#define PGD_T_LOG2 (__builtin_ffs(sizeof(pgd_t)) - 1)
301#define PMD_T_LOG2 (__builtin_ffs(sizeof(pmd_t)) - 1)
302#define PTE_T_LOG2 (__builtin_ffs(sizeof(pte_t)) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Ralf Baechle9975e772007-08-13 12:44:41 +0100304/*
305 * We used to declare this array with size but gcc 3.3 and older are not able
306 * to find that this expression is a constant, so the size is dropped.
307 */
308extern pgd_t swapper_pg_dir[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310/*
311 * The following only work if pte_present() is true.
312 * Undefined behaviour if not..
313 */
Ralf Baechle34adb282014-11-22 00:16:48 +0100314#if defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400315static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
316static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
317static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319static inline pte_t pte_wrprotect(pte_t pte)
320{
Steven J. Hillc5b36782015-02-26 18:16:38 -0600321 pte.pte_low &= ~_PAGE_WRITE;
Masahiro Yamada97f26452016-08-03 13:45:50 -0700322 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100323 pte.pte_low &= ~_PAGE_SILENT_WRITE;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400324 pte.pte_high &= ~_PAGE_SILENT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return pte;
326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static inline pte_t pte_mkclean(pte_t pte)
329{
Steven J. Hillc5b36782015-02-26 18:16:38 -0600330 pte.pte_low &= ~_PAGE_MODIFIED;
Masahiro Yamada97f26452016-08-03 13:45:50 -0700331 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100332 pte.pte_low &= ~_PAGE_SILENT_WRITE;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400333 pte.pte_high &= ~_PAGE_SILENT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return pte;
335}
336
337static inline pte_t pte_mkold(pte_t pte)
338{
Steven J. Hillc5b36782015-02-26 18:16:38 -0600339 pte.pte_low &= ~_PAGE_ACCESSED;
Masahiro Yamada97f26452016-08-03 13:45:50 -0700340 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100341 pte.pte_low &= ~_PAGE_SILENT_READ;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400342 pte.pte_high &= ~_PAGE_SILENT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return pte;
344}
345
346static inline pte_t pte_mkwrite(pte_t pte)
347{
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400348 pte.pte_low |= _PAGE_WRITE;
Paul Burton7b2cb642016-04-19 09:25:05 +0100349 if (pte.pte_low & _PAGE_MODIFIED) {
Masahiro Yamada97f26452016-08-03 13:45:50 -0700350 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100351 pte.pte_low |= _PAGE_SILENT_WRITE;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400352 pte.pte_high |= _PAGE_SILENT_WRITE;
Paul Burton7b2cb642016-04-19 09:25:05 +0100353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return pte;
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357static inline pte_t pte_mkdirty(pte_t pte)
358{
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400359 pte.pte_low |= _PAGE_MODIFIED;
Paul Burton7b2cb642016-04-19 09:25:05 +0100360 if (pte.pte_low & _PAGE_WRITE) {
Masahiro Yamada97f26452016-08-03 13:45:50 -0700361 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100362 pte.pte_low |= _PAGE_SILENT_WRITE;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400363 pte.pte_high |= _PAGE_SILENT_WRITE;
Paul Burton7b2cb642016-04-19 09:25:05 +0100364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return pte;
366}
367
368static inline pte_t pte_mkyoung(pte_t pte)
369{
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400370 pte.pte_low |= _PAGE_ACCESSED;
Paul Burton7b2cb642016-04-19 09:25:05 +0100371 if (!(pte.pte_low & _PAGE_NO_READ)) {
Masahiro Yamada97f26452016-08-03 13:45:50 -0700372 if (!IS_ENABLED(CONFIG_XPA))
Paul Burton7b2cb642016-04-19 09:25:05 +0100373 pte.pte_low |= _PAGE_SILENT_READ;
Sergei Shtylyov6e953892006-04-16 23:27:21 +0400374 pte.pte_high |= _PAGE_SILENT_READ;
Paul Burton7b2cb642016-04-19 09:25:05 +0100375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return pte;
377}
378#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
380static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
381static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383static inline pte_t pte_wrprotect(pte_t pte)
384{
385 pte_val(pte) &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE);
386 return pte;
387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389static inline pte_t pte_mkclean(pte_t pte)
390{
Steven J. Hill77a5c592014-11-13 09:52:01 -0600391 pte_val(pte) &= ~(_PAGE_MODIFIED | _PAGE_SILENT_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return pte;
393}
394
395static inline pte_t pte_mkold(pte_t pte)
396{
Steven J. Hill77a5c592014-11-13 09:52:01 -0600397 pte_val(pte) &= ~(_PAGE_ACCESSED | _PAGE_SILENT_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return pte;
399}
400
401static inline pte_t pte_mkwrite(pte_t pte)
402{
403 pte_val(pte) |= _PAGE_WRITE;
404 if (pte_val(pte) & _PAGE_MODIFIED)
405 pte_val(pte) |= _PAGE_SILENT_WRITE;
406 return pte;
407}
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static inline pte_t pte_mkdirty(pte_t pte)
410{
411 pte_val(pte) |= _PAGE_MODIFIED;
412 if (pte_val(pte) & _PAGE_WRITE)
413 pte_val(pte) |= _PAGE_SILENT_WRITE;
414 return pte;
415}
416
417static inline pte_t pte_mkyoung(pte_t pte)
418{
419 pte_val(pte) |= _PAGE_ACCESSED;
Steven J. Hillbe0c37c2015-02-26 18:16:37 -0600420 if (!(pte_val(pte) & _PAGE_NO_READ))
421 pte_val(pte) |= _PAGE_SILENT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return pte;
423}
David Daneydd794392009-05-27 17:47:43 -0700424
Steven J. Hill05f98832015-02-19 10:18:50 -0600425#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneydd794392009-05-27 17:47:43 -0700426static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
427
428static inline pte_t pte_mkhuge(pte_t pte)
429{
430 pte_val(pte) |= _PAGE_HUGE;
431 return pte;
432}
Steven J. Hill05f98832015-02-19 10:18:50 -0600433#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#endif
Nick Piggin7e675132008-04-28 02:13:00 -0700435static inline int pte_special(pte_t pte) { return 0; }
436static inline pte_t pte_mkspecial(pte_t pte) { return pte; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438/*
Ralf Baechle70342282013-01-22 12:59:30 +0100439 * Macro to make mark a page protection value as "uncacheable". Note
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * that "protection" is really a misnomer here as the protection value
441 * contains the memory attribute bits, dirty bits, and various other
442 * bits as well.
443 */
444#define pgprot_noncached pgprot_noncached
445
446static inline pgprot_t pgprot_noncached(pgprot_t _prot)
447{
448 unsigned long prot = pgprot_val(_prot);
449
450 prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED;
451
452 return __pgprot(prot);
453}
454
Alex Smithc4687b12015-07-24 16:16:10 +0100455#define pgprot_writecombine pgprot_writecombine
456
Markos Chandras4b050ba2014-07-18 10:51:33 +0100457static inline pgprot_t pgprot_writecombine(pgprot_t _prot)
458{
459 unsigned long prot = pgprot_val(_prot);
460
461 /* cpu_data[0].writecombine is already shifted by _CACHE_SHIFT */
462 prot = (prot & ~_CACHE_MASK) | cpu_data[0].writecombine;
463
464 return __pgprot(prot);
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/*
468 * Conversion functions: convert a page and protection to a page entry,
469 * and a page entry and page directory to the page they refer to.
470 */
471#define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
472
Paul Burton7b2cb642016-04-19 09:25:05 +0100473#if defined(CONFIG_XPA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
475{
Steven J. Hillc5b36782015-02-26 18:16:38 -0600476 pte.pte_low &= (_PAGE_MODIFIED | _PAGE_ACCESSED | _PFNX_MASK);
Steven J. Hill77a5c592014-11-13 09:52:01 -0600477 pte.pte_high &= (_PFN_MASK | _CACHE_MASK);
Steven J. Hillc5b36782015-02-26 18:16:38 -0600478 pte.pte_low |= pgprot_val(newprot) & ~_PFNX_MASK;
Ralf Baechle6d037de2016-07-01 15:01:01 +0200479 pte.pte_high |= pgprot_val(newprot) & ~(_PFN_MASK | _CACHE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return pte;
481}
Paul Burton7b2cb642016-04-19 09:25:05 +0100482#elif defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
483static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
484{
485 pte.pte_low &= _PAGE_CHG_MASK;
486 pte.pte_high &= (_PFN_MASK | _CACHE_MASK);
487 pte.pte_low |= pgprot_val(newprot);
488 pte.pte_high |= pgprot_val(newprot) & ~(_PFN_MASK | _CACHE_MASK);
489 return pte;
490}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#else
492static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
493{
Ralf Baechle6d037de2016-07-01 15:01:01 +0200494 return __pte((pte_val(pte) & _PAGE_CHG_MASK) |
495 (pgprot_val(newprot) & ~_PAGE_CHG_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497#endif
498
499
500extern void __update_tlb(struct vm_area_struct *vma, unsigned long address,
501 pte_t pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503static inline void update_mmu_cache(struct vm_area_struct *vma,
Russell King4b3073e2009-12-18 16:40:18 +0000504 unsigned long address, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Russell King4b3073e2009-12-18 16:40:18 +0000506 pte_t pte = *ptep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 __update_tlb(vma, address, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Ralf Baechle970d0322012-10-18 13:54:15 +0200510static inline void update_mmu_cache_pmd(struct vm_area_struct *vma,
511 unsigned long address, pmd_t *pmdp)
512{
513 pte_t pte = *(pte_t *)pmdp;
514
515 __update_tlb(vma, address, pte);
516}
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#define kern_addr_valid(addr) (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Ralf Baechle34adb282014-11-22 00:16:48 +0100520#ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521extern int remap_pfn_range(struct vm_area_struct *vma, unsigned long from, unsigned long pfn, unsigned long size, pgprot_t prot);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523static inline int io_remap_pfn_range(struct vm_area_struct *vma,
524 unsigned long vaddr,
525 unsigned long pfn,
526 unsigned long size,
527 pgprot_t prot)
528{
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100529 phys_addr_t phys_addr_high = fixup_bigphys_addr(pfn << PAGE_SHIFT, size);
Thiemo Seuferac5d8c02005-04-11 12:24:16 +0000530 return remap_pfn_range(vma, vaddr, phys_addr_high >> PAGE_SHIFT, size, prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
Al Viro40d158e2013-05-11 12:13:10 -0400532#define io_remap_pfn_range io_remap_pfn_range
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533#endif
534
Ralf Baechle970d0322012-10-18 13:54:15 +0200535#ifdef CONFIG_TRANSPARENT_HUGEPAGE
536
Hugh Dickinsfd8cfd32016-05-19 17:13:00 -0700537#define has_transparent_hugepage has_transparent_hugepage
Ralf Baechle970d0322012-10-18 13:54:15 +0200538extern int has_transparent_hugepage(void);
539
540static inline int pmd_trans_huge(pmd_t pmd)
541{
542 return !!(pmd_val(pmd) & _PAGE_HUGE);
543}
544
545static inline pmd_t pmd_mkhuge(pmd_t pmd)
546{
547 pmd_val(pmd) |= _PAGE_HUGE;
548
549 return pmd;
550}
551
Ralf Baechle970d0322012-10-18 13:54:15 +0200552extern void set_pmd_at(struct mm_struct *mm, unsigned long addr,
553 pmd_t *pmdp, pmd_t pmd);
554
Ralf Baechle970d0322012-10-18 13:54:15 +0200555#define __HAVE_ARCH_PMD_WRITE
556static inline int pmd_write(pmd_t pmd)
557{
558 return !!(pmd_val(pmd) & _PAGE_WRITE);
559}
560
561static inline pmd_t pmd_wrprotect(pmd_t pmd)
562{
563 pmd_val(pmd) &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE);
564 return pmd;
565}
566
567static inline pmd_t pmd_mkwrite(pmd_t pmd)
568{
569 pmd_val(pmd) |= _PAGE_WRITE;
570 if (pmd_val(pmd) & _PAGE_MODIFIED)
571 pmd_val(pmd) |= _PAGE_SILENT_WRITE;
572
573 return pmd;
574}
575
576static inline int pmd_dirty(pmd_t pmd)
577{
578 return !!(pmd_val(pmd) & _PAGE_MODIFIED);
579}
580
581static inline pmd_t pmd_mkclean(pmd_t pmd)
582{
583 pmd_val(pmd) &= ~(_PAGE_MODIFIED | _PAGE_SILENT_WRITE);
584 return pmd;
585}
586
587static inline pmd_t pmd_mkdirty(pmd_t pmd)
588{
589 pmd_val(pmd) |= _PAGE_MODIFIED;
590 if (pmd_val(pmd) & _PAGE_WRITE)
591 pmd_val(pmd) |= _PAGE_SILENT_WRITE;
592
593 return pmd;
594}
595
596static inline int pmd_young(pmd_t pmd)
597{
598 return !!(pmd_val(pmd) & _PAGE_ACCESSED);
599}
600
601static inline pmd_t pmd_mkold(pmd_t pmd)
602{
603 pmd_val(pmd) &= ~(_PAGE_ACCESSED|_PAGE_SILENT_READ);
604
605 return pmd;
606}
607
608static inline pmd_t pmd_mkyoung(pmd_t pmd)
609{
610 pmd_val(pmd) |= _PAGE_ACCESSED;
611
Steven J. Hillbe0c37c2015-02-26 18:16:37 -0600612 if (!(pmd_val(pmd) & _PAGE_NO_READ))
613 pmd_val(pmd) |= _PAGE_SILENT_READ;
Ralf Baechle970d0322012-10-18 13:54:15 +0200614
615 return pmd;
616}
617
618/* Extern to avoid header file madness */
619extern pmd_t mk_pmd(struct page *page, pgprot_t prot);
620
621static inline unsigned long pmd_pfn(pmd_t pmd)
622{
623 return pmd_val(pmd) >> _PFN_SHIFT;
624}
625
626static inline struct page *pmd_page(pmd_t pmd)
627{
628 if (pmd_trans_huge(pmd))
629 return pfn_to_page(pmd_pfn(pmd));
630
631 return pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT);
632}
633
634static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
635{
David Daney88d02a22016-06-16 15:50:31 -0700636 pmd_val(pmd) = (pmd_val(pmd) & (_PAGE_CHG_MASK | _PAGE_HUGE)) |
Ralf Baechle6d037de2016-07-01 15:01:01 +0200637 (pgprot_val(newprot) & ~_PAGE_CHG_MASK);
Ralf Baechle970d0322012-10-18 13:54:15 +0200638 return pmd;
639}
640
641static inline pmd_t pmd_mknotpresent(pmd_t pmd)
642{
643 pmd_val(pmd) &= ~(_PAGE_PRESENT | _PAGE_VALID | _PAGE_DIRTY);
644
645 return pmd;
646}
647
648/*
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -0700649 * The generic version pmdp_huge_get_and_clear uses a version of pmd_clear() with a
Ralf Baechle970d0322012-10-18 13:54:15 +0200650 * different prototype.
651 */
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -0700652#define __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR
653static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm,
654 unsigned long address, pmd_t *pmdp)
Ralf Baechle970d0322012-10-18 13:54:15 +0200655{
656 pmd_t old = *pmdp;
657
658 pmd_clear(pmdp);
659
660 return old;
661}
662
663#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#include <asm-generic/pgtable.h>
666
667/*
Wu Zhangjin22f1fdf2009-11-11 13:59:23 +0800668 * uncached accelerated TLB map for video memory access
669 */
670#ifdef CONFIG_CPU_SUPPORTS_UNCACHED_ACCELERATED
671#define __HAVE_PHYS_MEM_ACCESS_PROT
672
673struct file;
674pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
675 unsigned long size, pgprot_t vma_prot);
Wu Zhangjin22f1fdf2009-11-11 13:59:23 +0800676#endif
677
678/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * We provide our own get_unmapped area to cope with the virtual aliasing
680 * constraints placed on us by the cache architecture.
681 */
682#define HAVE_ARCH_UNMAPPED_AREA
Jian Pengd0be89f2011-05-17 12:27:49 -0700683#define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/*
686 * No page table caches to initialise
687 */
688#define pgtable_cache_init() do { } while (0)
689
690#endif /* _ASM_PGTABLE_H */