2005-04-17 16:05:31 -05:00
/*******************************************************************
* This file is part of the Emulex Linux Device Driver for *
2005-06-25 10:34:39 -04:00
* Fibre Channel Host Bus Adapters . *
2017-02-12 13:52:39 -08:00
* Copyright ( C ) 2017 Broadcom . All Rights Reserved . The term *
* “ Broadcom ” refers to Broadcom Limited and / or its subsidiaries . *
2016-07-06 12:36:13 -07:00
* Copyright ( C ) 2004 - 2016 Emulex . All rights reserved . *
2005-06-25 10:34:39 -04:00
* EMULEX and SLI are trademarks of Emulex . *
2017-02-12 13:52:39 -08:00
* www . broadcom . com *
2005-04-17 16:05:31 -05:00
* *
* This program is free software ; you can redistribute it and / or *
2005-06-25 10:34:39 -04:00
* modify it under the terms of version 2 of the GNU General *
* Public License as published by the Free Software Foundation . *
* This program is distributed in the hope that it will be useful . *
* ALL EXPRESS OR IMPLIED CONDITIONS , REPRESENTATIONS AND *
* WARRANTIES , INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY , *
* FITNESS FOR A PARTICULAR PURPOSE , OR NON - INFRINGEMENT , ARE *
* DISCLAIMED , EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
* TO BE LEGALLY INVALID . See the GNU General Public License for *
* more details , a copy of which can be found in the file COPYING *
* included with this package . *
2005-04-17 16:05:31 -05:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-27 11:45:17 -07:00
# include <asm/byteorder.h>
2005-04-17 16:05:31 -05:00
struct lpfc_hba ;
2011-12-13 13:22:17 -05:00
# define LPFC_FCP_CDB_LEN 16
2005-04-17 16:05:31 -05:00
# define list_remove_head(list, entry, type, member) \
2006-03-06 10:20:56 -06:00
do { \
entry = NULL ; \
2005-04-17 16:05:31 -05:00
if ( ! list_empty ( list ) ) { \
entry = list_entry ( ( list ) - > next , type , member ) ; \
list_del_init ( & entry - > member ) ; \
2006-03-06 10:20:56 -06:00
} \
} while ( 0 )
2005-04-17 16:05:31 -05:00
# define list_get_first(list, type, member) \
( list_empty ( list ) ) ? NULL : \
list_entry ( ( list ) - > next , type , member )
/* per-port data that is allocated in the FC transport for us */
struct lpfc_rport_data {
struct lpfc_nodelist * pnode ; /* Pointer to the node structure. */
} ;
2014-02-20 09:56:45 -05:00
struct lpfc_device_id {
struct lpfc_name vport_wwpn ;
struct lpfc_name target_wwpn ;
uint64_t lun ;
} ;
struct lpfc_device_data {
struct list_head listentry ;
struct lpfc_rport_data * rport_data ;
struct lpfc_device_id device_id ;
2016-07-06 12:36:05 -07:00
uint8_t priority ;
2014-02-20 09:56:45 -05:00
bool oas_enabled ;
bool available ;
} ;
2005-04-17 16:05:31 -05:00
struct fcp_rsp {
uint32_t rspRsvd1 ; /* FC Word 0, byte 0:3 */
uint32_t rspRsvd2 ; /* FC Word 1, byte 0:3 */
uint8_t rspStatus0 ; /* FCP_STATUS byte 0 (reserved) */
uint8_t rspStatus1 ; /* FCP_STATUS byte 1 (reserved) */
uint8_t rspStatus2 ; /* FCP_STATUS byte 2 field validity */
# define RSP_LEN_VALID 0x01 /* bit 0 */
# define SNS_LEN_VALID 0x02 /* bit 1 */
# define RESID_OVER 0x04 /* bit 2 */
# define RESID_UNDER 0x08 /* bit 3 */
uint8_t rspStatus3 ; /* FCP_STATUS byte 3 SCSI status byte */
uint32_t rspResId ; /* Residual xfer if residual count field set in
fcpStatus2 */
/* Received in Big Endian format */
uint32_t rspSnsLen ; /* Length of sense data in fcpSnsInfo */
/* Received in Big Endian format */
uint32_t rspRspLen ; /* Length of FCP response data in fcpRspInfo */
/* Received in Big Endian format */
uint8_t rspInfo0 ; /* FCP_RSP_INFO byte 0 (reserved) */
uint8_t rspInfo1 ; /* FCP_RSP_INFO byte 1 (reserved) */
uint8_t rspInfo2 ; /* FCP_RSP_INFO byte 2 (reserved) */
uint8_t rspInfo3 ; /* FCP_RSP_INFO RSP_CODE byte 3 */
# define RSP_NO_FAILURE 0x00
# define RSP_DATA_BURST_ERR 0x01
# define RSP_CMD_FIELD_ERR 0x02
# define RSP_RO_MISMATCH_ERR 0x03
# define RSP_TM_NOT_SUPPORTED 0x04 /* Task mgmt function not supported */
# define RSP_TM_NOT_COMPLETED 0x05 /* Task mgmt function not performed */
2013-10-10 12:24:07 -04:00
# define RSP_TM_INVALID_LU 0x09 /* Task mgmt function to invalid LU */
2005-04-17 16:05:31 -05:00
uint32_t rspInfoRsvd ; /* FCP_RSP_INFO bytes 4-7 (reserved) */
uint8_t rspSnsInfo [ 128 ] ;
# define SNS_ILLEGAL_REQ 0x05 /* sense key is byte 3 ([2]) */
# define SNSCOD_BADCMD 0x20 /* sense code is byte 13 ([12]) */
} ;
struct fcp_cmnd {
2005-08-10 15:03:09 -04:00
struct scsi_lun fcp_lun ;
2005-04-17 16:05:31 -05:00
uint8_t fcpCntl0 ; /* FCP_CNTL byte 0 (reserved) */
uint8_t fcpCntl1 ; /* FCP_CNTL byte 1 task codes */
# define SIMPLE_Q 0x00
# define HEAD_OF_Q 0x01
# define ORDERED_Q 0x02
# define ACA_Q 0x04
# define UNTAGGED 0x05
uint8_t fcpCntl2 ; /* FCP_CTL byte 2 task management codes */
# define FCP_ABORT_TASK_SET 0x02 /* Bit 1 */
# define FCP_CLEAR_TASK_SET 0x04 /* bit 2 */
# define FCP_BUS_RESET 0x08 /* bit 3 */
# define FCP_LUN_RESET 0x10 /* bit 4 */
# define FCP_TARGET_RESET 0x20 /* bit 5 */
# define FCP_CLEAR_ACA 0x40 /* bit 6 */
# define FCP_TERMINATE_TASK 0x80 /* bit 7 */
uint8_t fcpCntl3 ;
# define WRITE_DATA 0x01 /* Bit 0 */
# define READ_DATA 0x02 /* Bit 1 */
2011-12-13 13:22:17 -05:00
uint8_t fcpCdb [ LPFC_FCP_CDB_LEN ] ; /* SRB cdb field is copied here */
2005-04-17 16:05:31 -05:00
uint32_t fcpDl ; /* Total transfer length */
} ;
2008-09-07 11:52:10 -04:00
struct lpfc_scsicmd_bkt {
uint32_t cmd_count ;
} ;
2005-04-17 16:05:31 -05:00
struct lpfc_scsi_buf {
struct list_head list ;
struct scsi_cmnd * pCmd ;
struct lpfc_rport_data * rdata ;
uint32_t timeout ;
2017-02-12 13:52:30 -08:00
uint16_t flags ; /* TBD convert exch_busy to flags */
# define LPFC_SBUF_XBUSY 0x1 /* SLI4 hba reported XB on WCQE cmpl */
2010-01-26 23:07:37 -05:00
uint16_t exch_busy ; /* SLI4 hba reported XB on complete WCQE */
2005-04-17 16:05:31 -05:00
uint16_t status ; /* From IOCB Word 7- ulpStatus */
uint32_t result ; /* From IOCB Word 4. */
uint32_t seg_cnt ; /* Number of scatter-gather segments returned by
* dma_map_sg . The driver needs this for calls
* to dma_unmap_sg . */
2008-12-04 22:40:02 -05:00
uint32_t prot_seg_cnt ; /* seg_cnt's counterpart for protection data */
2005-04-17 16:05:31 -05:00
dma_addr_t nonsg_phys ; /* Non scatter-gather physical address. */
/*
2011-03-30 22:57:33 -03:00
* data and dma_handle are the kernel virtual and bus address of the
2005-04-17 16:05:31 -05:00
* dma - able buffer containing the fcp_cmd , fcp_rsp and a scatter
* gather bde list that supports the sg_tablesize value .
*/
void * data ;
dma_addr_t dma_handle ;
struct fcp_cmnd * fcp_cmnd ;
struct fcp_rsp * fcp_rsp ;
struct ulp_bde64 * fcp_bpl ;
2009-05-22 14:51:39 -04:00
dma_addr_t dma_phys_bpl ;
2005-04-17 16:05:31 -05:00
/* cur_iocbq has phys of the dma-able buffer.
* Iotag is in here
*/
struct lpfc_iocbq cur_iocbq ;
2017-02-12 13:52:30 -08:00
uint16_t cpu ;
2008-01-11 01:52:42 -05:00
wait_queue_head_t * waitq ;
2008-09-07 11:52:04 -04:00
unsigned long start_time ;
2012-03-01 22:37:42 -05:00
# ifdef CONFIG_SCSI_LPFC_DEBUG_FS
/* Used to restore any changes to protection data for error injection */
void * prot_data_segment ;
uint32_t prot_data ;
uint32_t prot_data_type ;
# define LPFC_INJERR_REFTAG 1
# define LPFC_INJERR_APPTAG 2
# define LPFC_INJERR_GUARD 3
# endif
2005-04-17 16:05:31 -05:00
} ;
2017-02-12 13:52:27 -08:00
# define LPFC_SCSI_DMA_EXT_SIZE 264
# define LPFC_BPL_SIZE 1024
# define MDAC_DIRECT_CMD 0x22
2014-02-20 09:56:45 -05:00
2017-02-12 13:52:27 -08:00
# define FIND_FIRST_OAS_LUN 0
# define NO_MORE_OAS_LUN -1
# define NOT_OAS_ENABLED_LUN NO_MORE_OAS_LUN
2015-05-22 10:42:38 -04:00
2017-02-12 13:52:30 -08:00
# define TXRDY_PAYLOAD_LEN 12
2015-05-22 10:42:38 -04:00
int lpfc_sli4_scmd_to_wqidx_distr ( struct lpfc_hba * phba ,
struct lpfc_scsi_buf * lpfc_cmd ) ;