1#ifndef __ASM_SH_PGTABLE_64_H
2#define __ASM_SH_PGTABLE_64_H
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18#include <linux/threads.h>
19#include <asm/processor.h>
20#include <asm/page.h>
21
22
23
24
25#define pte_ERROR(e) \
26 printk("%s:%d: bad pte %016Lx.\n", __FILE__, __LINE__, pte_val(e))
27#define pgd_ERROR(e) \
28 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
29
30
31
32
33#define set_pmd(pmdptr, pmdval) (*(pmdptr) = pmdval)
34
35static __inline__ void set_pte(pte_t *pteptr, pte_t pteval)
36{
37 unsigned long long x = ((unsigned long long) pteval.pte_low);
38 unsigned long long *xp = (unsigned long long *) pteptr;
39
40
41
42 *(xp) = (x & NPHYS_SIGN) ? (x | NPHYS_MASK) : x;
43}
44#define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
45
46
47
48
49
50
51#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
52#define __pgd_offset(address) pgd_index(address)
53#define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
54
55
56#define pgd_offset_k(address) pgd_offset(&init_mm, address)
57
58#define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
59#define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
60
61
62
63
64#define _PMD_EMPTY 0x0
65
66#define pmd_present(pmd_entry) (pmd_val(pmd_entry) & _PAGE_PRESENT)
67#define pmd_clear(pmd_entry_p) (set_pmd((pmd_entry_p), __pmd(_PMD_EMPTY)))
68#define pmd_none(pmd_entry) (pmd_val((pmd_entry)) == _PMD_EMPTY)
69#define pmd_bad(pmd_entry) ((pmd_val(pmd_entry) & (~PAGE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE)
70
71#define pmd_page_vaddr(pmd_entry) \
72 ((unsigned long) __va(pmd_val(pmd_entry) & PAGE_MASK))
73
74#define pmd_page(pmd) \
75 (virt_to_page(pmd_val(pmd)))
76
77
78#define pte_index(address) \
79 ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
80
81#define __pte_offset(address) pte_index(address)
82
83#define pte_offset_kernel(dir, addr) \
84 ((pte_t *) ((pmd_val(*(dir))) & PAGE_MASK) + pte_index((addr)))
85
86#define pte_offset_map(dir,addr) pte_offset_kernel(dir, addr)
87#define pte_unmap(pte) do { } while (0)
88
89#ifndef __ASSEMBLY__
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106#define _PAGE_WT 0x001
107#define _PAGE_DEVICE 0x001
108#define _PAGE_CACHABLE 0x002
109#define _PAGE_PRESENT 0x004
110#define _PAGE_FILE 0x004
111#define _PAGE_SIZE0 0x008
112#define _PAGE_SIZE1 0x010
113#define _PAGE_SHARED 0x020
114#define _PAGE_READ 0x040
115#define _PAGE_EXECUTE 0x080
116#define _PAGE_WRITE 0x100
117#define _PAGE_USER 0x200
118#define _PAGE_DIRTY 0x400
119#define _PAGE_ACCESSED 0x800
120
121
122#define _PAGE_EXT(x) ((unsigned long long)(x) << 32)
123
124
125
126
127
128
129#define _PAGE_WIRED _PAGE_EXT(0x001)
130#define _PAGE_SPECIAL _PAGE_EXT(0x002)
131
132#define _PAGE_CLEAR_FLAGS (_PAGE_PRESENT | _PAGE_FILE | _PAGE_SHARED | \
133 _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_WIRED)
134
135
136#define _PAGE_FLAGS_HARDWARE_MASK (NEFF_MASK & ~(_PAGE_CLEAR_FLAGS))
137
138
139
140
141#if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
142#define _PAGE_SZHUGE (_PAGE_SIZE0)
143#elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
144#define _PAGE_SZHUGE (_PAGE_SIZE1)
145#elif defined(CONFIG_HUGETLB_PAGE_SIZE_512MB)
146#define _PAGE_SZHUGE (_PAGE_SIZE0 | _PAGE_SIZE1)
147#endif
148
149
150
151
152
153#ifndef _PAGE_SZHUGE
154# define _PAGE_SZHUGE (0)
155#endif
156
157
158
159
160
161
162
163
164
165
166#define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
167 _PAGE_EXECUTE | \
168 _PAGE_CACHABLE | _PAGE_ACCESSED | _PAGE_DIRTY | \
169 _PAGE_SHARED)
170
171
172#define _PAGE_TABLE (_KERNPG_TABLE | _PAGE_USER)
173
174#define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY | \
175 _PAGE_SPECIAL)
176
177
178
179
180#define _PAGE_COMMON (_PAGE_PRESENT | _PAGE_USER | \
181 _PAGE_CACHABLE | _PAGE_ACCESSED)
182
183#define PAGE_NONE __pgprot(_PAGE_CACHABLE | _PAGE_ACCESSED)
184#define PAGE_SHARED __pgprot(_PAGE_COMMON | _PAGE_READ | _PAGE_WRITE | \
185 _PAGE_SHARED)
186#define PAGE_EXECREAD __pgprot(_PAGE_COMMON | _PAGE_READ | _PAGE_EXECUTE)
187
188
189
190
191
192#define PAGE_COPY PAGE_EXECREAD
193
194#define PAGE_READONLY __pgprot(_PAGE_COMMON | _PAGE_READ)
195#define PAGE_WRITEONLY __pgprot(_PAGE_COMMON | _PAGE_WRITE)
196#define PAGE_RWX __pgprot(_PAGE_COMMON | _PAGE_READ | \
197 _PAGE_WRITE | _PAGE_EXECUTE)
198#define PAGE_KERNEL __pgprot(_KERNPG_TABLE)
199
200#define PAGE_KERNEL_NOCACHE \
201 __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
202 _PAGE_EXECUTE | _PAGE_ACCESSED | \
203 _PAGE_DIRTY | _PAGE_SHARED)
204
205
206
207#define pgprot_noncached(x) __pgprot(((x).pgprot & ~(_PAGE_CACHABLE)) | _PAGE_DEVICE)
208#define pgprot_writecombine(prot) __pgprot(pgprot_val(prot) & ~_PAGE_CACHABLE)
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229#define _PTE_EMPTY 0x0
230#define pte_present(x) (pte_val(x) & _PAGE_PRESENT)
231#define pte_clear(mm,addr,xp) (set_pte_at(mm, addr, xp, __pte(_PTE_EMPTY)))
232#define pte_none(x) (pte_val(x) == _PTE_EMPTY)
233
234
235
236
237
238
239
240
241
242
243
244#define pte_pagenr(x) (((unsigned long) (pte_val(x)) - \
245 __MEMORY_START) >> PAGE_SHIFT)
246
247
248
249
250#define pte_page(x) (mem_map + pte_pagenr(x))
251
252
253
254
255#define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
256
257
258
259
260
261static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
262static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
263static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
264static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
265static inline int pte_special(pte_t pte){ return pte_val(pte) & _PAGE_SPECIAL; }
266
267static inline pte_t pte_wrprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_WRITE)); return pte; }
268static inline pte_t pte_mkclean(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_DIRTY)); return pte; }
269static inline pte_t pte_mkold(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_ACCESSED)); return pte; }
270static inline pte_t pte_mkwrite(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_WRITE)); return pte; }
271static inline pte_t pte_mkdirty(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_DIRTY)); return pte; }
272static inline pte_t pte_mkyoung(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_ACCESSED)); return pte; }
273static inline pte_t pte_mkhuge(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_SZHUGE)); return pte; }
274static inline pte_t pte_mkspecial(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_SPECIAL)); return pte; }
275
276
277
278
279
280
281#define mk_pte(page,pgprot) \
282({ \
283 pte_t __pte; \
284 \
285 set_pte(&__pte, __pte((((page)-mem_map) << PAGE_SHIFT) | \
286 __MEMORY_START | pgprot_val((pgprot)))); \
287 __pte; \
288})
289
290
291
292
293
294#define mk_pte_phys(physpage, pgprot) \
295({ pte_t __pte; set_pte(&__pte, __pte(physpage | pgprot_val(pgprot))); __pte; })
296
297static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
298{ set_pte(&pte, __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot))); return pte; }
299
300
301#define __swp_type(x) (((x).val & 3) + (((x).val >> 1) & 0x3c))
302#define __swp_offset(x) ((x).val >> 8)
303#define __swp_entry(type, offset) ((swp_entry_t) { ((offset << 8) + ((type & 0x3c) << 1) + (type & 3)) })
304#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
305#define __swp_entry_to_pte(x) ((pte_t) { (x).val })
306
307
308#define PTE_FILE_MAX_BITS 29
309#define pte_to_pgoff(pte) (pte_val(pte))
310#define pgoff_to_pte(off) ((pte_t) { (off) | _PAGE_FILE })
311
312#endif
313
314#define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
315#define pfn_pmd(pfn, prot) __pmd(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
316
317#endif
318