2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
7 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Ralf Baechle (ralf@gnu.org)
8 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
10 #include <linux/config.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
15 #include <linux/bitops.h>
17 #include <asm/bcache.h>
18 #include <asm/bootinfo.h>
19 #include <asm/cacheops.h>
21 #include <asm/cpu-features.h>
24 #include <asm/pgtable.h>
25 #include <asm/r4kcache.h>
26 #include <asm/system.h>
27 #include <asm/mmu_context.h>
30 static unsigned long icache_size
, dcache_size
, scache_size
;
33 * Dummy cache handling routines for machines without boardcaches
35 static void no_sc_noop(void) {}
37 static struct bcache_ops no_sc_ops
= {
38 .bc_enable
= (void *)no_sc_noop
,
39 .bc_disable
= (void *)no_sc_noop
,
40 .bc_wback_inv
= (void *)no_sc_noop
,
41 .bc_inv
= (void *)no_sc_noop
44 struct bcache_ops
*bcops
= &no_sc_ops
;
46 #define cpu_is_r4600_v1_x() ((read_c0_prid() & 0xfffffff0) == 0x2010)
47 #define cpu_is_r4600_v2_x() ((read_c0_prid() & 0xfffffff0) == 0x2020)
49 #define R4600_HIT_CACHEOP_WAR_IMPL \
51 if (R4600_V2_HIT_CACHEOP_WAR && cpu_is_r4600_v2_x()) \
52 *(volatile unsigned long *)CKSEG1; \
53 if (R4600_V1_HIT_CACHEOP_WAR) \
54 __asm__ __volatile__("nop;nop;nop;nop"); \
57 static void (*r4k_blast_dcache_page
)(unsigned long addr
);
59 static inline void r4k_blast_dcache_page_dc32(unsigned long addr
)
61 R4600_HIT_CACHEOP_WAR_IMPL
;
62 blast_dcache32_page(addr
);
65 static inline void r4k_blast_dcache_page_setup(void)
67 unsigned long dc_lsize
= cpu_dcache_line_size();
70 r4k_blast_dcache_page
= blast_dcache16_page
;
71 else if (dc_lsize
== 32)
72 r4k_blast_dcache_page
= r4k_blast_dcache_page_dc32
;
75 static void (* r4k_blast_dcache_page_indexed
)(unsigned long addr
);
77 static inline void r4k_blast_dcache_page_indexed_setup(void)
79 unsigned long dc_lsize
= cpu_dcache_line_size();
82 r4k_blast_dcache_page_indexed
= blast_dcache16_page_indexed
;
83 else if (dc_lsize
== 32)
84 r4k_blast_dcache_page_indexed
= blast_dcache32_page_indexed
;
87 static void (* r4k_blast_dcache
)(void);
89 static inline void r4k_blast_dcache_setup(void)
91 unsigned long dc_lsize
= cpu_dcache_line_size();
94 r4k_blast_dcache
= blast_dcache16
;
95 else if (dc_lsize
== 32)
96 r4k_blast_dcache
= blast_dcache32
;
99 /* force code alignment (used for TX49XX_ICACHE_INDEX_INV_WAR) */
100 #define JUMP_TO_ALIGN(order) \
101 __asm__ __volatile__( \
103 ".align\t" #order "\n\t" \
106 #define CACHE32_UNROLL32_ALIGN JUMP_TO_ALIGN(10) /* 32 * 32 = 1024 */
107 #define CACHE32_UNROLL32_ALIGN2 JUMP_TO_ALIGN(11)
109 static inline void blast_r4600_v1_icache32(void)
113 local_irq_save(flags
);
115 local_irq_restore(flags
);
118 static inline void tx49_blast_icache32(void)
120 unsigned long start
= INDEX_BASE
;
121 unsigned long end
= start
+ current_cpu_data
.icache
.waysize
;
122 unsigned long ws_inc
= 1UL << current_cpu_data
.icache
.waybit
;
123 unsigned long ws_end
= current_cpu_data
.icache
.ways
<<
124 current_cpu_data
.icache
.waybit
;
125 unsigned long ws
, addr
;
127 CACHE32_UNROLL32_ALIGN2
;
128 /* I'm in even chunk. blast odd chunks */
129 for (ws
= 0; ws
< ws_end
; ws
+= ws_inc
)
130 for (addr
= start
+ 0x400; addr
< end
; addr
+= 0x400 * 2)
131 cache32_unroll32(addr
|ws
,Index_Invalidate_I
);
132 CACHE32_UNROLL32_ALIGN
;
133 /* I'm in odd chunk. blast even chunks */
134 for (ws
= 0; ws
< ws_end
; ws
+= ws_inc
)
135 for (addr
= start
; addr
< end
; addr
+= 0x400 * 2)
136 cache32_unroll32(addr
|ws
,Index_Invalidate_I
);
139 static inline void blast_icache32_r4600_v1_page_indexed(unsigned long page
)
143 local_irq_save(flags
);
144 blast_icache32_page_indexed(page
);
145 local_irq_restore(flags
);
148 static inline void tx49_blast_icache32_page_indexed(unsigned long page
)
150 unsigned long start
= page
;
151 unsigned long end
= start
+ PAGE_SIZE
;
152 unsigned long ws_inc
= 1UL << current_cpu_data
.icache
.waybit
;
153 unsigned long ws_end
= current_cpu_data
.icache
.ways
<<
154 current_cpu_data
.icache
.waybit
;
155 unsigned long ws
, addr
;
157 CACHE32_UNROLL32_ALIGN2
;
158 /* I'm in even chunk. blast odd chunks */
159 for (ws
= 0; ws
< ws_end
; ws
+= ws_inc
)
160 for (addr
= start
+ 0x400; addr
< end
; addr
+= 0x400 * 2)
161 cache32_unroll32(addr
|ws
,Index_Invalidate_I
);
162 CACHE32_UNROLL32_ALIGN
;
163 /* I'm in odd chunk. blast even chunks */
164 for (ws
= 0; ws
< ws_end
; ws
+= ws_inc
)
165 for (addr
= start
; addr
< end
; addr
+= 0x400 * 2)
166 cache32_unroll32(addr
|ws
,Index_Invalidate_I
);
169 static void (* r4k_blast_icache_page
)(unsigned long addr
);
171 static inline void r4k_blast_icache_page_setup(void)
173 unsigned long ic_lsize
= cpu_icache_line_size();
176 r4k_blast_icache_page
= blast_icache16_page
;
177 else if (ic_lsize
== 32)
178 r4k_blast_icache_page
= blast_icache32_page
;
179 else if (ic_lsize
== 64)
180 r4k_blast_icache_page
= blast_icache64_page
;
184 static void (* r4k_blast_icache_page_indexed
)(unsigned long addr
);
186 static inline void r4k_blast_icache_page_indexed_setup(void)
188 unsigned long ic_lsize
= cpu_icache_line_size();
191 r4k_blast_icache_page_indexed
= blast_icache16_page_indexed
;
192 else if (ic_lsize
== 32) {
193 if (TX49XX_ICACHE_INDEX_INV_WAR
)
194 r4k_blast_icache_page_indexed
=
195 tx49_blast_icache32_page_indexed
;
196 else if (R4600_V1_INDEX_ICACHEOP_WAR
&& cpu_is_r4600_v1_x())
197 r4k_blast_icache_page_indexed
=
198 blast_icache32_r4600_v1_page_indexed
;
200 r4k_blast_icache_page_indexed
=
201 blast_icache32_page_indexed
;
202 } else if (ic_lsize
== 64)
203 r4k_blast_icache_page_indexed
= blast_icache64_page_indexed
;
206 static void (* r4k_blast_icache
)(void);
208 static inline void r4k_blast_icache_setup(void)
210 unsigned long ic_lsize
= cpu_icache_line_size();
213 r4k_blast_icache
= blast_icache16
;
214 else if (ic_lsize
== 32) {
215 if (R4600_V1_INDEX_ICACHEOP_WAR
&& cpu_is_r4600_v1_x())
216 r4k_blast_icache
= blast_r4600_v1_icache32
;
217 else if (TX49XX_ICACHE_INDEX_INV_WAR
)
218 r4k_blast_icache
= tx49_blast_icache32
;
220 r4k_blast_icache
= blast_icache32
;
221 } else if (ic_lsize
== 64)
222 r4k_blast_icache
= blast_icache64
;
225 static void (* r4k_blast_scache_page
)(unsigned long addr
);
227 static inline void r4k_blast_scache_page_setup(void)
229 unsigned long sc_lsize
= cpu_scache_line_size();
232 r4k_blast_scache_page
= blast_scache16_page
;
233 else if (sc_lsize
== 32)
234 r4k_blast_scache_page
= blast_scache32_page
;
235 else if (sc_lsize
== 64)
236 r4k_blast_scache_page
= blast_scache64_page
;
237 else if (sc_lsize
== 128)
238 r4k_blast_scache_page
= blast_scache128_page
;
241 static void (* r4k_blast_scache_page_indexed
)(unsigned long addr
);
243 static inline void r4k_blast_scache_page_indexed_setup(void)
245 unsigned long sc_lsize
= cpu_scache_line_size();
248 r4k_blast_scache_page_indexed
= blast_scache16_page_indexed
;
249 else if (sc_lsize
== 32)
250 r4k_blast_scache_page_indexed
= blast_scache32_page_indexed
;
251 else if (sc_lsize
== 64)
252 r4k_blast_scache_page_indexed
= blast_scache64_page_indexed
;
253 else if (sc_lsize
== 128)
254 r4k_blast_scache_page_indexed
= blast_scache128_page_indexed
;
257 static void (* r4k_blast_scache
)(void);
259 static inline void r4k_blast_scache_setup(void)
261 unsigned long sc_lsize
= cpu_scache_line_size();
264 r4k_blast_scache
= blast_scache16
;
265 else if (sc_lsize
== 32)
266 r4k_blast_scache
= blast_scache32
;
267 else if (sc_lsize
== 64)
268 r4k_blast_scache
= blast_scache64
;
269 else if (sc_lsize
== 128)
270 r4k_blast_scache
= blast_scache128
;
274 * This is former mm's flush_cache_all() which really should be
275 * flush_cache_vunmap these days ...
277 static inline void local_r4k_flush_cache_all(void * args
)
283 static void r4k_flush_cache_all(void)
285 if (!cpu_has_dc_aliases
)
288 on_each_cpu(local_r4k_flush_cache_all
, NULL
, 1, 1);
291 static inline void local_r4k___flush_cache_all(void * args
)
296 switch (current_cpu_data
.cputype
) {
307 static void r4k___flush_cache_all(void)
309 on_each_cpu(local_r4k___flush_cache_all
, NULL
, 1, 1);
312 static inline void local_r4k_flush_cache_range(void * args
)
314 struct vm_area_struct
*vma
= args
;
317 if (!(cpu_context(smp_processor_id(), vma
->vm_mm
)))
320 exec
= vma
->vm_flags
& VM_EXEC
;
321 if (cpu_has_dc_aliases
|| exec
)
327 static void r4k_flush_cache_range(struct vm_area_struct
*vma
,
328 unsigned long start
, unsigned long end
)
330 on_each_cpu(local_r4k_flush_cache_range
, vma
, 1, 1);
333 static inline void local_r4k_flush_cache_mm(void * args
)
335 struct mm_struct
*mm
= args
;
337 if (!cpu_context(smp_processor_id(), mm
))
344 * Kludge alert. For obscure reasons R4000SC and R4400SC go nuts if we
345 * only flush the primary caches but R10000 and R12000 behave sane ...
347 if (current_cpu_data
.cputype
== CPU_R4000SC
||
348 current_cpu_data
.cputype
== CPU_R4000MC
||
349 current_cpu_data
.cputype
== CPU_R4400SC
||
350 current_cpu_data
.cputype
== CPU_R4400MC
)
354 static void r4k_flush_cache_mm(struct mm_struct
*mm
)
356 if (!cpu_has_dc_aliases
)
359 on_each_cpu(local_r4k_flush_cache_mm
, mm
, 1, 1);
362 struct flush_cache_page_args
{
363 struct vm_area_struct
*vma
;
367 static inline void local_r4k_flush_cache_page(void *args
)
369 struct flush_cache_page_args
*fcp_args
= args
;
370 struct vm_area_struct
*vma
= fcp_args
->vma
;
371 unsigned long page
= fcp_args
->page
;
372 int exec
= vma
->vm_flags
& VM_EXEC
;
373 struct mm_struct
*mm
= vma
->vm_mm
;
379 pgdp
= pgd_offset(mm
, page
);
380 pmdp
= pmd_offset(pgdp
, page
);
381 ptep
= pte_offset(pmdp
, page
);
384 * If the page isn't marked valid, the page cannot possibly be
387 if (!(pte_val(*ptep
) & _PAGE_PRESENT
))
391 * Doing flushes for another ASID than the current one is
392 * too difficult since stupid R4k caches do a TLB translation
393 * for every cache flush operation. So we do indexed flushes
394 * in that case, which doesn't overly flush the cache too much.
396 if ((mm
== current
->active_mm
) && (pte_val(*ptep
) & _PAGE_VALID
)) {
397 if (cpu_has_dc_aliases
|| (exec
&& !cpu_has_ic_fills_f_dc
)) {
398 r4k_blast_dcache_page(page
);
399 if (exec
&& !cpu_icache_snoops_remote_store
)
400 r4k_blast_scache_page(page
);
403 r4k_blast_icache_page(page
);
409 * Do indexed flush, too much work to get the (possible) TLB refills
412 page
= INDEX_BASE
+ (page
& (dcache_size
- 1));
413 if (cpu_has_dc_aliases
|| (exec
&& !cpu_has_ic_fills_f_dc
)) {
414 r4k_blast_dcache_page_indexed(page
);
415 if (exec
&& !cpu_icache_snoops_remote_store
)
416 r4k_blast_scache_page_indexed(page
);
419 if (cpu_has_vtag_icache
) {
420 int cpu
= smp_processor_id();
422 if (cpu_context(cpu
, vma
->vm_mm
) != 0)
423 drop_mmu_context(vma
->vm_mm
, cpu
);
425 r4k_blast_icache_page_indexed(page
);
429 static void r4k_flush_cache_page(struct vm_area_struct
*vma
, unsigned long page
, unsigned long pfn
)
431 struct flush_cache_page_args args
;
434 * If ownes no valid ASID yet, cannot possibly have gotten
435 * this page into the cache.
437 if (cpu_context(smp_processor_id(), vma
->vm_mm
) == 0)
443 on_each_cpu(local_r4k_flush_cache_page
, &args
, 1, 1);
446 static inline void local_r4k_flush_data_cache_page(void * addr
)
448 r4k_blast_dcache_page((unsigned long) addr
);
451 static void r4k_flush_data_cache_page(unsigned long addr
)
453 on_each_cpu(local_r4k_flush_data_cache_page
, (void *) addr
, 1, 1);
456 struct flush_icache_range_args
{
461 static inline void local_r4k_flush_icache_range(void *args
)
463 struct flush_icache_range_args
*fir_args
= args
;
464 unsigned long dc_lsize
= current_cpu_data
.dcache
.linesz
;
465 unsigned long ic_lsize
= current_cpu_data
.icache
.linesz
;
466 unsigned long sc_lsize
= current_cpu_data
.scache
.linesz
;
467 unsigned long start
= fir_args
->start
;
468 unsigned long end
= fir_args
->end
;
469 unsigned long addr
, aend
;
471 if (!cpu_has_ic_fills_f_dc
) {
472 if (end
- start
> dcache_size
) {
475 addr
= start
& ~(dc_lsize
- 1);
476 aend
= (end
- 1) & ~(dc_lsize
- 1);
479 /* Hit_Writeback_Inv_D */
480 protected_writeback_dcache_line(addr
);
487 if (!cpu_icache_snoops_remote_store
) {
488 if (end
- start
> scache_size
) {
491 addr
= start
& ~(sc_lsize
- 1);
492 aend
= (end
- 1) & ~(sc_lsize
- 1);
495 /* Hit_Writeback_Inv_D */
496 protected_writeback_scache_line(addr
);
505 if (end
- start
> icache_size
)
508 addr
= start
& ~(ic_lsize
- 1);
509 aend
= (end
- 1) & ~(ic_lsize
- 1);
511 /* Hit_Invalidate_I */
512 protected_flush_icache_line(addr
);
520 static void r4k_flush_icache_range(unsigned long start
, unsigned long end
)
522 struct flush_icache_range_args args
;
527 on_each_cpu(local_r4k_flush_icache_range
, &args
, 1, 1);
531 * Ok, this seriously sucks. We use them to flush a user page but don't
532 * know the virtual address, so we have to blast away the whole icache
533 * which is significantly more expensive than the real thing. Otoh we at
534 * least know the kernel address of the page so we can flush it
538 struct flush_icache_page_args
{
539 struct vm_area_struct
*vma
;
543 static inline void local_r4k_flush_icache_page(void *args
)
545 struct flush_icache_page_args
*fip_args
= args
;
546 struct vm_area_struct
*vma
= fip_args
->vma
;
547 struct page
*page
= fip_args
->page
;
550 * Tricky ... Because we don't know the virtual address we've got the
551 * choice of either invalidating the entire primary and secondary
552 * caches or invalidating the secondary caches also. With the subset
553 * enforcment on R4000SC, R4400SC, R10000 and R12000 invalidating the
554 * secondary cache will result in any entries in the primary caches
555 * also getting invalidated which hopefully is a bit more economical.
557 if (cpu_has_subset_pcaches
) {
558 unsigned long addr
= (unsigned long) page_address(page
);
560 r4k_blast_scache_page(addr
);
561 ClearPageDcacheDirty(page
);
566 if (!cpu_has_ic_fills_f_dc
) {
567 unsigned long addr
= (unsigned long) page_address(page
);
568 r4k_blast_dcache_page(addr
);
569 if (!cpu_icache_snoops_remote_store
)
570 r4k_blast_scache_page(addr
);
571 ClearPageDcacheDirty(page
);
575 * We're not sure of the virtual address(es) involved here, so
576 * we have to flush the entire I-cache.
578 if (cpu_has_vtag_icache
) {
579 int cpu
= smp_processor_id();
581 if (cpu_context(cpu
, vma
->vm_mm
) != 0)
582 drop_mmu_context(vma
->vm_mm
, cpu
);
587 static void r4k_flush_icache_page(struct vm_area_struct
*vma
,
590 struct flush_icache_page_args args
;
593 * If there's no context yet, or the page isn't executable, no I-cache
596 if (!(vma
->vm_flags
& VM_EXEC
))
602 on_each_cpu(local_r4k_flush_icache_page
, &args
, 1, 1);
606 #ifdef CONFIG_DMA_NONCOHERENT
608 static void r4k_dma_cache_wback_inv(unsigned long addr
, unsigned long size
)
610 unsigned long end
, a
;
612 /* Catch bad driver code */
615 if (cpu_has_subset_pcaches
) {
616 unsigned long sc_lsize
= current_cpu_data
.scache
.linesz
;
618 if (size
>= scache_size
) {
623 a
= addr
& ~(sc_lsize
- 1);
624 end
= (addr
+ size
- 1) & ~(sc_lsize
- 1);
626 flush_scache_line(a
); /* Hit_Writeback_Inv_SD */
635 * Either no secondary cache or the available caches don't have the
636 * subset property so we have to flush the primary caches
639 if (size
>= dcache_size
) {
642 unsigned long dc_lsize
= current_cpu_data
.dcache
.linesz
;
644 R4600_HIT_CACHEOP_WAR_IMPL
;
645 a
= addr
& ~(dc_lsize
- 1);
646 end
= (addr
+ size
- 1) & ~(dc_lsize
- 1);
648 flush_dcache_line(a
); /* Hit_Writeback_Inv_D */
655 bc_wback_inv(addr
, size
);
658 static void r4k_dma_cache_inv(unsigned long addr
, unsigned long size
)
660 unsigned long end
, a
;
662 /* Catch bad driver code */
665 if (cpu_has_subset_pcaches
) {
666 unsigned long sc_lsize
= current_cpu_data
.scache
.linesz
;
668 if (size
>= scache_size
) {
673 a
= addr
& ~(sc_lsize
- 1);
674 end
= (addr
+ size
- 1) & ~(sc_lsize
- 1);
676 flush_scache_line(a
); /* Hit_Writeback_Inv_SD */
684 if (size
>= dcache_size
) {
687 unsigned long dc_lsize
= current_cpu_data
.dcache
.linesz
;
689 R4600_HIT_CACHEOP_WAR_IMPL
;
690 a
= addr
& ~(dc_lsize
- 1);
691 end
= (addr
+ size
- 1) & ~(dc_lsize
- 1);
693 flush_dcache_line(a
); /* Hit_Writeback_Inv_D */
702 #endif /* CONFIG_DMA_NONCOHERENT */
705 * While we're protected against bad userland addresses we don't care
706 * very much about what happens in that case. Usually a segmentation
707 * fault will dump the process later on anyway ...
709 static void local_r4k_flush_cache_sigtramp(void * arg
)
711 unsigned long ic_lsize
= current_cpu_data
.icache
.linesz
;
712 unsigned long dc_lsize
= current_cpu_data
.dcache
.linesz
;
713 unsigned long sc_lsize
= current_cpu_data
.scache
.linesz
;
714 unsigned long addr
= (unsigned long) arg
;
716 R4600_HIT_CACHEOP_WAR_IMPL
;
717 protected_writeback_dcache_line(addr
& ~(dc_lsize
- 1));
718 if (!cpu_icache_snoops_remote_store
)
719 protected_writeback_scache_line(addr
& ~(sc_lsize
- 1));
720 protected_flush_icache_line(addr
& ~(ic_lsize
- 1));
721 if (MIPS4K_ICACHE_REFILL_WAR
) {
722 __asm__
__volatile__ (
737 : "i" (Hit_Invalidate_I
));
739 if (MIPS_CACHE_SYNC_WAR
)
740 __asm__
__volatile__ ("sync");
743 static void r4k_flush_cache_sigtramp(unsigned long addr
)
745 on_each_cpu(local_r4k_flush_cache_sigtramp
, (void *) addr
, 1, 1);
748 static void r4k_flush_icache_all(void)
750 if (cpu_has_vtag_icache
)
754 static inline void rm7k_erratum31(void)
756 const unsigned long ic_lsize
= 32;
759 /* RM7000 erratum #31. The icache is screwed at startup. */
763 for (addr
= INDEX_BASE
; addr
<= INDEX_BASE
+ 4096; addr
+= ic_lsize
) {
764 __asm__
__volatile__ (
767 "cache\t%1, 0(%0)\n\t"
768 "cache\t%1, 0x1000(%0)\n\t"
769 "cache\t%1, 0x2000(%0)\n\t"
770 "cache\t%1, 0x3000(%0)\n\t"
771 "cache\t%2, 0(%0)\n\t"
772 "cache\t%2, 0x1000(%0)\n\t"
773 "cache\t%2, 0x2000(%0)\n\t"
774 "cache\t%2, 0x3000(%0)\n\t"
775 "cache\t%1, 0(%0)\n\t"
776 "cache\t%1, 0x1000(%0)\n\t"
777 "cache\t%1, 0x2000(%0)\n\t"
778 "cache\t%1, 0x3000(%0)\n\t"
782 : "r" (addr
), "i" (Index_Store_Tag_I
), "i" (Fill
));
786 static char *way_string
[] __initdata
= { NULL
, "direct mapped", "2-way",
787 "3-way", "4-way", "5-way", "6-way", "7-way", "8-way"
790 static void __init
probe_pcache(void)
792 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
793 unsigned int config
= read_c0_config();
794 unsigned int prid
= read_c0_prid();
795 unsigned long config1
;
798 switch (c
->cputype
) {
799 case CPU_R4600
: /* QED style two way caches? */
803 icache_size
= 1 << (12 + ((config
& CONF_IC
) >> 9));
804 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
806 c
->icache
.waybit
= ffs(icache_size
/2) - 1;
808 dcache_size
= 1 << (12 + ((config
& CONF_DC
) >> 6));
809 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
811 c
->dcache
.waybit
= ffs(dcache_size
/2) - 1;
813 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
818 icache_size
= 1 << (12 + ((config
& CONF_IC
) >> 9));
819 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
823 dcache_size
= 1 << (12 + ((config
& CONF_DC
) >> 6));
824 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
826 c
->dcache
.waybit
= 0;
828 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
832 icache_size
= 1 << (12 + ((config
& CONF_IC
) >> 9));
833 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
837 dcache_size
= 1 << (12 + ((config
& CONF_DC
) >> 6));
838 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
840 c
->dcache
.waybit
= 0;
842 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
852 icache_size
= 1 << (12 + ((config
& CONF_IC
) >> 9));
853 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
855 c
->icache
.waybit
= 0; /* doesn't matter */
857 dcache_size
= 1 << (12 + ((config
& CONF_DC
) >> 6));
858 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
860 c
->dcache
.waybit
= 0; /* does not matter */
862 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
867 icache_size
= 1 << (12 + ((config
& R10K_CONF_IC
) >> 29));
868 c
->icache
.linesz
= 64;
870 c
->icache
.waybit
= 0;
872 dcache_size
= 1 << (12 + ((config
& R10K_CONF_DC
) >> 26));
873 c
->dcache
.linesz
= 32;
875 c
->dcache
.waybit
= 0;
877 c
->options
|= MIPS_CPU_PREFETCH
;
881 write_c0_config(config
& ~CONF_EB
);
883 /* Workaround for cache instruction bug of VR4131 */
884 if (c
->processor_id
== 0x0c80U
|| c
->processor_id
== 0x0c81U
||
885 c
->processor_id
== 0x0c82U
) {
886 config
&= ~0x00000030U
;
887 config
|= 0x00410000U
;
888 write_c0_config(config
);
890 icache_size
= 1 << (10 + ((config
& CONF_IC
) >> 9));
891 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
893 c
->icache
.waybit
= ffs(icache_size
/2) - 1;
895 dcache_size
= 1 << (10 + ((config
& CONF_DC
) >> 6));
896 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
898 c
->dcache
.waybit
= ffs(dcache_size
/2) - 1;
900 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
909 icache_size
= 1 << (10 + ((config
& CONF_IC
) >> 9));
910 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
912 c
->icache
.waybit
= 0; /* doesn't matter */
914 dcache_size
= 1 << (10 + ((config
& CONF_DC
) >> 6));
915 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
917 c
->dcache
.waybit
= 0; /* does not matter */
919 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
926 icache_size
= 1 << (12 + ((config
& CONF_IC
) >> 9));
927 c
->icache
.linesz
= 16 << ((config
& CONF_IB
) >> 5);
929 c
->icache
.waybit
= ffs(icache_size
/ c
->icache
.ways
) - 1;
931 dcache_size
= 1 << (12 + ((config
& CONF_DC
) >> 6));
932 c
->dcache
.linesz
= 16 << ((config
& CONF_DB
) >> 4);
934 c
->dcache
.waybit
= ffs(dcache_size
/ c
->dcache
.ways
) - 1;
936 #if !defined(CONFIG_SMP) || !defined(RM9000_CDEX_SMP_WAR)
937 c
->options
|= MIPS_CPU_CACHE_CDEX_P
;
939 c
->options
|= MIPS_CPU_PREFETCH
;
943 if (!(config
& MIPS_CONF_M
))
944 panic("Don't know how to probe P-caches on this cpu.");
947 * So we seem to be a MIPS32 or MIPS64 CPU
948 * So let's probe the I-cache ...
950 config1
= read_c0_config1();
952 if ((lsize
= ((config1
>> 19) & 7)))
953 c
->icache
.linesz
= 2 << lsize
;
955 c
->icache
.linesz
= lsize
;
956 c
->icache
.sets
= 64 << ((config1
>> 22) & 7);
957 c
->icache
.ways
= 1 + ((config1
>> 16) & 7);
959 icache_size
= c
->icache
.sets
*
962 c
->icache
.waybit
= ffs(icache_size
/c
->icache
.ways
) - 1;
964 if (config
& 0x8) /* VI bit */
965 c
->icache
.flags
|= MIPS_CACHE_VTAG
;
968 * Now probe the MIPS32 / MIPS64 data cache.
972 if ((lsize
= ((config1
>> 10) & 7)))
973 c
->dcache
.linesz
= 2 << lsize
;
975 c
->dcache
.linesz
= lsize
;
976 c
->dcache
.sets
= 64 << ((config1
>> 13) & 7);
977 c
->dcache
.ways
= 1 + ((config1
>> 7) & 7);
979 dcache_size
= c
->dcache
.sets
*
982 c
->dcache
.waybit
= ffs(dcache_size
/c
->dcache
.ways
) - 1;
984 c
->options
|= MIPS_CPU_PREFETCH
;
989 * Processor configuration sanity check for the R4000SC erratum
990 * #5. With page sizes larger than 32kB there is no possibility
991 * to get a VCE exception anymore so we don't care about this
992 * misconfiguration. The case is rather theoretical anyway;
993 * presumably no vendor is shipping his hardware in the "bad"
996 if ((prid
& 0xff00) == PRID_IMP_R4000
&& (prid
& 0xff) < 0x40 &&
997 !(config
& CONF_SC
) && c
->icache
.linesz
!= 16 &&
999 panic("Improper R4000SC processor configuration detected");
1001 /* compute a couple of other cache variables */
1002 c
->icache
.waysize
= icache_size
/ c
->icache
.ways
;
1003 c
->dcache
.waysize
= dcache_size
/ c
->dcache
.ways
;
1005 c
->icache
.sets
= icache_size
/ (c
->icache
.linesz
* c
->icache
.ways
);
1006 c
->dcache
.sets
= dcache_size
/ (c
->dcache
.linesz
* c
->dcache
.ways
);
1009 * R10000 and R12000 P-caches are odd in a positive way. They're 32kB
1010 * 2-way virtually indexed so normally would suffer from aliases. So
1011 * normally they'd suffer from aliases but magic in the hardware deals
1012 * with that for us so we don't need to take care ourselves.
1014 if (c
->cputype
!= CPU_R10000
&& c
->cputype
!= CPU_R12000
)
1015 if (c
->dcache
.waysize
> PAGE_SIZE
)
1016 c
->dcache
.flags
|= MIPS_CACHE_ALIASES
;
1018 switch (c
->cputype
) {
1021 * Some older 20Kc chips doesn't have the 'VI' bit in
1022 * the config register.
1024 c
->icache
.flags
|= MIPS_CACHE_VTAG
;
1028 c
->icache
.flags
|= MIPS_CACHE_IC_F_DC
;
1032 printk("Primary instruction cache %ldkB, %s, %s, linesize %d bytes.\n",
1034 cpu_has_vtag_icache
? "virtually tagged" : "physically tagged",
1035 way_string
[c
->icache
.ways
], c
->icache
.linesz
);
1037 printk("Primary data cache %ldkB, %s, linesize %d bytes.\n",
1038 dcache_size
>> 10, way_string
[c
->dcache
.ways
], c
->dcache
.linesz
);
1042 * If you even _breathe_ on this function, look at the gcc output and make sure
1043 * it does not pop things on and off the stack for the cache sizing loop that
1044 * executes in KSEG1 space or else you will crash and burn badly. You have
1047 static int __init
probe_scache(void)
1049 extern unsigned long stext
;
1050 unsigned long flags
, addr
, begin
, end
, pow2
;
1051 unsigned int config
= read_c0_config();
1052 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1055 if (config
& CONF_SC
)
1058 begin
= (unsigned long) &stext
;
1059 begin
&= ~((4 * 1024 * 1024) - 1);
1060 end
= begin
+ (4 * 1024 * 1024);
1063 * This is such a bitch, you'd think they would make it easy to do
1064 * this. Away you daemons of stupidity!
1066 local_irq_save(flags
);
1068 /* Fill each size-multiple cache line with a valid tag. */
1070 for (addr
= begin
; addr
< end
; addr
= (begin
+ pow2
)) {
1071 unsigned long *p
= (unsigned long *) addr
;
1072 __asm__
__volatile__("nop" : : "r" (*p
)); /* whee... */
1076 /* Load first line with zero (therefore invalid) tag. */
1079 __asm__
__volatile__("nop; nop; nop; nop;"); /* avoid the hazard */
1080 cache_op(Index_Store_Tag_I
, begin
);
1081 cache_op(Index_Store_Tag_D
, begin
);
1082 cache_op(Index_Store_Tag_SD
, begin
);
1084 /* Now search for the wrap around point. */
1085 pow2
= (128 * 1024);
1087 for (addr
= begin
+ (128 * 1024); addr
< end
; addr
= begin
+ pow2
) {
1088 cache_op(Index_Load_Tag_SD
, addr
);
1089 __asm__
__volatile__("nop; nop; nop; nop;"); /* hazard... */
1090 if (!read_c0_taglo())
1094 local_irq_restore(flags
);
1098 c
->scache
.linesz
= 16 << ((config
& R4K_CONF_SB
) >> 22);
1100 c
->dcache
.waybit
= 0; /* does not matter */
1105 typedef int (*probe_func_t
)(unsigned long);
1106 extern int r5k_sc_init(void);
1107 extern int rm7k_sc_init(void);
1109 static void __init
setup_scache(void)
1111 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1112 unsigned int config
= read_c0_config();
1113 probe_func_t probe_scache_kseg1
;
1117 * Do the probing thing on R4000SC and R4400SC processors. Other
1118 * processors don't have a S-cache that would be relevant to the
1119 * Linux memory managment.
1121 switch (c
->cputype
) {
1126 probe_scache_kseg1
= (probe_func_t
) (CKSEG1ADDR(&probe_scache
));
1127 sc_present
= probe_scache_kseg1(config
);
1129 c
->options
|= MIPS_CPU_CACHE_CDEX_S
;
1134 scache_size
= 0x80000 << ((config
& R10K_CONF_SS
) >> 16);
1135 c
->scache
.linesz
= 64 << ((config
>> 13) & 1);
1137 c
->scache
.waybit
= 0;
1143 #ifdef CONFIG_R5000_CPU_SCACHE
1150 #ifdef CONFIG_RM7000_CPU_SCACHE
1162 if ((c
->isa_level
== MIPS_CPU_ISA_M32
||
1163 c
->isa_level
== MIPS_CPU_ISA_M64
) &&
1164 !(c
->scache
.flags
& MIPS_CACHE_NOT_PRESENT
))
1165 panic("Dunno how to handle MIPS32 / MIPS64 second level cache");
1167 /* compute a couple of other cache variables */
1168 c
->scache
.waysize
= scache_size
/ c
->scache
.ways
;
1170 c
->scache
.sets
= scache_size
/ (c
->scache
.linesz
* c
->scache
.ways
);
1172 printk("Unified secondary cache %ldkB %s, linesize %d bytes.\n",
1173 scache_size
>> 10, way_string
[c
->scache
.ways
], c
->scache
.linesz
);
1175 c
->options
|= MIPS_CPU_SUBSET_CACHES
;
1178 static inline void coherency_setup(void)
1180 change_c0_config(CONF_CM_CMASK
, CONF_CM_DEFAULT
);
1183 * c0_status.cu=0 specifies that updates by the sc instruction use
1184 * the coherency mode specified by the TLB; 1 means cachable
1185 * coherent update on write will be used. Not all processors have
1186 * this bit and; some wire it to zero, others like Toshiba had the
1187 * silly idea of putting something else there ...
1189 switch (current_cpu_data
.cputype
) {
1196 clear_c0_config(CONF_CU
);
1201 void __init
ld_mmu_r4xx0(void)
1203 extern void build_clear_page(void);
1204 extern void build_copy_page(void);
1205 extern char except_vec2_generic
;
1206 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1208 /* Default cache error handler for R4000 and R5000 family */
1209 memcpy((void *)(CAC_BASE
+ 0x100), &except_vec2_generic
, 0x80);
1210 memcpy((void *)(UNCAC_BASE
+ 0x100), &except_vec2_generic
, 0x80);
1215 if (c
->dcache
.sets
* c
->dcache
.ways
> PAGE_SIZE
)
1216 c
->dcache
.flags
|= MIPS_CACHE_ALIASES
;
1218 r4k_blast_dcache_page_setup();
1219 r4k_blast_dcache_page_indexed_setup();
1220 r4k_blast_dcache_setup();
1221 r4k_blast_icache_page_setup();
1222 r4k_blast_icache_page_indexed_setup();
1223 r4k_blast_icache_setup();
1224 r4k_blast_scache_page_setup();
1225 r4k_blast_scache_page_indexed_setup();
1226 r4k_blast_scache_setup();
1229 * Some MIPS32 and MIPS64 processors have physically indexed caches.
1230 * This code supports virtually indexed processors and will be
1231 * unnecessarily inefficient on physically indexed processors.
1233 shm_align_mask
= max_t( unsigned long,
1234 c
->dcache
.sets
* c
->dcache
.linesz
- 1,
1237 flush_cache_all
= r4k_flush_cache_all
;
1238 __flush_cache_all
= r4k___flush_cache_all
;
1239 flush_cache_mm
= r4k_flush_cache_mm
;
1240 flush_cache_page
= r4k_flush_cache_page
;
1241 flush_icache_page
= r4k_flush_icache_page
;
1242 flush_cache_range
= r4k_flush_cache_range
;
1244 flush_cache_sigtramp
= r4k_flush_cache_sigtramp
;
1245 flush_icache_all
= r4k_flush_icache_all
;
1246 flush_data_cache_page
= r4k_flush_data_cache_page
;
1247 flush_icache_range
= r4k_flush_icache_range
;
1249 #ifdef CONFIG_DMA_NONCOHERENT
1250 _dma_cache_wback_inv
= r4k_dma_cache_wback_inv
;
1251 _dma_cache_wback
= r4k_dma_cache_wback_inv
;
1252 _dma_cache_inv
= r4k_dma_cache_inv
;
1255 __flush_cache_all();