Swen Schillig | 41fa2ad | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 1 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 2 | * zfcp device driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 4 | * Interface to Linux SCSI midlayer. |
Swen Schillig | 41fa2ad | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 5 | * |
Steffen Maier | 5fea429 | 2013-04-26 17:33:45 +0200 | [diff] [blame] | 6 | * Copyright IBM Corp. 2002, 2013 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 9 | #define KMSG_COMPONENT "zfcp" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Heiko Carstens | 3a4c5d5 | 2011-07-30 09:25:15 +0200 | [diff] [blame] | 12 | #include <linux/module.h> |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 13 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 15 | #include <scsi/fc/fc_fcp.h> |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 16 | #include <scsi/scsi_eh.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 17 | #include <linux/atomic.h> |
Christof Schmitt | dcd20e2 | 2009-08-18 15:43:08 +0200 | [diff] [blame] | 18 | #include "zfcp_ext.h" |
| 19 | #include "zfcp_dbf.h" |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 20 | #include "zfcp_fc.h" |
Christof Schmitt | b6bd2fb | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 21 | #include "zfcp_reqlist.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Christof Schmitt | a40a1ba | 2009-05-15 13:18:16 +0200 | [diff] [blame] | 23 | static unsigned int default_depth = 32; |
| 24 | module_param_named(queue_depth, default_depth, uint, 0600); |
| 25 | MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices"); |
| 26 | |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 27 | static bool enable_dif; |
Steffen Maier | cc405ac | 2011-08-15 14:40:30 +0200 | [diff] [blame] | 28 | module_param_named(dif, enable_dif, bool, 0400); |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 29 | MODULE_PARM_DESC(dif, "Enable DIF/DIX data integrity support"); |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 30 | |
Christof Schmitt | 0d81b4e | 2010-12-08 17:30:46 +0100 | [diff] [blame] | 31 | static bool allow_lun_scan = 1; |
| 32 | module_param(allow_lun_scan, bool, 0600); |
| 33 | MODULE_PARM_DESC(allow_lun_scan, "For NPIV, scan and attach all storage LUNs"); |
| 34 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 35 | static void zfcp_scsi_slave_destroy(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 37 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev); |
| 38 | |
Steffen Maier | 44f747f | 2011-11-18 20:00:40 +0100 | [diff] [blame] | 39 | /* if previous slave_alloc returned early, there is nothing to do */ |
| 40 | if (!zfcp_sdev->port) |
| 41 | return; |
| 42 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 43 | zfcp_erp_lun_shutdown_wait(sdev, "scssd_1"); |
| 44 | put_device(&zfcp_sdev->port->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 47 | static int zfcp_scsi_slave_configure(struct scsi_device *sdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { |
| 49 | if (sdp->tagged_supported) |
Christoph Hellwig | db5ed4d | 2014-11-13 15:08:42 +0100 | [diff] [blame] | 50 | scsi_change_queue_depth(sdp, default_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | return 0; |
| 52 | } |
| 53 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 54 | static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 56 | set_host_byte(scpnt, result); |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 57 | zfcp_dbf_scsi_fail_send(scpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | scpnt->scsi_done(scpnt); |
| 59 | } |
| 60 | |
Christof Schmitt | e55f875 | 2010-11-18 14:53:18 +0100 | [diff] [blame] | 61 | static |
| 62 | int zfcp_scsi_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 64 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 65 | struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device)); |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 66 | int status, scsi_result, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /* reset the status for this request */ |
| 69 | scpnt->result = 0; |
| 70 | scpnt->host_scribble = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 72 | scsi_result = fc_remote_port_chkready(rport); |
| 73 | if (unlikely(scsi_result)) { |
| 74 | scpnt->result = scsi_result; |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 75 | zfcp_dbf_scsi_fail_send(scpnt); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 76 | scpnt->scsi_done(scpnt); |
| 77 | return 0; |
| 78 | } |
| 79 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 80 | status = atomic_read(&zfcp_sdev->status); |
Christof Schmitt | 8830271 | 2009-11-24 16:54:07 +0100 | [diff] [blame] | 81 | if (unlikely(status & ZFCP_STATUS_COMMON_ERP_FAILED) && |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 82 | !(atomic_read(&zfcp_sdev->port->status) & |
Christof Schmitt | 8830271 | 2009-11-24 16:54:07 +0100 | [diff] [blame] | 83 | ZFCP_STATUS_COMMON_ERP_FAILED)) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 84 | /* only LUN access denied, but port is good |
Christof Schmitt | 8830271 | 2009-11-24 16:54:07 +0100 | [diff] [blame] | 85 | * not covered by FC transport, have to fail here */ |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 86 | zfcp_scsi_command_fail(scpnt, DID_ERROR); |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 87 | return 0; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 88 | } |
| 89 | |
Christof Schmitt | 8830271 | 2009-11-24 16:54:07 +0100 | [diff] [blame] | 90 | if (unlikely(!(status & ZFCP_STATUS_COMMON_UNBLOCKED))) { |
| 91 | /* This could be either |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 92 | * open LUN pending: this is temporary, will result in |
| 93 | * open LUN or ERP_FAILED, so retry command |
Christof Schmitt | 8830271 | 2009-11-24 16:54:07 +0100 | [diff] [blame] | 94 | * call to rport_delete pending: mimic retry from |
| 95 | * fc_remote_port_chkready until rport is BLOCKED |
| 96 | */ |
| 97 | zfcp_scsi_command_fail(scpnt, DID_IMM_RETRY); |
| 98 | return 0; |
| 99 | } |
| 100 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 101 | ret = zfcp_fsf_fcp_cmnd(scpnt); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 102 | if (unlikely(ret == -EBUSY)) |
Swen Schillig | f7a65e9 | 2008-11-27 11:44:07 +0100 | [diff] [blame] | 103 | return SCSI_MLQUEUE_DEVICE_BUSY; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 104 | else if (unlikely(ret < 0)) |
| 105 | return SCSI_MLQUEUE_HOST_BUSY; |
| 106 | |
| 107 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 110 | static int zfcp_scsi_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 112 | struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); |
| 113 | struct zfcp_adapter *adapter = |
| 114 | (struct zfcp_adapter *) sdev->host->hostdata[0]; |
| 115 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | struct zfcp_port *port; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 117 | struct zfcp_unit *unit; |
Christof Schmitt | 0d81b4e | 2010-12-08 17:30:46 +0100 | [diff] [blame] | 118 | int npiv = adapter->connection_features & FSF_FEATURE_NPIV_MODE; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 119 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 120 | port = zfcp_get_port_by_wwpn(adapter, rport->port_name); |
| 121 | if (!port) |
| 122 | return -ENXIO; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 123 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 124 | unit = zfcp_unit_find(port, zfcp_scsi_dev_lun(sdev)); |
| 125 | if (unit) |
| 126 | put_device(&unit->dev); |
Christof Schmitt | f8210e3 | 2010-09-08 14:39:56 +0200 | [diff] [blame] | 127 | |
Christof Schmitt | 0d81b4e | 2010-12-08 17:30:46 +0100 | [diff] [blame] | 128 | if (!unit && !(allow_lun_scan && npiv)) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 129 | put_device(&port->dev); |
| 130 | return -ENXIO; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 131 | } |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 132 | |
| 133 | zfcp_sdev->port = port; |
| 134 | zfcp_sdev->latencies.write.channel.min = 0xFFFFFFFF; |
| 135 | zfcp_sdev->latencies.write.fabric.min = 0xFFFFFFFF; |
| 136 | zfcp_sdev->latencies.read.channel.min = 0xFFFFFFFF; |
| 137 | zfcp_sdev->latencies.read.fabric.min = 0xFFFFFFFF; |
| 138 | zfcp_sdev->latencies.cmd.channel.min = 0xFFFFFFFF; |
| 139 | zfcp_sdev->latencies.cmd.fabric.min = 0xFFFFFFFF; |
| 140 | spin_lock_init(&zfcp_sdev->latencies.lock); |
| 141 | |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 142 | zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_RUNNING); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 143 | zfcp_erp_lun_reopen(sdev, 0, "scsla_1"); |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 144 | zfcp_erp_wait(port->adapter); |
| 145 | |
| 146 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 149 | static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 151 | struct Scsi_Host *scsi_host = scpnt->device->host; |
| 152 | struct zfcp_adapter *adapter = |
| 153 | (struct zfcp_adapter *) scsi_host->hostdata[0]; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 154 | struct zfcp_fsf_req *old_req, *abrt_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | unsigned long flags; |
Christof Schmitt | a11a52b | 2009-07-13 15:06:14 +0200 | [diff] [blame] | 156 | unsigned long old_reqid = (unsigned long) scpnt->host_scribble; |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 157 | int retval = SUCCESS, ret; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 158 | int retry = 3; |
Christof Schmitt | a11a52b | 2009-07-13 15:06:14 +0200 | [diff] [blame] | 159 | char *dbf_tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 161 | /* avoid race condition between late normal completion and abort */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | write_lock_irqsave(&adapter->abort_lock, flags); |
| 163 | |
Christof Schmitt | b6bd2fb | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 164 | old_req = zfcp_reqlist_find(adapter->req_list, old_reqid); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 165 | if (!old_req) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | write_unlock_irqrestore(&adapter->abort_lock, flags); |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 167 | zfcp_dbf_scsi_abort("abrt_or", scpnt, NULL); |
Christof Schmitt | c6936e7 | 2009-04-17 15:08:11 +0200 | [diff] [blame] | 168 | return FAILED; /* completion could be in progress */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 170 | old_req->data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 172 | /* don't access old fsf_req after releasing the abort_lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | write_unlock_irqrestore(&adapter->abort_lock, flags); |
Andreas Herrmann | 4eff4a3 | 2006-09-18 22:29:20 +0200 | [diff] [blame] | 174 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 175 | while (retry--) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 176 | abrt_req = zfcp_fsf_abort_fcp_cmnd(scpnt); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 177 | if (abrt_req) |
| 178 | break; |
| 179 | |
| 180 | zfcp_erp_wait(adapter); |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 181 | ret = fc_block_scsi_eh(scpnt); |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 182 | if (ret) { |
| 183 | zfcp_dbf_scsi_abort("abrt_bl", scpnt, NULL); |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 184 | return ret; |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 185 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 186 | if (!(atomic_read(&adapter->status) & |
| 187 | ZFCP_STATUS_COMMON_RUNNING)) { |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 188 | zfcp_dbf_scsi_abort("abrt_ru", scpnt, NULL); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 189 | return SUCCESS; |
| 190 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 192 | if (!abrt_req) { |
| 193 | zfcp_dbf_scsi_abort("abrt_ar", scpnt, NULL); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 194 | return FAILED; |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Swen Schillig | 058b864 | 2009-08-18 15:43:14 +0200 | [diff] [blame] | 197 | wait_for_completion(&abrt_req->completion); |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 198 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 199 | if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED) |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 200 | dbf_tag = "abrt_ok"; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 201 | else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED) |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 202 | dbf_tag = "abrt_nn"; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 203 | else { |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 204 | dbf_tag = "abrt_fa"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | retval = FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 207 | zfcp_dbf_scsi_abort(dbf_tag, scpnt, abrt_req); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 208 | zfcp_fsf_req_free(abrt_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | return retval; |
| 210 | } |
| 211 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 212 | static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 214 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device); |
| 215 | struct zfcp_adapter *adapter = zfcp_sdev->port->adapter; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 216 | struct zfcp_fsf_req *fsf_req = NULL; |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 217 | int retval = SUCCESS, ret; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 218 | int retry = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 220 | while (retry--) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 221 | fsf_req = zfcp_fsf_fcp_task_mgmt(scpnt, tm_flags); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 222 | if (fsf_req) |
| 223 | break; |
| 224 | |
| 225 | zfcp_erp_wait(adapter); |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 226 | ret = fc_block_scsi_eh(scpnt); |
| 227 | if (ret) |
| 228 | return ret; |
| 229 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 230 | if (!(atomic_read(&adapter->status) & |
| 231 | ZFCP_STATUS_COMMON_RUNNING)) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 232 | zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags); |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 233 | return SUCCESS; |
| 234 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 236 | if (!fsf_req) |
| 237 | return FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Swen Schillig | 058b864 | 2009-08-18 15:43:14 +0200 | [diff] [blame] | 239 | wait_for_completion(&fsf_req->completion); |
Andreas Herrmann | 77eb169 | 2005-09-13 21:48:33 +0200 | [diff] [blame] | 240 | |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 241 | if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 242 | zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 243 | retval = FAILED; |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 244 | } else |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 245 | zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags); |
Andreas Herrmann | 77eb169 | 2005-09-13 21:48:33 +0200 | [diff] [blame] | 246 | |
| 247 | zfcp_fsf_req_free(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return retval; |
| 249 | } |
| 250 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 251 | static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt) |
| 252 | { |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 253 | return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt) |
| 257 | { |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 258 | return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 259 | } |
| 260 | |
Heiko Carstens | 2b67fc4 | 2007-02-05 21:16:47 +0100 | [diff] [blame] | 261 | static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 263 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device); |
| 264 | struct zfcp_adapter *adapter = zfcp_sdev->port->adapter; |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 265 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 267 | zfcp_erp_adapter_reopen(adapter, 0, "schrh_1"); |
Andreas Herrmann | 8165428 | 2006-09-18 22:30:36 +0200 | [diff] [blame] | 268 | zfcp_erp_wait(adapter); |
Christof Schmitt | a1dbfdd | 2010-03-24 16:50:31 +0100 | [diff] [blame] | 269 | ret = fc_block_scsi_eh(scpnt); |
| 270 | if (ret) |
| 271 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Andreas Herrmann | 810f1e3e | 2005-09-13 21:49:52 +0200 | [diff] [blame] | 273 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 276 | struct scsi_transport_template *zfcp_scsi_transport_template; |
| 277 | |
| 278 | static struct scsi_host_template zfcp_scsi_host_template = { |
| 279 | .module = THIS_MODULE, |
| 280 | .name = "zfcp", |
| 281 | .queuecommand = zfcp_scsi_queuecommand, |
| 282 | .eh_abort_handler = zfcp_scsi_eh_abort_handler, |
| 283 | .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler, |
| 284 | .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler, |
| 285 | .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler, |
| 286 | .slave_alloc = zfcp_scsi_slave_alloc, |
| 287 | .slave_configure = zfcp_scsi_slave_configure, |
| 288 | .slave_destroy = zfcp_scsi_slave_destroy, |
Christoph Hellwig | db5ed4d | 2014-11-13 15:08:42 +0100 | [diff] [blame] | 289 | .change_queue_depth = scsi_change_queue_depth, |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 290 | .proc_name = "zfcp", |
| 291 | .can_queue = 4096, |
| 292 | .this_id = -1, |
Steffen Maier | 5fea429 | 2013-04-26 17:33:45 +0200 | [diff] [blame] | 293 | .sg_tablesize = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1) |
| 294 | * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2), |
| 295 | /* GCD, adjusted later */ |
| 296 | .max_sectors = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1) |
| 297 | * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2) * 8, |
| 298 | /* GCD, adjusted later */ |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 299 | .dma_boundary = ZFCP_QDIO_SBALE_LEN - 1, |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 300 | .use_clustering = 1, |
| 301 | .shost_attrs = zfcp_sysfs_shost_attrs, |
| 302 | .sdev_attrs = zfcp_sysfs_sdev_attrs, |
Christoph Hellwig | c40ecc1 | 2014-11-13 14:25:11 +0100 | [diff] [blame] | 303 | .track_queue_depth = 1, |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 304 | }; |
| 305 | |
| 306 | /** |
| 307 | * zfcp_scsi_adapter_register - Register SCSI and FC host with SCSI midlayer |
| 308 | * @adapter: The zfcp adapter to register with the SCSI midlayer |
| 309 | */ |
| 310 | int zfcp_scsi_adapter_register(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 312 | struct ccw_dev_id dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 314 | if (adapter->scsi_host) |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 315 | return 0; |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 316 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 317 | ccw_device_get_id(adapter->ccw_device, &dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | /* register adapter as SCSI host with mid layer of SCSI stack */ |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 319 | adapter->scsi_host = scsi_host_alloc(&zfcp_scsi_host_template, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | sizeof (struct zfcp_adapter *)); |
| 321 | if (!adapter->scsi_host) { |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 322 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 323 | "Registering the FCP device with the " |
| 324 | "SCSI stack failed\n"); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 325 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
| 328 | /* tell the SCSI stack some characteristics of this adapter */ |
Christof Schmitt | f8210e3 | 2010-09-08 14:39:56 +0200 | [diff] [blame] | 329 | adapter->scsi_host->max_id = 511; |
| 330 | adapter->scsi_host->max_lun = 0xFFFFFFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | adapter->scsi_host->max_channel = 0; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 332 | adapter->scsi_host->unique_id = dev_id.devno; |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 333 | adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */ |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 334 | adapter->scsi_host->transportt = zfcp_scsi_transport_template; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | adapter->scsi_host->hostdata[0] = (unsigned long) adapter; |
| 337 | |
| 338 | if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) { |
| 339 | scsi_host_put(adapter->scsi_host); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 340 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 342 | |
| 343 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | |
Christof Schmitt | 1947c72 | 2011-02-22 19:54:46 +0100 | [diff] [blame] | 346 | /** |
| 347 | * zfcp_scsi_adapter_unregister - Unregister SCSI and FC host from SCSI midlayer |
| 348 | * @adapter: The zfcp adapter to unregister. |
| 349 | */ |
| 350 | void zfcp_scsi_adapter_unregister(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
| 352 | struct Scsi_Host *shost; |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 353 | struct zfcp_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | shost = adapter->scsi_host; |
| 356 | if (!shost) |
| 357 | return; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 358 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 359 | read_lock_irq(&adapter->port_list_lock); |
| 360 | list_for_each_entry(port, &adapter->port_list, list) |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 361 | port->rport = NULL; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 362 | read_unlock_irq(&adapter->port_list_lock); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 363 | |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 364 | fc_remove_host(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | scsi_remove_host(shost); |
| 366 | scsi_host_put(shost); |
| 367 | adapter->scsi_host = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 370 | static struct fc_host_statistics* |
| 371 | zfcp_init_fc_host_stats(struct zfcp_adapter *adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 373 | struct fc_host_statistics *fc_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 375 | if (!adapter->fc_stats) { |
| 376 | fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL); |
| 377 | if (!fc_stats) |
| 378 | return NULL; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 379 | adapter->fc_stats = fc_stats; /* freed in adapter_release */ |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 380 | } |
| 381 | memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats)); |
| 382 | return adapter->fc_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 385 | static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats, |
| 386 | struct fsf_qtcb_bottom_port *data, |
| 387 | struct fsf_qtcb_bottom_port *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 389 | fc_stats->seconds_since_last_reset = |
| 390 | data->seconds_since_last_reset - old->seconds_since_last_reset; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 391 | fc_stats->tx_frames = data->tx_frames - old->tx_frames; |
| 392 | fc_stats->tx_words = data->tx_words - old->tx_words; |
| 393 | fc_stats->rx_frames = data->rx_frames - old->rx_frames; |
| 394 | fc_stats->rx_words = data->rx_words - old->rx_words; |
| 395 | fc_stats->lip_count = data->lip - old->lip; |
| 396 | fc_stats->nos_count = data->nos - old->nos; |
| 397 | fc_stats->error_frames = data->error_frames - old->error_frames; |
| 398 | fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames; |
| 399 | fc_stats->link_failure_count = data->link_failure - old->link_failure; |
| 400 | fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 401 | fc_stats->loss_of_signal_count = |
| 402 | data->loss_of_signal - old->loss_of_signal; |
| 403 | fc_stats->prim_seq_protocol_err_count = |
| 404 | data->psp_error_counts - old->psp_error_counts; |
| 405 | fc_stats->invalid_tx_word_count = |
| 406 | data->invalid_tx_words - old->invalid_tx_words; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 407 | fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 408 | fc_stats->fcp_input_requests = |
| 409 | data->input_requests - old->input_requests; |
| 410 | fc_stats->fcp_output_requests = |
| 411 | data->output_requests - old->output_requests; |
| 412 | fc_stats->fcp_control_requests = |
| 413 | data->control_requests - old->control_requests; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 414 | fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb; |
| 415 | fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 418 | static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats, |
| 419 | struct fsf_qtcb_bottom_port *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | { |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 421 | fc_stats->seconds_since_last_reset = data->seconds_since_last_reset; |
| 422 | fc_stats->tx_frames = data->tx_frames; |
| 423 | fc_stats->tx_words = data->tx_words; |
| 424 | fc_stats->rx_frames = data->rx_frames; |
| 425 | fc_stats->rx_words = data->rx_words; |
| 426 | fc_stats->lip_count = data->lip; |
| 427 | fc_stats->nos_count = data->nos; |
| 428 | fc_stats->error_frames = data->error_frames; |
| 429 | fc_stats->dumped_frames = data->dumped_frames; |
| 430 | fc_stats->link_failure_count = data->link_failure; |
| 431 | fc_stats->loss_of_sync_count = data->loss_of_sync; |
| 432 | fc_stats->loss_of_signal_count = data->loss_of_signal; |
| 433 | fc_stats->prim_seq_protocol_err_count = data->psp_error_counts; |
| 434 | fc_stats->invalid_tx_word_count = data->invalid_tx_words; |
| 435 | fc_stats->invalid_crc_count = data->invalid_crcs; |
| 436 | fc_stats->fcp_input_requests = data->input_requests; |
| 437 | fc_stats->fcp_output_requests = data->output_requests; |
| 438 | fc_stats->fcp_control_requests = data->control_requests; |
| 439 | fc_stats->fcp_input_megabytes = data->input_mb; |
| 440 | fc_stats->fcp_output_megabytes = data->output_mb; |
| 441 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 443 | static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host) |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 444 | { |
| 445 | struct zfcp_adapter *adapter; |
| 446 | struct fc_host_statistics *fc_stats; |
| 447 | struct fsf_qtcb_bottom_port *data; |
| 448 | int ret; |
| 449 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 450 | adapter = (struct zfcp_adapter *)host->hostdata[0]; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 451 | fc_stats = zfcp_init_fc_host_stats(adapter); |
| 452 | if (!fc_stats) |
| 453 | return NULL; |
| 454 | |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 455 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 456 | if (!data) |
| 457 | return NULL; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 458 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 459 | ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 460 | if (ret) { |
| 461 | kfree(data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 462 | return NULL; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | if (adapter->stats_reset && |
| 466 | ((jiffies/HZ - adapter->stats_reset) < |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 467 | data->seconds_since_last_reset)) |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 468 | zfcp_adjust_fc_host_stats(fc_stats, data, |
| 469 | adapter->stats_reset_data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 470 | else |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 471 | zfcp_set_fc_host_stats(fc_stats, data); |
| 472 | |
| 473 | kfree(data); |
| 474 | return fc_stats; |
| 475 | } |
| 476 | |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 477 | static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost) |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 478 | { |
| 479 | struct zfcp_adapter *adapter; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 480 | struct fsf_qtcb_bottom_port *data; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 481 | int ret; |
| 482 | |
| 483 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 484 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 485 | if (!data) |
| 486 | return; |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 487 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 488 | ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 489 | if (ret) |
Heiko Carstens | 83f6d6d | 2007-08-08 10:47:02 +0200 | [diff] [blame] | 490 | kfree(data); |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 491 | else { |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 492 | adapter->stats_reset = jiffies/HZ; |
Martin Petermann | f76af7d7 | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 493 | kfree(adapter->stats_reset_data); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 494 | adapter->stats_reset_data = data; /* finally freed in |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 495 | adapter_release */ |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 496 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | |
Sven Schuetz | 85a8239 | 2008-06-10 18:20:59 +0200 | [diff] [blame] | 499 | static void zfcp_get_host_port_state(struct Scsi_Host *shost) |
| 500 | { |
| 501 | struct zfcp_adapter *adapter = |
| 502 | (struct zfcp_adapter *)shost->hostdata[0]; |
| 503 | int status = atomic_read(&adapter->status); |
| 504 | |
| 505 | if ((status & ZFCP_STATUS_COMMON_RUNNING) && |
| 506 | !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)) |
| 507 | fc_host_port_state(shost) = FC_PORTSTATE_ONLINE; |
| 508 | else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED) |
| 509 | fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN; |
| 510 | else if (status & ZFCP_STATUS_COMMON_ERP_FAILED) |
| 511 | fc_host_port_state(shost) = FC_PORTSTATE_ERROR; |
| 512 | else |
| 513 | fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN; |
| 514 | } |
| 515 | |
Andreas Herrmann | 338151e | 2006-05-22 18:25:56 +0200 | [diff] [blame] | 516 | static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout) |
| 517 | { |
| 518 | rport->dev_loss_tmo = timeout; |
| 519 | } |
| 520 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 521 | /** |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 522 | * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport |
| 523 | * @rport: The FC rport where to teminate I/O |
| 524 | * |
| 525 | * Abort all pending SCSI commands for a port by closing the |
Christof Schmitt | 835dc29 | 2010-07-08 09:53:08 +0200 | [diff] [blame] | 526 | * port. Using a reopen avoids a conflict with a shutdown |
| 527 | * overwriting a reopen. The "forced" ensures that a disappeared port |
| 528 | * is not opened again as valid due to the cached plogi data in |
| 529 | * non-NPIV mode. |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 530 | */ |
| 531 | static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport) |
| 532 | { |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 533 | struct zfcp_port *port; |
Swen Schillig | ea945ff | 2009-08-18 15:43:24 +0200 | [diff] [blame] | 534 | struct Scsi_Host *shost = rport_to_shost(rport); |
| 535 | struct zfcp_adapter *adapter = |
| 536 | (struct zfcp_adapter *)shost->hostdata[0]; |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 537 | |
Swen Schillig | ea945ff | 2009-08-18 15:43:24 +0200 | [diff] [blame] | 538 | port = zfcp_get_port_by_wwpn(adapter, rport->port_name); |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 539 | |
| 540 | if (port) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 541 | zfcp_erp_port_forced_reopen(port, 0, "sctrpi1"); |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 542 | put_device(&port->dev); |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 543 | } |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | static void zfcp_scsi_rport_register(struct zfcp_port *port) |
| 547 | { |
| 548 | struct fc_rport_identifiers ids; |
| 549 | struct fc_rport *rport; |
| 550 | |
Christof Schmitt | 379d6bf | 2009-07-13 15:06:11 +0200 | [diff] [blame] | 551 | if (port->rport) |
| 552 | return; |
| 553 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 554 | ids.node_name = port->wwnn; |
| 555 | ids.port_name = port->wwpn; |
| 556 | ids.port_id = port->d_id; |
| 557 | ids.roles = FC_RPORT_ROLE_FCP_TARGET; |
| 558 | |
| 559 | rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids); |
| 560 | if (!rport) { |
| 561 | dev_err(&port->adapter->ccw_device->dev, |
| 562 | "Registering port 0x%016Lx failed\n", |
| 563 | (unsigned long long)port->wwpn); |
| 564 | return; |
| 565 | } |
| 566 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 567 | rport->maxframe_size = port->maxframe_size; |
| 568 | rport->supported_classes = port->supported_classes; |
| 569 | port->rport = rport; |
Christof Schmitt | 1bf3ff0 | 2010-07-16 15:37:35 +0200 | [diff] [blame] | 570 | port->starget_id = rport->scsi_target_id; |
Christof Schmitt | 5a7de55 | 2010-07-08 09:53:07 +0200 | [diff] [blame] | 571 | |
Christof Schmitt | 1daa4eb | 2010-09-08 14:39:52 +0200 | [diff] [blame] | 572 | zfcp_unit_queue_scsi_scan(port); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | static void zfcp_scsi_rport_block(struct zfcp_port *port) |
| 576 | { |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 577 | struct fc_rport *rport = port->rport; |
| 578 | |
Christof Schmitt | 379d6bf | 2009-07-13 15:06:11 +0200 | [diff] [blame] | 579 | if (rport) { |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 580 | fc_remote_port_delete(rport); |
Christof Schmitt | 379d6bf | 2009-07-13 15:06:11 +0200 | [diff] [blame] | 581 | port->rport = NULL; |
| 582 | } |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | void zfcp_scsi_schedule_rport_register(struct zfcp_port *port) |
| 586 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 587 | get_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 588 | port->rport_task = RPORT_ADD; |
| 589 | |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 590 | if (!queue_work(port->adapter->work_queue, &port->rport_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 591 | put_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | void zfcp_scsi_schedule_rport_block(struct zfcp_port *port) |
| 595 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 596 | get_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 597 | port->rport_task = RPORT_DEL; |
| 598 | |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 599 | if (port->rport && queue_work(port->adapter->work_queue, |
| 600 | &port->rport_work)) |
Swen Schillig | a67417a | 2009-08-18 15:43:06 +0200 | [diff] [blame] | 601 | return; |
| 602 | |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 603 | put_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter) |
| 607 | { |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 608 | unsigned long flags; |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 609 | struct zfcp_port *port; |
| 610 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 611 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 612 | list_for_each_entry(port, &adapter->port_list, list) |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 613 | zfcp_scsi_schedule_rport_block(port); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 614 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | void zfcp_scsi_rport_work(struct work_struct *work) |
| 618 | { |
| 619 | struct zfcp_port *port = container_of(work, struct zfcp_port, |
| 620 | rport_work); |
| 621 | |
| 622 | while (port->rport_task) { |
| 623 | if (port->rport_task == RPORT_ADD) { |
| 624 | port->rport_task = RPORT_NONE; |
| 625 | zfcp_scsi_rport_register(port); |
| 626 | } else { |
| 627 | port->rport_task = RPORT_NONE; |
| 628 | zfcp_scsi_rport_block(port); |
| 629 | } |
| 630 | } |
| 631 | |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 632 | put_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 633 | } |
| 634 | |
Christof Schmitt | 5a7de55 | 2010-07-08 09:53:07 +0200 | [diff] [blame] | 635 | /** |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 636 | * zfcp_scsi_set_prot - Configure DIF/DIX support in scsi_host |
| 637 | * @adapter: The adapter where to configure DIF/DIX for the SCSI host |
| 638 | */ |
| 639 | void zfcp_scsi_set_prot(struct zfcp_adapter *adapter) |
| 640 | { |
| 641 | unsigned int mask = 0; |
| 642 | unsigned int data_div; |
| 643 | struct Scsi_Host *shost = adapter->scsi_host; |
| 644 | |
| 645 | data_div = atomic_read(&adapter->status) & |
| 646 | ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED; |
| 647 | |
| 648 | if (enable_dif && |
| 649 | adapter->adapter_features & FSF_FEATURE_DIF_PROT_TYPE1) |
| 650 | mask |= SHOST_DIF_TYPE1_PROTECTION; |
| 651 | |
| 652 | if (enable_dif && data_div && |
| 653 | adapter->adapter_features & FSF_FEATURE_DIX_PROT_TCPIP) { |
| 654 | mask |= SHOST_DIX_TYPE1_PROTECTION; |
| 655 | scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP); |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 656 | shost->sg_prot_tablesize = adapter->qdio->max_sbale_per_req / 2; |
| 657 | shost->sg_tablesize = adapter->qdio->max_sbale_per_req / 2; |
| 658 | shost->max_sectors = shost->sg_tablesize * 8; |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 659 | } |
| 660 | |
| 661 | scsi_host_set_prot(shost, mask); |
| 662 | } |
| 663 | |
| 664 | /** |
| 665 | * zfcp_scsi_dif_sense_error - Report DIF/DIX error as driver sense error |
| 666 | * @scmd: The SCSI command to report the error for |
| 667 | * @ascq: The ASCQ to put in the sense buffer |
| 668 | * |
| 669 | * See the error handling in sd_done for the sense codes used here. |
| 670 | * Set DID_SOFT_ERROR to retry the request, if possible. |
| 671 | */ |
| 672 | void zfcp_scsi_dif_sense_error(struct scsi_cmnd *scmd, int ascq) |
| 673 | { |
| 674 | scsi_build_sense_buffer(1, scmd->sense_buffer, |
| 675 | ILLEGAL_REQUEST, 0x10, ascq); |
| 676 | set_driver_byte(scmd, DRIVER_SENSE); |
| 677 | scmd->result |= SAM_STAT_CHECK_CONDITION; |
| 678 | set_host_byte(scmd, DID_SOFT_ERROR); |
| 679 | } |
| 680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | struct fc_function_template zfcp_transport_functions = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | .show_starget_port_id = 1, |
| 683 | .show_starget_port_name = 1, |
| 684 | .show_starget_node_name = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 685 | .show_rport_supported_classes = 1, |
Ralph Wuerthner | 75bfc28 | 2006-05-22 18:24:33 +0200 | [diff] [blame] | 686 | .show_rport_maxframe_size = 1, |
Andreas Herrmann | 338151e | 2006-05-22 18:25:56 +0200 | [diff] [blame] | 687 | .show_rport_dev_loss_tmo = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 688 | .show_host_node_name = 1, |
| 689 | .show_host_port_name = 1, |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 690 | .show_host_permanent_port_name = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 691 | .show_host_supported_classes = 1, |
Christof Schmitt | 0fdd213 | 2009-11-24 16:54:17 +0100 | [diff] [blame] | 692 | .show_host_supported_fc4s = 1, |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 693 | .show_host_supported_speeds = 1, |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 694 | .show_host_maxframe_size = 1, |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 695 | .show_host_serial_number = 1, |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 696 | .get_fc_host_stats = zfcp_get_fc_host_stats, |
| 697 | .reset_fc_host_stats = zfcp_reset_fc_host_stats, |
Andreas Herrmann | 338151e | 2006-05-22 18:25:56 +0200 | [diff] [blame] | 698 | .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo, |
Sven Schuetz | 85a8239 | 2008-06-10 18:20:59 +0200 | [diff] [blame] | 699 | .get_host_port_state = zfcp_get_host_port_state, |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 700 | .terminate_rport_io = zfcp_scsi_terminate_rport_io, |
Sven Schuetz | 85a8239 | 2008-06-10 18:20:59 +0200 | [diff] [blame] | 701 | .show_host_port_state = 1, |
Christof Schmitt | 0fdd213 | 2009-11-24 16:54:17 +0100 | [diff] [blame] | 702 | .show_host_active_fc4s = 1, |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 703 | .bsg_request = zfcp_fc_exec_bsg_job, |
Swen Schillig | 491ca44 | 2010-01-14 17:19:01 +0100 | [diff] [blame] | 704 | .bsg_timeout = zfcp_fc_timeout_bsg_job, |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 705 | /* no functions registered for following dynamic attributes but |
| 706 | directly set by LLDD */ |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 707 | .show_host_port_type = 1, |
Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 708 | .show_host_symbolic_name = 1, |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 709 | .show_host_speed = 1, |
| 710 | .show_host_port_id = 1, |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 711 | .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | }; |