1*4882a593Smuzhiyun /******************************************************************* 2*4882a593Smuzhiyun * This file is part of the Emulex Linux Device Driver for * 3*4882a593Smuzhiyun * Fibre Channel Host Bus Adapters. * 4*4882a593Smuzhiyun * Copyright (C) 2017-2019 Broadcom. All Rights Reserved. The term * 5*4882a593Smuzhiyun * “Broadcom” refers to Broadcom Inc and/or its subsidiaries. * 6*4882a593Smuzhiyun * Copyright (C) 2004-2016 Emulex. All rights reserved. * 7*4882a593Smuzhiyun * EMULEX and SLI are trademarks of Emulex. * 8*4882a593Smuzhiyun * www.broadcom.com * 9*4882a593Smuzhiyun * * 10*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or * 11*4882a593Smuzhiyun * modify it under the terms of version 2 of the GNU General * 12*4882a593Smuzhiyun * Public License as published by the Free Software Foundation. * 13*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful. * 14*4882a593Smuzhiyun * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * 15*4882a593Smuzhiyun * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * 16*4882a593Smuzhiyun * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE * 17*4882a593Smuzhiyun * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD * 18*4882a593Smuzhiyun * TO BE LEGALLY INVALID. See the GNU General Public License for * 19*4882a593Smuzhiyun * more details, a copy of which can be found in the file COPYING * 20*4882a593Smuzhiyun * included with this package. * 21*4882a593Smuzhiyun *******************************************************************/ 22*4882a593Smuzhiyun 23*4882a593Smuzhiyun #include <asm/byteorder.h> 24*4882a593Smuzhiyun 25*4882a593Smuzhiyun struct lpfc_hba; 26*4882a593Smuzhiyun #define LPFC_FCP_CDB_LEN 16 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun #define list_remove_head(list, entry, type, member) \ 29*4882a593Smuzhiyun do { \ 30*4882a593Smuzhiyun entry = NULL; \ 31*4882a593Smuzhiyun if (!list_empty(list)) { \ 32*4882a593Smuzhiyun entry = list_entry((list)->next, type, member); \ 33*4882a593Smuzhiyun list_del_init(&entry->member); \ 34*4882a593Smuzhiyun } \ 35*4882a593Smuzhiyun } while(0) 36*4882a593Smuzhiyun 37*4882a593Smuzhiyun #define list_get_first(list, type, member) \ 38*4882a593Smuzhiyun (list_empty(list)) ? NULL : \ 39*4882a593Smuzhiyun list_entry((list)->next, type, member) 40*4882a593Smuzhiyun 41*4882a593Smuzhiyun /* per-port data that is allocated in the FC transport for us */ 42*4882a593Smuzhiyun struct lpfc_rport_data { 43*4882a593Smuzhiyun struct lpfc_nodelist *pnode; /* Pointer to the node structure. */ 44*4882a593Smuzhiyun }; 45*4882a593Smuzhiyun 46*4882a593Smuzhiyun struct lpfc_device_id { 47*4882a593Smuzhiyun struct lpfc_name vport_wwpn; 48*4882a593Smuzhiyun struct lpfc_name target_wwpn; 49*4882a593Smuzhiyun uint64_t lun; 50*4882a593Smuzhiyun }; 51*4882a593Smuzhiyun 52*4882a593Smuzhiyun struct lpfc_device_data { 53*4882a593Smuzhiyun struct list_head listentry; 54*4882a593Smuzhiyun struct lpfc_rport_data *rport_data; 55*4882a593Smuzhiyun struct lpfc_device_id device_id; 56*4882a593Smuzhiyun uint8_t priority; 57*4882a593Smuzhiyun bool oas_enabled; 58*4882a593Smuzhiyun bool available; 59*4882a593Smuzhiyun }; 60*4882a593Smuzhiyun 61*4882a593Smuzhiyun struct fcp_rsp { 62*4882a593Smuzhiyun uint32_t rspRsvd1; /* FC Word 0, byte 0:3 */ 63*4882a593Smuzhiyun uint32_t rspRsvd2; /* FC Word 1, byte 0:3 */ 64*4882a593Smuzhiyun 65*4882a593Smuzhiyun uint8_t rspStatus0; /* FCP_STATUS byte 0 (reserved) */ 66*4882a593Smuzhiyun uint8_t rspStatus1; /* FCP_STATUS byte 1 (reserved) */ 67*4882a593Smuzhiyun uint8_t rspStatus2; /* FCP_STATUS byte 2 field validity */ 68*4882a593Smuzhiyun #define RSP_LEN_VALID 0x01 /* bit 0 */ 69*4882a593Smuzhiyun #define SNS_LEN_VALID 0x02 /* bit 1 */ 70*4882a593Smuzhiyun #define RESID_OVER 0x04 /* bit 2 */ 71*4882a593Smuzhiyun #define RESID_UNDER 0x08 /* bit 3 */ 72*4882a593Smuzhiyun uint8_t rspStatus3; /* FCP_STATUS byte 3 SCSI status byte */ 73*4882a593Smuzhiyun 74*4882a593Smuzhiyun uint32_t rspResId; /* Residual xfer if residual count field set in 75*4882a593Smuzhiyun fcpStatus2 */ 76*4882a593Smuzhiyun /* Received in Big Endian format */ 77*4882a593Smuzhiyun uint32_t rspSnsLen; /* Length of sense data in fcpSnsInfo */ 78*4882a593Smuzhiyun /* Received in Big Endian format */ 79*4882a593Smuzhiyun uint32_t rspRspLen; /* Length of FCP response data in fcpRspInfo */ 80*4882a593Smuzhiyun /* Received in Big Endian format */ 81*4882a593Smuzhiyun 82*4882a593Smuzhiyun uint8_t rspInfo0; /* FCP_RSP_INFO byte 0 (reserved) */ 83*4882a593Smuzhiyun uint8_t rspInfo1; /* FCP_RSP_INFO byte 1 (reserved) */ 84*4882a593Smuzhiyun uint8_t rspInfo2; /* FCP_RSP_INFO byte 2 (reserved) */ 85*4882a593Smuzhiyun uint8_t rspInfo3; /* FCP_RSP_INFO RSP_CODE byte 3 */ 86*4882a593Smuzhiyun 87*4882a593Smuzhiyun #define RSP_NO_FAILURE 0x00 88*4882a593Smuzhiyun #define RSP_DATA_BURST_ERR 0x01 89*4882a593Smuzhiyun #define RSP_CMD_FIELD_ERR 0x02 90*4882a593Smuzhiyun #define RSP_RO_MISMATCH_ERR 0x03 91*4882a593Smuzhiyun #define RSP_TM_NOT_SUPPORTED 0x04 /* Task mgmt function not supported */ 92*4882a593Smuzhiyun #define RSP_TM_NOT_COMPLETED 0x05 /* Task mgmt function not performed */ 93*4882a593Smuzhiyun #define RSP_TM_INVALID_LU 0x09 /* Task mgmt function to invalid LU */ 94*4882a593Smuzhiyun 95*4882a593Smuzhiyun uint32_t rspInfoRsvd; /* FCP_RSP_INFO bytes 4-7 (reserved) */ 96*4882a593Smuzhiyun 97*4882a593Smuzhiyun uint8_t rspSnsInfo[128]; 98*4882a593Smuzhiyun #define SNS_ILLEGAL_REQ 0x05 /* sense key is byte 3 ([2]) */ 99*4882a593Smuzhiyun #define SNSCOD_BADCMD 0x20 /* sense code is byte 13 ([12]) */ 100*4882a593Smuzhiyun }; 101*4882a593Smuzhiyun 102*4882a593Smuzhiyun struct fcp_cmnd { 103*4882a593Smuzhiyun struct scsi_lun fcp_lun; 104*4882a593Smuzhiyun 105*4882a593Smuzhiyun uint8_t fcpCntl0; /* FCP_CNTL byte 0 (reserved) */ 106*4882a593Smuzhiyun uint8_t fcpCntl1; /* FCP_CNTL byte 1 task codes */ 107*4882a593Smuzhiyun #define SIMPLE_Q 0x00 108*4882a593Smuzhiyun #define HEAD_OF_Q 0x01 109*4882a593Smuzhiyun #define ORDERED_Q 0x02 110*4882a593Smuzhiyun #define ACA_Q 0x04 111*4882a593Smuzhiyun #define UNTAGGED 0x05 112*4882a593Smuzhiyun uint8_t fcpCntl2; /* FCP_CTL byte 2 task management codes */ 113*4882a593Smuzhiyun #define FCP_ABORT_TASK_SET 0x02 /* Bit 1 */ 114*4882a593Smuzhiyun #define FCP_CLEAR_TASK_SET 0x04 /* bit 2 */ 115*4882a593Smuzhiyun #define FCP_BUS_RESET 0x08 /* bit 3 */ 116*4882a593Smuzhiyun #define FCP_LUN_RESET 0x10 /* bit 4 */ 117*4882a593Smuzhiyun #define FCP_TARGET_RESET 0x20 /* bit 5 */ 118*4882a593Smuzhiyun #define FCP_CLEAR_ACA 0x40 /* bit 6 */ 119*4882a593Smuzhiyun #define FCP_TERMINATE_TASK 0x80 /* bit 7 */ 120*4882a593Smuzhiyun uint8_t fcpCntl3; 121*4882a593Smuzhiyun #define WRITE_DATA 0x01 /* Bit 0 */ 122*4882a593Smuzhiyun #define READ_DATA 0x02 /* Bit 1 */ 123*4882a593Smuzhiyun 124*4882a593Smuzhiyun uint8_t fcpCdb[LPFC_FCP_CDB_LEN]; /* SRB cdb field is copied here */ 125*4882a593Smuzhiyun uint32_t fcpDl; /* Total transfer length */ 126*4882a593Smuzhiyun 127*4882a593Smuzhiyun }; 128*4882a593Smuzhiyun 129*4882a593Smuzhiyun struct lpfc_scsicmd_bkt { 130*4882a593Smuzhiyun uint32_t cmd_count; 131*4882a593Smuzhiyun }; 132*4882a593Smuzhiyun 133*4882a593Smuzhiyun #define LPFC_SCSI_DMA_EXT_SIZE 264 134*4882a593Smuzhiyun #define LPFC_BPL_SIZE 1024 135*4882a593Smuzhiyun #define MDAC_DIRECT_CMD 0x22 136*4882a593Smuzhiyun 137*4882a593Smuzhiyun #define FIND_FIRST_OAS_LUN 0 138*4882a593Smuzhiyun #define NO_MORE_OAS_LUN -1 139*4882a593Smuzhiyun #define NOT_OAS_ENABLED_LUN NO_MORE_OAS_LUN 140*4882a593Smuzhiyun 141*4882a593Smuzhiyun #ifndef FC_PORTSPEED_128GBIT 142*4882a593Smuzhiyun #define FC_PORTSPEED_128GBIT 0x2000 143*4882a593Smuzhiyun #endif 144*4882a593Smuzhiyun 145*4882a593Smuzhiyun #define TXRDY_PAYLOAD_LEN 12 146*4882a593Smuzhiyun 147*4882a593Smuzhiyun /* For sysfs/debugfs tmp string max len */ 148*4882a593Smuzhiyun #define LPFC_MAX_SCSI_INFO_TMP_LEN 79 149*4882a593Smuzhiyun 150