Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.10.6.8
      1  1.10.6.8  nathanw /*	$NetBSD: cpu.h,v 1.10.6.8 2002/08/01 02:43:03 nathanw Exp $	*/
      2  1.10.6.2   briggs 
      3  1.10.6.2   briggs /*
      4  1.10.6.2   briggs  * Copyright (C) 1999 Wolfgang Solfrank.
      5  1.10.6.2   briggs  * Copyright (C) 1999 TooLs GmbH.
      6  1.10.6.2   briggs  * Copyright (C) 1995-1997 Wolfgang Solfrank.
      7  1.10.6.2   briggs  * Copyright (C) 1995-1997 TooLs GmbH.
      8  1.10.6.2   briggs  * All rights reserved.
      9  1.10.6.2   briggs  *
     10  1.10.6.2   briggs  * Redistribution and use in source and binary forms, with or without
     11  1.10.6.2   briggs  * modification, are permitted provided that the following conditions
     12  1.10.6.2   briggs  * are met:
     13  1.10.6.2   briggs  * 1. Redistributions of source code must retain the above copyright
     14  1.10.6.2   briggs  *    notice, this list of conditions and the following disclaimer.
     15  1.10.6.2   briggs  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.10.6.2   briggs  *    notice, this list of conditions and the following disclaimer in the
     17  1.10.6.2   briggs  *    documentation and/or other materials provided with the distribution.
     18  1.10.6.2   briggs  * 3. All advertising materials mentioning features or use of this software
     19  1.10.6.2   briggs  *    must display the following acknowledgement:
     20  1.10.6.2   briggs  *	This product includes software developed by TooLs GmbH.
     21  1.10.6.2   briggs  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     22  1.10.6.2   briggs  *    derived from this software without specific prior written permission.
     23  1.10.6.2   briggs  *
     24  1.10.6.2   briggs  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     25  1.10.6.2   briggs  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     26  1.10.6.2   briggs  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27  1.10.6.2   briggs  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     28  1.10.6.2   briggs  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     29  1.10.6.2   briggs  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     30  1.10.6.2   briggs  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     31  1.10.6.2   briggs  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     32  1.10.6.2   briggs  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     33  1.10.6.2   briggs  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     34  1.10.6.2   briggs  */
     35  1.10.6.2   briggs #ifndef	_POWERPC_CPU_H_
     36  1.10.6.2   briggs #define	_POWERPC_CPU_H_
     37  1.10.6.2   briggs 
     38  1.10.6.2   briggs #if defined(_KERNEL_OPT)
     39  1.10.6.2   briggs #include "opt_lockdebug.h"
     40  1.10.6.2   briggs #include "opt_multiprocessor.h"
     41  1.10.6.8  nathanw #include "opt_ppcarch.h"
     42  1.10.6.2   briggs #endif
     43  1.10.6.2   briggs 
     44  1.10.6.2   briggs #include <sys/device.h>
     45  1.10.6.2   briggs #include <machine/frame.h>
     46  1.10.6.2   briggs #include <machine/psl.h>
     47  1.10.6.2   briggs #include <machine/intr.h>
     48  1.10.6.2   briggs 
     49  1.10.6.6  nathanw 
     50  1.10.6.6  nathanw struct cache_info {
     51  1.10.6.6  nathanw 	int dcache_size;
     52  1.10.6.6  nathanw 	int dcache_line_size;
     53  1.10.6.6  nathanw 	int icache_size;
     54  1.10.6.6  nathanw 	int icache_line_size;
     55  1.10.6.6  nathanw };
     56  1.10.6.6  nathanw 
     57  1.10.6.6  nathanw 
     58  1.10.6.2   briggs #ifdef _KERNEL
     59  1.10.6.2   briggs #include <sys/sched.h>
     60  1.10.6.6  nathanw #include <dev/sysmon/sysmonvar.h>
     61  1.10.6.6  nathanw 
     62  1.10.6.2   briggs struct cpu_info {
     63  1.10.6.2   briggs 	struct schedstate_percpu ci_schedstate; /* scheduler state */
     64  1.10.6.2   briggs #if defined(DIAGNOSTIC) || defined(LOCKDEBUG)
     65  1.10.6.2   briggs 	u_long ci_spin_locks;		/* # of spin locks held */
     66  1.10.6.2   briggs 	u_long ci_simple_locks;		/* # of simple locks held */
     67  1.10.6.2   briggs #endif
     68  1.10.6.2   briggs 	struct device *ci_dev;		/* device of corresponding cpu */
     69  1.10.6.7  nathanw 	struct lwp *ci_curlwp;		/* current owner of the processor */
     70  1.10.6.2   briggs 
     71  1.10.6.2   briggs 	struct pcb *ci_curpcb;
     72  1.10.6.2   briggs 	struct pmap *ci_curpm;
     73  1.10.6.8  nathanw 	struct lwp *ci_fprlwp;
     74  1.10.6.8  nathanw 	struct lwp *ci_veclwp;
     75  1.10.6.2   briggs 	struct pcb *ci_idle_pcb;	/* PA of our idle pcb */
     76  1.10.6.2   briggs 	int ci_cpuid;
     77  1.10.6.2   briggs 
     78  1.10.6.2   briggs 	int ci_astpending;
     79  1.10.6.2   briggs 	int ci_want_resched;
     80  1.10.6.2   briggs 	u_long ci_lasttb;
     81  1.10.6.2   briggs 	int ci_tickspending;
     82  1.10.6.2   briggs 	int ci_cpl;
     83  1.10.6.2   briggs 	int ci_ipending;
     84  1.10.6.2   briggs 	int ci_intrdepth;
     85  1.10.6.2   briggs 	char *ci_intstk;
     86  1.10.6.2   briggs 	char *ci_spillstk;
     87  1.10.6.2   briggs 	int ci_tempsave[8];
     88  1.10.6.2   briggs 	int ci_ddbsave[8];
     89  1.10.6.2   briggs 	int ci_ipkdbsave[8];
     90  1.10.6.2   briggs 	int ci_disisave[4];
     91  1.10.6.6  nathanw 	struct cache_info ci_ci;
     92  1.10.6.6  nathanw 	struct sysmon_envsys ci_sysmon;
     93  1.10.6.6  nathanw 	struct envsys_tre_data ci_tau_info;
     94  1.10.6.2   briggs 	struct evcnt ci_ev_traps;	/* calls to trap() */
     95  1.10.6.2   briggs 	struct evcnt ci_ev_kdsi;	/* kernel DSI traps */
     96  1.10.6.2   briggs 	struct evcnt ci_ev_udsi;	/* user DSI traps */
     97  1.10.6.2   briggs 	struct evcnt ci_ev_udsi_fatal;	/* user DSI trap failures */
     98  1.10.6.2   briggs 	struct evcnt ci_ev_isi;		/* user ISI traps */
     99  1.10.6.2   briggs 	struct evcnt ci_ev_isi_fatal;	/* user ISI trap failures */
    100  1.10.6.2   briggs 	struct evcnt ci_ev_pgm;		/* user PGM traps */
    101  1.10.6.2   briggs 	struct evcnt ci_ev_fpu;		/* FPU traps */
    102  1.10.6.2   briggs 	struct evcnt ci_ev_fpusw;	/* FPU context switch */
    103  1.10.6.2   briggs 	struct evcnt ci_ev_ali;		/* Alignment traps */
    104  1.10.6.2   briggs 	struct evcnt ci_ev_ali_fatal;	/* Alignment fatal trap */
    105  1.10.6.2   briggs 	struct evcnt ci_ev_scalls;	/* system call traps */
    106  1.10.6.2   briggs 	struct evcnt ci_ev_vec;		/* Altivec traps */
    107  1.10.6.2   briggs 	struct evcnt ci_ev_vecsw;	/* Altivec context switches */
    108  1.10.6.8  nathanw 	struct evcnt ci_ev_umchk;	/* user MCHK events */
    109  1.10.6.2   briggs };
    110  1.10.6.2   briggs 
    111  1.10.6.2   briggs #ifdef MULTIPROCESSOR
    112  1.10.6.2   briggs static __inline int
    113  1.10.6.5  nathanw cpu_number(void)
    114  1.10.6.2   briggs {
    115  1.10.6.2   briggs 	int pir;
    116  1.10.6.2   briggs 
    117  1.10.6.2   briggs 	asm ("mfspr %0,1023" : "=r"(pir));
    118  1.10.6.2   briggs 	return pir;
    119  1.10.6.2   briggs }
    120  1.10.6.2   briggs 
    121  1.10.6.2   briggs static __inline struct cpu_info *
    122  1.10.6.5  nathanw curcpu(void)
    123  1.10.6.2   briggs {
    124  1.10.6.2   briggs 	struct cpu_info *ci;
    125  1.10.6.2   briggs 
    126  1.10.6.2   briggs 	asm volatile ("mfsprg %0,0" : "=r"(ci));
    127  1.10.6.2   briggs 	return ci;
    128  1.10.6.2   briggs }
    129  1.10.6.2   briggs 
    130  1.10.6.5  nathanw void	cpu_boot_secondary_processors(void);
    131  1.10.6.5  nathanw 
    132  1.10.6.2   briggs extern struct cpu_info cpu_info[];
    133  1.10.6.2   briggs 
    134  1.10.6.2   briggs #define CPU_IS_PRIMARY(ci)	((ci)->ci_cpuid == 0)
    135  1.10.6.7  nathanw #define curlwp			curcpu()->ci_curlwp
    136  1.10.6.2   briggs #define curpcb			curcpu()->ci_curpcb
    137  1.10.6.2   briggs #define curpm			curcpu()->ci_curpm
    138  1.10.6.2   briggs #define want_resched		curcpu()->ci_want_resched
    139  1.10.6.2   briggs #define astpending		curcpu()->ci_astpending
    140  1.10.6.2   briggs #define	intr_depth		curcpu()->ci_intrdepth
    141  1.10.6.2   briggs 
    142  1.10.6.8  nathanw #define CPU_INFO_ITERATOR		int
    143  1.10.6.8  nathanw #define CPU_INFO_FOREACH(cii, ci)					\
    144  1.10.6.8  nathanw 	cii = 0, ci = &cpu_info[0]; cii < CPU_MAXNUM; cii++, ci++
    145  1.10.6.8  nathanw 
    146  1.10.6.2   briggs #else
    147  1.10.6.2   briggs extern struct cpu_info cpu_info_store;
    148  1.10.6.2   briggs extern volatile int want_resched;
    149  1.10.6.2   briggs extern volatile int astpending;
    150  1.10.6.2   briggs extern volatile int intr_depth;
    151  1.10.6.2   briggs 
    152  1.10.6.2   briggs #define curcpu()		(&cpu_info_store)
    153  1.10.6.2   briggs #define cpu_number()		0
    154  1.10.6.2   briggs 
    155  1.10.6.8  nathanw #define CPU_INFO_ITERATOR		int
    156  1.10.6.8  nathanw #define CPU_INFO_FOREACH(cii, ci)					\
    157  1.10.6.8  nathanw 	cii = 0, ci = curcpu(); ci != NULL; ci = NULL
    158  1.10.6.8  nathanw 
    159  1.10.6.2   briggs #endif /* MULTIPROCESSOR */
    160  1.10.6.2   briggs 
    161  1.10.6.8  nathanw static __inline int
    162  1.10.6.8  nathanw mfmsr(void)
    163  1.10.6.8  nathanw {
    164  1.10.6.8  nathanw 	int msr;
    165  1.10.6.8  nathanw 
    166  1.10.6.8  nathanw 	asm volatile ("mfmsr %0" : "=r"(msr));
    167  1.10.6.8  nathanw 	return msr;
    168  1.10.6.8  nathanw }
    169  1.10.6.8  nathanw 
    170  1.10.6.8  nathanw static __inline void
    171  1.10.6.8  nathanw mtmsr(int msr)
    172  1.10.6.8  nathanw {
    173  1.10.6.8  nathanw 
    174  1.10.6.8  nathanw 	asm volatile ("mtmsr %0" : : "r"(msr));
    175  1.10.6.8  nathanw }
    176  1.10.6.2   briggs 
    177  1.10.6.2   briggs #define	CLKF_USERMODE(frame)	(((frame)->srr1 & PSL_PR) != 0)
    178  1.10.6.2   briggs #define	CLKF_BASEPRI(frame)	((frame)->pri == 0)
    179  1.10.6.2   briggs #define	CLKF_PC(frame)		((frame)->srr0)
    180  1.10.6.2   briggs #define	CLKF_INTR(frame)	((frame)->depth > 0)
    181  1.10.6.2   briggs 
    182  1.10.6.3   briggs #define	LWP_PC(l)		(trapframe(l)->srr0)
    183  1.10.6.2   briggs 
    184  1.10.6.2   briggs #define	cpu_swapout(p)
    185  1.10.6.2   briggs #define cpu_wait(p)
    186  1.10.6.4  thorpej #define	cpu_proc_fork(p1, p2)
    187  1.10.6.2   briggs 
    188  1.10.6.2   briggs extern int powersave;
    189  1.10.6.2   briggs extern int cpu_timebase;
    190  1.10.6.2   briggs extern int cpu_printfataltraps;
    191  1.10.6.8  nathanw extern char cpu_model[];
    192  1.10.6.8  nathanw 
    193  1.10.6.8  nathanw struct cpu_info *cpu_attach_common(struct device *, int);
    194  1.10.6.8  nathanw void cpu_setup(struct device *, struct cpu_info *);
    195  1.10.6.8  nathanw void cpu_identify(char *, size_t);
    196  1.10.6.8  nathanw void delay (unsigned int);
    197  1.10.6.8  nathanw void cpu_probe_cache(void);
    198  1.10.6.8  nathanw void dcache_flush_page(vaddr_t);
    199  1.10.6.8  nathanw void icache_flush_page(vaddr_t);
    200  1.10.6.8  nathanw void dcache_flush(vaddr_t, vsize_t);
    201  1.10.6.8  nathanw void icache_flush(vaddr_t, vsize_t);
    202  1.10.6.2   briggs 
    203  1.10.6.2   briggs #define	DELAY(n)		delay(n)
    204  1.10.6.2   briggs 
    205  1.10.6.2   briggs #define	need_resched(ci)	(want_resched = 1, astpending = 1)
    206  1.10.6.2   briggs #define	need_proftick(p)	((p)->p_flag |= P_OWEUPC, astpending = 1)
    207  1.10.6.2   briggs #define	signotify(p)		(astpending = 1)
    208  1.10.6.2   briggs 
    209  1.10.6.8  nathanw #ifdef PPC_MPC6XX
    210  1.10.6.8  nathanw void mpc6xx_init(void (*)(void));
    211  1.10.6.8  nathanw void mpc6xx_startup(const char *);
    212  1.10.6.8  nathanw void mpc6xx_dumpsys(void);
    213  1.10.6.8  nathanw void mpc6xx_install_extint(void (*)(void));
    214  1.10.6.8  nathanw void *mapiodev(paddr_t, psize_t);
    215  1.10.6.8  nathanw paddr_t kvtop(caddr_t);
    216  1.10.6.8  nathanw void softnet(int);
    217  1.10.6.8  nathanw 
    218  1.10.6.8  nathanw extern paddr_t msgbuf_paddr;
    219  1.10.6.8  nathanw extern int cpu_altivec;
    220  1.10.6.8  nathanw #endif
    221  1.10.6.8  nathanw 
    222  1.10.6.2   briggs #endif /* _KERNEL */
    223  1.10.6.2   briggs 
    224  1.10.6.2   briggs #if defined(_KERNEL) || defined(_STANDALONE)
    225  1.10.6.2   briggs #if !defined(CACHELINESIZE)
    226  1.10.6.2   briggs #define	CACHELINESIZE	32
    227  1.10.6.2   briggs #endif
    228  1.10.6.2   briggs #endif
    229  1.10.6.2   briggs 
    230  1.10.6.6  nathanw void __syncicache(void *, size_t);
    231  1.10.6.6  nathanw 
    232  1.10.6.2   briggs /*
    233  1.10.6.2   briggs  * CTL_MACHDEP definitions.
    234  1.10.6.2   briggs  */
    235  1.10.6.2   briggs #define	CPU_CACHELINE		1
    236  1.10.6.2   briggs #define	CPU_TIMEBASE		2
    237  1.10.6.2   briggs #define	CPU_CPUTEMP		3
    238  1.10.6.2   briggs #define	CPU_PRINTFATALTRAPS	4
    239  1.10.6.6  nathanw #define	CPU_CACHEINFO		5
    240  1.10.6.8  nathanw #define	CPU_ALTIVEC		6
    241  1.10.6.8  nathanw #define	CPU_MODEL		7
    242  1.10.6.8  nathanw #define	CPU_POWERSAVE		8
    243  1.10.6.8  nathanw #define	CPU_MAXID		9
    244  1.10.6.2   briggs 
    245  1.10.6.2   briggs #define	CTL_MACHDEP_NAMES { \
    246  1.10.6.2   briggs 	{ 0, 0 }, \
    247  1.10.6.2   briggs 	{ "cachelinesize", CTLTYPE_INT }, \
    248  1.10.6.2   briggs 	{ "timebase", CTLTYPE_INT }, \
    249  1.10.6.2   briggs 	{ "cputempature", CTLTYPE_INT }, \
    250  1.10.6.2   briggs 	{ "printfataltraps", CTLTYPE_INT }, \
    251  1.10.6.6  nathanw 	{ "cacheinfo", CTLTYPE_STRUCT }, \
    252  1.10.6.8  nathanw 	{ "altivec", CTLTYPE_INT }, \
    253  1.10.6.8  nathanw 	{ "model", CTLTYPE_STRING }, \
    254  1.10.6.8  nathanw 	{ "powersave", CTLTYPE_INT }, \
    255  1.10.6.2   briggs }
    256  1.10.6.2   briggs 
    257  1.10.6.2   briggs #endif	/* _POWERPC_CPU_H_ */
    258