4 #include <asm/mcfmmu.h>
8 * MMUDR bits, in proper place. We write these directly into the MMUDR
9 * after masking from the pte.
11 #define CF_PAGE_LOCKED MMUDR_LK /* 0x00000002 */
12 #define CF_PAGE_EXEC MMUDR_X /* 0x00000004 */
13 #define CF_PAGE_WRITABLE MMUDR_W /* 0x00000008 */
14 #define CF_PAGE_READABLE MMUDR_R /* 0x00000010 */
15 #define CF_PAGE_SYSTEM MMUDR_SP /* 0x00000020 */
16 #define CF_PAGE_COPYBACK MMUDR_CM_CCB /* 0x00000040 */
17 #define CF_PAGE_NOCACHE MMUDR_CM_NCP /* 0x00000080 */
19 #define CF_CACHEMASK (~MMUDR_CM_CCB)
20 #define CF_PAGE_MMUDR_MASK 0x000000fe
22 #define _PAGE_NOCACHE030 CF_PAGE_NOCACHE
25 * MMUTR bits, need shifting down.
27 #define CF_PAGE_MMUTR_MASK 0x00000c00
28 #define CF_PAGE_MMUTR_SHIFT 10
30 #define CF_PAGE_VALID (MMUTR_V << CF_PAGE_MMUTR_SHIFT)
31 #define CF_PAGE_SHARED (MMUTR_SG << CF_PAGE_MMUTR_SHIFT)
34 * Fake bits, not implemented in CF, will get masked out before
37 #define CF_PAGE_DIRTY 0x00000001
38 #define CF_PAGE_ACCESSED 0x00001000
40 #define _PAGE_CACHE040 0x020 /* 68040 cache mode, cachable, copyback */
41 #define _PAGE_NOCACHE_S 0x040 /* 68040 no-cache mode, serialized */
42 #define _PAGE_NOCACHE 0x060 /* 68040 cache mode, non-serialized */
43 #define _PAGE_CACHE040W 0x000 /* 68040 cache mode, cachable, write-through */
44 #define _DESCTYPE_MASK 0x003
45 #define _CACHEMASK040 (~0x060)
46 #define _PAGE_GLOBAL040 0x400 /* 68040 global bit, used for kva descs */
49 * Externally used page protection values.
51 #define _PAGE_PRESENT (CF_PAGE_VALID)
52 #define _PAGE_ACCESSED (CF_PAGE_ACCESSED)
53 #define _PAGE_DIRTY (CF_PAGE_DIRTY)
54 #define _PAGE_READWRITE (CF_PAGE_READABLE \
60 * Compound page protection values.
62 #define PAGE_NONE __pgprot(CF_PAGE_VALID \
65 #define PAGE_SHARED __pgprot(CF_PAGE_VALID \
69 #define PAGE_INIT __pgprot(CF_PAGE_VALID \
75 #define PAGE_KERNEL __pgprot(CF_PAGE_VALID \
83 #define PAGE_COPY __pgprot(CF_PAGE_VALID \
89 * Page protections for initialising protection_map. See mm/mmap.c
90 * for use. In general, the bit positions are xwr, and P-items are
91 * private, the S-items are shared.
93 #define __P000 PAGE_NONE
94 #define __P001 __pgprot(CF_PAGE_VALID \
97 #define __P010 __pgprot(CF_PAGE_VALID \
100 #define __P011 __pgprot(CF_PAGE_VALID \
104 #define __P100 __pgprot(CF_PAGE_VALID \
107 #define __P101 __pgprot(CF_PAGE_VALID \
111 #define __P110 __pgprot(CF_PAGE_VALID \
115 #define __P111 __pgprot(CF_PAGE_VALID \
121 #define __S000 PAGE_NONE
122 #define __S001 __pgprot(CF_PAGE_VALID \
125 #define __S010 PAGE_SHARED
126 #define __S011 __pgprot(CF_PAGE_VALID \
130 #define __S100 __pgprot(CF_PAGE_VALID \
133 #define __S101 __pgprot(CF_PAGE_VALID \
137 #define __S110 __pgprot(CF_PAGE_VALID \
141 #define __S111 __pgprot(CF_PAGE_VALID \
147 #define PTE_MASK PAGE_MASK
148 #define CF_PAGE_CHG_MASK (PTE_MASK | CF_PAGE_ACCESSED | CF_PAGE_DIRTY)
153 * Conversion functions: convert a page and protection to a page entry,
154 * and a page entry and page directory to the page they refer to.
156 #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
158 static inline pte_t
pte_modify(pte_t pte
, pgprot_t newprot
)
160 pte_val(pte
) = (pte_val(pte
) & CF_PAGE_CHG_MASK
) | pgprot_val(newprot
);
164 #define pmd_set(pmdp, ptep) do {} while (0)
166 static inline void pgd_set(pgd_t
*pgdp
, pmd_t
*pmdp
)
168 pgd_val(*pgdp
) = virt_to_phys(pmdp
);
171 #define __pte_page(pte) ((unsigned long) (pte_val(pte) & PAGE_MASK))
172 #define __pmd_page(pmd) ((unsigned long) (pmd_val(pmd)))
174 static inline int pte_none(pte_t pte
)
176 return !pte_val(pte
);
179 static inline int pte_present(pte_t pte
)
181 return pte_val(pte
) & CF_PAGE_VALID
;
184 static inline void pte_clear(struct mm_struct
*mm
, unsigned long addr
,
190 #define pte_pagenr(pte) ((__pte_page(pte) - PAGE_OFFSET) >> PAGE_SHIFT)
191 #define pte_page(pte) virt_to_page(__pte_page(pte))
193 static inline int pmd_none2(pmd_t
*pmd
) { return !pmd_val(*pmd
); }
194 #define pmd_none(pmd) pmd_none2(&(pmd))
195 static inline int pmd_bad2(pmd_t
*pmd
) { return 0; }
196 #define pmd_bad(pmd) pmd_bad2(&(pmd))
197 #define pmd_present(pmd) (!pmd_none2(&(pmd)))
198 static inline void pmd_clear(pmd_t
*pmdp
) { pmd_val(*pmdp
) = 0; }
200 static inline int pgd_none(pgd_t pgd
) { return 0; }
201 static inline int pgd_bad(pgd_t pgd
) { return 0; }
202 static inline int pgd_present(pgd_t pgd
) { return 1; }
203 static inline void pgd_clear(pgd_t
*pgdp
) {}
205 #define pte_ERROR(e) \
206 printk(KERN_ERR "%s:%d: bad pte %08lx.\n", \
207 __FILE__, __LINE__, pte_val(e))
208 #define pmd_ERROR(e) \
209 printk(KERN_ERR "%s:%d: bad pmd %08lx.\n", \
210 __FILE__, __LINE__, pmd_val(e))
211 #define pgd_ERROR(e) \
212 printk(KERN_ERR "%s:%d: bad pgd %08lx.\n", \
213 __FILE__, __LINE__, pgd_val(e))
216 * The following only work if pte_present() is true.
217 * Undefined behaviour if not...
218 * [we have the full set here even if they don't change from m68k]
220 static inline int pte_read(pte_t pte
)
222 return pte_val(pte
) & CF_PAGE_READABLE
;
225 static inline int pte_write(pte_t pte
)
227 return pte_val(pte
) & CF_PAGE_WRITABLE
;
230 static inline int pte_exec(pte_t pte
)
232 return pte_val(pte
) & CF_PAGE_EXEC
;
235 static inline int pte_dirty(pte_t pte
)
237 return pte_val(pte
) & CF_PAGE_DIRTY
;
240 static inline int pte_young(pte_t pte
)
242 return pte_val(pte
) & CF_PAGE_ACCESSED
;
245 static inline int pte_special(pte_t pte
)
250 static inline pte_t
pte_wrprotect(pte_t pte
)
252 pte_val(pte
) &= ~CF_PAGE_WRITABLE
;
256 static inline pte_t
pte_rdprotect(pte_t pte
)
258 pte_val(pte
) &= ~CF_PAGE_READABLE
;
262 static inline pte_t
pte_exprotect(pte_t pte
)
264 pte_val(pte
) &= ~CF_PAGE_EXEC
;
268 static inline pte_t
pte_mkclean(pte_t pte
)
270 pte_val(pte
) &= ~CF_PAGE_DIRTY
;
274 static inline pte_t
pte_mkold(pte_t pte
)
276 pte_val(pte
) &= ~CF_PAGE_ACCESSED
;
280 static inline pte_t
pte_mkwrite(pte_t pte
)
282 pte_val(pte
) |= CF_PAGE_WRITABLE
;
286 static inline pte_t
pte_mkread(pte_t pte
)
288 pte_val(pte
) |= CF_PAGE_READABLE
;
292 static inline pte_t
pte_mkexec(pte_t pte
)
294 pte_val(pte
) |= CF_PAGE_EXEC
;
298 static inline pte_t
pte_mkdirty(pte_t pte
)
300 pte_val(pte
) |= CF_PAGE_DIRTY
;
304 static inline pte_t
pte_mkyoung(pte_t pte
)
306 pte_val(pte
) |= CF_PAGE_ACCESSED
;
310 static inline pte_t
pte_mknocache(pte_t pte
)
312 pte_val(pte
) |= 0x80 | (pte_val(pte
) & ~0x40);
316 static inline pte_t
pte_mkcache(pte_t pte
)
318 pte_val(pte
) &= ~CF_PAGE_NOCACHE
;
322 static inline pte_t
pte_mkspecial(pte_t pte
)
327 #define swapper_pg_dir kernel_pg_dir
328 extern pgd_t kernel_pg_dir
[PTRS_PER_PGD
];
331 * Find an entry in a pagetable directory.
333 #define pgd_index(address) ((address) >> PGDIR_SHIFT)
334 #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
337 * Find an entry in a kernel pagetable directory.
339 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
342 * Find an entry in the second-level pagetable.
344 static inline pmd_t
*pmd_offset(pgd_t
*pgd
, unsigned long address
)
346 return (pmd_t
*) pgd
;
350 * Find an entry in the third-level pagetable.
352 #define __pte_offset(address) ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
353 #define pte_offset_kernel(dir, address) \
354 ((pte_t *) __pmd_page(*(dir)) + __pte_offset(address))
357 * Disable caching for page at given kernel virtual address.
359 static inline void nocache_page(void *vaddr
)
364 unsigned long addr
= (unsigned long) vaddr
;
366 dir
= pgd_offset_k(addr
);
367 pmdp
= pmd_offset(dir
, addr
);
368 ptep
= pte_offset_kernel(pmdp
, addr
);
369 *ptep
= pte_mknocache(*ptep
);
373 * Enable caching for page at given kernel virtual address.
375 static inline void cache_page(void *vaddr
)
380 unsigned long addr
= (unsigned long) vaddr
;
382 dir
= pgd_offset_k(addr
);
383 pmdp
= pmd_offset(dir
, addr
);
384 ptep
= pte_offset_kernel(pmdp
, addr
);
385 *ptep
= pte_mkcache(*ptep
);
389 * Encode and de-code a swap entry (must be !pte_none(e) && !pte_present(e))
391 #define __swp_type(x) ((x).val & 0xFF)
392 #define __swp_offset(x) ((x).val >> 11)
393 #define __swp_entry(typ, off) ((swp_entry_t) { (typ) | \
395 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
396 #define __swp_entry_to_pte(x) (__pte((x).val))
398 #define pmd_page(pmd) (pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT))
400 #define pte_offset_map(pmdp, addr) ((pte_t *)__pmd_page(*pmdp) + \
402 #define pte_unmap(pte) ((void) 0)
403 #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
404 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT)
406 #endif /* !__ASSEMBLY__ */
407 #endif /* _MCF_PGTABLE_H */