1 #ifndef TARGET_CORE_PSCSI_H
2 #define TARGET_CORE_PSCSI_H
4 #define PSCSI_VERSION "v4.0"
6 /* used in pscsi_find_alloc_len() */
7 #ifndef INQUIRY_DATA_SIZE
8 #define INQUIRY_DATA_SIZE 0x24
11 /* used in pscsi_add_device_to_list() */
12 #define PSCSI_DEFAULT_QUEUEDEPTH 1
15 #define PS_TIMEOUT_DISK (15*HZ)
16 #define PS_TIMEOUT_OTHER (500*HZ)
18 #include <linux/cache.h> /* ___cacheline_aligned */
19 #include <target/target_core_base.h> /* struct se_device */
25 struct pscsi_plugin_task
{
26 unsigned char pscsi_sense
[TRANSPORT_SENSE_BUFFER
];
30 unsigned char pscsi_cdb
[0];
31 } ____cacheline_aligned
;
33 #define PDF_HAS_CHANNEL_ID 0x01
34 #define PDF_HAS_TARGET_ID 0x02
35 #define PDF_HAS_LUN_ID 0x04
36 #define PDF_HAS_VPD_UNIT_SERIAL 0x08
37 #define PDF_HAS_VPD_DEV_IDENT 0x10
38 #define PDF_HAS_VIRT_HOST_ID 0x20
40 struct pscsi_dev_virt
{
47 struct block_device
*pdv_bd
;
48 struct scsi_device
*pdv_sd
;
49 struct Scsi_Host
*pdv_lld_host
;
50 } ____cacheline_aligned
;
52 typedef enum phv_modes
{
57 struct pscsi_hba_virt
{
60 struct Scsi_Host
*phv_lld_host
;
61 } ____cacheline_aligned
;
63 #endif /*** TARGET_CORE_PSCSI_H ***/