Home | History | Annotate | Line # | Download | only in include
wdogvar.h revision 1.2
      1  1.2  msaitoh /* $NetBSD: wdogvar.h,v 1.2 2000/02/24 17:10:16 msaitoh Exp $ */
      2  1.2  msaitoh 
      3  1.1  msaitoh #ifndef _SH3_WDOGVAR_H_
      4  1.1  msaitoh #define _SH3_WDOGVAR_H_
      5  1.1  msaitoh 
      6  1.1  msaitoh #define WDOGF_OPEN	1
      7  1.1  msaitoh 
      8  1.1  msaitoh #define SIORESETWDOG	_IO('S', 0x0)
      9  1.1  msaitoh #define SIOSTARTWDOG	_IO('S', 0x1)
     10  1.1  msaitoh #define SIOSTOPWDOG	_IO('S', 0x2)
     11  1.1  msaitoh #define	SIOSETWDOG	_IOW('S', 0x3, int)
     12  1.1  msaitoh 
     13  1.1  msaitoh #ifdef _KERNEL
     14  1.1  msaitoh extern void wdog_wr_cnt __P((unsigned char));
     15  1.1  msaitoh extern void wdog_wr_csr __P((unsigned char));
     16  1.1  msaitoh #endif
     17  1.1  msaitoh 
     18  1.1  msaitoh #endif /* !_SH3_WDOGVAR_H_ */
     19