1 // SPDX-License-Identifier: GPL-2.0
3 * r2300.c: R2000 and R3000 specific mmu/cache code.
5 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
7 * with a lot of changes to make this thing work for R3000s
8 * Tx39XX R4k style caches added. HK
9 * Copyright (C) 1998, 1999, 2000 Harald Koerfgen
10 * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/smp.h>
18 #include <asm/cacheops.h>
20 #include <asm/pgtable.h>
21 #include <asm/mmu_context.h>
22 #include <asm/isadep.h>
24 #include <asm/bootinfo.h>
27 /* For R3000 cores with R4000 style caches */
28 static unsigned long icache_size
, dcache_size
; /* Size in bytes */
30 #include <asm/r4kcache.h>
32 /* This sequence is required to ensure icache is disabled immediately */
33 #define TX39_STOP_STREAMING() \
34 __asm__ __volatile__( \
36 ".set noreorder\n\t" \
43 /* TX39H-style cache flush routines. */
44 static void tx39h_flush_icache_all(void)
46 unsigned long flags
, config
;
48 /* disable icache (set ICE#) */
49 local_irq_save(flags
);
50 config
= read_c0_conf();
51 write_c0_conf(config
& ~TX39_CONF_ICE
);
52 TX39_STOP_STREAMING();
54 write_c0_conf(config
);
55 local_irq_restore(flags
);
58 static void tx39h_dma_cache_wback_inv(unsigned long addr
, unsigned long size
)
60 /* Catch bad driver code */
64 blast_inv_dcache_range(addr
, addr
+ size
);
69 static inline void tx39_blast_dcache_page(unsigned long addr
)
71 if (current_cpu_type() != CPU_TX3912
)
72 blast_dcache16_page(addr
);
75 static inline void tx39_blast_dcache_page_indexed(unsigned long addr
)
77 blast_dcache16_page_indexed(addr
);
80 static inline void tx39_blast_dcache(void)
85 static inline void tx39_blast_icache_page(unsigned long addr
)
87 unsigned long flags
, config
;
88 /* disable icache (set ICE#) */
89 local_irq_save(flags
);
90 config
= read_c0_conf();
91 write_c0_conf(config
& ~TX39_CONF_ICE
);
92 TX39_STOP_STREAMING();
93 blast_icache16_page(addr
);
94 write_c0_conf(config
);
95 local_irq_restore(flags
);
98 static inline void tx39_blast_icache_page_indexed(unsigned long addr
)
100 unsigned long flags
, config
;
101 /* disable icache (set ICE#) */
102 local_irq_save(flags
);
103 config
= read_c0_conf();
104 write_c0_conf(config
& ~TX39_CONF_ICE
);
105 TX39_STOP_STREAMING();
106 blast_icache16_page_indexed(addr
);
107 write_c0_conf(config
);
108 local_irq_restore(flags
);
111 static inline void tx39_blast_icache(void)
113 unsigned long flags
, config
;
114 /* disable icache (set ICE#) */
115 local_irq_save(flags
);
116 config
= read_c0_conf();
117 write_c0_conf(config
& ~TX39_CONF_ICE
);
118 TX39_STOP_STREAMING();
120 write_c0_conf(config
);
121 local_irq_restore(flags
);
124 static void tx39__flush_cache_vmap(void)
129 static void tx39__flush_cache_vunmap(void)
134 static inline void tx39_flush_cache_all(void)
136 if (!cpu_has_dc_aliases
)
142 static inline void tx39___flush_cache_all(void)
148 static void tx39_flush_cache_mm(struct mm_struct
*mm
)
150 if (!cpu_has_dc_aliases
)
153 if (cpu_context(smp_processor_id(), mm
) != 0)
157 static void tx39_flush_cache_range(struct vm_area_struct
*vma
,
158 unsigned long start
, unsigned long end
)
160 if (!cpu_has_dc_aliases
)
162 if (!(cpu_context(smp_processor_id(), vma
->vm_mm
)))
168 static void tx39_flush_cache_page(struct vm_area_struct
*vma
, unsigned long page
, unsigned long pfn
)
170 int exec
= vma
->vm_flags
& VM_EXEC
;
171 struct mm_struct
*mm
= vma
->vm_mm
;
179 * If ownes no valid ASID yet, cannot possibly have gotten
180 * this page into the cache.
182 if (cpu_context(smp_processor_id(), mm
) == 0)
186 pgdp
= pgd_offset(mm
, page
);
187 p4dp
= p4d_offset(pgdp
, page
);
188 pudp
= pud_offset(p4dp
, page
);
189 pmdp
= pmd_offset(pudp
, page
);
190 ptep
= pte_offset(pmdp
, page
);
193 * If the page isn't marked valid, the page cannot possibly be
196 if (!(pte_val(*ptep
) & _PAGE_PRESENT
))
200 * Doing flushes for another ASID than the current one is
201 * too difficult since stupid R4k caches do a TLB translation
202 * for every cache flush operation. So we do indexed flushes
203 * in that case, which doesn't overly flush the cache too much.
205 if ((mm
== current
->active_mm
) && (pte_val(*ptep
) & _PAGE_VALID
)) {
206 if (cpu_has_dc_aliases
|| exec
)
207 tx39_blast_dcache_page(page
);
209 tx39_blast_icache_page(page
);
215 * Do indexed flush, too much work to get the (possible) TLB refills
218 if (cpu_has_dc_aliases
|| exec
)
219 tx39_blast_dcache_page_indexed(page
);
221 tx39_blast_icache_page_indexed(page
);
224 static void local_tx39_flush_data_cache_page(void * addr
)
226 tx39_blast_dcache_page((unsigned long)addr
);
229 static void tx39_flush_data_cache_page(unsigned long addr
)
231 tx39_blast_dcache_page(addr
);
234 static void tx39_flush_icache_range(unsigned long start
, unsigned long end
)
236 if (end
- start
> dcache_size
)
239 protected_blast_dcache_range(start
, end
);
241 if (end
- start
> icache_size
)
244 unsigned long flags
, config
;
245 /* disable icache (set ICE#) */
246 local_irq_save(flags
);
247 config
= read_c0_conf();
248 write_c0_conf(config
& ~TX39_CONF_ICE
);
249 TX39_STOP_STREAMING();
250 protected_blast_icache_range(start
, end
);
251 write_c0_conf(config
);
252 local_irq_restore(flags
);
256 static void tx39_flush_kernel_vmap_range(unsigned long vaddr
, int size
)
261 static void tx39_dma_cache_wback_inv(unsigned long addr
, unsigned long size
)
265 if (((size
| addr
) & (PAGE_SIZE
- 1)) == 0) {
268 tx39_blast_dcache_page(addr
);
270 } while(addr
!= end
);
271 } else if (size
> dcache_size
) {
274 blast_dcache_range(addr
, addr
+ size
);
278 static void tx39_dma_cache_inv(unsigned long addr
, unsigned long size
)
282 if (((size
| addr
) & (PAGE_SIZE
- 1)) == 0) {
285 tx39_blast_dcache_page(addr
);
287 } while(addr
!= end
);
288 } else if (size
> dcache_size
) {
291 blast_inv_dcache_range(addr
, addr
+ size
);
295 static __init
void tx39_probe_cache(void)
297 unsigned long config
;
299 config
= read_c0_conf();
301 icache_size
= 1 << (10 + ((config
& TX39_CONF_ICS_MASK
) >>
302 TX39_CONF_ICS_SHIFT
));
303 dcache_size
= 1 << (10 + ((config
& TX39_CONF_DCS_MASK
) >>
304 TX39_CONF_DCS_SHIFT
));
306 current_cpu_data
.icache
.linesz
= 16;
307 switch (current_cpu_type()) {
309 current_cpu_data
.icache
.ways
= 1;
310 current_cpu_data
.dcache
.ways
= 1;
311 current_cpu_data
.dcache
.linesz
= 4;
315 current_cpu_data
.icache
.ways
= 2;
316 current_cpu_data
.dcache
.ways
= 2;
317 current_cpu_data
.dcache
.linesz
= 16;
322 current_cpu_data
.icache
.ways
= 1;
323 current_cpu_data
.dcache
.ways
= 1;
324 current_cpu_data
.dcache
.linesz
= 16;
329 void tx39_cache_init(void)
331 extern void build_clear_page(void);
332 extern void build_copy_page(void);
333 unsigned long config
;
335 config
= read_c0_conf();
336 config
&= ~TX39_CONF_WBON
;
337 write_c0_conf(config
);
341 switch (current_cpu_type()) {
343 /* TX39/H core (writethru direct-map cache) */
344 __flush_cache_vmap
= tx39__flush_cache_vmap
;
345 __flush_cache_vunmap
= tx39__flush_cache_vunmap
;
346 flush_cache_all
= tx39h_flush_icache_all
;
347 __flush_cache_all
= tx39h_flush_icache_all
;
348 flush_cache_mm
= (void *) tx39h_flush_icache_all
;
349 flush_cache_range
= (void *) tx39h_flush_icache_all
;
350 flush_cache_page
= (void *) tx39h_flush_icache_all
;
351 flush_icache_range
= (void *) tx39h_flush_icache_all
;
352 local_flush_icache_range
= (void *) tx39h_flush_icache_all
;
354 local_flush_data_cache_page
= (void *) tx39h_flush_icache_all
;
355 flush_data_cache_page
= (void *) tx39h_flush_icache_all
;
357 _dma_cache_wback_inv
= tx39h_dma_cache_wback_inv
;
359 shm_align_mask
= PAGE_SIZE
- 1;
366 /* TX39/H2,H3 core (writeback 2way-set-associative cache) */
367 /* board-dependent init code may set WBON */
369 __flush_cache_vmap
= tx39__flush_cache_vmap
;
370 __flush_cache_vunmap
= tx39__flush_cache_vunmap
;
372 flush_cache_all
= tx39_flush_cache_all
;
373 __flush_cache_all
= tx39___flush_cache_all
;
374 flush_cache_mm
= tx39_flush_cache_mm
;
375 flush_cache_range
= tx39_flush_cache_range
;
376 flush_cache_page
= tx39_flush_cache_page
;
377 flush_icache_range
= tx39_flush_icache_range
;
378 local_flush_icache_range
= tx39_flush_icache_range
;
380 __flush_kernel_vmap_range
= tx39_flush_kernel_vmap_range
;
382 local_flush_data_cache_page
= local_tx39_flush_data_cache_page
;
383 flush_data_cache_page
= tx39_flush_data_cache_page
;
385 _dma_cache_wback_inv
= tx39_dma_cache_wback_inv
;
386 _dma_cache_wback
= tx39_dma_cache_wback_inv
;
387 _dma_cache_inv
= tx39_dma_cache_inv
;
389 shm_align_mask
= max_t(unsigned long,
390 (dcache_size
/ current_cpu_data
.dcache
.ways
) - 1,
396 __flush_icache_user_range
= flush_icache_range
;
397 __local_flush_icache_user_range
= local_flush_icache_range
;
399 current_cpu_data
.icache
.waysize
= icache_size
/ current_cpu_data
.icache
.ways
;
400 current_cpu_data
.dcache
.waysize
= dcache_size
/ current_cpu_data
.dcache
.ways
;
402 current_cpu_data
.icache
.sets
=
403 current_cpu_data
.icache
.waysize
/ current_cpu_data
.icache
.linesz
;
404 current_cpu_data
.dcache
.sets
=
405 current_cpu_data
.dcache
.waysize
/ current_cpu_data
.dcache
.linesz
;
407 if (current_cpu_data
.dcache
.waysize
> PAGE_SIZE
)
408 current_cpu_data
.dcache
.flags
|= MIPS_CACHE_ALIASES
;
410 current_cpu_data
.icache
.waybit
= 0;
411 current_cpu_data
.dcache
.waybit
= 0;
413 printk("Primary instruction cache %ldkB, linesize %d bytes\n",
414 icache_size
>> 10, current_cpu_data
.icache
.linesz
);
415 printk("Primary data cache %ldkB, linesize %d bytes\n",
416 dcache_size
>> 10, current_cpu_data
.dcache
.linesz
);
420 tx39h_flush_icache_all();