blob: 5699ec3a71af3b42c6afb98b33a87ceceb58c175 [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)
Ralf Baechle3b5e50e2013-04-22 17:57:54 +020036#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
40 * for FTLB or VTLB + FTLB confugrations.
41 */
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 +0000108extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
109 struct page *to);
110struct vm_area_struct;
111extern void copy_user_highpage(struct page *to, struct page *from,
112 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000114#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*
117 * These are used to make use of C type-checking..
118 */
119#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100120 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 typedef struct { unsigned long pte_low, pte_high; } pte_t;
Ralf Baechle70342282013-01-22 12:59:30 +0100122 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
123 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 #else
125 typedef struct { unsigned long long pte; } pte_t;
Ralf Baechle70342282013-01-22 12:59:30 +0100126 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +0100127 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 #endif
129#else
130typedef struct { unsigned long pte; } pte_t;
131#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000132#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +0100133#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800134typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000135
136/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000137 * Right now we don't support 4-level pagetables, so all pud-related
138 * definitions come from <asm-generic/pgtable-nopud.h>.
139 */
140
141/*
142 * Finall the top of the hierarchy, the pgd
143 */
144typedef struct { unsigned long pgd; } pgd_t;
145#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000147
148/*
149 * Manipulate page protection bits
150 */
151typedef struct { unsigned long pgprot; } pgprot_t;
152#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define __pgprot(x) ((pgprot_t) { (x) } )
154
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000155/*
156 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
157 * pair of pages we only have a single global bit per pair of pages. When
158 * writing to the TLB make sure we always have the bit set for both pages
159 * or none. This macro is used to access the `buddy' of the pte we're just
160 * working on.
161 */
162#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
163
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100164/*
165 * __pa()/__va() should be used only during mem init.
166 */
Ralf Baechlef4fae822007-10-11 23:46:12 +0100167#ifdef CONFIG_64BIT
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200168#define __pa(x) \
169({ \
170 unsigned long __x = (unsigned long)(x); \
171 __x < CKSEG0 ? XPHYSADDR(__x) : CPHYSADDR(__x); \
172})
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200173#else
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200174#define __pa(x) \
175 ((unsigned long)(x) - PAGE_OFFSET + PHYS_OFFSET)
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200176#endif
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100177#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
David Daney49c426b2013-05-07 17:11:16 +0000178#include <asm/io.h>
Ralf Baechle5707bf62010-08-17 16:01:59 +0100179
180/*
181 * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad
182 * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org). The
183 * discussion can be found in lkml posting
184 * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is
185 * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html
186 *
187 * It is unclear if the misscompilations mentioned in
188 * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one
189 * until GCC 3.x has been retired before we can apply
190 * https://patchwork.linux-mips.org/patch/1541/
191 */
192
Leonid Yegoshin27b3db22014-01-09 13:06:34 +0000193#ifndef __pa_symbol
Ralf Baechle21a151d2007-10-11 23:46:15 +0100194#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Leonid Yegoshin27b3db22014-01-09 13:06:34 +0000195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
198
Ralf Baechlee53639d2006-06-12 09:13:56 +0100199#ifdef CONFIG_FLATMEM
200
Ralf Baechle8b923212013-05-18 17:02:59 +0200201static inline int pfn_valid(unsigned long pfn)
202{
203 /* avoid <linux/mm.h> include hell */
204 extern unsigned long max_mapnr;
205
206 return pfn >= ARCH_PFN_OFFSET && pfn < max_mapnr;
207}
Ralf Baechlee53639d2006-06-12 09:13:56 +0100208
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900209#elif defined(CONFIG_SPARSEMEM)
210
211/* pfn_valid is defined in linux/mmzone.h */
212
Ralf Baechlee53639d2006-06-12 09:13:56 +0100213#elif defined(CONFIG_NEED_MULTIPLE_NODES)
214
215#define pfn_valid(pfn) \
216({ \
217 unsigned long __pfn = (pfn); \
218 int __n = pfn_to_nid(__pfn); \
219 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
Ralf Baechle70342282013-01-22 12:59:30 +0100220 NODE_DATA(__n)->node_spanned_pages) \
221 : 0); \
Ralf Baechlee53639d2006-06-12 09:13:56 +0100222})
223
Ralf Baechlee53639d2006-06-12 09:13:56 +0100224#endif
225
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200226#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
Ralf Baechled3ce8842012-12-28 15:34:40 +0100227
228extern int __virt_addr_valid(const volatile void *kaddr);
229#define virt_addr_valid(kaddr) \
230 __virt_addr_valid((const volatile void *) (kaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
233 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
234
Leonid Yegoshined3ce162013-06-20 14:36:30 +0000235#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE)
236#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
KAMEZAWA Hiroyukia02036e72006-03-27 01:15:43 -0800238#include <asm-generic/memory_model.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000239#include <asm-generic/getorder.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#endif /* _ASM_PAGE_H */