blob: e59cd1ac09c2f82eb8c91af1bdb0b6a520513d89 [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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define PAGE_MASK (~((1 << PAGE_SHIFT) - 1))
35
Atsushi Nemoto87c62a62009-07-14 22:37:09 +090036#ifdef CONFIG_HUGETLB_PAGE
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)
Atsushi Nemoto87c62a62009-07-14 22:37:09 +090041#endif /* CONFIG_HUGETLB_PAGE */
David Daneydd794392009-05-27 17:47:43 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifndef __ASSEMBLY__
44
Franck Bui-Huu41b04832007-06-04 17:46:34 +020045#include <linux/pfn.h>
Franck Bui-Huub1c65b32007-06-04 17:46:35 +020046#include <asm/io.h>
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010047
Dmitri Vorobievc29d1502008-07-15 19:57:32 +030048extern void build_clear_page(void);
49extern void build_copy_page(void);
50
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010051/*
52 * It's normally defined only for FLATMEM config but it's
53 * used in our early mem init code for all memory models.
54 * So always define it.
55 */
56#define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET)
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058extern void clear_page(void * page);
59extern void copy_page(void * to, void * from);
60
61extern unsigned long shm_align_mask;
62
63static inline unsigned long pages_do_alias(unsigned long addr1,
64 unsigned long addr2)
65{
66 return (addr1 ^ addr2) & shm_align_mask;
67}
68
69struct page;
70
71static inline void clear_user_page(void *addr, unsigned long vaddr,
72 struct page *page)
73{
74 extern void (*flush_data_cache_page)(unsigned long addr);
75
76 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010077 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 flush_data_cache_page((unsigned long)addr);
79}
80
Atsushi Nemotobcd02282006-12-12 17:14:56 +000081extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
82 struct page *to);
83struct vm_area_struct;
84extern void copy_user_highpage(struct page *to, struct page *from,
85 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Atsushi Nemotobcd02282006-12-12 17:14:56 +000087#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/*
90 * These are used to make use of C type-checking..
91 */
92#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c22005-10-07 16:58:15 +010093 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 typedef struct { unsigned long pte_low, pte_high; } pte_t;
95 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
Ralf Baechled34555f2006-08-31 19:39:09 +010096 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 #else
98 typedef struct { unsigned long long pte; } pte_t;
99 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +0100100 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 #endif
102#else
103typedef struct { unsigned long pte; } pte_t;
104#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000105#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +0100106#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800107typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000108
109/*
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000110 * Right now we don't support 4-level pagetables, so all pud-related
111 * definitions come from <asm-generic/pgtable-nopud.h>.
112 */
113
114/*
115 * Finall the top of the hierarchy, the pgd
116 */
117typedef struct { unsigned long pgd; } pgd_t;
118#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000120
121/*
122 * Manipulate page protection bits
123 */
124typedef struct { unsigned long pgprot; } pgprot_t;
125#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define __pgprot(x) ((pgprot_t) { (x) } )
127
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000128/*
129 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
130 * pair of pages we only have a single global bit per pair of pages. When
131 * writing to the TLB make sure we always have the bit set for both pages
132 * or none. This macro is used to access the `buddy' of the pte we're just
133 * working on.
134 */
135#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif /* !__ASSEMBLY__ */
138
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100139/*
140 * __pa()/__va() should be used only during mem init.
141 */
Ralf Baechlef4fae822007-10-11 23:46:12 +0100142#ifdef CONFIG_64BIT
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200143#define __pa(x) \
144({ \
145 unsigned long __x = (unsigned long)(x); \
146 __x < CKSEG0 ? XPHYSADDR(__x) : CPHYSADDR(__x); \
147})
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200148#else
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200149#define __pa(x) \
150 ((unsigned long)(x) - PAGE_OFFSET + PHYS_OFFSET)
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200151#endif
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100152#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
Ralf Baechle5707bf62010-08-17 16:01:59 +0100153
154/*
155 * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad
156 * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org). The
157 * discussion can be found in lkml posting
158 * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is
159 * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html
160 *
161 * It is unclear if the misscompilations mentioned in
162 * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one
163 * until GCC 3.x has been retired before we can apply
164 * https://patchwork.linux-mips.org/patch/1541/
165 */
166
Ralf Baechle21a151d2007-10-11 23:46:15 +0100167#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
170
Ralf Baechlee53639d2006-06-12 09:13:56 +0100171#ifdef CONFIG_FLATMEM
172
Ralf Baechlebaf92272009-07-03 07:11:15 +0100173#define pfn_valid(pfn) \
174({ \
175 unsigned long __pfn = (pfn); \
176 /* avoid <linux/bootmem.h> include hell */ \
177 extern unsigned long min_low_pfn; \
178 \
179 __pfn >= min_low_pfn && __pfn < max_mapnr; \
180})
Ralf Baechlee53639d2006-06-12 09:13:56 +0100181
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900182#elif defined(CONFIG_SPARSEMEM)
183
184/* pfn_valid is defined in linux/mmzone.h */
185
Ralf Baechlee53639d2006-06-12 09:13:56 +0100186#elif defined(CONFIG_NEED_MULTIPLE_NODES)
187
188#define pfn_valid(pfn) \
189({ \
190 unsigned long __pfn = (pfn); \
191 int __n = pfn_to_nid(__pfn); \
192 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
193 NODE_DATA(__n)->node_spanned_pages) \
194 : 0); \
195})
196
Ralf Baechlee53639d2006-06-12 09:13:56 +0100197#endif
198
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200199#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
200#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
203 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
204
Florian Fainelli86f7d752010-03-10 09:51:09 +0100205#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE + \
206 PHYS_OFFSET)
207#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET - \
208 PHYS_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800210#include <asm-generic/memory_model.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000211#include <asm-generic/getorder.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif /* _ASM_PAGE_H */