]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/s390/scsi/zfcp_scsi.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / drivers / s390 / scsi / zfcp_scsi.c
CommitLineData
41fa2ada 1/*
553448f6 2 * zfcp device driver
1da177e4 3 *
553448f6 4 * Interface to Linux SCSI midlayer.
41fa2ada 5 *
615f59e0 6 * Copyright IBM Corporation 2002, 2010
1da177e4
LT
7 */
8
ecf39d42
CS
9#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
4318e08c 12#include <linux/types.h>
5a0e3ad6 13#include <linux/slab.h>
4318e08c 14#include <scsi/fc/fc_fcp.h>
5f852be9 15#include <asm/atomic.h>
dcd20e23
CS
16#include "zfcp_ext.h"
17#include "zfcp_dbf.h"
7c7dc196 18#include "zfcp_fc.h"
b6bd2fb9 19#include "zfcp_reqlist.h"
1da177e4 20
a40a1baf
CS
21static 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
e881a172
MC
25static int zfcp_scsi_change_queue_depth(struct scsi_device *sdev, int depth,
26 int reason)
a40a1baf 27{
42e62a74
CS
28 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:
e881a172 39 return -EOPNOTSUPP;
42e62a74 40 }
a40a1baf
CS
41 return sdev->queue_depth;
42}
43
f6c0e7a7 44static void zfcp_scsi_slave_destroy(struct scsi_device *sdpnt)
1da177e4
LT
45{
46 struct zfcp_unit *unit = (struct zfcp_unit *) sdpnt->hostdata;
26816f1c 47 unit->device = NULL;
615f59e0 48 put_device(&unit->dev);
1da177e4
LT
49}
50
f76af7d7 51static int zfcp_scsi_slave_configure(struct scsi_device *sdp)
1da177e4
LT
52{
53 if (sdp->tagged_supported)
a40a1baf 54 scsi_adjust_queue_depth(sdp, MSG_SIMPLE_TAG, default_depth);
1da177e4
LT
55 else
56 scsi_adjust_queue_depth(sdp, 0, 1);
57 return 0;
58}
59
f76af7d7 60static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result)
1da177e4 61{
5771710b
SS
62 struct zfcp_adapter *adapter =
63 (struct zfcp_adapter *) scpnt->device->host->hostdata[0];
22ed1307 64
feac6a07 65 set_host_byte(scpnt, result);
ab72528a 66 zfcp_dbf_scsi_fail_send(adapter->dbf, scpnt);
1da177e4
LT
67 scpnt->scsi_done(scpnt);
68}
69
f76af7d7
MP
70static int zfcp_scsi_queuecommand(struct scsi_cmnd *scpnt,
71 void (*done) (struct scsi_cmnd *))
1da177e4
LT
72{
73 struct zfcp_unit *unit;
74 struct zfcp_adapter *adapter;
a2fa0aed
CS
75 int status, scsi_result, ret;
76 struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device));
1da177e4
LT
77
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];
f76af7d7
MP
88 unit = scpnt->device->hostdata;
89
a2fa0aed
CS
90 scsi_result = fc_remote_port_chkready(rport);
91 if (unlikely(scsi_result)) {
92 scpnt->result = scsi_result;
ab72528a 93 zfcp_dbf_scsi_fail_send(adapter->dbf, scpnt);
a2fa0aed
CS
94 scpnt->scsi_done(scpnt);
95 return 0;
96 }
97
f76af7d7 98 status = atomic_read(&unit->status);
8830271c
CS
99 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 */
f76af7d7 104 zfcp_scsi_command_fail(scpnt, DID_ERROR);
a419aef8 105 return 0;
f76af7d7
MP
106 }
107
8830271c
CS
108 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
63caf367 119 ret = zfcp_fsf_send_fcp_command_task(unit, scpnt);
f76af7d7 120 if (unlikely(ret == -EBUSY))
f7a65e92 121 return SCSI_MLQUEUE_DEVICE_BUSY;
f76af7d7
MP
122 else if (unlikely(ret < 0))
123 return SCSI_MLQUEUE_HOST_BUSY;
1da177e4 124
f76af7d7 125 return ret;
1da177e4
LT
126}
127
f76af7d7 128static struct zfcp_unit *zfcp_unit_lookup(struct zfcp_adapter *adapter,
ecf0c772 129 unsigned int id, u64 lun)
1da177e4 130{
ecf0c772 131 unsigned long flags;
1da177e4 132 struct zfcp_port *port;
ecf0c772 133 struct zfcp_unit *unit = NULL;
1da177e4 134
ecf0c772
SS
135 read_lock_irqsave(&adapter->port_list_lock, flags);
136 list_for_each_entry(port, &adapter->port_list, list) {
3859f6a2 137 if (!port->rport || (id != port->rport->scsi_target_id))
1da177e4 138 continue;
ecf0c772
SS
139 unit = zfcp_get_unit_by_lun(port, lun);
140 if (unit)
141 break;
1da177e4 142 }
ecf0c772 143 read_unlock_irqrestore(&adapter->port_list_lock, flags);
f76af7d7 144
ecf0c772 145 return unit;
f76af7d7
MP
146}
147
148static int zfcp_scsi_slave_alloc(struct scsi_device *sdp)
149{
150 struct zfcp_adapter *adapter;
151 struct zfcp_unit *unit;
ecf0c772 152 u64 lun;
f76af7d7
MP
153
154 adapter = (struct zfcp_adapter *) sdp->host->hostdata[0];
155 if (!adapter)
156 goto out;
157
ecf0c772
SS
158 int_to_scsilun(sdp->lun, (struct scsi_lun *)&lun);
159 unit = zfcp_unit_lookup(adapter, sdp->id, lun);
86f8a1b4 160 if (unit) {
f76af7d7
MP
161 sdp->hostdata = unit;
162 unit->device = sdp;
ecf0c772 163 return 0;
f76af7d7 164 }
f76af7d7 165out:
ecf0c772 166 return -ENXIO;
1da177e4
LT
167}
168
2b67fc46 169static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
1da177e4 170{
63caf367
CS
171 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;
1da177e4 176 unsigned long flags;
a11a52be 177 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
4eff4a36 178 int retval = SUCCESS;
63caf367 179 int retry = 3;
a11a52be 180 char *dbf_tag;
1da177e4 181
059c97d0 182 /* avoid race condition between late normal completion and abort */
1da177e4
LT
183 write_lock_irqsave(&adapter->abort_lock, flags);
184
b6bd2fb9 185 old_req = zfcp_reqlist_find(adapter->req_list, old_reqid);
63caf367 186 if (!old_req) {
1da177e4 187 write_unlock_irqrestore(&adapter->abort_lock, flags);
5771710b
SS
188 zfcp_dbf_scsi_abort("lte1", adapter->dbf, scpnt, NULL,
189 old_reqid);
c6936e7f 190 return FAILED; /* completion could be in progress */
1da177e4 191 }
63caf367 192 old_req->data = NULL;
1da177e4 193
4eff4a36 194 /* don't access old fsf_req after releasing the abort_lock */
1da177e4 195 write_unlock_irqrestore(&adapter->abort_lock, flags);
4eff4a36 196
63caf367 197 while (retry--) {
a11a52be 198 abrt_req = zfcp_fsf_abort_fcp_command(old_reqid, unit);
63caf367
CS
199 if (abrt_req)
200 break;
201
202 zfcp_erp_wait(adapter);
af4de36d 203 fc_block_scsi_eh(scpnt);
63caf367
CS
204 if (!(atomic_read(&adapter->status) &
205 ZFCP_STATUS_COMMON_RUNNING)) {
5771710b
SS
206 zfcp_dbf_scsi_abort("nres", adapter->dbf, scpnt, NULL,
207 old_reqid);
63caf367
CS
208 return SUCCESS;
209 }
1da177e4 210 }
63caf367
CS
211 if (!abrt_req)
212 return FAILED;
1da177e4 213
058b8647 214 wait_for_completion(&abrt_req->completion);
059c97d0 215
63caf367 216 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
a11a52be 217 dbf_tag = "okay";
63caf367 218 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
a11a52be 219 dbf_tag = "lte2";
63caf367 220 else {
a11a52be 221 dbf_tag = "fail";
1da177e4 222 retval = FAILED;
1da177e4 223 }
5771710b 224 zfcp_dbf_scsi_abort(dbf_tag, adapter->dbf, scpnt, abrt_req, old_reqid);
63caf367 225 zfcp_fsf_req_free(abrt_req);
f76af7d7 226 return retval;
1da177e4
LT
227}
228
63caf367 229static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
1da177e4 230{
63caf367 231 struct zfcp_unit *unit = scpnt->device->hostdata;
1da177e4 232 struct zfcp_adapter *adapter = unit->port->adapter;
564e1c86 233 struct zfcp_fsf_req *fsf_req = NULL;
f76af7d7 234 int retval = SUCCESS;
63caf367
CS
235 int retry = 3;
236
237 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);
af4de36d 243 fc_block_scsi_eh(scpnt);
63caf367
CS
244 if (!(atomic_read(&adapter->status) &
245 ZFCP_STATUS_COMMON_RUNNING)) {
5771710b 246 zfcp_dbf_scsi_devreset("nres", tm_flags, unit, scpnt);
63caf367
CS
247 return SUCCESS;
248 }
1da177e4 249 }
63caf367
CS
250 if (!fsf_req)
251 return FAILED;
1da177e4 252
058b8647 253 wait_for_completion(&fsf_req->completion);
77eb1699 254
8a36e453 255 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
5771710b 256 zfcp_dbf_scsi_devreset("fail", tm_flags, unit, scpnt);
f76af7d7 257 retval = FAILED;
8a36e453 258 } else
5771710b 259 zfcp_dbf_scsi_devreset("okay", tm_flags, unit, scpnt);
77eb1699
AH
260
261 zfcp_fsf_req_free(fsf_req);
1da177e4
LT
262 return retval;
263}
264
f76af7d7
MP
265static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
266{
4318e08c 267 return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET);
f76af7d7
MP
268}
269
270static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
271{
4318e08c 272 return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET);
f76af7d7
MP
273}
274
2b67fc46 275static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
1da177e4 276{
63caf367
CS
277 struct zfcp_unit *unit = scpnt->device->hostdata;
278 struct zfcp_adapter *adapter = unit->port->adapter;
1da177e4 279
5ffd51a5 280 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1", scpnt);
81654286 281 zfcp_erp_wait(adapter);
af4de36d 282 fc_block_scsi_eh(scpnt);
1da177e4 283
810f1e3e 284 return SUCCESS;
1da177e4
LT
285}
286
f76af7d7 287int zfcp_adapter_scsi_register(struct zfcp_adapter *adapter)
1da177e4 288{
f76af7d7 289 struct ccw_dev_id dev_id;
1da177e4 290
9f28745a 291 if (adapter->scsi_host)
f76af7d7 292 return 0;
9f28745a 293
f76af7d7 294 ccw_device_get_id(adapter->ccw_device, &dev_id);
1da177e4
LT
295 /* 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) {
553448f6 299 dev_err(&adapter->ccw_device->dev,
ff3b24fa
CS
300 "Registering the FCP device with the "
301 "SCSI stack failed\n");
f76af7d7 302 return -EIO;
1da177e4 303 }
1da177e4
LT
304
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;
f76af7d7 309 adapter->scsi_host->unique_id = dev_id.devno;
4318e08c 310 adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */
dd52e0ea 311 adapter->scsi_host->transportt = zfcp_data.scsi_transport_template;
1da177e4 312
1da177e4
LT
313 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);
f76af7d7 317 return -EIO;
1da177e4 318 }
f76af7d7
MP
319
320 return 0;
1da177e4
LT
321}
322
f76af7d7 323void zfcp_adapter_scsi_unregister(struct zfcp_adapter *adapter)
1da177e4
LT
324{
325 struct Scsi_Host *shost;
13e1e1f0 326 struct zfcp_port *port;
1da177e4
LT
327
328 shost = adapter->scsi_host;
329 if (!shost)
330 return;
f76af7d7 331
ecf0c772
SS
332 read_lock_irq(&adapter->port_list_lock);
333 list_for_each_entry(port, &adapter->port_list, list)
f3450c7b 334 port->rport = NULL;
ecf0c772 335 read_unlock_irq(&adapter->port_list_lock);
f76af7d7 336
3859f6a2 337 fc_remove_host(shost);
1da177e4
LT
338 scsi_remove_host(shost);
339 scsi_host_put(shost);
340 adapter->scsi_host = NULL;
1da177e4
LT
341
342 return;
343}
344
f6cd94b1
AH
345static struct fc_host_statistics*
346zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
1da177e4 347{
f6cd94b1 348 struct fc_host_statistics *fc_stats;
1da177e4 349
f6cd94b1
AH
350 if (!adapter->fc_stats) {
351 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
352 if (!fc_stats)
353 return NULL;
f3450c7b 354 adapter->fc_stats = fc_stats; /* freed in adapter_release */
f6cd94b1
AH
355 }
356 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
357 return adapter->fc_stats;
1da177e4
LT
358}
359
f76af7d7
MP
360static 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)
1da177e4 363{
f76af7d7
MP
364 fc_stats->seconds_since_last_reset =
365 data->seconds_since_last_reset - old->seconds_since_last_reset;
f6cd94b1
AH
366 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;
f76af7d7
MP
376 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;
f6cd94b1 382 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
f76af7d7
MP
383 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;
f6cd94b1
AH
389 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
390 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
391}
1da177e4 392
f76af7d7
MP
393static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
394 struct fsf_qtcb_bottom_port *data)
f6cd94b1
AH
395{
396 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}
417
f76af7d7 418static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
f6cd94b1
AH
419{
420 struct zfcp_adapter *adapter;
421 struct fc_host_statistics *fc_stats;
422 struct fsf_qtcb_bottom_port *data;
423 int ret;
424
f76af7d7 425 adapter = (struct zfcp_adapter *)host->hostdata[0];
f6cd94b1
AH
426 fc_stats = zfcp_init_fc_host_stats(adapter);
427 if (!fc_stats)
428 return NULL;
429
ec4081c6 430 data = kzalloc(sizeof(*data), GFP_KERNEL);
f6cd94b1
AH
431 if (!data)
432 return NULL;
f6cd94b1 433
564e1c86 434 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
f6cd94b1
AH
435 if (ret) {
436 kfree(data);
f76af7d7 437 return NULL;
f6cd94b1
AH
438 }
439
440 if (adapter->stats_reset &&
441 ((jiffies/HZ - adapter->stats_reset) <
f76af7d7 442 data->seconds_since_last_reset))
f6cd94b1
AH
443 zfcp_adjust_fc_host_stats(fc_stats, data,
444 adapter->stats_reset_data);
f76af7d7 445 else
f6cd94b1
AH
446 zfcp_set_fc_host_stats(fc_stats, data);
447
448 kfree(data);
449 return fc_stats;
1da177e4
LT
450}
451
f76af7d7 452static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
1da177e4 453{
f6cd94b1 454 struct zfcp_adapter *adapter;
f76af7d7 455 struct fsf_qtcb_bottom_port *data;
f6cd94b1 456 int ret;
1da177e4 457
f6cd94b1 458 adapter = (struct zfcp_adapter *)shost->hostdata[0];
ec4081c6 459 data = kzalloc(sizeof(*data), GFP_KERNEL);
f6cd94b1
AH
460 if (!data)
461 return;
f6cd94b1 462
564e1c86 463 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
f76af7d7 464 if (ret)
83f6d6d7 465 kfree(data);
f76af7d7 466 else {
f6cd94b1 467 adapter->stats_reset = jiffies/HZ;
f76af7d7 468 kfree(adapter->stats_reset_data);
f6cd94b1 469 adapter->stats_reset_data = data; /* finally freed in
f3450c7b 470 adapter_release */
f6cd94b1 471 }
1da177e4
LT
472}
473
85a82392
SS
474static 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
338151e0
AH
491static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
492{
493 rport->dev_loss_tmo = timeout;
494}
495
a2fa0aed
CS
496/**
497 * 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
ecf0c772 501 * port. Using a reopen avoiding a conflict with a shutdown
a2fa0aed
CS
502 * overwriting a reopen.
503 */
504static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
505{
70932935 506 struct zfcp_port *port;
ea945ff8
SS
507 struct Scsi_Host *shost = rport_to_shost(rport);
508 struct zfcp_adapter *adapter =
509 (struct zfcp_adapter *)shost->hostdata[0];
70932935 510
ea945ff8 511 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
a2fa0aed 512
70932935
CS
513 if (port) {
514 zfcp_erp_port_reopen(port, 0, "sctrpi1", NULL);
615f59e0 515 put_device(&port->dev);
70932935 516 }
a2fa0aed
CS
517}
518
519static void zfcp_scsi_rport_register(struct zfcp_port *port)
520{
521 struct fc_rport_identifiers ids;
522 struct fc_rport *rport;
523
379d6bf6
CS
524 if (port->rport)
525 return;
526
a2fa0aed
CS
527 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
a2fa0aed
CS
540 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{
70932935
CS
547 struct fc_rport *rport = port->rport;
548
379d6bf6 549 if (rport) {
70932935 550 fc_remote_port_delete(rport);
379d6bf6
CS
551 port->rport = NULL;
552 }
a2fa0aed
CS
553}
554
555void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
556{
615f59e0 557 get_device(&port->dev);
a2fa0aed
CS
558 port->rport_task = RPORT_ADD;
559
4544683a 560 if (!queue_work(port->adapter->work_queue, &port->rport_work))
615f59e0 561 put_device(&port->dev);
a2fa0aed
CS
562}
563
564void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
565{
615f59e0 566 get_device(&port->dev);
a2fa0aed
CS
567 port->rport_task = RPORT_DEL;
568
4544683a
SS
569 if (port->rport && queue_work(port->adapter->work_queue,
570 &port->rport_work))
a67417ab
SS
571 return;
572
615f59e0 573 put_device(&port->dev);
a2fa0aed
CS
574}
575
576void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
577{
ecf0c772 578 unsigned long flags;
a2fa0aed
CS
579 struct zfcp_port *port;
580
ecf0c772
SS
581 read_lock_irqsave(&adapter->port_list_lock, flags);
582 list_for_each_entry(port, &adapter->port_list, list)
a2fa0aed 583 zfcp_scsi_schedule_rport_block(port);
ecf0c772 584 read_unlock_irqrestore(&adapter->port_list_lock, flags);
a2fa0aed
CS
585}
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
615f59e0 602 put_device(&port->dev);
a2fa0aed
CS
603}
604
605
92d5193b
SS
606void 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
615f59e0 620 put_device(&unit->dev);
92d5193b
SS
621}
622
1da177e4 623struct fc_function_template zfcp_transport_functions = {
1da177e4
LT
624 .show_starget_port_id = 1,
625 .show_starget_port_name = 1,
626 .show_starget_node_name = 1,
3859f6a2 627 .show_rport_supported_classes = 1,
75bfc283 628 .show_rport_maxframe_size = 1,
338151e0 629 .show_rport_dev_loss_tmo = 1,
3859f6a2
AH
630 .show_host_node_name = 1,
631 .show_host_port_name = 1,
ad757cdf 632 .show_host_permanent_port_name = 1,
3859f6a2 633 .show_host_supported_classes = 1,
0fdd2133 634 .show_host_supported_fc4s = 1,
ad757cdf 635 .show_host_supported_speeds = 1,
13e1e1f0 636 .show_host_maxframe_size = 1,
3859f6a2 637 .show_host_serial_number = 1,
f6cd94b1
AH
638 .get_fc_host_stats = zfcp_get_fc_host_stats,
639 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
338151e0 640 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
85a82392 641 .get_host_port_state = zfcp_get_host_port_state,
a2fa0aed 642 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
85a82392 643 .show_host_port_state = 1,
0fdd2133 644 .show_host_active_fc4s = 1,
7c7dc196 645 .bsg_request = zfcp_fc_exec_bsg_job,
491ca442 646 .bsg_timeout = zfcp_fc_timeout_bsg_job,
f6cd94b1
AH
647 /* no functions registered for following dynamic attributes but
648 directly set by LLDD */
ad757cdf 649 .show_host_port_type = 1,
13e1e1f0
AH
650 .show_host_speed = 1,
651 .show_host_port_id = 1,
52ef11a7 652 .disable_target_scan = 1,
7c7dc196 653 .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els),
1da177e4
LT
654};
655
f76af7d7
MP
656struct zfcp_data zfcp_data = {
657 .scsi_host_template = {
658 .name = "zfcp",
659 .module = THIS_MODULE,
660 .proc_name = "zfcp",
a40a1baf 661 .change_queue_depth = zfcp_scsi_change_queue_depth,
f76af7d7
MP
662 .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),
60221920 677 .shost_attrs = zfcp_sysfs_shost_attrs,
f76af7d7
MP
678 },
679};