cpu.h revision 1.90.16.24 1 1.90.16.24 matt /* $NetBSD: cpu.h,v 1.90.16.24 2010/02/28 23:45:07 matt 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.90.16.19 matt
48 1.53 simonb #ifndef _LOCORE
49 1.73 yamt #include <sys/cpu_data.h>
50 1.90.16.10 cliff #include <sys/device.h>
51 1.90.16.24 matt #include <sys/evcnt.h>
52 1.55 simonb
53 1.53 simonb #if defined(_KERNEL_OPT)
54 1.90.16.24 matt #include "opt_cputype.h"
55 1.53 simonb #include "opt_lockdebug.h"
56 1.90.16.11 matt #include "opt_multiprocessor.h"
57 1.53 simonb #endif
58 1.53 simonb
59 1.53 simonb struct cpu_info {
60 1.73 yamt struct cpu_data ci_data; /* MI per-cpu data */
61 1.85 ad struct cpu_info *ci_next; /* Next CPU in list */
62 1.90.16.24 matt device_t ci_dev; /* owning device */
63 1.85 ad cpuid_t ci_cpuid; /* Machine-level identifier */
64 1.90.16.24 matt u_long ci_cctr_freq; /* cycle counter frequency */
65 1.58 simonb u_long ci_cpu_freq; /* CPU frequency */
66 1.58 simonb u_long ci_cycles_per_hz; /* CPU freq / hz */
67 1.58 simonb u_long ci_divisor_delay; /* for delay/DELAY */
68 1.90 tsutsui u_long ci_divisor_recip; /* unused, for obsolete microtime(9) */
69 1.82 yamt struct lwp *ci_curlwp; /* currently running lwp */
70 1.90.16.24 matt #ifndef NOFPU
71 1.82 yamt struct lwp *ci_fpcurlwp; /* the current FPU owner */
72 1.90.16.24 matt #endif
73 1.90.16.24 matt volatile int ci_want_resched; /* user preemption pending */
74 1.78 ad int ci_mtx_count; /* negative count of held mutexes */
75 1.78 ad int ci_mtx_oldspl; /* saved SPL value */
76 1.86 ad int ci_idepth; /* hardware interrupt depth */
77 1.90.16.19 matt int ci_cpl; /* current [interrupt] priority level */
78 1.90.16.18 matt struct lwp *ci_softlwps[SOFTINT_COUNT];
79 1.90.16.18 matt #define ci_softints ci_data.cpu_softints
80 1.90.16.12 matt /*
81 1.90.16.12 matt * Per-cpu pmap information
82 1.90.16.12 matt */
83 1.90.16.23 matt int ci_tlb_slot; /* reserved tlb entry for cpu_info */
84 1.90.16.24 matt struct pmap_tlb_info *ci_tlb_info; /* tlb information for this cpu */
85 1.90.16.12 matt struct segtab *ci_pmap_segbase;
86 1.90.16.15 matt vaddr_t ci_pmap_srcbase; /* starting VA of ephemeral src space */
87 1.90.16.15 matt vaddr_t ci_pmap_dstbase; /* starting VA of ephemeral dst space */
88 1.90.16.24 matt #ifdef MULTIPROCESSOR
89 1.90.16.24 matt uint64_t ci_active_ipis; /* bitmask of IPIs being serviced */
90 1.90.16.24 matt uint32_t ci_ksp_tlb_slot; /* tlb entry for kernel stack */
91 1.90.16.24 matt void *ci_fpsave_si; /* FP sync softint handler */
92 1.90.16.24 matt struct evcnt ci_evcnt_all_ipis; /* aggregated IPI counter */
93 1.90.16.24 matt struct evcnt ci_evcnt_per_ipi[NIPIS]; /* individual IPI counters*/
94 1.90.16.24 matt #endif
95 1.53 simonb };
96 1.68 simonb
97 1.85 ad #define CPU_INFO_ITERATOR int
98 1.85 ad #define CPU_INFO_FOREACH(cii, ci) \
99 1.85 ad (void)(cii), ci = &cpu_info_store; ci != NULL; ci = ci->ci_next
100 1.85 ad
101 1.68 simonb #endif /* !_LOCORE */
102 1.68 simonb #endif /* _KERNEL */
103 1.53 simonb
104 1.36 soren /*
105 1.36 soren * CTL_MACHDEP definitions.
106 1.36 soren */
107 1.36 soren #define CPU_CONSDEV 1 /* dev_t: console terminal device */
108 1.36 soren #define CPU_BOOTED_KERNEL 2 /* string: booted kernel name */
109 1.36 soren #define CPU_ROOT_DEVICE 3 /* string: root device name */
110 1.66 gmcgarry #define CPU_LLSC 4 /* OS/CPU supports LL/SC instruction */
111 1.43 jeffs
112 1.43 jeffs /*
113 1.51 wiz * Platform can override, but note this breaks userland compatibility
114 1.43 jeffs * with other mips platforms.
115 1.43 jeffs */
116 1.43 jeffs #ifndef CPU_MAXID
117 1.67 shin #define CPU_MAXID 5 /* number of valid machdep ids */
118 1.42 jeffs #endif
119 1.33 simonb
120 1.33 simonb #ifdef _KERNEL
121 1.87 he #if defined(_LKM) || defined(_STANDALONE)
122 1.87 he /* Assume all CPU architectures are valid for LKM's and standlone progs */
123 1.77 tsutsui #define MIPS1 1
124 1.77 tsutsui #define MIPS3 1
125 1.77 tsutsui #define MIPS4 1
126 1.77 tsutsui #define MIPS32 1
127 1.77 tsutsui #define MIPS64 1
128 1.77 tsutsui #endif
129 1.77 tsutsui
130 1.77 tsutsui #if (MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 0
131 1.77 tsutsui #error at least one of MIPS1, MIPS3, MIPS4, MIPS32 or MIPS64 must be specified
132 1.77 tsutsui #endif
133 1.53 simonb
134 1.77 tsutsui /* Shortcut for MIPS3 or above defined */
135 1.77 tsutsui #if defined(MIPS3) || defined(MIPS4) || defined(MIPS32) || defined(MIPS64)
136 1.77 tsutsui #define MIPS3_PLUS 1
137 1.90.16.24 matt #define __HAVE_CPU_COUNTER
138 1.77 tsutsui #else
139 1.77 tsutsui #undef MIPS3_PLUS
140 1.77 tsutsui #endif
141 1.33 simonb
142 1.33 simonb /*
143 1.21 jonathan * Macros to find the CPU architecture we're on at run-time,
144 1.21 jonathan * or if possible, at compile-time.
145 1.21 jonathan */
146 1.21 jonathan
147 1.58 simonb #define CPU_ARCH_MIPSx 0 /* XXX unknown */
148 1.46 cgd #define CPU_ARCH_MIPS1 (1 << 0)
149 1.46 cgd #define CPU_ARCH_MIPS2 (1 << 1)
150 1.46 cgd #define CPU_ARCH_MIPS3 (1 << 2)
151 1.46 cgd #define CPU_ARCH_MIPS4 (1 << 3)
152 1.46 cgd #define CPU_ARCH_MIPS5 (1 << 4)
153 1.46 cgd #define CPU_ARCH_MIPS32 (1 << 5)
154 1.46 cgd #define CPU_ARCH_MIPS64 (1 << 6)
155 1.46 cgd
156 1.82 yamt /* Note: must be kept in sync with -ffixed-?? Makefile.mips. */
157 1.90.16.16 matt #define MIPS_CURLWP $24
158 1.90.16.16 matt #define MIPS_CURLWP_QUOTED "$24"
159 1.90.16.16 matt #define MIPS_CURLWP_LABEL _L_T8
160 1.90.16.21 matt #define MIPS_CURLWP_REG _R_T8
161 1.90.16.17 matt #define TF_MIPS_CURLWP(x) TF_REG_T8(x)
162 1.82 yamt
163 1.58 simonb #ifndef _LOCORE
164 1.82 yamt
165 1.77 tsutsui extern struct cpu_info cpu_info_store;
166 1.82 yamt register struct lwp *mips_curlwp asm(MIPS_CURLWP_QUOTED);
167 1.77 tsutsui
168 1.82 yamt #define curlwp mips_curlwp
169 1.82 yamt #define curcpu() (curlwp->l_cpu)
170 1.90.16.19 matt #define curpcb (&curlwp->l_addr->u_pcb)
171 1.90.16.13 matt #ifdef MULTIPROCESSOR
172 1.90.16.13 matt #define cpu_number() (curcpu()->ci_cpuid)
173 1.90.16.21 matt #define CPU_IS_PRIMARY(ci) ((ci)->ci_cpuid == 0)
174 1.90.16.13 matt #else
175 1.82 yamt #define cpu_number() (0)
176 1.90.16.13 matt #endif
177 1.90.16.1 matt #define cpu_proc_fork(p1, p2) ((void)((p2)->p_md.md_abi = (p1)->p_md.md_abi))
178 1.77 tsutsui
179 1.58 simonb /* XXX simonb
180 1.58 simonb * Should the following be in a cpu_info type structure?
181 1.58 simonb * And how many of these are per-cpu vs. per-system? (Ie,
182 1.58 simonb * we can assume that all cpus have the same mmu-type, but
183 1.58 simonb * maybe not that all cpus run at the same clock speed.
184 1.58 simonb * Some SGI's apparently support R12k and R14k in the same
185 1.58 simonb * box.)
186 1.58 simonb */
187 1.90.16.13 matt struct mips_options {
188 1.90.16.13 matt const struct pridtab *mips_cpu;
189 1.90.16.13 matt
190 1.90.16.13 matt u_int mips_cpu_arch;
191 1.90.16.14 matt u_int mips_cpu_mhz; /* CPU speed in MHz, estimated by mc_cpuspeed(). */
192 1.90.16.13 matt u_int mips_cpu_flags;
193 1.90.16.13 matt u_int mips_num_tlb_entries;
194 1.90.16.13 matt mips_prid_t mips_cpu_id;
195 1.90.16.13 matt mips_prid_t mips_fpu_id;
196 1.90.16.13 matt bool mips_has_r4k_mmu;
197 1.90.16.13 matt bool mips_has_llsc;
198 1.90.16.14 matt u_int mips3_pg_shift;
199 1.90.16.14 matt u_int mips3_pg_cached;
200 1.90.16.13 matt #ifdef MIPS3_PLUS
201 1.90.16.2 matt #ifdef _LP64
202 1.90.16.13 matt uint64_t mips3_xkphys_cached;
203 1.90.16.2 matt #endif
204 1.90.16.13 matt uint64_t mips3_tlb_vpn_mask;
205 1.90.16.13 matt uint64_t mips3_tlb_pfn_mask;
206 1.90.16.13 matt uint32_t mips3_tlb_pg_mask;
207 1.90.16.13 matt #endif
208 1.90.16.13 matt };
209 1.90.16.13 matt extern struct mips_options mips_options;
210 1.58 simonb
211 1.58 simonb #define CPU_MIPS_R4K_MMU 0x0001
212 1.58 simonb #define CPU_MIPS_NO_LLSC 0x0002
213 1.58 simonb #define CPU_MIPS_CAUSE_IV 0x0004
214 1.58 simonb #define CPU_MIPS_HAVE_SPECIAL_CCA 0x0008 /* Defaults to '3' if not set. */
215 1.58 simonb #define CPU_MIPS_CACHED_CCA_MASK 0x0070
216 1.58 simonb #define CPU_MIPS_CACHED_CCA_SHIFT 4
217 1.62 simonb #define CPU_MIPS_DOUBLE_COUNT 0x0080 /* 1 cp0 count == 2 clock cycles */
218 1.63 simonb #define CPU_MIPS_USE_WAIT 0x0100 /* Use "wait"-based cpu_idle() */
219 1.63 simonb #define CPU_MIPS_NO_WAIT 0x0200 /* Inverse of previous, for mips32/64 */
220 1.69 simonb #define CPU_MIPS_D_CACHE_COHERENT 0x0400 /* D-cache is fully coherent */
221 1.69 simonb #define CPU_MIPS_I_D_CACHE_COHERENT 0x0800 /* I-cache funcs don't need to flush the D-cache */
222 1.90.16.3 matt #define CPU_MIPS_NO_LLADDR 0x1000
223 1.90.16.5 cliff #define CPU_MIPS_HAVE_MxCR 0x2000 /* have mfcr, mtcr insns */
224 1.58 simonb #define MIPS_NOT_SUPP 0x8000
225 1.60 simonb
226 1.78 ad #endif /* !_LOCORE */
227 1.78 ad
228 1.78 ad #if ((MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 1) || defined(_LOCORE)
229 1.78 ad
230 1.78 ad #if defined(MIPS1)
231 1.78 ad
232 1.58 simonb # define CPUISMIPS3 0
233 1.58 simonb # define CPUIS64BITS 0
234 1.58 simonb # define CPUISMIPS32 0
235 1.58 simonb # define CPUISMIPS64 0
236 1.58 simonb # define CPUISMIPSNN 0
237 1.58 simonb # define MIPS_HAS_R4K_MMU 0
238 1.58 simonb # define MIPS_HAS_CLOCK 0
239 1.58 simonb # define MIPS_HAS_LLSC 0
240 1.90.16.4 matt # define MIPS_HAS_LLADDR 0
241 1.58 simonb
242 1.78 ad #elif defined(MIPS3) || defined(MIPS4)
243 1.78 ad
244 1.58 simonb # define CPUISMIPS3 1
245 1.58 simonb # define CPUIS64BITS 1
246 1.58 simonb # define CPUISMIPS32 0
247 1.58 simonb # define CPUISMIPS64 0
248 1.58 simonb # define CPUISMIPSNN 0
249 1.58 simonb # define MIPS_HAS_R4K_MMU 1
250 1.58 simonb # define MIPS_HAS_CLOCK 1
251 1.78 ad # if defined(_LOCORE)
252 1.78 ad # if !defined(MIPS3_5900) && !defined(MIPS3_4100)
253 1.78 ad # define MIPS_HAS_LLSC 1
254 1.78 ad # else
255 1.78 ad # define MIPS_HAS_LLSC 0
256 1.78 ad # endif
257 1.78 ad # else /* _LOCORE */
258 1.90.16.13 matt # define MIPS_HAS_LLSC (mips_options.mips_has_llsc)
259 1.78 ad # endif /* _LOCORE */
260 1.90.16.13 matt # define MIPS_HAS_LLADDR ((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
261 1.78 ad
262 1.78 ad #elif defined(MIPS32)
263 1.58 simonb
264 1.58 simonb # define CPUISMIPS3 1
265 1.58 simonb # define CPUIS64BITS 0
266 1.58 simonb # define CPUISMIPS32 1
267 1.58 simonb # define CPUISMIPS64 0
268 1.58 simonb # define CPUISMIPSNN 1
269 1.58 simonb # define MIPS_HAS_R4K_MMU 1
270 1.58 simonb # define MIPS_HAS_CLOCK 1
271 1.58 simonb # define MIPS_HAS_LLSC 1
272 1.90.16.13 matt # define MIPS_HAS_LLADDR ((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
273 1.58 simonb
274 1.80 oster #elif defined(MIPS64)
275 1.78 ad
276 1.58 simonb # define CPUISMIPS3 1
277 1.58 simonb # define CPUIS64BITS 1
278 1.58 simonb # define CPUISMIPS32 0
279 1.58 simonb # define CPUISMIPS64 1
280 1.58 simonb # define CPUISMIPSNN 1
281 1.58 simonb # define MIPS_HAS_R4K_MMU 1
282 1.58 simonb # define MIPS_HAS_CLOCK 1
283 1.58 simonb # define MIPS_HAS_LLSC 1
284 1.90.16.13 matt # define MIPS_HAS_LLADDR ((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
285 1.78 ad
286 1.78 ad #endif
287 1.21 jonathan
288 1.58 simonb #else /* run-time test */
289 1.21 jonathan
290 1.78 ad #ifndef _LOCORE
291 1.78 ad
292 1.90.16.13 matt #define MIPS_HAS_R4K_MMU (mips_options.mips_has_r4k_mmu)
293 1.90.16.13 matt #define MIPS_HAS_LLSC (mips_options.mips_has_llsc)
294 1.90.16.13 matt #define MIPS_HAS_LLADDR ((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
295 1.45 cgd
296 1.45 cgd /* This test is ... rather bogus */
297 1.90.16.13 matt #define CPUISMIPS3 ((mips_options.mips_cpu_arch & \
298 1.58 simonb (CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
299 1.58 simonb
300 1.58 simonb /* And these aren't much better while the previous test exists as is... */
301 1.90.16.13 matt #define CPUISMIPS4 ((mips_options.mips_cpu_arch & CPU_ARCH_MIPS4) != 0)
302 1.90.16.13 matt #define CPUISMIPS5 ((mips_options.mips_cpu_arch & CPU_ARCH_MIPS5) != 0)
303 1.90.16.13 matt #define CPUISMIPS32 ((mips_options.mips_cpu_arch & CPU_ARCH_MIPS32) != 0)
304 1.90.16.13 matt #define CPUISMIPS64 ((mips_options.mips_cpu_arch & CPU_ARCH_MIPS64) != 0)
305 1.90.16.13 matt #define CPUISMIPSNN ((mips_options.mips_cpu_arch & (CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
306 1.90.16.13 matt #define CPUIS64BITS ((mips_options.mips_cpu_arch & \
307 1.58 simonb (CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS64)) != 0)
308 1.58 simonb
309 1.90.16.13 matt #define MIPS_HAS_CLOCK (mips_options.mips_cpu_arch >= CPU_ARCH_MIPS3)
310 1.78 ad
311 1.78 ad #else /* !_LOCORE */
312 1.78 ad
313 1.78 ad #define MIPS_HAS_LLSC 0
314 1.78 ad
315 1.78 ad #endif /* !_LOCORE */
316 1.78 ad
317 1.21 jonathan #endif /* run-time test */
318 1.21 jonathan
319 1.78 ad #ifndef _LOCORE
320 1.58 simonb
321 1.21 jonathan /*
322 1.1 deraadt * definitions of cpu-dependent requirements
323 1.1 deraadt * referenced in generic code
324 1.1 deraadt */
325 1.11 cgd #define cpu_swapout(p) panic("cpu_swapout: can't get here");
326 1.42 jeffs
327 1.90.16.19 matt /*
328 1.90.16.21 matt * Send an inter-processor interupt to another CPU.
329 1.90.16.21 matt */
330 1.90.16.21 matt int cpu_send_ipi(struct cpu_info *, int);
331 1.90.16.21 matt
332 1.90.16.21 matt /*
333 1.90.16.19 matt * cpu_intr(ppl, pc, status); (most state needed by clockframe)
334 1.90.16.19 matt */
335 1.90.16.19 matt void cpu_intr(int, vaddr_t, uint32_t);
336 1.1 deraadt
337 1.1 deraadt /*
338 1.1 deraadt * Arguments to hardclock and gatherstats encapsulate the previous
339 1.1 deraadt * machine state in an opaque clockframe.
340 1.1 deraadt */
341 1.5 glass struct clockframe {
342 1.90.16.19 matt vaddr_t pc; /* program counter at time of interrupt */
343 1.90.16.8 cliff uint32_t sr; /* status register at time of interrupt */
344 1.90.16.19 matt bool intr; /* interrupted a interrupt */
345 1.5 glass };
346 1.1 deraadt
347 1.14 jonathan /*
348 1.79 ad * A port must provde CLKF_USERMODE() for use in machine-independent code.
349 1.79 ad * These differ on r4000 and r3000 systems; provide them in the
350 1.79 ad * port-dependent file that includes this one, using the macros below.
351 1.14 jonathan */
352 1.14 jonathan
353 1.21 jonathan /* mips1 versions */
354 1.22 jonathan #define MIPS1_CLKF_USERMODE(framep) ((framep)->sr & MIPS_SR_KU_PREV)
355 1.14 jonathan
356 1.21 jonathan /* mips3 versions */
357 1.22 jonathan #define MIPS3_CLKF_USERMODE(framep) ((framep)->sr & MIPS_SR_KSU_USER)
358 1.56 uch
359 1.1 deraadt #define CLKF_PC(framep) ((framep)->pc)
360 1.90.16.19 matt #define CLKF_INTR(framep) ((framep)->intr)
361 1.18 jonathan
362 1.58 simonb #if defined(MIPS3_PLUS) && !defined(MIPS1) /* XXX bogus! */
363 1.21 jonathan #define CLKF_USERMODE(framep) MIPS3_CLKF_USERMODE(framep)
364 1.21 jonathan #endif
365 1.21 jonathan
366 1.58 simonb #if !defined(MIPS3_PLUS) && defined(MIPS1) /* XXX bogus! */
367 1.21 jonathan #define CLKF_USERMODE(framep) MIPS1_CLKF_USERMODE(framep)
368 1.21 jonathan #endif
369 1.21 jonathan
370 1.58 simonb #if defined(MIPS3_PLUS) && defined(MIPS1) /* XXX bogus! */
371 1.21 jonathan #define CLKF_USERMODE(framep) \
372 1.21 jonathan ((CPUISMIPS3) ? MIPS3_CLKF_USERMODE(framep): MIPS1_CLKF_USERMODE(framep))
373 1.18 jonathan #endif
374 1.18 jonathan
375 1.47 thorpej /*
376 1.90.16.20 matt * Misc prototypes and variable declarations.
377 1.47 thorpej */
378 1.90.16.20 matt struct lwp;
379 1.90.16.20 matt struct user;
380 1.1 deraadt
381 1.1 deraadt /*
382 1.1 deraadt * Preempt the current process if in interrupt from user mode,
383 1.1 deraadt * or after the current trap/syscall if in system mode.
384 1.1 deraadt */
385 1.82 yamt void cpu_need_resched(struct cpu_info *, int);
386 1.1 deraadt /*
387 1.81 simonb * Notify the current lwp (l) that it has a signal pending,
388 1.1 deraadt * process as soon as possible.
389 1.1 deraadt */
390 1.90.16.20 matt void cpu_signotify(struct lwp *);
391 1.1 deraadt
392 1.23 thorpej /*
393 1.90.16.20 matt * Give a profiling tick to the current process when the user profiling
394 1.90.16.20 matt * buffer pages are invalid. On the MIPS, request an ast to send us
395 1.90.16.20 matt * through trap, marking the proc as needing a profiling tick.
396 1.23 thorpej */
397 1.90.16.20 matt void cpu_need_proftick(struct lwp *);
398 1.90.16.20 matt void cpu_set_curpri(int);
399 1.37 simonb
400 1.90.16.9 matt extern int mips_poolpage_vmfreelist; /* freelist to allocate poolpages */
401 1.25 jonathan
402 1.90.16.24 matt /* cpu_subr.c */
403 1.90.16.24 matt struct cpu_info *
404 1.90.16.24 matt cpu_info_alloc(struct pmap_tlb_info *, u_int);
405 1.90.16.24 matt void cpu_attach_common(device_t, struct cpu_info *);
406 1.90.16.24 matt void cpu_startup_common(void);
407 1.90.16.24 matt void cpu_trampoline(struct cpu_info *ci);
408 1.90.16.24 matt
409 1.90.16.6 matt /* copy.S */
410 1.90.16.6 matt int8_t ufetch_int8(void *);
411 1.90.16.6 matt int16_t ufetch_int16(void *);
412 1.90.16.6 matt int32_t ufetch_int32(void *);
413 1.90.16.6 matt uint8_t ufetch_uint8(void *);
414 1.90.16.6 matt uint16_t ufetch_uint16(void *);
415 1.90.16.6 matt uint32_t ufetch_uint32(void *);
416 1.90.16.6 matt int8_t ufetch_int8_intrsafe(void *);
417 1.90.16.6 matt int16_t ufetch_int16_intrsafe(void *);
418 1.90.16.6 matt int32_t ufetch_int32_intrsafe(void *);
419 1.90.16.6 matt uint8_t ufetch_uint8_intrsafe(void *);
420 1.90.16.6 matt uint16_t ufetch_uint16_intrsafe(void *);
421 1.90.16.6 matt uint32_t ufetch_uint32_intrsafe(void *);
422 1.90.16.6 matt #ifdef _LP64
423 1.90.16.6 matt int64_t ufetch_int64(void *);
424 1.90.16.6 matt uint64_t ufetch_uint64(void *);
425 1.90.16.6 matt int64_t ufetch_int64_intrsafe(void *);
426 1.90.16.6 matt uint64_t ufetch_uint64_intrsafe(void *);
427 1.90.16.6 matt #endif
428 1.90.16.6 matt char ufetch_char(void *);
429 1.90.16.6 matt short ufetch_short(void *);
430 1.90.16.6 matt int ufetch_int(void *);
431 1.90.16.6 matt long ufetch_long(void *);
432 1.90.16.6 matt char ufetch_char_intrsafe(void *);
433 1.90.16.6 matt short ufetch_short_intrsafe(void *);
434 1.90.16.6 matt int ufetch_int_intrsafe(void *);
435 1.90.16.6 matt long ufetch_long_intrsafe(void *);
436 1.90.16.6 matt
437 1.90.16.6 matt u_char ufetch_uchar(void *);
438 1.90.16.6 matt u_short ufetch_ushort(void *);
439 1.90.16.6 matt u_int ufetch_uint(void *);
440 1.90.16.6 matt u_long ufetch_ulong(void *);
441 1.90.16.6 matt u_char ufetch_uchar_intrsafe(void *);
442 1.90.16.6 matt u_short ufetch_ushort_intrsafe(void *);
443 1.90.16.6 matt u_int ufetch_uint_intrsafe(void *);
444 1.90.16.6 matt u_long ufetch_ulong_intrsafe(void *);
445 1.90.16.6 matt void *ufetch_ptr(void *);
446 1.90.16.6 matt
447 1.90.16.6 matt int ustore_int8(void *, int8_t);
448 1.90.16.6 matt int ustore_int16(void *, int16_t);
449 1.90.16.6 matt int ustore_int32(void *, int32_t);
450 1.90.16.6 matt int ustore_uint8(void *, uint8_t);
451 1.90.16.7 matt int ustore_uint16(void *, uint16_t);
452 1.90.16.6 matt int ustore_uint32(void *, uint32_t);
453 1.90.16.6 matt int ustore_int8_intrsafe(void *, int8_t);
454 1.90.16.6 matt int ustore_int16_intrsafe(void *, int16_t);
455 1.90.16.6 matt int ustore_int32_intrsafe(void *, int32_t);
456 1.90.16.6 matt int ustore_uint8_intrsafe(void *, uint8_t);
457 1.90.16.6 matt int ustore_uint16_intrsafe(void *, uint16_t);
458 1.90.16.6 matt int ustore_uint32_intrsafe(void *, uint32_t);
459 1.90.16.6 matt #ifdef _LP64
460 1.90.16.6 matt int ustore_int64(void *, int64_t);
461 1.90.16.6 matt int ustore_uint64(void *, uint64_t);
462 1.90.16.6 matt int ustore_int64_intrsafe(void *, int64_t);
463 1.90.16.6 matt int ustore_uint64_intrsafe(void *, uint64_t);
464 1.90.16.6 matt #endif
465 1.90.16.6 matt int ustore_char(void *, char);
466 1.90.16.6 matt int ustore_char_intrsafe(void *, char);
467 1.90.16.6 matt int ustore_short(void *, short);
468 1.90.16.6 matt int ustore_short_intrsafe(void *, short);
469 1.90.16.6 matt int ustore_int(void *, int);
470 1.90.16.6 matt int ustore_int_intrsafe(void *, int);
471 1.90.16.6 matt int ustore_long(void *, long);
472 1.90.16.6 matt int ustore_long_intrsafe(void *, long);
473 1.90.16.6 matt int ustore_uchar(void *, u_char);
474 1.90.16.6 matt int ustore_uchar_intrsafe(void *, u_char);
475 1.90.16.6 matt int ustore_ushort(void *, u_short);
476 1.90.16.6 matt int ustore_ushort_intrsafe(void *, u_short);
477 1.90.16.6 matt int ustore_uint(void *, u_int);
478 1.90.16.6 matt int ustore_uint_intrsafe(void *, u_int);
479 1.90.16.6 matt int ustore_ulong(void *, u_long);
480 1.90.16.6 matt int ustore_ulong_intrsafe(void *, u_long);
481 1.90.16.6 matt int ustore_ptr(void *, void *);
482 1.90.16.6 matt int ustore_ptr_intrsafe(void *, void *);
483 1.90.16.6 matt
484 1.90.16.6 matt int ustore_uint32_isync(void *, uint32_t);
485 1.90.16.6 matt
486 1.28 castor /* trap.c */
487 1.58 simonb void netintr(void);
488 1.58 simonb int kdbpeek(vaddr_t);
489 1.23 thorpej
490 1.90.16.24 matt /* mips_fpu.c */
491 1.90.16.24 matt void fpu_init(void);
492 1.90.16.24 matt void fpudiscard_lwp(struct lwp *);
493 1.90.16.24 matt void fpuload_lwp(struct lwp *);
494 1.90.16.24 matt void fpusave_lwp(struct lwp *);
495 1.90.16.24 matt void fpusave_cpu(struct cpu_info *);
496 1.90.16.24 matt
497 1.28 castor /* mips_machdep.c */
498 1.90.16.9 matt struct mips_vmfreelist;
499 1.90.16.9 matt struct phys_ram_seg;
500 1.58 simonb void dumpsys(void);
501 1.58 simonb int savectx(struct user *);
502 1.90.16.13 matt void mips_vector_init(void);
503 1.58 simonb void mips_init_msgbuf(void);
504 1.90.16.9 matt void mips_init_lwp0_uarea(void);
505 1.90.16.9 matt void mips_page_physload(vaddr_t, vaddr_t,
506 1.90.16.9 matt const struct phys_ram_seg *, size_t,
507 1.90.16.9 matt const struct mips_vmfreelist *, size_t);
508 1.90.16.13 matt void cpu_identify(device_t);
509 1.90.16.13 matt #ifdef MULTIPROCESSOR
510 1.90.16.13 matt void cpu_boot_secondary_processors(void);
511 1.90.16.13 matt #endif
512 1.13 jonathan
513 1.61 simonb /* locore*.S */
514 1.58 simonb int badaddr(void *, size_t);
515 1.61 simonb int badaddr64(uint64_t, size_t);
516 1.25 jonathan
517 1.90.16.18 matt /* vm_machdep.c */
518 1.90.16.18 matt void cpu_uarea_remap(struct lwp *);
519 1.90.16.18 matt
520 1.33 simonb #endif /* ! _LOCORE */
521 1.28 castor #endif /* _KERNEL */
522 1.1 deraadt #endif /* _CPU_H_ */
523