Merge tag 'omap-for-v3.12/prcm-signed' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6.git] / arch / mips / mm / sc-r5k.c
blob0216ed6eaa2a931cda5c7a425c5327d8342dd53a
1 /*
2 * Copyright (C) 1997, 2001 Ralf Baechle (ralf@gnu.org),
3 * derived from r4xx0.c by David S. Miller (davem@davemloft.net).
4 */
5 #include <linux/init.h>
6 #include <linux/kernel.h>
7 #include <linux/sched.h>
8 #include <linux/mm.h>
10 #include <asm/mipsregs.h>
11 #include <asm/bcache.h>
12 #include <asm/cacheops.h>
13 #include <asm/page.h>
14 #include <asm/pgtable.h>
15 #include <asm/mmu_context.h>
16 #include <asm/r4kcache.h>
18 /* Secondary cache size in bytes, if present. */
19 static unsigned long scache_size;
21 #define SC_LINE 32
22 #define SC_PAGE (128*SC_LINE)
24 static inline void blast_r5000_scache(void)
26 unsigned long start = INDEX_BASE;
27 unsigned long end = start + scache_size;
29 while(start < end) {
30 cache_op(R5K_Page_Invalidate_S, start);
31 start += SC_PAGE;
35 static void r5k_dma_cache_inv_sc(unsigned long addr, unsigned long size)
37 unsigned long end, a;
39 /* Catch bad driver code */
40 BUG_ON(size == 0);
42 if (size >= scache_size) {
43 blast_r5000_scache();
44 return;
47 /* On the R5000 secondary cache we cannot
48 * invalidate less than a page at a time.
49 * The secondary cache is physically indexed, write-through.
51 a = addr & ~(SC_PAGE - 1);
52 end = (addr + size - 1) & ~(SC_PAGE - 1);
53 while (a <= end) {
54 cache_op(R5K_Page_Invalidate_S, a);
55 a += SC_PAGE;
59 static void r5k_sc_enable(void)
61 unsigned long flags;
63 local_irq_save(flags);
64 set_c0_config(R5K_CONF_SE);
65 blast_r5000_scache();
66 local_irq_restore(flags);
69 static void r5k_sc_disable(void)
71 unsigned long flags;
73 local_irq_save(flags);
74 blast_r5000_scache();
75 clear_c0_config(R5K_CONF_SE);
76 local_irq_restore(flags);
79 static inline int __init r5k_sc_probe(void)
81 unsigned long config = read_c0_config();
83 if (config & CONF_SC)
84 return(0);
86 scache_size = (512 * 1024) << ((config & R5K_CONF_SS) >> 20);
88 printk("R5000 SCACHE size %ldkB, linesize 32 bytes.\n",
89 scache_size >> 10);
91 return 1;
94 static struct bcache_ops r5k_sc_ops = {
95 .bc_enable = r5k_sc_enable,
96 .bc_disable = r5k_sc_disable,
97 .bc_wback_inv = r5k_dma_cache_inv_sc,
98 .bc_inv = r5k_dma_cache_inv_sc
101 void r5k_sc_init(void)
103 if (r5k_sc_probe()) {
104 r5k_sc_enable();
105 bcops = &r5k_sc_ops;