blob: 2f9e1a9ec51f2e8c85ee24f79eecffeeff69143c [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>
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020038#include <asm/io.h>
Ralf Baechle585fa722006-08-12 16:40:08 +010039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040extern void clear_page(void * page);
41extern void copy_page(void * to, void * from);
42
43extern unsigned long shm_align_mask;
44
45static inline unsigned long pages_do_alias(unsigned long addr1,
46 unsigned long addr2)
47{
48 return (addr1 ^ addr2) & shm_align_mask;
49}
50
51struct page;
52
53static inline void clear_user_page(void *addr, unsigned long vaddr,
54 struct page *page)
55{
56 extern void (*flush_data_cache_page)(unsigned long addr);
57
58 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010059 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 flush_data_cache_page((unsigned long)addr);
61}
62
Atsushi Nemotobcd02282006-12-12 17:14:56 +000063extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
64 struct page *to);
65struct vm_area_struct;
66extern void copy_user_highpage(struct page *to, struct page *from,
67 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Atsushi Nemotobcd02282006-12-12 17:14:56 +000069#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/*
72 * These are used to make use of C type-checking..
73 */
74#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c2c2005-10-07 16:58:15 +010075 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 typedef struct { unsigned long pte_low, pte_high; } pte_t;
77 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
Ralf Baechled34555f2006-08-31 19:39:09 +010078 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 #else
80 typedef struct { unsigned long long pte; } pte_t;
81 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +010082 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 #endif
84#else
85typedef struct { unsigned long pte; } pte_t;
86#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +000087#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +010088#endif
Ralf Baechlec6e8b582005-02-10 12:19:59 +000089
90/*
91 * For 3-level pagetables we defines these ourselves, for 2-level the
92 * definitions are supplied by <asm-generic/pgtable-nopmd.h>.
93 */
94#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96typedef struct { unsigned long pmd; } pmd_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define pmd_val(x) ((x).pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define __pmd(x) ((pmd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +000099
100#endif
101
102/*
103 * Right now we don't support 4-level pagetables, so all pud-related
104 * definitions come from <asm-generic/pgtable-nopud.h>.
105 */
106
107/*
108 * Finall the top of the hierarchy, the pgd
109 */
110typedef struct { unsigned long pgd; } pgd_t;
111#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000113
114/*
115 * Manipulate page protection bits
116 */
117typedef struct { unsigned long pgprot; } pgprot_t;
118#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define __pgprot(x) ((pgprot_t) { (x) } )
120
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000121/*
122 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
123 * pair of pages we only have a single global bit per pair of pages. When
124 * writing to the TLB make sure we always have the bit set for both pages
125 * or none. This macro is used to access the `buddy' of the pte we're just
126 * working on.
127 */
128#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif /* !__ASSEMBLY__ */
131
132/* to align the pointer to the (next) page boundary */
133#define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
134
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200135#if defined(CONFIG_64BIT) && !defined(CONFIG_BUILD_ELF64)
136#define __pa_page_offset(x) ((unsigned long)(x) < CKSEG0 ? PAGE_OFFSET : CKSEG0)
137#else
138#define __pa_page_offset(x) PAGE_OFFSET
139#endif
140#define __pa(x) ((unsigned long)(x) - __pa_page_offset(x))
Franck Bui-Huu8431fd02006-10-19 13:20:02 +0200141#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x),0))
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200142#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
145
Ralf Baechlee53639d2006-06-12 09:13:56 +0100146#ifdef CONFIG_FLATMEM
147
148#define pfn_valid(pfn) ((pfn) < max_mapnr)
149
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900150#elif defined(CONFIG_SPARSEMEM)
151
152/* pfn_valid is defined in linux/mmzone.h */
153
Ralf Baechlee53639d2006-06-12 09:13:56 +0100154#elif defined(CONFIG_NEED_MULTIPLE_NODES)
155
156#define pfn_valid(pfn) \
157({ \
158 unsigned long __pfn = (pfn); \
159 int __n = pfn_to_nid(__pfn); \
160 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
161 NODE_DATA(__n)->node_spanned_pages) \
162 : 0); \
163})
164
Ralf Baechlee53639d2006-06-12 09:13:56 +0100165#endif
166
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200167#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
168#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
171 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
172
173#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE)
174#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET)
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#ifdef CONFIG_LIMITED_DMA
177#define WANT_PAGE_VIRTUAL
178#endif
179
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800180#include <asm-generic/memory_model.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700181#include <asm-generic/page.h>
182
David Woodhousea2aa3e22006-09-12 20:36:06 -0700183#endif /* defined (__KERNEL__) */
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#endif /* _ASM_PAGE_H */