lpfc_scsi.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Enterprise Fibre Channel Host Bus Adapters. *
  4. * Refer to the README file included with this package for *
  5. * driver version and adapter support. *
  6. * Copyright (C) 2004 Emulex Corporation. *
  7. * www.emulex.com *
  8. * *
  9. * This program is free software; you can redistribute it and/or *
  10. * modify it under the terms of the GNU General Public License *
  11. * as published by the Free Software Foundation; either version 2 *
  12. * of the License, or (at your option) any later version. *
  13. * *
  14. * This program is distributed in the hope that it will be useful, *
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  17. * GNU General Public License for more details, a copy of which *
  18. * can be found in the file COPYING included with this package. *
  19. *******************************************************************/
  20. struct lpfc_hba;
  21. #define list_remove_head(list, entry, type, member) \
  22. if (!list_empty(list)) { \
  23. entry = list_entry((list)->next, type, member); \
  24. list_del_init(&entry->member); \
  25. }
  26. #define list_get_first(list, type, member) \
  27. (list_empty(list)) ? NULL : \
  28. list_entry((list)->next, type, member)
  29. /* per-port data that is allocated in the FC transport for us */
  30. struct lpfc_rport_data {
  31. struct lpfc_nodelist *pnode; /* Pointer to the node structure. */
  32. };
  33. struct fcp_rsp {
  34. uint32_t rspRsvd1; /* FC Word 0, byte 0:3 */
  35. uint32_t rspRsvd2; /* FC Word 1, byte 0:3 */
  36. uint8_t rspStatus0; /* FCP_STATUS byte 0 (reserved) */
  37. uint8_t rspStatus1; /* FCP_STATUS byte 1 (reserved) */
  38. uint8_t rspStatus2; /* FCP_STATUS byte 2 field validity */
  39. #define RSP_LEN_VALID 0x01 /* bit 0 */
  40. #define SNS_LEN_VALID 0x02 /* bit 1 */
  41. #define RESID_OVER 0x04 /* bit 2 */
  42. #define RESID_UNDER 0x08 /* bit 3 */
  43. uint8_t rspStatus3; /* FCP_STATUS byte 3 SCSI status byte */
  44. uint32_t rspResId; /* Residual xfer if residual count field set in
  45. fcpStatus2 */
  46. /* Received in Big Endian format */
  47. uint32_t rspSnsLen; /* Length of sense data in fcpSnsInfo */
  48. /* Received in Big Endian format */
  49. uint32_t rspRspLen; /* Length of FCP response data in fcpRspInfo */
  50. /* Received in Big Endian format */
  51. uint8_t rspInfo0; /* FCP_RSP_INFO byte 0 (reserved) */
  52. uint8_t rspInfo1; /* FCP_RSP_INFO byte 1 (reserved) */
  53. uint8_t rspInfo2; /* FCP_RSP_INFO byte 2 (reserved) */
  54. uint8_t rspInfo3; /* FCP_RSP_INFO RSP_CODE byte 3 */
  55. #define RSP_NO_FAILURE 0x00
  56. #define RSP_DATA_BURST_ERR 0x01
  57. #define RSP_CMD_FIELD_ERR 0x02
  58. #define RSP_RO_MISMATCH_ERR 0x03
  59. #define RSP_TM_NOT_SUPPORTED 0x04 /* Task mgmt function not supported */
  60. #define RSP_TM_NOT_COMPLETED 0x05 /* Task mgmt function not performed */
  61. uint32_t rspInfoRsvd; /* FCP_RSP_INFO bytes 4-7 (reserved) */
  62. uint8_t rspSnsInfo[128];
  63. #define SNS_ILLEGAL_REQ 0x05 /* sense key is byte 3 ([2]) */
  64. #define SNSCOD_BADCMD 0x20 /* sense code is byte 13 ([12]) */
  65. };
  66. struct fcp_cmnd {
  67. uint32_t fcpLunMsl; /* most significant lun word (32 bits) */
  68. uint32_t fcpLunLsl; /* least significant lun word (32 bits) */
  69. /* # of bits to shift lun id to end up in right
  70. * payload word, little endian = 8, big = 16.
  71. */
  72. #if __BIG_ENDIAN
  73. #define FC_LUN_SHIFT 16
  74. #define FC_ADDR_MODE_SHIFT 24
  75. #else /* __LITTLE_ENDIAN */
  76. #define FC_LUN_SHIFT 8
  77. #define FC_ADDR_MODE_SHIFT 0
  78. #endif
  79. uint8_t fcpCntl0; /* FCP_CNTL byte 0 (reserved) */
  80. uint8_t fcpCntl1; /* FCP_CNTL byte 1 task codes */
  81. #define SIMPLE_Q 0x00
  82. #define HEAD_OF_Q 0x01
  83. #define ORDERED_Q 0x02
  84. #define ACA_Q 0x04
  85. #define UNTAGGED 0x05
  86. uint8_t fcpCntl2; /* FCP_CTL byte 2 task management codes */
  87. #define FCP_ABORT_TASK_SET 0x02 /* Bit 1 */
  88. #define FCP_CLEAR_TASK_SET 0x04 /* bit 2 */
  89. #define FCP_BUS_RESET 0x08 /* bit 3 */
  90. #define FCP_LUN_RESET 0x10 /* bit 4 */
  91. #define FCP_TARGET_RESET 0x20 /* bit 5 */
  92. #define FCP_CLEAR_ACA 0x40 /* bit 6 */
  93. #define FCP_TERMINATE_TASK 0x80 /* bit 7 */
  94. uint8_t fcpCntl3;
  95. #define WRITE_DATA 0x01 /* Bit 0 */
  96. #define READ_DATA 0x02 /* Bit 1 */
  97. uint8_t fcpCdb[16]; /* SRB cdb field is copied here */
  98. uint32_t fcpDl; /* Total transfer length */
  99. };
  100. struct lpfc_scsi_buf {
  101. struct list_head list;
  102. struct scsi_cmnd *pCmd;
  103. struct lpfc_hba *scsi_hba;
  104. struct lpfc_rport_data *rdata;
  105. uint32_t timeout;
  106. uint16_t status; /* From IOCB Word 7- ulpStatus */
  107. uint32_t result; /* From IOCB Word 4. */
  108. uint32_t seg_cnt; /* Number of scatter-gather segments returned by
  109. * dma_map_sg. The driver needs this for calls
  110. * to dma_unmap_sg. */
  111. dma_addr_t nonsg_phys; /* Non scatter-gather physical address. */
  112. /*
  113. * data and dma_handle are the kernel virutal and bus address of the
  114. * dma-able buffer containing the fcp_cmd, fcp_rsp and a scatter
  115. * gather bde list that supports the sg_tablesize value.
  116. */
  117. void *data;
  118. dma_addr_t dma_handle;
  119. struct fcp_cmnd *fcp_cmnd;
  120. struct fcp_rsp *fcp_rsp;
  121. struct ulp_bde64 *fcp_bpl;
  122. /* cur_iocbq has phys of the dma-able buffer.
  123. * Iotag is in here
  124. */
  125. struct lpfc_iocbq cur_iocbq;
  126. };
  127. #define LPFC_SCSI_DMA_EXT_SIZE 264
  128. #define LPFC_BPL_SIZE 1024
  129. #define MDAC_DIRECT_CMD 0x22