4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Copyright (C) 2007, 2008 MIPS Technologies, Inc.
11 #include <linux/kernel.h>
12 #include <linux/ptrace.h>
13 #include <linux/stddef.h>
16 #include <asm/mipsregs.h>
17 #include <asm/r4kcache.h>
18 #include <asm/hazards.h>
21 * These definitions are correct for the 24K/34K/74K SPRAM sample
22 * implementation. The 4KS interpreted the tags differently...
24 #define SPRAM_TAG0_ENABLE 0x00000080
25 #define SPRAM_TAG0_PA_MASK 0xfffff000
26 #define SPRAM_TAG1_SIZE_MASK 0xfffff000
28 #define SPRAM_TAG_STRIDE 8
30 #define ERRCTL_SPRAM (1 << 28)
33 #define read_c0_errctl(x) read_c0_ecc(x)
34 #define write_c0_errctl(x) write_c0_ecc(x)
37 * Different semantics to the set_c0_* function built by __BUILD_SET_C0
39 static unsigned int bis_c0_errctl(unsigned int set)
42 res = read_c0_errctl();
43 write_c0_errctl(res | set);
47 static void ispram_store_tag(unsigned int offset, unsigned int data)
51 /* enable SPRAM tag access */
52 errctl = bis_c0_errctl(ERRCTL_SPRAM);
58 cache_op(Index_Store_Tag_I, CKSEG0|offset);
61 write_c0_errctl(errctl);
66 static unsigned int ispram_load_tag(unsigned int offset)
71 /* enable SPRAM tag access */
72 errctl = bis_c0_errctl(ERRCTL_SPRAM);
74 cache_op(Index_Load_Tag_I, CKSEG0 | offset);
76 data = read_c0_taglo();
78 write_c0_errctl(errctl);
84 static void dspram_store_tag(unsigned int offset, unsigned int data)
88 /* enable SPRAM tag access */
89 errctl = bis_c0_errctl(ERRCTL_SPRAM);
91 write_c0_dtaglo(data);
93 cache_op(Index_Store_Tag_D, CKSEG0 | offset);
95 write_c0_errctl(errctl);
100 static unsigned int dspram_load_tag(unsigned int offset)
105 errctl = bis_c0_errctl(ERRCTL_SPRAM);
107 cache_op(Index_Load_Tag_D, CKSEG0 | offset);
109 data = read_c0_dtaglo();
111 write_c0_errctl(errctl);
117 static void probe_spram(char *type,
119 unsigned int (*read)(unsigned int),
120 void (*write)(unsigned int, unsigned int))
122 unsigned int firstsize = 0, lastsize = 0;
123 unsigned int firstpa = 0, lastpa = 0, pa = 0;
124 unsigned int offset = 0;
125 unsigned int size, tag0, tag1;
126 unsigned int enabled;
130 * The limit is arbitrary but avoids the loop running away if
131 * the SPRAM tags are implemented differently
134 for (i = 0; i < 8; i++) {
136 tag1 = read(offset+SPRAM_TAG_STRIDE);
137 pr_debug("DBG %s%d: tag0=%08x tag1=%08x\n",
138 type, i, tag0, tag1);
140 size = tag1 & SPRAM_TAG1_SIZE_MASK;
146 /* tags may repeat... */
147 if ((pa == firstpa && size == firstsize) ||
148 (pa == lastpa && size == lastsize))
152 /* Align base with size */
153 base = (base + size - 1) & ~(size-1);
155 /* reprogram the base address base address and enable */
156 tag0 = (base & SPRAM_TAG0_PA_MASK) | SPRAM_TAG0_ENABLE;
163 pa = tag0 & SPRAM_TAG0_PA_MASK;
164 enabled = tag0 & SPRAM_TAG0_ENABLE;
174 if (strcmp(type, "DSPRAM") == 0) {
175 unsigned int *vp = (unsigned int *)(CKSEG1 | pa);
177 #define TDAT 0x5a5aa5a5
185 printk(KERN_ERR "vp=%p wrote=%08x got=%08x\n",
189 printk(KERN_ERR "vp=%p wrote=%08x got=%08x\n",
193 pr_info("%s%d: PA=%08x,Size=%08x%s\n",
194 type, i, pa, size, enabled ? ",enabled" : "");
195 offset += 2 * SPRAM_TAG_STRIDE;
198 void spram_config(void)
200 struct cpuinfo_mips *c = ¤t_cpu_data;
201 unsigned int config0;
203 switch (c->cputype) {
210 config0 = read_c0_config();
211 /* FIXME: addresses are Malta specific */
212 if (config0 & (1<<24)) {
213 probe_spram("ISPRAM", 0x1c000000,
214 &ispram_load_tag, &ispram_store_tag);
216 if (config0 & (1<<23))
217 probe_spram("DSPRAM", 0x1c100000,
218 &dspram_load_tag, &dspram_store_tag);