target_core_pscsi.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef TARGET_CORE_PSCSI_H
  2. #define TARGET_CORE_PSCSI_H
  3. #define PSCSI_VERSION "v4.0"
  4. /* used in pscsi_find_alloc_len() */
  5. #ifndef INQUIRY_DATA_SIZE
  6. #define INQUIRY_DATA_SIZE 0x24
  7. #endif
  8. /* used in pscsi_add_device_to_list() */
  9. #define PSCSI_DEFAULT_QUEUEDEPTH 1
  10. #define PS_RETRY 5
  11. #define PS_TIMEOUT_DISK (15*HZ)
  12. #define PS_TIMEOUT_OTHER (500*HZ)
  13. #include <linux/cache.h> /* ___cacheline_aligned */
  14. #include <target/target_core_base.h> /* struct se_device */
  15. struct block_device;
  16. struct scsi_device;
  17. struct Scsi_Host;
  18. struct pscsi_plugin_task {
  19. unsigned char pscsi_cdb[0];
  20. } ____cacheline_aligned;
  21. #define PDF_HAS_CHANNEL_ID 0x01
  22. #define PDF_HAS_TARGET_ID 0x02
  23. #define PDF_HAS_LUN_ID 0x04
  24. #define PDF_HAS_VPD_UNIT_SERIAL 0x08
  25. #define PDF_HAS_VPD_DEV_IDENT 0x10
  26. #define PDF_HAS_VIRT_HOST_ID 0x20
  27. struct pscsi_dev_virt {
  28. struct se_device dev;
  29. int pdv_flags;
  30. int pdv_host_id;
  31. int pdv_channel_id;
  32. int pdv_target_id;
  33. int pdv_lun_id;
  34. struct block_device *pdv_bd;
  35. struct scsi_device *pdv_sd;
  36. struct Scsi_Host *pdv_lld_host;
  37. } ____cacheline_aligned;
  38. typedef enum phv_modes {
  39. PHV_VIRTUAL_HOST_ID,
  40. PHV_LLD_SCSI_HOST_NO
  41. } phv_modes_t;
  42. struct pscsi_hba_virt {
  43. int phv_host_id;
  44. phv_modes_t phv_mode;
  45. struct Scsi_Host *phv_lld_host;
  46. } ____cacheline_aligned;
  47. #endif /*** TARGET_CORE_PSCSI_H ***/