tcm.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #ifndef __TARGET_USB_GADGET_H__
  2. #define __TARGET_USB_GADGET_H__
  3. #include <linux/kref.h>
  4. /* #include <linux/usb/uas.h> */
  5. #include <linux/usb/composite.h>
  6. #include <linux/usb/uas.h>
  7. #include <linux/usb/storage.h>
  8. #include <target/target_core_base.h>
  9. #include <target/target_core_fabric.h>
  10. #define USBG_NAMELEN 32
  11. #define fuas_to_gadget(f) (f->function.config->cdev->gadget)
  12. #define UASP_SS_EP_COMP_LOG_STREAMS 4
  13. #define UASP_SS_EP_COMP_NUM_STREAMS (1 << UASP_SS_EP_COMP_LOG_STREAMS)
  14. enum {
  15. USB_G_STR_INT_UAS = 0,
  16. USB_G_STR_INT_BBB,
  17. };
  18. #define USB_G_ALT_INT_BBB 0
  19. #define USB_G_ALT_INT_UAS 1
  20. #define USB_G_DEFAULT_SESSION_TAGS 128
  21. struct tcm_usbg_nexus {
  22. struct se_session *tvn_se_sess;
  23. };
  24. struct usbg_tpg {
  25. struct mutex tpg_mutex;
  26. /* SAS port target portal group tag for TCM */
  27. u16 tport_tpgt;
  28. /* Pointer back to usbg_tport */
  29. struct usbg_tport *tport;
  30. struct workqueue_struct *workqueue;
  31. /* Returned by usbg_make_tpg() */
  32. struct se_portal_group se_tpg;
  33. u32 gadget_connect;
  34. struct tcm_usbg_nexus *tpg_nexus;
  35. atomic_t tpg_port_count;
  36. struct usb_function_instance *fi;
  37. };
  38. struct usbg_tport {
  39. /* Binary World Wide unique Port Name for SAS Target port */
  40. u64 tport_wwpn;
  41. /* ASCII formatted WWPN for SAS Target port */
  42. char tport_name[USBG_NAMELEN];
  43. /* Returned by usbg_make_tport() */
  44. struct se_wwn tport_wwn;
  45. };
  46. enum uas_state {
  47. UASP_SEND_DATA,
  48. UASP_RECEIVE_DATA,
  49. UASP_SEND_STATUS,
  50. UASP_QUEUE_COMMAND,
  51. };
  52. #define USBG_MAX_CMD 64
  53. struct usbg_cmd {
  54. /* common */
  55. u8 cmd_buf[USBG_MAX_CMD];
  56. u32 data_len;
  57. struct work_struct work;
  58. int unpacked_lun;
  59. struct se_cmd se_cmd;
  60. void *data_buf; /* used if no sg support available */
  61. struct f_uas *fu;
  62. struct completion write_complete;
  63. struct kref ref;
  64. /* UAS only */
  65. u16 tag;
  66. u16 prio_attr;
  67. struct sense_iu sense_iu;
  68. enum uas_state state;
  69. struct uas_stream *stream;
  70. /* BOT only */
  71. __le32 bot_tag;
  72. unsigned int csw_code;
  73. unsigned is_read:1;
  74. };
  75. struct uas_stream {
  76. struct usb_request *req_in;
  77. struct usb_request *req_out;
  78. struct usb_request *req_status;
  79. };
  80. struct usbg_cdb {
  81. struct usb_request *req;
  82. void *buf;
  83. };
  84. struct bot_status {
  85. struct usb_request *req;
  86. struct bulk_cs_wrap csw;
  87. };
  88. struct f_uas {
  89. struct usbg_tpg *tpg;
  90. struct usb_function function;
  91. u16 iface;
  92. u32 flags;
  93. #define USBG_ENABLED (1 << 0)
  94. #define USBG_IS_UAS (1 << 1)
  95. #define USBG_USE_STREAMS (1 << 2)
  96. #define USBG_IS_BOT (1 << 3)
  97. #define USBG_BOT_CMD_PEND (1 << 4)
  98. struct usbg_cdb cmd;
  99. struct usb_ep *ep_in;
  100. struct usb_ep *ep_out;
  101. /* UAS */
  102. struct usb_ep *ep_status;
  103. struct usb_ep *ep_cmd;
  104. struct uas_stream stream[UASP_SS_EP_COMP_NUM_STREAMS];
  105. /* BOT */
  106. struct bot_status bot_status;
  107. struct usb_request *bot_req_in;
  108. struct usb_request *bot_req_out;
  109. };
  110. #endif /* __TARGET_USB_GADGET_H__ */