Home | History | Annotate | Line # | Download | only in rmi
rmixl_cpucorevar.h revision 1.1.2.2
      1 /*	$NetBSD: rmixl_cpucorevar.h,v 1.1.2.2 2010/02/23 20:33:48 matt Exp $	q*/
      2 
      3 #ifndef _ARCH_MIPS_RMI_RMIXL_CPUCOREVAR_H_
      4 #define _ARCH_MIPS_RMI_RMIXL_CPUCOREVAR_H_
      5 
      6 struct cpucore_softc {
      7 	device_t	sc_dev;
      8 	bool		sc_attached;
      9 	u_int		sc_core;
     10 #ifdef MULTIPROCESSOR
     11 	struct pmap_tlb_info *sc_tlbinfo;
     12 	struct pmap_tlb_info sc_tlbinfo0;
     13 #endif
     14 };
     15 
     16 struct cpucore_attach_args {
     17 	const char     *ca_name;
     18 	int		ca_core;
     19 	int		ca_thread;
     20 };
     21 
     22 #endif	/* _ARCH_MIPS_RMI_RMIXL_CPUCOREVAR_H_ */
     23