lpfc_scsi.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Fibre Channel Host Bus Adapters. *
  4. * Copyright (C) 2017-2018 Broadcom. All Rights Reserved. The term *
  5. * “Broadcom” refers to Broadcom Inc and/or its subsidiaries. *
  6. * Copyright (C) 2004-2016 Emulex. All rights reserved. *
  7. * EMULEX and SLI are trademarks of Emulex. *
  8. * www.broadcom.com *
  9. * *
  10. * This program is free software; you can redistribute it and/or *
  11. * modify it under the terms of version 2 of the GNU General *
  12. * Public License as published by the Free Software Foundation. *
  13. * This program is distributed in the hope that it will be useful. *
  14. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
  15. * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
  16. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
  17. * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
  18. * TO BE LEGALLY INVALID. See the GNU General Public License for *
  19. * more details, a copy of which can be found in the file COPYING *
  20. * included with this package. *
  21. *******************************************************************/
  22. #include <asm/byteorder.h>
  23. struct lpfc_hba;
  24. #define LPFC_FCP_CDB_LEN 16
  25. #define list_remove_head(list, entry, type, member) \
  26. do { \
  27. entry = NULL; \
  28. if (!list_empty(list)) { \
  29. entry = list_entry((list)->next, type, member); \
  30. list_del_init(&entry->member); \
  31. } \
  32. } while(0)
  33. #define list_get_first(list, type, member) \
  34. (list_empty(list)) ? NULL : \
  35. list_entry((list)->next, type, member)
  36. /* per-port data that is allocated in the FC transport for us */
  37. struct lpfc_rport_data {
  38. struct lpfc_nodelist *pnode; /* Pointer to the node structure. */
  39. };
  40. struct lpfc_device_id {
  41. struct lpfc_name vport_wwpn;
  42. struct lpfc_name target_wwpn;
  43. uint64_t lun;
  44. };
  45. struct lpfc_device_data {
  46. struct list_head listentry;
  47. struct lpfc_rport_data *rport_data;
  48. struct lpfc_device_id device_id;
  49. uint8_t priority;
  50. bool oas_enabled;
  51. bool available;
  52. };
  53. struct fcp_rsp {
  54. uint32_t rspRsvd1; /* FC Word 0, byte 0:3 */
  55. uint32_t rspRsvd2; /* FC Word 1, byte 0:3 */
  56. uint8_t rspStatus0; /* FCP_STATUS byte 0 (reserved) */
  57. uint8_t rspStatus1; /* FCP_STATUS byte 1 (reserved) */
  58. uint8_t rspStatus2; /* FCP_STATUS byte 2 field validity */
  59. #define RSP_LEN_VALID 0x01 /* bit 0 */
  60. #define SNS_LEN_VALID 0x02 /* bit 1 */
  61. #define RESID_OVER 0x04 /* bit 2 */
  62. #define RESID_UNDER 0x08 /* bit 3 */
  63. uint8_t rspStatus3; /* FCP_STATUS byte 3 SCSI status byte */
  64. uint32_t rspResId; /* Residual xfer if residual count field set in
  65. fcpStatus2 */
  66. /* Received in Big Endian format */
  67. uint32_t rspSnsLen; /* Length of sense data in fcpSnsInfo */
  68. /* Received in Big Endian format */
  69. uint32_t rspRspLen; /* Length of FCP response data in fcpRspInfo */
  70. /* Received in Big Endian format */
  71. uint8_t rspInfo0; /* FCP_RSP_INFO byte 0 (reserved) */
  72. uint8_t rspInfo1; /* FCP_RSP_INFO byte 1 (reserved) */
  73. uint8_t rspInfo2; /* FCP_RSP_INFO byte 2 (reserved) */
  74. uint8_t rspInfo3; /* FCP_RSP_INFO RSP_CODE byte 3 */
  75. #define RSP_NO_FAILURE 0x00
  76. #define RSP_DATA_BURST_ERR 0x01
  77. #define RSP_CMD_FIELD_ERR 0x02
  78. #define RSP_RO_MISMATCH_ERR 0x03
  79. #define RSP_TM_NOT_SUPPORTED 0x04 /* Task mgmt function not supported */
  80. #define RSP_TM_NOT_COMPLETED 0x05 /* Task mgmt function not performed */
  81. #define RSP_TM_INVALID_LU 0x09 /* Task mgmt function to invalid LU */
  82. uint32_t rspInfoRsvd; /* FCP_RSP_INFO bytes 4-7 (reserved) */
  83. uint8_t rspSnsInfo[128];
  84. #define SNS_ILLEGAL_REQ 0x05 /* sense key is byte 3 ([2]) */
  85. #define SNSCOD_BADCMD 0x20 /* sense code is byte 13 ([12]) */
  86. };
  87. struct fcp_cmnd {
  88. struct scsi_lun fcp_lun;
  89. uint8_t fcpCntl0; /* FCP_CNTL byte 0 (reserved) */
  90. uint8_t fcpCntl1; /* FCP_CNTL byte 1 task codes */
  91. #define SIMPLE_Q 0x00
  92. #define HEAD_OF_Q 0x01
  93. #define ORDERED_Q 0x02
  94. #define ACA_Q 0x04
  95. #define UNTAGGED 0x05
  96. uint8_t fcpCntl2; /* FCP_CTL byte 2 task management codes */
  97. #define FCP_ABORT_TASK_SET 0x02 /* Bit 1 */
  98. #define FCP_CLEAR_TASK_SET 0x04 /* bit 2 */
  99. #define FCP_BUS_RESET 0x08 /* bit 3 */
  100. #define FCP_LUN_RESET 0x10 /* bit 4 */
  101. #define FCP_TARGET_RESET 0x20 /* bit 5 */
  102. #define FCP_CLEAR_ACA 0x40 /* bit 6 */
  103. #define FCP_TERMINATE_TASK 0x80 /* bit 7 */
  104. uint8_t fcpCntl3;
  105. #define WRITE_DATA 0x01 /* Bit 0 */
  106. #define READ_DATA 0x02 /* Bit 1 */
  107. uint8_t fcpCdb[LPFC_FCP_CDB_LEN]; /* SRB cdb field is copied here */
  108. uint32_t fcpDl; /* Total transfer length */
  109. };
  110. struct lpfc_scsicmd_bkt {
  111. uint32_t cmd_count;
  112. };
  113. struct lpfc_scsi_buf {
  114. struct list_head list;
  115. struct scsi_cmnd *pCmd;
  116. struct lpfc_rport_data *rdata;
  117. struct lpfc_nodelist *ndlp;
  118. uint32_t timeout;
  119. uint16_t flags; /* TBD convert exch_busy to flags */
  120. #define LPFC_SBUF_XBUSY 0x1 /* SLI4 hba reported XB on WCQE cmpl */
  121. #define LPFC_SBUF_BUMP_QDEPTH 0x8 /* bumped queue depth counter */
  122. uint16_t exch_busy; /* SLI4 hba reported XB on complete WCQE */
  123. uint16_t status; /* From IOCB Word 7- ulpStatus */
  124. uint32_t result; /* From IOCB Word 4. */
  125. uint32_t seg_cnt; /* Number of scatter-gather segments returned by
  126. * dma_map_sg. The driver needs this for calls
  127. * to dma_unmap_sg. */
  128. uint32_t prot_seg_cnt; /* seg_cnt's counterpart for protection data */
  129. dma_addr_t nonsg_phys; /* Non scatter-gather physical address. */
  130. /*
  131. * data and dma_handle are the kernel virtual and bus address of the
  132. * dma-able buffer containing the fcp_cmd, fcp_rsp and a scatter
  133. * gather bde list that supports the sg_tablesize value.
  134. */
  135. void *data;
  136. dma_addr_t dma_handle;
  137. struct fcp_cmnd *fcp_cmnd;
  138. struct fcp_rsp *fcp_rsp;
  139. struct ulp_bde64 *fcp_bpl;
  140. dma_addr_t dma_phys_bpl;
  141. /* cur_iocbq has phys of the dma-able buffer.
  142. * Iotag is in here
  143. */
  144. struct lpfc_iocbq cur_iocbq;
  145. uint16_t cpu;
  146. wait_queue_head_t *waitq;
  147. unsigned long start_time;
  148. #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
  149. /* Used to restore any changes to protection data for error injection */
  150. void *prot_data_segment;
  151. uint32_t prot_data;
  152. uint32_t prot_data_type;
  153. #define LPFC_INJERR_REFTAG 1
  154. #define LPFC_INJERR_APPTAG 2
  155. #define LPFC_INJERR_GUARD 3
  156. #endif
  157. };
  158. #define LPFC_SCSI_DMA_EXT_SIZE 264
  159. #define LPFC_BPL_SIZE 1024
  160. #define MDAC_DIRECT_CMD 0x22
  161. #define FIND_FIRST_OAS_LUN 0
  162. #define NO_MORE_OAS_LUN -1
  163. #define NOT_OAS_ENABLED_LUN NO_MORE_OAS_LUN
  164. #define TXRDY_PAYLOAD_LEN 12
  165. int lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba,
  166. struct lpfc_scsi_buf *lpfc_cmd);