Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.35
      1 /*	$NetBSD: cpu.h,v 1.35 2000/03/24 21:30:59 soren 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  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the University of
     21  *	California, Berkeley and its contributors.
     22  * 4. Neither the name of the University nor the names of its contributors
     23  *    may be used to endorse or promote products derived from this software
     24  *    without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36  * SUCH DAMAGE.
     37  *
     38  *	@(#)cpu.h	8.4 (Berkeley) 1/4/94
     39  */
     40 
     41 #ifndef _CPU_H_
     42 #define _CPU_H_
     43 
     44 /*
     45  * Exported definitions unique to NetBSD/mips cpu support.
     46  */
     47 
     48 #ifdef _KERNEL
     49 #ifndef _LOCORE
     50 
     51 /*
     52  * Macros to find the CPU architecture we're on at run-time,
     53  * or if possible, at compile-time.
     54  */
     55 
     56 #if (MIPS1 + MIPS3) == 1
     57 #ifdef MIPS1
     58 # define CPUISMIPS3	0
     59 #endif /* mips1 */
     60 
     61 #ifdef MIPS3
     62 #  define CPUISMIPS3	 1
     63 #endif /* mips1 */
     64 
     65 #else /* run-time test */
     66 extern int cpu_arch;
     67 #define CPUISMIPS3	(cpu_arch == 3)
     68 #endif /* run-time test */
     69 
     70 /*
     71  * definitions of cpu-dependent requirements
     72  * referenced in generic code
     73  */
     74 #define	cpu_wait(p)			/* nothing */
     75 #define	cpu_swapout(p)			panic("cpu_swapout: can't get here");
     76 #define	cpu_number()			0
     77 
     78 /*
     79  * Arguments to hardclock and gatherstats encapsulate the previous
     80  * machine state in an opaque clockframe.
     81  */
     82 struct clockframe {
     83 	int	pc;	/* program counter at time of interrupt */
     84 	int	sr;	/* status register at time of interrupt */
     85 };
     86 
     87 /*
     88  * A port must provde CLKF_USERMODE() and CLKF_BASEPRI() for use
     89  * in machine-independent code. These differ on r4000 and r3000 systems;
     90  * provide them in the port-dependent file that includes this one, using
     91  * the macros below.
     92  */
     93 
     94 /* mips1 versions */
     95 #define	MIPS1_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KU_PREV)
     96 #define	MIPS1_CLKF_BASEPRI(framep)	\
     97 	((~(framep)->sr & (MIPS_INT_MASK | MIPS_SR_INT_ENA_PREV)) == 0)
     98 
     99 /* mips3 versions */
    100 #define	MIPS3_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KSU_USER)
    101 #define	MIPS3_CLKF_BASEPRI(framep)	\
    102 	((~(framep)->sr & (MIPS_INT_MASK | MIPS_SR_INT_IE)) == 0)
    103 
    104 #define	CLKF_PC(framep)		((framep)->pc)
    105 #define	CLKF_INTR(framep)	(0)
    106 
    107 #if defined(MIPS3) && !defined(MIPS1)
    108 #define	CLKF_USERMODE(framep)	MIPS3_CLKF_USERMODE(framep)
    109 #define	CLKF_BASEPRI(framep)	MIPS3_CLKF_BASEPRI(framep)
    110 #endif
    111 
    112 #if !defined(MIPS3) && defined(MIPS1)
    113 #define	CLKF_USERMODE(framep)	MIPS1_CLKF_USERMODE(framep)
    114 #define	CLKF_BASEPRI(framep)	MIPS1_CLKF_BASEPRI(framep)
    115 #endif
    116 
    117 
    118 #if defined(MIPS3) && defined(MIPS1)
    119 #define CLKF_USERMODE(framep) \
    120     ((CPUISMIPS3) ? MIPS3_CLKF_USERMODE(framep):  MIPS1_CLKF_USERMODE(framep))
    121 #define CLKF_BASEPRI(framep) \
    122     ((CPUISMIPS3) ? MIPS3_CLKF_BASEPRI(framep):  MIPS1_CLKF_BASEPRI(framep))
    123 #endif
    124 
    125 
    126 /*
    127  * Preempt the current process if in interrupt from user mode,
    128  * or after the current trap/syscall if in system mode.
    129  */
    130 #define	need_resched()	{ want_resched = 1; aston(); }
    131 
    132 /*
    133  * Give a profiling tick to the current process when the user profiling
    134  * buffer pages are invalid.  On the MIPS, request an ast to send us
    135  * through trap, marking the proc as needing a profiling tick.
    136  */
    137 #define	need_proftick(p)	{ (p)->p_flag |= P_OWEUPC; aston(); }
    138 
    139 /*
    140  * Notify the current process (p) that it has a signal pending,
    141  * process as soon as possible.
    142  */
    143 #define	signotify(p)	aston()
    144 
    145 #define aston()		(astpending = 1)
    146 
    147 extern int astpending;	/* need to trap before returning to user mode */
    148 extern int want_resched;	/* resched() was called */
    149 #ifdef MIPS3
    150 extern u_int	mips_L2CacheSize;
    151 extern int	mips_L2CacheIsSnooping; /* L2 cache snoops uncached writes ? */
    152 extern int	mips_L2CacheMixed;
    153 
    154 #ifdef MIPS3_INTERNAL_TIMER_INTERRUPT
    155 extern u_int32_t mips3_intr_cycle_count;
    156 extern u_int32_t mips3_timer_delta;
    157 #endif
    158 #endif /* MIPS3 */
    159 
    160 /*
    161  * Misc prototypes.
    162  */
    163 struct proc;
    164 struct user;
    165 
    166 /* trap.c */
    167 void	child_return __P((void *));
    168 int	kdbpeek __P((vaddr_t));
    169 
    170 /* mips_machdep.c */
    171 void	dumpsys __P((void));
    172 int	savectx __P((struct user *));
    173 void	mips_init_msgbuf __P((void));
    174 
    175 /* locore.S */
    176 void	savefpregs __P((struct proc *));
    177 void	switchfpregs __P((struct proc *, struct proc *));
    178 int	badaddr __P((void *, size_t));
    179 
    180 /* mips_machdep.c */
    181 void	cpu_identify __P((void));
    182 void	mips_vector_init __P((void));
    183 
    184 #endif /* ! _LOCORE */
    185 #endif /* _KERNEL */
    186 
    187 #endif /* _CPU_H_ */
    188