1998-02-13 11:28:16 +03:00
|
|
|
/* $NetBSD: scsipi_debug.h,v 1.12 1998/02/13 08:28:53 enami Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Written by Julian Elischer (julian@tfs.com)
|
|
|
|
*/
|
1998-02-13 07:19:13 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* These are the new debug bits. (Sat Oct 2 12:46:46 WST 1993)
|
|
|
|
* the following DEBUG bits are defined to exist in the flags word of
|
|
|
|
* the scsi_link structure.
|
|
|
|
*/
|
1997-08-27 15:22:52 +04:00
|
|
|
#define SDEV_DB1 0x10 /* scsi commands, errors, data */
|
1993-11-24 07:52:44 +03:00
|
|
|
#define SDEV_DB2 0x20 /* routine flow tracking */
|
1997-08-27 15:22:52 +04:00
|
|
|
#define SDEV_DB3 0x40 /* internal to routine flows */
|
1993-11-24 07:52:44 +03:00
|
|
|
#define SDEV_DB4 0x80 /* level 4 debugging for this dev */
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
/* type, target and LUN we want to debug */
|
1997-10-03 19:12:12 +04:00
|
|
|
#define DEBUGTYPE BUS_ATAPI
|
1997-08-27 15:22:52 +04:00
|
|
|
#define DEBUGTARGET -1 /* -1 = disable. This is the drive
|
|
|
|
number for ATAPI */
|
1994-12-28 22:42:47 +03:00
|
|
|
#define DEBUGLUN 0
|
1997-08-27 15:22:52 +04:00
|
|
|
#define DEBUGLEVEL (SDEV_DB1|SDEV_DB2|SDEV_DB3)
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the usual debug macro for use with the above bits
|
|
|
|
*/
|
1997-10-03 19:12:12 +04:00
|
|
|
#ifdef SCSIDEBUG
|
1997-08-27 15:22:52 +04:00
|
|
|
#define SC_DEBUG(sc_link,Level,Printstuff) \
|
|
|
|
do { \
|
|
|
|
if ((sc_link)->flags & (Level)) { \
|
|
|
|
sc_link->sc_print_addr(sc_link); \
|
|
|
|
printf Printstuff; \
|
|
|
|
} \
|
1997-10-24 19:44:42 +04:00
|
|
|
} while (0)
|
1997-08-27 15:22:52 +04:00
|
|
|
|
|
|
|
#define SC_DEBUGN(sc_link,Level,Printstuff) \
|
|
|
|
do { \
|
|
|
|
if ((sc_link)->flags & (Level)) { \
|
|
|
|
printf Printstuff; \
|
|
|
|
} \
|
1997-10-24 19:44:42 +04:00
|
|
|
} while (0)
|
1993-11-24 07:52:44 +03:00
|
|
|
#else
|
1994-12-28 22:42:47 +03:00
|
|
|
#define SC_DEBUG(A,B,C)
|
|
|
|
#define SC_DEBUGN(A,B,C)
|
1993-11-24 07:52:44 +03:00
|
|
|
#endif
|