Deleted Added
full compact
cpu.h (178172) cpu.h (202031)
1/* $OpenBSD: cpu.h,v 1.4 1998/09/15 10:50:12 pefo Exp $ */
2
3/*-
4 * Copyright (c) 1992, 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 * Ralph Campbell and Rick Macklem.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * Copyright (C) 1989 Digital Equipment Corporation.
35 * Permission to use, copy, modify, and distribute this software and
36 * its documentation for any purpose and without fee is hereby granted,
37 * provided that the above copyright notice appears in all copies.
38 * Digital Equipment Corporation makes no representations about the
39 * suitability of this software for any purpose. It is provided "as is"
40 * without express or implied warranty.
41 *
42 * from: @(#)cpu.h 8.4 (Berkeley) 1/4/94
43 * JNPR: cpu.h,v 1.9.2.2 2007/09/10 08:23:46 girish
1/* $OpenBSD: cpu.h,v 1.4 1998/09/15 10:50:12 pefo Exp $ */
2
3/*-
4 * Copyright (c) 1992, 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 * Ralph Campbell and Rick Macklem.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * Copyright (C) 1989 Digital Equipment Corporation.
35 * Permission to use, copy, modify, and distribute this software and
36 * its documentation for any purpose and without fee is hereby granted,
37 * provided that the above copyright notice appears in all copies.
38 * Digital Equipment Corporation makes no representations about the
39 * suitability of this software for any purpose. It is provided "as is"
40 * without express or implied warranty.
41 *
42 * from: @(#)cpu.h 8.4 (Berkeley) 1/4/94
43 * JNPR: cpu.h,v 1.9.2.2 2007/09/10 08:23:46 girish
44 * $FreeBSD: head/sys/mips/include/cpu.h 178172 2008-04-13 07:27:37Z imp $
44 * $FreeBSD: head/sys/mips/include/cpu.h 202031 2010-01-10 19:50:24Z imp $
45 */
46
47#ifndef _MACHINE_CPU_H_
48#define _MACHINE_CPU_H_
49
50#include <machine/psl.h>
51#include <machine/endian.h>
52
53#define MIPS_CACHED_MEMORY_ADDR 0x80000000
54#define MIPS_UNCACHED_MEMORY_ADDR 0xa0000000
55#define MIPS_MAX_MEM_ADDR 0xbe000000
56#define MIPS_RESERVED_ADDR 0xbfc80000
57
58#define MIPS_KSEG0_LARGEST_PHYS 0x20000000
45 */
46
47#ifndef _MACHINE_CPU_H_
48#define _MACHINE_CPU_H_
49
50#include <machine/psl.h>
51#include <machine/endian.h>
52
53#define MIPS_CACHED_MEMORY_ADDR 0x80000000
54#define MIPS_UNCACHED_MEMORY_ADDR 0xa0000000
55#define MIPS_MAX_MEM_ADDR 0xbe000000
56#define MIPS_RESERVED_ADDR 0xbfc80000
57
58#define MIPS_KSEG0_LARGEST_PHYS 0x20000000
59#define MIPS_CACHED_TO_PHYS(x) ((unsigned)(x) & 0x1fffffff)
60#define MIPS_PHYS_TO_CACHED(x) ((unsigned)(x) | MIPS_CACHED_MEMORY_ADDR)
61#define MIPS_UNCACHED_TO_PHYS(x) ((unsigned)(x) & 0x1fffffff)
62#define MIPS_PHYS_TO_UNCACHED(x) ((unsigned)(x) | MIPS_UNCACHED_MEMORY_ADDR)
59#define MIPS_CACHED_TO_PHYS(x) ((uintptr_t)(x) & 0x1fffffff)
60#define MIPS_PHYS_TO_CACHED(x) ((uintptr_t)(x) | MIPS_CACHED_MEMORY_ADDR)
61#define MIPS_UNCACHED_TO_PHYS(x) ((uintptr_t)(x) & 0x1fffffff)
62#define MIPS_PHYS_TO_UNCACHED(x) ((uintptr_t)(x) | MIPS_UNCACHED_MEMORY_ADDR)
63
64#define MIPS_PHYS_MASK (0x1fffffff)
65#define MIPS_PA_2_K1VA(x) (MIPS_KSEG1_START | ((x) & MIPS_PHYS_MASK))
66
63
64#define MIPS_PHYS_MASK (0x1fffffff)
65#define MIPS_PA_2_K1VA(x) (MIPS_KSEG1_START | ((x) & MIPS_PHYS_MASK))
66
67#define MIPS_VA_TO_CINDEX(x) ((unsigned)(x) & 0xffffff | MIPS_CACHED_MEMORY_ADDR)
67#define MIPS_VA_TO_CINDEX(x) ((uintptr_t)(x) & 0xffffff | MIPS_CACHED_MEMORY_ADDR)
68#define MIPS_CACHED_TO_UNCACHED(x) (MIPS_PHYS_TO_UNCACHED(MIPS_CACHED_TO_PHYS(x)))
69
68#define MIPS_CACHED_TO_UNCACHED(x) (MIPS_PHYS_TO_UNCACHED(MIPS_CACHED_TO_PHYS(x)))
69
70#define MIPS_PHYS_TO_KSEG0(x) ((unsigned)(x) | MIPS_KSEG0_START)
71#define MIPS_PHYS_TO_KSEG1(x) ((unsigned)(x) | MIPS_KSEG1_START)
72#define MIPS_KSEG0_TO_PHYS(x) ((unsigned)(x) & MIPS_PHYS_MASK)
73#define MIPS_KSEG1_TO_PHYS(x) ((unsigned)(x) & MIPS_PHYS_MASK)
70#define MIPS_PHYS_TO_KSEG0(x) ((uintptr_t)(x) | MIPS_KSEG0_START)
71#define MIPS_PHYS_TO_KSEG1(x) ((uintptr_t)(x) | MIPS_KSEG1_START)
72#define MIPS_KSEG0_TO_PHYS(x) ((uintptr_t)(x) & MIPS_PHYS_MASK)
73#define MIPS_KSEG1_TO_PHYS(x) ((uintptr_t)(x) & MIPS_PHYS_MASK)
74
74
75#define MIPS_IS_KSEG0_ADDR(x) \
76 (((vm_offset_t)(x) >= MIPS_KSEG0_START) && \
77 ((vm_offset_t)(x) <= MIPS_KSEG0_END))
78#define MIPS_IS_KSEG1_ADDR(x) \
79 (((vm_offset_t)(x) >= MIPS_KSEG1_START) && \
80 ((vm_offset_t)(x) <= MIPS_KSEG1_END))
81#define MIPS_IS_VALID_PTR(x) (MIPS_IS_KSEG0_ADDR(x) || \
82 MIPS_IS_KSEG1_ADDR(x))
83
75/*
76 * Status register.
77 */
78#define SR_COP_USABILITY 0xf0000000
79#define SR_COP_0_BIT 0x10000000
80#define SR_COP_1_BIT 0x20000000
81#define SR_COP_2_BIT 0x40000000
82#define SR_RP 0x08000000
83#define SR_FR_32 0x04000000
84#define SR_RE 0x02000000
85#define SR_PX 0x00800000
86#define SR_BOOT_EXC_VEC 0x00400000
87#define SR_TLB_SHUTDOWN 0x00200000
88#define SR_SOFT_RESET 0x00100000
89#define SR_DIAG_CH 0x00040000
90#define SR_DIAG_CE 0x00020000
91#define SR_DIAG_DE 0x00010000
92#define SR_KX 0x00000080
93#define SR_SX 0x00000040
94#define SR_UX 0x00000020
95#define SR_KSU_MASK 0x00000018
96#define SR_KSU_USER 0x00000010
97#define SR_KSU_SUPER 0x00000008
98#define SR_KSU_KERNEL 0x00000000
99#define SR_ERL 0x00000004
100#define SR_EXL 0x00000002
101#define SR_INT_ENAB 0x00000001
102
103#define SR_INT_MASK 0x0000ff00
104#define SOFT_INT_MASK_0 0x00000100
105#define SOFT_INT_MASK_1 0x00000200
106#define SR_INT_MASK_0 0x00000400
107#define SR_INT_MASK_1 0x00000800
108#define SR_INT_MASK_2 0x00001000
109#define SR_INT_MASK_3 0x00002000
110#define SR_INT_MASK_4 0x00004000
111#define SR_INT_MASK_5 0x00008000
112#define ALL_INT_MASK SR_INT_MASK
113#define SOFT_INT_MASK (SOFT_INT_MASK_0 | SOFT_INT_MASK_1)
114#define HW_INT_MASK (ALL_INT_MASK & ~SOFT_INT_MASK)
115
116
117/*
118 * The bits in the cause register.
119 *
120 * CR_BR_DELAY Exception happened in branch delay slot.
121 * CR_COP_ERR Coprocessor error.
122 * CR_IP Interrupt pending bits defined below.
123 * CR_EXC_CODE The exception type (see exception codes below).
124 */
125#define CR_BR_DELAY 0x80000000
126#define CR_COP_ERR 0x30000000
127#define CR_EXC_CODE 0x0000007c
128#define CR_EXC_CODE_SHIFT 2
129#define CR_IPEND 0x0000ff00
130
131/*
132 * Cause Register Format:
133 *
134 * 31 30 29 28 27 26 25 24 23 8 7 6 2 1 0
135 * ----------------------------------------------------------------------
136 * | BD | 0| CE | 0| W2| W1| IV| IP15 - IP0 | 0| Exc Code | 0|
137 * |______________________________________________________________________
138 */
139
140#define CR_INT_SOFT0 0x00000100
141#define CR_INT_SOFT1 0x00000200
142#define CR_INT_0 0x00000400
143#define CR_INT_1 0x00000800
144#define CR_INT_2 0x00001000
145#define CR_INT_3 0x00002000
146#define CR_INT_4 0x00004000
147#define CR_INT_5 0x00008000
148
149#define CR_INT_UART CR_INT_1
150#define CR_INT_IPI CR_INT_2
151#define CR_INT_CLOCK CR_INT_5
152
153/*
154 * The bits in the CONFIG register
155 */
156#define CFG_K0_UNCACHED 2
84/*
85 * Status register.
86 */
87#define SR_COP_USABILITY 0xf0000000
88#define SR_COP_0_BIT 0x10000000
89#define SR_COP_1_BIT 0x20000000
90#define SR_COP_2_BIT 0x40000000
91#define SR_RP 0x08000000
92#define SR_FR_32 0x04000000
93#define SR_RE 0x02000000
94#define SR_PX 0x00800000
95#define SR_BOOT_EXC_VEC 0x00400000
96#define SR_TLB_SHUTDOWN 0x00200000
97#define SR_SOFT_RESET 0x00100000
98#define SR_DIAG_CH 0x00040000
99#define SR_DIAG_CE 0x00020000
100#define SR_DIAG_DE 0x00010000
101#define SR_KX 0x00000080
102#define SR_SX 0x00000040
103#define SR_UX 0x00000020
104#define SR_KSU_MASK 0x00000018
105#define SR_KSU_USER 0x00000010
106#define SR_KSU_SUPER 0x00000008
107#define SR_KSU_KERNEL 0x00000000
108#define SR_ERL 0x00000004
109#define SR_EXL 0x00000002
110#define SR_INT_ENAB 0x00000001
111
112#define SR_INT_MASK 0x0000ff00
113#define SOFT_INT_MASK_0 0x00000100
114#define SOFT_INT_MASK_1 0x00000200
115#define SR_INT_MASK_0 0x00000400
116#define SR_INT_MASK_1 0x00000800
117#define SR_INT_MASK_2 0x00001000
118#define SR_INT_MASK_3 0x00002000
119#define SR_INT_MASK_4 0x00004000
120#define SR_INT_MASK_5 0x00008000
121#define ALL_INT_MASK SR_INT_MASK
122#define SOFT_INT_MASK (SOFT_INT_MASK_0 | SOFT_INT_MASK_1)
123#define HW_INT_MASK (ALL_INT_MASK & ~SOFT_INT_MASK)
124
125
126/*
127 * The bits in the cause register.
128 *
129 * CR_BR_DELAY Exception happened in branch delay slot.
130 * CR_COP_ERR Coprocessor error.
131 * CR_IP Interrupt pending bits defined below.
132 * CR_EXC_CODE The exception type (see exception codes below).
133 */
134#define CR_BR_DELAY 0x80000000
135#define CR_COP_ERR 0x30000000
136#define CR_EXC_CODE 0x0000007c
137#define CR_EXC_CODE_SHIFT 2
138#define CR_IPEND 0x0000ff00
139
140/*
141 * Cause Register Format:
142 *
143 * 31 30 29 28 27 26 25 24 23 8 7 6 2 1 0
144 * ----------------------------------------------------------------------
145 * | BD | 0| CE | 0| W2| W1| IV| IP15 - IP0 | 0| Exc Code | 0|
146 * |______________________________________________________________________
147 */
148
149#define CR_INT_SOFT0 0x00000100
150#define CR_INT_SOFT1 0x00000200
151#define CR_INT_0 0x00000400
152#define CR_INT_1 0x00000800
153#define CR_INT_2 0x00001000
154#define CR_INT_3 0x00002000
155#define CR_INT_4 0x00004000
156#define CR_INT_5 0x00008000
157
158#define CR_INT_UART CR_INT_1
159#define CR_INT_IPI CR_INT_2
160#define CR_INT_CLOCK CR_INT_5
161
162/*
163 * The bits in the CONFIG register
164 */
165#define CFG_K0_UNCACHED 2
166#if defined(CPU_SB1)
167#define CFG_K0_COHERENT 5 /* cacheable coherent */
168#else
157#define CFG_K0_CACHED 3
169#define CFG_K0_CACHED 3
170#endif
158
159/*
160 * The bits in the context register.
161 */
162#define CNTXT_PTE_BASE 0xff800000
163#define CNTXT_BAD_VPN2 0x007ffff0
164
165/*
166 * Location of exception vectors.
167 */
168#define RESET_EXC_VEC 0xbfc00000
169#define TLB_MISS_EXC_VEC 0x80000000
170#define XTLB_MISS_EXC_VEC 0x80000080
171#define CACHE_ERR_EXC_VEC 0x80000100
172#define GEN_EXC_VEC 0x80000180
173
174/*
175 * Coprocessor 0 registers:
176 */
177#define COP_0_TLB_INDEX $0
178#define COP_0_TLB_RANDOM $1
179#define COP_0_TLB_LO0 $2
180#define COP_0_TLB_LO1 $3
181#define COP_0_TLB_CONTEXT $4
182#define COP_0_TLB_PG_MASK $5
183#define COP_0_TLB_WIRED $6
184#define COP_0_INFO $7
185#define COP_0_BAD_VADDR $8
186#define COP_0_COUNT $9
187#define COP_0_TLB_HI $10
188#define COP_0_COMPARE $11
189#define COP_0_STATUS_REG $12
190#define COP_0_CAUSE_REG $13
191#define COP_0_EXC_PC $14
192#define COP_0_PRID $15
193#define COP_0_CONFIG $16
194#define COP_0_LLADDR $17
195#define COP_0_WATCH_LO $18
196#define COP_0_WATCH_HI $19
197#define COP_0_TLB_XCONTEXT $20
198#define COP_0_ECC $26
199#define COP_0_CACHE_ERR $27
200#define COP_0_TAG_LO $28
201#define COP_0_TAG_HI $29
202#define COP_0_ERROR_PC $30
203
204/*
205 * Coprocessor 0 Set 1
206 */
207#define C0P_1_IPLLO $18
208#define C0P_1_IPLHI $19
209#define C0P_1_INTCTL $20
210#define C0P_1_DERRADDR0 $26
211#define C0P_1_DERRADDR1 $27
212
213/*
214 * Values for the code field in a break instruction.
215 */
216#define BREAK_INSTR 0x0000000d
217#define BREAK_VAL_MASK 0x03ffffc0
218#define BREAK_VAL_SHIFT 16
219#define BREAK_KDB_VAL 512
220#define BREAK_SSTEP_VAL 513
221#define BREAK_BRKPT_VAL 514
222#define BREAK_SOVER_VAL 515
223#define BREAK_DDB_VAL 516
224#define BREAK_KDB (BREAK_INSTR | (BREAK_KDB_VAL << BREAK_VAL_SHIFT))
225#define BREAK_SSTEP (BREAK_INSTR | (BREAK_SSTEP_VAL << BREAK_VAL_SHIFT))
226#define BREAK_BRKPT (BREAK_INSTR | (BREAK_BRKPT_VAL << BREAK_VAL_SHIFT))
227#define BREAK_SOVER (BREAK_INSTR | (BREAK_SOVER_VAL << BREAK_VAL_SHIFT))
228#define BREAK_DDB (BREAK_INSTR | (BREAK_DDB_VAL << BREAK_VAL_SHIFT))
229
230/*
231 * Mininum and maximum cache sizes.
232 */
233#define MIN_CACHE_SIZE (16 * 1024)
234#define MAX_CACHE_SIZE (256 * 1024)
235
236/*
237 * The floating point version and status registers.
238 */
239#define FPC_ID $0
240#define FPC_CSR $31
241
242/*
243 * The floating point coprocessor status register bits.
244 */
245#define FPC_ROUNDING_BITS 0x00000003
246#define FPC_ROUND_RN 0x00000000
247#define FPC_ROUND_RZ 0x00000001
248#define FPC_ROUND_RP 0x00000002
249#define FPC_ROUND_RM 0x00000003
250#define FPC_STICKY_BITS 0x0000007c
251#define FPC_STICKY_INEXACT 0x00000004
252#define FPC_STICKY_UNDERFLOW 0x00000008
253#define FPC_STICKY_OVERFLOW 0x00000010
254#define FPC_STICKY_DIV0 0x00000020
255#define FPC_STICKY_INVALID 0x00000040
256#define FPC_ENABLE_BITS 0x00000f80
257#define FPC_ENABLE_INEXACT 0x00000080
258#define FPC_ENABLE_UNDERFLOW 0x00000100
259#define FPC_ENABLE_OVERFLOW 0x00000200
260#define FPC_ENABLE_DIV0 0x00000400
261#define FPC_ENABLE_INVALID 0x00000800
262#define FPC_EXCEPTION_BITS 0x0003f000
263#define FPC_EXCEPTION_INEXACT 0x00001000
264#define FPC_EXCEPTION_UNDERFLOW 0x00002000
265#define FPC_EXCEPTION_OVERFLOW 0x00004000
266#define FPC_EXCEPTION_DIV0 0x00008000
267#define FPC_EXCEPTION_INVALID 0x00010000
268#define FPC_EXCEPTION_UNIMPL 0x00020000
269#define FPC_COND_BIT 0x00800000
270#define FPC_FLUSH_BIT 0x01000000
271#define FPC_MBZ_BITS 0xfe7c0000
272
273/*
274 * Constants to determine if have a floating point instruction.
275 */
276#define OPCODE_SHIFT 26
277#define OPCODE_C1 0x11
278
279/*
280 * The low part of the TLB entry.
281 */
282#define VMTLB_PF_NUM 0x3fffffc0
283#define VMTLB_ATTR_MASK 0x00000038
284#define VMTLB_MOD_BIT 0x00000004
285#define VMTLB_VALID_BIT 0x00000002
286#define VMTLB_GLOBAL_BIT 0x00000001
287
288#define VMTLB_PHYS_PAGE_SHIFT 6
289
290/*
291 * The high part of the TLB entry.
292 */
293#define VMTLB_VIRT_PAGE_NUM 0xffffe000
294#define VMTLB_PID 0x000000ff
295#define VMTLB_PID_R9K 0x00000fff
296#define VMTLB_PID_SHIFT 0
297#define VMTLB_VIRT_PAGE_SHIFT 12
298#define VMTLB_VIRT_PAGE_SHIFT_R9K 13
299
300/*
301 * The first TLB entry that write random hits.
302 */
303#define VMWIRED_ENTRIES 1
304
305/*
306 * The number of process id entries.
307 */
308#define VMNUM_PIDS 256
309
310/*
311 * TLB probe return codes.
312 */
313#define VMTLB_NOT_FOUND 0
314#define VMTLB_FOUND 1
315#define VMTLB_FOUND_WITH_PATCH 2
316#define VMTLB_PROBE_ERROR 3
317
318/*
319 * Exported definitions unique to mips cpu support.
320 */
321
322/*
323 * definitions of cpu-dependent requirements
324 * referenced in generic code
325 */
326#define COPY_SIGCODE /* copy sigcode above user stack in exec */
327
328#define cpu_swapout(p) panic("cpu_swapout: can't get here");
329
330#ifndef _LOCORE
331#include <machine/frame.h>
332/*
333 * Arguments to hardclock and gatherstats encapsulate the previous
334 * machine state in an opaque clockframe.
335 */
336#define clockframe trapframe /* Use normal trap frame */
337
338#define CLKF_USERMODE(framep) ((framep)->sr & SR_KSU_USER)
339#define CLKF_BASEPRI(framep) ((framep)->cpl == 0)
340#define CLKF_PC(framep) ((framep)->pc)
341#define CLKF_INTR(framep) (0)
342#define MIPS_CLKF_INTR() (intr_nesting_level >= 1)
343#define TRAPF_USERMODE(framep) (((framep)->sr & SR_KSU_USER) != 0)
344#define TRAPF_PC(framep) ((framep)->pc)
345#define cpu_getstack(td) ((td)->td_frame->sp)
346
347/*
348 * CPU identification, from PRID register.
349 */
350union cpuprid {
351 int cpuprid;
352 struct {
353#if BYTE_ORDER == BIG_ENDIAN
354 u_int pad1:8; /* reserved */
355 u_int cp_vendor:8; /* company identifier */
356 u_int cp_imp:8; /* implementation identifier */
357 u_int cp_majrev:4; /* major revision identifier */
358 u_int cp_minrev:4; /* minor revision identifier */
359#else
360 u_int cp_minrev:4; /* minor revision identifier */
361 u_int cp_majrev:4; /* major revision identifier */
362 u_int cp_imp:8; /* implementation identifier */
363 u_int cp_vendor:8; /* company identifier */
364 u_int pad1:8; /* reserved */
365#endif
366 } cpu;
367};
368
369#endif /* !_LOCORE */
370
371/*
372 * CTL_MACHDEP definitions.
373 */
374#define CPU_CONSDEV 1 /* dev_t: console terminal device */
375#define CPU_ADJKERNTZ 2 /* int: timezone offset (seconds) */
376#define CPU_DISRTCSET 3 /* int: disable resettodr() call */
377#define CPU_BOOTINFO 4 /* struct: bootinfo */
378#define CPU_WALLCLOCK 5 /* int: indicates wall CMOS clock */
379#define CPU_MAXID 6 /* number of valid machdep ids */
380
381#define CTL_MACHDEP_NAMES { \
382 { 0, 0 }, \
383 { "console_device", CTLTYPE_STRUCT }, \
384 { "adjkerntz", CTLTYPE_INT }, \
385 { "disable_rtc_set", CTLTYPE_INT }, \
386 { "bootinfo", CTLTYPE_STRUCT }, \
387 { "wall_cmos_clock", CTLTYPE_INT }, \
388}
389
390/*
391 * MIPS CPU types (cp_imp).
392 */
393#define MIPS_R2000 0x01 /* MIPS R2000 CPU ISA I */
394#define MIPS_R3000 0x02 /* MIPS R3000 CPU ISA I */
395#define MIPS_R6000 0x03 /* MIPS R6000 CPU ISA II */
396#define MIPS_R4000 0x04 /* MIPS R4000/4400 CPU ISA III */
397#define MIPS_R3LSI 0x05 /* LSI Logic R3000 derivate ISA I */
398#define MIPS_R6000A 0x06 /* MIPS R6000A CPU ISA II */
399#define MIPS_R3IDT 0x07 /* IDT R3000 derivate ISA I */
400#define MIPS_R10000 0x09 /* MIPS R10000/T5 CPU ISA IV */
401#define MIPS_R4200 0x0a /* MIPS R4200 CPU (ICE) ISA III */
402#define MIPS_R4300 0x0b /* NEC VR4300 CPU ISA III */
403#define MIPS_R4100 0x0c /* NEC VR41xx CPU MIPS-16 ISA III */
404#define MIPS_R8000 0x10 /* MIPS R8000 Blackbird/TFP ISA IV */
405#define MIPS_R4600 0x20 /* QED R4600 Orion ISA III */
406#define MIPS_R4700 0x21 /* QED R4700 Orion ISA III */
407#define MIPS_R3TOSH 0x22 /* Toshiba R3000 based CPU ISA I */
408#define MIPS_R5000 0x23 /* MIPS R5000 CPU ISA IV */
409#define MIPS_RM7000 0x27 /* QED RM7000 CPU ISA IV */
410#define MIPS_RM52X0 0x28 /* QED RM52X0 CPU ISA IV */
411#define MIPS_VR5400 0x54 /* NEC Vr5400 CPU ISA IV+ */
412#define MIPS_RM9000 0x34 /* E9000 CPU */
413
414/*
415 * MIPS FPU types
416 */
417#define MIPS_SOFT 0x00 /* Software emulation ISA I */
418#define MIPS_R2360 0x01 /* MIPS R2360 FPC ISA I */
419#define MIPS_R2010 0x02 /* MIPS R2010 FPC ISA I */
420#define MIPS_R3010 0x03 /* MIPS R3010 FPC ISA I */
421#define MIPS_R6010 0x04 /* MIPS R6010 FPC ISA II */
422#define MIPS_R4010 0x05 /* MIPS R4000/R4400 FPC ISA II */
423#define MIPS_R31LSI 0x06 /* LSI Logic derivate ISA I */
424#define MIPS_R10010 0x09 /* MIPS R10000/T5 FPU ISA IV */
425#define MIPS_R4210 0x0a /* MIPS R4200 FPC (ICE) ISA III */
426#define MIPS_UNKF1 0x0b /* unnanounced product cpu ISA III */
427#define MIPS_R8000 0x10 /* MIPS R8000 Blackbird/TFP ISA IV */
428#define MIPS_R4600 0x20 /* QED R4600 Orion ISA III */
429#define MIPS_R3SONY 0x21 /* Sony R3000 based FPU ISA I */
430#define MIPS_R3TOSH 0x22 /* Toshiba R3000 based FPU ISA I */
431#define MIPS_R5010 0x23 /* MIPS R5000 based FPU ISA IV */
432#define MIPS_RM7000 0x27 /* QED RM7000 FPU ISA IV */
433#define MIPS_RM5230 0x28 /* QED RM52X0 based FPU ISA IV */
434#define MIPS_RM52XX 0x28 /* QED RM52X0 based FPU ISA IV */
435#define MIPS_VR5400 0x54 /* NEC Vr5400 FPU ISA IV+ */
436
437#ifndef _LOCORE
438extern union cpuprid cpu_id;
439
440#define mips_proc_type() ((cpu_id.cpu.cp_vendor << 8) | cpu_id.cpu.cp_imp)
441#define mips_set_proc_type(type) (cpu_id.cpu.cp_vendor = (type) >> 8, \
442 cpu_id.cpu.cp_imp = ((type) & 0x00ff))
443#endif /* !_LOCORE */
444
445#if defined(_KERNEL) && !defined(_LOCORE)
446extern union cpuprid fpu_id;
447
448struct tlb;
449struct user;
450
451u_int32_t mips_cp0_config1_read(void);
452int Mips_ConfigCache(void);
453void Mips_SetWIRED(int);
454void Mips_SetPID(int);
455u_int Mips_GetCOUNT(void);
456void Mips_SetCOMPARE(u_int);
457u_int Mips_GetCOMPARE(void);
458
459void Mips_SyncCache(void);
460void Mips_SyncDCache(vm_offset_t, int);
461void Mips_HitSyncDCache(vm_offset_t, int);
462void Mips_HitSyncSCache(vm_offset_t, int);
463void Mips_IOSyncDCache(vm_offset_t, int, int);
464void Mips_HitInvalidateDCache(vm_offset_t, int);
465void Mips_SyncICache(vm_offset_t, int);
466void Mips_InvalidateICache(vm_offset_t, int);
467
468void Mips_TLBFlush(int);
469void Mips_TLBFlushAddr(vm_offset_t);
470void Mips_TLBWriteIndexed(int, struct tlb *);
471void Mips_TLBUpdate(vm_offset_t, unsigned);
472void Mips_TLBRead(int, struct tlb *);
473void mips_TBIAP(int);
474void wbflush(void);
475
476extern u_int32_t cpu_counter_interval; /* Number of counter ticks/tick */
477extern u_int32_t cpu_counter_last; /* Last compare value loaded */
478extern int num_tlbentries;
479extern char btext[];
480extern char etext[];
481extern int intr_nesting_level;
482
483#define func_0args_asmmacro(func, in) \
484 __asm __volatile ( "jalr %0" \
485 : "=r" (in) /* outputs */ \
486 : "r" (func) /* inputs */ \
487 : "$31", "$4");
488
489#define func_1args_asmmacro(func, arg0) \
490 __asm __volatile ("move $4, %1;" \
491 "jalr %0" \
492 : /* outputs */ \
493 : "r" (func), "r" (arg0) /* inputs */ \
494 : "$31", "$4");
495
496#define func_2args_asmmacro(func, arg0, arg1) \
497 __asm __volatile ("move $4, %1;" \
498 "move $5, %2;" \
499 "jalr %0" \
500 : /* outputs */ \
501 : "r" (func), "r" (arg0), "r" (arg1) /* inputs */ \
502 : "$31", "$4", "$5");
503
504#define func_3args_asmmacro(func, arg0, arg1, arg2) \
505 __asm __volatile ( "move $4, %1;" \
506 "move $5, %2;" \
507 "move $6, %3;" \
508 "jalr %0" \
509 : /* outputs */ \
510 : "r" (func), "r" (arg0), "r" (arg1), "r" (arg2) /* inputs */ \
511 : "$31", "$4", "$5", "$6");
512
513#define MachSetPID Mips_SetPID
514#define MachTLBUpdate Mips_TLBUpdate
515#define mips_TBIS Mips_TLBFlushAddr
516#define MIPS_TBIAP() mips_TBIAP(num_tlbentries)
517#define MachSetWIRED(index) Mips_SetWIRED(index)
518#define MachTLBFlush(count) Mips_TLBFlush(count)
519#define MachTLBGetPID(pid) (pid = Mips_TLBGetPID())
520#define MachTLBRead(tlbno, tlbp) Mips_TLBRead(tlbno, tlbp)
521#define MachFPTrap(sr, cause, pc) MipsFPTrap(sr, cause, pc)
522
523/*
524 * Enable realtime clock (always enabled).
525 */
526#define enablertclock()
527
528/*
529 * Are we in an interrupt handler? required by JunOS
530 */
531#define IN_INT_HANDLER() \
532 (curthread->td_intr_nesting_level != 0 || \
533 (curthread->td_pflags & TDP_ITHREAD))
534
535/*
536 * Low level access routines to CPU registers
537 */
538
539void setsoftintr0(void);
540void clearsoftintr0(void);
541void setsoftintr1(void);
542void clearsoftintr1(void);
543
544
545u_int32_t mips_cp0_status_read(void);
546void mips_cp0_status_write(u_int32_t);
547
548int disableintr(void);
549void restoreintr(int);
550int enableintr(void);
551int Mips_TLBGetPID(void);
552
553void swi_vm(void *);
554void cpu_halt(void);
555void cpu_reset(void);
556
557u_int32_t set_intr_mask(u_int32_t);
558u_int32_t get_intr_mask(void);
559u_int32_t get_cyclecount(void);
560
561#define cpu_spinwait() /* nothing */
562
563#endif /* _KERNEL */
564#endif /* !_MACHINE_CPU_H_ */
171
172/*
173 * The bits in the context register.
174 */
175#define CNTXT_PTE_BASE 0xff800000
176#define CNTXT_BAD_VPN2 0x007ffff0
177
178/*
179 * Location of exception vectors.
180 */
181#define RESET_EXC_VEC 0xbfc00000
182#define TLB_MISS_EXC_VEC 0x80000000
183#define XTLB_MISS_EXC_VEC 0x80000080
184#define CACHE_ERR_EXC_VEC 0x80000100
185#define GEN_EXC_VEC 0x80000180
186
187/*
188 * Coprocessor 0 registers:
189 */
190#define COP_0_TLB_INDEX $0
191#define COP_0_TLB_RANDOM $1
192#define COP_0_TLB_LO0 $2
193#define COP_0_TLB_LO1 $3
194#define COP_0_TLB_CONTEXT $4
195#define COP_0_TLB_PG_MASK $5
196#define COP_0_TLB_WIRED $6
197#define COP_0_INFO $7
198#define COP_0_BAD_VADDR $8
199#define COP_0_COUNT $9
200#define COP_0_TLB_HI $10
201#define COP_0_COMPARE $11
202#define COP_0_STATUS_REG $12
203#define COP_0_CAUSE_REG $13
204#define COP_0_EXC_PC $14
205#define COP_0_PRID $15
206#define COP_0_CONFIG $16
207#define COP_0_LLADDR $17
208#define COP_0_WATCH_LO $18
209#define COP_0_WATCH_HI $19
210#define COP_0_TLB_XCONTEXT $20
211#define COP_0_ECC $26
212#define COP_0_CACHE_ERR $27
213#define COP_0_TAG_LO $28
214#define COP_0_TAG_HI $29
215#define COP_0_ERROR_PC $30
216
217/*
218 * Coprocessor 0 Set 1
219 */
220#define C0P_1_IPLLO $18
221#define C0P_1_IPLHI $19
222#define C0P_1_INTCTL $20
223#define C0P_1_DERRADDR0 $26
224#define C0P_1_DERRADDR1 $27
225
226/*
227 * Values for the code field in a break instruction.
228 */
229#define BREAK_INSTR 0x0000000d
230#define BREAK_VAL_MASK 0x03ffffc0
231#define BREAK_VAL_SHIFT 16
232#define BREAK_KDB_VAL 512
233#define BREAK_SSTEP_VAL 513
234#define BREAK_BRKPT_VAL 514
235#define BREAK_SOVER_VAL 515
236#define BREAK_DDB_VAL 516
237#define BREAK_KDB (BREAK_INSTR | (BREAK_KDB_VAL << BREAK_VAL_SHIFT))
238#define BREAK_SSTEP (BREAK_INSTR | (BREAK_SSTEP_VAL << BREAK_VAL_SHIFT))
239#define BREAK_BRKPT (BREAK_INSTR | (BREAK_BRKPT_VAL << BREAK_VAL_SHIFT))
240#define BREAK_SOVER (BREAK_INSTR | (BREAK_SOVER_VAL << BREAK_VAL_SHIFT))
241#define BREAK_DDB (BREAK_INSTR | (BREAK_DDB_VAL << BREAK_VAL_SHIFT))
242
243/*
244 * Mininum and maximum cache sizes.
245 */
246#define MIN_CACHE_SIZE (16 * 1024)
247#define MAX_CACHE_SIZE (256 * 1024)
248
249/*
250 * The floating point version and status registers.
251 */
252#define FPC_ID $0
253#define FPC_CSR $31
254
255/*
256 * The floating point coprocessor status register bits.
257 */
258#define FPC_ROUNDING_BITS 0x00000003
259#define FPC_ROUND_RN 0x00000000
260#define FPC_ROUND_RZ 0x00000001
261#define FPC_ROUND_RP 0x00000002
262#define FPC_ROUND_RM 0x00000003
263#define FPC_STICKY_BITS 0x0000007c
264#define FPC_STICKY_INEXACT 0x00000004
265#define FPC_STICKY_UNDERFLOW 0x00000008
266#define FPC_STICKY_OVERFLOW 0x00000010
267#define FPC_STICKY_DIV0 0x00000020
268#define FPC_STICKY_INVALID 0x00000040
269#define FPC_ENABLE_BITS 0x00000f80
270#define FPC_ENABLE_INEXACT 0x00000080
271#define FPC_ENABLE_UNDERFLOW 0x00000100
272#define FPC_ENABLE_OVERFLOW 0x00000200
273#define FPC_ENABLE_DIV0 0x00000400
274#define FPC_ENABLE_INVALID 0x00000800
275#define FPC_EXCEPTION_BITS 0x0003f000
276#define FPC_EXCEPTION_INEXACT 0x00001000
277#define FPC_EXCEPTION_UNDERFLOW 0x00002000
278#define FPC_EXCEPTION_OVERFLOW 0x00004000
279#define FPC_EXCEPTION_DIV0 0x00008000
280#define FPC_EXCEPTION_INVALID 0x00010000
281#define FPC_EXCEPTION_UNIMPL 0x00020000
282#define FPC_COND_BIT 0x00800000
283#define FPC_FLUSH_BIT 0x01000000
284#define FPC_MBZ_BITS 0xfe7c0000
285
286/*
287 * Constants to determine if have a floating point instruction.
288 */
289#define OPCODE_SHIFT 26
290#define OPCODE_C1 0x11
291
292/*
293 * The low part of the TLB entry.
294 */
295#define VMTLB_PF_NUM 0x3fffffc0
296#define VMTLB_ATTR_MASK 0x00000038
297#define VMTLB_MOD_BIT 0x00000004
298#define VMTLB_VALID_BIT 0x00000002
299#define VMTLB_GLOBAL_BIT 0x00000001
300
301#define VMTLB_PHYS_PAGE_SHIFT 6
302
303/*
304 * The high part of the TLB entry.
305 */
306#define VMTLB_VIRT_PAGE_NUM 0xffffe000
307#define VMTLB_PID 0x000000ff
308#define VMTLB_PID_R9K 0x00000fff
309#define VMTLB_PID_SHIFT 0
310#define VMTLB_VIRT_PAGE_SHIFT 12
311#define VMTLB_VIRT_PAGE_SHIFT_R9K 13
312
313/*
314 * The first TLB entry that write random hits.
315 */
316#define VMWIRED_ENTRIES 1
317
318/*
319 * The number of process id entries.
320 */
321#define VMNUM_PIDS 256
322
323/*
324 * TLB probe return codes.
325 */
326#define VMTLB_NOT_FOUND 0
327#define VMTLB_FOUND 1
328#define VMTLB_FOUND_WITH_PATCH 2
329#define VMTLB_PROBE_ERROR 3
330
331/*
332 * Exported definitions unique to mips cpu support.
333 */
334
335/*
336 * definitions of cpu-dependent requirements
337 * referenced in generic code
338 */
339#define COPY_SIGCODE /* copy sigcode above user stack in exec */
340
341#define cpu_swapout(p) panic("cpu_swapout: can't get here");
342
343#ifndef _LOCORE
344#include <machine/frame.h>
345/*
346 * Arguments to hardclock and gatherstats encapsulate the previous
347 * machine state in an opaque clockframe.
348 */
349#define clockframe trapframe /* Use normal trap frame */
350
351#define CLKF_USERMODE(framep) ((framep)->sr & SR_KSU_USER)
352#define CLKF_BASEPRI(framep) ((framep)->cpl == 0)
353#define CLKF_PC(framep) ((framep)->pc)
354#define CLKF_INTR(framep) (0)
355#define MIPS_CLKF_INTR() (intr_nesting_level >= 1)
356#define TRAPF_USERMODE(framep) (((framep)->sr & SR_KSU_USER) != 0)
357#define TRAPF_PC(framep) ((framep)->pc)
358#define cpu_getstack(td) ((td)->td_frame->sp)
359
360/*
361 * CPU identification, from PRID register.
362 */
363union cpuprid {
364 int cpuprid;
365 struct {
366#if BYTE_ORDER == BIG_ENDIAN
367 u_int pad1:8; /* reserved */
368 u_int cp_vendor:8; /* company identifier */
369 u_int cp_imp:8; /* implementation identifier */
370 u_int cp_majrev:4; /* major revision identifier */
371 u_int cp_minrev:4; /* minor revision identifier */
372#else
373 u_int cp_minrev:4; /* minor revision identifier */
374 u_int cp_majrev:4; /* major revision identifier */
375 u_int cp_imp:8; /* implementation identifier */
376 u_int cp_vendor:8; /* company identifier */
377 u_int pad1:8; /* reserved */
378#endif
379 } cpu;
380};
381
382#endif /* !_LOCORE */
383
384/*
385 * CTL_MACHDEP definitions.
386 */
387#define CPU_CONSDEV 1 /* dev_t: console terminal device */
388#define CPU_ADJKERNTZ 2 /* int: timezone offset (seconds) */
389#define CPU_DISRTCSET 3 /* int: disable resettodr() call */
390#define CPU_BOOTINFO 4 /* struct: bootinfo */
391#define CPU_WALLCLOCK 5 /* int: indicates wall CMOS clock */
392#define CPU_MAXID 6 /* number of valid machdep ids */
393
394#define CTL_MACHDEP_NAMES { \
395 { 0, 0 }, \
396 { "console_device", CTLTYPE_STRUCT }, \
397 { "adjkerntz", CTLTYPE_INT }, \
398 { "disable_rtc_set", CTLTYPE_INT }, \
399 { "bootinfo", CTLTYPE_STRUCT }, \
400 { "wall_cmos_clock", CTLTYPE_INT }, \
401}
402
403/*
404 * MIPS CPU types (cp_imp).
405 */
406#define MIPS_R2000 0x01 /* MIPS R2000 CPU ISA I */
407#define MIPS_R3000 0x02 /* MIPS R3000 CPU ISA I */
408#define MIPS_R6000 0x03 /* MIPS R6000 CPU ISA II */
409#define MIPS_R4000 0x04 /* MIPS R4000/4400 CPU ISA III */
410#define MIPS_R3LSI 0x05 /* LSI Logic R3000 derivate ISA I */
411#define MIPS_R6000A 0x06 /* MIPS R6000A CPU ISA II */
412#define MIPS_R3IDT 0x07 /* IDT R3000 derivate ISA I */
413#define MIPS_R10000 0x09 /* MIPS R10000/T5 CPU ISA IV */
414#define MIPS_R4200 0x0a /* MIPS R4200 CPU (ICE) ISA III */
415#define MIPS_R4300 0x0b /* NEC VR4300 CPU ISA III */
416#define MIPS_R4100 0x0c /* NEC VR41xx CPU MIPS-16 ISA III */
417#define MIPS_R8000 0x10 /* MIPS R8000 Blackbird/TFP ISA IV */
418#define MIPS_R4600 0x20 /* QED R4600 Orion ISA III */
419#define MIPS_R4700 0x21 /* QED R4700 Orion ISA III */
420#define MIPS_R3TOSH 0x22 /* Toshiba R3000 based CPU ISA I */
421#define MIPS_R5000 0x23 /* MIPS R5000 CPU ISA IV */
422#define MIPS_RM7000 0x27 /* QED RM7000 CPU ISA IV */
423#define MIPS_RM52X0 0x28 /* QED RM52X0 CPU ISA IV */
424#define MIPS_VR5400 0x54 /* NEC Vr5400 CPU ISA IV+ */
425#define MIPS_RM9000 0x34 /* E9000 CPU */
426
427/*
428 * MIPS FPU types
429 */
430#define MIPS_SOFT 0x00 /* Software emulation ISA I */
431#define MIPS_R2360 0x01 /* MIPS R2360 FPC ISA I */
432#define MIPS_R2010 0x02 /* MIPS R2010 FPC ISA I */
433#define MIPS_R3010 0x03 /* MIPS R3010 FPC ISA I */
434#define MIPS_R6010 0x04 /* MIPS R6010 FPC ISA II */
435#define MIPS_R4010 0x05 /* MIPS R4000/R4400 FPC ISA II */
436#define MIPS_R31LSI 0x06 /* LSI Logic derivate ISA I */
437#define MIPS_R10010 0x09 /* MIPS R10000/T5 FPU ISA IV */
438#define MIPS_R4210 0x0a /* MIPS R4200 FPC (ICE) ISA III */
439#define MIPS_UNKF1 0x0b /* unnanounced product cpu ISA III */
440#define MIPS_R8000 0x10 /* MIPS R8000 Blackbird/TFP ISA IV */
441#define MIPS_R4600 0x20 /* QED R4600 Orion ISA III */
442#define MIPS_R3SONY 0x21 /* Sony R3000 based FPU ISA I */
443#define MIPS_R3TOSH 0x22 /* Toshiba R3000 based FPU ISA I */
444#define MIPS_R5010 0x23 /* MIPS R5000 based FPU ISA IV */
445#define MIPS_RM7000 0x27 /* QED RM7000 FPU ISA IV */
446#define MIPS_RM5230 0x28 /* QED RM52X0 based FPU ISA IV */
447#define MIPS_RM52XX 0x28 /* QED RM52X0 based FPU ISA IV */
448#define MIPS_VR5400 0x54 /* NEC Vr5400 FPU ISA IV+ */
449
450#ifndef _LOCORE
451extern union cpuprid cpu_id;
452
453#define mips_proc_type() ((cpu_id.cpu.cp_vendor << 8) | cpu_id.cpu.cp_imp)
454#define mips_set_proc_type(type) (cpu_id.cpu.cp_vendor = (type) >> 8, \
455 cpu_id.cpu.cp_imp = ((type) & 0x00ff))
456#endif /* !_LOCORE */
457
458#if defined(_KERNEL) && !defined(_LOCORE)
459extern union cpuprid fpu_id;
460
461struct tlb;
462struct user;
463
464u_int32_t mips_cp0_config1_read(void);
465int Mips_ConfigCache(void);
466void Mips_SetWIRED(int);
467void Mips_SetPID(int);
468u_int Mips_GetCOUNT(void);
469void Mips_SetCOMPARE(u_int);
470u_int Mips_GetCOMPARE(void);
471
472void Mips_SyncCache(void);
473void Mips_SyncDCache(vm_offset_t, int);
474void Mips_HitSyncDCache(vm_offset_t, int);
475void Mips_HitSyncSCache(vm_offset_t, int);
476void Mips_IOSyncDCache(vm_offset_t, int, int);
477void Mips_HitInvalidateDCache(vm_offset_t, int);
478void Mips_SyncICache(vm_offset_t, int);
479void Mips_InvalidateICache(vm_offset_t, int);
480
481void Mips_TLBFlush(int);
482void Mips_TLBFlushAddr(vm_offset_t);
483void Mips_TLBWriteIndexed(int, struct tlb *);
484void Mips_TLBUpdate(vm_offset_t, unsigned);
485void Mips_TLBRead(int, struct tlb *);
486void mips_TBIAP(int);
487void wbflush(void);
488
489extern u_int32_t cpu_counter_interval; /* Number of counter ticks/tick */
490extern u_int32_t cpu_counter_last; /* Last compare value loaded */
491extern int num_tlbentries;
492extern char btext[];
493extern char etext[];
494extern int intr_nesting_level;
495
496#define func_0args_asmmacro(func, in) \
497 __asm __volatile ( "jalr %0" \
498 : "=r" (in) /* outputs */ \
499 : "r" (func) /* inputs */ \
500 : "$31", "$4");
501
502#define func_1args_asmmacro(func, arg0) \
503 __asm __volatile ("move $4, %1;" \
504 "jalr %0" \
505 : /* outputs */ \
506 : "r" (func), "r" (arg0) /* inputs */ \
507 : "$31", "$4");
508
509#define func_2args_asmmacro(func, arg0, arg1) \
510 __asm __volatile ("move $4, %1;" \
511 "move $5, %2;" \
512 "jalr %0" \
513 : /* outputs */ \
514 : "r" (func), "r" (arg0), "r" (arg1) /* inputs */ \
515 : "$31", "$4", "$5");
516
517#define func_3args_asmmacro(func, arg0, arg1, arg2) \
518 __asm __volatile ( "move $4, %1;" \
519 "move $5, %2;" \
520 "move $6, %3;" \
521 "jalr %0" \
522 : /* outputs */ \
523 : "r" (func), "r" (arg0), "r" (arg1), "r" (arg2) /* inputs */ \
524 : "$31", "$4", "$5", "$6");
525
526#define MachSetPID Mips_SetPID
527#define MachTLBUpdate Mips_TLBUpdate
528#define mips_TBIS Mips_TLBFlushAddr
529#define MIPS_TBIAP() mips_TBIAP(num_tlbentries)
530#define MachSetWIRED(index) Mips_SetWIRED(index)
531#define MachTLBFlush(count) Mips_TLBFlush(count)
532#define MachTLBGetPID(pid) (pid = Mips_TLBGetPID())
533#define MachTLBRead(tlbno, tlbp) Mips_TLBRead(tlbno, tlbp)
534#define MachFPTrap(sr, cause, pc) MipsFPTrap(sr, cause, pc)
535
536/*
537 * Enable realtime clock (always enabled).
538 */
539#define enablertclock()
540
541/*
542 * Are we in an interrupt handler? required by JunOS
543 */
544#define IN_INT_HANDLER() \
545 (curthread->td_intr_nesting_level != 0 || \
546 (curthread->td_pflags & TDP_ITHREAD))
547
548/*
549 * Low level access routines to CPU registers
550 */
551
552void setsoftintr0(void);
553void clearsoftintr0(void);
554void setsoftintr1(void);
555void clearsoftintr1(void);
556
557
558u_int32_t mips_cp0_status_read(void);
559void mips_cp0_status_write(u_int32_t);
560
561int disableintr(void);
562void restoreintr(int);
563int enableintr(void);
564int Mips_TLBGetPID(void);
565
566void swi_vm(void *);
567void cpu_halt(void);
568void cpu_reset(void);
569
570u_int32_t set_intr_mask(u_int32_t);
571u_int32_t get_intr_mask(void);
572u_int32_t get_cyclecount(void);
573
574#define cpu_spinwait() /* nothing */
575
576#endif /* _KERNEL */
577#endif /* !_MACHINE_CPU_H_ */