blob: 31ab10f02bad555724dffa1e58556bd6508cd79b [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 Baechlec17a6552012-10-16 22:20:27 +020034#define PAGE_MASK (~(PAGE_SIZE - 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#ifndef __ASSEMBLY__
49
Franck Bui-Huu41b04832007-06-04 17:46:34 +020050#include <linux/pfn.h>
Franck Bui-Huub1c65b32007-06-04 17:46:35 +020051#include <asm/io.h>
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010052
Dmitri Vorobievc29d1502008-07-15 19:57:32 +030053extern void build_clear_page(void);
54extern void build_copy_page(void);
55
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010056/*
57 * It's normally defined only for FLATMEM config but it's
58 * used in our early mem init code for all memory models.
59 * So always define it.
60 */
61#define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET)
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063extern void clear_page(void * page);
64extern void copy_page(void * to, void * from);
65
66extern unsigned long shm_align_mask;
67
68static inline unsigned long pages_do_alias(unsigned long addr1,
69 unsigned long addr2)
70{
71 return (addr1 ^ addr2) & shm_align_mask;
72}
73
74struct page;
75
76static inline void clear_user_page(void *addr, unsigned long vaddr,
77 struct page *page)
78{
79 extern void (*flush_data_cache_page)(unsigned long addr);
80
81 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010082 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 flush_data_cache_page((unsigned long)addr);
84}
85
Atsushi Nemotobcd02282006-12-12 17:14:56 +000086extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
87 struct page *to);
88struct vm_area_struct;
89extern void copy_user_highpage(struct page *to, struct page *from,
90 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Atsushi Nemotobcd02282006-12-12 17:14:56 +000092#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/*
95 * These are used to make use of C type-checking..
96 */
97#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c2c2005-10-07 16:58:15 +010098 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 typedef struct { unsigned long pte_low, pte_high; } pte_t;
100 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
Ralf Baechled34555f2006-08-31 19:39:09 +0100101 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 #else
103 typedef struct { unsigned long long pte; } pte_t;
104 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +0100105 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 #endif
107#else
108typedef struct { unsigned long pte; } pte_t;
109#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000110#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +0100111#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800112typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000113
114/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000115 * Right now we don't support 4-level pagetables, so all pud-related
116 * definitions come from <asm-generic/pgtable-nopud.h>.
117 */
118
119/*
120 * Finall the top of the hierarchy, the pgd
121 */
122typedef struct { unsigned long pgd; } pgd_t;
123#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000125
126/*
127 * Manipulate page protection bits
128 */
129typedef struct { unsigned long pgprot; } pgprot_t;
130#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define __pgprot(x) ((pgprot_t) { (x) } )
132
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000133/*
134 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
135 * pair of pages we only have a single global bit per pair of pages. When
136 * writing to the TLB make sure we always have the bit set for both pages
137 * or none. This macro is used to access the `buddy' of the pte we're just
138 * working on.
139 */
140#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#endif /* !__ASSEMBLY__ */
143
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100144/*
145 * __pa()/__va() should be used only during mem init.
146 */
Ralf Baechlef4fae822007-10-11 23:46:12 +0100147#ifdef CONFIG_64BIT
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200148#define __pa(x) \
149({ \
150 unsigned long __x = (unsigned long)(x); \
151 __x < CKSEG0 ? XPHYSADDR(__x) : CPHYSADDR(__x); \
152})
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200153#else
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200154#define __pa(x) \
155 ((unsigned long)(x) - PAGE_OFFSET + PHYS_OFFSET)
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200156#endif
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100157#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
Ralf Baechle5707bf62010-08-17 16:01:59 +0100158
159/*
160 * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad
161 * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org). The
162 * discussion can be found in lkml posting
163 * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is
164 * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html
165 *
166 * It is unclear if the misscompilations mentioned in
167 * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one
168 * until GCC 3.x has been retired before we can apply
169 * https://patchwork.linux-mips.org/patch/1541/
170 */
171
Ralf Baechle21a151d2007-10-11 23:46:15 +0100172#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
175
Ralf Baechlee53639d2006-06-12 09:13:56 +0100176#ifdef CONFIG_FLATMEM
177
Ralf Baechlebaf92272009-07-03 07:11:15 +0100178#define pfn_valid(pfn) \
179({ \
180 unsigned long __pfn = (pfn); \
181 /* avoid <linux/bootmem.h> include hell */ \
182 extern unsigned long min_low_pfn; \
183 \
184 __pfn >= min_low_pfn && __pfn < max_mapnr; \
185})
Ralf Baechlee53639d2006-06-12 09:13:56 +0100186
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900187#elif defined(CONFIG_SPARSEMEM)
188
189/* pfn_valid is defined in linux/mmzone.h */
190
Ralf Baechlee53639d2006-06-12 09:13:56 +0100191#elif defined(CONFIG_NEED_MULTIPLE_NODES)
192
193#define pfn_valid(pfn) \
194({ \
195 unsigned long __pfn = (pfn); \
196 int __n = pfn_to_nid(__pfn); \
197 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
198 NODE_DATA(__n)->node_spanned_pages) \
199 : 0); \
200})
201
Ralf Baechlee53639d2006-06-12 09:13:56 +0100202#endif
203
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200204#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
205#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
208 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
209
Florian Fainelli86f7d752010-03-10 09:51:09 +0100210#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE + \
211 PHYS_OFFSET)
212#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET - \
213 PHYS_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800215#include <asm-generic/memory_model.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000216#include <asm-generic/getorder.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#endif /* _ASM_PAGE_H */