blob: 174b6d57d5769c23735ae137bdce73849031253f [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 *
Christof Schmitt615f59e2010-02-17 11:18:56 +01006 * Copyright IBM Corporation 2002, 2010
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
Christof Schmitt4318e082009-11-24 16:54:08 +010012#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Christof Schmitt4318e082009-11-24 16:54:08 +010014#include <scsi/fc/fc_fcp.h>
Christof Schmitt5f852be2007-05-08 11:16:52 +020015#include <asm/atomic.h>
Christof Schmittdcd20e22009-08-18 15:43:08 +020016#include "zfcp_ext.h"
17#include "zfcp_dbf.h"
Christof Schmitt7c7dc192009-11-24 16:54:13 +010018#include "zfcp_fc.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010019#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Christof Schmitta40a1ba2009-05-15 13:18:16 +020021static unsigned int default_depth = 32;
22module_param_named(queue_depth, default_depth, uint, 0600);
23MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
24
Mike Christiee881a172009-10-15 17:46:39 -070025static int zfcp_scsi_change_queue_depth(struct scsi_device *sdev, int depth,
26 int reason)
Christof Schmitta40a1ba2009-05-15 13:18:16 +020027{
Christof Schmitt42e62a72009-10-15 17:47:11 -070028 switch (reason) {
29 case SCSI_QDEPTH_DEFAULT:
30 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
31 break;
32 case SCSI_QDEPTH_QFULL:
33 scsi_track_queue_full(sdev, depth);
34 break;
35 case SCSI_QDEPTH_RAMP_UP:
36 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
37 break;
38 default:
Mike Christiee881a172009-10-15 17:46:39 -070039 return -EOPNOTSUPP;
Christof Schmitt42e62a72009-10-15 17:47:11 -070040 }
Christof Schmitta40a1ba2009-05-15 13:18:16 +020041 return sdev->queue_depth;
42}
43
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +020044static void zfcp_scsi_slave_destroy(struct scsi_device *sdpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 struct zfcp_unit *unit = (struct zfcp_unit *) sdpnt->hostdata;
Christof Schmitt26816f12008-11-04 16:35:05 +010047 unit->device = NULL;
Christof Schmitt615f59e2010-02-17 11:18:56 +010048 put_device(&unit->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
Martin Petermannf76af7d72008-07-02 10:56:36 +020051static int zfcp_scsi_slave_configure(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 if (sdp->tagged_supported)
Christof Schmitta40a1ba2009-05-15 13:18:16 +020054 scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, default_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 else
56 scsi_adjust_queue_depth(sdp, 0, 1);
57 return 0;
58}
59
Martin Petermannf76af7d72008-07-02 10:56:36 +020060static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Swen Schillig57717102009-08-18 15:43:21 +020062 struct zfcp_adapter *adapter =
63 (struct zfcp_adapter *) scpnt->device->host->hostdata[0];
Christof Schmitt22ed1302010-02-17 11:18:53 +010064
Martin Petermannfeac6a02008-07-02 10:56:35 +020065 set_host_byte(scpnt, result);
Christof Schmittab725282010-02-17 11:18:57 +010066 zfcp_dbf_scsi_fail_send(adapter->dbf, scpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 scpnt->scsi_done(scpnt);
68}
69
Martin Petermannf76af7d72008-07-02 10:56:36 +020070static int zfcp_scsi_queuecommand(struct scsi_cmnd *scpnt,
71 void (*done) (struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 struct zfcp_unit *unit;
74 struct zfcp_adapter *adapter;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010075 int status, scsi_result, ret;
76 struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* reset the status for this request */
79 scpnt->result = 0;
80 scpnt->host_scribble = NULL;
81 scpnt->scsi_done = done;
82
83 /*
84 * figure out adapter and target device
85 * (stored there by zfcp_scsi_slave_alloc)
86 */
87 adapter = (struct zfcp_adapter *) scpnt->device->host->hostdata[0];
Martin Petermannf76af7d72008-07-02 10:56:36 +020088 unit = scpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010090 scsi_result = fc_remote_port_chkready(rport);
91 if (unlikely(scsi_result)) {
92 scpnt->result = scsi_result;
Christof Schmittab725282010-02-17 11:18:57 +010093 zfcp_dbf_scsi_fail_send(adapter->dbf, scpnt);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010094 scpnt->scsi_done(scpnt);
95 return 0;
96 }
97
Martin Petermannf76af7d72008-07-02 10:56:36 +020098 status = atomic_read(&unit->status);
Christof Schmitt88302712009-11-24 16:54:07 +010099 if (unlikely(status & ZFCP_STATUS_COMMON_ERP_FAILED) &&
100 !(atomic_read(&unit->port->status) &
101 ZFCP_STATUS_COMMON_ERP_FAILED)) {
102 /* only unit access denied, but port is good
103 * not covered by FC transport, have to fail here */
Martin Petermannf76af7d72008-07-02 10:56:36 +0200104 zfcp_scsi_command_fail(scpnt, DID_ERROR);
Joe Perchesa419aef2009-08-18 11:18:35 -0700105 return 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200106 }
107
Christof Schmitt88302712009-11-24 16:54:07 +0100108 if (unlikely(!(status & ZFCP_STATUS_COMMON_UNBLOCKED))) {
109 /* This could be either
110 * open unit pending: this is temporary, will result in
111 * open unit or ERP_FAILED, so retry command
112 * call to rport_delete pending: mimic retry from
113 * fc_remote_port_chkready until rport is BLOCKED
114 */
115 zfcp_scsi_command_fail(scpnt, DID_IMM_RETRY);
116 return 0;
117 }
118
Christof Schmitt63caf362009-03-02 13:09:00 +0100119 ret = zfcp_fsf_send_fcp_command_task(unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200120 if (unlikely(ret == -EBUSY))
Swen Schilligf7a65e92008-11-27 11:44:07 +0100121 return SCSI_MLQUEUE_DEVICE_BUSY;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200122 else if (unlikely(ret < 0))
123 return SCSI_MLQUEUE_HOST_BUSY;
124
125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Martin Petermannf76af7d72008-07-02 10:56:36 +0200128static struct zfcp_unit *zfcp_unit_lookup(struct zfcp_adapter *adapter,
Swen Schilligecf0c772009-11-24 16:53:58 +0100129 unsigned int id, u64 lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Swen Schilligecf0c772009-11-24 16:53:58 +0100131 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct zfcp_port *port;
Swen Schilligecf0c772009-11-24 16:53:58 +0100133 struct zfcp_unit *unit = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Swen Schilligecf0c772009-11-24 16:53:58 +0100135 read_lock_irqsave(&adapter->port_list_lock, flags);
136 list_for_each_entry(port, &adapter->port_list, list) {
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700137 if (!port->rport || (id != port->rport->scsi_target_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 continue;
Swen Schilligecf0c772009-11-24 16:53:58 +0100139 unit = zfcp_get_unit_by_lun(port, lun);
140 if (unit)
141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100143 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200144
Swen Schilligecf0c772009-11-24 16:53:58 +0100145 return unit;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200146}
147
148static int zfcp_scsi_slave_alloc(struct scsi_device *sdp)
149{
150 struct zfcp_adapter *adapter;
151 struct zfcp_unit *unit;
Swen Schilligecf0c772009-11-24 16:53:58 +0100152 u64 lun;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200153
154 adapter = (struct zfcp_adapter *) sdp->host->hostdata[0];
155 if (!adapter)
156 goto out;
157
Swen Schilligecf0c772009-11-24 16:53:58 +0100158 int_to_scsilun(sdp->lun, (struct scsi_lun *)&lun);
159 unit = zfcp_unit_lookup(adapter, sdp->id, lun);
Christof Schmitt86f8a1b2009-03-02 13:08:55 +0100160 if (unit) {
Martin Petermannf76af7d72008-07-02 10:56:36 +0200161 sdp->hostdata = unit;
162 unit->device = sdp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100163 return 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200164 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200165out:
Swen Schilligecf0c772009-11-24 16:53:58 +0100166 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100169static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Christof Schmitt63caf362009-03-02 13:09:00 +0100171 struct Scsi_Host *scsi_host = scpnt->device->host;
172 struct zfcp_adapter *adapter =
173 (struct zfcp_adapter *) scsi_host->hostdata[0];
174 struct zfcp_unit *unit = scpnt->device->hostdata;
175 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 unsigned long flags;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200177 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200178 int retval = SUCCESS;
Christof Schmitt63caf362009-03-02 13:09:00 +0100179 int retry = 3;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200180 char *dbf_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200182 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 write_lock_irqsave(&adapter->abort_lock, flags);
184
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100185 old_req = zfcp_reqlist_find(adapter->req_list, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100186 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 write_unlock_irqrestore(&adapter->abort_lock, flags);
Swen Schillig57717102009-08-18 15:43:21 +0200188 zfcp_dbf_scsi_abort("lte1", adapter->dbf, scpnt, NULL,
189 old_reqid);
Christof Schmittc6936e72009-04-17 15:08:11 +0200190 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100192 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200194 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200196
Christof Schmitt63caf362009-03-02 13:09:00 +0100197 while (retry--) {
Christof Schmitta11a52b2009-07-13 15:06:14 +0200198 abrt_req = zfcp_fsf_abort_fcp_command(old_reqid, unit);
Christof Schmitt63caf362009-03-02 13:09:00 +0100199 if (abrt_req)
200 break;
201
202 zfcp_erp_wait(adapter);
Christof Schmittaf4de362009-11-24 16:54:16 +0100203 fc_block_scsi_eh(scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100204 if (!(atomic_read(&adapter->status) &
205 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig57717102009-08-18 15:43:21 +0200206 zfcp_dbf_scsi_abort("nres", adapter->dbf, scpnt, NULL,
207 old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100208 return SUCCESS;
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100211 if (!abrt_req)
212 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Swen Schillig058b8642009-08-18 15:43:14 +0200214 wait_for_completion(&abrt_req->completion);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200215
Christof Schmitt63caf362009-03-02 13:09:00 +0100216 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
Christof Schmitta11a52b2009-07-13 15:06:14 +0200217 dbf_tag = "okay";
Christof Schmitt63caf362009-03-02 13:09:00 +0100218 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
Christof Schmitta11a52b2009-07-13 15:06:14 +0200219 dbf_tag = "lte2";
Christof Schmitt63caf362009-03-02 13:09:00 +0100220 else {
Christof Schmitta11a52b2009-07-13 15:06:14 +0200221 dbf_tag = "fail";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Swen Schillig57717102009-08-18 15:43:21 +0200224 zfcp_dbf_scsi_abort(dbf_tag, adapter->dbf, scpnt, abrt_req, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100225 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return retval;
227}
228
Christof Schmitt63caf362009-03-02 13:09:00 +0100229static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Christof Schmitt63caf362009-03-02 13:09:00 +0100231 struct zfcp_unit *unit = scpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct zfcp_adapter *adapter = unit->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200233 struct zfcp_fsf_req *fsf_req = NULL;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200234 int retval = SUCCESS;
Christof Schmitt63caf362009-03-02 13:09:00 +0100235 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Christof Schmitt63caf362009-03-02 13:09:00 +0100237 while (retry--) {
238 fsf_req = zfcp_fsf_send_fcp_ctm(unit, tm_flags);
239 if (fsf_req)
240 break;
241
242 zfcp_erp_wait(adapter);
Christof Schmittaf4de362009-11-24 16:54:16 +0100243 fc_block_scsi_eh(scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100244 if (!(atomic_read(&adapter->status) &
245 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig57717102009-08-18 15:43:21 +0200246 zfcp_dbf_scsi_devreset("nres", tm_flags, unit, scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100247 return SUCCESS;
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100250 if (!fsf_req)
251 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Swen Schillig058b8642009-08-18 15:43:14 +0200253 wait_for_completion(&fsf_req->completion);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200254
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200255 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
Swen Schillig57717102009-08-18 15:43:21 +0200256 zfcp_dbf_scsi_devreset("fail", tm_flags, unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200257 retval = FAILED;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200258 } else
Swen Schillig57717102009-08-18 15:43:21 +0200259 zfcp_dbf_scsi_devreset("okay", tm_flags, unit, scpnt);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200260
261 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return retval;
263}
264
Martin Petermannf76af7d72008-07-02 10:56:36 +0200265static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
266{
Christof Schmitt4318e082009-11-24 16:54:08 +0100267 return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200268}
269
270static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
271{
Christof Schmitt4318e082009-11-24 16:54:08 +0100272 return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200273}
274
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100275static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Christof Schmitt63caf362009-03-02 13:09:00 +0100277 struct zfcp_unit *unit = scpnt->device->hostdata;
278 struct zfcp_adapter *adapter = unit->port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100280 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1", scpnt);
Andreas Herrmann81654282006-09-18 22:30:36 +0200281 zfcp_erp_wait(adapter);
Christof Schmittaf4de362009-11-24 16:54:16 +0100282 fc_block_scsi_eh(scpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Andreas Herrmann810f1e3e2005-09-13 21:49:52 +0200284 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Martin Petermannf76af7d72008-07-02 10:56:36 +0200287int zfcp_adapter_scsi_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200289 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Michael Loehr9f287452007-05-09 11:01:24 +0200291 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200292 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200293
Martin Petermannf76af7d72008-07-02 10:56:36 +0200294 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* register adapter as SCSI host with mid layer of SCSI stack */
296 adapter->scsi_host = scsi_host_alloc(&zfcp_data.scsi_host_template,
297 sizeof (struct zfcp_adapter *));
298 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200299 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200300 "Registering the FCP device with the "
301 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200302 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 /* tell the SCSI stack some characteristics of this adapter */
306 adapter->scsi_host->max_id = 1;
307 adapter->scsi_host->max_lun = 1;
308 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200309 adapter->scsi_host->unique_id = dev_id.devno;
Christof Schmitt4318e082009-11-24 16:54:08 +0100310 adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200311 adapter->scsi_host->transportt = zfcp_data.scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
314
315 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
316 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200317 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200319
320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Martin Petermannf76af7d72008-07-02 10:56:36 +0200323void zfcp_adapter_scsi_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200326 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 shost = adapter->scsi_host;
329 if (!shost)
330 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200331
Swen Schilligecf0c772009-11-24 16:53:58 +0100332 read_lock_irq(&adapter->port_list_lock);
333 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100334 port->rport = NULL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100335 read_unlock_irq(&adapter->port_list_lock);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200336
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700337 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 scsi_remove_host(shost);
339 scsi_host_put(shost);
340 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 return;
343}
344
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100345static struct fc_host_statistics*
346zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100348 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100350 if (!adapter->fc_stats) {
351 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
352 if (!fc_stats)
353 return NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +0100354 adapter->fc_stats = fc_stats; /* freed in adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100355 }
356 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
357 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Martin Petermannf76af7d72008-07-02 10:56:36 +0200360static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
361 struct fsf_qtcb_bottom_port *data,
362 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200364 fc_stats->seconds_since_last_reset =
365 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100366 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
367 fc_stats->tx_words = data->tx_words - old->tx_words;
368 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
369 fc_stats->rx_words = data->rx_words - old->rx_words;
370 fc_stats->lip_count = data->lip - old->lip;
371 fc_stats->nos_count = data->nos - old->nos;
372 fc_stats->error_frames = data->error_frames - old->error_frames;
373 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
374 fc_stats->link_failure_count = data->link_failure - old->link_failure;
375 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200376 fc_stats->loss_of_signal_count =
377 data->loss_of_signal - old->loss_of_signal;
378 fc_stats->prim_seq_protocol_err_count =
379 data->psp_error_counts - old->psp_error_counts;
380 fc_stats->invalid_tx_word_count =
381 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100382 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200383 fc_stats->fcp_input_requests =
384 data->input_requests - old->input_requests;
385 fc_stats->fcp_output_requests =
386 data->output_requests - old->output_requests;
387 fc_stats->fcp_control_requests =
388 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100389 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
390 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Martin Petermannf76af7d72008-07-02 10:56:36 +0200393static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
394 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100396 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
397 fc_stats->tx_frames = data->tx_frames;
398 fc_stats->tx_words = data->tx_words;
399 fc_stats->rx_frames = data->rx_frames;
400 fc_stats->rx_words = data->rx_words;
401 fc_stats->lip_count = data->lip;
402 fc_stats->nos_count = data->nos;
403 fc_stats->error_frames = data->error_frames;
404 fc_stats->dumped_frames = data->dumped_frames;
405 fc_stats->link_failure_count = data->link_failure;
406 fc_stats->loss_of_sync_count = data->loss_of_sync;
407 fc_stats->loss_of_signal_count = data->loss_of_signal;
408 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
409 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
410 fc_stats->invalid_crc_count = data->invalid_crcs;
411 fc_stats->fcp_input_requests = data->input_requests;
412 fc_stats->fcp_output_requests = data->output_requests;
413 fc_stats->fcp_control_requests = data->control_requests;
414 fc_stats->fcp_input_megabytes = data->input_mb;
415 fc_stats->fcp_output_megabytes = data->output_mb;
416}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Martin Petermannf76af7d72008-07-02 10:56:36 +0200418static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100419{
420 struct zfcp_adapter *adapter;
421 struct fc_host_statistics *fc_stats;
422 struct fsf_qtcb_bottom_port *data;
423 int ret;
424
Martin Petermannf76af7d72008-07-02 10:56:36 +0200425 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100426 fc_stats = zfcp_init_fc_host_stats(adapter);
427 if (!fc_stats)
428 return NULL;
429
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200430 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100431 if (!data)
432 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100433
Swen Schillig564e1c82009-08-18 15:43:19 +0200434 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100435 if (ret) {
436 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200437 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100438 }
439
440 if (adapter->stats_reset &&
441 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200442 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100443 zfcp_adjust_fc_host_stats(fc_stats, data,
444 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200445 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100446 zfcp_set_fc_host_stats(fc_stats, data);
447
448 kfree(data);
449 return fc_stats;
450}
451
Martin Petermannf76af7d72008-07-02 10:56:36 +0200452static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100453{
454 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200455 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100456 int ret;
457
458 adapter = (struct zfcp_adapter *)shost->hostdata[0];
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200459 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100460 if (!data)
461 return;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100462
Swen Schillig564e1c82009-08-18 15:43:19 +0200463 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200464 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200465 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200466 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100467 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200468 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100469 adapter->stats_reset_data = data; /* finally freed in
Swen Schilligf3450c72009-11-24 16:53:59 +0100470 adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Sven Schuetz85a82392008-06-10 18:20:59 +0200474static void zfcp_get_host_port_state(struct Scsi_Host *shost)
475{
476 struct zfcp_adapter *adapter =
477 (struct zfcp_adapter *)shost->hostdata[0];
478 int status = atomic_read(&adapter->status);
479
480 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
481 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
482 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
483 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
484 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
485 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
486 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
487 else
488 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
489}
490
Andreas Herrmann338151e2006-05-22 18:25:56 +0200491static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
492{
493 rport->dev_loss_tmo = timeout;
494}
495
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100496/**
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100497 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
498 * @rport: The FC rport where to teminate I/O
499 *
500 * Abort all pending SCSI commands for a port by closing the
Swen Schilligecf0c772009-11-24 16:53:58 +0100501 * port. Using a reopen avoiding a conflict with a shutdown
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100502 * overwriting a reopen.
503 */
504static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
505{
Christof Schmitt70932932009-04-17 15:08:15 +0200506 struct zfcp_port *port;
Swen Schilligea945ff2009-08-18 15:43:24 +0200507 struct Scsi_Host *shost = rport_to_shost(rport);
508 struct zfcp_adapter *adapter =
509 (struct zfcp_adapter *)shost->hostdata[0];
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100510
Swen Schilligea945ff2009-08-18 15:43:24 +0200511 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt70932932009-04-17 15:08:15 +0200512
513 if (port) {
514 zfcp_erp_port_reopen(port, 0, "sctrpi1", NULL);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100515 put_device(&port->dev);
Christof Schmitt70932932009-04-17 15:08:15 +0200516 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100517}
518
519static void zfcp_scsi_rport_register(struct zfcp_port *port)
520{
521 struct fc_rport_identifiers ids;
522 struct fc_rport *rport;
523
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200524 if (port->rport)
525 return;
526
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100527 ids.node_name = port->wwnn;
528 ids.port_name = port->wwpn;
529 ids.port_id = port->d_id;
530 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
531
532 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
533 if (!rport) {
534 dev_err(&port->adapter->ccw_device->dev,
535 "Registering port 0x%016Lx failed\n",
536 (unsigned long long)port->wwpn);
537 return;
538 }
539
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100540 rport->maxframe_size = port->maxframe_size;
541 rport->supported_classes = port->supported_classes;
542 port->rport = rport;
543}
544
545static void zfcp_scsi_rport_block(struct zfcp_port *port)
546{
Christof Schmitt70932932009-04-17 15:08:15 +0200547 struct fc_rport *rport = port->rport;
548
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200549 if (rport) {
Christof Schmitt70932932009-04-17 15:08:15 +0200550 fc_remote_port_delete(rport);
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200551 port->rport = NULL;
552 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100553}
554
555void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
556{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100557 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100558 port->rport_task = RPORT_ADD;
559
Swen Schillig45446832009-08-18 15:43:17 +0200560 if (!queue_work(port->adapter->work_queue, &port->rport_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100561 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100562}
563
564void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
565{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100566 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100567 port->rport_task = RPORT_DEL;
568
Swen Schillig45446832009-08-18 15:43:17 +0200569 if (port->rport && queue_work(port->adapter->work_queue,
570 &port->rport_work))
Swen Schilliga67417a2009-08-18 15:43:06 +0200571 return;
572
Christof Schmitt615f59e2010-02-17 11:18:56 +0100573 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100574}
575
576void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
577{
Swen Schilligecf0c772009-11-24 16:53:58 +0100578 unsigned long flags;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100579 struct zfcp_port *port;
580
Swen Schilligecf0c772009-11-24 16:53:58 +0100581 read_lock_irqsave(&adapter->port_list_lock, flags);
582 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100583 zfcp_scsi_schedule_rport_block(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100584 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100585}
586
587void zfcp_scsi_rport_work(struct work_struct *work)
588{
589 struct zfcp_port *port = container_of(work, struct zfcp_port,
590 rport_work);
591
592 while (port->rport_task) {
593 if (port->rport_task == RPORT_ADD) {
594 port->rport_task = RPORT_NONE;
595 zfcp_scsi_rport_register(port);
596 } else {
597 port->rport_task = RPORT_NONE;
598 zfcp_scsi_rport_block(port);
599 }
600 }
601
Christof Schmitt615f59e2010-02-17 11:18:56 +0100602 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100603}
604
605
Swen Schillig92d51932009-04-17 15:08:04 +0200606void zfcp_scsi_scan(struct work_struct *work)
607{
608 struct zfcp_unit *unit = container_of(work, struct zfcp_unit,
609 scsi_work);
610 struct fc_rport *rport;
611
612 flush_work(&unit->port->rport_work);
613 rport = unit->port->rport;
614
615 if (rport && rport->port_state == FC_PORTSTATE_ONLINE)
616 scsi_scan_target(&rport->dev, 0, rport->scsi_target_id,
617 scsilun_to_int((struct scsi_lun *)
618 &unit->fcp_lun), 0);
619
Christof Schmitt615f59e2010-02-17 11:18:56 +0100620 put_device(&unit->dev);
Swen Schillig92d51932009-04-17 15:08:04 +0200621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 .show_starget_port_id = 1,
625 .show_starget_port_name = 1,
626 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700627 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200628 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200629 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700630 .show_host_node_name = 1,
631 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100632 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700633 .show_host_supported_classes = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100634 .show_host_supported_fc4s = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100635 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200636 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700637 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100638 .get_fc_host_stats = zfcp_get_fc_host_stats,
639 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200640 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200641 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100642 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200643 .show_host_port_state = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100644 .show_host_active_fc4s = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100645 .bsg_request = zfcp_fc_exec_bsg_job,
Swen Schillig491ca442010-01-14 17:19:01 +0100646 .bsg_timeout = zfcp_fc_timeout_bsg_job,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100647 /* no functions registered for following dynamic attributes but
648 directly set by LLDD */
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100649 .show_host_port_type = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200650 .show_host_speed = 1,
651 .show_host_port_id = 1,
Swen Schillig52ef11a2007-08-28 09:31:09 +0200652 .disable_target_scan = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100653 .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654};
655
Martin Petermannf76af7d72008-07-02 10:56:36 +0200656struct zfcp_data zfcp_data = {
657 .scsi_host_template = {
658 .name = "zfcp",
659 .module = THIS_MODULE,
660 .proc_name = "zfcp",
Christof Schmitta40a1ba2009-05-15 13:18:16 +0200661 .change_queue_depth = zfcp_scsi_change_queue_depth,
Martin Petermannf76af7d72008-07-02 10:56:36 +0200662 .slave_alloc = zfcp_scsi_slave_alloc,
663 .slave_configure = zfcp_scsi_slave_configure,
664 .slave_destroy = zfcp_scsi_slave_destroy,
665 .queuecommand = zfcp_scsi_queuecommand,
666 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
667 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
668 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
669 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
670 .can_queue = 4096,
671 .this_id = -1,
672 .sg_tablesize = ZFCP_MAX_SBALES_PER_REQ,
673 .cmd_per_lun = 1,
674 .use_clustering = 1,
675 .sdev_attrs = zfcp_sysfs_sdev_attrs,
676 .max_sectors = (ZFCP_MAX_SBALES_PER_REQ * 8),
Swen Schillig60221922008-07-02 10:56:38 +0200677 .shost_attrs = zfcp_sysfs_shost_attrs,
Martin Petermannf76af7d72008-07-02 10:56:36 +0200678 },
679};