| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 1 | /******************************************************************* |
| 2 | * This file is part of the Emulex Linux Device Driver for * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 3 | * Fibre Channel Host Bus Adapters. * |
James Smart | 217c55c | 2018-03-05 12:04:10 -0800 | [diff] [blame] | 4 | * Copyright (C) 2017-2018 Broadcom. All Rights Reserved. The term * |
James Smart | 3e21d1c | 2018-05-04 20:37:59 -0700 | [diff] [blame] | 5 | * “Broadcom” refers to Broadcom Inc and/or its subsidiaries. * |
James Smart | 51f4ca3 | 2016-07-06 12:36:13 -0700 | [diff] [blame] | 6 | * Copyright (C) 2004-2016 Emulex. All rights reserved. * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 7 | * EMULEX and SLI are trademarks of Emulex. * |
James Smart | d080abe | 2017-02-12 13:52:39 -0800 | [diff] [blame] | 8 | * www.broadcom.com * |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 9 | * * |
| 10 | * This program is free software; you can redistribute it and/or * |
James.Smart@Emulex.Com | c44ce17 | 2005-06-25 10:34:39 -0400 | [diff] [blame] | 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. * |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 21 | *******************************************************************/ |
| 22 | |
Olaf Hering | 44456d3 | 2005-07-27 11:45:17 -0700 | [diff] [blame] | 23 | #include <asm/byteorder.h> |
| 24 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 25 | struct lpfc_hba; |
James Smart | df9e1b5 | 2011-12-13 13:22:17 -0500 | [diff] [blame] | 26 | #define LPFC_FCP_CDB_LEN 16 |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 27 | |
| 28 | #define list_remove_head(list, entry, type, member) \ |
James Bottomley | 286fc8f | 2006-03-06 10:20:56 -0600 | [diff] [blame] | 29 | do { \ |
| 30 | entry = NULL; \ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 31 | if (!list_empty(list)) { \ |
| 32 | entry = list_entry((list)->next, type, member); \ |
| 33 | list_del_init(&entry->member); \ |
James Bottomley | 286fc8f | 2006-03-06 10:20:56 -0600 | [diff] [blame] | 34 | } \ |
| 35 | } while(0) |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 36 | |
| 37 | #define list_get_first(list, type, member) \ |
| 38 | (list_empty(list)) ? NULL : \ |
| 39 | list_entry((list)->next, type, member) |
| 40 | |
| 41 | /* per-port data that is allocated in the FC transport for us */ |
| 42 | struct lpfc_rport_data { |
| 43 | struct lpfc_nodelist *pnode; /* Pointer to the node structure. */ |
| 44 | }; |
| 45 | |
James Smart | 1ba981f | 2014-02-20 09:56:45 -0500 | [diff] [blame] | 46 | struct lpfc_device_id { |
| 47 | struct lpfc_name vport_wwpn; |
| 48 | struct lpfc_name target_wwpn; |
| 49 | uint64_t lun; |
| 50 | }; |
| 51 | |
| 52 | struct lpfc_device_data { |
| 53 | struct list_head listentry; |
| 54 | struct lpfc_rport_data *rport_data; |
| 55 | struct lpfc_device_id device_id; |
James Smart | c92c841 | 2016-07-06 12:36:05 -0700 | [diff] [blame] | 56 | uint8_t priority; |
James Smart | 1ba981f | 2014-02-20 09:56:45 -0500 | [diff] [blame] | 57 | bool oas_enabled; |
| 58 | bool available; |
| 59 | }; |
| 60 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 61 | struct fcp_rsp { |
| 62 | uint32_t rspRsvd1; /* FC Word 0, byte 0:3 */ |
| 63 | uint32_t rspRsvd2; /* FC Word 1, byte 0:3 */ |
| 64 | |
| 65 | uint8_t rspStatus0; /* FCP_STATUS byte 0 (reserved) */ |
| 66 | uint8_t rspStatus1; /* FCP_STATUS byte 1 (reserved) */ |
| 67 | uint8_t rspStatus2; /* FCP_STATUS byte 2 field validity */ |
| 68 | #define RSP_LEN_VALID 0x01 /* bit 0 */ |
| 69 | #define SNS_LEN_VALID 0x02 /* bit 1 */ |
| 70 | #define RESID_OVER 0x04 /* bit 2 */ |
| 71 | #define RESID_UNDER 0x08 /* bit 3 */ |
| 72 | uint8_t rspStatus3; /* FCP_STATUS byte 3 SCSI status byte */ |
| 73 | |
| 74 | uint32_t rspResId; /* Residual xfer if residual count field set in |
| 75 | fcpStatus2 */ |
| 76 | /* Received in Big Endian format */ |
| 77 | uint32_t rspSnsLen; /* Length of sense data in fcpSnsInfo */ |
| 78 | /* Received in Big Endian format */ |
| 79 | uint32_t rspRspLen; /* Length of FCP response data in fcpRspInfo */ |
| 80 | /* Received in Big Endian format */ |
| 81 | |
| 82 | uint8_t rspInfo0; /* FCP_RSP_INFO byte 0 (reserved) */ |
| 83 | uint8_t rspInfo1; /* FCP_RSP_INFO byte 1 (reserved) */ |
| 84 | uint8_t rspInfo2; /* FCP_RSP_INFO byte 2 (reserved) */ |
| 85 | uint8_t rspInfo3; /* FCP_RSP_INFO RSP_CODE byte 3 */ |
| 86 | |
| 87 | #define RSP_NO_FAILURE 0x00 |
| 88 | #define RSP_DATA_BURST_ERR 0x01 |
| 89 | #define RSP_CMD_FIELD_ERR 0x02 |
| 90 | #define RSP_RO_MISMATCH_ERR 0x03 |
| 91 | #define RSP_TM_NOT_SUPPORTED 0x04 /* Task mgmt function not supported */ |
| 92 | #define RSP_TM_NOT_COMPLETED 0x05 /* Task mgmt function not performed */ |
James Smart | 53151bb | 2013-10-10 12:24:07 -0400 | [diff] [blame] | 93 | #define RSP_TM_INVALID_LU 0x09 /* Task mgmt function to invalid LU */ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 94 | |
| 95 | uint32_t rspInfoRsvd; /* FCP_RSP_INFO bytes 4-7 (reserved) */ |
| 96 | |
| 97 | uint8_t rspSnsInfo[128]; |
| 98 | #define SNS_ILLEGAL_REQ 0x05 /* sense key is byte 3 ([2]) */ |
| 99 | #define SNSCOD_BADCMD 0x20 /* sense code is byte 13 ([12]) */ |
| 100 | }; |
| 101 | |
| 102 | struct fcp_cmnd { |
James.Smart@Emulex.Com | 9188652 | 2005-08-10 15:03:09 -0400 | [diff] [blame] | 103 | struct scsi_lun fcp_lun; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 104 | |
| 105 | uint8_t fcpCntl0; /* FCP_CNTL byte 0 (reserved) */ |
| 106 | uint8_t fcpCntl1; /* FCP_CNTL byte 1 task codes */ |
| 107 | #define SIMPLE_Q 0x00 |
| 108 | #define HEAD_OF_Q 0x01 |
| 109 | #define ORDERED_Q 0x02 |
| 110 | #define ACA_Q 0x04 |
| 111 | #define UNTAGGED 0x05 |
| 112 | uint8_t fcpCntl2; /* FCP_CTL byte 2 task management codes */ |
| 113 | #define FCP_ABORT_TASK_SET 0x02 /* Bit 1 */ |
| 114 | #define FCP_CLEAR_TASK_SET 0x04 /* bit 2 */ |
| 115 | #define FCP_BUS_RESET 0x08 /* bit 3 */ |
| 116 | #define FCP_LUN_RESET 0x10 /* bit 4 */ |
| 117 | #define FCP_TARGET_RESET 0x20 /* bit 5 */ |
| 118 | #define FCP_CLEAR_ACA 0x40 /* bit 6 */ |
| 119 | #define FCP_TERMINATE_TASK 0x80 /* bit 7 */ |
| 120 | uint8_t fcpCntl3; |
| 121 | #define WRITE_DATA 0x01 /* Bit 0 */ |
| 122 | #define READ_DATA 0x02 /* Bit 1 */ |
| 123 | |
James Smart | df9e1b5 | 2011-12-13 13:22:17 -0500 | [diff] [blame] | 124 | uint8_t fcpCdb[LPFC_FCP_CDB_LEN]; /* SRB cdb field is copied here */ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 125 | uint32_t fcpDl; /* Total transfer length */ |
| 126 | |
| 127 | }; |
| 128 | |
James Smart | ea2151b | 2008-09-07 11:52:10 -0400 | [diff] [blame] | 129 | struct lpfc_scsicmd_bkt { |
| 130 | uint32_t cmd_count; |
| 131 | }; |
| 132 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 133 | struct lpfc_scsi_buf { |
| 134 | struct list_head list; |
| 135 | struct scsi_cmnd *pCmd; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 136 | struct lpfc_rport_data *rdata; |
James Smart | 2a5b7d6 | 2018-07-31 17:23:22 -0700 | [diff] [blame] | 137 | struct lpfc_nodelist *ndlp; |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 138 | |
| 139 | uint32_t timeout; |
| 140 | |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 141 | uint16_t flags; /* TBD convert exch_busy to flags */ |
| 142 | #define LPFC_SBUF_XBUSY 0x1 /* SLI4 hba reported XB on WCQE cmpl */ |
James Smart | 2a5b7d6 | 2018-07-31 17:23:22 -0700 | [diff] [blame] | 143 | #define LPFC_SBUF_BUMP_QDEPTH 0x8 /* bumped queue depth counter */ |
James Smart | 341af10 | 2010-01-26 23:07:37 -0500 | [diff] [blame] | 144 | uint16_t exch_busy; /* SLI4 hba reported XB on complete WCQE */ |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 145 | uint16_t status; /* From IOCB Word 7- ulpStatus */ |
| 146 | uint32_t result; /* From IOCB Word 4. */ |
| 147 | |
| 148 | uint32_t seg_cnt; /* Number of scatter-gather segments returned by |
| 149 | * dma_map_sg. The driver needs this for calls |
| 150 | * to dma_unmap_sg. */ |
James Smart | e2a0a9d | 2008-12-04 22:40:02 -0500 | [diff] [blame] | 151 | uint32_t prot_seg_cnt; /* seg_cnt's counterpart for protection data */ |
| 152 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 153 | dma_addr_t nonsg_phys; /* Non scatter-gather physical address. */ |
| 154 | |
| 155 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 156 | * data and dma_handle are the kernel virtual and bus address of the |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 157 | * dma-able buffer containing the fcp_cmd, fcp_rsp and a scatter |
| 158 | * gather bde list that supports the sg_tablesize value. |
| 159 | */ |
| 160 | void *data; |
| 161 | dma_addr_t dma_handle; |
| 162 | |
| 163 | struct fcp_cmnd *fcp_cmnd; |
| 164 | struct fcp_rsp *fcp_rsp; |
| 165 | struct ulp_bde64 *fcp_bpl; |
| 166 | |
James Smart | da0436e | 2009-05-22 14:51:39 -0400 | [diff] [blame] | 167 | dma_addr_t dma_phys_bpl; |
| 168 | |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 169 | /* cur_iocbq has phys of the dma-able buffer. |
| 170 | * Iotag is in here |
| 171 | */ |
| 172 | struct lpfc_iocbq cur_iocbq; |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 173 | uint16_t cpu; |
| 174 | |
James Smart | fa61a54 | 2008-01-11 01:52:42 -0500 | [diff] [blame] | 175 | wait_queue_head_t *waitq; |
James Smart | 977b5a0 | 2008-09-07 11:52:04 -0400 | [diff] [blame] | 176 | unsigned long start_time; |
James Smart | 9a6b09c | 2012-03-01 22:37:42 -0500 | [diff] [blame] | 177 | |
| 178 | #ifdef CONFIG_SCSI_LPFC_DEBUG_FS |
| 179 | /* Used to restore any changes to protection data for error injection */ |
| 180 | void *prot_data_segment; |
| 181 | uint32_t prot_data; |
| 182 | uint32_t prot_data_type; |
| 183 | #define LPFC_INJERR_REFTAG 1 |
| 184 | #define LPFC_INJERR_APPTAG 2 |
| 185 | #define LPFC_INJERR_GUARD 3 |
| 186 | #endif |
| dea3101 | 2005-04-17 16:05:31 -0500 | [diff] [blame] | 187 | }; |
| 188 | |
James Smart | 2ea259e | 2017-02-12 13:52:27 -0800 | [diff] [blame] | 189 | #define LPFC_SCSI_DMA_EXT_SIZE 264 |
| 190 | #define LPFC_BPL_SIZE 1024 |
| 191 | #define MDAC_DIRECT_CMD 0x22 |
James Smart | 1ba981f | 2014-02-20 09:56:45 -0500 | [diff] [blame] | 192 | |
James Smart | 2ea259e | 2017-02-12 13:52:27 -0800 | [diff] [blame] | 193 | #define FIND_FIRST_OAS_LUN 0 |
| 194 | #define NO_MORE_OAS_LUN -1 |
| 195 | #define NOT_OAS_ENABLED_LUN NO_MORE_OAS_LUN |
James Smart | 8b0dff1 | 2015-05-22 10:42:38 -0400 | [diff] [blame] | 196 | |
James Smart | 1dc5ec2 | 2018-10-23 13:41:11 -0700 | [diff] [blame] | 197 | #ifndef FC_PORTSPEED_128GBIT |
| 198 | #define FC_PORTSPEED_128GBIT 0x2000 |
| 199 | #endif |
| 200 | |
James Smart | 895427b | 2017-02-12 13:52:30 -0800 | [diff] [blame] | 201 | #define TXRDY_PAYLOAD_LEN 12 |
| 202 | |
James Smart | 8b0dff1 | 2015-05-22 10:42:38 -0400 | [diff] [blame] | 203 | int lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba, |
| 204 | struct lpfc_scsi_buf *lpfc_cmd); |