cpu.h revision 1.92 1 1.92 rmind /* $NetBSD: cpu.h,v 1.92 2009/11/21 17:40:27 rmind Exp $ */
2 1.8 cgd
3 1.1 deraadt /*-
4 1.5 glass * Copyright (c) 1992, 1993
5 1.5 glass * The Regents of the University of California. All rights reserved.
6 1.1 deraadt *
7 1.1 deraadt * This code is derived from software contributed to Berkeley by
8 1.1 deraadt * Ralph Campbell and Rick Macklem.
9 1.1 deraadt *
10 1.1 deraadt * Redistribution and use in source and binary forms, with or without
11 1.1 deraadt * modification, are permitted provided that the following conditions
12 1.1 deraadt * are met:
13 1.1 deraadt * 1. Redistributions of source code must retain the above copyright
14 1.1 deraadt * notice, this list of conditions and the following disclaimer.
15 1.1 deraadt * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 deraadt * notice, this list of conditions and the following disclaimer in the
17 1.1 deraadt * documentation and/or other materials provided with the distribution.
18 1.71 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 deraadt * may be used to endorse or promote products derived from this software
20 1.1 deraadt * without specific prior written permission.
21 1.1 deraadt *
22 1.1 deraadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 deraadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 deraadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 deraadt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 deraadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 deraadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 deraadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 deraadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 deraadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 deraadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 deraadt * SUCH DAMAGE.
33 1.1 deraadt *
34 1.8 cgd * @(#)cpu.h 8.4 (Berkeley) 1/4/94
35 1.1 deraadt */
36 1.1 deraadt
37 1.1 deraadt #ifndef _CPU_H_
38 1.1 deraadt #define _CPU_H_
39 1.1 deraadt
40 1.54 simonb #include <mips/cpuregs.h>
41 1.53 simonb
42 1.1 deraadt /*
43 1.13 jonathan * Exported definitions unique to NetBSD/mips cpu support.
44 1.1 deraadt */
45 1.36 soren
46 1.68 simonb #ifdef _KERNEL
47 1.53 simonb #ifndef _LOCORE
48 1.73 yamt #include <sys/cpu_data.h>
49 1.55 simonb
50 1.53 simonb #if defined(_KERNEL_OPT)
51 1.53 simonb #include "opt_lockdebug.h"
52 1.53 simonb #endif
53 1.53 simonb
54 1.53 simonb struct cpu_info {
55 1.73 yamt struct cpu_data ci_data; /* MI per-cpu data */
56 1.85 ad struct cpu_info *ci_next; /* Next CPU in list */
57 1.85 ad cpuid_t ci_cpuid; /* Machine-level identifier */
58 1.58 simonb u_long ci_cpu_freq; /* CPU frequency */
59 1.58 simonb u_long ci_cycles_per_hz; /* CPU freq / hz */
60 1.58 simonb u_long ci_divisor_delay; /* for delay/DELAY */
61 1.90 tsutsui u_long ci_divisor_recip; /* unused, for obsolete microtime(9) */
62 1.82 yamt struct lwp *ci_curlwp; /* currently running lwp */
63 1.82 yamt struct lwp *ci_fpcurlwp; /* the current FPU owner */
64 1.82 yamt int ci_want_resched; /* user preemption pending */
65 1.78 ad int ci_mtx_count; /* negative count of held mutexes */
66 1.78 ad int ci_mtx_oldspl; /* saved SPL value */
67 1.86 ad int ci_idepth; /* hardware interrupt depth */
68 1.53 simonb };
69 1.68 simonb
70 1.85 ad #define CPU_INFO_ITERATOR int
71 1.85 ad #define CPU_INFO_FOREACH(cii, ci) \
72 1.85 ad (void)(cii), ci = &cpu_info_store; ci != NULL; ci = ci->ci_next
73 1.85 ad
74 1.68 simonb #endif /* !_LOCORE */
75 1.68 simonb #endif /* _KERNEL */
76 1.53 simonb
77 1.36 soren /*
78 1.36 soren * CTL_MACHDEP definitions.
79 1.36 soren */
80 1.36 soren #define CPU_CONSDEV 1 /* dev_t: console terminal device */
81 1.36 soren #define CPU_BOOTED_KERNEL 2 /* string: booted kernel name */
82 1.36 soren #define CPU_ROOT_DEVICE 3 /* string: root device name */
83 1.66 gmcgarry #define CPU_LLSC 4 /* OS/CPU supports LL/SC instruction */
84 1.43 jeffs
85 1.43 jeffs /*
86 1.51 wiz * Platform can override, but note this breaks userland compatibility
87 1.43 jeffs * with other mips platforms.
88 1.43 jeffs */
89 1.43 jeffs #ifndef CPU_MAXID
90 1.67 shin #define CPU_MAXID 5 /* number of valid machdep ids */
91 1.36 soren
92 1.42 jeffs #endif
93 1.33 simonb
94 1.33 simonb #ifdef _KERNEL
95 1.87 he #if defined(_LKM) || defined(_STANDALONE)
96 1.87 he /* Assume all CPU architectures are valid for LKM's and standlone progs */
97 1.77 tsutsui #define MIPS1 1
98 1.77 tsutsui #define MIPS3 1
99 1.77 tsutsui #define MIPS4 1
100 1.77 tsutsui #define MIPS32 1
101 1.77 tsutsui #define MIPS64 1
102 1.77 tsutsui #endif
103 1.77 tsutsui
104 1.77 tsutsui #if (MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 0
105 1.77 tsutsui #error at least one of MIPS1, MIPS3, MIPS4, MIPS32 or MIPS64 must be specified
106 1.77 tsutsui #endif
107 1.53 simonb
108 1.77 tsutsui /* Shortcut for MIPS3 or above defined */
109 1.77 tsutsui #if defined(MIPS3) || defined(MIPS4) || defined(MIPS32) || defined(MIPS64)
110 1.77 tsutsui #define MIPS3_PLUS 1
111 1.77 tsutsui #else
112 1.77 tsutsui #undef MIPS3_PLUS
113 1.77 tsutsui #endif
114 1.33 simonb
115 1.33 simonb /*
116 1.21 jonathan * Macros to find the CPU architecture we're on at run-time,
117 1.21 jonathan * or if possible, at compile-time.
118 1.21 jonathan */
119 1.21 jonathan
120 1.58 simonb #define CPU_ARCH_MIPSx 0 /* XXX unknown */
121 1.46 cgd #define CPU_ARCH_MIPS1 (1 << 0)
122 1.46 cgd #define CPU_ARCH_MIPS2 (1 << 1)
123 1.46 cgd #define CPU_ARCH_MIPS3 (1 << 2)
124 1.46 cgd #define CPU_ARCH_MIPS4 (1 << 3)
125 1.46 cgd #define CPU_ARCH_MIPS5 (1 << 4)
126 1.46 cgd #define CPU_ARCH_MIPS32 (1 << 5)
127 1.46 cgd #define CPU_ARCH_MIPS64 (1 << 6)
128 1.46 cgd
129 1.82 yamt /* Note: must be kept in sync with -ffixed-?? Makefile.mips. */
130 1.82 yamt #define MIPS_CURLWP $23
131 1.82 yamt #define MIPS_CURLWP_QUOTED "$23"
132 1.82 yamt #define MIPS_CURLWP_CARD 23
133 1.82 yamt #define MIPS_CURLWP_FRAME(x) FRAME_S7(x)
134 1.82 yamt
135 1.58 simonb #ifndef _LOCORE
136 1.82 yamt
137 1.77 tsutsui extern struct cpu_info cpu_info_store;
138 1.82 yamt register struct lwp *mips_curlwp asm(MIPS_CURLWP_QUOTED);
139 1.77 tsutsui
140 1.82 yamt #define curlwp mips_curlwp
141 1.82 yamt #define curcpu() (curlwp->l_cpu)
142 1.92 rmind #define curpcb ((struct pcb *)lwp_getpcb(curlwp))
143 1.82 yamt #define fpcurlwp (curcpu()->ci_fpcurlwp)
144 1.82 yamt #define cpu_number() (0)
145 1.77 tsutsui #define cpu_proc_fork(p1, p2)
146 1.77 tsutsui
147 1.58 simonb /* XXX simonb
148 1.58 simonb * Should the following be in a cpu_info type structure?
149 1.58 simonb * And how many of these are per-cpu vs. per-system? (Ie,
150 1.58 simonb * we can assume that all cpus have the same mmu-type, but
151 1.58 simonb * maybe not that all cpus run at the same clock speed.
152 1.58 simonb * Some SGI's apparently support R12k and R14k in the same
153 1.58 simonb * box.)
154 1.58 simonb */
155 1.58 simonb extern int cpu_arch;
156 1.58 simonb extern int mips_cpu_flags;
157 1.58 simonb extern int mips_has_r4k_mmu;
158 1.58 simonb extern int mips_has_llsc;
159 1.58 simonb extern int mips3_pg_cached;
160 1.74 tsutsui extern u_int mips3_pg_shift;
161 1.58 simonb
162 1.58 simonb #define CPU_MIPS_R4K_MMU 0x0001
163 1.58 simonb #define CPU_MIPS_NO_LLSC 0x0002
164 1.58 simonb #define CPU_MIPS_CAUSE_IV 0x0004
165 1.58 simonb #define CPU_MIPS_HAVE_SPECIAL_CCA 0x0008 /* Defaults to '3' if not set. */
166 1.58 simonb #define CPU_MIPS_CACHED_CCA_MASK 0x0070
167 1.58 simonb #define CPU_MIPS_CACHED_CCA_SHIFT 4
168 1.62 simonb #define CPU_MIPS_DOUBLE_COUNT 0x0080 /* 1 cp0 count == 2 clock cycles */
169 1.63 simonb #define CPU_MIPS_USE_WAIT 0x0100 /* Use "wait"-based cpu_idle() */
170 1.63 simonb #define CPU_MIPS_NO_WAIT 0x0200 /* Inverse of previous, for mips32/64 */
171 1.69 simonb #define CPU_MIPS_D_CACHE_COHERENT 0x0400 /* D-cache is fully coherent */
172 1.69 simonb #define CPU_MIPS_I_D_CACHE_COHERENT 0x0800 /* I-cache funcs don't need to flush the D-cache */
173 1.58 simonb #define MIPS_NOT_SUPP 0x8000
174 1.60 simonb
175 1.78 ad #endif /* !_LOCORE */
176 1.78 ad
177 1.78 ad #if ((MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 1) || defined(_LOCORE)
178 1.78 ad
179 1.78 ad #if defined(MIPS1)
180 1.78 ad
181 1.58 simonb # define CPUISMIPS3 0
182 1.58 simonb # define CPUIS64BITS 0
183 1.58 simonb # define CPUISMIPS32 0
184 1.58 simonb # define CPUISMIPS64 0
185 1.58 simonb # define CPUISMIPSNN 0
186 1.58 simonb # define MIPS_HAS_R4K_MMU 0
187 1.58 simonb # define MIPS_HAS_CLOCK 0
188 1.58 simonb # define MIPS_HAS_LLSC 0
189 1.58 simonb
190 1.78 ad #elif defined(MIPS3) || defined(MIPS4)
191 1.78 ad
192 1.58 simonb # define CPUISMIPS3 1
193 1.58 simonb # define CPUIS64BITS 1
194 1.58 simonb # define CPUISMIPS32 0
195 1.58 simonb # define CPUISMIPS64 0
196 1.58 simonb # define CPUISMIPSNN 0
197 1.58 simonb # define MIPS_HAS_R4K_MMU 1
198 1.58 simonb # define MIPS_HAS_CLOCK 1
199 1.78 ad # if defined(_LOCORE)
200 1.78 ad # if !defined(MIPS3_5900) && !defined(MIPS3_4100)
201 1.78 ad # define MIPS_HAS_LLSC 1
202 1.78 ad # else
203 1.78 ad # define MIPS_HAS_LLSC 0
204 1.78 ad # endif
205 1.78 ad # else /* _LOCORE */
206 1.78 ad # define MIPS_HAS_LLSC (mips_has_llsc)
207 1.78 ad # endif /* _LOCORE */
208 1.78 ad
209 1.78 ad #elif defined(MIPS32)
210 1.58 simonb
211 1.58 simonb # define CPUISMIPS3 1
212 1.58 simonb # define CPUIS64BITS 0
213 1.58 simonb # define CPUISMIPS32 1
214 1.58 simonb # define CPUISMIPS64 0
215 1.58 simonb # define CPUISMIPSNN 1
216 1.58 simonb # define MIPS_HAS_R4K_MMU 1
217 1.58 simonb # define MIPS_HAS_CLOCK 1
218 1.58 simonb # define MIPS_HAS_LLSC 1
219 1.58 simonb
220 1.80 oster #elif defined(MIPS64)
221 1.78 ad
222 1.58 simonb # define CPUISMIPS3 1
223 1.58 simonb # define CPUIS64BITS 1
224 1.58 simonb # define CPUISMIPS32 0
225 1.58 simonb # define CPUISMIPS64 1
226 1.58 simonb # define CPUISMIPSNN 1
227 1.58 simonb # define MIPS_HAS_R4K_MMU 1
228 1.58 simonb # define MIPS_HAS_CLOCK 1
229 1.58 simonb # define MIPS_HAS_LLSC 1
230 1.78 ad
231 1.78 ad #endif
232 1.21 jonathan
233 1.58 simonb #else /* run-time test */
234 1.21 jonathan
235 1.78 ad #ifndef _LOCORE
236 1.78 ad
237 1.58 simonb #define MIPS_HAS_R4K_MMU (mips_has_r4k_mmu)
238 1.58 simonb #define MIPS_HAS_LLSC (mips_has_llsc)
239 1.45 cgd
240 1.45 cgd /* This test is ... rather bogus */
241 1.58 simonb #define CPUISMIPS3 ((cpu_arch & \
242 1.58 simonb (CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
243 1.58 simonb
244 1.58 simonb /* And these aren't much better while the previous test exists as is... */
245 1.58 simonb #define CPUISMIPS32 ((cpu_arch & CPU_ARCH_MIPS32) != 0)
246 1.58 simonb #define CPUISMIPS64 ((cpu_arch & CPU_ARCH_MIPS64) != 0)
247 1.58 simonb #define CPUISMIPSNN ((cpu_arch & (CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
248 1.58 simonb #define CPUIS64BITS ((cpu_arch & \
249 1.58 simonb (CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS64)) != 0)
250 1.58 simonb
251 1.58 simonb #define MIPS_HAS_CLOCK (cpu_arch >= CPU_ARCH_MIPS3)
252 1.78 ad
253 1.78 ad #else /* !_LOCORE */
254 1.78 ad
255 1.78 ad #define MIPS_HAS_LLSC 0
256 1.78 ad
257 1.78 ad #endif /* !_LOCORE */
258 1.78 ad
259 1.21 jonathan #endif /* run-time test */
260 1.21 jonathan
261 1.78 ad #ifndef _LOCORE
262 1.58 simonb
263 1.21 jonathan /*
264 1.1 deraadt * definitions of cpu-dependent requirements
265 1.1 deraadt * referenced in generic code
266 1.1 deraadt */
267 1.42 jeffs
268 1.58 simonb void cpu_intr(u_int32_t, u_int32_t, u_int32_t, u_int32_t);
269 1.1 deraadt
270 1.1 deraadt /*
271 1.1 deraadt * Arguments to hardclock and gatherstats encapsulate the previous
272 1.1 deraadt * machine state in an opaque clockframe.
273 1.1 deraadt */
274 1.5 glass struct clockframe {
275 1.1 deraadt int pc; /* program counter at time of interrupt */
276 1.1 deraadt int sr; /* status register at time of interrupt */
277 1.56 uch int ppl; /* previous priority level at time of interrupt */
278 1.5 glass };
279 1.1 deraadt
280 1.14 jonathan /*
281 1.79 ad * A port must provde CLKF_USERMODE() for use in machine-independent code.
282 1.79 ad * These differ on r4000 and r3000 systems; provide them in the
283 1.79 ad * port-dependent file that includes this one, using the macros below.
284 1.14 jonathan */
285 1.14 jonathan
286 1.21 jonathan /* mips1 versions */
287 1.22 jonathan #define MIPS1_CLKF_USERMODE(framep) ((framep)->sr & MIPS_SR_KU_PREV)
288 1.14 jonathan
289 1.21 jonathan /* mips3 versions */
290 1.22 jonathan #define MIPS3_CLKF_USERMODE(framep) ((framep)->sr & MIPS_SR_KSU_USER)
291 1.56 uch
292 1.1 deraadt #define CLKF_PC(framep) ((framep)->pc)
293 1.1 deraadt #define CLKF_INTR(framep) (0)
294 1.18 jonathan
295 1.58 simonb #if defined(MIPS3_PLUS) && !defined(MIPS1) /* XXX bogus! */
296 1.21 jonathan #define CLKF_USERMODE(framep) MIPS3_CLKF_USERMODE(framep)
297 1.21 jonathan #endif
298 1.21 jonathan
299 1.58 simonb #if !defined(MIPS3_PLUS) && defined(MIPS1) /* XXX bogus! */
300 1.21 jonathan #define CLKF_USERMODE(framep) MIPS1_CLKF_USERMODE(framep)
301 1.21 jonathan #endif
302 1.21 jonathan
303 1.58 simonb #if defined(MIPS3_PLUS) && defined(MIPS1) /* XXX bogus! */
304 1.21 jonathan #define CLKF_USERMODE(framep) \
305 1.21 jonathan ((CPUISMIPS3) ? MIPS3_CLKF_USERMODE(framep): MIPS1_CLKF_USERMODE(framep))
306 1.18 jonathan #endif
307 1.18 jonathan
308 1.47 thorpej /*
309 1.47 thorpej * This is used during profiling to integrate system time. It can safely
310 1.47 thorpej * assume that the process is resident.
311 1.47 thorpej */
312 1.48 thorpej #define PROC_PC(p) \
313 1.48 thorpej (((struct frame *)(p)->p_md.md_regs)->f_regs[37]) /* XXX PC */
314 1.1 deraadt
315 1.1 deraadt /*
316 1.1 deraadt * Preempt the current process if in interrupt from user mode,
317 1.1 deraadt * or after the current trap/syscall if in system mode.
318 1.1 deraadt */
319 1.82 yamt void cpu_need_resched(struct cpu_info *, int);
320 1.1 deraadt
321 1.1 deraadt /*
322 1.1 deraadt * Give a profiling tick to the current process when the user profiling
323 1.13 jonathan * buffer pages are invalid. On the MIPS, request an ast to send us
324 1.1 deraadt * through trap, marking the proc as needing a profiling tick.
325 1.1 deraadt */
326 1.78 ad #define cpu_need_proftick(l) \
327 1.50 thorpej do { \
328 1.78 ad (l)->l_pflag |= LP_OWEUPC; \
329 1.78 ad aston(l); \
330 1.50 thorpej } while (/*CONSTCOND*/0)
331 1.1 deraadt
332 1.1 deraadt /*
333 1.81 simonb * Notify the current lwp (l) that it has a signal pending,
334 1.1 deraadt * process as soon as possible.
335 1.1 deraadt */
336 1.81 simonb #define cpu_signotify(l) aston(l)
337 1.1 deraadt
338 1.78 ad #define aston(l) ((l)->l_md.md_astpending = 1)
339 1.1 deraadt
340 1.23 thorpej /*
341 1.37 simonb * Misc prototypes and variable declarations.
342 1.23 thorpej */
343 1.70 thorpej struct lwp;
344 1.28 castor struct user;
345 1.37 simonb
346 1.68 simonb extern struct segtab *segbase; /* current segtab base */
347 1.25 jonathan
348 1.28 castor /* trap.c */
349 1.58 simonb void netintr(void);
350 1.58 simonb int kdbpeek(vaddr_t);
351 1.23 thorpej
352 1.28 castor /* mips_machdep.c */
353 1.58 simonb void dumpsys(void);
354 1.58 simonb int savectx(struct user *);
355 1.58 simonb void mips_init_msgbuf(void);
356 1.70 thorpej void savefpregs(struct lwp *);
357 1.70 thorpej void loadfpregs(struct lwp *);
358 1.13 jonathan
359 1.61 simonb /* locore*.S */
360 1.58 simonb int badaddr(void *, size_t);
361 1.61 simonb int badaddr64(uint64_t, size_t);
362 1.25 jonathan
363 1.25 jonathan /* mips_machdep.c */
364 1.58 simonb void cpu_identify(void);
365 1.58 simonb void mips_vector_init(void);
366 1.27 thorpej
367 1.33 simonb #endif /* ! _LOCORE */
368 1.28 castor #endif /* _KERNEL */
369 1.1 deraadt #endif /* _CPU_H_ */
370