Home | History | Annotate | Line # | Download | only in include
autoconf.h revision 1.5
      1  1.5   chs /*	$NetBSD: autoconf.h,v 1.5 2002/09/18 01:44:13 chs Exp $	*/
      2  1.5   chs 
      3  1.5   chs #ifndef _OFPPC_AUTOCONF_H_
      4  1.5   chs #define _OFPPC_AUTOCONF_H_
      5  1.5   chs 
      6  1.5   chs struct confargs {
      7  1.5   chs 	const char	*ca_name;
      8  1.5   chs 	u_int		ca_node;
      9  1.5   chs 	int		ca_nreg;
     10  1.5   chs 	u_int		*ca_reg;
     11  1.5   chs 	int		ca_nintr;
     12  1.5   chs 	int		*ca_intr;
     13  1.5   chs 
     14  1.5   chs 	u_int		ca_baseaddr;
     15  1.5   chs 	/* bus_space_tag_t ca_tag; */
     16  1.5   chs };
     17  1.1  matt 
     18  1.1  matt #ifdef _KERNEL
     19  1.5   chs void initppc(u_int, u_int, char *);
     20  1.5   chs void strayintr(int);
     21  1.1  matt 
     22  1.5   chs void inittodr(time_t);
     23  1.5   chs void resettodr(void);
     24  1.5   chs void cpu_initclocks(void);
     25  1.5   chs void decr_intr(struct clockframe *);
     26  1.5   chs void setstatclockrate(int);
     27  1.1  matt #endif /* _KERNEL */
     28  1.1  matt 
     29  1.5   chs #endif /* _OFPPC_AUTOCONF_H_ */
     30