blob: 9f946e4ca0574fbdc3ab376554d7ba7497493fce [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
Ralf Baechlec52399b2009-04-02 14:07:10 +020026#ifdef CONFIG_PAGE_SIZE_32KB
27#define PAGE_SHIFT 15
28#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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-Huu41b04832007-06-04 17:46:34 +020037#include <linux/pfn.h>
Franck Bui-Huub1c65b32007-06-04 17:46:35 +020038#include <asm/io.h>
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010039
Dmitri Vorobievc29d1502008-07-15 19:57:32 +030040extern void build_clear_page(void);
41extern void build_copy_page(void);
42
Franck Bui-Huu6f284a22007-01-10 09:44:05 +010043/*
44 * It's normally defined only for FLATMEM config but it's
45 * used in our early mem init code for all memory models.
46 * So always define it.
47 */
48#define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET)
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern void clear_page(void * page);
51extern void copy_page(void * to, void * from);
52
53extern unsigned long shm_align_mask;
54
55static inline unsigned long pages_do_alias(unsigned long addr1,
56 unsigned long addr2)
57{
58 return (addr1 ^ addr2) & shm_align_mask;
59}
60
61struct page;
62
63static inline void clear_user_page(void *addr, unsigned long vaddr,
64 struct page *page)
65{
66 extern void (*flush_data_cache_page)(unsigned long addr);
67
68 clear_page(addr);
Ralf Baechle585fa722006-08-12 16:40:08 +010069 if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 flush_data_cache_page((unsigned long)addr);
71}
72
Atsushi Nemotobcd02282006-12-12 17:14:56 +000073extern void copy_user_page(void *vto, void *vfrom, unsigned long vaddr,
74 struct page *to);
75struct vm_area_struct;
76extern void copy_user_highpage(struct page *to, struct page *from,
77 unsigned long vaddr, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Atsushi Nemotobcd02282006-12-12 17:14:56 +000079#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/*
82 * These are used to make use of C type-checking..
83 */
84#ifdef CONFIG_64BIT_PHYS_ADDR
Ralf Baechleec917c2c2005-10-07 16:58:15 +010085 #ifdef CONFIG_CPU_MIPS32
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 typedef struct { unsigned long pte_low, pte_high; } pte_t;
87 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
Ralf Baechled34555f2006-08-31 19:39:09 +010088 #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 #else
90 typedef struct { unsigned long long pte; } pte_t;
91 #define pte_val(x) ((x).pte)
Ralf Baechled34555f2006-08-31 19:39:09 +010092 #define __pte(x) ((pte_t) { (x) } )
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 #endif
94#else
95typedef struct { unsigned long pte; } pte_t;
96#define pte_val(x) ((x).pte)
Ralf Baechlec6e8b582005-02-10 12:19:59 +000097#define __pte(x) ((pte_t) { (x) } )
Ralf Baechled34555f2006-08-31 19:39:09 +010098#endif
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080099typedef struct page *pgtable_t;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000100
101/*
102 * For 3-level pagetables we defines these ourselves, for 2-level the
103 * definitions are supplied by <asm-generic/pgtable-nopmd.h>.
104 */
105#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107typedef struct { unsigned long pmd; } pmd_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define pmd_val(x) ((x).pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define __pmd(x) ((pmd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000110
111#endif
112
113/*
114 * Right now we don't support 4-level pagetables, so all pud-related
115 * definitions come from <asm-generic/pgtable-nopud.h>.
116 */
117
118/*
119 * Finall the top of the hierarchy, the pgd
120 */
121typedef struct { unsigned long pgd; } pgd_t;
122#define pgd_val(x) ((x).pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define __pgd(x) ((pgd_t) { (x) } )
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000124
125/*
126 * Manipulate page protection bits
127 */
128typedef struct { unsigned long pgprot; } pgprot_t;
129#define pgprot_val(x) ((x).pgprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define __pgprot(x) ((pgprot_t) { (x) } )
131
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000132/*
133 * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd
134 * pair of pages we only have a single global bit per pair of pages. When
135 * writing to the TLB make sure we always have the bit set for both pages
136 * or none. This macro is used to access the `buddy' of the pte we're just
137 * working on.
138 */
139#define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t)))
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#endif /* !__ASSEMBLY__ */
142
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100143/*
144 * __pa()/__va() should be used only during mem init.
145 */
Ralf Baechlef4fae822007-10-11 23:46:12 +0100146#ifdef CONFIG_64BIT
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200147#define __pa(x) \
148({ \
149 unsigned long __x = (unsigned long)(x); \
150 __x < CKSEG0 ? XPHYSADDR(__x) : CPHYSADDR(__x); \
151})
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200152#else
Franck Bui-Huub1c65b32007-06-04 17:46:35 +0200153#define __pa(x) \
154 ((unsigned long)(x) - PAGE_OFFSET + PHYS_OFFSET)
Franck Bui-Huu620a4802006-10-19 13:20:00 +0200155#endif
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100156#define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET))
Ralf Baechle21a151d2007-10-11 23:46:15 +0100157#define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
160
Ralf Baechlee53639d2006-06-12 09:13:56 +0100161#ifdef CONFIG_FLATMEM
162
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100163#define pfn_valid(pfn) ((pfn) >= ARCH_PFN_OFFSET && (pfn) < max_mapnr)
Ralf Baechlee53639d2006-06-12 09:13:56 +0100164
Atsushi Nemoto7de58fa2006-07-05 01:22:44 +0900165#elif defined(CONFIG_SPARSEMEM)
166
167/* pfn_valid is defined in linux/mmzone.h */
168
Ralf Baechlee53639d2006-06-12 09:13:56 +0100169#elif defined(CONFIG_NEED_MULTIPLE_NODES)
170
171#define pfn_valid(pfn) \
172({ \
173 unsigned long __pfn = (pfn); \
174 int __n = pfn_to_nid(__pfn); \
175 ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \
176 NODE_DATA(__n)->node_spanned_pages) \
177 : 0); \
178})
179
Ralf Baechlee53639d2006-06-12 09:13:56 +0100180#endif
181
Franck Bui-Huu99e3b942006-10-19 13:19:59 +0200182#define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys(kaddr)))
183#define virt_addr_valid(kaddr) pfn_valid(PFN_DOWN(virt_to_phys(kaddr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
186 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
187
188#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE)
189#define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET)
190
KAMEZAWA Hiroyukia02036e2006-03-27 01:15:43 -0800191#include <asm-generic/memory_model.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700192#include <asm-generic/page.h>
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#endif /* _ASM_PAGE_H */