1#ifndef _M68K_PGTABLE_H
2#define _M68K_PGTABLE_H
3
4#include <asm-generic/4level-fixup.h>
5
6#include <linux/config.h>
7#include <asm/setup.h>
8
9#ifndef __ASSEMBLY__
10#include <asm/processor.h>
11#include <linux/sched.h>
12#include <linux/threads.h>
13
14
15
16
17
18
19#include <asm/virtconvert.h>
20
21
22
23
24
25#define set_pte(pteptr, pteval) \
26 do{ \
27 *(pteptr) = (pteval); \
28 } while(0)
29
30
31
32#ifdef CONFIG_SUN3
33#define PMD_SHIFT 17
34#else
35#define PMD_SHIFT 22
36#endif
37#define PMD_SIZE (1UL << PMD_SHIFT)
38#define PMD_MASK (~(PMD_SIZE-1))
39
40
41#ifdef CONFIG_SUN3
42#define PGDIR_SHIFT 17
43#else
44#define PGDIR_SHIFT 25
45#endif
46#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
47#define PGDIR_MASK (~(PGDIR_SIZE-1))
48
49
50
51
52
53#ifdef CONFIG_SUN3
54#define PTRS_PER_PTE 16
55#define PTRS_PER_PMD 1
56#define PTRS_PER_PGD 2048
57#else
58#define PTRS_PER_PTE 1024
59#define PTRS_PER_PMD 8
60#define PTRS_PER_PGD 128
61#endif
62#define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
63#define FIRST_USER_PGD_NR 0
64
65
66#ifdef CONFIG_SUN3
67#define KMAP_START 0x0DC00000
68#define KMAP_END 0x0E000000
69#else
70#define KMAP_START 0xd0000000
71#define KMAP_END 0xf0000000
72#endif
73
74#ifndef CONFIG_SUN3
75
76
77
78
79
80
81
82#define VMALLOC_OFFSET (8*1024*1024)
83#define VMALLOC_START (((unsigned long) high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
84#define VMALLOC_END KMAP_START
85#else
86extern unsigned long vmalloc_end;
87#define VMALLOC_START 0x0f800000
88#define VMALLOC_END vmalloc_end
89#endif
90
91
92extern void *empty_zero_page;
93
94
95
96
97
98#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
99
100
101#define BITS_PER_PTR (8*sizeof(unsigned long))
102
103
104#define PTR_MASK (~(sizeof(void*)-1))
105
106
107
108#define SIZEOF_PTR_LOG2 2
109
110
111
112
113
114#ifdef CONFIG_SINGLE_MEMORY_CHUNK
115
116
117
118
119static inline int mm_end_of_chunk(unsigned long addr, int len)
120{
121 return 0;
122}
123#else
124int mm_end_of_chunk (unsigned long addr, int len);
125#endif
126
127extern void kernel_set_cachemode(void *addr, unsigned long size, int cmode);
128
129
130
131
132
133
134static inline void update_mmu_cache(struct vm_area_struct *vma,
135 unsigned long address, pte_t pte)
136{
137}
138
139#endif
140
141#define kern_addr_valid(addr) (1)
142
143#define io_remap_page_range(vma, vaddr, paddr, size, prot) \
144 remap_pfn_range(vma, vaddr, (paddr) >> PAGE_SHIFT, size, prot)
145
146
147
148#ifdef CONFIG_SUN3
149#include <asm/sun3_pgtable.h>
150#else
151#include <asm/motorola_pgtable.h>
152#endif
153
154#ifndef __ASSEMBLY__
155#include <asm-generic/pgtable.h>
156
157
158
159
160#ifdef SUN3_PAGE_NOCACHE
161# define __SUN3_PAGE_NOCACHE SUN3_PAGE_NOCACHE
162#else
163# define __SUN3_PAGE_NOCACHE 0
164#endif
165#define pgprot_noncached(prot) \
166 (MMU_IS_SUN3 \
167 ? (__pgprot(pgprot_val(prot) | __SUN3_PAGE_NOCACHE)) \
168 : ((MMU_IS_851 || MMU_IS_030) \
169 ? (__pgprot(pgprot_val(prot) | _PAGE_NOCACHE030)) \
170 : (MMU_IS_040 || MMU_IS_060) \
171 ? (__pgprot((pgprot_val(prot) & _CACHEMASK040) | _PAGE_NOCACHE_S)) \
172 : (prot)))
173
174#endif
175
176
177
178
179#define pgtable_cache_init() do { } while (0)
180
181#define check_pgt_cache() do { } while (0)
182
183#endif
184