blob: ec3ddd1d31d5f5be43fb70425dd3b8981a179f63 [file] [log] [blame]
Swen Schillig41fa2ada2007-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 Schillig41fa2ada2007-09-07 09:15:31 +02005 *
Steffen Maier9fe5d2b2017-07-28 12:30:54 +02006 * Copyright IBM Corp. 2002, 2017
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
Benjamin Block51569342017-07-28 12:30:50 +020031static bool allow_lun_scan = true;
Christof Schmitt0d81b4e2010-12-08 17:30:46 +010032module_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 Maier6f2ce1c2016-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
Christof Schmittb62a8d92010-09-08 14:39:55 +0200118 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
119 if (!port)
120 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200121
Christof Schmittb62a8d92010-09-08 14:39:55 +0200122 unit = zfcp_unit_find(port, zfcp_scsi_dev_lun(sdev));
123 if (unit)
124 put_device(&unit->dev);
Christof Schmittf8210e32010-09-08 14:39:56 +0200125
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100126 if (!unit && !(allow_lun_scan && npiv)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200127 put_device(&port->dev);
128 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200129 }
Christof Schmittb62a8d92010-09-08 14:39:55 +0200130
131 zfcp_sdev->port = port;
132 zfcp_sdev->latencies.write.channel.min = 0xFFFFFFFF;
133 zfcp_sdev->latencies.write.fabric.min = 0xFFFFFFFF;
134 zfcp_sdev->latencies.read.channel.min = 0xFFFFFFFF;
135 zfcp_sdev->latencies.read.fabric.min = 0xFFFFFFFF;
136 zfcp_sdev->latencies.cmd.channel.min = 0xFFFFFFFF;
137 zfcp_sdev->latencies.cmd.fabric.min = 0xFFFFFFFF;
138 spin_lock_init(&zfcp_sdev->latencies.lock);
139
Swen Schilligedaed852010-09-08 14:40:01 +0200140 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100141 zfcp_erp_lun_reopen(sdev, 0, "scsla_1");
Christof Schmittb62a8d92010-09-08 14:39:55 +0200142 zfcp_erp_wait(port->adapter);
143
144 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100147static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Christof Schmitt63caf362009-03-02 13:09:00 +0100149 struct Scsi_Host *scsi_host = scpnt->device->host;
150 struct zfcp_adapter *adapter =
151 (struct zfcp_adapter *) scsi_host->hostdata[0];
Christof Schmitt63caf362009-03-02 13:09:00 +0100152 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned long flags;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200154 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100155 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100156 int retry = 3;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200157 char *dbf_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200159 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 write_lock_irqsave(&adapter->abort_lock, flags);
161
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100162 old_req = zfcp_reqlist_find(adapter->req_list, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100163 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 write_unlock_irqrestore(&adapter->abort_lock, flags);
Swen Schillig250a1352010-12-02 15:16:15 +0100165 zfcp_dbf_scsi_abort("abrt_or", scpnt, NULL);
Christof Schmittc6936e72009-04-17 15:08:11 +0200166 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100168 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200170 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200172
Christof Schmitt63caf362009-03-02 13:09:00 +0100173 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200174 abrt_req = zfcp_fsf_abort_fcp_cmnd(scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100175 if (abrt_req)
176 break;
177
178 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100179 ret = fc_block_scsi_eh(scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +0100180 if (ret) {
181 zfcp_dbf_scsi_abort("abrt_bl", scpnt, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100182 return ret;
Swen Schillig250a1352010-12-02 15:16:15 +0100183 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100184 if (!(atomic_read(&adapter->status) &
185 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig250a1352010-12-02 15:16:15 +0100186 zfcp_dbf_scsi_abort("abrt_ru", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100187 return SUCCESS;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Swen Schillig250a1352010-12-02 15:16:15 +0100190 if (!abrt_req) {
191 zfcp_dbf_scsi_abort("abrt_ar", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100192 return FAILED;
Swen Schillig250a1352010-12-02 15:16:15 +0100193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Swen Schillig058b8642009-08-18 15:43:14 +0200195 wait_for_completion(&abrt_req->completion);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200196
Christof Schmitt63caf362009-03-02 13:09:00 +0100197 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100198 dbf_tag = "abrt_ok";
Christof Schmitt63caf362009-03-02 13:09:00 +0100199 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100200 dbf_tag = "abrt_nn";
Christof Schmitt63caf362009-03-02 13:09:00 +0100201 else {
Swen Schillig250a1352010-12-02 15:16:15 +0100202 dbf_tag = "abrt_fa";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Swen Schillig250a1352010-12-02 15:16:15 +0100205 zfcp_dbf_scsi_abort(dbf_tag, scpnt, abrt_req);
Christof Schmitt63caf362009-03-02 13:09:00 +0100206 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return retval;
208}
209
Benjamin Blockdac37e12016-12-09 17:16:31 +0100210struct zfcp_scsi_req_filter {
211 u8 tmf_scope;
212 u32 lun_handle;
213 u32 port_handle;
214};
215
216static void zfcp_scsi_forget_cmnd(struct zfcp_fsf_req *old_req, void *data)
217{
218 struct zfcp_scsi_req_filter *filter =
219 (struct zfcp_scsi_req_filter *)data;
220
221 /* already aborted - prevent side-effects - or not a SCSI command */
222 if (old_req->data == NULL || old_req->fsf_command != FSF_QTCB_FCP_CMND)
223 return;
224
225 /* (tmf_scope == FCP_TMF_TGT_RESET || tmf_scope == FCP_TMF_LUN_RESET) */
226 if (old_req->qtcb->header.port_handle != filter->port_handle)
227 return;
228
229 if (filter->tmf_scope == FCP_TMF_LUN_RESET &&
230 old_req->qtcb->header.lun_handle != filter->lun_handle)
231 return;
232
233 zfcp_dbf_scsi_nullcmnd((struct scsi_cmnd *)old_req->data, old_req);
234 old_req->data = NULL;
235}
236
237static void zfcp_scsi_forget_cmnds(struct zfcp_scsi_dev *zsdev, u8 tm_flags)
238{
239 struct zfcp_adapter *adapter = zsdev->port->adapter;
240 struct zfcp_scsi_req_filter filter = {
241 .tmf_scope = FCP_TMF_TGT_RESET,
242 .port_handle = zsdev->port->handle,
243 };
244 unsigned long flags;
245
246 if (tm_flags == FCP_TMF_LUN_RESET) {
247 filter.tmf_scope = FCP_TMF_LUN_RESET;
248 filter.lun_handle = zsdev->lun_handle;
249 }
250
251 /*
252 * abort_lock secures against other processings - in the abort-function
253 * and normal cmnd-handler - of (struct zfcp_fsf_req *)->data
254 */
255 write_lock_irqsave(&adapter->abort_lock, flags);
256 zfcp_reqlist_apply_for_all(adapter->req_list, zfcp_scsi_forget_cmnd,
257 &filter);
258 write_unlock_irqrestore(&adapter->abort_lock, flags);
259}
260
Christof Schmitt63caf362009-03-02 13:09:00 +0100261static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200263 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
264 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200265 struct zfcp_fsf_req *fsf_req = NULL;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100266 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100267 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Christof Schmitt63caf362009-03-02 13:09:00 +0100269 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200270 fsf_req = zfcp_fsf_fcp_task_mgmt(scpnt, tm_flags);
Christof Schmitt63caf362009-03-02 13:09:00 +0100271 if (fsf_req)
272 break;
273
274 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100275 ret = fc_block_scsi_eh(scpnt);
Steffen Maier1a5d9992017-07-28 12:30:55 +0200276 if (ret) {
277 zfcp_dbf_scsi_devreset("fiof", scpnt, tm_flags, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100278 return ret;
Steffen Maier1a5d9992017-07-28 12:30:55 +0200279 }
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100280
Christof Schmitt63caf362009-03-02 13:09:00 +0100281 if (!(atomic_read(&adapter->status) &
282 ZFCP_STATUS_COMMON_RUNNING)) {
Steffen Maier9fe5d2b2017-07-28 12:30:54 +0200283 zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100284 return SUCCESS;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Steffen Maier1a5d9992017-07-28 12:30:55 +0200287 if (!fsf_req) {
288 zfcp_dbf_scsi_devreset("reqf", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100289 return FAILED;
Steffen Maier1a5d9992017-07-28 12:30:55 +0200290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Swen Schillig058b8642009-08-18 15:43:14 +0200292 wait_for_completion(&fsf_req->completion);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200293
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200294 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
Steffen Maier9fe5d2b2017-07-28 12:30:54 +0200295 zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags, fsf_req);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200296 retval = FAILED;
Benjamin Blockdac37e12016-12-09 17:16:31 +0100297 } else {
Steffen Maier9fe5d2b2017-07-28 12:30:54 +0200298 zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags, fsf_req);
Benjamin Blockdac37e12016-12-09 17:16:31 +0100299 zfcp_scsi_forget_cmnds(zfcp_sdev, tm_flags);
300 }
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200301
302 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return retval;
304}
305
Martin Petermannf76af7d72008-07-02 10:56:36 +0200306static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
307{
Christof Schmitt4318e082009-11-24 16:54:08 +0100308 return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200309}
310
311static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
312{
Christof Schmitt4318e082009-11-24 16:54:08 +0100313 return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200314}
315
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100316static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200318 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
319 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100320 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Swen Schilligea4a3a62010-12-02 15:16:16 +0100322 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1");
Andreas Herrmann81654282006-09-18 22:30:36 +0200323 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100324 ret = fc_block_scsi_eh(scpnt);
325 if (ret)
326 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Andreas Herrmann810f1e3e2005-09-13 21:49:52 +0200328 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Christof Schmitt1947c722011-02-22 19:54:46 +0100331struct scsi_transport_template *zfcp_scsi_transport_template;
332
333static struct scsi_host_template zfcp_scsi_host_template = {
334 .module = THIS_MODULE,
335 .name = "zfcp",
336 .queuecommand = zfcp_scsi_queuecommand,
Christoph Hellwigb6a05c82017-01-30 13:18:58 +0100337 .eh_timed_out = fc_eh_timed_out,
Christof Schmitt1947c722011-02-22 19:54:46 +0100338 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
339 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
340 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
341 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
342 .slave_alloc = zfcp_scsi_slave_alloc,
343 .slave_configure = zfcp_scsi_slave_configure,
344 .slave_destroy = zfcp_scsi_slave_destroy,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100345 .change_queue_depth = scsi_change_queue_depth,
Christof Schmitt1947c722011-02-22 19:54:46 +0100346 .proc_name = "zfcp",
347 .can_queue = 4096,
348 .this_id = -1,
Steffen Maier5fea4292013-04-26 17:33:45 +0200349 .sg_tablesize = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
350 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2),
351 /* GCD, adjusted later */
352 .max_sectors = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
353 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2) * 8,
354 /* GCD, adjusted later */
Christof Schmitt1947c722011-02-22 19:54:46 +0100355 .dma_boundary = ZFCP_QDIO_SBALE_LEN - 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100356 .use_clustering = 1,
357 .shost_attrs = zfcp_sysfs_shost_attrs,
358 .sdev_attrs = zfcp_sysfs_sdev_attrs,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100359 .track_queue_depth = 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100360};
361
362/**
363 * zfcp_scsi_adapter_register - Register SCSI and FC host with SCSI midlayer
364 * @adapter: The zfcp adapter to register with the SCSI midlayer
365 */
366int zfcp_scsi_adapter_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200368 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Michael Loehr9f287452007-05-09 11:01:24 +0200370 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200371 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200372
Martin Petermannf76af7d72008-07-02 10:56:36 +0200373 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* register adapter as SCSI host with mid layer of SCSI stack */
Christof Schmitt1947c722011-02-22 19:54:46 +0100375 adapter->scsi_host = scsi_host_alloc(&zfcp_scsi_host_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 sizeof (struct zfcp_adapter *));
377 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200378 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200379 "Registering the FCP device with the "
380 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200381 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* tell the SCSI stack some characteristics of this adapter */
Christof Schmittf8210e32010-09-08 14:39:56 +0200385 adapter->scsi_host->max_id = 511;
386 adapter->scsi_host->max_lun = 0xFFFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200388 adapter->scsi_host->unique_id = dev_id.devno;
Christof Schmitt4318e082009-11-24 16:54:08 +0100389 adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */
Christof Schmitt1947c722011-02-22 19:54:46 +0100390 adapter->scsi_host->transportt = zfcp_scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
393
394 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
395 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200396 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200398
399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Christof Schmitt1947c722011-02-22 19:54:46 +0100402/**
403 * zfcp_scsi_adapter_unregister - Unregister SCSI and FC host from SCSI midlayer
404 * @adapter: The zfcp adapter to unregister.
405 */
406void zfcp_scsi_adapter_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200409 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 shost = adapter->scsi_host;
412 if (!shost)
413 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200414
Swen Schilligecf0c772009-11-24 16:53:58 +0100415 read_lock_irq(&adapter->port_list_lock);
416 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100417 port->rport = NULL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100418 read_unlock_irq(&adapter->port_list_lock);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200419
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700420 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 scsi_remove_host(shost);
422 scsi_host_put(shost);
423 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100426static struct fc_host_statistics*
427zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100429 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100431 if (!adapter->fc_stats) {
432 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
433 if (!fc_stats)
434 return NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +0100435 adapter->fc_stats = fc_stats; /* freed in adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100436 }
437 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
438 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Martin Petermannf76af7d72008-07-02 10:56:36 +0200441static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
442 struct fsf_qtcb_bottom_port *data,
443 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200445 fc_stats->seconds_since_last_reset =
446 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100447 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
448 fc_stats->tx_words = data->tx_words - old->tx_words;
449 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
450 fc_stats->rx_words = data->rx_words - old->rx_words;
451 fc_stats->lip_count = data->lip - old->lip;
452 fc_stats->nos_count = data->nos - old->nos;
453 fc_stats->error_frames = data->error_frames - old->error_frames;
454 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
455 fc_stats->link_failure_count = data->link_failure - old->link_failure;
456 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200457 fc_stats->loss_of_signal_count =
458 data->loss_of_signal - old->loss_of_signal;
459 fc_stats->prim_seq_protocol_err_count =
460 data->psp_error_counts - old->psp_error_counts;
461 fc_stats->invalid_tx_word_count =
462 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100463 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200464 fc_stats->fcp_input_requests =
465 data->input_requests - old->input_requests;
466 fc_stats->fcp_output_requests =
467 data->output_requests - old->output_requests;
468 fc_stats->fcp_control_requests =
469 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100470 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
471 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Martin Petermannf76af7d72008-07-02 10:56:36 +0200474static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
475 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100477 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
478 fc_stats->tx_frames = data->tx_frames;
479 fc_stats->tx_words = data->tx_words;
480 fc_stats->rx_frames = data->rx_frames;
481 fc_stats->rx_words = data->rx_words;
482 fc_stats->lip_count = data->lip;
483 fc_stats->nos_count = data->nos;
484 fc_stats->error_frames = data->error_frames;
485 fc_stats->dumped_frames = data->dumped_frames;
486 fc_stats->link_failure_count = data->link_failure;
487 fc_stats->loss_of_sync_count = data->loss_of_sync;
488 fc_stats->loss_of_signal_count = data->loss_of_signal;
489 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
490 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
491 fc_stats->invalid_crc_count = data->invalid_crcs;
492 fc_stats->fcp_input_requests = data->input_requests;
493 fc_stats->fcp_output_requests = data->output_requests;
494 fc_stats->fcp_control_requests = data->control_requests;
495 fc_stats->fcp_input_megabytes = data->input_mb;
496 fc_stats->fcp_output_megabytes = data->output_mb;
497}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Martin Petermannf76af7d72008-07-02 10:56:36 +0200499static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100500{
501 struct zfcp_adapter *adapter;
502 struct fc_host_statistics *fc_stats;
503 struct fsf_qtcb_bottom_port *data;
504 int ret;
505
Martin Petermannf76af7d72008-07-02 10:56:36 +0200506 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100507 fc_stats = zfcp_init_fc_host_stats(adapter);
508 if (!fc_stats)
509 return NULL;
510
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200511 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100512 if (!data)
513 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100514
Swen Schillig564e1c82009-08-18 15:43:19 +0200515 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100516 if (ret) {
517 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200518 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100519 }
520
521 if (adapter->stats_reset &&
522 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200523 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100524 zfcp_adjust_fc_host_stats(fc_stats, data,
525 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200526 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100527 zfcp_set_fc_host_stats(fc_stats, data);
528
529 kfree(data);
530 return fc_stats;
531}
532
Martin Petermannf76af7d72008-07-02 10:56:36 +0200533static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100534{
535 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200536 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100537 int ret;
538
539 adapter = (struct zfcp_adapter *)shost->hostdata[0];
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200540 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100541 if (!data)
542 return;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100543
Swen Schillig564e1c82009-08-18 15:43:19 +0200544 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200545 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200546 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200547 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100548 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200549 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100550 adapter->stats_reset_data = data; /* finally freed in
Swen Schilligf3450c72009-11-24 16:53:59 +0100551 adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Sven Schuetz85a82392008-06-10 18:20:59 +0200555static void zfcp_get_host_port_state(struct Scsi_Host *shost)
556{
557 struct zfcp_adapter *adapter =
558 (struct zfcp_adapter *)shost->hostdata[0];
559 int status = atomic_read(&adapter->status);
560
561 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
562 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
563 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
564 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
565 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
566 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
567 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
568 else
569 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
570}
571
Andreas Herrmann338151e2006-05-22 18:25:56 +0200572static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
573{
574 rport->dev_loss_tmo = timeout;
575}
576
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100577/**
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100578 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
579 * @rport: The FC rport where to teminate I/O
580 *
581 * Abort all pending SCSI commands for a port by closing the
Christof Schmitt835dc292010-07-08 09:53:08 +0200582 * port. Using a reopen avoids a conflict with a shutdown
583 * overwriting a reopen. The "forced" ensures that a disappeared port
584 * is not opened again as valid due to the cached plogi data in
585 * non-NPIV mode.
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100586 */
587static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
588{
Christof Schmitt70932932009-04-17 15:08:15 +0200589 struct zfcp_port *port;
Swen Schilligea945ff2009-08-18 15:43:24 +0200590 struct Scsi_Host *shost = rport_to_shost(rport);
591 struct zfcp_adapter *adapter =
592 (struct zfcp_adapter *)shost->hostdata[0];
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100593
Swen Schilligea945ff2009-08-18 15:43:24 +0200594 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt70932932009-04-17 15:08:15 +0200595
596 if (port) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100597 zfcp_erp_port_forced_reopen(port, 0, "sctrpi1");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100598 put_device(&port->dev);
Christof Schmitt70932932009-04-17 15:08:15 +0200599 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100600}
601
602static void zfcp_scsi_rport_register(struct zfcp_port *port)
603{
604 struct fc_rport_identifiers ids;
605 struct fc_rport *rport;
606
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200607 if (port->rport)
608 return;
609
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100610 ids.node_name = port->wwnn;
611 ids.port_name = port->wwpn;
612 ids.port_id = port->d_id;
613 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
614
Steffen Maier4eeaa4f2016-08-10 18:30:46 +0200615 zfcp_dbf_rec_trig("scpaddy", port->adapter, port, NULL,
616 ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD,
617 ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100618 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
619 if (!rport) {
620 dev_err(&port->adapter->ccw_device->dev,
621 "Registering port 0x%016Lx failed\n",
622 (unsigned long long)port->wwpn);
623 return;
624 }
625
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100626 rport->maxframe_size = port->maxframe_size;
627 rport->supported_classes = port->supported_classes;
628 port->rport = rport;
Christof Schmitt1bf3ff02010-07-16 15:37:35 +0200629 port->starget_id = rport->scsi_target_id;
Christof Schmitt5a7de552010-07-08 09:53:07 +0200630
Christof Schmitt1daa4eb2010-09-08 14:39:52 +0200631 zfcp_unit_queue_scsi_scan(port);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100632}
633
634static void zfcp_scsi_rport_block(struct zfcp_port *port)
635{
Christof Schmitt70932932009-04-17 15:08:15 +0200636 struct fc_rport *rport = port->rport;
637
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200638 if (rport) {
Steffen Maier4eeaa4f2016-08-10 18:30:46 +0200639 zfcp_dbf_rec_trig("scpdely", port->adapter, port, NULL,
640 ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL,
641 ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL);
Christof Schmitt70932932009-04-17 15:08:15 +0200642 fc_remote_port_delete(rport);
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200643 port->rport = NULL;
644 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100645}
646
647void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
648{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100649 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100650 port->rport_task = RPORT_ADD;
651
Swen Schillig45446832009-08-18 15:43:17 +0200652 if (!queue_work(port->adapter->work_queue, &port->rport_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100653 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100654}
655
656void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
657{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100658 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100659 port->rport_task = RPORT_DEL;
660
Swen Schillig45446832009-08-18 15:43:17 +0200661 if (port->rport && queue_work(port->adapter->work_queue,
662 &port->rport_work))
Swen Schilliga67417a2009-08-18 15:43:06 +0200663 return;
664
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_rports_block(struct zfcp_adapter *adapter)
669{
Swen Schilligecf0c772009-11-24 16:53:58 +0100670 unsigned long flags;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100671 struct zfcp_port *port;
672
Swen Schilligecf0c772009-11-24 16:53:58 +0100673 read_lock_irqsave(&adapter->port_list_lock, flags);
674 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100675 zfcp_scsi_schedule_rport_block(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100676 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100677}
678
679void zfcp_scsi_rport_work(struct work_struct *work)
680{
681 struct zfcp_port *port = container_of(work, struct zfcp_port,
682 rport_work);
683
684 while (port->rport_task) {
685 if (port->rport_task == RPORT_ADD) {
686 port->rport_task = RPORT_NONE;
687 zfcp_scsi_rport_register(port);
688 } else {
689 port->rport_task = RPORT_NONE;
690 zfcp_scsi_rport_block(port);
691 }
692 }
693
Christof Schmitt615f59e2010-02-17 11:18:56 +0100694 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100695}
696
Christof Schmitt5a7de552010-07-08 09:53:07 +0200697/**
Felix Beckef3eb712010-07-16 15:37:42 +0200698 * zfcp_scsi_set_prot - Configure DIF/DIX support in scsi_host
699 * @adapter: The adapter where to configure DIF/DIX for the SCSI host
700 */
701void zfcp_scsi_set_prot(struct zfcp_adapter *adapter)
702{
703 unsigned int mask = 0;
704 unsigned int data_div;
705 struct Scsi_Host *shost = adapter->scsi_host;
706
707 data_div = atomic_read(&adapter->status) &
708 ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED;
709
710 if (enable_dif &&
711 adapter->adapter_features & FSF_FEATURE_DIF_PROT_TYPE1)
712 mask |= SHOST_DIF_TYPE1_PROTECTION;
713
714 if (enable_dif && data_div &&
715 adapter->adapter_features & FSF_FEATURE_DIX_PROT_TCPIP) {
716 mask |= SHOST_DIX_TYPE1_PROTECTION;
717 scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP);
Swen Schillig86a96682011-08-15 14:40:32 +0200718 shost->sg_prot_tablesize = adapter->qdio->max_sbale_per_req / 2;
719 shost->sg_tablesize = adapter->qdio->max_sbale_per_req / 2;
720 shost->max_sectors = shost->sg_tablesize * 8;
Felix Beckef3eb712010-07-16 15:37:42 +0200721 }
722
723 scsi_host_set_prot(shost, mask);
724}
725
726/**
727 * zfcp_scsi_dif_sense_error - Report DIF/DIX error as driver sense error
728 * @scmd: The SCSI command to report the error for
729 * @ascq: The ASCQ to put in the sense buffer
730 *
731 * See the error handling in sd_done for the sense codes used here.
732 * Set DID_SOFT_ERROR to retry the request, if possible.
733 */
734void zfcp_scsi_dif_sense_error(struct scsi_cmnd *scmd, int ascq)
735{
736 scsi_build_sense_buffer(1, scmd->sense_buffer,
737 ILLEGAL_REQUEST, 0x10, ascq);
738 set_driver_byte(scmd, DRIVER_SENSE);
739 scmd->result |= SAM_STAT_CHECK_CONDITION;
740 set_host_byte(scmd, DID_SOFT_ERROR);
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 .show_starget_port_id = 1,
745 .show_starget_port_name = 1,
746 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700747 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200748 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200749 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700750 .show_host_node_name = 1,
751 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100752 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700753 .show_host_supported_classes = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100754 .show_host_supported_fc4s = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100755 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200756 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700757 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100758 .get_fc_host_stats = zfcp_get_fc_host_stats,
759 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200760 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200761 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100762 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200763 .show_host_port_state = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100764 .show_host_active_fc4s = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100765 .bsg_request = zfcp_fc_exec_bsg_job,
Swen Schillig491ca442010-01-14 17:19:01 +0100766 .bsg_timeout = zfcp_fc_timeout_bsg_job,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100767 /* no functions registered for following dynamic attributes but
768 directly set by LLDD */
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100769 .show_host_port_type = 1,
Christof Schmitt038d9442011-02-22 19:54:48 +0100770 .show_host_symbolic_name = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200771 .show_host_speed = 1,
772 .show_host_port_id = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100773 .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774};