blob: 5f987598054f906dea71ad364b2be9cc8c74355e [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) 1994 - 1999, 2000, 03 Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_PAGE_H
10#define _ASM_PAGE_H
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <spaces.h>
Nelson Elhage99502d92009-07-31 16:58:17 -040013#include <linux/const.h>
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000014#include <linux/kernel.h>
15#include <asm/mipsregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
18 * PAGE_SHIFT determines the page size
19 */
20#ifdef CONFIG_PAGE_SIZE_4KB
21#define PAGE_SHIFT 12
22#endif
23#ifdef CONFIG_PAGE_SIZE_8KB
24#define PAGE_SHIFT 13
25#endif
26#ifdef CONFIG_PAGE_SIZE_16KB
27#define PAGE_SHIFT 14
28#endif
Ralf Baechlec52399b2009-04-02 14:07:10 +020029#ifdef CONFIG_PAGE_SIZE_32KB
30#define PAGE_SHIFT 15
31#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#ifdef CONFIG_PAGE_SIZE_64KB
33#define PAGE_SHIFT 16
34#endif
Nelson Elhage99502d92009-07-31 16:58:17 -040035#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
Dan Williams800dc4f2016-01-22 09:20:37 -080036#define PAGE_MASK (~((1 << PAGE_SHIFT) - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000038/*
39 * This is used for calculating the real page sizes
Geert Uytterhoeven91ff7ac2014-08-25 10:50:12 +020040 * for FTLB or VTLB + FTLB configurations.
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000041 */
42static inline unsigned int page_size_ftlb(unsigned int mmuextdef)
43{
44 switch (mmuextdef) {
45 case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT:
46 if (PAGE_SIZE == (1 << 30))
47 return 5;
48 if (PAGE_SIZE == (1llu << 32))
49 return 6;
50 if (PAGE_SIZE > (256 << 10))
51 return 7; /* reserved */
52 /* fall through */
53 case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT:
54 return (PAGE_SHIFT - 10) / 2;
55 default:
56 panic("Invalid FTLB configuration with Conf4_mmuextdef=%d value\n",
57 mmuextdef >> 14);
58 }
59}
60
David Daneyaa1762f2012-10-17 00:48:10 +020061#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneydd794392009-05-27 17:47:43 -070062#define HPAGE_SHIFT (PAGE_SHIFT + PAGE_SHIFT - 3)
Nelson Elhage99502d92009-07-31 16:58:17 -040063#define HPAGE_SIZE (_AC(1,UL) << HPAGE_SHIFT)
David Daneydd794392009-05-27 17:47:43 -070064#define HPAGE_MASK (~(HPAGE_SIZE - 1))
65#define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT)
David Daneyaa1762f2012-10-17 00:48:10 +020066#else /* !CONFIG_MIPS_HUGE_TLB_SUPPORT */
Hillf Dantonf467e4bf2012-01-11 15:37:13 +010067#define HPAGE_SHIFT ({BUILD_BUG(); 0; })
68#define HPAGE_SIZE ({BUILD_BUG(); 0; })
69#define HPAGE_MASK ({BUILD_BUG(); 0; })
70#define HUGETLB_PAGE_ORDER ({BUILD_BUG(); 0; })
David Daneyaa1762f2012-10-17 00:48:10 +020071#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daneydd794392009-05-27 17:47:43 -070072
Franck Bui-Huu41b04832007-06-04 17:46:34 +020073#include <linux/pfn.h>
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010074
Dmitri Vorobievc29d1502008-07-15 19:57:32 +030075extern void build_clear_page(void);
76extern void build_copy_page(void);
77
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010078/*
79 * It's normally defined only for FLATMEM config but it's
80 * used in our early mem init code for all memory models.
81 * So always define it.
82 */
83#define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET)
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085extern void clear_page(void * page);
86extern void copy_page(void * to, void * from);
87
88extern unsigned long shm_align_mask;
89
90static inline unsigned long pages_do_alias(unsigned long addr1,
91 unsigned long addr2)
92{
93 return (addr1 ^ addr2) & shm_align_mask;
94}
95
96struct page;
97
98static inline void clear_user_page(void *addr, unsigned long vaddr,
99 struct page *page)
100{
101 extern void (*flush_data_cache_page)(unsigned long addr);
102
103 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +0100104 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 flush_data_cache_page((unsigned long)addr);
106}
107
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000108struct vm_area_struct;
109extern void copy_user_highpage(struct page *to, struct page *from,
110 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000112#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/*
115 * These are used to make use of C type-checking..
116 */
Ralf Baechle34adb282014-11-22 00:16:48 +0100117#ifdef CONFIG_PHYS_ADDR_T_64BIT
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100118 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 typedef struct { unsigned long pte_low, pte_high; } pte_t;
Ralf Baechle70342282013-01-22 12:59:30 +0100120 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
121 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 #else
123 typedef struct { unsigned long long pte; } pte_t;
Ralf Baechle70342282013-01-22 12:59:30 +0100124 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +0100125 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 #endif
127#else
128typedef struct { unsigned long pte; } pte_t;
129#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000130#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +0100131#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800132typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000133
134/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000135 * Right now we don't support 4-level pagetables, so all pud-related
136 * definitions come from <asm-generic/pgtable-nopud.h>.
137 */
138
139/*
140 * Finall the top of the hierarchy, the pgd
141 */
142typedef struct { unsigned long pgd; } pgd_t;
143#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000145
146/*
147 * Manipulate page protection bits
148 */
149typedef struct { unsigned long pgprot; } pgprot_t;
150#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#define __pgprot(x) ((pgprot_t) { (x) } )
152
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000153/*
154 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
155 * pair of pages we only have a single global bit per pair of pages. When
156 * writing to the TLB make sure we always have the bit set for both pages
157 * or none. This macro is used to access the `buddy' of the pte we're just
158 * working on.
159 */
160#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
161
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100162/*
163 * __pa()/__va() should be used only during mem init.
164 */
Paul Burton0d8d83d2016-08-02 11:40:57 +0100165static inline unsigned long ___pa(unsigned long x)
166{
Masahiro Yamadaa5ff1b32016-08-25 15:17:02 -0700167 if (IS_ENABLED(CONFIG_64BIT)) {
Paul Burton0d8d83d2016-08-02 11:40:57 +0100168 /*
169 * For MIPS64 the virtual address may either be in one of
170 * the compatibility segements ckseg0 or ckseg1, or it may
171 * be in xkphys.
172 */
173 return x < CKSEG0 ? XPHYSADDR(x) : CPHYSADDR(x);
174 }
175
Masahiro Yamadaa5ff1b32016-08-25 15:17:02 -0700176 if (!IS_ENABLED(CONFIG_EVA)) {
Paul Burton0d8d83d2016-08-02 11:40:57 +0100177 /*
178 * We're using the standard MIPS32 legacy memory map, ie.
179 * the address x is going to be in kseg0 or kseg1. We can
180 * handle either case by masking out the desired bits using
181 * CPHYSADDR.
182 */
183 return CPHYSADDR(x);
184 }
185
186 /*
187 * EVA is in use so the memory map could be anything, making it not
188 * safe to just mask out bits.
189 */
190 return x - PAGE_OFFSET + PHYS_OFFSET;
191}
192#define __pa(x) ___pa((unsigned long)(x))
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100193#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
David Daney49c426b2013-05-07 17:11:16 +0000194#include <asm/io.h>
Ralf Baechle5707bf62010-08-17 16:01:59 +0100195
196/*
197 * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad
198 * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org). The
199 * discussion can be found in lkml posting
200 * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is
201 * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html
202 *
203 * It is unclear if the misscompilations mentioned in
204 * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one
205 * until GCC 3.x has been retired before we can apply
206 * https://patchwork.linux-mips.org/patch/1541/
207 */
208
Leonid Yegoshin27b3db22014-01-09 13:06:34 +0000209#ifndef __pa_symbol
Ralf Baechle21a151d2007-10-11 23:46:15 +0100210#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Leonid Yegoshin27b3db22014-01-09 13:06:34 +0000211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
214
Ralf Baechlee53639d2006-06-12 09:13:56 +0100215#ifdef CONFIG_FLATMEM
216
Ralf Baechle8b923212013-05-18 17:02:59 +0200217static inline int pfn_valid(unsigned long pfn)
218{
219 /* avoid <linux/mm.h> include hell */
220 extern unsigned long max_mapnr;
Ralf Baechle95486e42015-11-16 12:07:10 +0100221 unsigned long pfn_offset = ARCH_PFN_OFFSET;
Ralf Baechle8b923212013-05-18 17:02:59 +0200222
Ralf Baechle95486e42015-11-16 12:07:10 +0100223 return pfn >= pfn_offset && pfn < max_mapnr;
Ralf Baechle8b923212013-05-18 17:02:59 +0200224}
Ralf Baechlee53639d2006-06-12 09:13:56 +0100225
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900226#elif defined(CONFIG_SPARSEMEM)
227
228/* pfn_valid is defined in linux/mmzone.h */
229
Ralf Baechlee53639d2006-06-12 09:13:56 +0100230#elif defined(CONFIG_NEED_MULTIPLE_NODES)
231
232#define pfn_valid(pfn) \
233({ \
234 unsigned long __pfn = (pfn); \
235 int __n = pfn_to_nid(__pfn); \
236 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
Ralf Baechle70342282013-01-22 12:59:30 +0100237 NODE_DATA(__n)->node_spanned_pages) \
238 : 0); \
Ralf Baechlee53639d2006-06-12 09:13:56 +0100239})
240
Ralf Baechlee53639d2006-06-12 09:13:56 +0100241#endif
242
Zubair Lutfullah Kakakhel4d5b3bd2014-07-14 16:39:19 +0100243#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys((void *) \
244 (kaddr))))
Ralf Baechled3ce8842012-12-28 15:34:40 +0100245
246extern int __virt_addr_valid(const volatile void *kaddr);
247#define virt_addr_valid(kaddr) \
248 __virt_addr_valid((const volatile void *) (kaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Paul Burton1a770b82016-07-08 11:06:20 +0100250#define VM_DATA_DEFAULT_FLAGS \
251 (VM_READ | VM_WRITE | \
252 ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \
253 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Leonid Yegoshined3ce162013-06-20 14:36:30 +0000255#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE)
256#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800258#include <asm-generic/memory_model.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000259#include <asm-generic/getorder.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#endif /* _ASM_PAGE_H */