1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _M68K_TLBFLUSH_H
3 #define _M68K_TLBFLUSH_H
8 #include <asm/current.h>
9 #include <asm/mcfmmu.h>
11 static inline void flush_tlb_kernel_page(void *addr
)
13 if (CPU_IS_COLDFIRE
) {
14 mmu_write(MMUOR
, MMUOR_CNL
);
15 } else if (CPU_IS_040_OR_060
) {
16 mm_segment_t old_fs
= get_fs();
18 __asm__
__volatile__(".chip 68040\n\t"
23 } else if (CPU_IS_020_OR_030
)
24 __asm__
__volatile__("pflush #4,#4,(%0)" : : "a" (addr
));
28 * flush all user-space atc entries.
30 static inline void __flush_tlb(void)
32 if (CPU_IS_COLDFIRE
) {
33 mmu_write(MMUOR
, MMUOR_CNL
);
34 } else if (CPU_IS_040_OR_060
) {
35 __asm__
__volatile__(".chip 68040\n\t"
38 } else if (CPU_IS_020_OR_030
) {
39 __asm__
__volatile__("pflush #0,#4");
43 static inline void __flush_tlb040_one(unsigned long addr
)
45 __asm__
__volatile__(".chip 68040\n\t"
51 static inline void __flush_tlb_one(unsigned long addr
)
54 mmu_write(MMUOR
, MMUOR_CNL
);
55 else if (CPU_IS_040_OR_060
)
56 __flush_tlb040_one(addr
);
57 else if (CPU_IS_020_OR_030
)
58 __asm__
__volatile__("pflush #0,#4,(%0)" : : "a" (addr
));
61 #define flush_tlb() __flush_tlb()
64 * flush all atc entries (both kernel and user-space entries).
66 static inline void flush_tlb_all(void)
68 if (CPU_IS_COLDFIRE
) {
69 mmu_write(MMUOR
, MMUOR_CNL
);
70 } else if (CPU_IS_040_OR_060
) {
71 __asm__
__volatile__(".chip 68040\n\t"
74 } else if (CPU_IS_020_OR_030
) {
75 __asm__
__volatile__("pflusha");
79 static inline void flush_tlb_mm(struct mm_struct
*mm
)
81 if (mm
== current
->active_mm
)
85 static inline void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long addr
)
87 if (vma
->vm_mm
== current
->active_mm
) {
88 mm_segment_t old_fs
= get_fs();
90 __flush_tlb_one(addr
);
95 static inline void flush_tlb_range(struct vm_area_struct
*vma
,
96 unsigned long start
, unsigned long end
)
98 if (vma
->vm_mm
== current
->active_mm
)
102 static inline void flush_tlb_kernel_range(unsigned long start
, unsigned long end
)
110 /* Reserved PMEGs. */
111 extern char sun3_reserved_pmeg
[SUN3_PMEGS_NUM
];
112 extern unsigned long pmeg_vaddr
[SUN3_PMEGS_NUM
];
113 extern unsigned char pmeg_alloc
[SUN3_PMEGS_NUM
];
114 extern unsigned char pmeg_ctx
[SUN3_PMEGS_NUM
];
116 /* Flush all userspace mappings one by one... (why no flush command,
118 static inline void flush_tlb_all(void)
121 unsigned char ctx
, oldctx
;
123 oldctx
= sun3_get_context();
124 for(addr
= 0x00000000; addr
< TASK_SIZE
; addr
+= SUN3_PMEG_SIZE
) {
125 for(ctx
= 0; ctx
< 8; ctx
++) {
126 sun3_put_context(ctx
);
127 sun3_put_segmap(addr
, SUN3_INVALID_PMEG
);
131 sun3_put_context(oldctx
);
132 /* erase all of the userspace pmeg maps, we've clobbered them
134 for(addr
= 0; addr
< SUN3_INVALID_PMEG
; addr
++) {
135 if(pmeg_alloc
[addr
] == 1) {
136 pmeg_alloc
[addr
] = 0;
138 pmeg_vaddr
[addr
] = 0;
144 /* Clear user TLB entries within the context named in mm */
145 static inline void flush_tlb_mm (struct mm_struct
*mm
)
147 unsigned char oldctx
;
151 oldctx
= sun3_get_context();
152 sun3_put_context(mm
->context
);
154 for(i
= 0; i
< TASK_SIZE
; i
+= SUN3_PMEG_SIZE
) {
155 seg
= sun3_get_segmap(i
);
156 if(seg
== SUN3_INVALID_PMEG
)
159 sun3_put_segmap(i
, SUN3_INVALID_PMEG
);
165 sun3_put_context(oldctx
);
169 /* Flush a single TLB page. In this case, we're limited to flushing a
171 static inline void flush_tlb_page (struct vm_area_struct
*vma
,
174 unsigned char oldctx
;
177 oldctx
= sun3_get_context();
178 sun3_put_context(vma
->vm_mm
->context
);
179 addr
&= ~SUN3_PMEG_MASK
;
180 if((i
= sun3_get_segmap(addr
)) != SUN3_INVALID_PMEG
)
185 sun3_put_segmap (addr
, SUN3_INVALID_PMEG
);
187 sun3_put_context(oldctx
);
190 /* Flush a range of pages from TLB. */
192 static inline void flush_tlb_range (struct vm_area_struct
*vma
,
193 unsigned long start
, unsigned long end
)
195 struct mm_struct
*mm
= vma
->vm_mm
;
196 unsigned char seg
, oldctx
;
198 start
&= ~SUN3_PMEG_MASK
;
200 oldctx
= sun3_get_context();
201 sun3_put_context(mm
->context
);
205 if((seg
= sun3_get_segmap(start
)) == SUN3_INVALID_PMEG
)
207 if(pmeg_ctx
[seg
] == mm
->context
) {
212 sun3_put_segmap(start
, SUN3_INVALID_PMEG
);
214 start
+= SUN3_PMEG_SIZE
;
218 static inline void flush_tlb_kernel_range(unsigned long start
, unsigned long end
)
223 /* Flush kernel page from TLB. */
224 static inline void flush_tlb_kernel_page (unsigned long addr
)
226 sun3_put_segmap (addr
& ~(SUN3_PMEG_SIZE
- 1), SUN3_INVALID_PMEG
);
231 #else /* !CONFIG_MMU */
234 * flush all user-space atc entries.
236 static inline void __flush_tlb(void)
241 static inline void __flush_tlb_one(unsigned long addr
)
246 #define flush_tlb() __flush_tlb()
249 * flush all atc entries (both kernel and user-space entries).
251 static inline void flush_tlb_all(void)
256 static inline void flush_tlb_mm(struct mm_struct
*mm
)
261 static inline void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long addr
)
266 static inline void flush_tlb_range(struct mm_struct
*mm
,
267 unsigned long start
, unsigned long end
)
272 static inline void flush_tlb_kernel_page(unsigned long addr
)
277 #endif /* CONFIG_MMU */
279 #endif /* _M68K_TLBFLUSH_H */