Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * FiberChannel transport specific attributes exported to sysfs. |
| 4 | * |
| 5 | * Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved. |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 6 | * Copyright (C) 2004-2007 James Smart, Emulex Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Rewrite for host, target, device, and remote port attributes, |
| 8 | * statistics, and service functions... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | #ifndef SCSI_TRANSPORT_FC_H |
| 11 | #define SCSI_TRANSPORT_FC_H |
| 12 | |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 13 | #include <linux/sched.h> |
Johannes Thumshirn | eb34094 | 2016-11-17 10:31:11 +0100 | [diff] [blame] | 14 | #include <linux/bsg-lib.h> |
Arnd Bergmann | ef3fb24 | 2016-03-16 17:39:17 +0100 | [diff] [blame] | 15 | #include <asm/unaligned.h> |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 16 | #include <scsi/scsi.h> |
James Smart | 84314fd | 2006-08-18 17:30:09 -0400 | [diff] [blame] | 17 | #include <scsi/scsi_netlink.h> |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 18 | #include <scsi/scsi_host.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | struct scsi_transport_template; |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | /* |
| 23 | * FC Port definitions - Following FC HBAAPI guidelines |
| 24 | * |
| 25 | * Note: Not all binary values for the different fields match HBAAPI. |
| 26 | * Instead, we use densely packed ordinal values or enums. |
| 27 | * We get away with this as we never present the actual binary values |
| 28 | * externally. For sysfs, we always present the string that describes |
| 29 | * the value. Thus, an admin doesn't need a magic HBAAPI decoder ring |
| 30 | * to understand the values. The HBAAPI user-space library is free to |
| 31 | * convert the strings into the HBAAPI-specified binary values. |
| 32 | * |
| 33 | * Note: Not all HBAAPI-defined values are contained in the definitions |
| 34 | * below. Those not appropriate to an fc_host (e.g. FCP initiator) have |
| 35 | * been removed. |
| 36 | */ |
| 37 | |
| 38 | /* |
| 39 | * fc_port_type: If you alter this, you also need to alter scsi_transport_fc.c |
| 40 | * (for the ascii descriptions). |
| 41 | */ |
| 42 | enum fc_port_type { |
| 43 | FC_PORTTYPE_UNKNOWN, |
| 44 | FC_PORTTYPE_OTHER, |
| 45 | FC_PORTTYPE_NOTPRESENT, |
| 46 | FC_PORTTYPE_NPORT, /* Attached to FPort */ |
| 47 | FC_PORTTYPE_NLPORT, /* (Public) Loop w/ FLPort */ |
| 48 | FC_PORTTYPE_LPORT, /* (Private) Loop w/o FLPort */ |
| 49 | FC_PORTTYPE_PTP, /* Point to Point w/ another NPort */ |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 50 | FC_PORTTYPE_NPIV, /* VPORT based on NPIV */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* |
| 55 | * fc_port_state: If you alter this, you also need to alter scsi_transport_fc.c |
| 56 | * (for the ascii descriptions). |
| 57 | */ |
| 58 | enum fc_port_state { |
| 59 | FC_PORTSTATE_UNKNOWN, |
| 60 | FC_PORTSTATE_NOTPRESENT, |
| 61 | FC_PORTSTATE_ONLINE, |
| 62 | FC_PORTSTATE_OFFLINE, /* User has taken Port Offline */ |
| 63 | FC_PORTSTATE_BLOCKED, |
| 64 | FC_PORTSTATE_BYPASSED, |
| 65 | FC_PORTSTATE_DIAGNOSTICS, |
| 66 | FC_PORTSTATE_LINKDOWN, |
| 67 | FC_PORTSTATE_ERROR, |
| 68 | FC_PORTSTATE_LOOPBACK, |
James.Smart@Emulex.Com | 42e3314 | 2005-12-15 09:56:22 -0500 | [diff] [blame] | 69 | FC_PORTSTATE_DELETED, |
Muneendra Kumar | 02c6632 | 2021-01-07 03:19:06 +0530 | [diff] [blame] | 70 | FC_PORTSTATE_MARGINAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 74 | /* |
| 75 | * fc_vport_state: If you alter this, you also need to alter |
| 76 | * scsi_transport_fc.c (for the ascii descriptions). |
| 77 | */ |
| 78 | enum fc_vport_state { |
| 79 | FC_VPORT_UNKNOWN, |
| 80 | FC_VPORT_ACTIVE, |
| 81 | FC_VPORT_DISABLED, |
| 82 | FC_VPORT_LINKDOWN, |
| 83 | FC_VPORT_INITIALIZING, |
| 84 | FC_VPORT_NO_FABRIC_SUPP, |
| 85 | FC_VPORT_NO_FABRIC_RSCS, |
| 86 | FC_VPORT_FABRIC_LOGOUT, |
| 87 | FC_VPORT_FABRIC_REJ_WWN, |
| 88 | FC_VPORT_FAILED, |
| 89 | }; |
| 90 | |
| 91 | |
| 92 | |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 93 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | * FC Classes of Service |
| 95 | * Note: values are not enumerated, as they can be "or'd" together |
| 96 | * for reporting (e.g. report supported_classes). If you alter this list, |
| 97 | * you also need to alter scsi_transport_fc.c (for the ascii descriptions). |
| 98 | */ |
| 99 | #define FC_COS_UNSPECIFIED 0 |
| 100 | #define FC_COS_CLASS1 2 |
| 101 | #define FC_COS_CLASS2 4 |
| 102 | #define FC_COS_CLASS3 8 |
| 103 | #define FC_COS_CLASS4 0x10 |
| 104 | #define FC_COS_CLASS6 0x40 |
| 105 | |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 106 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | * FC Port Speeds |
| 108 | * Note: values are not enumerated, as they can be "or'd" together |
| 109 | * for reporting (e.g. report supported_speeds). If you alter this list, |
| 110 | * you also need to alter scsi_transport_fc.c (for the ascii descriptions). |
| 111 | */ |
| 112 | #define FC_PORTSPEED_UNKNOWN 0 /* Unknown - transceiver |
| 113 | incapable of reporting */ |
| 114 | #define FC_PORTSPEED_1GBIT 1 |
| 115 | #define FC_PORTSPEED_2GBIT 2 |
Neerav Parikh | a9277e7 | 2012-01-22 17:29:55 -0800 | [diff] [blame] | 116 | #define FC_PORTSPEED_10GBIT 4 |
| 117 | #define FC_PORTSPEED_4GBIT 8 |
James Smart | c3d2350 | 2007-03-12 14:16:35 -0500 | [diff] [blame] | 118 | #define FC_PORTSPEED_8GBIT 0x10 |
| 119 | #define FC_PORTSPEED_16GBIT 0x20 |
Chad Dupuis | 624f28b | 2014-02-26 04:15:05 -0500 | [diff] [blame] | 120 | #define FC_PORTSPEED_32GBIT 0x40 |
Dick Kennedy | c21a2c1 | 2014-06-13 16:40:36 +0000 | [diff] [blame] | 121 | #define FC_PORTSPEED_20GBIT 0x80 |
| 122 | #define FC_PORTSPEED_40GBIT 0x100 |
| 123 | #define FC_PORTSPEED_50GBIT 0x200 |
| 124 | #define FC_PORTSPEED_100GBIT 0x400 |
James Smart | c749e6b | 2015-04-02 15:50:52 -0400 | [diff] [blame] | 125 | #define FC_PORTSPEED_25GBIT 0x800 |
James Smart | cc019a5 | 2017-12-21 14:25:52 -0800 | [diff] [blame] | 126 | #define FC_PORTSPEED_64GBIT 0x1000 |
| 127 | #define FC_PORTSPEED_128GBIT 0x2000 |
James Smart | 2a5c98d | 2020-08-31 14:35:18 -0700 | [diff] [blame] | 128 | #define FC_PORTSPEED_256GBIT 0x4000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | #define FC_PORTSPEED_NOT_NEGOTIATED (1 << 15) /* Speed not established */ |
| 130 | |
| 131 | /* |
| 132 | * fc_tgtid_binding_type: If you alter this, you also need to alter |
| 133 | * scsi_transport_fc.c (for the ascii descriptions). |
| 134 | */ |
| 135 | enum fc_tgtid_binding_type { |
| 136 | FC_TGTID_BIND_NONE, |
| 137 | FC_TGTID_BIND_BY_WWPN, |
| 138 | FC_TGTID_BIND_BY_WWNN, |
| 139 | FC_TGTID_BIND_BY_ID, |
| 140 | }; |
| 141 | |
| 142 | /* |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 143 | * FC Port Roles |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | * Note: values are not enumerated, as they can be "or'd" together |
| 145 | * for reporting (e.g. report roles). If you alter this list, |
| 146 | * you also need to alter scsi_transport_fc.c (for the ascii descriptions). |
| 147 | */ |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 148 | #define FC_PORT_ROLE_UNKNOWN 0x00 |
| 149 | #define FC_PORT_ROLE_FCP_TARGET 0x01 |
| 150 | #define FC_PORT_ROLE_FCP_INITIATOR 0x02 |
| 151 | #define FC_PORT_ROLE_IP_PORT 0x04 |
Cathy Avery | 0c3ae26 | 2017-04-17 14:37:45 -0400 | [diff] [blame] | 152 | #define FC_PORT_ROLE_FCP_DUMMY_INITIATOR 0x08 |
Hannes Reinecke | a6a6d05 | 2019-04-10 16:16:19 +0200 | [diff] [blame] | 153 | #define FC_PORT_ROLE_NVME_INITIATOR 0x10 |
| 154 | #define FC_PORT_ROLE_NVME_TARGET 0x20 |
| 155 | #define FC_PORT_ROLE_NVME_DISCOVERY 0x40 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 157 | /* The following are for compatibility */ |
| 158 | #define FC_RPORT_ROLE_UNKNOWN FC_PORT_ROLE_UNKNOWN |
| 159 | #define FC_RPORT_ROLE_FCP_TARGET FC_PORT_ROLE_FCP_TARGET |
| 160 | #define FC_RPORT_ROLE_FCP_INITIATOR FC_PORT_ROLE_FCP_INITIATOR |
| 161 | #define FC_RPORT_ROLE_IP_PORT FC_PORT_ROLE_IP_PORT |
| 162 | |
| 163 | |
| 164 | /* Macro for use in defining Virtual Port attributes */ |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 165 | #define FC_VPORT_ATTR(_name,_mode,_show,_store) \ |
| 166 | struct device_attribute dev_attr_vport_##_name = \ |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 167 | __ATTR(_name,_mode,_show,_store) |
| 168 | |
Andrew Vasquez | a30c3f6 | 2008-07-18 08:32:52 -0700 | [diff] [blame] | 169 | /* |
| 170 | * fc_vport_identifiers: This set of data contains all elements |
| 171 | * to uniquely identify and instantiate a FC virtual port. |
| 172 | * |
| 173 | * Notes: |
| 174 | * symbolic_name: The driver is to append the symbolic_name string data |
| 175 | * to the symbolic_node_name data that it generates by default. |
| 176 | * the resulting combination should then be registered with the switch. |
| 177 | * It is expected that things like Xen may stuff a VM title into |
| 178 | * this field. |
| 179 | */ |
| 180 | #define FC_VPORT_SYMBOLIC_NAMELEN 64 |
| 181 | struct fc_vport_identifiers { |
| 182 | u64 node_name; |
| 183 | u64 port_name; |
| 184 | u32 roles; |
| 185 | bool disable; |
| 186 | enum fc_port_type vport_type; /* only FC_PORTTYPE_NPIV allowed */ |
| 187 | char symbolic_name[FC_VPORT_SYMBOLIC_NAMELEN]; |
| 188 | }; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 189 | |
| 190 | /* |
| 191 | * FC Virtual Port Attributes |
| 192 | * |
| 193 | * This structure exists for each FC port is a virtual FC port. Virtual |
| 194 | * ports share the physical link with the Physical port. Each virtual |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 195 | * ports has a unique presence on the SAN, and may be instantiated via |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 196 | * NPIV, Virtual Fabrics, or via additional ALPAs. As the vport is a |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 197 | * unique presence, each vport has it's own view of the fabric, |
Joe Perches | 1e4478c | 2008-02-03 17:47:00 +0200 | [diff] [blame] | 198 | * authentication privilege, and priorities. |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 199 | * |
| 200 | * A virtual port may support 1 or more FC4 roles. Typically it is a |
| 201 | * FCP Initiator. It could be a FCP Target, or exist sole for an IP over FC |
| 202 | * roles. FC port attributes for the vport will be reported on any |
| 203 | * fc_host class object allocated for an FCP Initiator. |
| 204 | * |
| 205 | * -- |
| 206 | * |
| 207 | * Fixed attributes are not expected to change. The driver is |
| 208 | * expected to set these values after receiving the fc_vport structure |
| 209 | * via the vport_create() call from the transport. |
| 210 | * The transport fully manages all get functions w/o driver interaction. |
| 211 | * |
| 212 | * Dynamic attributes are expected to change. The driver participates |
| 213 | * in all get/set operations via functions provided by the driver. |
| 214 | * |
| 215 | * Private attributes are transport-managed values. They are fully |
| 216 | * managed by the transport w/o driver interaction. |
| 217 | */ |
| 218 | |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 219 | struct fc_vport { |
| 220 | /* Fixed Attributes */ |
| 221 | |
| 222 | /* Dynamic Attributes */ |
| 223 | |
| 224 | /* Private (Transport-managed) Attributes */ |
| 225 | enum fc_vport_state vport_state; |
| 226 | enum fc_vport_state vport_last_state; |
| 227 | u64 node_name; |
| 228 | u64 port_name; |
| 229 | u32 roles; |
| 230 | u32 vport_id; /* Admin Identifier for the vport */ |
| 231 | enum fc_port_type vport_type; |
| 232 | char symbolic_name[FC_VPORT_SYMBOLIC_NAMELEN]; |
| 233 | |
| 234 | /* exported data */ |
| 235 | void *dd_data; /* Used for driver-specific storage */ |
| 236 | |
| 237 | /* internal data */ |
| 238 | struct Scsi_Host *shost; /* Physical Port Parent */ |
| 239 | unsigned int channel; |
| 240 | u32 number; |
| 241 | u8 flags; |
| 242 | struct list_head peers; |
| 243 | struct device dev; |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 244 | struct work_struct vport_delete_work; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 245 | } __attribute__((aligned(sizeof(unsigned long)))); |
| 246 | |
| 247 | /* bit field values for struct fc_vport "flags" field: */ |
| 248 | #define FC_VPORT_CREATING 0x01 |
| 249 | #define FC_VPORT_DELETING 0x02 |
| 250 | #define FC_VPORT_DELETED 0x04 |
| 251 | #define FC_VPORT_DEL 0x06 /* Any DELETE state */ |
| 252 | |
| 253 | #define dev_to_vport(d) \ |
| 254 | container_of(d, struct fc_vport, dev) |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 255 | #define transport_class_to_vport(dev) \ |
| 256 | dev_to_vport(dev->parent) |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 257 | #define vport_to_shost(v) \ |
| 258 | (v->shost) |
| 259 | #define vport_to_shost_channel(v) \ |
| 260 | (v->channel) |
| 261 | #define vport_to_parent(v) \ |
| 262 | (v->dev.parent) |
| 263 | |
| 264 | |
| 265 | /* Error return codes for vport_create() callback */ |
| 266 | #define VPCERR_UNSUPPORTED -ENOSYS /* no driver/adapter |
| 267 | support */ |
| 268 | #define VPCERR_BAD_WWN -ENOTUNIQ /* driver validation |
| 269 | of WWNs failed */ |
| 270 | #define VPCERR_NO_FABRIC_SUPP -EOPNOTSUPP /* Fabric connection |
| 271 | is loop or the |
| 272 | Fabric Port does |
| 273 | not support NPIV */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
| 275 | /* |
| 276 | * fc_rport_identifiers: This set of data contains all elements |
| 277 | * to uniquely identify a remote FC port. The driver uses this data |
| 278 | * to report the existence of a remote FC port in the topology. Internally, |
| 279 | * the transport uses this data for attributes and to manage consistent |
| 280 | * target id bindings. |
| 281 | */ |
| 282 | struct fc_rport_identifiers { |
| 283 | u64 node_name; |
| 284 | u64 port_name; |
| 285 | u32 port_id; |
| 286 | u32 roles; |
| 287 | }; |
| 288 | |
Shyam Sundar | 547aab5 | 2020-10-21 02:27:12 -0700 | [diff] [blame] | 289 | /* |
| 290 | * Fabric Performance Impact Notification Statistics |
| 291 | */ |
| 292 | struct fc_fpin_stats { |
| 293 | /* Delivery */ |
| 294 | u64 dn; |
| 295 | u64 dn_unknown; |
| 296 | u64 dn_timeout; |
| 297 | u64 dn_unable_to_route; |
| 298 | u64 dn_device_specific; |
| 299 | |
| 300 | /* Link Integrity */ |
| 301 | u64 li; |
| 302 | u64 li_failure_unknown; |
| 303 | u64 li_link_failure_count; |
| 304 | u64 li_loss_of_sync_count; |
| 305 | u64 li_loss_of_signals_count; |
| 306 | u64 li_prim_seq_err_count; |
| 307 | u64 li_invalid_tx_word_count; |
| 308 | u64 li_invalid_crc_count; |
| 309 | u64 li_device_specific; |
| 310 | |
| 311 | /* Congestion/Peer Congestion */ |
| 312 | u64 cn; |
| 313 | u64 cn_clear; |
| 314 | u64 cn_lost_credit; |
| 315 | u64 cn_credit_stall; |
| 316 | u64 cn_oversubscription; |
| 317 | u64 cn_device_specific; |
| 318 | }; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | /* Macro for use in defining Remote Port attributes */ |
| 321 | #define FC_RPORT_ATTR(_name,_mode,_show,_store) \ |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 322 | struct device_attribute dev_attr_rport_##_name = \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | __ATTR(_name,_mode,_show,_store) |
| 324 | |
| 325 | |
| 326 | /* |
| 327 | * FC Remote Port Attributes |
| 328 | * |
| 329 | * This structure exists for each remote FC port that a LLDD notifies |
| 330 | * the subsystem of. A remote FC port may or may not be a SCSI Target, |
| 331 | * also be a SCSI initiator, IP endpoint, etc. As such, the remote |
| 332 | * port is considered a separate entity, independent of "role" (such |
| 333 | * as scsi target). |
| 334 | * |
| 335 | * -- |
| 336 | * |
| 337 | * Attributes are based on HBAAPI V2.0 definitions. Only those |
| 338 | * attributes that are determinable by the local port (aka Host) |
| 339 | * are contained. |
| 340 | * |
| 341 | * Fixed attributes are not expected to change. The driver is |
| 342 | * expected to set these values after successfully calling |
| 343 | * fc_remote_port_add(). The transport fully manages all get functions |
| 344 | * w/o driver interaction. |
| 345 | * |
| 346 | * Dynamic attributes are expected to change. The driver participates |
| 347 | * in all get/set operations via functions provided by the driver. |
| 348 | * |
| 349 | * Private attributes are transport-managed values. They are fully |
| 350 | * managed by the transport w/o driver interaction. |
| 351 | */ |
| 352 | |
| 353 | struct fc_rport { /* aka fc_starget_attrs */ |
| 354 | /* Fixed Attributes */ |
| 355 | u32 maxframe_size; |
| 356 | u32 supported_classes; |
| 357 | |
| 358 | /* Dynamic Attributes */ |
| 359 | u32 dev_loss_tmo; /* Remote Port loss timeout in seconds. */ |
Shyam Sundar | 547aab5 | 2020-10-21 02:27:12 -0700 | [diff] [blame] | 360 | struct fc_fpin_stats fpin_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | /* Private (Transport-managed) Attributes */ |
| 363 | u64 node_name; |
| 364 | u64 port_name; |
| 365 | u32 port_id; |
| 366 | u32 roles; |
| 367 | enum fc_port_state port_state; /* Will only be ONLINE or UNKNOWN */ |
| 368 | u32 scsi_target_id; |
James Smart | 0f29b96 | 2006-08-18 17:33:29 -0400 | [diff] [blame] | 369 | u32 fast_io_fail_tmo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | /* exported data */ |
| 372 | void *dd_data; /* Used for driver-specific storage */ |
| 373 | |
| 374 | /* internal data */ |
| 375 | unsigned int channel; |
| 376 | u32 number; |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 377 | u8 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | struct list_head peers; |
| 379 | struct device dev; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 380 | struct delayed_work dev_loss_work; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | struct work_struct scan_work; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 382 | struct delayed_work fail_io_work; |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 383 | struct work_struct stgt_delete_work; |
| 384 | struct work_struct rport_delete_work; |
James Smart | 9e4f5e2 | 2009-03-26 13:33:19 -0400 | [diff] [blame] | 385 | struct request_queue *rqst_q; /* bsg support */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } __attribute__((aligned(sizeof(unsigned long)))); |
| 387 | |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 388 | /* bit field values for struct fc_rport "flags" field: */ |
| 389 | #define FC_RPORT_DEVLOSS_PENDING 0x01 |
| 390 | #define FC_RPORT_SCAN_PENDING 0x02 |
James Smart | 21098c6 | 2008-11-20 10:58:01 -0500 | [diff] [blame] | 391 | #define FC_RPORT_FAST_FAIL_TIMEDOUT 0x04 |
James Smart | 4be98c0 | 2009-01-05 12:14:18 -0500 | [diff] [blame] | 392 | #define FC_RPORT_DEVLOSS_CALLBK_DONE 0x08 |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | #define dev_to_rport(d) \ |
| 395 | container_of(d, struct fc_rport, dev) |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 396 | #define transport_class_to_rport(dev) \ |
| 397 | dev_to_rport(dev->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | #define rport_to_shost(r) \ |
| 399 | dev_to_shost(r->dev.parent) |
| 400 | |
| 401 | /* |
| 402 | * FC SCSI Target Attributes |
| 403 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 404 | * The SCSI Target is considered an extension of a remote port (as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | * a remote port can be more than a SCSI Target). Within the scsi |
| 406 | * subsystem, we leave the Target as a separate entity. Doing so |
| 407 | * provides backward compatibility with prior FC transport api's, |
| 408 | * and lets remote ports be handled entirely within the FC transport |
| 409 | * and independently from the scsi subsystem. The drawback is that |
| 410 | * some data will be duplicated. |
| 411 | */ |
| 412 | |
| 413 | struct fc_starget_attrs { /* aka fc_target_attrs */ |
| 414 | /* Dynamic Attributes */ |
| 415 | u64 node_name; |
| 416 | u64 port_name; |
| 417 | u32 port_id; |
| 418 | }; |
| 419 | |
| 420 | #define fc_starget_node_name(x) \ |
| 421 | (((struct fc_starget_attrs *)&(x)->starget_data)->node_name) |
| 422 | #define fc_starget_port_name(x) \ |
| 423 | (((struct fc_starget_attrs *)&(x)->starget_data)->port_name) |
| 424 | #define fc_starget_port_id(x) \ |
| 425 | (((struct fc_starget_attrs *)&(x)->starget_data)->port_id) |
| 426 | |
| 427 | #define starget_to_rport(s) \ |
| 428 | scsi_is_fc_rport(s->dev.parent) ? dev_to_rport(s->dev.parent) : NULL |
| 429 | |
| 430 | |
| 431 | /* |
| 432 | * FC Local Port (Host) Statistics |
| 433 | */ |
| 434 | |
| 435 | /* FC Statistics - Following FC HBAAPI v2.0 guidelines */ |
| 436 | struct fc_host_statistics { |
| 437 | /* port statistics */ |
| 438 | u64 seconds_since_last_reset; |
| 439 | u64 tx_frames; |
| 440 | u64 tx_words; |
| 441 | u64 rx_frames; |
| 442 | u64 rx_words; |
| 443 | u64 lip_count; |
| 444 | u64 nos_count; |
| 445 | u64 error_frames; |
| 446 | u64 dumped_frames; |
| 447 | u64 link_failure_count; |
| 448 | u64 loss_of_sync_count; |
| 449 | u64 loss_of_signal_count; |
| 450 | u64 prim_seq_protocol_err_count; |
| 451 | u64 invalid_tx_word_count; |
| 452 | u64 invalid_crc_count; |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | /* fc4 statistics (only FCP supported currently) */ |
| 455 | u64 fcp_input_requests; |
| 456 | u64 fcp_output_requests; |
| 457 | u64 fcp_control_requests; |
| 458 | u64 fcp_input_megabytes; |
| 459 | u64 fcp_output_megabytes; |
Vasu Dev | e58abb0 | 2012-05-25 10:26:38 -0700 | [diff] [blame] | 460 | u64 fcp_packet_alloc_failures; /* fcp packet allocation failures */ |
| 461 | u64 fcp_packet_aborts; /* fcp packet aborted */ |
| 462 | u64 fcp_frame_alloc_failures; /* fcp frame allocation failures */ |
| 463 | |
| 464 | /* fc exches statistics */ |
| 465 | u64 fc_no_free_exch; /* no free exch memory */ |
| 466 | u64 fc_no_free_exch_xid; /* no free exch id */ |
| 467 | u64 fc_xid_not_found; /* exch not found for a response */ |
| 468 | u64 fc_xid_busy; /* exch exist for new a request */ |
| 469 | u64 fc_seq_not_found; /* seq is not found for exchange */ |
| 470 | u64 fc_non_bls_resp; /* a non BLS response frame with |
| 471 | a sequence responder in new exch */ |
Shyam Sundar | 8461019 | 2020-10-21 02:27:14 -0700 | [diff] [blame] | 472 | /* Host Congestion Signals */ |
| 473 | u64 cn_sig_warn; |
| 474 | u64 cn_sig_alarm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | }; |
| 476 | |
| 477 | |
| 478 | /* |
James Smart | 84314fd | 2006-08-18 17:30:09 -0400 | [diff] [blame] | 479 | * FC Event Codes - Polled and Async, following FC HBAAPI v2.0 guidelines |
| 480 | */ |
| 481 | |
| 482 | /* |
| 483 | * fc_host_event_code: If you alter this, you also need to alter |
| 484 | * scsi_transport_fc.c (for the ascii descriptions). |
| 485 | */ |
| 486 | enum fc_host_event_code { |
| 487 | FCH_EVT_LIP = 0x1, |
| 488 | FCH_EVT_LINKUP = 0x2, |
| 489 | FCH_EVT_LINKDOWN = 0x3, |
| 490 | FCH_EVT_LIPRESET = 0x4, |
| 491 | FCH_EVT_RSCN = 0x5, |
| 492 | FCH_EVT_ADAPTER_CHANGE = 0x103, |
| 493 | FCH_EVT_PORT_UNKNOWN = 0x200, |
| 494 | FCH_EVT_PORT_OFFLINE = 0x201, |
| 495 | FCH_EVT_PORT_ONLINE = 0x202, |
| 496 | FCH_EVT_PORT_FABRIC = 0x204, |
| 497 | FCH_EVT_LINK_UNKNOWN = 0x500, |
James Smart | c39e0af | 2019-04-05 16:04:22 -0700 | [diff] [blame] | 498 | FCH_EVT_LINK_FPIN = 0x501, |
James Smart | 84314fd | 2006-08-18 17:30:09 -0400 | [diff] [blame] | 499 | FCH_EVT_VENDOR_UNIQUE = 0xffff, |
| 500 | }; |
| 501 | |
| 502 | |
| 503 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | * FC Local Port (Host) Attributes |
| 505 | * |
| 506 | * Attributes are based on HBAAPI V2.0 definitions. |
| 507 | * Note: OSDeviceName is determined by user-space library |
| 508 | * |
| 509 | * Fixed attributes are not expected to change. The driver is |
| 510 | * expected to set these values after successfully calling scsi_add_host(). |
| 511 | * The transport fully manages all get functions w/o driver interaction. |
| 512 | * |
| 513 | * Dynamic attributes are expected to change. The driver participates |
| 514 | * in all get/set operations via functions provided by the driver. |
| 515 | * |
| 516 | * Private attributes are transport-managed values. They are fully |
| 517 | * managed by the transport w/o driver interaction. |
| 518 | */ |
| 519 | |
Javed Hasan | 82897fe | 2021-06-03 05:16:21 -0700 | [diff] [blame] | 520 | #define FC_VENDOR_IDENTIFIER 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | #define FC_FC4_LIST_SIZE 32 |
| 522 | #define FC_SYMBOLIC_NAME_SIZE 256 |
| 523 | #define FC_VERSION_STRING_SIZE 64 |
Javed Hasan | 82897fe | 2021-06-03 05:16:21 -0700 | [diff] [blame] | 524 | #define FC_SERIAL_NUMBER_SIZE 64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | struct fc_host_attrs { |
| 527 | /* Fixed Attributes */ |
| 528 | u64 node_name; |
| 529 | u64 port_name; |
Andreas Herrmann | 6b7281d | 2006-01-13 02:16:54 +0100 | [diff] [blame] | 530 | u64 permanent_port_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | u32 supported_classes; |
| 532 | u8 supported_fc4s[FC_FC4_LIST_SIZE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | u32 supported_speeds; |
| 534 | u32 maxframe_size; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 535 | u16 max_npiv_vports; |
Javed Hasan | 82897fe | 2021-06-03 05:16:21 -0700 | [diff] [blame] | 536 | u32 max_ct_payload; |
| 537 | u32 num_ports; |
| 538 | u32 num_discovered_ports; |
| 539 | u32 bootbios_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | char serial_number[FC_SERIAL_NUMBER_SIZE]; |
Neerav Parikh | bb8ef58 | 2012-01-22 17:29:50 -0800 | [diff] [blame] | 541 | char manufacturer[FC_SERIAL_NUMBER_SIZE]; |
| 542 | char model[FC_SYMBOLIC_NAME_SIZE]; |
| 543 | char model_description[FC_SYMBOLIC_NAME_SIZE]; |
| 544 | char hardware_version[FC_VERSION_STRING_SIZE]; |
| 545 | char driver_version[FC_VERSION_STRING_SIZE]; |
| 546 | char firmware_version[FC_VERSION_STRING_SIZE]; |
| 547 | char optionrom_version[FC_VERSION_STRING_SIZE]; |
Javed Hasan | 82897fe | 2021-06-03 05:16:21 -0700 | [diff] [blame] | 548 | char vendor_identifier[FC_VENDOR_IDENTIFIER]; |
| 549 | char bootbios_version[FC_SYMBOLIC_NAME_SIZE]; |
| 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
| 552 | /* Dynamic Attributes */ |
| 553 | u32 port_id; |
| 554 | enum fc_port_type port_type; |
| 555 | enum fc_port_state port_state; |
| 556 | u8 active_fc4s[FC_FC4_LIST_SIZE]; |
| 557 | u32 speed; |
| 558 | u64 fabric_name; |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 559 | char symbolic_name[FC_SYMBOLIC_NAME_SIZE]; |
| 560 | char system_hostname[FC_SYMBOLIC_NAME_SIZE]; |
Mike Christie | 43ca910 | 2010-09-15 16:52:32 -0500 | [diff] [blame] | 561 | u32 dev_loss_tmo; |
Shyam Sundar | 547aab5 | 2020-10-21 02:27:12 -0700 | [diff] [blame] | 562 | struct fc_fpin_stats fpin_stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
| 564 | /* Private (Transport-managed) Attributes */ |
| 565 | enum fc_tgtid_binding_type tgtid_bind_type; |
| 566 | |
| 567 | /* internal data */ |
| 568 | struct list_head rports; |
| 569 | struct list_head rport_bindings; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 570 | struct list_head vports; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | u32 next_rport_number; |
| 572 | u32 next_target_id; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 573 | u32 next_vport_number; |
| 574 | u16 npiv_vports_inuse; |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 575 | |
| 576 | /* work queues for rport state manipulation */ |
Kay Sievers | aab0de2 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 577 | char work_q_name[20]; |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 578 | struct workqueue_struct *work_q; |
Kay Sievers | aab0de2 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 579 | char devloss_work_q_name[20]; |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 580 | struct workqueue_struct *devloss_work_q; |
James Smart | 9e4f5e2 | 2009-03-26 13:33:19 -0400 | [diff] [blame] | 581 | |
| 582 | /* bsg support */ |
| 583 | struct request_queue *rqst_q; |
Javed Hasan | 82897fe | 2021-06-03 05:16:21 -0700 | [diff] [blame] | 584 | |
| 585 | /* FDMI support version*/ |
| 586 | u8 fdmi_version; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | }; |
| 588 | |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 589 | #define shost_to_fc_host(x) \ |
| 590 | ((struct fc_host_attrs *)(x)->shost_data) |
James.Smart@Emulex.Com | 42e3314 | 2005-12-15 09:56:22 -0500 | [diff] [blame] | 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | #define fc_host_node_name(x) \ |
| 593 | (((struct fc_host_attrs *)(x)->shost_data)->node_name) |
| 594 | #define fc_host_port_name(x) \ |
| 595 | (((struct fc_host_attrs *)(x)->shost_data)->port_name) |
Andreas Herrmann | 6b7281d | 2006-01-13 02:16:54 +0100 | [diff] [blame] | 596 | #define fc_host_permanent_port_name(x) \ |
| 597 | (((struct fc_host_attrs *)(x)->shost_data)->permanent_port_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | #define fc_host_supported_classes(x) \ |
| 599 | (((struct fc_host_attrs *)(x)->shost_data)->supported_classes) |
| 600 | #define fc_host_supported_fc4s(x) \ |
| 601 | (((struct fc_host_attrs *)(x)->shost_data)->supported_fc4s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | #define fc_host_supported_speeds(x) \ |
| 603 | (((struct fc_host_attrs *)(x)->shost_data)->supported_speeds) |
| 604 | #define fc_host_maxframe_size(x) \ |
| 605 | (((struct fc_host_attrs *)(x)->shost_data)->maxframe_size) |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 606 | #define fc_host_max_npiv_vports(x) \ |
| 607 | (((struct fc_host_attrs *)(x)->shost_data)->max_npiv_vports) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | #define fc_host_serial_number(x) \ |
| 609 | (((struct fc_host_attrs *)(x)->shost_data)->serial_number) |
Neerav Parikh | bb8ef58 | 2012-01-22 17:29:50 -0800 | [diff] [blame] | 610 | #define fc_host_manufacturer(x) \ |
| 611 | (((struct fc_host_attrs *)(x)->shost_data)->manufacturer) |
| 612 | #define fc_host_model(x) \ |
| 613 | (((struct fc_host_attrs *)(x)->shost_data)->model) |
| 614 | #define fc_host_model_description(x) \ |
| 615 | (((struct fc_host_attrs *)(x)->shost_data)->model_description) |
| 616 | #define fc_host_hardware_version(x) \ |
| 617 | (((struct fc_host_attrs *)(x)->shost_data)->hardware_version) |
| 618 | #define fc_host_driver_version(x) \ |
| 619 | (((struct fc_host_attrs *)(x)->shost_data)->driver_version) |
| 620 | #define fc_host_firmware_version(x) \ |
| 621 | (((struct fc_host_attrs *)(x)->shost_data)->firmware_version) |
| 622 | #define fc_host_optionrom_version(x) \ |
| 623 | (((struct fc_host_attrs *)(x)->shost_data)->optionrom_version) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | #define fc_host_port_id(x) \ |
| 625 | (((struct fc_host_attrs *)(x)->shost_data)->port_id) |
| 626 | #define fc_host_port_type(x) \ |
| 627 | (((struct fc_host_attrs *)(x)->shost_data)->port_type) |
| 628 | #define fc_host_port_state(x) \ |
| 629 | (((struct fc_host_attrs *)(x)->shost_data)->port_state) |
| 630 | #define fc_host_active_fc4s(x) \ |
| 631 | (((struct fc_host_attrs *)(x)->shost_data)->active_fc4s) |
| 632 | #define fc_host_speed(x) \ |
| 633 | (((struct fc_host_attrs *)(x)->shost_data)->speed) |
| 634 | #define fc_host_fabric_name(x) \ |
| 635 | (((struct fc_host_attrs *)(x)->shost_data)->fabric_name) |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 636 | #define fc_host_symbolic_name(x) \ |
| 637 | (((struct fc_host_attrs *)(x)->shost_data)->symbolic_name) |
| 638 | #define fc_host_system_hostname(x) \ |
| 639 | (((struct fc_host_attrs *)(x)->shost_data)->system_hostname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | #define fc_host_tgtid_bind_type(x) \ |
| 641 | (((struct fc_host_attrs *)(x)->shost_data)->tgtid_bind_type) |
| 642 | #define fc_host_rports(x) \ |
| 643 | (((struct fc_host_attrs *)(x)->shost_data)->rports) |
| 644 | #define fc_host_rport_bindings(x) \ |
| 645 | (((struct fc_host_attrs *)(x)->shost_data)->rport_bindings) |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 646 | #define fc_host_vports(x) \ |
| 647 | (((struct fc_host_attrs *)(x)->shost_data)->vports) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | #define fc_host_next_rport_number(x) \ |
| 649 | (((struct fc_host_attrs *)(x)->shost_data)->next_rport_number) |
| 650 | #define fc_host_next_target_id(x) \ |
| 651 | (((struct fc_host_attrs *)(x)->shost_data)->next_target_id) |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 652 | #define fc_host_next_vport_number(x) \ |
| 653 | (((struct fc_host_attrs *)(x)->shost_data)->next_vport_number) |
| 654 | #define fc_host_npiv_vports_inuse(x) \ |
| 655 | (((struct fc_host_attrs *)(x)->shost_data)->npiv_vports_inuse) |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 656 | #define fc_host_work_q_name(x) \ |
| 657 | (((struct fc_host_attrs *)(x)->shost_data)->work_q_name) |
| 658 | #define fc_host_work_q(x) \ |
| 659 | (((struct fc_host_attrs *)(x)->shost_data)->work_q) |
| 660 | #define fc_host_devloss_work_q_name(x) \ |
| 661 | (((struct fc_host_attrs *)(x)->shost_data)->devloss_work_q_name) |
| 662 | #define fc_host_devloss_work_q(x) \ |
| 663 | (((struct fc_host_attrs *)(x)->shost_data)->devloss_work_q) |
Mike Christie | 43ca910 | 2010-09-15 16:52:32 -0500 | [diff] [blame] | 664 | #define fc_host_dev_loss_tmo(x) \ |
| 665 | (((struct fc_host_attrs *)(x)->shost_data)->dev_loss_tmo) |
Javed Hasan | 82897fe | 2021-06-03 05:16:21 -0700 | [diff] [blame] | 666 | #define fc_host_max_ct_payload(x) \ |
| 667 | (((struct fc_host_attrs *)(x)->shost_data)->max_ct_payload) |
| 668 | #define fc_host_vendor_identifier(x) \ |
| 669 | (((struct fc_host_attrs *)(x)->shost_data)->vendor_identifier) |
| 670 | #define fc_host_num_discovered_ports(x) \ |
| 671 | (((struct fc_host_attrs *)(x)->shost_data)->num_discovered_ports) |
| 672 | #define fc_host_num_ports(x) \ |
| 673 | (((struct fc_host_attrs *)(x)->shost_data)->num_ports) |
| 674 | #define fc_host_bootbios_version(x) \ |
| 675 | (((struct fc_host_attrs *)(x)->shost_data)->bootbios_version) |
| 676 | #define fc_host_bootbios_state(x) \ |
| 677 | (((struct fc_host_attrs *)(x)->shost_data)->bootbios_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | /* The functions by which the transport class and the driver communicate */ |
| 680 | struct fc_function_template { |
| 681 | void (*get_rport_dev_loss_tmo)(struct fc_rport *); |
| 682 | void (*set_rport_dev_loss_tmo)(struct fc_rport *, u32); |
| 683 | |
| 684 | void (*get_starget_node_name)(struct scsi_target *); |
| 685 | void (*get_starget_port_name)(struct scsi_target *); |
| 686 | void (*get_starget_port_id)(struct scsi_target *); |
| 687 | |
| 688 | void (*get_host_port_id)(struct Scsi_Host *); |
| 689 | void (*get_host_port_type)(struct Scsi_Host *); |
| 690 | void (*get_host_port_state)(struct Scsi_Host *); |
| 691 | void (*get_host_active_fc4s)(struct Scsi_Host *); |
| 692 | void (*get_host_speed)(struct Scsi_Host *); |
| 693 | void (*get_host_fabric_name)(struct Scsi_Host *); |
James Smart | 016131b | 2006-08-14 08:20:25 -0400 | [diff] [blame] | 694 | void (*get_host_symbolic_name)(struct Scsi_Host *); |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 695 | void (*set_host_system_hostname)(struct Scsi_Host *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
| 697 | struct fc_host_statistics * (*get_fc_host_stats)(struct Scsi_Host *); |
| 698 | void (*reset_fc_host_stats)(struct Scsi_Host *); |
| 699 | |
Andrew Vasquez | 91ca7b0 | 2005-10-27 16:03:37 -0700 | [diff] [blame] | 700 | int (*issue_fc_host_lip)(struct Scsi_Host *); |
| 701 | |
James Smart | 0f29b96 | 2006-08-18 17:33:29 -0400 | [diff] [blame] | 702 | void (*dev_loss_tmo_callbk)(struct fc_rport *); |
| 703 | void (*terminate_rport_io)(struct fc_rport *); |
| 704 | |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 705 | void (*set_vport_symbolic_name)(struct fc_vport *); |
| 706 | int (*vport_create)(struct fc_vport *, bool); |
| 707 | int (*vport_disable)(struct fc_vport *, bool); |
| 708 | int (*vport_delete)(struct fc_vport *); |
| 709 | |
James Smart | 9e4f5e2 | 2009-03-26 13:33:19 -0400 | [diff] [blame] | 710 | /* bsg support */ |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 711 | int (*bsg_request)(struct bsg_job *); |
| 712 | int (*bsg_timeout)(struct bsg_job *); |
James Smart | 9e4f5e2 | 2009-03-26 13:33:19 -0400 | [diff] [blame] | 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | /* allocation lengths for host-specific data */ |
| 715 | u32 dd_fcrport_size; |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 716 | u32 dd_fcvport_size; |
James Smart | 9e4f5e2 | 2009-03-26 13:33:19 -0400 | [diff] [blame] | 717 | u32 dd_bsg_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 719 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | * The driver sets these to tell the transport class it |
| 721 | * wants the attributes displayed in sysfs. If the show_ flag |
| 722 | * is not set, the attribute will be private to the transport |
James Smart | 9ef3e4a | 2007-05-24 19:04:44 -0400 | [diff] [blame] | 723 | * class |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | */ |
| 725 | |
| 726 | /* remote port fixed attributes */ |
| 727 | unsigned long show_rport_maxframe_size:1; |
| 728 | unsigned long show_rport_supported_classes:1; |
| 729 | unsigned long show_rport_dev_loss_tmo:1; |
| 730 | |
| 731 | /* |
| 732 | * target dynamic attributes |
| 733 | * These should all be "1" if the driver uses the remote port |
| 734 | * add/delete functions (so attributes reflect rport values). |
| 735 | */ |
| 736 | unsigned long show_starget_node_name:1; |
| 737 | unsigned long show_starget_port_name:1; |
| 738 | unsigned long show_starget_port_id:1; |
| 739 | |
| 740 | /* host fixed attributes */ |
| 741 | unsigned long show_host_node_name:1; |
| 742 | unsigned long show_host_port_name:1; |
Andreas Herrmann | 6b7281d | 2006-01-13 02:16:54 +0100 | [diff] [blame] | 743 | unsigned long show_host_permanent_port_name:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | unsigned long show_host_supported_classes:1; |
| 745 | unsigned long show_host_supported_fc4s:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | unsigned long show_host_supported_speeds:1; |
| 747 | unsigned long show_host_maxframe_size:1; |
| 748 | unsigned long show_host_serial_number:1; |
Neerav Parikh | bb8ef58 | 2012-01-22 17:29:50 -0800 | [diff] [blame] | 749 | unsigned long show_host_manufacturer:1; |
| 750 | unsigned long show_host_model:1; |
| 751 | unsigned long show_host_model_description:1; |
| 752 | unsigned long show_host_hardware_version:1; |
| 753 | unsigned long show_host_driver_version:1; |
| 754 | unsigned long show_host_firmware_version:1; |
| 755 | unsigned long show_host_optionrom_version:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | /* host dynamic attributes */ |
| 757 | unsigned long show_host_port_id:1; |
| 758 | unsigned long show_host_port_type:1; |
| 759 | unsigned long show_host_port_state:1; |
| 760 | unsigned long show_host_active_fc4s:1; |
| 761 | unsigned long show_host_speed:1; |
| 762 | unsigned long show_host_fabric_name:1; |
James Smart | 016131b | 2006-08-14 08:20:25 -0400 | [diff] [blame] | 763 | unsigned long show_host_symbolic_name:1; |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 764 | unsigned long show_host_system_hostname:1; |
Christof Schmitt | 03f002f | 2007-08-28 09:31:21 +0200 | [diff] [blame] | 765 | |
| 766 | unsigned long disable_target_scan:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | }; |
| 768 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 769 | /** |
| 770 | * fc_remote_port_chkready - called to validate the remote port state |
| 771 | * prior to initiating io to the port. |
| 772 | * |
| 773 | * Returns a scsi result code that can be returned by the LLDD. |
| 774 | * |
| 775 | * @rport: remote port to be checked |
| 776 | **/ |
| 777 | static inline int |
| 778 | fc_remote_port_chkready(struct fc_rport *rport) |
| 779 | { |
| 780 | int result; |
| 781 | |
| 782 | switch (rport->port_state) { |
| 783 | case FC_PORTSTATE_ONLINE: |
Muneendra Kumar | 02c6632 | 2021-01-07 03:19:06 +0530 | [diff] [blame] | 784 | case FC_PORTSTATE_MARGINAL: |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 785 | if (rport->roles & FC_PORT_ROLE_FCP_TARGET) |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 786 | result = 0; |
| 787 | else if (rport->flags & FC_RPORT_DEVLOSS_PENDING) |
Andrew Vasquez | 9a1a69a1 | 2009-04-29 13:12:39 -0500 | [diff] [blame] | 788 | result = DID_IMM_RETRY << 16; |
James Smart | aedf349 | 2006-04-10 10:14:05 -0400 | [diff] [blame] | 789 | else |
| 790 | result = DID_NO_CONNECT << 16; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 791 | break; |
| 792 | case FC_PORTSTATE_BLOCKED: |
Mike Christie | fff9d40 | 2008-08-19 18:45:23 -0500 | [diff] [blame] | 793 | if (rport->flags & FC_RPORT_FAST_FAIL_TIMEDOUT) |
Mike Christie | f46e307 | 2008-08-19 18:45:27 -0500 | [diff] [blame] | 794 | result = DID_TRANSPORT_FAILFAST << 16; |
Mike Christie | fff9d40 | 2008-08-19 18:45:23 -0500 | [diff] [blame] | 795 | else |
Andrew Vasquez | 9a1a69a1 | 2009-04-29 13:12:39 -0500 | [diff] [blame] | 796 | result = DID_IMM_RETRY << 16; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 797 | break; |
| 798 | default: |
| 799 | result = DID_NO_CONNECT << 16; |
| 800 | break; |
| 801 | } |
| 802 | return result; |
| 803 | } |
| 804 | |
Bart Van Assche | 5585cbd | 2019-04-04 12:44:38 -0700 | [diff] [blame] | 805 | static inline u64 wwn_to_u64(const u8 *wwn) |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 806 | { |
Arnd Bergmann | ef3fb24 | 2016-03-16 17:39:17 +0100 | [diff] [blame] | 807 | return get_unaligned_be64(wwn); |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | static inline void u64_to_wwn(u64 inm, u8 *wwn) |
| 811 | { |
Arnd Bergmann | ef3fb24 | 2016-03-16 17:39:17 +0100 | [diff] [blame] | 812 | put_unaligned_be64(inm, wwn); |
James Smart | b8d0821 | 2006-08-17 08:00:43 -0400 | [diff] [blame] | 813 | } |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 814 | |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 815 | /** |
| 816 | * fc_vport_set_state() - called to set a vport's state. Saves the old state, |
| 817 | * excepting the transitory states of initializing and sending the ELS |
| 818 | * traffic to instantiate the vport on the link. |
| 819 | * |
| 820 | * Assumes the driver has surrounded this with the proper locking to ensure |
| 821 | * a coherent state change. |
| 822 | * |
| 823 | * @vport: virtual port whose state is changing |
| 824 | * @new_state: new state |
| 825 | **/ |
| 826 | static inline void |
| 827 | fc_vport_set_state(struct fc_vport *vport, enum fc_vport_state new_state) |
| 828 | { |
| 829 | if ((new_state != FC_VPORT_UNKNOWN) && |
| 830 | (new_state != FC_VPORT_INITIALIZING)) |
| 831 | vport->vport_last_state = vport->vport_state; |
| 832 | vport->vport_state = new_state; |
| 833 | } |
| 834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | struct scsi_transport_template *fc_attach_transport( |
| 836 | struct fc_function_template *); |
| 837 | void fc_release_transport(struct scsi_transport_template *); |
| 838 | void fc_remove_host(struct Scsi_Host *); |
| 839 | struct fc_rport *fc_remote_port_add(struct Scsi_Host *shost, |
| 840 | int channel, struct fc_rport_identifiers *ids); |
| 841 | void fc_remote_port_delete(struct fc_rport *rport); |
| 842 | void fc_remote_port_rolechg(struct fc_rport *rport, u32 roles); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | int scsi_is_fc_rport(const struct device *); |
James Smart | 84314fd | 2006-08-18 17:30:09 -0400 | [diff] [blame] | 844 | u32 fc_get_event_number(void); |
| 845 | void fc_host_post_event(struct Scsi_Host *shost, u32 event_number, |
| 846 | enum fc_host_event_code event_code, u32 event_data); |
| 847 | void fc_host_post_vendor_event(struct Scsi_Host *shost, u32 event_number, |
James Smart | 2b1be55 | 2019-04-05 16:04:21 -0700 | [diff] [blame] | 848 | u32 data_len, char *data_buf, u64 vendor_id); |
Shyam Sundar | 3dcfe0d | 2020-10-21 02:27:13 -0700 | [diff] [blame] | 849 | struct fc_rport *fc_find_rport_by_wwpn(struct Scsi_Host *shost, u64 wwpn); |
James Smart | 2b1be55 | 2019-04-05 16:04:21 -0700 | [diff] [blame] | 850 | void fc_host_post_fc_event(struct Scsi_Host *shost, u32 event_number, |
| 851 | enum fc_host_event_code event_code, |
| 852 | u32 data_len, char *data_buf, u64 vendor_id); |
James Smart | 84314fd | 2006-08-18 17:30:09 -0400 | [diff] [blame] | 853 | /* Note: when specifying vendor_id to fc_host_post_vendor_event() |
James Smart | 2b1be55 | 2019-04-05 16:04:21 -0700 | [diff] [blame] | 854 | * or fc_host_post_fc_event(), be sure to read the Vendor Type |
| 855 | * and ID formatting requirements specified in scsi_netlink.h |
| 856 | * Note: when calling fc_host_post_fc_event(), vendor_id may be |
| 857 | * specified as 0. |
James Smart | 84314fd | 2006-08-18 17:30:09 -0400 | [diff] [blame] | 858 | */ |
James Smart | c39e0af | 2019-04-05 16:04:22 -0700 | [diff] [blame] | 859 | void fc_host_fpin_rcv(struct Scsi_Host *shost, u32 fpin_len, char *fpin_buf); |
Andrew Vasquez | a30c3f6 | 2008-07-18 08:32:52 -0700 | [diff] [blame] | 860 | struct fc_vport *fc_vport_create(struct Scsi_Host *shost, int channel, |
| 861 | struct fc_vport_identifiers *); |
James Smart | a53eb5e | 2007-04-27 12:41:09 -0400 | [diff] [blame] | 862 | int fc_vport_terminate(struct fc_vport *vport); |
Steffen Maier | 67b4652 | 2017-07-25 16:14:24 +0200 | [diff] [blame] | 863 | int fc_block_rport(struct fc_rport *rport); |
Christof Schmitt | 2f2eb58 | 2010-03-24 16:50:30 +0100 | [diff] [blame] | 864 | int fc_block_scsi_eh(struct scsi_cmnd *cmnd); |
Christoph Hellwig | b6a05c8 | 2017-01-30 13:18:58 +0100 | [diff] [blame] | 865 | enum blk_eh_timer_return fc_eh_timed_out(struct scsi_cmnd *scmd); |
Muneendra Kumar | 02c6632 | 2021-01-07 03:19:06 +0530 | [diff] [blame] | 866 | bool fc_eh_should_retry_cmd(struct scsi_cmnd *scmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 868 | static inline struct Scsi_Host *fc_bsg_to_shost(struct bsg_job *job) |
| 869 | { |
| 870 | if (scsi_is_host_device(job->dev)) |
| 871 | return dev_to_shost(job->dev); |
| 872 | return rport_to_shost(dev_to_rport(job->dev)); |
| 873 | } |
| 874 | |
| 875 | static inline struct fc_rport *fc_bsg_to_rport(struct bsg_job *job) |
| 876 | { |
| 877 | if (scsi_is_fc_rport(job->dev)) |
| 878 | return dev_to_rport(job->dev); |
| 879 | return NULL; |
| 880 | } |
| 881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | #endif /* SCSI_TRANSPORT_FC_H */ |