patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-m68knommu / pgtable.h
1 #ifndef _M68KNOMMU_PGTABLE_H
2 #define _M68KNOMMU_PGTABLE_H
3
4 /*
5  * (C) Copyright 2000-2002, Greg Ungerer <gerg@snapgear.com>
6  */
7
8 #include <linux/config.h>
9 #include <linux/slab.h>
10 #include <asm/processor.h>
11 #include <asm/page.h>
12 #include <asm/io.h>
13
14 /*
15  * Trivial page table functions.
16  */
17 #define pgd_present(pgd)        (1)
18 #define pgd_none(pgd)           (0)
19 #define pgd_bad(pgd)            (0)
20 #define pgd_clear(pgdp)
21 #define kern_addr_valid(addr)   (1)
22 #define pmd_offset(a, b)        ((void *)0)
23
24 #define PAGE_NONE       __pgprot(0)
25 #define PAGE_SHARED     __pgprot(0)
26 #define PAGE_COPY       __pgprot(0)
27 #define PAGE_READONLY   __pgprot(0)
28 #define PAGE_KERNEL     __pgprot(0)
29
30 extern void paging_init(void);
31 #define swapper_pg_dir ((pgd_t *) 0)
32
33 #define __swp_type(x)           (0)
34 #define __swp_offset(x)         (0)
35 #define __swp_entry(typ,off)    ((swp_entry_t) { ((typ) | ((off) << 7)) })
36 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
37 #define __swp_entry_to_pte(x)   ((pte_t) { (x).val })
38
39 static inline int pte_file(pte_t pte) { return 0; }
40
41 /*
42  * ZERO_PAGE is a global shared page that is always zero: used
43  * for zero-mapped memory areas etc..
44  */
45 #define ZERO_PAGE(vaddr)        (virt_to_page(0))
46
47 /*
48  * These would be in other places but having them here reduces the diffs.
49  */
50 extern unsigned int kobjsize(const void *objp);
51 extern int is_in_rom(unsigned long);
52
53 /*
54  * No page table caches to initialise.
55  */
56 #define pgtable_cache_init()    do { } while (0)
57 #define io_remap_page_range     remap_page_range
58
59 /*
60  * All 32bit addresses are effectively valid for vmalloc...
61  * Sort of meaningless for non-VM targets.
62  */
63 #define VMALLOC_START   0
64 #define VMALLOC_END     0xffffffff
65
66 #endif /* _M68KNOMMU_PGTABLE_H */