blob: eab99e536b5c9137e5cd1f117fa57ca1318c6c54 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/*
16 * PAGE_SHIFT determines the page size
17 */
18#ifdef CONFIG_PAGE_SIZE_4KB
19#define PAGE_SHIFT 12
20#endif
21#ifdef CONFIG_PAGE_SIZE_8KB
22#define PAGE_SHIFT 13
23#endif
24#ifdef CONFIG_PAGE_SIZE_16KB
25#define PAGE_SHIFT 14
26#endif
Ralf Baechlec52399b2009-04-02 14:07:10 +020027#ifdef CONFIG_PAGE_SIZE_32KB
28#define PAGE_SHIFT 15
29#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#ifdef CONFIG_PAGE_SIZE_64KB
31#define PAGE_SHIFT 16
32#endif
Nelson Elhage99502d92009-07-31 16:58:17 -040033#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
Ralf Baechle3b5e50e2013-04-22 17:57:54 +020034#define PAGE_MASK (~((1 << PAGE_SHIFT) - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
David Daneyaa1762f2012-10-17 00:48:10 +020036#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneydd794392009-05-27 17:47:43 -070037#define HPAGE_SHIFT (PAGE_SHIFT + PAGE_SHIFT - 3)
Nelson Elhage99502d92009-07-31 16:58:17 -040038#define HPAGE_SIZE (_AC(1,UL) << HPAGE_SHIFT)
David Daneydd794392009-05-27 17:47:43 -070039#define HPAGE_MASK (~(HPAGE_SIZE - 1))
40#define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT)
David Daneyaa1762f2012-10-17 00:48:10 +020041#else /* !CONFIG_MIPS_HUGE_TLB_SUPPORT */
Hillf Dantonf467e4bf2012-01-11 15:37:13 +010042#define HPAGE_SHIFT ({BUILD_BUG(); 0; })
43#define HPAGE_SIZE ({BUILD_BUG(); 0; })
44#define HPAGE_MASK ({BUILD_BUG(); 0; })
45#define HUGETLB_PAGE_ORDER ({BUILD_BUG(); 0; })
David Daneyaa1762f2012-10-17 00:48:10 +020046#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daneydd794392009-05-27 17:47:43 -070047
Franck Bui-Huu41b04832007-06-04 17:46:34 +020048#include <linux/pfn.h>
Franck Bui-Huub1c65b32007-06-04 17:46:35 +020049#include <asm/io.h>
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010050
Dmitri Vorobievc29d1502008-07-15 19:57:32 +030051extern void build_clear_page(void);
52extern void build_copy_page(void);
53
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010054/*
55 * It's normally defined only for FLATMEM config but it's
56 * used in our early mem init code for all memory models.
57 * So always define it.
58 */
59#define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET)
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061extern void clear_page(void * page);
62extern void copy_page(void * to, void * from);
63
64extern unsigned long shm_align_mask;
65
66static inline unsigned long pages_do_alias(unsigned long addr1,
67 unsigned long addr2)
68{
69 return (addr1 ^ addr2) & shm_align_mask;
70}
71
72struct page;
73
74static inline void clear_user_page(void *addr, unsigned long vaddr,
75 struct page *page)
76{
77 extern void (*flush_data_cache_page)(unsigned long addr);
78
79 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010080 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 flush_data_cache_page((unsigned long)addr);
82}
83
Atsushi Nemotobcd02282006-12-12 17:14:56 +000084extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
85 struct page *to);
86struct vm_area_struct;
87extern void copy_user_highpage(struct page *to, struct page *from,
88 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Atsushi Nemotobcd02282006-12-12 17:14:56 +000090#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * These are used to make use of C type-checking..
94 */
95#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c2c2005-10-07 16:58:15 +010096 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 typedef struct { unsigned long pte_low, pte_high; } pte_t;
Ralf Baechle70342282013-01-22 12:59:30 +010098 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
99 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 #else
101 typedef struct { unsigned long long pte; } pte_t;
Ralf Baechle70342282013-01-22 12:59:30 +0100102 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +0100103 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 #endif
105#else
106typedef struct { unsigned long pte; } pte_t;
107#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000108#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +0100109#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800110typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000111
112/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000113 * Right now we don't support 4-level pagetables, so all pud-related
114 * definitions come from <asm-generic/pgtable-nopud.h>.
115 */
116
117/*
118 * Finall the top of the hierarchy, the pgd
119 */
120typedef struct { unsigned long pgd; } pgd_t;
121#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000123
124/*
125 * Manipulate page protection bits
126 */
127typedef struct { unsigned long pgprot; } pgprot_t;
128#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#define __pgprot(x) ((pgprot_t) { (x) } )
130
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000131/*
132 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
133 * pair of pages we only have a single global bit per pair of pages. When
134 * writing to the TLB make sure we always have the bit set for both pages
135 * or none. This macro is used to access the `buddy' of the pte we're just
136 * working on.
137 */
138#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
139
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100140/*
141 * __pa()/__va() should be used only during mem init.
142 */
Ralf Baechlef4fae822007-10-11 23:46:12 +0100143#ifdef CONFIG_64BIT
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200144#define __pa(x) \
145({ \
146 unsigned long __x = (unsigned long)(x); \
147 __x < CKSEG0 ? XPHYSADDR(__x) : CPHYSADDR(__x); \
148})
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200149#else
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200150#define __pa(x) \
151 ((unsigned long)(x) - PAGE_OFFSET + PHYS_OFFSET)
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200152#endif
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100153#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
Ralf Baechle5707bf62010-08-17 16:01:59 +0100154
155/*
156 * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad
157 * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org). The
158 * discussion can be found in lkml posting
159 * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is
160 * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html
161 *
162 * It is unclear if the misscompilations mentioned in
163 * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one
164 * until GCC 3.x has been retired before we can apply
165 * https://patchwork.linux-mips.org/patch/1541/
166 */
167
Ralf Baechle21a151d2007-10-11 23:46:15 +0100168#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
171
Ralf Baechlee53639d2006-06-12 09:13:56 +0100172#ifdef CONFIG_FLATMEM
173
Ralf Baechlebaf92272009-07-03 07:11:15 +0100174#define pfn_valid(pfn) \
175({ \
176 unsigned long __pfn = (pfn); \
177 /* avoid <linux/bootmem.h> include hell */ \
178 extern unsigned long min_low_pfn; \
179 \
180 __pfn >= min_low_pfn && __pfn < max_mapnr; \
181})
Ralf Baechlee53639d2006-06-12 09:13:56 +0100182
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900183#elif defined(CONFIG_SPARSEMEM)
184
185/* pfn_valid is defined in linux/mmzone.h */
186
Ralf Baechlee53639d2006-06-12 09:13:56 +0100187#elif defined(CONFIG_NEED_MULTIPLE_NODES)
188
189#define pfn_valid(pfn) \
190({ \
191 unsigned long __pfn = (pfn); \
192 int __n = pfn_to_nid(__pfn); \
193 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
Ralf Baechle70342282013-01-22 12:59:30 +0100194 NODE_DATA(__n)->node_spanned_pages) \
195 : 0); \
Ralf Baechlee53639d2006-06-12 09:13:56 +0100196})
197
Ralf Baechlee53639d2006-06-12 09:13:56 +0100198#endif
199
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200200#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
Ralf Baechled3ce8842012-12-28 15:34:40 +0100201
202extern int __virt_addr_valid(const volatile void *kaddr);
203#define virt_addr_valid(kaddr) \
204 __virt_addr_valid((const volatile void *) (kaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
207 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
208
Ralf Baechle70342282013-01-22 12:59:30 +0100209#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE + \
Florian Fainelli86f7d752010-03-10 09:51:09 +0100210 PHYS_OFFSET)
211#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET - \
212 PHYS_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800214#include <asm-generic/memory_model.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000215#include <asm-generic/getorder.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#endif /* _ASM_PAGE_H */