cpu.c revision 1.16 1 1.16 lukem /* $NetBSD: cpu.c,v 1.16 2003/07/15 02:54:43 lukem Exp $ */
2 1.1 eeh
3 1.1 eeh /*
4 1.1 eeh * Copyright 2001 Wasabi Systems, Inc.
5 1.1 eeh * All rights reserved.
6 1.1 eeh *
7 1.1 eeh * Written by Eduardo Horvath and Simon Burge for Wasabi Systems, Inc.
8 1.1 eeh *
9 1.1 eeh * Redistribution and use in source and binary forms, with or without
10 1.1 eeh * modification, are permitted provided that the following conditions
11 1.1 eeh * are met:
12 1.1 eeh * 1. Redistributions of source code must retain the above copyright
13 1.1 eeh * notice, this list of conditions and the following disclaimer.
14 1.1 eeh * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 eeh * notice, this list of conditions and the following disclaimer in the
16 1.1 eeh * documentation and/or other materials provided with the distribution.
17 1.1 eeh * 3. All advertising materials mentioning features or use of this software
18 1.1 eeh * must display the following acknowledgement:
19 1.1 eeh * This product includes software developed for the NetBSD Project by
20 1.1 eeh * Wasabi Systems, Inc.
21 1.1 eeh * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.1 eeh * or promote products derived from this software without specific prior
23 1.1 eeh * written permission.
24 1.1 eeh *
25 1.1 eeh * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.1 eeh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 eeh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 eeh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.1 eeh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 eeh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 eeh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 eeh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 eeh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 eeh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 eeh * POSSIBILITY OF SUCH DAMAGE.
36 1.1 eeh */
37 1.16 lukem
38 1.16 lukem #include <sys/cdefs.h>
39 1.16 lukem __KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.16 2003/07/15 02:54:43 lukem Exp $");
40 1.1 eeh
41 1.1 eeh #include <sys/param.h>
42 1.1 eeh #include <sys/systm.h>
43 1.1 eeh #include <sys/device.h>
44 1.2 eeh #include <sys/properties.h>
45 1.1 eeh
46 1.13 thorpej #include <uvm/uvm_extern.h>
47 1.13 thorpej
48 1.2 eeh #include <machine/cpu.h>
49 1.4 simonb #include <powerpc/ibm4xx/dev/plbvar.h>
50 1.1 eeh
51 1.1 eeh struct cputab {
52 1.1 eeh int version;
53 1.1 eeh char *name;
54 1.1 eeh };
55 1.1 eeh static struct cputab models[] = {
56 1.15 simonb { PVR_401A1 >> 16, "401A1" },
57 1.15 simonb { PVR_401B2 >> 16, "401B21" },
58 1.15 simonb { PVR_401C2 >> 16, "401C2" },
59 1.15 simonb { PVR_401D2 >> 16, "401D2" },
60 1.15 simonb { PVR_401E2 >> 16, "401E2" },
61 1.15 simonb { PVR_401F2 >> 16, "401F2" },
62 1.15 simonb { PVR_401G2 >> 16, "401G2" },
63 1.15 simonb { PVR_403 >> 16, "403" },
64 1.15 simonb { PVR_405GP >> 16, "405GP" },
65 1.15 simonb { PVR_405GPR >> 16, "405GPr" },
66 1.15 simonb { 0, NULL }
67 1.1 eeh };
68 1.1 eeh
69 1.1 eeh static int cpumatch(struct device *, struct cfdata *, void *);
70 1.1 eeh static void cpuattach(struct device *, struct device *, void *);
71 1.1 eeh
72 1.10 thorpej CFATTACH_DECL(cpu, sizeof(struct device),
73 1.10 thorpej cpumatch, cpuattach, NULL, NULL);
74 1.1 eeh
75 1.1 eeh int ncpus;
76 1.1 eeh
77 1.11 matt struct cpu_info cpu_info[1];
78 1.1 eeh
79 1.1 eeh int cpufound = 0;
80 1.1 eeh
81 1.1 eeh static int
82 1.1 eeh cpumatch(struct device *parent, struct cfdata *cf, void *aux)
83 1.1 eeh {
84 1.4 simonb struct plb_attach_args *paa = aux;
85 1.1 eeh
86 1.1 eeh /* make sure that we're looking for a CPU */
87 1.8 thorpej if (strcmp(paa->plb_name, cf->cf_name) != 0)
88 1.3 simonb return (0);
89 1.1 eeh
90 1.1 eeh return !cpufound;
91 1.1 eeh }
92 1.1 eeh
93 1.1 eeh static void
94 1.1 eeh cpuattach(struct device *parent, struct device *self, void *aux)
95 1.1 eeh {
96 1.1 eeh int pvr, cpu;
97 1.1 eeh int own, pcf, cas, pcl, aid;
98 1.1 eeh struct cputab *cp = models;
99 1.2 eeh unsigned int processor_freq;
100 1.2 eeh
101 1.3 simonb if (board_info_get("processor-frequency",
102 1.2 eeh &processor_freq, sizeof(processor_freq)) == -1)
103 1.2 eeh panic("no processor-frequency");
104 1.1 eeh
105 1.1 eeh cpufound++;
106 1.1 eeh ncpus++;
107 1.1 eeh
108 1.1 eeh asm ("mfpvr %0" : "=r"(pvr));
109 1.1 eeh cpu = pvr >> 16;
110 1.1 eeh
111 1.1 eeh /* Break PVR up into separate fields and print them out. */
112 1.1 eeh own = (pvr >> 20) & 0xfff;
113 1.1 eeh pcf = (pvr >> 16) & 0xf;
114 1.1 eeh cas = (pvr >> 10) & 0x3f;
115 1.1 eeh pcl = (pvr >> 6) & 0xf;
116 1.1 eeh aid = pvr & 0x3f;
117 1.1 eeh
118 1.1 eeh while (cp->name) {
119 1.1 eeh if (cp->version == cpu)
120 1.1 eeh break;
121 1.1 eeh cp++;
122 1.1 eeh }
123 1.1 eeh if (cp->name)
124 1.1 eeh strcpy(cpu_model, cp->name);
125 1.1 eeh else
126 1.1 eeh sprintf(cpu_model, "Version 0x%x", cpu);
127 1.1 eeh sprintf(cpu_model + strlen(cpu_model), " (Revision %d.%d)",
128 1.1 eeh (pvr >> 8) & 0xff, pvr & 0xff);
129 1.1 eeh
130 1.1 eeh #if 1
131 1.2 eeh printf(": %dMHz %s\n", processor_freq / 1000 / 1000,
132 1.1 eeh cpu_model);
133 1.1 eeh #endif
134 1.1 eeh
135 1.1 eeh cpu_probe_cache();
136 1.1 eeh
137 1.3 simonb printf("Instruction cache size %d line size %d\n",
138 1.1 eeh curcpu()->ci_ci.icache_size, curcpu()->ci_ci.icache_line_size);
139 1.3 simonb printf("Data cache size %d line size %d\n",
140 1.1 eeh curcpu()->ci_ci.dcache_size, curcpu()->ci_ci.dcache_line_size);
141 1.1 eeh
142 1.1 eeh #ifdef DEBUG
143 1.1 eeh /* It sux that the cache info here is useless. */
144 1.1 eeh printf("PVR: owner %x core family %x cache %x version %x asic %x\n",
145 1.1 eeh own, pcf, cas, pcl, aid);
146 1.1 eeh #endif
147 1.1 eeh }
148 1.1 eeh
149 1.1 eeh /*
150 1.3 simonb * This routine must be explicitly called to initialize the
151 1.3 simonb * CPU cache information so cache flushe and memcpy operation
152 1.1 eeh * work.
153 1.1 eeh */
154 1.1 eeh void
155 1.1 eeh cpu_probe_cache()
156 1.1 eeh {
157 1.1 eeh int version;
158 1.1 eeh
159 1.1 eeh /*
160 1.3 simonb * First we need to identify the cpu and determine the
161 1.1 eeh * cache line size, or things like memset/memcpy may lose
162 1.1 eeh * badly.
163 1.1 eeh */
164 1.1 eeh __asm __volatile("mfpvr %0" : "=r" (version));
165 1.1 eeh switch (version & 0xffff0000) {
166 1.1 eeh case PVR_401A1:
167 1.1 eeh curcpu()->ci_ci.dcache_size = 1024;
168 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
169 1.1 eeh curcpu()->ci_ci.icache_size = 2848;
170 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
171 1.1 eeh break;
172 1.1 eeh case PVR_401B2:
173 1.1 eeh curcpu()->ci_ci.dcache_size = 8192;
174 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
175 1.1 eeh curcpu()->ci_ci.icache_size = 16384;
176 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
177 1.1 eeh break;
178 1.1 eeh case PVR_401C2:
179 1.1 eeh curcpu()->ci_ci.dcache_size = 8192;
180 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
181 1.1 eeh curcpu()->ci_ci.icache_size = 0;
182 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
183 1.1 eeh break;
184 1.1 eeh case PVR_401D2:
185 1.1 eeh curcpu()->ci_ci.dcache_size = 2848;
186 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
187 1.1 eeh curcpu()->ci_ci.icache_size = 4096;
188 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
189 1.1 eeh break;
190 1.1 eeh case PVR_401E2:
191 1.1 eeh curcpu()->ci_ci.dcache_size = 0;
192 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
193 1.1 eeh curcpu()->ci_ci.icache_size = 0;
194 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
195 1.1 eeh break;
196 1.1 eeh case PVR_401F2:
197 1.1 eeh curcpu()->ci_ci.dcache_size = 2048;
198 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
199 1.1 eeh curcpu()->ci_ci.icache_size = 2848;
200 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
201 1.1 eeh break;
202 1.1 eeh case PVR_401G2:
203 1.1 eeh curcpu()->ci_ci.dcache_size = 2848;
204 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
205 1.1 eeh curcpu()->ci_ci.icache_size = 8192;
206 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
207 1.1 eeh break;
208 1.1 eeh case PVR_403:
209 1.12 hannken curcpu()->ci_ci.dcache_size = 8192;
210 1.1 eeh curcpu()->ci_ci.dcache_line_size = 16;
211 1.12 hannken curcpu()->ci_ci.icache_size = 16384;
212 1.1 eeh curcpu()->ci_ci.icache_line_size = 16;
213 1.1 eeh break;
214 1.1 eeh case PVR_405GP:
215 1.1 eeh curcpu()->ci_ci.dcache_size = 8192;
216 1.1 eeh curcpu()->ci_ci.dcache_line_size = 32;
217 1.1 eeh curcpu()->ci_ci.icache_size = 8192;
218 1.14 msaitoh curcpu()->ci_ci.icache_line_size = 32;
219 1.14 msaitoh break;
220 1.14 msaitoh case PVR_405GPR:
221 1.14 msaitoh curcpu()->ci_ci.dcache_size = 16384;
222 1.14 msaitoh curcpu()->ci_ci.dcache_line_size = 32;
223 1.14 msaitoh curcpu()->ci_ci.icache_size = 16384;
224 1.1 eeh curcpu()->ci_ci.icache_line_size = 32;
225 1.1 eeh break;
226 1.1 eeh default:
227 1.3 simonb /*
228 1.3 simonb * Unknown CPU type. For safety we'll specify a
229 1.3 simonb * cache with a 4-byte line size. That way cache
230 1.1 eeh * flush routines won't miss any lines.
231 1.1 eeh */
232 1.1 eeh curcpu()->ci_ci.dcache_line_size = 4;
233 1.1 eeh curcpu()->ci_ci.icache_line_size = 4;
234 1.1 eeh break;
235 1.1 eeh }
236 1.1 eeh
237 1.1 eeh }
238 1.1 eeh
239 1.1 eeh /*
240 1.1 eeh * These small routines may have to be replaced,
241 1.1 eeh * if/when we support processors other that the 604.
242 1.1 eeh */
243 1.1 eeh
244 1.1 eeh void
245 1.1 eeh dcache_flush_page(vaddr_t va)
246 1.1 eeh {
247 1.1 eeh int i;
248 1.1 eeh
249 1.1 eeh if (curcpu()->ci_ci.dcache_line_size)
250 1.13 thorpej for (i = 0; i < PAGE_SIZE;
251 1.13 thorpej i += curcpu()->ci_ci.dcache_line_size)
252 1.1 eeh asm volatile("dcbf %0,%1" : : "r" (va), "r" (i));
253 1.1 eeh asm volatile("sync;isync" : : );
254 1.1 eeh }
255 1.1 eeh
256 1.1 eeh void
257 1.1 eeh icache_flush_page(vaddr_t va)
258 1.1 eeh {
259 1.1 eeh int i;
260 1.1 eeh
261 1.1 eeh if (curcpu()->ci_ci.icache_line_size)
262 1.13 thorpej for (i = 0; i < PAGE_SIZE;
263 1.13 thorpej i += curcpu()->ci_ci.icache_line_size)
264 1.1 eeh asm volatile("icbi %0,%1" : : "r" (va), "r" (i));
265 1.1 eeh asm volatile("sync;isync" : : );
266 1.1 eeh }
267 1.1 eeh
268 1.1 eeh void
269 1.1 eeh dcache_flush(vaddr_t va, vsize_t len)
270 1.1 eeh {
271 1.1 eeh int i;
272 1.1 eeh
273 1.1 eeh if (len == 0)
274 1.1 eeh return;
275 1.1 eeh
276 1.1 eeh /* Make sure we flush all cache lines */
277 1.1 eeh len += va & (curcpu()->ci_ci.dcache_line_size-1);
278 1.1 eeh if (curcpu()->ci_ci.dcache_line_size)
279 1.1 eeh for (i = 0; i < len; i += curcpu()->ci_ci.dcache_line_size)
280 1.1 eeh asm volatile("dcbf %0,%1" : : "r" (va), "r" (i));
281 1.1 eeh asm volatile("sync;isync" : : );
282 1.1 eeh }
283 1.1 eeh
284 1.1 eeh void
285 1.1 eeh icache_flush(vaddr_t va, vsize_t len)
286 1.1 eeh {
287 1.1 eeh int i;
288 1.1 eeh
289 1.1 eeh if (len == 0)
290 1.1 eeh return;
291 1.1 eeh
292 1.1 eeh /* Make sure we flush all cache lines */
293 1.1 eeh len += va & (curcpu()->ci_ci.icache_line_size-1);
294 1.1 eeh if (curcpu()->ci_ci.icache_line_size)
295 1.1 eeh for (i = 0; i < len; i += curcpu()->ci_ci.icache_line_size)
296 1.1 eeh asm volatile("icbi %0,%1" : : "r" (va), "r" (i));
297 1.1 eeh asm volatile("sync;isync" : : );
298 1.1 eeh }
299