ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / scsi / scsi_devinfo.h
1 #ifndef _SCSI_SCSI_DEVINFO_H
2 #define _SCSI_SCSI_DEVINFO_H
3 /*
4  * Flags for SCSI devices that need special treatment
5  */
6 #define BLIST_NOLUN             0x001   /* Only scan LUN 0 */
7 #define BLIST_FORCELUN          0x002   /* Known to have LUNs, force scanning */
8 #define BLIST_BORKEN            0x004   /* Flag for broken handshaking */
9 #define BLIST_KEY               0x008   /* unlock by special command */
10 #define BLIST_SINGLELUN         0x010   /* Do not use LUNs in parallel */
11 #define BLIST_NOTQ              0x020   /* Buggy Tagged Command Queuing */
12 #define BLIST_SPARSELUN         0x040   /* Non consecutive LUN numbering */
13 #define BLIST_MAX5LUN           0x080   /* Avoid LUNS >= 5 */
14 #define BLIST_ISROM             0x100   /* Treat as (removable) CD-ROM */
15 #define BLIST_LARGELUN          0x200   /* LUNs past 7 on a SCSI-2 device */
16 #define BLIST_INQUIRY_36        0x400   /* override additional length field */
17 #define BLIST_INQUIRY_58        0x800   /* ... for broken inquiry responses */
18 #define BLIST_NOSTARTONADD      0x1000  /* do not do automatic start on add */
19 #define BLIST_MS_SKIP_PAGE_08   0x2000  /* do not send ms page 0x08 */
20 #define BLIST_MS_SKIP_PAGE_3F   0x4000  /* do not send ms page 0x3f */
21 #define BLIST_USE_10_BYTE_MS    0x8000  /* use 10 byte ms before 6 byte ms */
22 #define BLIST_MS_192_BYTES_FOR_3F       0x10000 /*  192 byte ms page 0x3f request */
23 #endif