locore.h revision 1.62 1 /* $NetBSD: locore.h,v 1.62 2002/06/01 13:45:45 simonb Exp $ */
2
3 /*
4 * Copyright 1996 The Board of Trustees of The Leland Stanford
5 * Junior University. All Rights Reserved.
6 *
7 * Permission to use, copy, modify, and distribute this
8 * software and its documentation for any purpose and without
9 * fee is hereby granted, provided that the above copyright
10 * notice appear in all copies. Stanford University
11 * makes no representations about the suitability of this
12 * software for any purpose. It is provided "as is" without
13 * express or implied warranty.
14 */
15
16 /*
17 * Jump table for MIPS cpu locore functions that are implemented
18 * differently on different generations, or instruction-level
19 * archtecture (ISA) level, the Mips family.
20 *
21 * We currently provide support for MIPS I and MIPS III.
22 */
23
24 #ifndef _MIPS_LOCORE_H
25 #define _MIPS_LOCORE_H
26
27 #ifndef _LKM
28 #include "opt_cputype.h"
29 #include "opt_mips_cache.h"
30 #endif
31
32 #include <mips/cpuregs.h>
33
34 struct tlb;
35
36 uint32_t mips_cp0_cause_read(void);
37 void mips_cp0_cause_write(uint32_t);
38 uint32_t mips_cp0_status_read(void);
39 void mips_cp0_status_write(uint32_t);
40
41 #ifdef MIPS1
42 void mips1_SetPID(int);
43 void mips1_TBIA(int);
44 void mips1_TBIAP(int);
45 void mips1_TBIS(vaddr_t);
46 int mips1_TLBUpdate(u_int, u_int);
47 void mips1_wbflush(void);
48 void mips1_proc_trampoline(void);
49 void mips1_cpu_switch_resume(void);
50
51 uint32_t tx3900_cp0_config_read(void);
52 #endif
53
54 #if defined(MIPS3) || defined(MIPS4)
55 void mips3_SetPID(int);
56 void mips3_TBIA(int);
57 void mips3_TBIAP(int);
58 void mips3_TBIS(vaddr_t);
59 int mips3_TLBUpdate(u_int, u_int);
60 void mips3_TLBRead(int, struct tlb *);
61 void mips3_wbflush(void);
62 void mips3_proc_trampoline(void);
63 void mips3_cpu_switch_resume(void);
64
65 #ifdef MIPS3_5900
66 void mips5900_SetPID(int);
67 void mips5900_TBIA(int);
68 void mips5900_TBIAP(int);
69 void mips5900_TBIS(vaddr_t);
70 int mips5900_TLBUpdate(u_int, u_int);
71 void mips5900_TLBRead(int, struct tlb *);
72 void mips5900_wbflush(void);
73 void mips5900_proc_trampoline(void);
74 void mips5900_cpu_switch_resume(void);
75 #endif
76 #endif
77
78 #ifdef MIPS32
79 void mips32_SetPID(int);
80 void mips32_TBIA(int);
81 void mips32_TBIAP(int);
82 void mips32_TBIS(vaddr_t);
83 int mips32_TLBUpdate(u_int, u_int);
84 void mips32_TLBRead(int, struct tlb *);
85 void mips32_wbflush(void);
86 void mips32_proc_trampoline(void);
87 void mips32_cpu_switch_resume(void);
88 #endif
89
90 #ifdef MIPS64
91 void mips64_SetPID(int);
92 void mips64_TBIA(int);
93 void mips64_TBIAP(int);
94 void mips64_TBIS(vaddr_t);
95 int mips64_TLBUpdate(u_int, u_int);
96 void mips64_TLBRead(int, struct tlb *);
97 void mips64_wbflush(void);
98 void mips64_proc_trampoline(void);
99 void mips64_cpu_switch_resume(void);
100 #endif
101
102 uint32_t mips3_cp0_compare_read(void);
103 void mips3_cp0_compare_write(uint32_t);
104
105 uint32_t mips3_cp0_config_read(void);
106 void mips3_cp0_config_write(uint32_t);
107 uint32_t mipsNN_cp0_config1_read(void);
108 void mipsNN_cp0_config1_write(uint32_t);
109
110 uint32_t mips3_cp0_count_read(void);
111 void mips3_cp0_count_write(uint32_t);
112
113 uint32_t mips3_cp0_wired_read(void);
114 void mips3_cp0_wired_write(uint32_t);
115
116 uint64_t mips3_ld(uint64_t *);
117 void mips3_sd(uint64_t *, uint64_t);
118
119 static inline uint32_t mips3_lw_a64(uint64_t addr)
120 __attribute__((__unused__));
121 static inline void mips3_sw_a64(uint64_t addr, uint32_t val)
122 __attribute__ ((__unused__));
123
124 static inline uint32_t
125 mips3_lw_a64(uint64_t addr)
126 {
127 uint32_t addrlo, addrhi;
128 uint32_t rv;
129 uint32_t sr;
130
131 sr = mips_cp0_status_read();
132 mips_cp0_status_write(sr | MIPS3_SR_KX);
133
134 addrlo = addr & 0xffffffff;
135 addrhi = addr >> 32;
136 __asm__ __volatile__ (" \n\
137 .set push \n\
138 .set mips3 \n\
139 .set noreorder \n\
140 .set noat \n\
141 dsll32 $3, %1, 0 \n\
142 dsll32 $1, %2, 0 \n\
143 dsrl32 $3, $3, 0 \n\
144 or $1, $1, $3 \n\
145 lw %0, 0($1) \n\
146 .set pop \n\
147 " : "=r"(rv) : "r"(addrlo), "r"(addrhi) : "$1", "$3" );
148
149 mips_cp0_status_write(sr);
150
151 return (rv);
152 }
153
154 static inline void
155 mips3_sw_a64(uint64_t addr, uint32_t val)
156 {
157 uint32_t addrlo, addrhi;
158 uint32_t sr;
159
160 sr = mips_cp0_status_read();
161 mips_cp0_status_write(sr | MIPS3_SR_KX);
162
163 addrlo = addr & 0xffffffff;
164 addrhi = addr >> 32;
165 __asm__ __volatile__ (" \n\
166 .set push \n\
167 .set mips3 \n\
168 .set noreorder \n\
169 .set noat \n\
170 dsll32 $3, %1, 0 \n\
171 dsll32 $1, %2, 0 \n\
172 dsrl32 $3, $3, 0 \n\
173 or $1, $1, $3 \n\
174 sw %0, 0($1) \n\
175 .set pop \n\
176 " : : "r"(val), "r"(addrlo), "r"(addrhi) : "$1", "$3" );
177
178 mips_cp0_status_write(sr);
179 }
180
181 /*
182 * A vector with an entry for each mips-ISA-level dependent
183 * locore function, and macros which jump through it.
184 *
185 * XXX the macro names are chosen to be compatible with the old
186 * XXX Sprite coding-convention names used in 4.4bsd/pmax.
187 */
188 typedef struct {
189 void (*setTLBpid)(int pid);
190 void (*TBIAP)(int);
191 void (*TBIS)(vaddr_t);
192 int (*tlbUpdate)(u_int highreg, u_int lowreg);
193 void (*wbflush)(void);
194 } mips_locore_jumpvec_t;
195
196 void mips_set_wbflush(void (*)(void));
197 void mips_wait_idle(void);
198
199 void stacktrace(void);
200 void logstacktrace(void);
201
202 /*
203 * The "active" locore-fuction vector, and
204 */
205 extern mips_locore_jumpvec_t mips_locore_jumpvec;
206 extern long *mips_locoresw[];
207
208 #if defined(MIPS1) && !defined(MIPS3) && !defined(MIPS32) && !defined(MIPS64)
209 #define MachSetPID mips1_SetPID
210 #define MIPS_TBIAP() mips1_TBIAP(mips_num_tlb_entries)
211 #define MIPS_TBIS mips1_TBIS
212 #define MachTLBUpdate mips1_TLBUpdate
213 #define wbflush() mips1_wbflush()
214 #define proc_trampoline mips1_proc_trampoline
215 #elif !defined(MIPS1) && defined(MIPS3) && !defined(MIPS32) && !defined(MIPS64) && !defined(MIPS3_5900)
216 #define MachSetPID mips3_SetPID
217 #define MIPS_TBIAP() mips3_TBIAP(mips_num_tlb_entries)
218 #define MIPS_TBIS mips3_TBIS
219 #define MachTLBUpdate mips3_TLBUpdate
220 #define proc_trampoline mips3_proc_trampoline
221 #define wbflush() mips3_wbflush()
222 #elif !defined(MIPS1) && !defined(MIPS3) && defined(MIPS32) && !defined(MIPS64)
223 #define MachSetPID mips32_SetPID
224 #define MIPS_TBIAP() mips32_TBIAP(mips_num_tlb_entries)
225 #define MIPS_TBIS mips32_TBIS
226 #define MachTLBUpdate mips32_TLBUpdate
227 #define proc_trampoline mips32_proc_trampoline
228 #define wbflush() mips32_wbflush()
229 #elif !defined(MIPS1) && !defined(MIPS3) && !defined(MIPS32) && defined(MIPS64)
230 /* all common with mips3 */
231 #define MachSetPID mips64_SetPID
232 #define MIPS_TBIAP() mips64_TBIAP(mips_num_tlb_entries)
233 #define MIPS_TBIS mips64_TBIS
234 #define MachTLBUpdate mips64_TLBUpdate
235 #define proc_trampoline mips64_proc_trampoline
236 #define wbflush() mips64_wbflush()
237 #elif !defined(MIPS1) && defined(MIPS3) && !defined(MIPS32) && !defined(MIPS64) && defined(MIPS3_5900)
238 #define MachSetPID mips5900_SetPID
239 #define MIPS_TBIAP() mips5900_TBIAP(mips_num_tlb_entries)
240 #define MIPS_TBIS mips5900_TBIS
241 #define MachTLBUpdate mips5900_TLBUpdate
242 #define proc_trampoline mips5900_proc_trampoline
243 #define wbflush() mips5900_wbflush()
244 #else
245 #define MachSetPID (*(mips_locore_jumpvec.setTLBpid))
246 #define MIPS_TBIAP() (*(mips_locore_jumpvec.TBIAP))(mips_num_tlb_entries)
247 #define MIPS_TBIS (*(mips_locore_jumpvec.TBIS))
248 #define MachTLBUpdate (*(mips_locore_jumpvec.tlbUpdate))
249 #define wbflush() (*(mips_locore_jumpvec.wbflush))()
250 #define proc_trampoline (mips_locoresw[1])
251 #endif
252
253 #define CPU_IDLE (mips_locoresw[2])
254
255 /* cpu_switch_resume is called inside locore.S */
256
257 /*
258 * CPU identification, from PRID register.
259 */
260 typedef int mips_prid_t;
261
262 #define MIPS_PRID_REV(x) (((x) >> 0) & 0x00ff)
263 #define MIPS_PRID_IMPL(x) (((x) >> 8) & 0x00ff)
264
265 /* pre-MIPS32/64 */
266 #define MIPS_PRID_RSVD(x) (((x) >> 16) & 0xffff)
267 #define MIPS_PRID_REV_MIN(x) ((MIPS_PRID_REV(x) >> 0) & 0x0f)
268 #define MIPS_PRID_REV_MAJ(x) ((MIPS_PRID_REV(x) >> 4) & 0x0f)
269
270 /* MIPS32/64 */
271 #define MIPS_PRID_CID(x) (((x) >> 16) & 0x00ff) /* Company ID */
272 #define MIPS_PRID_CID_PREHISTORIC 0x00 /* Not MIPS32/64 */
273 #define MIPS_PRID_CID_MTI 0x01 /* MIPS Technologies, Inc. */
274 #define MIPS_PRID_CID_BROADCOM 0x02 /* Broadcom */
275 #define MIPS_PRID_CID_ALCHEMY 0x03 /* Alchemy Semiconductor */
276 #define MIPS_PRID_CID_SIBYTE 0x04 /* SiByte */
277 #define MIPS_PRID_CID_SANDCRAFT 0x05 /* SandCraft */
278 #define MIPS_PRID_COPTS(x) (((x) >> 24) & 0x00ff) /* Company Options */
279
280 #ifdef _KERNEL
281 /*
282 * Global variables used to communicate CPU type, and parameters
283 * such as cache size, from locore to higher-level code (e.g., pmap).
284 */
285
286 extern mips_prid_t cpu_id;
287 extern mips_prid_t fpu_id;
288 extern int mips_num_tlb_entries;
289
290 void mips_pagecopy(caddr_t dst, caddr_t src);
291 void mips_pagezero(caddr_t dst);
292
293 #ifdef __HAVE_MIPS_MACHDEP_CACHE_CONFIG
294 void mips_machdep_cache_config(void);
295 #endif
296
297 /*
298 * trapframe argument passed to trap()
299 */
300 struct trapframe {
301 mips_reg_t tf_regs[17];
302 mips_reg_t tf_ra;
303 mips_reg_t tf_sr;
304 mips_reg_t tf_mullo;
305 mips_reg_t tf_mulhi;
306 mips_reg_t tf_epc; /* may be changed by trap() call */
307 u_int32_t tf_ppl; /* previous priority level */
308 int32_t tf_pad; /* for 8 byte aligned */
309 };
310
311 /*
312 * Stack frame for kernel traps. four args passed in registers.
313 * A trapframe is pointed to by the 5th arg, and a dummy sixth argument
314 * is used to avoid alignment problems
315 */
316
317 struct kernframe {
318 register_t cf_args[4 + 1];
319 register_t cf_pad; /* (for 8 word alignment) */
320 register_t cf_sp;
321 register_t cf_ra;
322 struct trapframe cf_frame;
323 };
324 #endif /* _KERNEL */
325 #endif /* _MIPS_LOCORE_H */
326