blob: 75f4bfc2b98ad21570588844140bf6546701cc50 [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 *
Steffen Maier5fea4292013-04-26 17:33:45 +02006 * Copyright IBM Corp. 2002, 2013
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))) {
91 /* This could be either
Christof Schmittb62a8d92010-09-08 14:39:55 +020092 * open LUN pending: this is temporary, will result in
93 * open LUN or ERP_FAILED, so retry command
Christof Schmitt88302712009-11-24 16:54:07 +010094 * call to rport_delete pending: mimic retry from
95 * fc_remote_port_chkready until rport is BLOCKED
96 */
97 zfcp_scsi_command_fail(scpnt, DID_IMM_RETRY);
98 return 0;
99 }
100
Christof Schmittb62a8d92010-09-08 14:39:55 +0200101 ret = zfcp_fsf_fcp_cmnd(scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200102 if (unlikely(ret == -EBUSY))
Swen Schilligf7a65e92008-11-27 11:44:07 +0100103 return SCSI_MLQUEUE_DEVICE_BUSY;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200104 else if (unlikely(ret < 0))
105 return SCSI_MLQUEUE_HOST_BUSY;
106
107 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Christof Schmittb62a8d92010-09-08 14:39:55 +0200110static int zfcp_scsi_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200112 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
113 struct zfcp_adapter *adapter =
114 (struct zfcp_adapter *) sdev->host->hostdata[0];
115 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct zfcp_port *port;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200117 struct zfcp_unit *unit;
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100118 int npiv = adapter->connection_features & FSF_FEATURE_NPIV_MODE;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200119
Christof Schmittb62a8d92010-09-08 14:39:55 +0200120 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
121 if (!port)
122 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200123
Christof Schmittb62a8d92010-09-08 14:39:55 +0200124 unit = zfcp_unit_find(port, zfcp_scsi_dev_lun(sdev));
125 if (unit)
126 put_device(&unit->dev);
Christof Schmittf8210e32010-09-08 14:39:56 +0200127
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100128 if (!unit && !(allow_lun_scan && npiv)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200129 put_device(&port->dev);
130 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200131 }
Christof Schmittb62a8d92010-09-08 14:39:55 +0200132
133 zfcp_sdev->port = port;
134 zfcp_sdev->latencies.write.channel.min = 0xFFFFFFFF;
135 zfcp_sdev->latencies.write.fabric.min = 0xFFFFFFFF;
136 zfcp_sdev->latencies.read.channel.min = 0xFFFFFFFF;
137 zfcp_sdev->latencies.read.fabric.min = 0xFFFFFFFF;
138 zfcp_sdev->latencies.cmd.channel.min = 0xFFFFFFFF;
139 zfcp_sdev->latencies.cmd.fabric.min = 0xFFFFFFFF;
140 spin_lock_init(&zfcp_sdev->latencies.lock);
141
Swen Schilligedaed852010-09-08 14:40:01 +0200142 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100143 zfcp_erp_lun_reopen(sdev, 0, "scsla_1");
Christof Schmittb62a8d92010-09-08 14:39:55 +0200144 zfcp_erp_wait(port->adapter);
145
146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100149static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Christof Schmitt63caf362009-03-02 13:09:00 +0100151 struct Scsi_Host *scsi_host = scpnt->device->host;
152 struct zfcp_adapter *adapter =
153 (struct zfcp_adapter *) scsi_host->hostdata[0];
Christof Schmitt63caf362009-03-02 13:09:00 +0100154 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned long flags;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200156 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100157 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100158 int retry = 3;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200159 char *dbf_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200161 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 write_lock_irqsave(&adapter->abort_lock, flags);
163
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100164 old_req = zfcp_reqlist_find(adapter->req_list, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100165 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 write_unlock_irqrestore(&adapter->abort_lock, flags);
Swen Schillig250a1352010-12-02 15:16:15 +0100167 zfcp_dbf_scsi_abort("abrt_or", scpnt, NULL);
Christof Schmittc6936e72009-04-17 15:08:11 +0200168 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100170 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200172 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200174
Christof Schmitt63caf362009-03-02 13:09:00 +0100175 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200176 abrt_req = zfcp_fsf_abort_fcp_cmnd(scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100177 if (abrt_req)
178 break;
179
180 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100181 ret = fc_block_scsi_eh(scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +0100182 if (ret) {
183 zfcp_dbf_scsi_abort("abrt_bl", scpnt, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100184 return ret;
Swen Schillig250a1352010-12-02 15:16:15 +0100185 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100186 if (!(atomic_read(&adapter->status) &
187 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig250a1352010-12-02 15:16:15 +0100188 zfcp_dbf_scsi_abort("abrt_ru", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100189 return SUCCESS;
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Swen Schillig250a1352010-12-02 15:16:15 +0100192 if (!abrt_req) {
193 zfcp_dbf_scsi_abort("abrt_ar", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100194 return FAILED;
Swen Schillig250a1352010-12-02 15:16:15 +0100195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Swen Schillig058b8642009-08-18 15:43:14 +0200197 wait_for_completion(&abrt_req->completion);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200198
Christof Schmitt63caf362009-03-02 13:09:00 +0100199 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100200 dbf_tag = "abrt_ok";
Christof Schmitt63caf362009-03-02 13:09:00 +0100201 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100202 dbf_tag = "abrt_nn";
Christof Schmitt63caf362009-03-02 13:09:00 +0100203 else {
Swen Schillig250a1352010-12-02 15:16:15 +0100204 dbf_tag = "abrt_fa";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
Swen Schillig250a1352010-12-02 15:16:15 +0100207 zfcp_dbf_scsi_abort(dbf_tag, scpnt, abrt_req);
Christof Schmitt63caf362009-03-02 13:09:00 +0100208 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return retval;
210}
211
Christof Schmitt63caf362009-03-02 13:09:00 +0100212static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200214 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
215 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200216 struct zfcp_fsf_req *fsf_req = NULL;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100217 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100218 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Christof Schmitt63caf362009-03-02 13:09:00 +0100220 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200221 fsf_req = zfcp_fsf_fcp_task_mgmt(scpnt, tm_flags);
Christof Schmitt63caf362009-03-02 13:09:00 +0100222 if (fsf_req)
223 break;
224
225 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100226 ret = fc_block_scsi_eh(scpnt);
227 if (ret)
228 return ret;
229
Christof Schmitt63caf362009-03-02 13:09:00 +0100230 if (!(atomic_read(&adapter->status) &
231 ZFCP_STATUS_COMMON_RUNNING)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200232 zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags);
Christof Schmitt63caf362009-03-02 13:09:00 +0100233 return SUCCESS;
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100236 if (!fsf_req)
237 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Swen Schillig058b8642009-08-18 15:43:14 +0200239 wait_for_completion(&fsf_req->completion);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200240
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200241 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200242 zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200243 retval = FAILED;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200244 } else
Christof Schmittb62a8d92010-09-08 14:39:55 +0200245 zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200246
247 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return retval;
249}
250
Martin Petermannf76af7d72008-07-02 10:56:36 +0200251static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
252{
Christof Schmitt4318e082009-11-24 16:54:08 +0100253 return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200254}
255
256static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
257{
Christof Schmitt4318e082009-11-24 16:54:08 +0100258 return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200259}
260
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100261static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
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;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100265 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Swen Schilligea4a3a62010-12-02 15:16:16 +0100267 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1");
Andreas Herrmann81654282006-09-18 22:30:36 +0200268 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100269 ret = fc_block_scsi_eh(scpnt);
270 if (ret)
271 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Andreas Herrmann810f1e3e2005-09-13 21:49:52 +0200273 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Christof Schmitt1947c722011-02-22 19:54:46 +0100276struct scsi_transport_template *zfcp_scsi_transport_template;
277
278static struct scsi_host_template zfcp_scsi_host_template = {
279 .module = THIS_MODULE,
280 .name = "zfcp",
281 .queuecommand = zfcp_scsi_queuecommand,
282 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
283 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
284 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
285 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
286 .slave_alloc = zfcp_scsi_slave_alloc,
287 .slave_configure = zfcp_scsi_slave_configure,
288 .slave_destroy = zfcp_scsi_slave_destroy,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100289 .change_queue_depth = scsi_change_queue_depth,
Christof Schmitt1947c722011-02-22 19:54:46 +0100290 .proc_name = "zfcp",
291 .can_queue = 4096,
292 .this_id = -1,
Steffen Maier5fea4292013-04-26 17:33:45 +0200293 .sg_tablesize = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
294 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2),
295 /* GCD, adjusted later */
296 .max_sectors = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
297 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2) * 8,
298 /* GCD, adjusted later */
Christof Schmitt1947c722011-02-22 19:54:46 +0100299 .dma_boundary = ZFCP_QDIO_SBALE_LEN - 1,
300 .cmd_per_lun = 1,
301 .use_clustering = 1,
302 .shost_attrs = zfcp_sysfs_shost_attrs,
303 .sdev_attrs = zfcp_sysfs_sdev_attrs,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100304 .track_queue_depth = 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100305};
306
307/**
308 * zfcp_scsi_adapter_register - Register SCSI and FC host with SCSI midlayer
309 * @adapter: The zfcp adapter to register with the SCSI midlayer
310 */
311int zfcp_scsi_adapter_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200313 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Michael Loehr9f287452007-05-09 11:01:24 +0200315 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200316 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200317
Martin Petermannf76af7d72008-07-02 10:56:36 +0200318 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* register adapter as SCSI host with mid layer of SCSI stack */
Christof Schmitt1947c722011-02-22 19:54:46 +0100320 adapter->scsi_host = scsi_host_alloc(&zfcp_scsi_host_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 sizeof (struct zfcp_adapter *));
322 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200323 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200324 "Registering the FCP device with the "
325 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200326 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /* tell the SCSI stack some characteristics of this adapter */
Christof Schmittf8210e32010-09-08 14:39:56 +0200330 adapter->scsi_host->max_id = 511;
331 adapter->scsi_host->max_lun = 0xFFFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200333 adapter->scsi_host->unique_id = dev_id.devno;
Christof Schmitt4318e082009-11-24 16:54:08 +0100334 adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */
Christof Schmitt1947c722011-02-22 19:54:46 +0100335 adapter->scsi_host->transportt = zfcp_scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
338
339 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
340 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200341 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200343
344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Christof Schmitt1947c722011-02-22 19:54:46 +0100347/**
348 * zfcp_scsi_adapter_unregister - Unregister SCSI and FC host from SCSI midlayer
349 * @adapter: The zfcp adapter to unregister.
350 */
351void zfcp_scsi_adapter_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200354 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 shost = adapter->scsi_host;
357 if (!shost)
358 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200359
Swen Schilligecf0c772009-11-24 16:53:58 +0100360 read_lock_irq(&adapter->port_list_lock);
361 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100362 port->rport = NULL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100363 read_unlock_irq(&adapter->port_list_lock);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200364
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700365 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 scsi_remove_host(shost);
367 scsi_host_put(shost);
368 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100371static struct fc_host_statistics*
372zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100374 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100376 if (!adapter->fc_stats) {
377 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
378 if (!fc_stats)
379 return NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +0100380 adapter->fc_stats = fc_stats; /* freed in adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100381 }
382 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
383 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Martin Petermannf76af7d72008-07-02 10:56:36 +0200386static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
387 struct fsf_qtcb_bottom_port *data,
388 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200390 fc_stats->seconds_since_last_reset =
391 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100392 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
393 fc_stats->tx_words = data->tx_words - old->tx_words;
394 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
395 fc_stats->rx_words = data->rx_words - old->rx_words;
396 fc_stats->lip_count = data->lip - old->lip;
397 fc_stats->nos_count = data->nos - old->nos;
398 fc_stats->error_frames = data->error_frames - old->error_frames;
399 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
400 fc_stats->link_failure_count = data->link_failure - old->link_failure;
401 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200402 fc_stats->loss_of_signal_count =
403 data->loss_of_signal - old->loss_of_signal;
404 fc_stats->prim_seq_protocol_err_count =
405 data->psp_error_counts - old->psp_error_counts;
406 fc_stats->invalid_tx_word_count =
407 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100408 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200409 fc_stats->fcp_input_requests =
410 data->input_requests - old->input_requests;
411 fc_stats->fcp_output_requests =
412 data->output_requests - old->output_requests;
413 fc_stats->fcp_control_requests =
414 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100415 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
416 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Martin Petermannf76af7d72008-07-02 10:56:36 +0200419static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
420 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100422 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
423 fc_stats->tx_frames = data->tx_frames;
424 fc_stats->tx_words = data->tx_words;
425 fc_stats->rx_frames = data->rx_frames;
426 fc_stats->rx_words = data->rx_words;
427 fc_stats->lip_count = data->lip;
428 fc_stats->nos_count = data->nos;
429 fc_stats->error_frames = data->error_frames;
430 fc_stats->dumped_frames = data->dumped_frames;
431 fc_stats->link_failure_count = data->link_failure;
432 fc_stats->loss_of_sync_count = data->loss_of_sync;
433 fc_stats->loss_of_signal_count = data->loss_of_signal;
434 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
435 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
436 fc_stats->invalid_crc_count = data->invalid_crcs;
437 fc_stats->fcp_input_requests = data->input_requests;
438 fc_stats->fcp_output_requests = data->output_requests;
439 fc_stats->fcp_control_requests = data->control_requests;
440 fc_stats->fcp_input_megabytes = data->input_mb;
441 fc_stats->fcp_output_megabytes = data->output_mb;
442}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Martin Petermannf76af7d72008-07-02 10:56:36 +0200444static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100445{
446 struct zfcp_adapter *adapter;
447 struct fc_host_statistics *fc_stats;
448 struct fsf_qtcb_bottom_port *data;
449 int ret;
450
Martin Petermannf76af7d72008-07-02 10:56:36 +0200451 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100452 fc_stats = zfcp_init_fc_host_stats(adapter);
453 if (!fc_stats)
454 return NULL;
455
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200456 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100457 if (!data)
458 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100459
Swen Schillig564e1c82009-08-18 15:43:19 +0200460 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100461 if (ret) {
462 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200463 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100464 }
465
466 if (adapter->stats_reset &&
467 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200468 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100469 zfcp_adjust_fc_host_stats(fc_stats, data,
470 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200471 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100472 zfcp_set_fc_host_stats(fc_stats, data);
473
474 kfree(data);
475 return fc_stats;
476}
477
Martin Petermannf76af7d72008-07-02 10:56:36 +0200478static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100479{
480 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200481 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100482 int ret;
483
484 adapter = (struct zfcp_adapter *)shost->hostdata[0];
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200485 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100486 if (!data)
487 return;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100488
Swen Schillig564e1c82009-08-18 15:43:19 +0200489 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200490 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200491 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200492 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100493 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200494 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100495 adapter->stats_reset_data = data; /* finally freed in
Swen Schilligf3450c72009-11-24 16:53:59 +0100496 adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Sven Schuetz85a82392008-06-10 18:20:59 +0200500static void zfcp_get_host_port_state(struct Scsi_Host *shost)
501{
502 struct zfcp_adapter *adapter =
503 (struct zfcp_adapter *)shost->hostdata[0];
504 int status = atomic_read(&adapter->status);
505
506 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
507 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
508 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
509 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
510 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
511 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
512 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
513 else
514 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
515}
516
Andreas Herrmann338151e2006-05-22 18:25:56 +0200517static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
518{
519 rport->dev_loss_tmo = timeout;
520}
521
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100522/**
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100523 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
524 * @rport: The FC rport where to teminate I/O
525 *
526 * Abort all pending SCSI commands for a port by closing the
Christof Schmitt835dc292010-07-08 09:53:08 +0200527 * port. Using a reopen avoids a conflict with a shutdown
528 * overwriting a reopen. The "forced" ensures that a disappeared port
529 * is not opened again as valid due to the cached plogi data in
530 * non-NPIV mode.
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100531 */
532static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
533{
Christof Schmitt70932932009-04-17 15:08:15 +0200534 struct zfcp_port *port;
Swen Schilligea945ff2009-08-18 15:43:24 +0200535 struct Scsi_Host *shost = rport_to_shost(rport);
536 struct zfcp_adapter *adapter =
537 (struct zfcp_adapter *)shost->hostdata[0];
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100538
Swen Schilligea945ff2009-08-18 15:43:24 +0200539 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt70932932009-04-17 15:08:15 +0200540
541 if (port) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100542 zfcp_erp_port_forced_reopen(port, 0, "sctrpi1");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100543 put_device(&port->dev);
Christof Schmitt70932932009-04-17 15:08:15 +0200544 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100545}
546
547static void zfcp_scsi_rport_register(struct zfcp_port *port)
548{
549 struct fc_rport_identifiers ids;
550 struct fc_rport *rport;
551
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200552 if (port->rport)
553 return;
554
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100555 ids.node_name = port->wwnn;
556 ids.port_name = port->wwpn;
557 ids.port_id = port->d_id;
558 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
559
560 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
561 if (!rport) {
562 dev_err(&port->adapter->ccw_device->dev,
563 "Registering port 0x%016Lx failed\n",
564 (unsigned long long)port->wwpn);
565 return;
566 }
567
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100568 rport->maxframe_size = port->maxframe_size;
569 rport->supported_classes = port->supported_classes;
570 port->rport = rport;
Christof Schmitt1bf3ff02010-07-16 15:37:35 +0200571 port->starget_id = rport->scsi_target_id;
Christof Schmitt5a7de552010-07-08 09:53:07 +0200572
Christof Schmitt1daa4eb2010-09-08 14:39:52 +0200573 zfcp_unit_queue_scsi_scan(port);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100574}
575
576static void zfcp_scsi_rport_block(struct zfcp_port *port)
577{
Christof Schmitt70932932009-04-17 15:08:15 +0200578 struct fc_rport *rport = port->rport;
579
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200580 if (rport) {
Christof Schmitt70932932009-04-17 15:08:15 +0200581 fc_remote_port_delete(rport);
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200582 port->rport = NULL;
583 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100584}
585
586void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
587{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100588 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100589 port->rport_task = RPORT_ADD;
590
Swen Schillig45446832009-08-18 15:43:17 +0200591 if (!queue_work(port->adapter->work_queue, &port->rport_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100592 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100593}
594
595void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
596{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100597 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100598 port->rport_task = RPORT_DEL;
599
Swen Schillig45446832009-08-18 15:43:17 +0200600 if (port->rport && queue_work(port->adapter->work_queue,
601 &port->rport_work))
Swen Schilliga67417a2009-08-18 15:43:06 +0200602 return;
603
Christof Schmitt615f59e2010-02-17 11:18:56 +0100604 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100605}
606
607void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
608{
Swen Schilligecf0c772009-11-24 16:53:58 +0100609 unsigned long flags;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100610 struct zfcp_port *port;
611
Swen Schilligecf0c772009-11-24 16:53:58 +0100612 read_lock_irqsave(&adapter->port_list_lock, flags);
613 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100614 zfcp_scsi_schedule_rport_block(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100615 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100616}
617
618void zfcp_scsi_rport_work(struct work_struct *work)
619{
620 struct zfcp_port *port = container_of(work, struct zfcp_port,
621 rport_work);
622
623 while (port->rport_task) {
624 if (port->rport_task == RPORT_ADD) {
625 port->rport_task = RPORT_NONE;
626 zfcp_scsi_rport_register(port);
627 } else {
628 port->rport_task = RPORT_NONE;
629 zfcp_scsi_rport_block(port);
630 }
631 }
632
Christof Schmitt615f59e2010-02-17 11:18:56 +0100633 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100634}
635
Christof Schmitt5a7de552010-07-08 09:53:07 +0200636/**
Felix Beckef3eb712010-07-16 15:37:42 +0200637 * zfcp_scsi_set_prot - Configure DIF/DIX support in scsi_host
638 * @adapter: The adapter where to configure DIF/DIX for the SCSI host
639 */
640void zfcp_scsi_set_prot(struct zfcp_adapter *adapter)
641{
642 unsigned int mask = 0;
643 unsigned int data_div;
644 struct Scsi_Host *shost = adapter->scsi_host;
645
646 data_div = atomic_read(&adapter->status) &
647 ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED;
648
649 if (enable_dif &&
650 adapter->adapter_features & FSF_FEATURE_DIF_PROT_TYPE1)
651 mask |= SHOST_DIF_TYPE1_PROTECTION;
652
653 if (enable_dif && data_div &&
654 adapter->adapter_features & FSF_FEATURE_DIX_PROT_TCPIP) {
655 mask |= SHOST_DIX_TYPE1_PROTECTION;
656 scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP);
Swen Schillig86a96682011-08-15 14:40:32 +0200657 shost->sg_prot_tablesize = adapter->qdio->max_sbale_per_req / 2;
658 shost->sg_tablesize = adapter->qdio->max_sbale_per_req / 2;
659 shost->max_sectors = shost->sg_tablesize * 8;
Felix Beckef3eb712010-07-16 15:37:42 +0200660 }
661
662 scsi_host_set_prot(shost, mask);
663}
664
665/**
666 * zfcp_scsi_dif_sense_error - Report DIF/DIX error as driver sense error
667 * @scmd: The SCSI command to report the error for
668 * @ascq: The ASCQ to put in the sense buffer
669 *
670 * See the error handling in sd_done for the sense codes used here.
671 * Set DID_SOFT_ERROR to retry the request, if possible.
672 */
673void zfcp_scsi_dif_sense_error(struct scsi_cmnd *scmd, int ascq)
674{
675 scsi_build_sense_buffer(1, scmd->sense_buffer,
676 ILLEGAL_REQUEST, 0x10, ascq);
677 set_driver_byte(scmd, DRIVER_SENSE);
678 scmd->result |= SAM_STAT_CHECK_CONDITION;
679 set_host_byte(scmd, DID_SOFT_ERROR);
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .show_starget_port_id = 1,
684 .show_starget_port_name = 1,
685 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700686 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200687 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200688 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700689 .show_host_node_name = 1,
690 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100691 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700692 .show_host_supported_classes = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100693 .show_host_supported_fc4s = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100694 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200695 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700696 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100697 .get_fc_host_stats = zfcp_get_fc_host_stats,
698 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200699 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200700 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100701 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200702 .show_host_port_state = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100703 .show_host_active_fc4s = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100704 .bsg_request = zfcp_fc_exec_bsg_job,
Swen Schillig491ca442010-01-14 17:19:01 +0100705 .bsg_timeout = zfcp_fc_timeout_bsg_job,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100706 /* no functions registered for following dynamic attributes but
707 directly set by LLDD */
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100708 .show_host_port_type = 1,
Christof Schmitt038d9442011-02-22 19:54:48 +0100709 .show_host_symbolic_name = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200710 .show_host_speed = 1,
711 .show_host_port_id = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100712 .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713};