Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.70.2.2
      1  1.70.2.1     skrll /*	$NetBSD: cpu.h,v 1.70.2.2 2004/09/18 14:37:18 skrll 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.70.2.1     skrll  * 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.55    simonb #include <sys/sched.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.53    simonb 	struct schedstate_percpu ci_schedstate; /* scheduler state */
     56      1.58    simonb 	u_long ci_cpu_freq;		/* CPU frequency */
     57      1.58    simonb 	u_long ci_cycles_per_hz;	/* CPU freq / hz */
     58      1.58    simonb 	u_long ci_divisor_delay;	/* for delay/DELAY */
     59      1.64    simonb 	u_long ci_divisor_recip;	/* scaled reciprocal of previous;
     60      1.64    simonb 					   see below */
     61      1.53    simonb #if defined(DIAGNOSTIC) || defined(LOCKDEBUG)
     62      1.53    simonb 	u_long ci_spin_locks;		/* # of spin locks held */
     63      1.53    simonb 	u_long ci_simple_locks;		/* # of simple locks held */
     64      1.53    simonb #endif
     65      1.53    simonb };
     66      1.68    simonb 
     67      1.64    simonb /*
     68      1.64    simonb  * To implement a more accurate microtime using the CP0 COUNT register
     69      1.64    simonb  * we need to divide that register by the number of cycles per MHz.
     70      1.64    simonb  * But...
     71      1.64    simonb  *
     72      1.64    simonb  * DIV and DIVU are expensive on MIPS (eg 75 clocks on the R4000).  MULT
     73      1.64    simonb  * and MULTU are only 12 clocks on the same CPU.
     74      1.64    simonb  *
     75      1.64    simonb  * The strategy we use is to calculate the reciprical of cycles per MHz,
     76      1.64    simonb  * scaled by 1<<32.  Then we can simply issue a MULTU and pluck of the
     77      1.64    simonb  * HI register and have the results of the division.
     78      1.64    simonb  */
     79      1.64    simonb #define	MIPS_SET_CI_RECIPRICAL(cpu)					\
     80      1.64    simonb do {									\
     81      1.64    simonb 	KASSERT((cpu)->ci_divisor_delay != 0);				\
     82      1.64    simonb 	(cpu)->ci_divisor_recip = 0x100000000ULL / (cpu)->ci_divisor_delay; \
     83      1.64    simonb } while (0)
     84      1.64    simonb 
     85      1.64    simonb #define	MIPS_COUNT_TO_MHZ(cpu, count, res)				\
     86      1.64    simonb 	asm volatile("multu %1,%2 ; mfhi %0"				\
     87      1.64    simonb 	    : "=r"((res)) : "r"((count)), "r"((cpu)->ci_divisor_recip))
     88      1.68    simonb 
     89      1.68    simonb #endif /* !_LOCORE */
     90      1.68    simonb #endif /* _KERNEL */
     91      1.53    simonb 
     92      1.36     soren /*
     93      1.36     soren  * CTL_MACHDEP definitions.
     94      1.36     soren  */
     95      1.36     soren #define CPU_CONSDEV		1	/* dev_t: console terminal device */
     96      1.36     soren #define CPU_BOOTED_KERNEL	2	/* string: booted kernel name */
     97      1.36     soren #define CPU_ROOT_DEVICE		3	/* string: root device name */
     98      1.66  gmcgarry #define CPU_LLSC		4	/* OS/CPU supports LL/SC instruction */
     99      1.43     jeffs 
    100      1.43     jeffs /*
    101      1.51       wiz  * Platform can override, but note this breaks userland compatibility
    102      1.43     jeffs  * with other mips platforms.
    103      1.43     jeffs  */
    104      1.43     jeffs #ifndef CPU_MAXID
    105      1.67      shin #define CPU_MAXID		5	/* number of valid machdep ids */
    106      1.36     soren 
    107      1.36     soren #define CTL_MACHDEP_NAMES { \
    108      1.36     soren 	{ 0, 0 }, \
    109      1.36     soren 	{ "console_device", CTLTYPE_STRUCT }, \
    110      1.36     soren 	{ "booted_kernel", CTLTYPE_STRING }, \
    111      1.36     soren 	{ "root_device", CTLTYPE_STRING }, \
    112      1.66  gmcgarry 	{ "llsc", CTLTYPE_INT }, \
    113      1.36     soren }
    114      1.42     jeffs #endif
    115      1.33    simonb 
    116      1.33    simonb #ifdef _KERNEL
    117      1.33    simonb #ifndef _LOCORE
    118      1.53    simonb extern struct cpu_info cpu_info_store;
    119      1.53    simonb 
    120      1.53    simonb #define	curcpu()	(&cpu_info_store)
    121      1.53    simonb #define	cpu_number()	(0)
    122      1.70   thorpej #define	cpu_proc_fork(p1, p2)
    123      1.58    simonb #endif /* !_LOCORE */
    124      1.33    simonb 
    125      1.33    simonb /*
    126      1.21  jonathan  * Macros to find the CPU architecture we're on at run-time,
    127      1.21  jonathan  * or if possible, at compile-time.
    128      1.21  jonathan  */
    129      1.21  jonathan 
    130      1.58    simonb #define	CPU_ARCH_MIPSx	0		/* XXX unknown */
    131      1.46       cgd #define	CPU_ARCH_MIPS1	(1 << 0)
    132      1.46       cgd #define	CPU_ARCH_MIPS2	(1 << 1)
    133      1.46       cgd #define	CPU_ARCH_MIPS3	(1 << 2)
    134      1.46       cgd #define	CPU_ARCH_MIPS4	(1 << 3)
    135      1.46       cgd #define	CPU_ARCH_MIPS5	(1 << 4)
    136      1.46       cgd #define	CPU_ARCH_MIPS32	(1 << 5)
    137      1.46       cgd #define	CPU_ARCH_MIPS64	(1 << 6)
    138      1.46       cgd 
    139      1.58    simonb #ifndef _LOCORE
    140      1.58    simonb /* XXX simonb
    141      1.58    simonb  * Should the following be in a cpu_info type structure?
    142      1.58    simonb  * And how many of these are per-cpu vs. per-system?  (Ie,
    143      1.58    simonb  * we can assume that all cpus have the same mmu-type, but
    144      1.58    simonb  * maybe not that all cpus run at the same clock speed.
    145      1.58    simonb  * Some SGI's apparently support R12k and R14k in the same
    146      1.58    simonb  * box.)
    147      1.58    simonb  */
    148      1.58    simonb extern int cpu_arch;
    149      1.58    simonb extern int mips_cpu_flags;
    150      1.58    simonb extern int mips_has_r4k_mmu;
    151      1.58    simonb extern int mips_has_llsc;
    152      1.58    simonb extern int mips3_pg_cached;
    153      1.58    simonb 
    154      1.58    simonb #define	CPU_MIPS_R4K_MMU		0x0001
    155      1.58    simonb #define	CPU_MIPS_NO_LLSC		0x0002
    156      1.58    simonb #define	CPU_MIPS_CAUSE_IV		0x0004
    157      1.58    simonb #define	CPU_MIPS_HAVE_SPECIAL_CCA	0x0008	/* Defaults to '3' if not set. */
    158      1.58    simonb #define	CPU_MIPS_CACHED_CCA_MASK	0x0070
    159      1.58    simonb #define	CPU_MIPS_CACHED_CCA_SHIFT	 4
    160      1.62    simonb #define	CPU_MIPS_DOUBLE_COUNT		0x0080	/* 1 cp0 count == 2 clock cycles */
    161      1.63    simonb #define	CPU_MIPS_USE_WAIT		0x0100	/* Use "wait"-based cpu_idle() */
    162      1.63    simonb #define	CPU_MIPS_NO_WAIT		0x0200	/* Inverse of previous, for mips32/64 */
    163      1.69    simonb #define	CPU_MIPS_D_CACHE_COHERENT	0x0400	/* D-cache is fully coherent */
    164      1.69    simonb #define	CPU_MIPS_I_D_CACHE_COHERENT	0x0800	/* I-cache funcs don't need to flush the D-cache */
    165      1.58    simonb #define	MIPS_NOT_SUPP			0x8000
    166      1.60    simonb 
    167      1.60    simonb #ifdef _LKM
    168      1.60    simonb /* Assume all CPU architectures are valid for LKM's */
    169      1.60    simonb #define	MIPS1	1
    170      1.60    simonb #define	MIPS3	1
    171      1.60    simonb #define	MIPS4	1
    172      1.60    simonb #define	MIPS32	1
    173      1.60    simonb #define	MIPS64	1
    174      1.60    simonb #endif
    175      1.58    simonb 
    176      1.58    simonb #if (MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 0
    177      1.58    simonb #error at least one of MIPS1, MIPS3, MIPS4, MIPS32 or MIPS64 must be specified
    178      1.58    simonb #endif
    179      1.58    simonb 
    180      1.58    simonb #if (MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 1
    181      1.21  jonathan #ifdef MIPS1
    182      1.58    simonb # define CPUISMIPS3		0
    183      1.58    simonb # define CPUIS64BITS		0
    184      1.58    simonb # define CPUISMIPS32		0
    185      1.58    simonb # define CPUISMIPS64		0
    186      1.58    simonb # define CPUISMIPSNN		0
    187      1.58    simonb # define MIPS_HAS_R4K_MMU	0
    188      1.58    simonb # define MIPS_HAS_CLOCK		0
    189      1.58    simonb # define MIPS_HAS_LLSC		0
    190      1.58    simonb #endif /* MIPS1 */
    191      1.58    simonb 
    192      1.58    simonb #if defined(MIPS3) || defined(MIPS4)
    193      1.58    simonb # define CPUISMIPS3		1
    194      1.58    simonb # define CPUIS64BITS		1
    195      1.58    simonb # define CPUISMIPS32		0
    196      1.58    simonb # define CPUISMIPS64		0
    197      1.58    simonb # define CPUISMIPSNN		0
    198      1.58    simonb # define MIPS_HAS_R4K_MMU	1
    199      1.58    simonb # define MIPS_HAS_CLOCK		1
    200      1.58    simonb # define MIPS_HAS_LLSC		(mips_has_llsc)
    201      1.58    simonb #endif /* MIPS3 || MIPS4 */
    202      1.58    simonb 
    203      1.58    simonb #ifdef MIPS32
    204      1.58    simonb # define CPUISMIPS3		1
    205      1.58    simonb # define CPUIS64BITS		0
    206      1.58    simonb # define CPUISMIPS32		1
    207      1.58    simonb # define CPUISMIPS64		0
    208      1.58    simonb # define CPUISMIPSNN		1
    209      1.58    simonb # define MIPS_HAS_R4K_MMU	1
    210      1.58    simonb # define MIPS_HAS_CLOCK		1
    211      1.58    simonb # define MIPS_HAS_LLSC		1
    212      1.58    simonb #endif /* MIPS32 */
    213      1.58    simonb 
    214      1.58    simonb #ifdef MIPS64
    215      1.58    simonb # define CPUISMIPS3		1
    216      1.58    simonb # define CPUIS64BITS		1
    217      1.58    simonb # define CPUISMIPS32		0
    218      1.58    simonb # define CPUISMIPS64		1
    219      1.58    simonb # define CPUISMIPSNN		1
    220      1.58    simonb # define MIPS_HAS_R4K_MMU	1
    221      1.58    simonb # define MIPS_HAS_CLOCK		1
    222      1.58    simonb # define MIPS_HAS_LLSC		1
    223      1.65      manu #endif /* MIPS64 */
    224      1.21  jonathan 
    225      1.58    simonb #else /* run-time test */
    226      1.21  jonathan 
    227      1.58    simonb #define	MIPS_HAS_R4K_MMU	(mips_has_r4k_mmu)
    228      1.58    simonb #define	MIPS_HAS_LLSC		(mips_has_llsc)
    229      1.45       cgd 
    230      1.45       cgd /* This test is ... rather bogus */
    231      1.58    simonb #define	CPUISMIPS3	((cpu_arch & \
    232      1.58    simonb 	(CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
    233      1.58    simonb 
    234      1.58    simonb /* And these aren't much better while the previous test exists as is... */
    235      1.58    simonb #define	CPUISMIPS32	((cpu_arch & CPU_ARCH_MIPS32) != 0)
    236      1.58    simonb #define	CPUISMIPS64	((cpu_arch & CPU_ARCH_MIPS64) != 0)
    237      1.58    simonb #define	CPUISMIPSNN	((cpu_arch & (CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
    238      1.58    simonb #define	CPUIS64BITS	((cpu_arch & \
    239      1.58    simonb 	(CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS64)) != 0)
    240      1.58    simonb 
    241      1.58    simonb #define	MIPS_HAS_CLOCK	(cpu_arch >= CPU_ARCH_MIPS3)
    242      1.21  jonathan #endif /* run-time test */
    243      1.21  jonathan 
    244      1.58    simonb /* Shortcut for MIPS3 or above defined */
    245      1.58    simonb #if defined(MIPS3) || defined(MIPS4) || defined(MIPS32) || defined(MIPS64)
    246      1.58    simonb #define	MIPS3_PLUS	1
    247      1.58    simonb #else
    248      1.58    simonb #undef MIPS3_PLUS
    249      1.58    simonb #endif
    250      1.58    simonb 
    251      1.58    simonb 
    252      1.21  jonathan /*
    253       1.1   deraadt  * definitions of cpu-dependent requirements
    254       1.1   deraadt  * referenced in generic code
    255       1.1   deraadt  */
    256      1.11       cgd #define	cpu_swapout(p)			panic("cpu_swapout: can't get here");
    257      1.42     jeffs 
    258      1.58    simonb void cpu_intr(u_int32_t, u_int32_t, u_int32_t, u_int32_t);
    259       1.1   deraadt 
    260       1.1   deraadt /*
    261       1.1   deraadt  * Arguments to hardclock and gatherstats encapsulate the previous
    262       1.1   deraadt  * machine state in an opaque clockframe.
    263       1.1   deraadt  */
    264       1.5     glass struct clockframe {
    265       1.1   deraadt 	int	pc;	/* program counter at time of interrupt */
    266       1.1   deraadt 	int	sr;	/* status register at time of interrupt */
    267      1.56       uch 	int	ppl;	/* previous priority level at time of interrupt */
    268       1.5     glass };
    269       1.1   deraadt 
    270      1.14  jonathan /*
    271      1.14  jonathan  * A port must provde CLKF_USERMODE() and CLKF_BASEPRI() for use
    272      1.14  jonathan  * in machine-independent code. These differ on r4000 and r3000 systems;
    273      1.14  jonathan  * provide them in the port-dependent file that includes this one, using
    274      1.14  jonathan  * the macros below.
    275      1.14  jonathan  */
    276      1.14  jonathan 
    277      1.21  jonathan /* mips1 versions */
    278      1.22  jonathan #define	MIPS1_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KU_PREV)
    279      1.21  jonathan #define	MIPS1_CLKF_BASEPRI(framep)	\
    280      1.22  jonathan 	((~(framep)->sr & (MIPS_INT_MASK | MIPS_SR_INT_ENA_PREV)) == 0)
    281      1.14  jonathan 
    282      1.21  jonathan /* mips3 versions */
    283      1.22  jonathan #define	MIPS3_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KSU_USER)
    284      1.21  jonathan #define	MIPS3_CLKF_BASEPRI(framep)	\
    285      1.34     soren 	((~(framep)->sr & (MIPS_INT_MASK | MIPS_SR_INT_IE)) == 0)
    286      1.14  jonathan 
    287      1.56       uch #ifdef IPL_ICU_MASK
    288      1.56       uch #define ICU_CLKF_BASEPRI(framep)	((framep)->ppl == 0)
    289      1.56       uch #endif
    290      1.56       uch 
    291       1.1   deraadt #define	CLKF_PC(framep)		((framep)->pc)
    292       1.1   deraadt #define	CLKF_INTR(framep)	(0)
    293      1.18  jonathan 
    294      1.58    simonb #if defined(MIPS3_PLUS) && !defined(MIPS1)		/* XXX bogus! */
    295      1.21  jonathan #define	CLKF_USERMODE(framep)	MIPS3_CLKF_USERMODE(framep)
    296      1.21  jonathan #define	CLKF_BASEPRI(framep)	MIPS3_CLKF_BASEPRI(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 #define	CLKF_BASEPRI(framep)	MIPS1_CLKF_BASEPRI(framep)
    302      1.56       uch #endif
    303      1.56       uch 
    304      1.56       uch #ifdef IPL_ICU_MASK
    305      1.56       uch #undef CLKF_BASEPRI
    306      1.56       uch #define CLKF_BASEPRI(framep)	ICU_CLKF_BASEPRI(framep)
    307      1.21  jonathan #endif
    308      1.21  jonathan 
    309      1.58    simonb #if defined(MIPS3_PLUS) && defined(MIPS1)		/* XXX bogus! */
    310      1.21  jonathan #define CLKF_USERMODE(framep) \
    311      1.21  jonathan     ((CPUISMIPS3) ? MIPS3_CLKF_USERMODE(framep):  MIPS1_CLKF_USERMODE(framep))
    312      1.21  jonathan #define CLKF_BASEPRI(framep) \
    313      1.21  jonathan     ((CPUISMIPS3) ? MIPS3_CLKF_BASEPRI(framep):  MIPS1_CLKF_BASEPRI(framep))
    314      1.18  jonathan #endif
    315      1.18  jonathan 
    316      1.47   thorpej /*
    317      1.47   thorpej  * This is used during profiling to integrate system time.  It can safely
    318      1.47   thorpej  * assume that the process is resident.
    319      1.47   thorpej  */
    320      1.48   thorpej #define	PROC_PC(p)							\
    321      1.48   thorpej 	(((struct frame *)(p)->p_md.md_regs)->f_regs[37])	/* XXX PC */
    322       1.1   deraadt 
    323       1.1   deraadt /*
    324       1.1   deraadt  * Preempt the current process if in interrupt from user mode,
    325       1.1   deraadt  * or after the current trap/syscall if in system mode.
    326       1.1   deraadt  */
    327      1.50   thorpej #define	need_resched(ci)						\
    328      1.50   thorpej do {									\
    329      1.50   thorpej 	want_resched = 1;						\
    330      1.50   thorpej 	if (curproc != NULL)						\
    331      1.50   thorpej 		aston(curproc);						\
    332      1.50   thorpej } while (/*CONSTCOND*/0)
    333       1.1   deraadt 
    334       1.1   deraadt /*
    335       1.1   deraadt  * Give a profiling tick to the current process when the user profiling
    336      1.13  jonathan  * buffer pages are invalid.  On the MIPS, request an ast to send us
    337       1.1   deraadt  * through trap, marking the proc as needing a profiling tick.
    338       1.1   deraadt  */
    339      1.50   thorpej #define	need_proftick(p)						\
    340      1.50   thorpej do {									\
    341      1.50   thorpej 	(p)->p_flag |= P_OWEUPC;					\
    342      1.50   thorpej 	aston(p);							\
    343      1.50   thorpej } while (/*CONSTCOND*/0)
    344       1.1   deraadt 
    345       1.1   deraadt /*
    346       1.1   deraadt  * Notify the current process (p) that it has a signal pending,
    347       1.1   deraadt  * process as soon as possible.
    348       1.1   deraadt  */
    349      1.50   thorpej #define	signotify(p)	aston(p)
    350       1.1   deraadt 
    351      1.50   thorpej #define aston(p)	((p)->p_md.md_astpending = 1)
    352       1.1   deraadt 
    353      1.49   thorpej extern int want_resched;		/* resched() was called */
    354      1.28    castor 
    355      1.23   thorpej /*
    356      1.37    simonb  * Misc prototypes and variable declarations.
    357      1.23   thorpej  */
    358      1.70   thorpej struct lwp;
    359      1.28    castor struct user;
    360      1.37    simonb 
    361      1.70   thorpej extern struct lwp *fpcurlwp;	/* the current FPU owner */
    362      1.68    simonb extern struct pcb *curpcb;	/* the current running pcb */
    363      1.68    simonb extern struct segtab *segbase;	/* current segtab base */
    364      1.25  jonathan 
    365      1.28    castor /* trap.c */
    366      1.58    simonb void	netintr(void);
    367      1.58    simonb int	kdbpeek(vaddr_t);
    368      1.23   thorpej 
    369      1.28    castor /* mips_machdep.c */
    370      1.58    simonb void	dumpsys(void);
    371      1.58    simonb int	savectx(struct user *);
    372      1.58    simonb void	mips_init_msgbuf(void);
    373      1.70   thorpej void	savefpregs(struct lwp *);
    374      1.70   thorpej void	loadfpregs(struct lwp *);
    375      1.13  jonathan 
    376      1.61    simonb /* locore*.S */
    377      1.58    simonb int	badaddr(void *, size_t);
    378      1.61    simonb int	badaddr64(uint64_t, size_t);
    379      1.25  jonathan 
    380      1.25  jonathan /* mips_machdep.c */
    381      1.58    simonb void	cpu_identify(void);
    382      1.58    simonb void	mips_vector_init(void);
    383      1.27   thorpej 
    384      1.33    simonb #endif /* ! _LOCORE */
    385      1.28    castor #endif /* _KERNEL */
    386       1.1   deraadt #endif /* _CPU_H_ */
    387