blob: 3afb200b2829cc5a0662b3c750e945703ff791b8 [file] [log] [blame]
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Interface to Linux SCSI midlayer.
Swen Schillig41fa2ad2007-09-07 09:15:31 +02005 *
Jens Remus6c6571912018-05-03 13:52:47 +02006 * Copyright IBM Corp. 2002, 2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Heiko Carstens3a4c5d52011-07-30 09:25:15 +020012#include <linux/module.h>
Christof Schmitt4318e082009-11-24 16:54:08 +010013#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Christof Schmitt4318e082009-11-24 16:54:08 +010015#include <scsi/fc/fc_fcp.h>
Felix Beckef3eb712010-07-16 15:37:42 +020016#include <scsi/scsi_eh.h>
Arun Sharma600634972011-07-26 16:09:06 -070017#include <linux/atomic.h>
Christof Schmittdcd20e22009-08-18 15:43:08 +020018#include "zfcp_ext.h"
19#include "zfcp_dbf.h"
Christof Schmitt7c7dc192009-11-24 16:54:13 +010020#include "zfcp_fc.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010021#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Christof Schmitta40a1ba2009-05-15 13:18:16 +020023static unsigned int default_depth = 32;
24module_param_named(queue_depth, default_depth, uint, 0600);
25MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
26
Felix Beckef3eb712010-07-16 15:37:42 +020027static bool enable_dif;
Steffen Maiercc405ac2011-08-15 14:40:30 +020028module_param_named(dif, enable_dif, bool, 0400);
Felix Beckef3eb712010-07-16 15:37:42 +020029MODULE_PARM_DESC(dif, "Enable DIF/DIX data integrity support");
Felix Beckef3eb712010-07-16 15:37:42 +020030
Christof Schmitt0d81b4e2010-12-08 17:30:46 +010031static bool allow_lun_scan = 1;
32module_param(allow_lun_scan, bool, 0600);
33MODULE_PARM_DESC(allow_lun_scan, "For NPIV, scan and attach all storage LUNs");
34
Christof Schmittb62a8d92010-09-08 14:39:55 +020035static void zfcp_scsi_slave_destroy(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Christof Schmittb62a8d92010-09-08 14:39:55 +020037 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
38
Steffen Maier44f747f2011-11-18 20:00:40 +010039 /* if previous slave_alloc returned early, there is nothing to do */
40 if (!zfcp_sdev->port)
41 return;
42
Christof Schmittb62a8d92010-09-08 14:39:55 +020043 zfcp_erp_lun_shutdown_wait(sdev, "scssd_1");
44 put_device(&zfcp_sdev->port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Martin Petermannf76af7d72008-07-02 10:56:36 +020047static int zfcp_scsi_slave_configure(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 if (sdp->tagged_supported)
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +010050 scsi_change_queue_depth(sdp, default_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return 0;
52}
53
Martin Petermannf76af7d72008-07-02 10:56:36 +020054static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Martin Petermannfeac6a02008-07-02 10:56:35 +020056 set_host_byte(scpnt, result);
Swen Schillig250a1352010-12-02 15:16:15 +010057 zfcp_dbf_scsi_fail_send(scpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 scpnt->scsi_done(scpnt);
59}
60
Christof Schmitte55f8752010-11-18 14:53:18 +010061static
62int zfcp_scsi_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Christof Schmittb62a8d92010-09-08 14:39:55 +020064 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010065 struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device));
Christof Schmittb62a8d92010-09-08 14:39:55 +020066 int status, scsi_result, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 /* reset the status for this request */
69 scpnt->result = 0;
70 scpnt->host_scribble = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010072 scsi_result = fc_remote_port_chkready(rport);
73 if (unlikely(scsi_result)) {
74 scpnt->result = scsi_result;
Swen Schillig250a1352010-12-02 15:16:15 +010075 zfcp_dbf_scsi_fail_send(scpnt);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010076 scpnt->scsi_done(scpnt);
77 return 0;
78 }
79
Christof Schmittb62a8d92010-09-08 14:39:55 +020080 status = atomic_read(&zfcp_sdev->status);
Christof Schmitt88302712009-11-24 16:54:07 +010081 if (unlikely(status & ZFCP_STATUS_COMMON_ERP_FAILED) &&
Christof Schmittb62a8d92010-09-08 14:39:55 +020082 !(atomic_read(&zfcp_sdev->port->status) &
Christof Schmitt88302712009-11-24 16:54:07 +010083 ZFCP_STATUS_COMMON_ERP_FAILED)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +020084 /* only LUN access denied, but port is good
Christof Schmitt88302712009-11-24 16:54:07 +010085 * not covered by FC transport, have to fail here */
Martin Petermannf76af7d72008-07-02 10:56:36 +020086 zfcp_scsi_command_fail(scpnt, DID_ERROR);
Joe Perchesa419aef2009-08-18 11:18:35 -070087 return 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +020088 }
89
Christof Schmitt88302712009-11-24 16:54:07 +010090 if (unlikely(!(status & ZFCP_STATUS_COMMON_UNBLOCKED))) {
Steffen Maier2a940b82016-12-09 17:16:33 +010091 /* This could be
Christof Schmitt88302712009-11-24 16:54:07 +010092 * call to rport_delete pending: mimic retry from
93 * fc_remote_port_chkready until rport is BLOCKED
94 */
95 zfcp_scsi_command_fail(scpnt, DID_IMM_RETRY);
96 return 0;
97 }
98
Christof Schmittb62a8d92010-09-08 14:39:55 +020099 ret = zfcp_fsf_fcp_cmnd(scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200100 if (unlikely(ret == -EBUSY))
Swen Schilligf7a65e92008-11-27 11:44:07 +0100101 return SCSI_MLQUEUE_DEVICE_BUSY;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200102 else if (unlikely(ret < 0))
103 return SCSI_MLQUEUE_HOST_BUSY;
104
105 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Christof Schmittb62a8d92010-09-08 14:39:55 +0200108static int zfcp_scsi_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200110 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
111 struct zfcp_adapter *adapter =
112 (struct zfcp_adapter *) sdev->host->hostdata[0];
113 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct zfcp_port *port;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200115 struct zfcp_unit *unit;
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100116 int npiv = adapter->connection_features & FSF_FEATURE_NPIV_MODE;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200117
Steffen Maier88acde82017-10-13 15:40:07 +0200118 zfcp_sdev->erp_action.adapter = adapter;
119 zfcp_sdev->erp_action.sdev = sdev;
120
Christof Schmittb62a8d92010-09-08 14:39:55 +0200121 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
122 if (!port)
123 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200124
Steffen Maier88acde82017-10-13 15:40:07 +0200125 zfcp_sdev->erp_action.port = port;
126
Christof Schmittb62a8d92010-09-08 14:39:55 +0200127 unit = zfcp_unit_find(port, zfcp_scsi_dev_lun(sdev));
128 if (unit)
129 put_device(&unit->dev);
Christof Schmittf8210e32010-09-08 14:39:56 +0200130
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100131 if (!unit && !(allow_lun_scan && npiv)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200132 put_device(&port->dev);
133 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200134 }
Christof Schmittb62a8d92010-09-08 14:39:55 +0200135
136 zfcp_sdev->port = port;
137 zfcp_sdev->latencies.write.channel.min = 0xFFFFFFFF;
138 zfcp_sdev->latencies.write.fabric.min = 0xFFFFFFFF;
139 zfcp_sdev->latencies.read.channel.min = 0xFFFFFFFF;
140 zfcp_sdev->latencies.read.fabric.min = 0xFFFFFFFF;
141 zfcp_sdev->latencies.cmd.channel.min = 0xFFFFFFFF;
142 zfcp_sdev->latencies.cmd.fabric.min = 0xFFFFFFFF;
143 spin_lock_init(&zfcp_sdev->latencies.lock);
144
Swen Schilligedaed852010-09-08 14:40:01 +0200145 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100146 zfcp_erp_lun_reopen(sdev, 0, "scsla_1");
Christof Schmittb62a8d92010-09-08 14:39:55 +0200147 zfcp_erp_wait(port->adapter);
148
149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100152static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Christof Schmitt63caf362009-03-02 13:09:00 +0100154 struct Scsi_Host *scsi_host = scpnt->device->host;
155 struct zfcp_adapter *adapter =
156 (struct zfcp_adapter *) scsi_host->hostdata[0];
Christof Schmitt63caf362009-03-02 13:09:00 +0100157 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 unsigned long flags;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200159 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100160 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100161 int retry = 3;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200162 char *dbf_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200164 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 write_lock_irqsave(&adapter->abort_lock, flags);
166
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100167 old_req = zfcp_reqlist_find(adapter->req_list, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100168 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 write_unlock_irqrestore(&adapter->abort_lock, flags);
Swen Schillig250a1352010-12-02 15:16:15 +0100170 zfcp_dbf_scsi_abort("abrt_or", scpnt, NULL);
Christof Schmittc6936e72009-04-17 15:08:11 +0200171 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100173 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200175 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200177
Christof Schmitt63caf362009-03-02 13:09:00 +0100178 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200179 abrt_req = zfcp_fsf_abort_fcp_cmnd(scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100180 if (abrt_req)
181 break;
182
Steffen Maier97d36252018-05-17 19:14:44 +0200183 zfcp_dbf_scsi_abort("abrt_wt", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100184 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100185 ret = fc_block_scsi_eh(scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +0100186 if (ret) {
187 zfcp_dbf_scsi_abort("abrt_bl", scpnt, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100188 return ret;
Swen Schillig250a1352010-12-02 15:16:15 +0100189 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100190 if (!(atomic_read(&adapter->status) &
191 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig250a1352010-12-02 15:16:15 +0100192 zfcp_dbf_scsi_abort("abrt_ru", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100193 return SUCCESS;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Swen Schillig250a1352010-12-02 15:16:15 +0100196 if (!abrt_req) {
197 zfcp_dbf_scsi_abort("abrt_ar", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100198 return FAILED;
Swen Schillig250a1352010-12-02 15:16:15 +0100199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Swen Schillig058b8642009-08-18 15:43:14 +0200201 wait_for_completion(&abrt_req->completion);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200202
Christof Schmitt63caf362009-03-02 13:09:00 +0100203 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100204 dbf_tag = "abrt_ok";
Christof Schmitt63caf362009-03-02 13:09:00 +0100205 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100206 dbf_tag = "abrt_nn";
Christof Schmitt63caf362009-03-02 13:09:00 +0100207 else {
Swen Schillig250a1352010-12-02 15:16:15 +0100208 dbf_tag = "abrt_fa";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Swen Schillig250a1352010-12-02 15:16:15 +0100211 zfcp_dbf_scsi_abort(dbf_tag, scpnt, abrt_req);
Christof Schmitt63caf362009-03-02 13:09:00 +0100212 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return retval;
214}
215
Benjamin Block2ce34d92016-12-09 17:16:31 +0100216struct zfcp_scsi_req_filter {
217 u8 tmf_scope;
218 u32 lun_handle;
219 u32 port_handle;
220};
221
222static void zfcp_scsi_forget_cmnd(struct zfcp_fsf_req *old_req, void *data)
223{
224 struct zfcp_scsi_req_filter *filter =
225 (struct zfcp_scsi_req_filter *)data;
226
227 /* already aborted - prevent side-effects - or not a SCSI command */
228 if (old_req->data == NULL || old_req->fsf_command != FSF_QTCB_FCP_CMND)
229 return;
230
231 /* (tmf_scope == FCP_TMF_TGT_RESET || tmf_scope == FCP_TMF_LUN_RESET) */
232 if (old_req->qtcb->header.port_handle != filter->port_handle)
233 return;
234
235 if (filter->tmf_scope == FCP_TMF_LUN_RESET &&
236 old_req->qtcb->header.lun_handle != filter->lun_handle)
237 return;
238
239 zfcp_dbf_scsi_nullcmnd((struct scsi_cmnd *)old_req->data, old_req);
240 old_req->data = NULL;
241}
242
243static void zfcp_scsi_forget_cmnds(struct zfcp_scsi_dev *zsdev, u8 tm_flags)
244{
245 struct zfcp_adapter *adapter = zsdev->port->adapter;
246 struct zfcp_scsi_req_filter filter = {
247 .tmf_scope = FCP_TMF_TGT_RESET,
248 .port_handle = zsdev->port->handle,
249 };
250 unsigned long flags;
251
252 if (tm_flags == FCP_TMF_LUN_RESET) {
253 filter.tmf_scope = FCP_TMF_LUN_RESET;
254 filter.lun_handle = zsdev->lun_handle;
255 }
256
257 /*
258 * abort_lock secures against other processings - in the abort-function
259 * and normal cmnd-handler - of (struct zfcp_fsf_req *)->data
260 */
261 write_lock_irqsave(&adapter->abort_lock, flags);
262 zfcp_reqlist_apply_for_all(adapter->req_list, zfcp_scsi_forget_cmnd,
263 &filter);
264 write_unlock_irqrestore(&adapter->abort_lock, flags);
265}
266
Christof Schmitt63caf362009-03-02 13:09:00 +0100267static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200269 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
270 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200271 struct zfcp_fsf_req *fsf_req = NULL;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100272 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100273 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Christof Schmitt63caf362009-03-02 13:09:00 +0100275 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200276 fsf_req = zfcp_fsf_fcp_task_mgmt(scpnt, tm_flags);
Christof Schmitt63caf362009-03-02 13:09:00 +0100277 if (fsf_req)
278 break;
279
Steffen Maier97d36252018-05-17 19:14:44 +0200280 zfcp_dbf_scsi_devreset("wait", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100281 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100282 ret = fc_block_scsi_eh(scpnt);
Steffen Maier8d706e32017-07-28 12:30:55 +0200283 if (ret) {
284 zfcp_dbf_scsi_devreset("fiof", scpnt, tm_flags, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100285 return ret;
Steffen Maier8d706e32017-07-28 12:30:55 +0200286 }
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100287
Christof Schmitt63caf362009-03-02 13:09:00 +0100288 if (!(atomic_read(&adapter->status) &
289 ZFCP_STATUS_COMMON_RUNNING)) {
Steffen Maier424a20b2017-07-28 12:30:54 +0200290 zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100291 return SUCCESS;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Steffen Maier8d706e32017-07-28 12:30:55 +0200294 if (!fsf_req) {
295 zfcp_dbf_scsi_devreset("reqf", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100296 return FAILED;
Steffen Maier8d706e32017-07-28 12:30:55 +0200297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Swen Schillig058b8642009-08-18 15:43:14 +0200299 wait_for_completion(&fsf_req->completion);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200300
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200301 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
Steffen Maier424a20b2017-07-28 12:30:54 +0200302 zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags, fsf_req);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200303 retval = FAILED;
Benjamin Block2ce34d92016-12-09 17:16:31 +0100304 } else {
Steffen Maier424a20b2017-07-28 12:30:54 +0200305 zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags, fsf_req);
Benjamin Block2ce34d92016-12-09 17:16:31 +0100306 zfcp_scsi_forget_cmnds(zfcp_sdev, tm_flags);
307 }
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200308
309 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return retval;
311}
312
Martin Petermannf76af7d72008-07-02 10:56:36 +0200313static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
314{
Christof Schmitt4318e082009-11-24 16:54:08 +0100315 return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200316}
317
318static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
319{
Christof Schmitt4318e082009-11-24 16:54:08 +0100320 return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200321}
322
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100323static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200325 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
326 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Steffen Maier9779f492018-05-17 19:14:43 +0200327 int ret = SUCCESS, fc_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Swen Schilligea4a3a62010-12-02 15:16:16 +0100329 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1");
Andreas Herrmann81654282006-09-18 22:30:36 +0200330 zfcp_erp_wait(adapter);
Steffen Maier9779f492018-05-17 19:14:43 +0200331 fc_ret = fc_block_scsi_eh(scpnt);
332 if (fc_ret)
333 ret = fc_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Steffen Maier9779f492018-05-17 19:14:43 +0200335 zfcp_dbf_scsi_eh("schrh_r", adapter, ~0, ret);
336 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Christof Schmitt1947c722011-02-22 19:54:46 +0100339struct scsi_transport_template *zfcp_scsi_transport_template;
340
341static struct scsi_host_template zfcp_scsi_host_template = {
342 .module = THIS_MODULE,
343 .name = "zfcp",
344 .queuecommand = zfcp_scsi_queuecommand,
345 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
346 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
347 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
348 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
349 .slave_alloc = zfcp_scsi_slave_alloc,
350 .slave_configure = zfcp_scsi_slave_configure,
351 .slave_destroy = zfcp_scsi_slave_destroy,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100352 .change_queue_depth = scsi_change_queue_depth,
Christof Schmitt1947c722011-02-22 19:54:46 +0100353 .proc_name = "zfcp",
354 .can_queue = 4096,
355 .this_id = -1,
Steffen Maier5fea4292013-04-26 17:33:45 +0200356 .sg_tablesize = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
357 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2),
358 /* GCD, adjusted later */
359 .max_sectors = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
360 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2) * 8,
361 /* GCD, adjusted later */
Christof Schmitt1947c722011-02-22 19:54:46 +0100362 .dma_boundary = ZFCP_QDIO_SBALE_LEN - 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100363 .use_clustering = 1,
364 .shost_attrs = zfcp_sysfs_shost_attrs,
365 .sdev_attrs = zfcp_sysfs_sdev_attrs,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100366 .track_queue_depth = 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100367};
368
369/**
370 * zfcp_scsi_adapter_register - Register SCSI and FC host with SCSI midlayer
371 * @adapter: The zfcp adapter to register with the SCSI midlayer
372 */
373int zfcp_scsi_adapter_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200375 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Michael Loehr9f287452007-05-09 11:01:24 +0200377 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200378 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200379
Martin Petermannf76af7d72008-07-02 10:56:36 +0200380 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /* register adapter as SCSI host with mid layer of SCSI stack */
Christof Schmitt1947c722011-02-22 19:54:46 +0100382 adapter->scsi_host = scsi_host_alloc(&zfcp_scsi_host_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 sizeof (struct zfcp_adapter *));
384 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200385 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200386 "Registering the FCP device with the "
387 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200388 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* tell the SCSI stack some characteristics of this adapter */
Christof Schmittf8210e32010-09-08 14:39:56 +0200392 adapter->scsi_host->max_id = 511;
393 adapter->scsi_host->max_lun = 0xFFFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200395 adapter->scsi_host->unique_id = dev_id.devno;
Christof Schmitt4318e082009-11-24 16:54:08 +0100396 adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */
Christof Schmitt1947c722011-02-22 19:54:46 +0100397 adapter->scsi_host->transportt = zfcp_scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
400
401 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
402 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200403 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200405
406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Christof Schmitt1947c722011-02-22 19:54:46 +0100409/**
410 * zfcp_scsi_adapter_unregister - Unregister SCSI and FC host from SCSI midlayer
411 * @adapter: The zfcp adapter to unregister.
412 */
413void zfcp_scsi_adapter_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200416 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 shost = adapter->scsi_host;
419 if (!shost)
420 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200421
Swen Schilligecf0c772009-11-24 16:53:58 +0100422 read_lock_irq(&adapter->port_list_lock);
423 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100424 port->rport = NULL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100425 read_unlock_irq(&adapter->port_list_lock);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200426
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700427 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 scsi_remove_host(shost);
429 scsi_host_put(shost);
430 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100433static struct fc_host_statistics*
434zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100436 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100438 if (!adapter->fc_stats) {
439 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
440 if (!fc_stats)
441 return NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +0100442 adapter->fc_stats = fc_stats; /* freed in adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100443 }
444 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
445 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Martin Petermannf76af7d72008-07-02 10:56:36 +0200448static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
449 struct fsf_qtcb_bottom_port *data,
450 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200452 fc_stats->seconds_since_last_reset =
453 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100454 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
455 fc_stats->tx_words = data->tx_words - old->tx_words;
456 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
457 fc_stats->rx_words = data->rx_words - old->rx_words;
458 fc_stats->lip_count = data->lip - old->lip;
459 fc_stats->nos_count = data->nos - old->nos;
460 fc_stats->error_frames = data->error_frames - old->error_frames;
461 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
462 fc_stats->link_failure_count = data->link_failure - old->link_failure;
463 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200464 fc_stats->loss_of_signal_count =
465 data->loss_of_signal - old->loss_of_signal;
466 fc_stats->prim_seq_protocol_err_count =
467 data->psp_error_counts - old->psp_error_counts;
468 fc_stats->invalid_tx_word_count =
469 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100470 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200471 fc_stats->fcp_input_requests =
472 data->input_requests - old->input_requests;
473 fc_stats->fcp_output_requests =
474 data->output_requests - old->output_requests;
475 fc_stats->fcp_control_requests =
476 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100477 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
478 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Martin Petermannf76af7d72008-07-02 10:56:36 +0200481static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
482 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100484 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
485 fc_stats->tx_frames = data->tx_frames;
486 fc_stats->tx_words = data->tx_words;
487 fc_stats->rx_frames = data->rx_frames;
488 fc_stats->rx_words = data->rx_words;
489 fc_stats->lip_count = data->lip;
490 fc_stats->nos_count = data->nos;
491 fc_stats->error_frames = data->error_frames;
492 fc_stats->dumped_frames = data->dumped_frames;
493 fc_stats->link_failure_count = data->link_failure;
494 fc_stats->loss_of_sync_count = data->loss_of_sync;
495 fc_stats->loss_of_signal_count = data->loss_of_signal;
496 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
497 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
498 fc_stats->invalid_crc_count = data->invalid_crcs;
499 fc_stats->fcp_input_requests = data->input_requests;
500 fc_stats->fcp_output_requests = data->output_requests;
501 fc_stats->fcp_control_requests = data->control_requests;
502 fc_stats->fcp_input_megabytes = data->input_mb;
503 fc_stats->fcp_output_megabytes = data->output_mb;
504}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Martin Petermannf76af7d72008-07-02 10:56:36 +0200506static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100507{
508 struct zfcp_adapter *adapter;
509 struct fc_host_statistics *fc_stats;
510 struct fsf_qtcb_bottom_port *data;
511 int ret;
512
Martin Petermannf76af7d72008-07-02 10:56:36 +0200513 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100514 fc_stats = zfcp_init_fc_host_stats(adapter);
515 if (!fc_stats)
516 return NULL;
517
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200518 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100519 if (!data)
520 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100521
Swen Schillig564e1c82009-08-18 15:43:19 +0200522 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100523 if (ret) {
524 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200525 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100526 }
527
528 if (adapter->stats_reset &&
529 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200530 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100531 zfcp_adjust_fc_host_stats(fc_stats, data,
532 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200533 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100534 zfcp_set_fc_host_stats(fc_stats, data);
535
536 kfree(data);
537 return fc_stats;
538}
539
Martin Petermannf76af7d72008-07-02 10:56:36 +0200540static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100541{
542 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200543 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100544 int ret;
545
546 adapter = (struct zfcp_adapter *)shost->hostdata[0];
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200547 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100548 if (!data)
549 return;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100550
Swen Schillig564e1c82009-08-18 15:43:19 +0200551 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200552 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200553 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200554 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100555 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200556 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100557 adapter->stats_reset_data = data; /* finally freed in
Swen Schilligf3450c72009-11-24 16:53:59 +0100558 adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Sven Schuetz85a82392008-06-10 18:20:59 +0200562static void zfcp_get_host_port_state(struct Scsi_Host *shost)
563{
564 struct zfcp_adapter *adapter =
565 (struct zfcp_adapter *)shost->hostdata[0];
566 int status = atomic_read(&adapter->status);
567
568 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
569 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
570 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
571 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
572 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
573 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
574 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
575 else
576 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
577}
578
Andreas Herrmann338151e2006-05-22 18:25:56 +0200579static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
580{
581 rport->dev_loss_tmo = timeout;
582}
583
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100584/**
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100585 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
586 * @rport: The FC rport where to teminate I/O
587 *
588 * Abort all pending SCSI commands for a port by closing the
Christof Schmitt835dc292010-07-08 09:53:08 +0200589 * port. Using a reopen avoids a conflict with a shutdown
590 * overwriting a reopen. The "forced" ensures that a disappeared port
591 * is not opened again as valid due to the cached plogi data in
592 * non-NPIV mode.
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100593 */
594static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
595{
Christof Schmitt70932932009-04-17 15:08:15 +0200596 struct zfcp_port *port;
Swen Schilligea945ff2009-08-18 15:43:24 +0200597 struct Scsi_Host *shost = rport_to_shost(rport);
598 struct zfcp_adapter *adapter =
599 (struct zfcp_adapter *)shost->hostdata[0];
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100600
Swen Schilligea945ff2009-08-18 15:43:24 +0200601 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt70932932009-04-17 15:08:15 +0200602
603 if (port) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100604 zfcp_erp_port_forced_reopen(port, 0, "sctrpi1");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100605 put_device(&port->dev);
Steffen Maier48ae3732018-05-17 19:14:46 +0200606 } else {
607 zfcp_erp_port_forced_no_port_dbf(
608 "sctrpin", adapter,
609 rport->port_name /* zfcp_scsi_rport_register */,
610 rport->port_id /* zfcp_scsi_rport_register */);
Christof Schmitt70932932009-04-17 15:08:15 +0200611 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100612}
613
614static void zfcp_scsi_rport_register(struct zfcp_port *port)
615{
616 struct fc_rport_identifiers ids;
617 struct fc_rport *rport;
618
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200619 if (port->rport)
620 return;
621
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100622 ids.node_name = port->wwnn;
623 ids.port_name = port->wwpn;
624 ids.port_id = port->d_id;
625 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
626
Jens Remus6c6571912018-05-03 13:52:47 +0200627 zfcp_dbf_rec_trig_lock("scpaddy", port->adapter, port, NULL,
628 ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD,
629 ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100630 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
631 if (!rport) {
632 dev_err(&port->adapter->ccw_device->dev,
633 "Registering port 0x%016Lx failed\n",
634 (unsigned long long)port->wwpn);
635 return;
636 }
637
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100638 rport->maxframe_size = port->maxframe_size;
639 rport->supported_classes = port->supported_classes;
640 port->rport = rport;
Christof Schmitt1bf3ff02010-07-16 15:37:35 +0200641 port->starget_id = rport->scsi_target_id;
Christof Schmitt5a7de552010-07-08 09:53:07 +0200642
Christof Schmitt1daa4eb2010-09-08 14:39:52 +0200643 zfcp_unit_queue_scsi_scan(port);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100644}
645
646static void zfcp_scsi_rport_block(struct zfcp_port *port)
647{
Christof Schmitt70932932009-04-17 15:08:15 +0200648 struct fc_rport *rport = port->rport;
649
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200650 if (rport) {
Jens Remus6c6571912018-05-03 13:52:47 +0200651 zfcp_dbf_rec_trig_lock("scpdely", port->adapter, port, NULL,
652 ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL,
653 ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL);
Christof Schmitt70932932009-04-17 15:08:15 +0200654 fc_remote_port_delete(rport);
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200655 port->rport = NULL;
656 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100657}
658
659void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
660{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100661 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100662 port->rport_task = RPORT_ADD;
663
Swen Schillig45446832009-08-18 15:43:17 +0200664 if (!queue_work(port->adapter->work_queue, &port->rport_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100665 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100666}
667
668void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
669{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100670 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100671 port->rport_task = RPORT_DEL;
672
Swen Schillig45446832009-08-18 15:43:17 +0200673 if (port->rport && queue_work(port->adapter->work_queue,
674 &port->rport_work))
Swen Schilliga67417a2009-08-18 15:43:06 +0200675 return;
676
Christof Schmitt615f59e2010-02-17 11:18:56 +0100677 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100678}
679
680void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
681{
Swen Schilligecf0c772009-11-24 16:53:58 +0100682 unsigned long flags;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100683 struct zfcp_port *port;
684
Swen Schilligecf0c772009-11-24 16:53:58 +0100685 read_lock_irqsave(&adapter->port_list_lock, flags);
686 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100687 zfcp_scsi_schedule_rport_block(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100688 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100689}
690
691void zfcp_scsi_rport_work(struct work_struct *work)
692{
693 struct zfcp_port *port = container_of(work, struct zfcp_port,
694 rport_work);
695
696 while (port->rport_task) {
697 if (port->rport_task == RPORT_ADD) {
698 port->rport_task = RPORT_NONE;
699 zfcp_scsi_rport_register(port);
700 } else {
701 port->rport_task = RPORT_NONE;
702 zfcp_scsi_rport_block(port);
703 }
704 }
705
Christof Schmitt615f59e2010-02-17 11:18:56 +0100706 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100707}
708
Christof Schmitt5a7de552010-07-08 09:53:07 +0200709/**
Felix Beckef3eb712010-07-16 15:37:42 +0200710 * zfcp_scsi_set_prot - Configure DIF/DIX support in scsi_host
711 * @adapter: The adapter where to configure DIF/DIX for the SCSI host
712 */
713void zfcp_scsi_set_prot(struct zfcp_adapter *adapter)
714{
715 unsigned int mask = 0;
716 unsigned int data_div;
717 struct Scsi_Host *shost = adapter->scsi_host;
718
719 data_div = atomic_read(&adapter->status) &
720 ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED;
721
722 if (enable_dif &&
723 adapter->adapter_features & FSF_FEATURE_DIF_PROT_TYPE1)
724 mask |= SHOST_DIF_TYPE1_PROTECTION;
725
726 if (enable_dif && data_div &&
727 adapter->adapter_features & FSF_FEATURE_DIX_PROT_TCPIP) {
728 mask |= SHOST_DIX_TYPE1_PROTECTION;
729 scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP);
Swen Schillig86a96682011-08-15 14:40:32 +0200730 shost->sg_prot_tablesize = adapter->qdio->max_sbale_per_req / 2;
731 shost->sg_tablesize = adapter->qdio->max_sbale_per_req / 2;
732 shost->max_sectors = shost->sg_tablesize * 8;
Felix Beckef3eb712010-07-16 15:37:42 +0200733 }
734
735 scsi_host_set_prot(shost, mask);
736}
737
738/**
739 * zfcp_scsi_dif_sense_error - Report DIF/DIX error as driver sense error
740 * @scmd: The SCSI command to report the error for
741 * @ascq: The ASCQ to put in the sense buffer
742 *
743 * See the error handling in sd_done for the sense codes used here.
744 * Set DID_SOFT_ERROR to retry the request, if possible.
745 */
746void zfcp_scsi_dif_sense_error(struct scsi_cmnd *scmd, int ascq)
747{
748 scsi_build_sense_buffer(1, scmd->sense_buffer,
749 ILLEGAL_REQUEST, 0x10, ascq);
750 set_driver_byte(scmd, DRIVER_SENSE);
751 scmd->result |= SAM_STAT_CHECK_CONDITION;
752 set_host_byte(scmd, DID_SOFT_ERROR);
753}
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 .show_starget_port_id = 1,
757 .show_starget_port_name = 1,
758 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700759 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200760 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200761 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700762 .show_host_node_name = 1,
763 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100764 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700765 .show_host_supported_classes = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100766 .show_host_supported_fc4s = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100767 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200768 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700769 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100770 .get_fc_host_stats = zfcp_get_fc_host_stats,
771 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200772 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200773 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100774 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200775 .show_host_port_state = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100776 .show_host_active_fc4s = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100777 .bsg_request = zfcp_fc_exec_bsg_job,
Swen Schillig491ca442010-01-14 17:19:01 +0100778 .bsg_timeout = zfcp_fc_timeout_bsg_job,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100779 /* no functions registered for following dynamic attributes but
780 directly set by LLDD */
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100781 .show_host_port_type = 1,
Christof Schmitt038d9442011-02-22 19:54:48 +0100782 .show_host_symbolic_name = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200783 .show_host_speed = 1,
784 .show_host_port_id = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100785 .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786};