blob: 6d2007e35df65919f1687341499b26076ba25ed1 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001#ifndef TARGET_CORE_PSCSI_H
2#define TARGET_CORE_PSCSI_H
3
4#define PSCSI_VERSION "v4.0"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08005
6/* used in pscsi_find_alloc_len() */
7#ifndef INQUIRY_DATA_SIZE
8#define INQUIRY_DATA_SIZE 0x24
9#endif
10
11/* used in pscsi_add_device_to_list() */
12#define PSCSI_DEFAULT_QUEUEDEPTH 1
13
14#define PS_RETRY 5
15#define PS_TIMEOUT_DISK (15*HZ)
16#define PS_TIMEOUT_OTHER (500*HZ)
17
18#include <linux/device.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080019#include <linux/kref.h>
20#include <linux/kobject.h>
21
Bart Van Asscheba929992015-05-08 10:11:12 +020022struct scsi_device;
23
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080024struct pscsi_plugin_task {
Bart Van Asscheba929992015-05-08 10:11:12 +020025 unsigned char pscsi_sense[TRANSPORT_SENSE_BUFFER];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026 int pscsi_direction;
27 int pscsi_result;
28 u32 pscsi_resid;
Andy Grover6708bb22011-06-08 10:36:43 -070029 unsigned char pscsi_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080030} ____cacheline_aligned;
31
32#define PDF_HAS_CHANNEL_ID 0x01
33#define PDF_HAS_TARGET_ID 0x02
34#define PDF_HAS_LUN_ID 0x04
35#define PDF_HAS_VPD_UNIT_SERIAL 0x08
36#define PDF_HAS_VPD_DEV_IDENT 0x10
37#define PDF_HAS_VIRT_HOST_ID 0x20
38
39struct pscsi_dev_virt {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040040 struct se_device dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041 int pdv_flags;
42 int pdv_host_id;
43 int pdv_channel_id;
44 int pdv_target_id;
45 int pdv_lun_id;
46 struct block_device *pdv_bd;
47 struct scsi_device *pdv_sd;
Andy Grover5a7125c2015-05-22 14:07:44 -070048 struct Scsi_Host *pdv_lld_host;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080049} ____cacheline_aligned;
50
51typedef enum phv_modes {
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +000052 PHV_VIRTUAL_HOST_ID,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080053 PHV_LLD_SCSI_HOST_NO
54} phv_modes_t;
55
56struct pscsi_hba_virt {
57 int phv_host_id;
58 phv_modes_t phv_mode;
59 struct Scsi_Host *phv_lld_host;
60} ____cacheline_aligned;
61
62#endif /*** TARGET_CORE_PSCSI_H ***/