blob: 0dc1a45c27eda52d0080ae10aecad2e36f33dcb6 [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
13#ifdef __KERNEL__
14
15#include <spaces.h>
16
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
29#ifdef CONFIG_PAGE_SIZE_64KB
30#define PAGE_SHIFT 16
31#endif
32#define PAGE_SIZE (1UL << PAGE_SHIFT)
33#define PAGE_MASK (~((1 << PAGE_SHIFT) - 1))
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#ifndef __ASSEMBLY__
36
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020037#include <linux/pfn.h>
Ralf Baechle585fa722006-08-12 16:40:08 +010038#include <asm/cpu-features.h>
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020039#include <asm/io.h>
Ralf Baechle585fa722006-08-12 16:40:08 +010040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041extern void clear_page(void * page);
42extern void copy_page(void * to, void * from);
43
44extern unsigned long shm_align_mask;
45
46static inline unsigned long pages_do_alias(unsigned long addr1,
47 unsigned long addr2)
48{
49 return (addr1 ^ addr2) & shm_align_mask;
50}
51
52struct page;
53
54static inline void clear_user_page(void *addr, unsigned long vaddr,
55 struct page *page)
56{
57 extern void (*flush_data_cache_page)(unsigned long addr);
58
59 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010060 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 flush_data_cache_page((unsigned long)addr);
62}
63
64static inline void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
65 struct page *to)
66{
67 extern void (*flush_data_cache_page)(unsigned long addr);
68
69 copy_page(vto, vfrom);
Ralf Baechle585fa722006-08-12 16:40:08 +010070 if (!cpu_has_ic_fills_f_dc ||
71 pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 flush_data_cache_page((unsigned long)vto);
73}
74
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
Ralf Baechlec6e8b582005-02-10 12:19:59 +000093
94/*
95 * For 3-level pagetables we defines these ourselves, for 2-level the
96 * definitions are supplied by <asm-generic/pgtable-nopmd.h>.
97 */
98#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100typedef struct { unsigned long pmd; } pmd_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define pmd_val(x) ((x).pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define __pmd(x) ((pmd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000103
104#endif
105
106/*
107 * Right now we don't support 4-level pagetables, so all pud-related
108 * definitions come from <asm-generic/pgtable-nopud.h>.
109 */
110
111/*
112 * Finall the top of the hierarchy, the pgd
113 */
114typedef struct { unsigned long pgd; } pgd_t;
115#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000117
118/*
119 * Manipulate page protection bits
120 */
121typedef struct { unsigned long pgprot; } pgprot_t;
122#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define __pgprot(x) ((pgprot_t) { (x) } )
124
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000125/*
126 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
127 * pair of pages we only have a single global bit per pair of pages. When
128 * writing to the TLB make sure we always have the bit set for both pages
129 * or none. This macro is used to access the `buddy' of the pte we're just
130 * working on.
131 */
132#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#endif /* !__ASSEMBLY__ */
135
136/* to align the pointer to the (next) page boundary */
137#define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
138
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200139#if defined(CONFIG_64BIT) && !defined(CONFIG_BUILD_ELF64)
140#define __pa_page_offset(x) ((unsigned long)(x) < CKSEG0 ? PAGE_OFFSET : CKSEG0)
141#else
142#define __pa_page_offset(x) PAGE_OFFSET
143#endif
144#define __pa(x) ((unsigned long)(x) - __pa_page_offset(x))
Franck Bui-Huu8431fd02006-10-19 13:20:02 +0200145#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x),0))
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200146#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
149
Ralf Baechlee53639d2006-06-12 09:13:56 +0100150#ifdef CONFIG_FLATMEM
151
152#define pfn_valid(pfn) ((pfn) < max_mapnr)
153
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900154#elif defined(CONFIG_SPARSEMEM)
155
156/* pfn_valid is defined in linux/mmzone.h */
157
Ralf Baechlee53639d2006-06-12 09:13:56 +0100158#elif defined(CONFIG_NEED_MULTIPLE_NODES)
159
160#define pfn_valid(pfn) \
161({ \
162 unsigned long __pfn = (pfn); \
163 int __n = pfn_to_nid(__pfn); \
164 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
165 NODE_DATA(__n)->node_spanned_pages) \
166 : 0); \
167})
168
Ralf Baechlee53639d2006-06-12 09:13:56 +0100169#endif
170
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200171#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
172#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
175 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
176
177#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE)
178#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET)
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#ifdef CONFIG_LIMITED_DMA
181#define WANT_PAGE_VIRTUAL
182#endif
183
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800184#include <asm-generic/memory_model.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700185#include <asm-generic/page.h>
186
David Woodhousea2aa3e22006-09-12 20:36:06 -0700187#endif /* defined (__KERNEL__) */
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#endif /* _ASM_PAGE_H */