blob: d3f92a9e831056832e4854bcf911c3e018db1080 [file] [log] [blame]
Chris Dearman9318c512006-06-20 17:15:20 +01001/*
2 * Copyright (C) 2006 Chris Dearman (chris@mips.com),
3 */
4#include <linux/init.h>
5#include <linux/kernel.h>
6#include <linux/sched.h>
7#include <linux/mm.h>
8
9#include <asm/mipsregs.h>
10#include <asm/bcache.h>
11#include <asm/cacheops.h>
12#include <asm/page.h>
13#include <asm/pgtable.h>
14#include <asm/system.h>
15#include <asm/mmu_context.h>
16#include <asm/r4kcache.h>
17
18/*
19 * MIPS32/MIPS64 L2 cache handling
20 */
21
22/*
23 * Writeback and invalidate the secondary cache before DMA.
24 */
25static void mips_sc_wback_inv(unsigned long addr, unsigned long size)
26{
27 unsigned long sc_lsize = cpu_scache_line_size();
28 unsigned long end, a;
29
30 pr_debug("mips_sc_wback_inv[%08lx,%08lx]", addr, size);
31
32 /* Catch bad driver code */
33 BUG_ON(size == 0);
34
35 a = addr & ~(sc_lsize - 1);
36 end = (addr + size - 1) & ~(sc_lsize - 1);
37 while (1) {
38 flush_scache_line(a); /* Hit_Writeback_Inv_SD */
39 if (a == end)
40 break;
41 a += sc_lsize;
42 }
43}
44
45/*
46 * Invalidate the secondary cache before DMA.
47 */
48static void mips_sc_inv(unsigned long addr, unsigned long size)
49{
50 unsigned long sc_lsize = cpu_scache_line_size();
51 unsigned long end, a;
52
53 pr_debug("mips_sc_inv[%08lx,%08lx]", addr, size);
54
55 /* Catch bad driver code */
56 BUG_ON(size == 0);
57
58 a = addr & ~(sc_lsize - 1);
59 end = (addr + size - 1) & ~(sc_lsize - 1);
60 while (1) {
61 invalidate_scache_line(a); /* Hit_Invalidate_SD */
62 if (a == end)
63 break;
64 a += sc_lsize;
65 }
66}
67
68static void mips_sc_enable(void)
69{
70 /* L2 cache is permanently enabled */
71}
72
73static void mips_sc_disable(void)
74{
75 /* L2 cache is permanently enabled */
76}
77
78static struct bcache_ops mips_sc_ops = {
79 .bc_enable = mips_sc_enable,
80 .bc_disable = mips_sc_disable,
81 .bc_wback_inv = mips_sc_wback_inv,
82 .bc_inv = mips_sc_inv
83};
84
85static inline int __init mips_sc_probe(void)
86{
87 struct cpuinfo_mips *c = &current_cpu_data;
88 unsigned int config1, config2;
89 unsigned int tmp;
90
91 /* Mark as not present until probe completed */
92 c->scache.flags |= MIPS_CACHE_NOT_PRESENT;
93
94 /* Ignore anything but MIPSxx processors */
95 if (c->isa_level != MIPS_CPU_ISA_M32R1 &&
96 c->isa_level != MIPS_CPU_ISA_M32R2 &&
97 c->isa_level != MIPS_CPU_ISA_M64R1 &&
98 c->isa_level != MIPS_CPU_ISA_M64R2)
99 return 0;
100
101 /* Does this MIPS32/MIPS64 CPU have a config2 register? */
102 config1 = read_c0_config1();
103 if (!(config1 & MIPS_CONF_M))
104 return 0;
105
106 config2 = read_c0_config2();
107 tmp = (config2 >> 4) & 0x0f;
108 if (0 < tmp && tmp <= 7)
109 c->scache.linesz = 2 << tmp;
110 else
111 return 0;
112
113 tmp = (config2 >> 8) & 0x0f;
114 if (0 <= tmp && tmp <= 7)
115 c->scache.sets = 64 << tmp;
116 else
117 return 0;
118
119 tmp = (config2 >> 0) & 0x0f;
120 if (0 <= tmp && tmp <= 7)
121 c->scache.ways = tmp + 1;
122 else
123 return 0;
124
125 c->scache.waysize = c->scache.sets * c->scache.linesz;
126
127 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
128
129 return 1;
130}
131
132int __init mips_sc_init(void)
133{
134 int found = mips_sc_probe ();
135 if (found) {
136 mips_sc_enable();
137 bcops = &mips_sc_ops;
138 }
139 return found;
140}
141