| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 1 | /* | 
|  | 2 | * zfcp device driver | 
|  | 3 | * | 
|  | 4 | * Fibre Channel related definitions and inline functions for the zfcp | 
|  | 5 | * device driver | 
|  | 6 | * | 
|  | 7 | * Copyright IBM Corporation 2009 | 
|  | 8 | */ | 
|  | 9 |  | 
|  | 10 | #ifndef ZFCP_FC_H | 
|  | 11 | #define ZFCP_FC_H | 
|  | 12 |  | 
| Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 13 | #include <scsi/fc/fc_els.h> | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 14 | #include <scsi/fc/fc_fcp.h> | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 15 | #include <scsi/fc/fc_ns.h> | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 16 | #include <scsi/scsi_cmnd.h> | 
|  | 17 | #include <scsi/scsi_tcq.h> | 
| Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 18 | #include "zfcp_fsf.h" | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 19 |  | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 20 | #define ZFCP_FC_CT_SIZE_PAGE	  (PAGE_SIZE - sizeof(struct fc_ct_hdr)) | 
|  | 21 | #define ZFCP_FC_GPN_FT_ENT_PAGE	  (ZFCP_FC_CT_SIZE_PAGE \ | 
|  | 22 | / sizeof(struct fc_gpn_ft_resp)) | 
|  | 23 | #define ZFCP_FC_GPN_FT_NUM_BUFS	  4 /* memory pages */ | 
|  | 24 |  | 
|  | 25 | #define ZFCP_FC_GPN_FT_MAX_SIZE	  (ZFCP_FC_GPN_FT_NUM_BUFS * PAGE_SIZE \ | 
|  | 26 | - sizeof(struct fc_ct_hdr)) | 
|  | 27 | #define ZFCP_FC_GPN_FT_MAX_ENT	  (ZFCP_FC_GPN_FT_NUM_BUFS * \ | 
|  | 28 | (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) | 
|  | 29 |  | 
| Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 30 | #define ZFCP_FC_CTELS_TMO	(2 * FC_DEF_R_A_TOV / 1000) | 
|  | 31 |  | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 32 | /** | 
| Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 33 | * struct zfcp_fc_event - FC HBAAPI event for internal queueing from irq context | 
|  | 34 | * @code: Event code | 
|  | 35 | * @data: Event data | 
|  | 36 | * @list: list_head for zfcp_fc_events list | 
|  | 37 | */ | 
|  | 38 | struct zfcp_fc_event { | 
|  | 39 | enum fc_host_event_code code; | 
|  | 40 | u32 data; | 
|  | 41 | struct list_head list; | 
|  | 42 | }; | 
|  | 43 |  | 
|  | 44 | /** | 
|  | 45 | * struct zfcp_fc_events - Infrastructure for posting FC events from irq context | 
|  | 46 | * @list: List for queueing of events from irq context to workqueue | 
|  | 47 | * @list_lock: Lock for event list | 
|  | 48 | * @work: work_struct for forwarding events in workqueue | 
|  | 49 | */ | 
|  | 50 | struct zfcp_fc_events { | 
|  | 51 | struct list_head list; | 
|  | 52 | spinlock_t list_lock; | 
|  | 53 | struct work_struct work; | 
|  | 54 | }; | 
|  | 55 |  | 
|  | 56 | /** | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 57 | * struct zfcp_fc_gid_pn_req - container for ct header plus gid_pn request | 
|  | 58 | * @ct_hdr: FC GS common transport header | 
|  | 59 | * @gid_pn: GID_PN request | 
|  | 60 | */ | 
|  | 61 | struct zfcp_fc_gid_pn_req { | 
|  | 62 | struct fc_ct_hdr	ct_hdr; | 
|  | 63 | struct fc_ns_gid_pn	gid_pn; | 
|  | 64 | } __packed; | 
|  | 65 |  | 
|  | 66 | /** | 
| Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 67 | * struct zfcp_fc_gid_pn_rsp - container for ct header plus gid_pn response | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 68 | * @ct_hdr: FC GS common transport header | 
|  | 69 | * @gid_pn: GID_PN response | 
|  | 70 | */ | 
| Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 71 | struct zfcp_fc_gid_pn_rsp { | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 72 | struct fc_ct_hdr	ct_hdr; | 
|  | 73 | struct fc_gid_pn_resp	gid_pn; | 
|  | 74 | } __packed; | 
|  | 75 |  | 
|  | 76 | /** | 
| Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 77 | * struct zfcp_fc_gpn_ft - container for ct header plus gpn_ft request | 
|  | 78 | * @ct_hdr: FC GS common transport header | 
|  | 79 | * @gpn_ft: GPN_FT request | 
|  | 80 | */ | 
|  | 81 | struct zfcp_fc_gpn_ft_req { | 
|  | 82 | struct fc_ct_hdr	ct_hdr; | 
|  | 83 | struct fc_ns_gid_ft	gpn_ft; | 
|  | 84 | } __packed; | 
|  | 85 |  | 
|  | 86 | /** | 
| Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 87 | * struct zfcp_fc_gspn_req - container for ct header plus GSPN_ID request | 
|  | 88 | * @ct_hdr: FC GS common transport header | 
|  | 89 | * @gspn: GSPN_ID request | 
|  | 90 | */ | 
|  | 91 | struct zfcp_fc_gspn_req { | 
|  | 92 | struct fc_ct_hdr	ct_hdr; | 
|  | 93 | struct fc_gid_pn_resp	gspn; | 
|  | 94 | } __packed; | 
|  | 95 |  | 
|  | 96 | /** | 
|  | 97 | * struct zfcp_fc_gspn_rsp - container for ct header plus GSPN_ID response | 
|  | 98 | * @ct_hdr: FC GS common transport header | 
|  | 99 | * @gspn: GSPN_ID response | 
|  | 100 | * @name: The name string of the GSPN_ID response | 
|  | 101 | */ | 
|  | 102 | struct zfcp_fc_gspn_rsp { | 
|  | 103 | struct fc_ct_hdr	ct_hdr; | 
|  | 104 | struct fc_gspn_resp	gspn; | 
|  | 105 | char			name[FC_SYMBOLIC_NAME_SIZE]; | 
|  | 106 | } __packed; | 
|  | 107 |  | 
|  | 108 | /** | 
|  | 109 | * struct zfcp_fc_rspn_req - container for ct header plus RSPN_ID request | 
|  | 110 | * @ct_hdr: FC GS common transport header | 
|  | 111 | * @rspn: RSPN_ID request | 
|  | 112 | * @name: The name string of the RSPN_ID request | 
|  | 113 | */ | 
|  | 114 | struct zfcp_fc_rspn_req { | 
|  | 115 | struct fc_ct_hdr	ct_hdr; | 
|  | 116 | struct fc_ns_rspn	rspn; | 
|  | 117 | char			name[FC_SYMBOLIC_NAME_SIZE]; | 
|  | 118 | } __packed; | 
|  | 119 |  | 
|  | 120 | /** | 
| Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 121 | * struct zfcp_fc_req - Container for FC ELS and CT requests sent from zfcp | 
|  | 122 | * @ct_els: data required for issuing fsf command | 
|  | 123 | * @sg_req: scatterlist entry for request data | 
|  | 124 | * @sg_rsp: scatterlist entry for response data | 
|  | 125 | * @u: request specific data | 
| Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 126 | */ | 
| Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 127 | struct zfcp_fc_req { | 
|  | 128 | struct zfcp_fsf_ct_els				ct_els; | 
|  | 129 | struct scatterlist				sg_req; | 
|  | 130 | struct scatterlist				sg_rsp; | 
|  | 131 | union { | 
|  | 132 | struct { | 
|  | 133 | struct fc_els_adisc		req; | 
|  | 134 | struct fc_els_adisc		rsp; | 
|  | 135 | } adisc; | 
| Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 136 | struct { | 
|  | 137 | struct zfcp_fc_gid_pn_req	req; | 
|  | 138 | struct zfcp_fc_gid_pn_rsp	rsp; | 
|  | 139 | } gid_pn; | 
| Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 140 | struct { | 
|  | 141 | struct scatterlist sg_rsp2[ZFCP_FC_GPN_FT_NUM_BUFS - 1]; | 
|  | 142 | struct zfcp_fc_gpn_ft_req	req; | 
|  | 143 | } gpn_ft; | 
| Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 144 | struct { | 
|  | 145 | struct zfcp_fc_gspn_req		req; | 
|  | 146 | struct zfcp_fc_gspn_rsp		rsp; | 
|  | 147 | } gspn; | 
|  | 148 | struct { | 
|  | 149 | struct zfcp_fc_rspn_req		req; | 
|  | 150 | struct fc_ct_hdr		rsp; | 
|  | 151 | } rspn; | 
| Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 152 | } u; | 
| Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 153 | }; | 
|  | 154 |  | 
|  | 155 | /** | 
| Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 156 | * enum zfcp_fc_wka_status - FC WKA port status in zfcp | 
|  | 157 | * @ZFCP_FC_WKA_PORT_OFFLINE: Port is closed and not in use | 
|  | 158 | * @ZFCP_FC_WKA_PORT_CLOSING: The FSF "close port" request is pending | 
|  | 159 | * @ZFCP_FC_WKA_PORT_OPENING: The FSF "open port" request is pending | 
|  | 160 | * @ZFCP_FC_WKA_PORT_ONLINE: The port is open and the port handle is valid | 
|  | 161 | */ | 
|  | 162 | enum zfcp_fc_wka_status { | 
|  | 163 | ZFCP_FC_WKA_PORT_OFFLINE, | 
|  | 164 | ZFCP_FC_WKA_PORT_CLOSING, | 
|  | 165 | ZFCP_FC_WKA_PORT_OPENING, | 
|  | 166 | ZFCP_FC_WKA_PORT_ONLINE, | 
|  | 167 | }; | 
|  | 168 |  | 
|  | 169 | /** | 
|  | 170 | * struct zfcp_fc_wka_port - representation of well-known-address (WKA) FC port | 
|  | 171 | * @adapter: Pointer to adapter structure this WKA port belongs to | 
|  | 172 | * @completion_wq: Wait for completion of open/close command | 
|  | 173 | * @status: Current status of WKA port | 
|  | 174 | * @refcount: Reference count to keep port open as long as it is in use | 
|  | 175 | * @d_id: FC destination id or well-known-address | 
|  | 176 | * @handle: FSF handle for the open WKA port | 
|  | 177 | * @mutex: Mutex used during opening/closing state changes | 
|  | 178 | * @work: For delaying the closing of the WKA port | 
|  | 179 | */ | 
|  | 180 | struct zfcp_fc_wka_port { | 
|  | 181 | struct zfcp_adapter	*adapter; | 
|  | 182 | wait_queue_head_t	completion_wq; | 
|  | 183 | enum zfcp_fc_wka_status	status; | 
|  | 184 | atomic_t		refcount; | 
|  | 185 | u32			d_id; | 
|  | 186 | u32			handle; | 
|  | 187 | struct mutex		mutex; | 
|  | 188 | struct delayed_work	work; | 
|  | 189 | }; | 
|  | 190 |  | 
|  | 191 | /** | 
|  | 192 | * struct zfcp_fc_wka_ports - Data structures for FC generic services | 
|  | 193 | * @ms: FC Management service | 
|  | 194 | * @ts: FC time service | 
|  | 195 | * @ds: FC directory service | 
|  | 196 | * @as: FC alias service | 
|  | 197 | */ | 
|  | 198 | struct zfcp_fc_wka_ports { | 
|  | 199 | struct zfcp_fc_wka_port ms; | 
|  | 200 | struct zfcp_fc_wka_port ts; | 
|  | 201 | struct zfcp_fc_wka_port ds; | 
|  | 202 | struct zfcp_fc_wka_port as; | 
|  | 203 | }; | 
|  | 204 |  | 
|  | 205 | /** | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 206 | * zfcp_fc_scsi_to_fcp - setup FCP command with data from scsi_cmnd | 
|  | 207 | * @fcp: fcp_cmnd to setup | 
|  | 208 | * @scsi: scsi_cmnd where to get LUN, task attributes/flags and CDB | 
| Christof Schmitt | 2443c8b | 2011-02-22 19:54:45 +0100 | [diff] [blame] | 209 | * @tm: task management flags to setup task management command | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 210 | */ | 
|  | 211 | static inline | 
| Christof Schmitt | 2443c8b | 2011-02-22 19:54:45 +0100 | [diff] [blame] | 212 | void zfcp_fc_scsi_to_fcp(struct fcp_cmnd *fcp, struct scsi_cmnd *scsi, | 
|  | 213 | u8 tm_flags) | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 214 | { | 
|  | 215 | char tag[2]; | 
|  | 216 |  | 
|  | 217 | int_to_scsilun(scsi->device->lun, (struct scsi_lun *) &fcp->fc_lun); | 
|  | 218 |  | 
| Christof Schmitt | 2443c8b | 2011-02-22 19:54:45 +0100 | [diff] [blame] | 219 | if (unlikely(tm_flags)) { | 
|  | 220 | fcp->fc_tm_flags = tm_flags; | 
|  | 221 | return; | 
|  | 222 | } | 
|  | 223 |  | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 224 | if (scsi_populate_tag_msg(scsi, tag)) { | 
|  | 225 | switch (tag[0]) { | 
|  | 226 | case MSG_ORDERED_TAG: | 
|  | 227 | fcp->fc_pri_ta |= FCP_PTA_ORDERED; | 
|  | 228 | break; | 
|  | 229 | case MSG_SIMPLE_TAG: | 
|  | 230 | fcp->fc_pri_ta |= FCP_PTA_SIMPLE; | 
|  | 231 | break; | 
|  | 232 | }; | 
|  | 233 | } else | 
|  | 234 | fcp->fc_pri_ta = FCP_PTA_SIMPLE; | 
|  | 235 |  | 
|  | 236 | if (scsi->sc_data_direction == DMA_FROM_DEVICE) | 
|  | 237 | fcp->fc_flags |= FCP_CFL_RDDATA; | 
|  | 238 | if (scsi->sc_data_direction == DMA_TO_DEVICE) | 
|  | 239 | fcp->fc_flags |= FCP_CFL_WRDATA; | 
|  | 240 |  | 
|  | 241 | memcpy(fcp->fc_cdb, scsi->cmnd, scsi->cmd_len); | 
|  | 242 |  | 
|  | 243 | fcp->fc_dl = scsi_bufflen(scsi); | 
| Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 244 |  | 
|  | 245 | if (scsi_get_prot_type(scsi) == SCSI_PROT_DIF_TYPE1) | 
|  | 246 | fcp->fc_dl += fcp->fc_dl / scsi->device->sector_size * 8; | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 247 | } | 
|  | 248 |  | 
|  | 249 | /** | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 250 | * zfcp_fc_evap_fcp_rsp - evaluate FCP RSP IU and update scsi_cmnd accordingly | 
|  | 251 | * @fcp_rsp: FCP RSP IU to evaluate | 
|  | 252 | * @scsi: SCSI command where to update status and sense buffer | 
|  | 253 | */ | 
|  | 254 | static inline | 
|  | 255 | void zfcp_fc_eval_fcp_rsp(struct fcp_resp_with_ext *fcp_rsp, | 
|  | 256 | struct scsi_cmnd *scsi) | 
|  | 257 | { | 
|  | 258 | struct fcp_resp_rsp_info *rsp_info; | 
|  | 259 | char *sense; | 
|  | 260 | u32 sense_len, resid; | 
|  | 261 | u8 rsp_flags; | 
|  | 262 |  | 
|  | 263 | set_msg_byte(scsi, COMMAND_COMPLETE); | 
|  | 264 | scsi->result |= fcp_rsp->resp.fr_status; | 
|  | 265 |  | 
|  | 266 | rsp_flags = fcp_rsp->resp.fr_flags; | 
|  | 267 |  | 
|  | 268 | if (unlikely(rsp_flags & FCP_RSP_LEN_VAL)) { | 
|  | 269 | rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1]; | 
|  | 270 | if (rsp_info->rsp_code == FCP_TMF_CMPL) | 
|  | 271 | set_host_byte(scsi, DID_OK); | 
|  | 272 | else { | 
|  | 273 | set_host_byte(scsi, DID_ERROR); | 
|  | 274 | return; | 
|  | 275 | } | 
|  | 276 | } | 
|  | 277 |  | 
|  | 278 | if (unlikely(rsp_flags & FCP_SNS_LEN_VAL)) { | 
|  | 279 | sense = (char *) &fcp_rsp[1]; | 
|  | 280 | if (rsp_flags & FCP_RSP_LEN_VAL) | 
| Christof Schmitt | fb5a638 | 2010-10-05 17:12:55 +0200 | [diff] [blame] | 281 | sense += fcp_rsp->ext.fr_rsp_len; | 
| Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 282 | sense_len = min(fcp_rsp->ext.fr_sns_len, | 
|  | 283 | (u32) SCSI_SENSE_BUFFERSIZE); | 
|  | 284 | memcpy(scsi->sense_buffer, sense, sense_len); | 
|  | 285 | } | 
|  | 286 |  | 
|  | 287 | if (unlikely(rsp_flags & FCP_RESID_UNDER)) { | 
|  | 288 | resid = fcp_rsp->ext.fr_resid; | 
|  | 289 | scsi_set_resid(scsi, resid); | 
|  | 290 | if (scsi_bufflen(scsi) - resid < scsi->underflow && | 
|  | 291 | !(rsp_flags & FCP_SNS_LEN_VAL) && | 
|  | 292 | fcp_rsp->resp.fr_status == SAM_STAT_GOOD) | 
|  | 293 | set_host_byte(scsi, DID_ERROR); | 
|  | 294 | } | 
|  | 295 | } | 
|  | 296 |  | 
|  | 297 | #endif |