blob: 8735aa0b89630987f9d7341efa88e13a4bf9eb7a [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>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
15 * PAGE_SHIFT determines the page size
16 */
17#ifdef CONFIG_PAGE_SIZE_4KB
18#define PAGE_SHIFT 12
19#endif
20#ifdef CONFIG_PAGE_SIZE_8KB
21#define PAGE_SHIFT 13
22#endif
23#ifdef CONFIG_PAGE_SIZE_16KB
24#define PAGE_SHIFT 14
25#endif
26#ifdef CONFIG_PAGE_SIZE_64KB
27#define PAGE_SHIFT 16
28#endif
29#define PAGE_SIZE (1UL << PAGE_SHIFT)
30#define PAGE_MASK (~((1 << PAGE_SHIFT) - 1))
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#ifndef __ASSEMBLY__
33
Franck Bui-Huu41b04832007-06-04 17:46:34 +020034#include <linux/pfn.h>
Franck Bui-Huub1c65b32007-06-04 17:46:35 +020035#include <asm/io.h>
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010036
37/*
38 * It's normally defined only for FLATMEM config but it's
39 * used in our early mem init code for all memory models.
40 * So always define it.
41 */
42#define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET)
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044extern void clear_page(void * page);
45extern void copy_page(void * to, void * from);
46
47extern unsigned long shm_align_mask;
48
49static inline unsigned long pages_do_alias(unsigned long addr1,
50 unsigned long addr2)
51{
52 return (addr1 ^ addr2) & shm_align_mask;
53}
54
55struct page;
56
57static inline void clear_user_page(void *addr, unsigned long vaddr,
58 struct page *page)
59{
60 extern void (*flush_data_cache_page)(unsigned long addr);
61
62 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010063 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 flush_data_cache_page((unsigned long)addr);
65}
66
Atsushi Nemotobcd02282006-12-12 17:14:56 +000067extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
68 struct page *to);
69struct vm_area_struct;
70extern void copy_user_highpage(struct page *to, struct page *from,
71 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Atsushi Nemotobcd02282006-12-12 17:14:56 +000073#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
76 * These are used to make use of C type-checking..
77 */
78#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c2c2005-10-07 16:58:15 +010079 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 typedef struct { unsigned long pte_low, pte_high; } pte_t;
81 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
Ralf Baechled34555f2006-08-31 19:39:09 +010082 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 #else
84 typedef struct { unsigned long long pte; } pte_t;
85 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +010086 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 #endif
88#else
89typedef struct { unsigned long pte; } pte_t;
90#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +000091#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +010092#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080093typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +000094
95/*
96 * For 3-level pagetables we defines these ourselves, for 2-level the
97 * definitions are supplied by <asm-generic/pgtable-nopmd.h>.
98 */
99#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101typedef struct { unsigned long pmd; } pmd_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define pmd_val(x) ((x).pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define __pmd(x) ((pmd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000104
105#endif
106
107/*
108 * Right now we don't support 4-level pagetables, so all pud-related
109 * definitions come from <asm-generic/pgtable-nopud.h>.
110 */
111
112/*
113 * Finall the top of the hierarchy, the pgd
114 */
115typedef struct { unsigned long pgd; } pgd_t;
116#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000118
119/*
120 * Manipulate page protection bits
121 */
122typedef struct { unsigned long pgprot; } pgprot_t;
123#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define __pgprot(x) ((pgprot_t) { (x) } )
125
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000126/*
127 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
128 * pair of pages we only have a single global bit per pair of pages. When
129 * writing to the TLB make sure we always have the bit set for both pages
130 * or none. This macro is used to access the `buddy' of the pte we're just
131 * working on.
132 */
133#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#endif /* !__ASSEMBLY__ */
136
137/* to align the pointer to the (next) page boundary */
138#define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
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 Baechle21a151d2007-10-11 23:46:15 +0100154#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
157
Ralf Baechlee53639d2006-06-12 09:13:56 +0100158#ifdef CONFIG_FLATMEM
159
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100160#define pfn_valid(pfn) ((pfn) >= ARCH_PFN_OFFSET && (pfn) < max_mapnr)
Ralf Baechlee53639d2006-06-12 09:13:56 +0100161
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900162#elif defined(CONFIG_SPARSEMEM)
163
164/* pfn_valid is defined in linux/mmzone.h */
165
Ralf Baechlee53639d2006-06-12 09:13:56 +0100166#elif defined(CONFIG_NEED_MULTIPLE_NODES)
167
168#define pfn_valid(pfn) \
169({ \
170 unsigned long __pfn = (pfn); \
171 int __n = pfn_to_nid(__pfn); \
172 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
173 NODE_DATA(__n)->node_spanned_pages) \
174 : 0); \
175})
176
Ralf Baechlee53639d2006-06-12 09:13:56 +0100177#endif
178
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200179#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
180#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
183 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
184
185#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE)
186#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET)
187
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800188#include <asm-generic/memory_model.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700189#include <asm-generic/page.h>
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#endif /* _ASM_PAGE_H */