2 * Copyright (C) 1997, 2001 Ralf Baechle (ralf@gnu.org),
3 * derived from r4xx0.c by David S. Miller (dm@engr.sgi.com).
5 #include <linux/init.h>
6 #include <linux/kernel.h>
7 #include <linux/sched.h>
10 #include <asm/mipsregs.h>
11 #include <asm/bcache.h>
12 #include <asm/cacheops.h>
14 #include <asm/pgtable.h>
15 #include <asm/system.h>
16 #include <asm/mmu_context.h>
17 #include <asm/r4kcache.h>
19 /* Secondary cache size in bytes, if present. */
20 static unsigned long scache_size
;
23 #define SC_PAGE (128*SC_LINE)
25 static inline void blast_r5000_scache(void)
27 unsigned long start
= INDEX_BASE
;
28 unsigned long end
= start
+ scache_size
;
31 cache_op(R5K_Page_Invalidate_S
, start
);
36 static void r5k_dma_cache_inv_sc(unsigned long addr
, unsigned long size
)
40 /* Catch bad driver code */
43 if (size
>= scache_size
) {
48 /* On the R5000 secondary cache we cannot
49 * invalidate less than a page at a time.
50 * The secondary cache is physically indexed, write-through.
52 a
= addr
& ~(SC_PAGE
- 1);
53 end
= (addr
+ size
- 1) & ~(SC_PAGE
- 1);
55 cache_op(R5K_Page_Invalidate_S
, a
);
60 static void r5k_sc_enable(void)
64 local_irq_save(flags
);
65 set_c0_config(R5K_CONF_SE
);
67 local_irq_restore(flags
);
70 static void r5k_sc_disable(void)
74 local_irq_save(flags
);
76 clear_c0_config(R5K_CONF_SE
);
77 local_irq_restore(flags
);
80 static inline int __init
r5k_sc_probe(void)
82 unsigned long config
= read_c0_config();
87 scache_size
= (512 * 1024) << ((config
& R5K_CONF_SS
) >> 20);
89 printk("R5000 SCACHE size %ldkB, linesize 32 bytes.\n",
95 static struct bcache_ops r5k_sc_ops
= {
96 .bc_enable
= r5k_sc_enable
,
97 .bc_disable
= r5k_sc_disable
,
98 .bc_wback_inv
= r5k_dma_cache_inv_sc
,
99 .bc_inv
= r5k_dma_cache_inv_sc
102 <<<<<<< HEAD
:arch
/mips
/mm
/sc
-r5k
.c
103 void __init
r5k_sc_init(void)
105 void __cpuinit
r5k_sc_init(void)
106 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:arch
/mips
/mm
/sc
-r5k
.c
108 if (r5k_sc_probe()) {