2 * linux/arch/m68k/mm/memory.c
4 * Copyright (C) 1995 Hamish Macdonald
7 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/string.h>
11 #include <linux/types.h>
12 #include <linux/slab.h>
13 #include <linux/init.h>
14 #include <linux/pagemap.h>
16 #include <asm/setup.h>
17 #include <asm/segment.h>
19 #include <asm/pgalloc.h>
20 #include <asm/system.h>
21 #include <asm/traps.h>
22 #include <asm/machdep.h>
25 /* ++andreas: {get,free}_pointer_table rewritten to use unused fields from
26 struct page instead of separately kmalloced struct. Stolen from
27 arch/sparc/mm/srmmu.c ... */
29 typedef struct list_head ptable_desc
;
30 static LIST_HEAD(ptable_list
);
32 #define PD_PTABLE(page) ((ptable_desc *)&(virt_to_page(page)->lru))
33 #define PD_PAGE(ptable) (list_entry(ptable, struct page, lru))
34 #define PD_MARKBITS(dp) (*(unsigned char *)&PD_PAGE(dp)->index)
36 #define PTABLE_SIZE (PTRS_PER_PMD * sizeof(pmd_t))
38 void __init
init_pointer_table(unsigned long ptable
)
41 unsigned long page
= ptable
& PAGE_MASK
;
42 unsigned char mask
= 1 << ((ptable
- page
)/PTABLE_SIZE
);
45 if (!(PD_MARKBITS(dp
) & mask
)) {
46 PD_MARKBITS(dp
) = 0xff;
47 list_add(dp
, &ptable_list
);
50 PD_MARKBITS(dp
) &= ~mask
;
52 printk("init_pointer_table: %lx, %x\n", ptable
, PD_MARKBITS(dp
));
55 /* unreserve the page so it's possible to free that page */
56 PD_PAGE(dp
)->flags
&= ~(1 << PG_reserved
);
57 init_page_count(PD_PAGE(dp
));
62 pmd_t
*get_pointer_table (void)
64 ptable_desc
*dp
= ptable_list
.next
;
65 unsigned char mask
= PD_MARKBITS (dp
);
70 * For a pointer table for a user process address space, a
71 * table is taken from a page allocated for the purpose. Each
72 * page can hold 8 pointer tables. The page is remapped in
73 * virtual address space to be noncacheable.
79 if (!(page
= (void *)get_zeroed_page(GFP_KERNEL
)))
82 flush_tlb_kernel_page(page
);
85 new = PD_PTABLE(page
);
86 PD_MARKBITS(new) = 0xfe;
87 list_add_tail(new, dp
);
92 for (tmp
= 1, off
= 0; (mask
& tmp
) == 0; tmp
<<= 1, off
+= PTABLE_SIZE
)
94 PD_MARKBITS(dp
) = mask
& ~tmp
;
95 if (!PD_MARKBITS(dp
)) {
96 /* move to end of list */
97 list_move_tail(dp
, &ptable_list
);
99 return (pmd_t
*) (page_address(PD_PAGE(dp
)) + off
);
102 int free_pointer_table (pmd_t
*ptable
)
105 unsigned long page
= (unsigned long)ptable
& PAGE_MASK
;
106 unsigned char mask
= 1 << (((unsigned long)ptable
- page
)/PTABLE_SIZE
);
108 dp
= PD_PTABLE(page
);
109 if (PD_MARKBITS (dp
) & mask
)
110 panic ("table already free!");
112 PD_MARKBITS (dp
) |= mask
;
114 if (PD_MARKBITS(dp
) == 0xff) {
115 /* all tables in page are free, free page */
117 cache_page((void *)page
);
120 } else if (ptable_list
.next
!= dp
) {
122 * move this descriptor to the front of the list, since
123 * it has one or more free tables.
125 list_move(dp
, &ptable_list
);
130 /* invalidate page in both caches */
131 static inline void clear040(unsigned long paddr
)
136 "cinvp %%bc,(%0)\n\t"
141 /* invalidate page in i-cache */
142 static inline void cleari040(unsigned long paddr
)
147 "cinvp %%ic,(%0)\n\t"
152 /* push page in both caches */
153 /* RZ: cpush %bc DOES invalidate %ic, regardless of DPI */
154 static inline void push040(unsigned long paddr
)
159 "cpushp %%bc,(%0)\n\t"
164 /* push and invalidate page in both caches, must disable ints
165 * to avoid invalidating valid data */
166 static inline void pushcl040(unsigned long paddr
)
170 local_irq_save(flags
);
174 local_irq_restore(flags
);
178 * 040: Hit every page containing an address in the range paddr..paddr+len-1.
179 * (Low order bits of the ea of a CINVP/CPUSHP are "don't care"s).
180 * Hit every page until there is a page or less to go. Hit the next page,
181 * and the one after that if the range hits it.
183 /* ++roman: A little bit more care is required here: The CINVP instruction
184 * invalidates cache entries WITHOUT WRITING DIRTY DATA BACK! So the beginning
185 * and the end of the region must be treated differently if they are not
186 * exactly at the beginning or end of a page boundary. Else, maybe too much
187 * data becomes invalidated and thus lost forever. CPUSHP does what we need:
188 * it invalidates the page after pushing dirty data to memory. (Thanks to Jes
189 * for discovering the problem!)
191 /* ... but on the '060, CPUSH doesn't invalidate (for us, since we have set
192 * the DPI bit in the CACR; would it cause problems with temporarily changing
193 * this?). So we have to push first and then additionally to invalidate.
198 * cache_clear() semantics: Clear any cache entries for the area in question,
199 * without writing back dirty entries first. This is useful if the data will
200 * be overwritten anyway, e.g. by DMA to memory. The range is defined by a
201 * _physical_ address.
204 void cache_clear (unsigned long paddr
, int len
)
206 if (CPU_IS_040_OR_060
) {
210 * We need special treatment for the first page, in case it
211 * is not page-aligned. Page align the addresses to work
212 * around bug I17 in the 68060.
214 if ((tmp
= -paddr
& (PAGE_SIZE
- 1))) {
215 pushcl040(paddr
& PAGE_MASK
);
216 if ((len
-= tmp
) <= 0)
222 while ((len
-= tmp
) >= 0) {
227 /* a page boundary gets crossed at the end */
230 else /* 68030 or 68020 */
231 asm volatile ("movec %/cacr,%/d0\n\t"
234 : : "i" (FLUSH_I_AND_D
)
236 #ifdef CONFIG_M68K_L2_CACHE
241 EXPORT_SYMBOL(cache_clear
);
245 * cache_push() semantics: Write back any dirty cache data in the given area,
246 * and invalidate the range in the instruction cache. It needs not (but may)
247 * invalidate those entries also in the data cache. The range is defined by a
248 * _physical_ address.
251 void cache_push (unsigned long paddr
, int len
)
253 if (CPU_IS_040_OR_060
) {
257 * on 68040 or 68060, push cache lines for pages in the range;
258 * on the '040 this also invalidates the pushed lines, but not on
261 len
+= paddr
& (PAGE_SIZE
- 1);
264 * Work around bug I17 in the 68060 affecting some instruction
265 * lines not being invalidated properly.
272 } while ((len
-= tmp
) > 0);
275 * 68030/68020 have no writeback cache. On the other hand,
276 * cache_push is actually a superset of cache_clear (the lines
277 * get written back and invalidated), so we should make sure
278 * to perform the corresponding actions. After all, this is getting
279 * called in places where we've just loaded code, or whatever, so
280 * flushing the icache is appropriate; flushing the dcache shouldn't
283 else /* 68030 or 68020 */
284 asm volatile ("movec %/cacr,%/d0\n\t"
289 #ifdef CONFIG_M68K_L2_CACHE
294 EXPORT_SYMBOL(cache_push
);