Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.90.16.11
      1  1.90.16.11      matt /*	$NetBSD: cpu.h,v 1.90.16.11 2010/01/14 00:40:35 matt 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.71       agc  * 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.73      yamt #include <sys/cpu_data.h>
     49  1.90.16.10     cliff #include <sys/device.h>
     50        1.55    simonb 
     51        1.53    simonb #if defined(_KERNEL_OPT)
     52        1.53    simonb #include "opt_lockdebug.h"
     53  1.90.16.11      matt #include "opt_multiprocessor.h"
     54        1.53    simonb #endif
     55        1.53    simonb 
     56   1.90.16.5     cliff struct pridtab {
     57   1.90.16.5     cliff 	int	cpu_cid;
     58   1.90.16.5     cliff 	int	cpu_pid;
     59   1.90.16.5     cliff 	int	cpu_rev;	/* -1 == wildcard */
     60   1.90.16.5     cliff 	int	cpu_copts;	/* -1 == wildcard */
     61   1.90.16.5     cliff 	int	cpu_isa;	/* -1 == probed (mips32/mips64) */
     62   1.90.16.5     cliff 	int	cpu_ntlb;	/* -1 == unknown, 0 == probed */
     63   1.90.16.5     cliff 	int	cpu_flags;
     64   1.90.16.5     cliff 	u_int	cpu_cp0flags;	/* presence of some cp0 regs */
     65   1.90.16.5     cliff 	u_int	cpu_cidflags;	/* company-specific flags */
     66   1.90.16.5     cliff 	const char	*cpu_name;
     67   1.90.16.5     cliff };
     68   1.90.16.5     cliff 
     69   1.90.16.5     cliff extern const struct pridtab *mycpu;
     70   1.90.16.5     cliff 
     71   1.90.16.5     cliff /*
     72   1.90.16.5     cliff  * bitfield defines for cpu_cp0flags
     73   1.90.16.5     cliff  */
     74   1.90.16.5     cliff #define  MIPS_CP0FL_USE		__BIT(0)	/* use these flags */
     75   1.90.16.5     cliff #define  MIPS_CP0FL_ECC		__BIT(1)
     76   1.90.16.5     cliff #define  MIPS_CP0FL_CACHE_ERR	__BIT(2)
     77   1.90.16.5     cliff #define  MIPS_CP0FL_EIRR	__BIT(3)
     78   1.90.16.5     cliff #define  MIPS_CP0FL_EIMR	__BIT(4)
     79   1.90.16.5     cliff #define  MIPS_CP0FL_EBASE	__BIT(5)
     80   1.90.16.5     cliff #define  MIPS_CP0FL_CONFIG	__BIT(6)
     81   1.90.16.5     cliff #define  MIPS_CP0FL_CONFIGn(n)	(__BIT(7) << ((n) & 7))
     82   1.90.16.5     cliff 
     83   1.90.16.5     cliff /*
     84   1.90.16.5     cliff  * cpu_cidflags defines, by company
     85   1.90.16.5     cliff  */
     86   1.90.16.5     cliff /*
     87   1.90.16.5     cliff  * RMI company-specific cpu_cidflags
     88   1.90.16.5     cliff  */
     89  1.90.16.10     cliff #define MIPS_CIDFL_RMI_TYPE     	__BITS(2,0)
     90  1.90.16.10     cliff # define  CIDFL_RMI_TYPE_XLR     	0
     91  1.90.16.10     cliff # define  CIDFL_RMI_TYPE_XLS     	1
     92  1.90.16.10     cliff # define  CIDFL_RMI_TYPE_XLP     	2
     93  1.90.16.10     cliff #define MIPS_CIDFL_RMI_THREADS_MASK	__BITS(6,3)
     94  1.90.16.10     cliff # define MIPS_CIDFL_RMI_THREADS_SHIFT	3
     95  1.90.16.10     cliff #define MIPS_CIDFL_RMI_CORES_MASK	__BITS(10,7)
     96  1.90.16.10     cliff # define MIPS_CIDFL_RMI_CORES_SHIFT	7
     97  1.90.16.10     cliff # define LOG2_1	0
     98  1.90.16.10     cliff # define LOG2_2	1
     99  1.90.16.10     cliff # define LOG2_4	2
    100  1.90.16.10     cliff # define LOG2_8	3
    101  1.90.16.10     cliff # define MIPS_CIDFL_RMI_CPUS(ncores, nthreads)				\
    102  1.90.16.10     cliff 		((LOG2_ ## ncores << MIPS_CIDFL_RMI_CORES_SHIFT)	\
    103  1.90.16.10     cliff 		|(LOG2_ ## nthreads << MIPS_CIDFL_RMI_THREADS_SHIFT))
    104  1.90.16.10     cliff # define MIPS_CIDFL_RMI_NTHREADS(cidfl)					\
    105  1.90.16.10     cliff 		(1 << (((cidfl) & MIPS_CIDFL_RMI_THREADS_MASK)		\
    106  1.90.16.10     cliff 			>> MIPS_CIDFL_RMI_THREADS_SHIFT))
    107  1.90.16.10     cliff # define MIPS_CIDFL_RMI_NCORES(cidfl)					\
    108  1.90.16.10     cliff 		(1 << (((cidfl) & MIPS_CIDFL_RMI_CORES_MASK)		\
    109  1.90.16.10     cliff 			>> MIPS_CIDFL_RMI_CORES_SHIFT))
    110  1.90.16.10     cliff #define MIPS_CIDFL_RMI_L2SZ_MASK	__BITS(14,11)
    111  1.90.16.10     cliff # define MIPS_CIDFL_RMI_L2SZ_SHIFT	11
    112  1.90.16.10     cliff # define RMI_L2SZ_256KB	 0
    113  1.90.16.10     cliff # define RMI_L2SZ_512KB  1
    114  1.90.16.10     cliff # define RMI_L2SZ_1MB    2
    115  1.90.16.10     cliff # define RMI_L2SZ_2MB    3
    116  1.90.16.10     cliff # define RMI_L2SZ_4MB    4
    117  1.90.16.10     cliff # define MIPS_CIDFL_RMI_L2(l2sz)					\
    118  1.90.16.10     cliff 		(RMI_L2SZ_ ## l2sz << MIPS_CIDFL_RMI_L2SZ_SHIFT)
    119  1.90.16.10     cliff # define MIPS_CIDFL_RMI_L2SZ(cidfl)					\
    120  1.90.16.10     cliff 		((256*1024) << (((cidfl) & MIPS_CIDFL_RMI_L2SZ_MASK)	\
    121  1.90.16.10     cliff 			>> MIPS_CIDFL_RMI_L2SZ_SHIFT))
    122  1.90.16.10     cliff 
    123   1.90.16.5     cliff 
    124   1.90.16.5     cliff 
    125        1.53    simonb struct cpu_info {
    126        1.73      yamt 	struct cpu_data ci_data;	/* MI per-cpu data */
    127        1.85        ad 	struct cpu_info *ci_next;	/* Next CPU in list */
    128        1.85        ad 	cpuid_t ci_cpuid;		/* Machine-level identifier */
    129        1.58    simonb 	u_long ci_cpu_freq;		/* CPU frequency */
    130        1.58    simonb 	u_long ci_cycles_per_hz;	/* CPU freq / hz */
    131        1.58    simonb 	u_long ci_divisor_delay;	/* for delay/DELAY */
    132        1.90   tsutsui 	u_long ci_divisor_recip;	/* unused, for obsolete microtime(9) */
    133        1.82      yamt 	struct lwp *ci_curlwp;		/* currently running lwp */
    134        1.82      yamt 	struct lwp *ci_fpcurlwp;	/* the current FPU owner */
    135        1.82      yamt 	int ci_want_resched;		/* user preemption pending */
    136        1.78        ad 	int ci_mtx_count;		/* negative count of held mutexes */
    137        1.78        ad 	int ci_mtx_oldspl;		/* saved SPL value */
    138        1.86        ad 	int ci_idepth;			/* hardware interrupt depth */
    139  1.90.16.11      matt 	device_t ci_dev;		/* owning device */
    140  1.90.16.11      matt 	vaddr_t ci_ebase;		/* VA of exception base */
    141  1.90.16.11      matt 	paddr_t ci_ebase_pa;		/* PA of exception base */
    142        1.53    simonb };
    143        1.68    simonb 
    144        1.85        ad #define	CPU_INFO_ITERATOR		int
    145        1.85        ad #define	CPU_INFO_FOREACH(cii, ci)	\
    146        1.85        ad     (void)(cii), ci = &cpu_info_store; ci != NULL; ci = ci->ci_next
    147        1.85        ad 
    148        1.68    simonb #endif /* !_LOCORE */
    149        1.68    simonb #endif /* _KERNEL */
    150        1.53    simonb 
    151        1.36     soren /*
    152        1.36     soren  * CTL_MACHDEP definitions.
    153        1.36     soren  */
    154        1.36     soren #define CPU_CONSDEV		1	/* dev_t: console terminal device */
    155        1.36     soren #define CPU_BOOTED_KERNEL	2	/* string: booted kernel name */
    156        1.36     soren #define CPU_ROOT_DEVICE		3	/* string: root device name */
    157        1.66  gmcgarry #define CPU_LLSC		4	/* OS/CPU supports LL/SC instruction */
    158        1.43     jeffs 
    159        1.43     jeffs /*
    160        1.51       wiz  * Platform can override, but note this breaks userland compatibility
    161        1.43     jeffs  * with other mips platforms.
    162        1.43     jeffs  */
    163        1.43     jeffs #ifndef CPU_MAXID
    164        1.67      shin #define CPU_MAXID		5	/* number of valid machdep ids */
    165        1.36     soren 
    166        1.42     jeffs #endif
    167        1.33    simonb 
    168        1.33    simonb #ifdef _KERNEL
    169        1.87        he #if defined(_LKM) || defined(_STANDALONE)
    170        1.87        he /* Assume all CPU architectures are valid for LKM's and standlone progs */
    171        1.77   tsutsui #define	MIPS1	1
    172        1.77   tsutsui #define	MIPS3	1
    173        1.77   tsutsui #define	MIPS4	1
    174        1.77   tsutsui #define	MIPS32	1
    175        1.77   tsutsui #define	MIPS64	1
    176        1.77   tsutsui #endif
    177        1.77   tsutsui 
    178        1.77   tsutsui #if (MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 0
    179        1.77   tsutsui #error at least one of MIPS1, MIPS3, MIPS4, MIPS32 or MIPS64 must be specified
    180        1.77   tsutsui #endif
    181        1.53    simonb 
    182        1.77   tsutsui /* Shortcut for MIPS3 or above defined */
    183        1.77   tsutsui #if defined(MIPS3) || defined(MIPS4) || defined(MIPS32) || defined(MIPS64)
    184        1.77   tsutsui #define	MIPS3_PLUS	1
    185        1.77   tsutsui #else
    186        1.77   tsutsui #undef MIPS3_PLUS
    187        1.77   tsutsui #endif
    188        1.33    simonb 
    189        1.33    simonb /*
    190        1.21  jonathan  * Macros to find the CPU architecture we're on at run-time,
    191        1.21  jonathan  * or if possible, at compile-time.
    192        1.21  jonathan  */
    193        1.21  jonathan 
    194        1.58    simonb #define	CPU_ARCH_MIPSx	0		/* XXX unknown */
    195        1.46       cgd #define	CPU_ARCH_MIPS1	(1 << 0)
    196        1.46       cgd #define	CPU_ARCH_MIPS2	(1 << 1)
    197        1.46       cgd #define	CPU_ARCH_MIPS3	(1 << 2)
    198        1.46       cgd #define	CPU_ARCH_MIPS4	(1 << 3)
    199        1.46       cgd #define	CPU_ARCH_MIPS5	(1 << 4)
    200        1.46       cgd #define	CPU_ARCH_MIPS32	(1 << 5)
    201        1.46       cgd #define	CPU_ARCH_MIPS64	(1 << 6)
    202        1.46       cgd 
    203        1.82      yamt /* Note: must be kept in sync with -ffixed-?? Makefile.mips. */
    204        1.82      yamt #define MIPS_CURLWP             $23
    205        1.82      yamt #define MIPS_CURLWP_QUOTED      "$23"
    206        1.82      yamt #define MIPS_CURLWP_CARD	23
    207        1.82      yamt #define	MIPS_CURLWP_FRAME(x)	FRAME_S7(x)
    208        1.82      yamt 
    209        1.58    simonb #ifndef _LOCORE
    210        1.82      yamt 
    211        1.77   tsutsui extern struct cpu_info cpu_info_store;
    212        1.82      yamt register struct lwp *mips_curlwp asm(MIPS_CURLWP_QUOTED);
    213        1.77   tsutsui 
    214        1.82      yamt #define	curlwp			mips_curlwp
    215        1.82      yamt #define	curcpu()		(curlwp->l_cpu)
    216        1.82      yamt #define	curpcb			((struct pcb *)curlwp->l_addr)
    217        1.82      yamt #define	fpcurlwp		(curcpu()->ci_fpcurlwp)
    218        1.82      yamt #define	cpu_number()		(0)
    219   1.90.16.1      matt #define	cpu_proc_fork(p1, p2)	((void)((p2)->p_md.md_abi = (p1)->p_md.md_abi))
    220        1.77   tsutsui 
    221        1.58    simonb /* XXX simonb
    222        1.58    simonb  * Should the following be in a cpu_info type structure?
    223        1.58    simonb  * And how many of these are per-cpu vs. per-system?  (Ie,
    224        1.58    simonb  * we can assume that all cpus have the same mmu-type, but
    225        1.58    simonb  * maybe not that all cpus run at the same clock speed.
    226        1.58    simonb  * Some SGI's apparently support R12k and R14k in the same
    227        1.58    simonb  * box.)
    228        1.58    simonb  */
    229        1.58    simonb extern int cpu_arch;
    230        1.58    simonb extern int mips_cpu_flags;
    231        1.58    simonb extern int mips_has_r4k_mmu;
    232        1.58    simonb extern int mips_has_llsc;
    233        1.58    simonb extern int mips3_pg_cached;
    234   1.90.16.2      matt #ifdef _LP64
    235   1.90.16.2      matt extern uint64_t mips3_xkphys_cached;
    236   1.90.16.2      matt #endif
    237        1.74   tsutsui extern u_int mips3_pg_shift;
    238        1.58    simonb 
    239        1.58    simonb #define	CPU_MIPS_R4K_MMU		0x0001
    240        1.58    simonb #define	CPU_MIPS_NO_LLSC		0x0002
    241        1.58    simonb #define	CPU_MIPS_CAUSE_IV		0x0004
    242        1.58    simonb #define	CPU_MIPS_HAVE_SPECIAL_CCA	0x0008	/* Defaults to '3' if not set. */
    243        1.58    simonb #define	CPU_MIPS_CACHED_CCA_MASK	0x0070
    244        1.58    simonb #define	CPU_MIPS_CACHED_CCA_SHIFT	 4
    245        1.62    simonb #define	CPU_MIPS_DOUBLE_COUNT		0x0080	/* 1 cp0 count == 2 clock cycles */
    246        1.63    simonb #define	CPU_MIPS_USE_WAIT		0x0100	/* Use "wait"-based cpu_idle() */
    247        1.63    simonb #define	CPU_MIPS_NO_WAIT		0x0200	/* Inverse of previous, for mips32/64 */
    248        1.69    simonb #define	CPU_MIPS_D_CACHE_COHERENT	0x0400	/* D-cache is fully coherent */
    249        1.69    simonb #define	CPU_MIPS_I_D_CACHE_COHERENT	0x0800	/* I-cache funcs don't need to flush the D-cache */
    250   1.90.16.3      matt #define	CPU_MIPS_NO_LLADDR		0x1000
    251   1.90.16.5     cliff #define	CPU_MIPS_HAVE_MxCR		0x2000	/* have mfcr, mtcr insns */
    252        1.58    simonb #define	MIPS_NOT_SUPP			0x8000
    253        1.60    simonb 
    254        1.78        ad #endif	/* !_LOCORE */
    255        1.78        ad 
    256        1.78        ad #if ((MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 1) || defined(_LOCORE)
    257        1.78        ad 
    258        1.78        ad #if defined(MIPS1)
    259        1.78        ad 
    260        1.58    simonb # define CPUISMIPS3		0
    261        1.58    simonb # define CPUIS64BITS		0
    262        1.58    simonb # define CPUISMIPS32		0
    263        1.58    simonb # define CPUISMIPS64		0
    264        1.58    simonb # define CPUISMIPSNN		0
    265        1.58    simonb # define MIPS_HAS_R4K_MMU	0
    266        1.58    simonb # define MIPS_HAS_CLOCK		0
    267        1.58    simonb # define MIPS_HAS_LLSC		0
    268   1.90.16.4      matt # define MIPS_HAS_LLADDR	0
    269        1.58    simonb 
    270        1.78        ad #elif defined(MIPS3) || defined(MIPS4)
    271        1.78        ad 
    272        1.58    simonb # define CPUISMIPS3		1
    273        1.58    simonb # define CPUIS64BITS		1
    274        1.58    simonb # define CPUISMIPS32		0
    275        1.58    simonb # define CPUISMIPS64		0
    276        1.58    simonb # define CPUISMIPSNN		0
    277        1.58    simonb # define MIPS_HAS_R4K_MMU	1
    278        1.58    simonb # define MIPS_HAS_CLOCK		1
    279        1.78        ad # if defined(_LOCORE)
    280        1.78        ad #  if !defined(MIPS3_5900) && !defined(MIPS3_4100)
    281        1.78        ad #   define MIPS_HAS_LLSC	1
    282        1.78        ad #  else
    283        1.78        ad #   define MIPS_HAS_LLSC	0
    284        1.78        ad #  endif
    285        1.78        ad # else	/* _LOCORE */
    286        1.78        ad #  define MIPS_HAS_LLSC		(mips_has_llsc)
    287        1.78        ad # endif	/* _LOCORE */
    288   1.90.16.4      matt # define MIPS_HAS_LLADDR	((mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    289        1.78        ad 
    290        1.78        ad #elif defined(MIPS32)
    291        1.58    simonb 
    292        1.58    simonb # define CPUISMIPS3		1
    293        1.58    simonb # define CPUIS64BITS		0
    294        1.58    simonb # define CPUISMIPS32		1
    295        1.58    simonb # define CPUISMIPS64		0
    296        1.58    simonb # define CPUISMIPSNN		1
    297        1.58    simonb # define MIPS_HAS_R4K_MMU	1
    298        1.58    simonb # define MIPS_HAS_CLOCK		1
    299        1.58    simonb # define MIPS_HAS_LLSC		1
    300   1.90.16.4      matt # define MIPS_HAS_LLADDR	((mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    301        1.58    simonb 
    302        1.80     oster #elif defined(MIPS64)
    303        1.78        ad 
    304        1.58    simonb # define CPUISMIPS3		1
    305        1.58    simonb # define CPUIS64BITS		1
    306        1.58    simonb # define CPUISMIPS32		0
    307        1.58    simonb # define CPUISMIPS64		1
    308        1.58    simonb # define CPUISMIPSNN		1
    309        1.58    simonb # define MIPS_HAS_R4K_MMU	1
    310        1.58    simonb # define MIPS_HAS_CLOCK		1
    311        1.58    simonb # define MIPS_HAS_LLSC		1
    312   1.90.16.4      matt # define MIPS_HAS_LLADDR	((mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    313        1.78        ad 
    314        1.78        ad #endif
    315        1.21  jonathan 
    316        1.58    simonb #else /* run-time test */
    317        1.21  jonathan 
    318        1.78        ad #ifndef	_LOCORE
    319        1.78        ad 
    320        1.58    simonb #define	MIPS_HAS_R4K_MMU	(mips_has_r4k_mmu)
    321        1.58    simonb #define	MIPS_HAS_LLSC		(mips_has_llsc)
    322   1.90.16.3      matt #define	MIPS_HAS_LLADDR		((mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    323        1.45       cgd 
    324        1.45       cgd /* This test is ... rather bogus */
    325        1.58    simonb #define	CPUISMIPS3	((cpu_arch & \
    326        1.58    simonb 	(CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
    327        1.58    simonb 
    328        1.58    simonb /* And these aren't much better while the previous test exists as is... */
    329        1.58    simonb #define	CPUISMIPS32	((cpu_arch & CPU_ARCH_MIPS32) != 0)
    330        1.58    simonb #define	CPUISMIPS64	((cpu_arch & CPU_ARCH_MIPS64) != 0)
    331        1.58    simonb #define	CPUISMIPSNN	((cpu_arch & (CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
    332        1.58    simonb #define	CPUIS64BITS	((cpu_arch & \
    333        1.58    simonb 	(CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS64)) != 0)
    334        1.58    simonb 
    335        1.58    simonb #define	MIPS_HAS_CLOCK	(cpu_arch >= CPU_ARCH_MIPS3)
    336        1.78        ad 
    337        1.78        ad #else	/* !_LOCORE */
    338        1.78        ad 
    339        1.78        ad #define	MIPS_HAS_LLSC	0
    340        1.78        ad 
    341        1.78        ad #endif	/* !_LOCORE */
    342        1.78        ad 
    343        1.21  jonathan #endif /* run-time test */
    344        1.21  jonathan 
    345        1.78        ad #ifndef	_LOCORE
    346        1.58    simonb 
    347        1.21  jonathan /*
    348         1.1   deraadt  * definitions of cpu-dependent requirements
    349         1.1   deraadt  * referenced in generic code
    350         1.1   deraadt  */
    351        1.11       cgd #define	cpu_swapout(p)			panic("cpu_swapout: can't get here");
    352        1.42     jeffs 
    353   1.90.16.8     cliff void cpu_intr(uint32_t, uint32_t, vaddr_t, uint32_t);
    354         1.1   deraadt 
    355         1.1   deraadt /*
    356         1.1   deraadt  * Arguments to hardclock and gatherstats encapsulate the previous
    357         1.1   deraadt  * machine state in an opaque clockframe.
    358         1.1   deraadt  */
    359         1.5     glass struct clockframe {
    360   1.90.16.8     cliff 	vaddr_t	pc;	/* program counter at time of interrupt */
    361   1.90.16.8     cliff 	uint32_t	sr;	/* status register at time of interrupt */
    362   1.90.16.8     cliff 	u_int		ppl;	/* previous priority level at time of interrupt */
    363         1.5     glass };
    364         1.1   deraadt 
    365        1.14  jonathan /*
    366        1.79        ad  * A port must provde CLKF_USERMODE() for use in machine-independent code.
    367        1.79        ad  * These differ on r4000 and r3000 systems; provide them in the
    368        1.79        ad  * port-dependent file that includes this one, using the macros below.
    369        1.14  jonathan  */
    370        1.14  jonathan 
    371        1.21  jonathan /* mips1 versions */
    372        1.22  jonathan #define	MIPS1_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KU_PREV)
    373        1.14  jonathan 
    374        1.21  jonathan /* mips3 versions */
    375        1.22  jonathan #define	MIPS3_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KSU_USER)
    376        1.56       uch 
    377         1.1   deraadt #define	CLKF_PC(framep)		((framep)->pc)
    378         1.1   deraadt #define	CLKF_INTR(framep)	(0)
    379        1.18  jonathan 
    380        1.58    simonb #if defined(MIPS3_PLUS) && !defined(MIPS1)		/* XXX bogus! */
    381        1.21  jonathan #define	CLKF_USERMODE(framep)	MIPS3_CLKF_USERMODE(framep)
    382        1.21  jonathan #endif
    383        1.21  jonathan 
    384        1.58    simonb #if !defined(MIPS3_PLUS) && defined(MIPS1)		/* XXX bogus! */
    385        1.21  jonathan #define	CLKF_USERMODE(framep)	MIPS1_CLKF_USERMODE(framep)
    386        1.21  jonathan #endif
    387        1.21  jonathan 
    388        1.58    simonb #if defined(MIPS3_PLUS) && defined(MIPS1)		/* XXX bogus! */
    389        1.21  jonathan #define CLKF_USERMODE(framep) \
    390        1.21  jonathan     ((CPUISMIPS3) ? MIPS3_CLKF_USERMODE(framep):  MIPS1_CLKF_USERMODE(framep))
    391        1.18  jonathan #endif
    392        1.18  jonathan 
    393        1.47   thorpej /*
    394        1.47   thorpej  * This is used during profiling to integrate system time.  It can safely
    395        1.47   thorpej  * assume that the process is resident.
    396        1.47   thorpej  */
    397        1.48   thorpej #define	PROC_PC(p)							\
    398        1.48   thorpej 	(((struct frame *)(p)->p_md.md_regs)->f_regs[37])	/* XXX PC */
    399         1.1   deraadt 
    400         1.1   deraadt /*
    401         1.1   deraadt  * Preempt the current process if in interrupt from user mode,
    402         1.1   deraadt  * or after the current trap/syscall if in system mode.
    403         1.1   deraadt  */
    404        1.82      yamt void	cpu_need_resched(struct cpu_info *, int);
    405         1.1   deraadt 
    406         1.1   deraadt /*
    407         1.1   deraadt  * Give a profiling tick to the current process when the user profiling
    408        1.13  jonathan  * buffer pages are invalid.  On the MIPS, request an ast to send us
    409         1.1   deraadt  * through trap, marking the proc as needing a profiling tick.
    410         1.1   deraadt  */
    411        1.78        ad #define	cpu_need_proftick(l)						\
    412        1.50   thorpej do {									\
    413        1.78        ad 	(l)->l_pflag |= LP_OWEUPC;					\
    414        1.78        ad 	aston(l);							\
    415        1.50   thorpej } while (/*CONSTCOND*/0)
    416         1.1   deraadt 
    417         1.1   deraadt /*
    418        1.81    simonb  * Notify the current lwp (l) that it has a signal pending,
    419         1.1   deraadt  * process as soon as possible.
    420         1.1   deraadt  */
    421        1.81    simonb #define	cpu_signotify(l)	aston(l)
    422         1.1   deraadt 
    423        1.78        ad #define aston(l)		((l)->l_md.md_astpending = 1)
    424         1.1   deraadt 
    425        1.23   thorpej /*
    426        1.37    simonb  * Misc prototypes and variable declarations.
    427        1.23   thorpej  */
    428        1.70   thorpej struct lwp;
    429        1.28    castor struct user;
    430        1.37    simonb 
    431   1.90.16.9      matt extern struct segtab *segbase;		/* current segtab base */
    432   1.90.16.9      matt extern int mips_poolpage_vmfreelist;	/* freelist to allocate poolpages */
    433        1.25  jonathan 
    434   1.90.16.6      matt /* copy.S */
    435   1.90.16.6      matt int8_t	ufetch_int8(void *);
    436   1.90.16.6      matt int16_t	ufetch_int16(void *);
    437   1.90.16.6      matt int32_t ufetch_int32(void *);
    438   1.90.16.6      matt uint8_t	ufetch_uint8(void *);
    439   1.90.16.6      matt uint16_t ufetch_uint16(void *);
    440   1.90.16.6      matt uint32_t ufetch_uint32(void *);
    441   1.90.16.6      matt int8_t	ufetch_int8_intrsafe(void *);
    442   1.90.16.6      matt int16_t	ufetch_int16_intrsafe(void *);
    443   1.90.16.6      matt int32_t ufetch_int32_intrsafe(void *);
    444   1.90.16.6      matt uint8_t	ufetch_uint8_intrsafe(void *);
    445   1.90.16.6      matt uint16_t ufetch_uint16_intrsafe(void *);
    446   1.90.16.6      matt uint32_t ufetch_uint32_intrsafe(void *);
    447   1.90.16.6      matt #ifdef _LP64
    448   1.90.16.6      matt int64_t ufetch_int64(void *);
    449   1.90.16.6      matt uint64_t ufetch_uint64(void *);
    450   1.90.16.6      matt int64_t ufetch_int64_intrsafe(void *);
    451   1.90.16.6      matt uint64_t ufetch_uint64_intrsafe(void *);
    452   1.90.16.6      matt #endif
    453   1.90.16.6      matt char	ufetch_char(void *);
    454   1.90.16.6      matt short	ufetch_short(void *);
    455   1.90.16.6      matt int	ufetch_int(void *);
    456   1.90.16.6      matt long	ufetch_long(void *);
    457   1.90.16.6      matt char	ufetch_char_intrsafe(void *);
    458   1.90.16.6      matt short	ufetch_short_intrsafe(void *);
    459   1.90.16.6      matt int	ufetch_int_intrsafe(void *);
    460   1.90.16.6      matt long	ufetch_long_intrsafe(void *);
    461   1.90.16.6      matt 
    462   1.90.16.6      matt u_char	ufetch_uchar(void *);
    463   1.90.16.6      matt u_short	ufetch_ushort(void *);
    464   1.90.16.6      matt u_int	ufetch_uint(void *);
    465   1.90.16.6      matt u_long	ufetch_ulong(void *);
    466   1.90.16.6      matt u_char	ufetch_uchar_intrsafe(void *);
    467   1.90.16.6      matt u_short	ufetch_ushort_intrsafe(void *);
    468   1.90.16.6      matt u_int	ufetch_uint_intrsafe(void *);
    469   1.90.16.6      matt u_long	ufetch_ulong_intrsafe(void *);
    470   1.90.16.6      matt void 	*ufetch_ptr(void *);
    471   1.90.16.6      matt 
    472   1.90.16.6      matt int	ustore_int8(void *, int8_t);
    473   1.90.16.6      matt int	ustore_int16(void *, int16_t);
    474   1.90.16.6      matt int	ustore_int32(void *, int32_t);
    475   1.90.16.6      matt int	ustore_uint8(void *, uint8_t);
    476   1.90.16.7      matt int	ustore_uint16(void *, uint16_t);
    477   1.90.16.6      matt int	ustore_uint32(void *, uint32_t);
    478   1.90.16.6      matt int	ustore_int8_intrsafe(void *, int8_t);
    479   1.90.16.6      matt int	ustore_int16_intrsafe(void *, int16_t);
    480   1.90.16.6      matt int	ustore_int32_intrsafe(void *, int32_t);
    481   1.90.16.6      matt int	ustore_uint8_intrsafe(void *, uint8_t);
    482   1.90.16.6      matt int	ustore_uint16_intrsafe(void *, uint16_t);
    483   1.90.16.6      matt int	ustore_uint32_intrsafe(void *, uint32_t);
    484   1.90.16.6      matt #ifdef _LP64
    485   1.90.16.6      matt int	ustore_int64(void *, int64_t);
    486   1.90.16.6      matt int	ustore_uint64(void *, uint64_t);
    487   1.90.16.6      matt int	ustore_int64_intrsafe(void *, int64_t);
    488   1.90.16.6      matt int	ustore_uint64_intrsafe(void *, uint64_t);
    489   1.90.16.6      matt #endif
    490   1.90.16.6      matt int	ustore_char(void *, char);
    491   1.90.16.6      matt int	ustore_char_intrsafe(void *, char);
    492   1.90.16.6      matt int	ustore_short(void *, short);
    493   1.90.16.6      matt int	ustore_short_intrsafe(void *, short);
    494   1.90.16.6      matt int	ustore_int(void *, int);
    495   1.90.16.6      matt int	ustore_int_intrsafe(void *, int);
    496   1.90.16.6      matt int	ustore_long(void *, long);
    497   1.90.16.6      matt int	ustore_long_intrsafe(void *, long);
    498   1.90.16.6      matt int	ustore_uchar(void *, u_char);
    499   1.90.16.6      matt int	ustore_uchar_intrsafe(void *, u_char);
    500   1.90.16.6      matt int	ustore_ushort(void *, u_short);
    501   1.90.16.6      matt int	ustore_ushort_intrsafe(void *, u_short);
    502   1.90.16.6      matt int	ustore_uint(void *, u_int);
    503   1.90.16.6      matt int	ustore_uint_intrsafe(void *, u_int);
    504   1.90.16.6      matt int	ustore_ulong(void *, u_long);
    505   1.90.16.6      matt int	ustore_ulong_intrsafe(void *, u_long);
    506   1.90.16.6      matt int 	ustore_ptr(void *, void *);
    507   1.90.16.6      matt int	ustore_ptr_intrsafe(void *, void *);
    508   1.90.16.6      matt 
    509   1.90.16.6      matt int	ustore_uint32_isync(void *, uint32_t);
    510   1.90.16.6      matt 
    511        1.28    castor /* trap.c */
    512        1.58    simonb void	netintr(void);
    513        1.58    simonb int	kdbpeek(vaddr_t);
    514        1.23   thorpej 
    515        1.28    castor /* mips_machdep.c */
    516   1.90.16.9      matt struct mips_vmfreelist;
    517   1.90.16.9      matt struct phys_ram_seg;
    518        1.58    simonb void	dumpsys(void);
    519        1.58    simonb int	savectx(struct user *);
    520        1.58    simonb void	mips_init_msgbuf(void);
    521   1.90.16.9      matt void	mips_init_lwp0_uarea(void);
    522   1.90.16.9      matt void	mips_page_physload(vaddr_t, vaddr_t,
    523   1.90.16.9      matt 	    const struct phys_ram_seg *, size_t,
    524   1.90.16.9      matt 	    const struct mips_vmfreelist *, size_t);
    525        1.70   thorpej void	savefpregs(struct lwp *);
    526        1.70   thorpej void	loadfpregs(struct lwp *);
    527        1.13  jonathan 
    528        1.61    simonb /* locore*.S */
    529        1.58    simonb int	badaddr(void *, size_t);
    530        1.61    simonb int	badaddr64(uint64_t, size_t);
    531        1.25  jonathan 
    532        1.25  jonathan /* mips_machdep.c */
    533  1.90.16.10     cliff void	cpu_identify(device_t);
    534        1.58    simonb void	mips_vector_init(void);
    535        1.27   thorpej 
    536        1.33    simonb #endif /* ! _LOCORE */
    537        1.28    castor #endif /* _KERNEL */
    538         1.1   deraadt #endif /* _CPU_H_ */
    539