1 1.1.2.2 matt /* $NetBSD: cpuvar.h,v 1.1.2.2 2010/12/29 08:19:58 matt Exp $ */ 2 1.1.2.1 matt 3 1.1.2.1 matt #ifndef _SBMIPS_CPUVAR_H_ 4 1.1.2.1 matt #define _SBMIPS_CPUVAR_H_ 5 1.1.2.1 matt 6 1.1.2.1 matt #include <mips/cpu.h> 7 1.1.2.1 matt 8 1.1.2.1 matt #ifndef _LOCORE 9 1.1.2.1 matt struct cpu_softc { 10 1.1.2.1 matt device_t sb1cpu_dev; 11 1.1.2.1 matt struct cpu_info *sb1cpu_ci; 12 1.1.2.1 matt vaddr_t sb1cpu_imr_base; 13 1.1.2.1 matt uint64_t sb1cpu_imr_all; 14 1.1.2.1 matt struct evcnt sb1cpu_intr_evcnts[64]; 15 1.1.2.2 matt struct evcnt sb1cpu_spurious_intrs[_IPL_N]; 16 1.1.2.2 matt struct evcnt sb1cpu_intrs[_IPL_N]; 17 1.1.2.2 matt struct evcnt sb1cpu_int5; 18 1.1.2.1 matt }; 19 1.1.2.1 matt #endif /* _LOCORE */ 20 1.1.2.1 matt 21 1.1.2.1 matt #endif /* !_SBMIPS_CPUVAR_H_ */ 22