blob: 7d0da230eb637ce92468f2d6565e1b04be4fdde3 [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 Schmitta2fa0ae2009-03-02 13:09:08 +01006 * Copyright IBM Corporation 2002, 2009
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "zfcp_ext.h"
Christof Schmitt5f852be2007-05-08 11:16:52 +020013#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Christof Schmitta40a1ba2009-05-15 13:18:16 +020015static unsigned int default_depth = 32;
16module_param_named(queue_depth, default_depth, uint, 0600);
17MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/* Find start of Sense Information in FCP response unit*/
Martin Petermannf76af7d72008-07-02 10:56:36 +020020char *zfcp_get_fcp_sns_info_ptr(struct fcp_rsp_iu *fcp_rsp_iu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
22 char *fcp_sns_info_ptr;
23
Martin Petermannf76af7d72008-07-02 10:56:36 +020024 fcp_sns_info_ptr = (unsigned char *) &fcp_rsp_iu[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 if (fcp_rsp_iu->validity.bits.fcp_rsp_len_valid)
Martin Petermannf76af7d72008-07-02 10:56:36 +020026 fcp_sns_info_ptr += fcp_rsp_iu->fcp_rsp_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 return fcp_sns_info_ptr;
29}
30
Christof Schmitta40a1ba2009-05-15 13:18:16 +020031static int zfcp_scsi_change_queue_depth(struct scsi_device *sdev, int depth)
32{
33 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
34 return sdev->queue_depth;
35}
36
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +020037static void zfcp_scsi_slave_destroy(struct scsi_device *sdpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 struct zfcp_unit *unit = (struct zfcp_unit *) sdpnt->hostdata;
Christof Schmitt26816f12008-11-04 16:35:05 +010040 unit->device = NULL;
Christof Schmitt26816f12008-11-04 16:35:05 +010041 zfcp_unit_put(unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
Martin Petermannf76af7d72008-07-02 10:56:36 +020044static int zfcp_scsi_slave_configure(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 if (sdp->tagged_supported)
Christof Schmitta40a1ba2009-05-15 13:18:16 +020047 scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, default_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 else
49 scsi_adjust_queue_depth(sdp, 0, 1);
50 return 0;
51}
52
Martin Petermannf76af7d72008-07-02 10:56:36 +020053static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Martin Petermannfeac6a02008-07-02 10:56:35 +020055 set_host_byte(scpnt, result);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020056 if ((scpnt->device != NULL) && (scpnt->device->host != NULL))
57 zfcp_scsi_dbf_event_result("fail", 4,
58 (struct zfcp_adapter*) scpnt->device->host->hostdata[0],
Maxim Shchetynined829ad2006-02-11 01:42:58 +010059 scpnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 /* return directly */
61 scpnt->scsi_done(scpnt);
62}
63
Martin Petermannf76af7d72008-07-02 10:56:36 +020064static int zfcp_scsi_queuecommand(struct scsi_cmnd *scpnt,
65 void (*done) (struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 struct zfcp_unit *unit;
68 struct zfcp_adapter *adapter;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010069 int status, scsi_result, ret;
70 struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 /* reset the status for this request */
73 scpnt->result = 0;
74 scpnt->host_scribble = NULL;
75 scpnt->scsi_done = done;
76
77 /*
78 * figure out adapter and target device
79 * (stored there by zfcp_scsi_slave_alloc)
80 */
81 adapter = (struct zfcp_adapter *) scpnt->device->host->hostdata[0];
Martin Petermannf76af7d72008-07-02 10:56:36 +020082 unit = scpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Martin Petermannf76af7d72008-07-02 10:56:36 +020084 BUG_ON(!adapter || (adapter != unit->port->adapter));
85 BUG_ON(!scpnt->scsi_done);
86
87 if (unlikely(!unit)) {
88 zfcp_scsi_command_fail(scpnt, DID_NO_CONNECT);
89 return 0;
90 }
91
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010092 scsi_result = fc_remote_port_chkready(rport);
93 if (unlikely(scsi_result)) {
94 scpnt->result = scsi_result;
95 zfcp_scsi_dbf_event_result("fail", 4, adapter, scpnt, NULL);
96 scpnt->scsi_done(scpnt);
97 return 0;
98 }
99
Martin Petermannf76af7d72008-07-02 10:56:36 +0200100 status = atomic_read(&unit->status);
101 if (unlikely((status & ZFCP_STATUS_COMMON_ERP_FAILED) ||
102 !(status & ZFCP_STATUS_COMMON_RUNNING))) {
103 zfcp_scsi_command_fail(scpnt, DID_ERROR);
104 return 0;;
105 }
106
Christof Schmitt63caf362009-03-02 13:09:00 +0100107 ret = zfcp_fsf_send_fcp_command_task(unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200108 if (unlikely(ret == -EBUSY))
Swen Schilligf7a65e92008-11-27 11:44:07 +0100109 return SCSI_MLQUEUE_DEVICE_BUSY;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200110 else if (unlikely(ret < 0))
111 return SCSI_MLQUEUE_HOST_BUSY;
112
113 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Martin Petermannf76af7d72008-07-02 10:56:36 +0200116static struct zfcp_unit *zfcp_unit_lookup(struct zfcp_adapter *adapter,
117 int channel, unsigned int id,
118 unsigned int lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct zfcp_port *port;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200121 struct zfcp_unit *unit;
Christof Schmitt04062892008-10-01 12:42:20 +0200122 int scsi_lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 list_for_each_entry(port, &adapter->port_list_head, list) {
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700125 if (!port->rport || (id != port->rport->scsi_target_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 continue;
Christof Schmitt04062892008-10-01 12:42:20 +0200127 list_for_each_entry(unit, &port->unit_list_head, list) {
128 scsi_lun = scsilun_to_int(
129 (struct scsi_lun *)&unit->fcp_lun);
130 if (lun == scsi_lun)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200131 return unit;
Christof Schmitt04062892008-10-01 12:42:20 +0200132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200134
135 return NULL;
136}
137
138static int zfcp_scsi_slave_alloc(struct scsi_device *sdp)
139{
140 struct zfcp_adapter *adapter;
141 struct zfcp_unit *unit;
142 unsigned long flags;
143 int retval = -ENXIO;
144
145 adapter = (struct zfcp_adapter *) sdp->host->hostdata[0];
146 if (!adapter)
147 goto out;
148
149 read_lock_irqsave(&zfcp_data.config_lock, flags);
150 unit = zfcp_unit_lookup(adapter, sdp->channel, sdp->id, sdp->lun);
Christof Schmitt86f8a1b2009-03-02 13:08:55 +0100151 if (unit) {
Martin Petermannf76af7d72008-07-02 10:56:36 +0200152 sdp->hostdata = unit;
153 unit->device = sdp;
154 zfcp_unit_get(unit);
155 retval = 0;
156 }
157 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
158out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return retval;
160}
161
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100162static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Christof Schmitt63caf362009-03-02 13:09:00 +0100164 struct Scsi_Host *scsi_host = scpnt->device->host;
165 struct zfcp_adapter *adapter =
166 (struct zfcp_adapter *) scsi_host->hostdata[0];
167 struct zfcp_unit *unit = scpnt->device->hostdata;
168 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 unsigned long flags;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200170 unsigned long old_req_id = (unsigned long) scpnt->host_scribble;
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200171 int retval = SUCCESS;
Christof Schmitt63caf362009-03-02 13:09:00 +0100172 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200174 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 write_lock_irqsave(&adapter->abort_lock, flags);
176
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200177 spin_lock(&adapter->req_list_lock);
Christof Schmitt63caf362009-03-02 13:09:00 +0100178 old_req = zfcp_reqlist_find(adapter, old_req_id);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200179 spin_unlock(&adapter->req_list_lock);
Christof Schmitt63caf362009-03-02 13:09:00 +0100180 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 write_unlock_irqrestore(&adapter->abort_lock, flags);
Christof Schmitt63caf362009-03-02 13:09:00 +0100182 zfcp_scsi_dbf_event_abort("lte1", adapter, scpnt, NULL,
183 old_req_id);
Christof Schmittc6936e72009-04-17 15:08:11 +0200184 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100186 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200188 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200190
Christof Schmitt63caf362009-03-02 13:09:00 +0100191 while (retry--) {
192 abrt_req = zfcp_fsf_abort_fcp_command(old_req_id, unit);
193 if (abrt_req)
194 break;
195
196 zfcp_erp_wait(adapter);
197 if (!(atomic_read(&adapter->status) &
198 ZFCP_STATUS_COMMON_RUNNING)) {
199 zfcp_scsi_dbf_event_abort("nres", adapter, scpnt, NULL,
200 old_req_id);
201 return SUCCESS;
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100204 if (!abrt_req)
205 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Christof Schmitt63caf362009-03-02 13:09:00 +0100207 wait_event(abrt_req->completion_wq,
208 abrt_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200209
Christof Schmitt63caf362009-03-02 13:09:00 +0100210 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
211 zfcp_scsi_dbf_event_abort("okay", adapter, scpnt, abrt_req, 0);
212 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
213 zfcp_scsi_dbf_event_abort("lte2", adapter, scpnt, abrt_req, 0);
214 else {
215 zfcp_scsi_dbf_event_abort("fail", adapter, scpnt, abrt_req, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100218 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return retval;
220}
221
Christof Schmitt63caf362009-03-02 13:09:00 +0100222static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Christof Schmitt63caf362009-03-02 13:09:00 +0100224 struct zfcp_unit *unit = scpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct zfcp_adapter *adapter = unit->port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 struct zfcp_fsf_req *fsf_req;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200227 int retval = SUCCESS;
Christof Schmitt63caf362009-03-02 13:09:00 +0100228 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Christof Schmitt63caf362009-03-02 13:09:00 +0100230 while (retry--) {
231 fsf_req = zfcp_fsf_send_fcp_ctm(unit, tm_flags);
232 if (fsf_req)
233 break;
234
235 zfcp_erp_wait(adapter);
236 if (!(atomic_read(&adapter->status) &
237 ZFCP_STATUS_COMMON_RUNNING)) {
238 zfcp_scsi_dbf_event_devreset("nres", tm_flags, unit,
239 scpnt);
240 return SUCCESS;
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100243 if (!fsf_req)
244 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christof Schmitt63caf362009-03-02 13:09:00 +0100246 wait_event(fsf_req->completion_wq,
247 fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200248
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200249 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
250 zfcp_scsi_dbf_event_devreset("fail", tm_flags, unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200251 retval = FAILED;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200252 } else if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP) {
253 zfcp_scsi_dbf_event_devreset("nsup", tm_flags, unit, scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200254 retval = FAILED;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200255 } else
256 zfcp_scsi_dbf_event_devreset("okay", tm_flags, unit, scpnt);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200257
258 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return retval;
260}
261
Martin Petermannf76af7d72008-07-02 10:56:36 +0200262static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
263{
Christof Schmitt63caf362009-03-02 13:09:00 +0100264 return zfcp_task_mgmt_function(scpnt, FCP_LOGICAL_UNIT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200265}
266
267static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
268{
Christof Schmitt63caf362009-03-02 13:09:00 +0100269 return zfcp_task_mgmt_function(scpnt, FCP_TARGET_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200270}
271
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100272static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Christof Schmitt63caf362009-03-02 13:09:00 +0100274 struct zfcp_unit *unit = scpnt->device->hostdata;
275 struct zfcp_adapter *adapter = unit->port->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100277 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1", scpnt);
Andreas Herrmann81654282006-09-18 22:30:36 +0200278 zfcp_erp_wait(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Andreas Herrmann810f1e3e2005-09-13 21:49:52 +0200280 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Martin Petermannf76af7d72008-07-02 10:56:36 +0200283int zfcp_adapter_scsi_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200285 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Michael Loehr9f287452007-05-09 11:01:24 +0200287 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200288 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200289
Martin Petermannf76af7d72008-07-02 10:56:36 +0200290 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* register adapter as SCSI host with mid layer of SCSI stack */
292 adapter->scsi_host = scsi_host_alloc(&zfcp_data.scsi_host_template,
293 sizeof (struct zfcp_adapter *));
294 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200295 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200296 "Registering the FCP device with the "
297 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200298 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 /* tell the SCSI stack some characteristics of this adapter */
302 adapter->scsi_host->max_id = 1;
303 adapter->scsi_host->max_lun = 1;
304 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200305 adapter->scsi_host->unique_id = dev_id.devno;
306 adapter->scsi_host->max_cmd_len = 255;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200307 adapter->scsi_host->transportt = zfcp_data.scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
310
311 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
312 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200313 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200315
316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Martin Petermannf76af7d72008-07-02 10:56:36 +0200319void zfcp_adapter_scsi_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200322 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 shost = adapter->scsi_host;
325 if (!shost)
326 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200327
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200328 read_lock_irq(&zfcp_data.config_lock);
329 list_for_each_entry(port, &adapter->port_list_head, list)
330 if (port->rport)
331 port->rport = NULL;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200332
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200333 read_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700334 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 scsi_remove_host(shost);
336 scsi_host_put(shost);
337 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 return;
340}
341
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100342static struct fc_host_statistics*
343zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100345 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100347 if (!adapter->fc_stats) {
348 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
349 if (!fc_stats)
350 return NULL;
351 adapter->fc_stats = fc_stats; /* freed in adater_dequeue */
352 }
353 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
354 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Martin Petermannf76af7d72008-07-02 10:56:36 +0200357static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
358 struct fsf_qtcb_bottom_port *data,
359 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200361 fc_stats->seconds_since_last_reset =
362 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100363 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
364 fc_stats->tx_words = data->tx_words - old->tx_words;
365 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
366 fc_stats->rx_words = data->rx_words - old->rx_words;
367 fc_stats->lip_count = data->lip - old->lip;
368 fc_stats->nos_count = data->nos - old->nos;
369 fc_stats->error_frames = data->error_frames - old->error_frames;
370 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
371 fc_stats->link_failure_count = data->link_failure - old->link_failure;
372 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200373 fc_stats->loss_of_signal_count =
374 data->loss_of_signal - old->loss_of_signal;
375 fc_stats->prim_seq_protocol_err_count =
376 data->psp_error_counts - old->psp_error_counts;
377 fc_stats->invalid_tx_word_count =
378 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100379 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200380 fc_stats->fcp_input_requests =
381 data->input_requests - old->input_requests;
382 fc_stats->fcp_output_requests =
383 data->output_requests - old->output_requests;
384 fc_stats->fcp_control_requests =
385 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100386 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
387 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Martin Petermannf76af7d72008-07-02 10:56:36 +0200390static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
391 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100393 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
394 fc_stats->tx_frames = data->tx_frames;
395 fc_stats->tx_words = data->tx_words;
396 fc_stats->rx_frames = data->rx_frames;
397 fc_stats->rx_words = data->rx_words;
398 fc_stats->lip_count = data->lip;
399 fc_stats->nos_count = data->nos;
400 fc_stats->error_frames = data->error_frames;
401 fc_stats->dumped_frames = data->dumped_frames;
402 fc_stats->link_failure_count = data->link_failure;
403 fc_stats->loss_of_sync_count = data->loss_of_sync;
404 fc_stats->loss_of_signal_count = data->loss_of_signal;
405 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
406 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
407 fc_stats->invalid_crc_count = data->invalid_crcs;
408 fc_stats->fcp_input_requests = data->input_requests;
409 fc_stats->fcp_output_requests = data->output_requests;
410 fc_stats->fcp_control_requests = data->control_requests;
411 fc_stats->fcp_input_megabytes = data->input_mb;
412 fc_stats->fcp_output_megabytes = data->output_mb;
413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Martin Petermannf76af7d72008-07-02 10:56:36 +0200415static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100416{
417 struct zfcp_adapter *adapter;
418 struct fc_host_statistics *fc_stats;
419 struct fsf_qtcb_bottom_port *data;
420 int ret;
421
Martin Petermannf76af7d72008-07-02 10:56:36 +0200422 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100423 fc_stats = zfcp_init_fc_host_stats(adapter);
424 if (!fc_stats)
425 return NULL;
426
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200427 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100428 if (!data)
429 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100430
Swen Schillig52ef11a2007-08-28 09:31:09 +0200431 ret = zfcp_fsf_exchange_port_data_sync(adapter, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100432 if (ret) {
433 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200434 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100435 }
436
437 if (adapter->stats_reset &&
438 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200439 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100440 zfcp_adjust_fc_host_stats(fc_stats, data,
441 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200442 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100443 zfcp_set_fc_host_stats(fc_stats, data);
444
445 kfree(data);
446 return fc_stats;
447}
448
Martin Petermannf76af7d72008-07-02 10:56:36 +0200449static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100450{
451 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200452 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100453 int ret;
454
455 adapter = (struct zfcp_adapter *)shost->hostdata[0];
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;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100459
Swen Schillig52ef11a2007-08-28 09:31:09 +0200460 ret = zfcp_fsf_exchange_port_data_sync(adapter, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200461 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200462 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200463 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100464 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200465 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100466 adapter->stats_reset_data = data; /* finally freed in
Martin Petermannf76af7d72008-07-02 10:56:36 +0200467 adapter_dequeue */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Sven Schuetz85a82392008-06-10 18:20:59 +0200471static void zfcp_get_host_port_state(struct Scsi_Host *shost)
472{
473 struct zfcp_adapter *adapter =
474 (struct zfcp_adapter *)shost->hostdata[0];
475 int status = atomic_read(&adapter->status);
476
477 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
478 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
479 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
480 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
481 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
482 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
483 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
484 else
485 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
486}
487
Andreas Herrmann338151e2006-05-22 18:25:56 +0200488static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
489{
490 rport->dev_loss_tmo = timeout;
491}
492
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100493/**
494 * zfcp_scsi_dev_loss_tmo_callbk - Free any reference to rport
495 * @rport: The rport that is about to be deleted.
496 */
497static void zfcp_scsi_dev_loss_tmo_callbk(struct fc_rport *rport)
498{
Christof Schmitt70932932009-04-17 15:08:15 +0200499 struct zfcp_port *port;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100500
501 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt70932932009-04-17 15:08:15 +0200502 port = rport->dd_data;
503 if (port)
504 port->rport = NULL;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100505 write_unlock_irq(&zfcp_data.config_lock);
506}
507
508/**
509 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
510 * @rport: The FC rport where to teminate I/O
511 *
512 * Abort all pending SCSI commands for a port by closing the
513 * port. Using a reopen for avoids a conflict with a shutdown
514 * overwriting a reopen.
515 */
516static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
517{
Christof Schmitt70932932009-04-17 15:08:15 +0200518 struct zfcp_port *port;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100519
Christof Schmitt70932932009-04-17 15:08:15 +0200520 write_lock_irq(&zfcp_data.config_lock);
521 port = rport->dd_data;
522 if (port)
523 zfcp_port_get(port);
524 write_unlock_irq(&zfcp_data.config_lock);
525
526 if (port) {
527 zfcp_erp_port_reopen(port, 0, "sctrpi1", NULL);
528 zfcp_port_put(port);
529 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100530}
531
532static void zfcp_scsi_rport_register(struct zfcp_port *port)
533{
534 struct fc_rport_identifiers ids;
535 struct fc_rport *rport;
536
537 ids.node_name = port->wwnn;
538 ids.port_name = port->wwpn;
539 ids.port_id = port->d_id;
540 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
541
542 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
543 if (!rport) {
544 dev_err(&port->adapter->ccw_device->dev,
545 "Registering port 0x%016Lx failed\n",
546 (unsigned long long)port->wwpn);
547 return;
548 }
549
550 rport->dd_data = port;
551 rport->maxframe_size = port->maxframe_size;
552 rport->supported_classes = port->supported_classes;
553 port->rport = rport;
554}
555
556static void zfcp_scsi_rport_block(struct zfcp_port *port)
557{
Christof Schmitt70932932009-04-17 15:08:15 +0200558 struct fc_rport *rport = port->rport;
559
560 if (rport)
561 fc_remote_port_delete(rport);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100562}
563
564void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
565{
566 zfcp_port_get(port);
567 port->rport_task = RPORT_ADD;
568
569 if (!queue_work(zfcp_data.work_queue, &port->rport_work))
570 zfcp_port_put(port);
571}
572
573void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
574{
575 zfcp_port_get(port);
576 port->rport_task = RPORT_DEL;
577
578 if (!queue_work(zfcp_data.work_queue, &port->rport_work))
579 zfcp_port_put(port);
580}
581
582void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
583{
584 struct zfcp_port *port;
585
586 list_for_each_entry(port, &adapter->port_list_head, list)
587 zfcp_scsi_schedule_rport_block(port);
588}
589
590void zfcp_scsi_rport_work(struct work_struct *work)
591{
592 struct zfcp_port *port = container_of(work, struct zfcp_port,
593 rport_work);
594
595 while (port->rport_task) {
596 if (port->rport_task == RPORT_ADD) {
597 port->rport_task = RPORT_NONE;
598 zfcp_scsi_rport_register(port);
599 } else {
600 port->rport_task = RPORT_NONE;
601 zfcp_scsi_rport_block(port);
602 }
603 }
604
605 zfcp_port_put(port);
606}
607
608
Swen Schillig92d51932009-04-17 15:08:04 +0200609void zfcp_scsi_scan(struct work_struct *work)
610{
611 struct zfcp_unit *unit = container_of(work, struct zfcp_unit,
612 scsi_work);
613 struct fc_rport *rport;
614
615 flush_work(&unit->port->rport_work);
616 rport = unit->port->rport;
617
618 if (rport && rport->port_state == FC_PORTSTATE_ONLINE)
619 scsi_scan_target(&rport->dev, 0, rport->scsi_target_id,
620 scsilun_to_int((struct scsi_lun *)
621 &unit->fcp_lun), 0);
622
623 zfcp_unit_put(unit);
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 .show_starget_port_id = 1,
628 .show_starget_port_name = 1,
629 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700630 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200631 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200632 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700633 .show_host_node_name = 1,
634 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100635 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700636 .show_host_supported_classes = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100637 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200638 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700639 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100640 .get_fc_host_stats = zfcp_get_fc_host_stats,
641 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200642 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200643 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100644 .dev_loss_tmo_callbk = zfcp_scsi_dev_loss_tmo_callbk,
645 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200646 .show_host_port_state = 1,
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653};
654
Martin Petermannf76af7d72008-07-02 10:56:36 +0200655struct zfcp_data zfcp_data = {
656 .scsi_host_template = {
657 .name = "zfcp",
658 .module = THIS_MODULE,
659 .proc_name = "zfcp",
Christof Schmitta40a1ba2009-05-15 13:18:16 +0200660 .change_queue_depth = zfcp_scsi_change_queue_depth,
Martin Petermannf76af7d72008-07-02 10:56:36 +0200661 .slave_alloc = zfcp_scsi_slave_alloc,
662 .slave_configure = zfcp_scsi_slave_configure,
663 .slave_destroy = zfcp_scsi_slave_destroy,
664 .queuecommand = zfcp_scsi_queuecommand,
665 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
666 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
667 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
668 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
669 .can_queue = 4096,
670 .this_id = -1,
671 .sg_tablesize = ZFCP_MAX_SBALES_PER_REQ,
672 .cmd_per_lun = 1,
673 .use_clustering = 1,
674 .sdev_attrs = zfcp_sysfs_sdev_attrs,
675 .max_sectors = (ZFCP_MAX_SBALES_PER_REQ * 8),
Swen Schillig60221922008-07-02 10:56:38 +0200676 .shost_attrs = zfcp_sysfs_shost_attrs,
Martin Petermannf76af7d72008-07-02 10:56:36 +0200677 },
678};