Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.95.4.1
      1  1.95.4.1     rmind /*	$NetBSD: cpu.h,v 1.95.4.1 2011/03/05 20:51:03 rmind 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.55    simonb 
     48      1.53    simonb #if defined(_KERNEL_OPT)
     49  1.95.4.1     rmind #include "opt_cputype.h"
     50      1.53    simonb #include "opt_lockdebug.h"
     51  1.95.4.1     rmind #include "opt_multiprocessor.h"
     52      1.53    simonb #endif
     53      1.53    simonb 
     54  1.95.4.1     rmind #ifndef _LOCORE
     55  1.95.4.1     rmind #include <sys/cpu_data.h>
     56  1.95.4.1     rmind #include <sys/device_if.h>
     57  1.95.4.1     rmind #include <sys/evcnt.h>
     58      1.94      matt 
     59      1.53    simonb struct cpu_info {
     60      1.73      yamt 	struct cpu_data ci_data;	/* MI per-cpu data */
     61      1.85        ad 	struct cpu_info *ci_next;	/* Next CPU in list */
     62  1.95.4.1     rmind 	struct cpu_softc *ci_softc;	/* chip-dependent hook */
     63  1.95.4.1     rmind 	device_t ci_dev;		/* owning device */
     64      1.85        ad 	cpuid_t ci_cpuid;		/* Machine-level identifier */
     65  1.95.4.1     rmind 	u_long ci_cctr_freq;		/* cycle counter frequency */
     66      1.58    simonb 	u_long ci_cpu_freq;		/* CPU frequency */
     67      1.58    simonb 	u_long ci_cycles_per_hz;	/* CPU freq / hz */
     68      1.58    simonb 	u_long ci_divisor_delay;	/* for delay/DELAY */
     69      1.90   tsutsui 	u_long ci_divisor_recip;	/* unused, for obsolete microtime(9) */
     70      1.82      yamt 	struct lwp *ci_curlwp;		/* currently running lwp */
     71  1.95.4.1     rmind 	volatile int ci_want_resched;	/* user preemption pending */
     72      1.78        ad 	int ci_mtx_count;		/* negative count of held mutexes */
     73      1.78        ad 	int ci_mtx_oldspl;		/* saved SPL value */
     74      1.86        ad 	int ci_idepth;			/* hardware interrupt depth */
     75  1.95.4.1     rmind 	int ci_cpl;			/* current [interrupt] priority level */
     76  1.95.4.1     rmind 	uint32_t ci_next_cp0_clk_intr;	/* for hard clock intr scheduling */
     77  1.95.4.1     rmind 	struct evcnt ci_ev_count_compare;		/* hard clock intr counter */
     78  1.95.4.1     rmind 	struct evcnt ci_ev_count_compare_missed;	/* hard clock miss counter */
     79  1.95.4.1     rmind 	struct lwp *ci_softlwps[SOFTINT_COUNT];
     80  1.95.4.1     rmind 	volatile u_int ci_softints;
     81  1.95.4.1     rmind 	struct evcnt ci_ev_fpu_loads;	/* fpu load counter */
     82  1.95.4.1     rmind 	struct evcnt ci_ev_fpu_saves;	/* fpu save counter */
     83  1.95.4.1     rmind 	struct evcnt ci_ev_tlbmisses;
     84  1.95.4.1     rmind 
     85  1.95.4.1     rmind 	/*
     86  1.95.4.1     rmind 	 * Per-cpu pmap information
     87  1.95.4.1     rmind 	 */
     88  1.95.4.1     rmind 	int ci_tlb_slot;		/* reserved tlb entry for cpu_info */
     89  1.95.4.1     rmind 	u_int ci_pmap_asid_cur;		/* current ASID */
     90  1.95.4.1     rmind 	struct pmap_tlb_info *ci_tlb_info; /* tlb information for this cpu */
     91  1.95.4.1     rmind 	union segtab *ci_pmap_seg0tab;
     92  1.95.4.1     rmind #ifdef _LP64
     93  1.95.4.1     rmind 	union segtab *ci_pmap_segtab;
     94  1.95.4.1     rmind #else
     95  1.95.4.1     rmind 	vaddr_t ci_pmap_srcbase;	/* starting VA of ephemeral src space */
     96  1.95.4.1     rmind 	vaddr_t ci_pmap_dstbase;	/* starting VA of ephemeral dst space */
     97  1.95.4.1     rmind #endif
     98  1.95.4.1     rmind 
     99  1.95.4.1     rmind 
    100  1.95.4.1     rmind #ifdef MULTIPROCESSOR
    101  1.95.4.1     rmind 	volatile u_long ci_flags;
    102  1.95.4.1     rmind 	volatile uint64_t ci_request_ipis;
    103  1.95.4.1     rmind 					/* bitmask of IPIs requested */
    104  1.95.4.1     rmind 					/*  use on chips where hw cannot pass tag */
    105  1.95.4.1     rmind 	uint64_t ci_active_ipis;	/* bitmask of IPIs being serviced */
    106  1.95.4.1     rmind 	uint32_t ci_ksp_tlb_slot;	/* tlb entry for kernel stack */
    107  1.95.4.1     rmind 	struct evcnt ci_evcnt_all_ipis;	/* aggregated IPI counter */
    108  1.95.4.1     rmind 	struct evcnt ci_evcnt_per_ipi[NIPIS];	/* individual IPI counters*/
    109  1.95.4.1     rmind 	struct evcnt ci_evcnt_synci_activate_rqst;
    110  1.95.4.1     rmind 	struct evcnt ci_evcnt_synci_onproc_rqst;
    111  1.95.4.1     rmind 	struct evcnt ci_evcnt_synci_deferred_rqst;
    112  1.95.4.1     rmind 	struct evcnt ci_evcnt_synci_ipi_rqst;
    113  1.95.4.1     rmind 
    114  1.95.4.1     rmind #define	CPUF_PRIMARY	0x01		/* CPU is primary CPU */
    115  1.95.4.1     rmind #define	CPUF_PRESENT	0x02		/* CPU is present */
    116  1.95.4.1     rmind #define	CPUF_RUNNING	0x04		/* CPU is running */
    117  1.95.4.1     rmind #define	CPUF_PAUSED	0x08		/* CPU is paused */
    118  1.95.4.1     rmind #define	CPUF_USERPMAP	0x20		/* CPU has a user pmap activated */
    119  1.95.4.1     rmind #endif
    120  1.95.4.1     rmind 
    121      1.53    simonb };
    122      1.68    simonb 
    123      1.85        ad #define	CPU_INFO_ITERATOR		int
    124      1.85        ad #define	CPU_INFO_FOREACH(cii, ci)	\
    125      1.85        ad     (void)(cii), ci = &cpu_info_store; ci != NULL; ci = ci->ci_next
    126      1.85        ad 
    127      1.68    simonb #endif /* !_LOCORE */
    128      1.68    simonb #endif /* _KERNEL */
    129      1.53    simonb 
    130      1.36     soren /*
    131      1.36     soren  * CTL_MACHDEP definitions.
    132      1.36     soren  */
    133      1.36     soren #define CPU_CONSDEV		1	/* dev_t: console terminal device */
    134      1.36     soren #define CPU_BOOTED_KERNEL	2	/* string: booted kernel name */
    135      1.36     soren #define CPU_ROOT_DEVICE		3	/* string: root device name */
    136      1.66  gmcgarry #define CPU_LLSC		4	/* OS/CPU supports LL/SC instruction */
    137      1.43     jeffs 
    138      1.43     jeffs /*
    139      1.51       wiz  * Platform can override, but note this breaks userland compatibility
    140      1.43     jeffs  * with other mips platforms.
    141      1.43     jeffs  */
    142      1.43     jeffs #ifndef CPU_MAXID
    143      1.67      shin #define CPU_MAXID		5	/* number of valid machdep ids */
    144      1.42     jeffs #endif
    145      1.33    simonb 
    146      1.33    simonb #ifdef _KERNEL
    147  1.95.4.1     rmind #if defined(_MODULAR) || defined(_LKM) || defined(_STANDALONE)
    148      1.87        he /* Assume all CPU architectures are valid for LKM's and standlone progs */
    149      1.77   tsutsui #define	MIPS1	1
    150      1.77   tsutsui #define	MIPS3	1
    151      1.77   tsutsui #define	MIPS4	1
    152      1.77   tsutsui #define	MIPS32	1
    153      1.77   tsutsui #define	MIPS64	1
    154      1.77   tsutsui #endif
    155      1.77   tsutsui 
    156      1.77   tsutsui #if (MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 0
    157      1.77   tsutsui #error at least one of MIPS1, MIPS3, MIPS4, MIPS32 or MIPS64 must be specified
    158      1.77   tsutsui #endif
    159      1.53    simonb 
    160      1.77   tsutsui /* Shortcut for MIPS3 or above defined */
    161      1.77   tsutsui #if defined(MIPS3) || defined(MIPS4) || defined(MIPS32) || defined(MIPS64)
    162      1.77   tsutsui #define	MIPS3_PLUS	1
    163  1.95.4.1     rmind #define __HAVE_CPU_COUNTER
    164      1.77   tsutsui #else
    165      1.77   tsutsui #undef MIPS3_PLUS
    166      1.77   tsutsui #endif
    167      1.33    simonb 
    168      1.33    simonb /*
    169      1.21  jonathan  * Macros to find the CPU architecture we're on at run-time,
    170      1.21  jonathan  * or if possible, at compile-time.
    171      1.21  jonathan  */
    172      1.21  jonathan 
    173      1.58    simonb #define	CPU_ARCH_MIPSx	0		/* XXX unknown */
    174      1.46       cgd #define	CPU_ARCH_MIPS1	(1 << 0)
    175      1.46       cgd #define	CPU_ARCH_MIPS2	(1 << 1)
    176      1.46       cgd #define	CPU_ARCH_MIPS3	(1 << 2)
    177      1.46       cgd #define	CPU_ARCH_MIPS4	(1 << 3)
    178      1.46       cgd #define	CPU_ARCH_MIPS5	(1 << 4)
    179      1.46       cgd #define	CPU_ARCH_MIPS32	(1 << 5)
    180      1.46       cgd #define	CPU_ARCH_MIPS64	(1 << 6)
    181      1.46       cgd 
    182      1.82      yamt /* Note: must be kept in sync with -ffixed-?? Makefile.mips. */
    183  1.95.4.1     rmind #define MIPS_CURLWP             $24
    184  1.95.4.1     rmind #define MIPS_CURLWP_QUOTED      "$24"
    185  1.95.4.1     rmind #define MIPS_CURLWP_LABEL	_L_T8
    186  1.95.4.1     rmind #define MIPS_CURLWP_REG		_R_T8
    187  1.95.4.1     rmind #define TF_MIPS_CURLWP(x)	TF_REG_T8(x)
    188      1.82      yamt 
    189      1.58    simonb #ifndef _LOCORE
    190      1.82      yamt 
    191      1.77   tsutsui extern struct cpu_info cpu_info_store;
    192      1.82      yamt register struct lwp *mips_curlwp asm(MIPS_CURLWP_QUOTED);
    193      1.77   tsutsui 
    194      1.82      yamt #define	curlwp			mips_curlwp
    195      1.82      yamt #define	curcpu()		(curlwp->l_cpu)
    196      1.92     rmind #define	curpcb			((struct pcb *)lwp_getpcb(curlwp))
    197  1.95.4.1     rmind #ifdef MULTIPROCESSOR
    198  1.95.4.1     rmind #define	cpu_number()		(curcpu()->ci_index)
    199  1.95.4.1     rmind #define	CPU_IS_PRIMARY(ci)	((ci)->ci_flags & CPUF_PRIMARY)
    200  1.95.4.1     rmind #else
    201      1.82      yamt #define	cpu_number()		(0)
    202  1.95.4.1     rmind #define	CPU_IS_PRIMARY(ci)	(true)
    203  1.95.4.1     rmind #endif
    204      1.77   tsutsui 
    205      1.58    simonb /* XXX simonb
    206      1.58    simonb  * Should the following be in a cpu_info type structure?
    207      1.58    simonb  * And how many of these are per-cpu vs. per-system?  (Ie,
    208      1.58    simonb  * we can assume that all cpus have the same mmu-type, but
    209      1.58    simonb  * maybe not that all cpus run at the same clock speed.
    210      1.58    simonb  * Some SGI's apparently support R12k and R14k in the same
    211      1.58    simonb  * box.)
    212      1.58    simonb  */
    213  1.95.4.1     rmind struct mips_options {
    214  1.95.4.1     rmind 	const struct pridtab *mips_cpu;
    215  1.95.4.1     rmind 
    216  1.95.4.1     rmind 	u_int mips_cpu_arch;
    217  1.95.4.1     rmind 	u_int mips_cpu_mhz; /* CPU speed in MHz, estimated by mc_cpuspeed(). */
    218  1.95.4.1     rmind 	u_int mips_cpu_flags;
    219  1.95.4.1     rmind 	u_int mips_num_tlb_entries;
    220  1.95.4.1     rmind 	mips_prid_t mips_cpu_id;
    221  1.95.4.1     rmind 	mips_prid_t mips_fpu_id;
    222  1.95.4.1     rmind 	bool mips_has_r4k_mmu;
    223  1.95.4.1     rmind 	bool mips_has_llsc;
    224  1.95.4.1     rmind 	u_int mips3_pg_shift;
    225  1.95.4.1     rmind 	u_int mips3_pg_cached;
    226  1.95.4.1     rmind #ifdef MIPS3_PLUS
    227      1.94      matt #ifdef _LP64
    228  1.95.4.1     rmind 	uint64_t mips3_xkphys_cached;
    229      1.94      matt #endif
    230  1.95.4.1     rmind 	uint64_t mips3_tlb_vpn_mask;
    231  1.95.4.1     rmind 	uint64_t mips3_tlb_pfn_mask;
    232  1.95.4.1     rmind 	uint32_t mips3_tlb_pg_mask;
    233  1.95.4.1     rmind #endif
    234  1.95.4.1     rmind };
    235  1.95.4.1     rmind extern struct mips_options mips_options;
    236      1.58    simonb 
    237      1.58    simonb #define	CPU_MIPS_R4K_MMU		0x0001
    238      1.58    simonb #define	CPU_MIPS_NO_LLSC		0x0002
    239      1.58    simonb #define	CPU_MIPS_CAUSE_IV		0x0004
    240      1.58    simonb #define	CPU_MIPS_HAVE_SPECIAL_CCA	0x0008	/* Defaults to '3' if not set. */
    241      1.58    simonb #define	CPU_MIPS_CACHED_CCA_MASK	0x0070
    242      1.58    simonb #define	CPU_MIPS_CACHED_CCA_SHIFT	 4
    243      1.62    simonb #define	CPU_MIPS_DOUBLE_COUNT		0x0080	/* 1 cp0 count == 2 clock cycles */
    244      1.63    simonb #define	CPU_MIPS_USE_WAIT		0x0100	/* Use "wait"-based cpu_idle() */
    245      1.63    simonb #define	CPU_MIPS_NO_WAIT		0x0200	/* Inverse of previous, for mips32/64 */
    246      1.69    simonb #define	CPU_MIPS_D_CACHE_COHERENT	0x0400	/* D-cache is fully coherent */
    247      1.69    simonb #define	CPU_MIPS_I_D_CACHE_COHERENT	0x0800	/* I-cache funcs don't need to flush the D-cache */
    248      1.94      matt #define	CPU_MIPS_NO_LLADDR		0x1000
    249      1.94      matt #define	CPU_MIPS_HAVE_MxCR		0x2000	/* have mfcr, mtcr insns */
    250      1.58    simonb #define	MIPS_NOT_SUPP			0x8000
    251      1.60    simonb 
    252      1.78        ad #endif	/* !_LOCORE */
    253      1.78        ad 
    254      1.78        ad #if ((MIPS1 + MIPS3 + MIPS4 + MIPS32 + MIPS64) == 1) || defined(_LOCORE)
    255      1.78        ad 
    256      1.78        ad #if defined(MIPS1)
    257      1.78        ad 
    258      1.58    simonb # define CPUISMIPS3		0
    259      1.58    simonb # define CPUIS64BITS		0
    260      1.58    simonb # define CPUISMIPS32		0
    261      1.58    simonb # define CPUISMIPS64		0
    262      1.58    simonb # define CPUISMIPSNN		0
    263      1.58    simonb # define MIPS_HAS_R4K_MMU	0
    264      1.58    simonb # define MIPS_HAS_CLOCK		0
    265      1.58    simonb # define MIPS_HAS_LLSC		0
    266      1.94      matt # define MIPS_HAS_LLADDR	0
    267      1.58    simonb 
    268      1.78        ad #elif defined(MIPS3) || defined(MIPS4)
    269      1.78        ad 
    270      1.58    simonb # define CPUISMIPS3		1
    271      1.58    simonb # define CPUIS64BITS		1
    272      1.58    simonb # define CPUISMIPS32		0
    273      1.58    simonb # define CPUISMIPS64		0
    274      1.58    simonb # define CPUISMIPSNN		0
    275      1.58    simonb # define MIPS_HAS_R4K_MMU	1
    276      1.58    simonb # define MIPS_HAS_CLOCK		1
    277      1.78        ad # if defined(_LOCORE)
    278  1.95.4.1     rmind #  if !defined(MIPS3_4100)
    279      1.78        ad #   define MIPS_HAS_LLSC	1
    280      1.78        ad #  else
    281      1.78        ad #   define MIPS_HAS_LLSC	0
    282      1.78        ad #  endif
    283      1.78        ad # else	/* _LOCORE */
    284  1.95.4.1     rmind #  define MIPS_HAS_LLSC		(mips_options.mips_has_llsc)
    285      1.78        ad # endif	/* _LOCORE */
    286  1.95.4.1     rmind # define MIPS_HAS_LLADDR	((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    287      1.78        ad 
    288      1.78        ad #elif defined(MIPS32)
    289      1.58    simonb 
    290      1.58    simonb # define CPUISMIPS3		1
    291      1.58    simonb # define CPUIS64BITS		0
    292      1.58    simonb # define CPUISMIPS32		1
    293      1.58    simonb # define CPUISMIPS64		0
    294      1.58    simonb # define CPUISMIPSNN		1
    295      1.58    simonb # define MIPS_HAS_R4K_MMU	1
    296      1.58    simonb # define MIPS_HAS_CLOCK		1
    297      1.58    simonb # define MIPS_HAS_LLSC		1
    298  1.95.4.1     rmind # define MIPS_HAS_LLADDR	((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    299      1.58    simonb 
    300      1.80     oster #elif defined(MIPS64)
    301      1.78        ad 
    302      1.58    simonb # define CPUISMIPS3		1
    303      1.58    simonb # define CPUIS64BITS		1
    304      1.58    simonb # define CPUISMIPS32		0
    305      1.58    simonb # define CPUISMIPS64		1
    306      1.58    simonb # define CPUISMIPSNN		1
    307      1.58    simonb # define MIPS_HAS_R4K_MMU	1
    308      1.58    simonb # define MIPS_HAS_CLOCK		1
    309      1.58    simonb # define MIPS_HAS_LLSC		1
    310  1.95.4.1     rmind # define MIPS_HAS_LLADDR	((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    311      1.78        ad 
    312      1.78        ad #endif
    313      1.21  jonathan 
    314      1.58    simonb #else /* run-time test */
    315      1.21  jonathan 
    316      1.78        ad #ifndef	_LOCORE
    317      1.78        ad 
    318  1.95.4.1     rmind #define	MIPS_HAS_R4K_MMU	(mips_options.mips_has_r4k_mmu)
    319  1.95.4.1     rmind #define	MIPS_HAS_LLSC		(mips_options.mips_has_llsc)
    320  1.95.4.1     rmind #define	MIPS_HAS_LLADDR		((mips_options.mips_cpu_flags & CPU_MIPS_NO_LLADDR) == 0)
    321      1.45       cgd 
    322      1.45       cgd /* This test is ... rather bogus */
    323  1.95.4.1     rmind #define	CPUISMIPS3	((mips_options.mips_cpu_arch & \
    324      1.58    simonb 	(CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
    325      1.58    simonb 
    326      1.58    simonb /* And these aren't much better while the previous test exists as is... */
    327  1.95.4.1     rmind #define	CPUISMIPS4	((mips_options.mips_cpu_arch & CPU_ARCH_MIPS4) != 0)
    328  1.95.4.1     rmind #define	CPUISMIPS5	((mips_options.mips_cpu_arch & CPU_ARCH_MIPS5) != 0)
    329  1.95.4.1     rmind #define	CPUISMIPS32	((mips_options.mips_cpu_arch & CPU_ARCH_MIPS32) != 0)
    330  1.95.4.1     rmind #define	CPUISMIPS64	((mips_options.mips_cpu_arch & CPU_ARCH_MIPS64) != 0)
    331  1.95.4.1     rmind #define	CPUISMIPSNN	((mips_options.mips_cpu_arch & (CPU_ARCH_MIPS32 | CPU_ARCH_MIPS64)) != 0)
    332  1.95.4.1     rmind #define	CPUIS64BITS	((mips_options.mips_cpu_arch & \
    333      1.58    simonb 	(CPU_ARCH_MIPS3 | CPU_ARCH_MIPS4 | CPU_ARCH_MIPS64)) != 0)
    334      1.58    simonb 
    335  1.95.4.1     rmind #define	MIPS_HAS_CLOCK	(mips_options.mips_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.42     jeffs 
    352  1.95.4.1     rmind /*
    353  1.95.4.1     rmind  * Send an inter-processor interupt to each other CPU (excludes curcpu())
    354  1.95.4.1     rmind  */
    355  1.95.4.1     rmind void cpu_broadcast_ipi(int);
    356  1.95.4.1     rmind 
    357  1.95.4.1     rmind /*
    358  1.95.4.1     rmind  * Send an inter-processor interupt to CPUs in cpuset (excludes curcpu())
    359  1.95.4.1     rmind  */
    360  1.95.4.1     rmind void cpu_multicast_ipi(__cpuset_t, int);
    361  1.95.4.1     rmind 
    362  1.95.4.1     rmind /*
    363  1.95.4.1     rmind  * Send an inter-processor interupt to another CPU.
    364  1.95.4.1     rmind  */
    365  1.95.4.1     rmind int cpu_send_ipi(struct cpu_info *, int);
    366  1.95.4.1     rmind 
    367  1.95.4.1     rmind /*
    368  1.95.4.1     rmind  * cpu_intr(ppl, pc, status);  (most state needed by clockframe)
    369  1.95.4.1     rmind  */
    370  1.95.4.1     rmind void cpu_intr(int, vaddr_t, uint32_t);
    371       1.1   deraadt 
    372       1.1   deraadt /*
    373       1.1   deraadt  * Arguments to hardclock and gatherstats encapsulate the previous
    374       1.1   deraadt  * machine state in an opaque clockframe.
    375       1.1   deraadt  */
    376       1.5     glass struct clockframe {
    377  1.95.4.1     rmind 	vaddr_t		pc;	/* program counter at time of interrupt */
    378      1.94      matt 	uint32_t	sr;	/* status register at time of interrupt */
    379  1.95.4.1     rmind 	bool		intr;	/* interrupted a interrupt */
    380       1.5     glass };
    381       1.1   deraadt 
    382      1.14  jonathan /*
    383      1.79        ad  * A port must provde CLKF_USERMODE() for use in machine-independent code.
    384      1.79        ad  * These differ on r4000 and r3000 systems; provide them in the
    385      1.79        ad  * port-dependent file that includes this one, using the macros below.
    386      1.14  jonathan  */
    387      1.14  jonathan 
    388      1.21  jonathan /* mips1 versions */
    389      1.22  jonathan #define	MIPS1_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KU_PREV)
    390      1.14  jonathan 
    391      1.21  jonathan /* mips3 versions */
    392      1.22  jonathan #define	MIPS3_CLKF_USERMODE(framep)	((framep)->sr & MIPS_SR_KSU_USER)
    393      1.56       uch 
    394       1.1   deraadt #define	CLKF_PC(framep)		((framep)->pc)
    395  1.95.4.1     rmind #define	CLKF_INTR(framep)	((framep)->intr)
    396      1.18  jonathan 
    397      1.58    simonb #if defined(MIPS3_PLUS) && !defined(MIPS1)		/* XXX bogus! */
    398      1.21  jonathan #define	CLKF_USERMODE(framep)	MIPS3_CLKF_USERMODE(framep)
    399      1.21  jonathan #endif
    400      1.21  jonathan 
    401      1.58    simonb #if !defined(MIPS3_PLUS) && defined(MIPS1)		/* XXX bogus! */
    402      1.21  jonathan #define	CLKF_USERMODE(framep)	MIPS1_CLKF_USERMODE(framep)
    403      1.21  jonathan #endif
    404      1.21  jonathan 
    405      1.58    simonb #if defined(MIPS3_PLUS) && defined(MIPS1)		/* XXX bogus! */
    406      1.21  jonathan #define CLKF_USERMODE(framep) \
    407      1.21  jonathan     ((CPUISMIPS3) ? MIPS3_CLKF_USERMODE(framep):  MIPS1_CLKF_USERMODE(framep))
    408      1.18  jonathan #endif
    409      1.18  jonathan 
    410      1.47   thorpej /*
    411  1.95.4.1     rmind  * Misc prototypes and variable declarations.
    412      1.47   thorpej  */
    413  1.95.4.1     rmind #define	LWP_PC(l)	cpu_lwp_pc(l)
    414  1.95.4.1     rmind 
    415  1.95.4.1     rmind struct proc;
    416  1.95.4.1     rmind struct lwp;
    417  1.95.4.1     rmind struct pcb;
    418  1.95.4.1     rmind struct reg;
    419       1.1   deraadt 
    420       1.1   deraadt /*
    421       1.1   deraadt  * Preempt the current process if in interrupt from user mode,
    422       1.1   deraadt  * or after the current trap/syscall if in system mode.
    423       1.1   deraadt  */
    424      1.82      yamt void	cpu_need_resched(struct cpu_info *, int);
    425  1.95.4.1     rmind /*
    426  1.95.4.1     rmind  * Notify the current lwp (l) that it has a signal pending,
    427  1.95.4.1     rmind  * process as soon as possible.
    428  1.95.4.1     rmind  */
    429  1.95.4.1     rmind void	cpu_signotify(struct lwp *);
    430       1.1   deraadt 
    431       1.1   deraadt /*
    432       1.1   deraadt  * Give a profiling tick to the current process when the user profiling
    433      1.13  jonathan  * buffer pages are invalid.  On the MIPS, request an ast to send us
    434       1.1   deraadt  * through trap, marking the proc as needing a profiling tick.
    435       1.1   deraadt  */
    436  1.95.4.1     rmind void	cpu_need_proftick(struct lwp *);
    437  1.95.4.1     rmind void	cpu_set_curpri(int);
    438       1.1   deraadt 
    439  1.95.4.1     rmind extern int mips_poolpage_vmfreelist;	/* freelist to allocate poolpages */
    440       1.1   deraadt 
    441  1.95.4.1     rmind struct cpu_info *
    442  1.95.4.1     rmind 	cpu_info_alloc(struct pmap_tlb_info *, cpuid_t, cpuid_t, cpuid_t,
    443  1.95.4.1     rmind 	    cpuid_t);
    444  1.95.4.1     rmind void	cpu_attach_common(device_t, struct cpu_info *);
    445  1.95.4.1     rmind void	cpu_startup_common(void);
    446  1.95.4.1     rmind #ifdef _LP64
    447  1.95.4.1     rmind void	cpu_vmspace_exec(struct lwp *, vaddr_t, vaddr_t);
    448  1.95.4.1     rmind #endif
    449      1.37    simonb 
    450  1.95.4.1     rmind #ifdef MULTIPROCESSOR
    451  1.95.4.1     rmind void	cpu_hatch(struct cpu_info *ci);
    452  1.95.4.1     rmind void	cpu_trampoline(void);
    453  1.95.4.1     rmind void	cpu_boot_secondary_processors(void);
    454  1.95.4.1     rmind void	cpu_halt(void);
    455  1.95.4.1     rmind void	cpu_halt_others(void);
    456  1.95.4.1     rmind void	cpu_pause(struct reg *);
    457  1.95.4.1     rmind void	cpu_pause_others(void);
    458  1.95.4.1     rmind void	cpu_resume(int);
    459  1.95.4.1     rmind void	cpu_resume_others(void);
    460  1.95.4.1     rmind int	cpu_is_paused(int);
    461  1.95.4.1     rmind void	cpu_debug_dump(void);
    462  1.95.4.1     rmind 
    463  1.95.4.1     rmind extern volatile __cpuset_t cpus_running;
    464  1.95.4.1     rmind extern volatile __cpuset_t cpus_hatched;
    465  1.95.4.1     rmind extern volatile __cpuset_t cpus_paused;
    466  1.95.4.1     rmind extern volatile __cpuset_t cpus_resumed;
    467  1.95.4.1     rmind extern volatile __cpuset_t cpus_halted;
    468  1.95.4.1     rmind #endif
    469      1.25  jonathan 
    470      1.94      matt /* copy.S */
    471      1.94      matt int8_t	ufetch_int8(void *);
    472      1.94      matt int16_t	ufetch_int16(void *);
    473      1.94      matt int32_t ufetch_int32(void *);
    474      1.94      matt uint8_t	ufetch_uint8(void *);
    475      1.94      matt uint16_t ufetch_uint16(void *);
    476      1.94      matt uint32_t ufetch_uint32(void *);
    477      1.94      matt int8_t	ufetch_int8_intrsafe(void *);
    478      1.94      matt int16_t	ufetch_int16_intrsafe(void *);
    479      1.94      matt int32_t ufetch_int32_intrsafe(void *);
    480      1.94      matt uint8_t	ufetch_uint8_intrsafe(void *);
    481      1.94      matt uint16_t ufetch_uint16_intrsafe(void *);
    482      1.94      matt uint32_t ufetch_uint32_intrsafe(void *);
    483      1.94      matt #ifdef _LP64
    484      1.94      matt int64_t ufetch_int64(void *);
    485      1.94      matt uint64_t ufetch_uint64(void *);
    486      1.94      matt int64_t ufetch_int64_intrsafe(void *);
    487      1.94      matt uint64_t ufetch_uint64_intrsafe(void *);
    488      1.94      matt #endif
    489      1.94      matt char	ufetch_char(void *);
    490      1.94      matt short	ufetch_short(void *);
    491      1.94      matt int	ufetch_int(void *);
    492      1.94      matt long	ufetch_long(void *);
    493      1.94      matt char	ufetch_char_intrsafe(void *);
    494      1.94      matt short	ufetch_short_intrsafe(void *);
    495      1.94      matt int	ufetch_int_intrsafe(void *);
    496      1.94      matt long	ufetch_long_intrsafe(void *);
    497      1.94      matt 
    498      1.94      matt u_char	ufetch_uchar(void *);
    499      1.94      matt u_short	ufetch_ushort(void *);
    500      1.94      matt u_int	ufetch_uint(void *);
    501      1.94      matt u_long	ufetch_ulong(void *);
    502      1.94      matt u_char	ufetch_uchar_intrsafe(void *);
    503      1.94      matt u_short	ufetch_ushort_intrsafe(void *);
    504      1.94      matt u_int	ufetch_uint_intrsafe(void *);
    505      1.94      matt u_long	ufetch_ulong_intrsafe(void *);
    506      1.94      matt void 	*ufetch_ptr(void *);
    507      1.94      matt 
    508      1.94      matt int	ustore_int8(void *, int8_t);
    509      1.94      matt int	ustore_int16(void *, int16_t);
    510      1.94      matt int	ustore_int32(void *, int32_t);
    511      1.94      matt int	ustore_uint8(void *, uint8_t);
    512      1.94      matt int	ustore_uint16(void *, uint16_t);
    513      1.94      matt int	ustore_uint32(void *, uint32_t);
    514      1.94      matt int	ustore_int8_intrsafe(void *, int8_t);
    515      1.94      matt int	ustore_int16_intrsafe(void *, int16_t);
    516      1.94      matt int	ustore_int32_intrsafe(void *, int32_t);
    517      1.94      matt int	ustore_uint8_intrsafe(void *, uint8_t);
    518      1.94      matt int	ustore_uint16_intrsafe(void *, uint16_t);
    519      1.94      matt int	ustore_uint32_intrsafe(void *, uint32_t);
    520      1.94      matt #ifdef _LP64
    521      1.94      matt int	ustore_int64(void *, int64_t);
    522      1.94      matt int	ustore_uint64(void *, uint64_t);
    523      1.94      matt int	ustore_int64_intrsafe(void *, int64_t);
    524      1.94      matt int	ustore_uint64_intrsafe(void *, uint64_t);
    525      1.94      matt #endif
    526      1.94      matt int	ustore_char(void *, char);
    527      1.94      matt int	ustore_char_intrsafe(void *, char);
    528      1.94      matt int	ustore_short(void *, short);
    529      1.94      matt int	ustore_short_intrsafe(void *, short);
    530      1.94      matt int	ustore_int(void *, int);
    531      1.94      matt int	ustore_int_intrsafe(void *, int);
    532      1.94      matt int	ustore_long(void *, long);
    533      1.94      matt int	ustore_long_intrsafe(void *, long);
    534      1.94      matt int	ustore_uchar(void *, u_char);
    535      1.94      matt int	ustore_uchar_intrsafe(void *, u_char);
    536      1.94      matt int	ustore_ushort(void *, u_short);
    537      1.94      matt int	ustore_ushort_intrsafe(void *, u_short);
    538      1.94      matt int	ustore_uint(void *, u_int);
    539      1.94      matt int	ustore_uint_intrsafe(void *, u_int);
    540      1.94      matt int	ustore_ulong(void *, u_long);
    541      1.94      matt int	ustore_ulong_intrsafe(void *, u_long);
    542      1.94      matt int 	ustore_ptr(void *, void *);
    543      1.94      matt int	ustore_ptr_intrsafe(void *, void *);
    544      1.94      matt 
    545      1.94      matt int	ustore_uint32_isync(void *, uint32_t);
    546      1.94      matt 
    547      1.28    castor /* trap.c */
    548      1.58    simonb void	netintr(void);
    549      1.58    simonb int	kdbpeek(vaddr_t);
    550      1.23   thorpej 
    551  1.95.4.1     rmind /* mips_fpu.c */
    552  1.95.4.1     rmind void	fpu_init(void);
    553  1.95.4.1     rmind void	fpu_discard(void);
    554  1.95.4.1     rmind void	fpu_load(void);
    555  1.95.4.1     rmind void	fpu_save(void);
    556  1.95.4.1     rmind void	fpu_save_lwp(struct lwp *);
    557  1.95.4.1     rmind bool	fpu_used_p(struct lwp *);
    558  1.95.4.1     rmind 
    559      1.28    castor /* mips_machdep.c */
    560      1.58    simonb void	dumpsys(void);
    561      1.93     rmind int	savectx(struct pcb *);
    562  1.95.4.1     rmind void	cpu_identify(device_t);
    563      1.13  jonathan 
    564      1.61    simonb /* locore*.S */
    565      1.58    simonb int	badaddr(void *, size_t);
    566      1.61    simonb int	badaddr64(uint64_t, size_t);
    567      1.25  jonathan 
    568  1.95.4.1     rmind /* vm_machdep.c */
    569  1.95.4.1     rmind void *	cpu_uarea_alloc(bool);
    570  1.95.4.1     rmind bool	cpu_uarea_free(void *);
    571  1.95.4.1     rmind void	cpu_proc_fork(struct proc *, struct proc *);
    572  1.95.4.1     rmind vaddr_t	cpu_lwp_pc(struct lwp *);
    573  1.95.4.1     rmind int	ioaccess(vaddr_t, paddr_t, vsize_t);
    574  1.95.4.1     rmind int	iounaccess(vaddr_t, vsize_t);
    575      1.27   thorpej 
    576      1.33    simonb #endif /* ! _LOCORE */
    577      1.28    castor #endif /* _KERNEL */
    578       1.1   deraadt #endif /* _CPU_H_ */
    579