cpu.h revision 1.16 1 /* $NetBSD: cpu.h,v 1.16 2003/08/07 16:28:50 agc Exp $ */
2
3 /*
4 * Copyright (c) 1982, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * the Systems Programming Group of the University of Utah Computer
9 * Science Department.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * from: Utah $Hdr: cpu.h 1.16 91/03/25$
36 *
37 * @(#)cpu.h 8.4 (Berkeley) 1/5/94
38 */
39 /*
40 * Copyright (c) 1988 University of Utah.
41 *
42 * This code is derived from software contributed to Berkeley by
43 * the Systems Programming Group of the University of Utah Computer
44 * Science Department.
45 *
46 * Redistribution and use in source and binary forms, with or without
47 * modification, are permitted provided that the following conditions
48 * are met:
49 * 1. Redistributions of source code must retain the above copyright
50 * notice, this list of conditions and the following disclaimer.
51 * 2. Redistributions in binary form must reproduce the above copyright
52 * notice, this list of conditions and the following disclaimer in the
53 * documentation and/or other materials provided with the distribution.
54 * 3. All advertising materials mentioning features or use of this software
55 * must display the following acknowledgement:
56 * This product includes software developed by the University of
57 * California, Berkeley and its contributors.
58 * 4. Neither the name of the University nor the names of its contributors
59 * may be used to endorse or promote products derived from this software
60 * without specific prior written permission.
61 *
62 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
63 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
64 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
65 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
66 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
67 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
68 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
69 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
70 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
71 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
72 * SUCH DAMAGE.
73 *
74 * from: Utah $Hdr: cpu.h 1.16 91/03/25$
75 *
76 * @(#)cpu.h 8.4 (Berkeley) 1/5/94
77 */
78
79 #ifndef _NEWS68K_CPU_H_
80 #define _NEWS68K_CPU_H_
81
82 /*
83 * Exported definitions unique to news68k cpu support.
84 */
85
86 #if defined(_KERNEL_OPT)
87 #include "opt_lockdebug.h"
88 #endif
89
90 /*
91 * Get common m68k CPU definitions.
92 */
93 #include <m68k/cpu.h>
94
95 /*
96 * XXX news1700 L2 cache would be corrupted with DC_BE and IC_BE...
97 * XXX Should these be defined in machine/cpu.h?
98 */
99 #undef CACHE_ON
100 #undef CACHE_CLR
101 #undef IC_CLEAR
102 #undef DC_CLEAR
103 #define CACHE_ON (DC_WA|DC_CLR|DC_ENABLE|IC_CLR|IC_ENABLE)
104 #define CACHE_CLR CACHE_ON
105 #define IC_CLEAR (DC_WA|DC_ENABLE|IC_CLR|IC_ENABLE)
106 #define DC_CLEAR (DC_WA|DC_CLR|DC_ENABLE|IC_ENABLE)
107
108 #define DCIC_CLR (DC_CLR|IC_CLR)
109 #define CACHE_BE (DC_BE|IC_BE)
110
111 /*
112 * Get interrupt glue.
113 */
114 #include <machine/intr.h>
115
116 #include <sys/sched.h>
117 struct cpu_info {
118 struct schedstate_percpu ci_schedstate; /* scheduler state */
119 #if defined(DIAGNOSTIC) || defined(LOCKDEBUG)
120 u_long ci_spin_locks; /* # of spin locks held */
121 u_long ci_simple_locks; /* # of simple locks held */
122 #endif
123 };
124
125 #ifdef _KERNEL
126 extern struct cpu_info cpu_info_store;
127
128 #define curcpu() (&cpu_info_store)
129
130 /*
131 * definitions of cpu-dependent requirements
132 * referenced in generic code
133 */
134 #define cpu_swapin(p) /* nothing */
135 #define cpu_wait(p) /* nothing */
136 #define cpu_swapout(p) /* nothing */
137 #define cpu_number() 0
138
139 void cpu_proc_fork(struct proc *, struct proc *);
140
141 /*
142 * Arguments to hardclock and gatherstats encapsulate the previous
143 * machine state in an opaque clockframe. One the hp300, we use
144 * what the hardware pushes on an interrupt (frame format 0).
145 */
146 struct clockframe {
147 u_short sr; /* sr at time of interrupt */
148 u_long pc; /* pc at time of interrupt */
149 u_short vo; /* vector offset (4-word frame) */
150 };
151
152 #define CLKF_USERMODE(framep) (((framep)->sr & PSL_S) == 0)
153 #define CLKF_BASEPRI(framep) (((framep)->sr & PSL_IPL) == 0)
154 #define CLKF_PC(framep) ((framep)->pc)
155 #if 0
156 /* We would like to do it this way... */
157 #define CLKF_INTR(framep) (((framep)->sr & PSL_M) == 0)
158 #else
159 /* but until we start using PSL_M, we have to do this instead */
160 #define CLKF_INTR(framep) (0) /* XXX */
161 #endif
162
163
164 /*
165 * Preempt the current process if in interrupt from user mode,
166 * or after the current trap/syscall if in system mode.
167 */
168 extern int want_resched; /* resched() was called */
169 #define need_resched(ci) do { want_resched++; aston(); } while(0)
170
171 /*
172 * Give a profiling tick to the current process when the user profiling
173 * buffer pages are invalid. On the hp300, request an ast to send us
174 * through trap, marking the proc as needing a profiling tick.
175 */
176 #define need_proftick(p) do { (p)->p_flag |= P_OWEUPC; aston(); } while(0)
177
178 /*
179 * Notify the current process (p) that it has a signal pending,
180 * process as soon as possible.
181 */
182 #define signotify(p) aston()
183
184 extern int astpending; /* need to trap before returning to user mode */
185 extern volatile u_char *ctrl_ast;
186 #define aston() do { astpending++; *ctrl_ast = 0xff; } while(0)
187
188 #endif /* _KERNEL */
189
190 /*
191 * CTL_MACHDEP definitions.
192 */
193 #define CPU_CONSDEV 1 /* dev_t: console terminal device */
194 #define CPU_MAXID 2 /* number of valid machdep ids */
195
196 #define CTL_MACHDEP_NAMES { \
197 { 0, 0 }, \
198 { "console_device", CTLTYPE_STRUCT }, \
199 }
200
201 #ifdef _KERNEL
202
203 #if defined(news1700) || defined(news1200)
204 #ifndef M68030
205 #define M68030
206 #endif
207 #define M68K_MMU_MOTOROLA
208 #endif
209
210 #if defined(news1700)
211 #define CACHE_HAVE_PAC
212 #endif
213
214 #endif
215
216 #ifdef _KERNEL
217 extern int systype;
218 #define NEWS1700 0
219 #define NEWS1200 1
220
221 extern int cpuspeed;
222 extern char *intiobase, *intiolimit, *extiobase;
223 extern u_int intiobase_phys, intiotop_phys;
224 extern u_int extiobase_phys, extiotop_phys;
225 extern u_int intrcnt[];
226
227 extern void (*vectab[])(void);
228
229 struct frame;
230 struct fpframe;
231 struct pcb;
232
233 /* locore.s functions */
234 void m68881_save(struct fpframe *);
235 void m68881_restore(struct fpframe *);
236
237 int suline(caddr_t, caddr_t);
238 void savectx(struct pcb *);
239 void switch_exit(struct lwp *);
240 void switch_lwp_exit(struct lwp *);
241 void proc_trampoline(void);
242 void loadustp(int);
243 void badtrap(void);
244 void intrhand_vectored(void);
245 int getsr(void);
246
247
248 void doboot(int)
249 __attribute__((__noreturn__));
250 void nmihand(struct frame *);
251 void ecacheon(void);
252 void ecacheoff(void);
253
254 /* machdep.c functions */
255 int badaddr(caddr_t, int);
256 int badbaddr(caddr_t);
257
258 /* sys_machdep.c functions */
259 int cachectl1(unsigned long, vaddr_t, size_t, struct proc *);
260
261 /* vm_machdep.c functions */
262 void physaccess(caddr_t, caddr_t, int, int);
263 void physunaccess(caddr_t, int);
264 int kvtop(caddr_t);
265
266 #endif
267
268 /* physical memory sections */
269 #define ROMBASE (0xe0000000)
270
271 #define INTIOBASE1700 (0xe0c00000)
272 #define INTIOTOP1700 (0xe1d00000) /* XXX */
273 #define EXTIOBASE1700 (0xf0f00000)
274 #define EXTIOTOP1700 (0xf1000000) /* XXX */
275
276 #define INTIOBASE1200 (0xe1000000)
277 #define INTIOTOP1200 (0xe1d00000) /* XXX */
278 #define EXTIOBASE1200 (0xe4000000)
279 #define EXTIOTOP1200 (0xe4020000) /* XXX */
280
281 #define MAXADDR (0xfffff000)
282
283 /*
284 * Internal IO space:
285 *
286 * Internal IO space is mapped in the kernel from ``intiobase'' to
287 * ``intiolimit'' (defined in locore.s). Since it is always mapped,
288 * conversion between physical and kernel virtual addresses is easy.
289 */
290 #define ISIIOVA(va) \
291 ((char *)(va) >= intiobase && (char *)(va) < intiolimit)
292 #define IIOV(pa) (((u_int)(pa) - intiobase_phys) + (u_int)intiobase)
293 #define ISIIOPA(pa) \
294 ((u_int)(pa) >= intiobase_phys && (u_int)(pa) < intiotop_phys)
295 #define IIOP(va) (((u_int)(va) - (u_int)intiobase) + intiobase_phys)
296 #define IIOPOFF(pa) ((u_int)(pa) - intiobase_phys)
297
298 /* XXX EIO space mapping should be modified like hp300 XXX */
299 #define EIOSIZE (extiotop_phys - extiobase_phys)
300 #define ISEIOVA(va) \
301 ((char *)(va) >= extiobase && (char *)(va) < (char *)EIOSIZE)
302 #define EIOV(pa) (((u_int)(pa) - extiobase_phys) + (u_int)extiobase)
303
304 #if defined(CACHE_HAVE_PAC) || defined(CACHE_HAVE_VAC)
305 #define M68K_CACHEOPS_MACHDEP
306 #endif
307
308 #ifdef CACHE_HAVE_PAC
309 #define M68K_CACHEOPS_MACHDEP_PCIA
310 #endif
311
312 #ifdef CACHE_HAVE_VAC
313 #define M68K_CACHEOPS_MACHDEP_DCIA
314 #define M68K_CACHEOPS_MACHDEP_DCIS
315 #define M68K_CACHEOPS_MACHDEP_DCIU
316 #endif
317
318 #endif /* !_NEWS68K_CPU_H_ */
319