1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2021 Broadcom. All Rights Reserved. The term
4 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
10 #include "scsi/fc/fc_els.h"
11 #include "scsi/fc/fc_fs.h"
12 #include "scsi/fc/fc_ns.h"
13 #include "scsi/fc/fc_gs.h"
14 #include "scsi/fc_frame.h"
15 #include "../include/efc_common.h"
16 #include "../libefc_sli/sli4.h"
18 #define EFC_SERVICE_PARMS_LENGTH 120
19 #define EFC_NAME_LENGTH 32
20 #define EFC_SM_NAME_LENGTH 64
21 #define EFC_DISPLAY_BUS_INFO_LENGTH 16
23 #define EFC_WWN_LENGTH 32
25 #define EFC_FC_ELS_DEFAULT_RETRIES 3
28 #define EFC_FC_ELS_SEND_DEFAULT_TIMEOUT 0
29 #define EFC_FC_FLOGI_TIMEOUT_SEC 5
30 #define EFC_SHUTDOWN_TIMEOUT_USEC 30000000
32 /* Return values for calls from base driver to libefc */
33 #define EFC_SCSI_CALL_COMPLETE 0
34 #define EFC_SCSI_CALL_ASYNC 1
36 /* Local port topology */
37 enum efc_nport_topology {
38 EFC_NPORT_TOPO_UNKNOWN = 0,
39 EFC_NPORT_TOPO_FABRIC,
44 #define enable_target_rscn(efc) 1
46 enum efc_node_shutd_rsn {
47 EFC_NODE_SHUTDOWN_DEFAULT = 0,
48 EFC_NODE_SHUTDOWN_EXPLICIT_LOGO,
49 EFC_NODE_SHUTDOWN_IMPLICIT_LOGO,
52 enum efc_node_send_ls_acc {
53 EFC_NODE_SEND_LS_ACC_NONE = 0,
54 EFC_NODE_SEND_LS_ACC_PLOGI,
55 EFC_NODE_SEND_LS_ACC_PRLI,
58 #define EFC_LINK_STATUS_UP 0
59 #define EFC_LINK_STATUS_DOWN 1
63 /* State machine context header */
65 void (*current_state)(struct efc_sm_ctx *ctx,
66 enum efc_sm_event evt, void *arg);
68 const char *description;
72 /* Description of discovered Fabric Domain */
73 struct efc_domain_record {
89 enum efc_hw_domain_event {
90 EFC_HW_DOMAIN_ALLOC_OK,
91 EFC_HW_DOMAIN_ALLOC_FAIL,
92 EFC_HW_DOMAIN_ATTACH_OK,
93 EFC_HW_DOMAIN_ATTACH_FAIL,
94 EFC_HW_DOMAIN_FREE_OK,
95 EFC_HW_DOMAIN_FREE_FAIL,
98 EFC_HW_DOMAIN_CHANGED,
102 * Fibre Channel port object
104 * @list_entry: nport list entry
105 * @ref: reference count, each node takes a reference
106 * @release: function to free nport object
107 * @efc: pointer back to efc
108 * @instance_index: unique instance index value
109 * @display_name: port display name
110 * @is_vport: Is NPIV port
111 * @free_req_pending: pending request to free resources
112 * @attached: mark attached if reg VPI succeeds
113 * @p2p_winner: TRUE if we're the point-to-point winner
114 * @domain: pointer back to domain
117 * @tgt_data: target backend private port data
118 * @ini_data: initiator backend private port data
120 * @fc_id: port FC address
121 * @dma: memory for Service Parameters
122 * @wwnn_str: wwpn string
123 * @sli_wwpn: SLI provided wwpn
124 * @sli_wwnn: SLI provided wwnn
125 * @sm: nport state machine context
126 * @lookup: fc_id to node lookup object
127 * @enable_ini: SCSI initiator enabled for this port
128 * @enable_tgt: SCSI target enabled for this port
129 * @enable_rscn: port will be expecting RSCN
130 * @shutting_down: nport in process of shutting down
131 * @p2p_port_id: our port id for point-to-point
132 * @topology: topology: fabric/p2p/unknown
133 * @service_params: login parameters
134 * @p2p_remote_port_id: remote node's port id for point-to-point
138 struct list_head list_entry;
140 void (*release)(struct kref *arg);
143 char display_name[EFC_NAME_LENGTH];
145 bool free_req_pending;
149 struct efc_domain *domain;
159 u8 wwnn_str[EFC_WWN_LENGTH];
163 struct efc_sm_ctx sm;
164 struct xarray lookup;
170 enum efc_nport_topology topology;
171 u8 service_params[EFC_SERVICE_PARMS_LENGTH];
172 u32 p2p_remote_port_id;
176 * Fibre Channel domain object
178 * This object is a container for the various SLI components needed
179 * to connect to the domain of a FC or FCoE switch
180 * @efc: pointer back to efc
181 * @instance_index: unique instance index value
182 * @display_name: Node display name
183 * @nport_list: linked list of nports associated with this domain
184 * @ref: Reference count, each nport takes a reference
185 * @release: Function to free domain object
186 * @ini_domain: initiator backend private domain data
187 * @tgt_domain: target backend private domain data
188 * @sm: state machine context
189 * @fcf: FC Forwarder table index
190 * @fcf_indicator: FCFI
192 * @nport_count: Number of nports allocated
193 * @dma: memory for Service Parameters
194 * @fcf_wwn: WWN for FCF/switch
195 * @drvsm: driver domain sm context
196 * @attached: set true after attach completes
198 * @is_loop: is loop topology
199 * @is_nlport: is public loop
200 * @domain_found_pending:A domain found is pending, drec is updated
201 * @req_domain_free: True if domain object should be free'd
202 * @req_accept_frames: set in domain state machine to enable frames
203 * @domain_notify_pend: Set in domain SM to avoid duplicate node event post
204 * @pending_drec: Pending drec if a domain found is pending
205 * @service_params: any nports service parameters
206 * @flogi_service_params:Fabric/P2p service parameters from FLOGI
207 * @lookup: d_id to node lookup object
208 * @nport: Pointer to first (physical) SLI port
212 char display_name[EFC_NAME_LENGTH];
213 struct list_head nport_list;
215 void (*release)(struct kref *arg);
219 /* Declarations private to HW/SLI */
226 /* Declarations private to FC trannport */
228 struct efc_sm_ctx drvsm;
233 bool domain_found_pending;
234 bool req_domain_free;
235 bool req_accept_frames;
236 bool domain_notify_pend;
238 struct efc_domain_record pending_drec;
239 u8 service_params[EFC_SERVICE_PARMS_LENGTH];
240 u8 flogi_service_params[EFC_SERVICE_PARMS_LENGTH];
242 struct xarray lookup;
244 struct efc_nport *nport;
250 * This object represents a connection between the SLI port and another
251 * Nx_Port on the fabric. Note this can be either a well known port such
252 * as a F_Port (i.e. ff:ff:fe) or another N_Port.
255 * @attached: true if attached
256 * @nport: associated SLI port
257 * @node: associated node
259 struct efc_remote_node {
266 struct efc_nport *nport;
272 * @efc: pointer back to efc structure
273 * @display_name: Node display name
274 * @nort: Assosiated nport pointer.
275 * @hold_frames: hold incoming frames if true
276 * @els_io_enabled: Enable allocating els ios for this node
277 * @els_ios_lock: lock to protect the els ios list
278 * @els_ios_list: ELS I/O's for this node
279 * @ini_node: backend initiator private node data
280 * @tgt_node: backend target private node data
281 * @rnode: Remote node
282 * @sm: state machine context
283 * @evtdepth: current event posting nesting depth
284 * @req_free: this node is to be free'd
285 * @attached: node is attached (REGLOGIN complete)
286 * @fcp_enabled: node is enabled to handle FCP
287 * @rscn_pending: for name server node RSCN is pending
288 * @send_plogi: send PLOGI accept, upon completion of node attach
289 * @send_plogi_acc: TRUE if io_alloc() is enabled.
290 * @send_ls_acc: type of LS acc to send
291 * @ls_acc_io: SCSI IO for LS acc
292 * @ls_acc_oxid: OX_ID for pending accept
293 * @ls_acc_did: D_ID for pending accept
294 * @shutdown_reason: reason for node shutdown
295 * @sparm_dma_buf: service parameters buffer
296 * @service_params: plogi/acc frame from remote device
297 * @pend_frames_lock: lock for inbound pending frames list
298 * @pend_frames: inbound pending frames list
299 * @pend_frames_processed:count of frames processed in hold frames interval
300 * @ox_id_in_use: used to verify one at a time us of ox_id
301 * @els_retries_remaining:for ELS, number of retries remaining
302 * @els_req_cnt: number of outstanding ELS requests
303 * @els_cmpl_cnt: number of outstanding ELS completions
304 * @abort_cnt: Abort counter for debugging purpos
305 * @current_state_name: current node state
306 * @prev_state_name: previous node state
307 * @current_evt: current event
308 * @prev_evt: previous event
309 * @targ: node is target capable
310 * @init: node is init capable
311 * @refound: Handle node refound case when node is being deleted
312 * @els_io_pend_list: list of pending (not yet processed) ELS IOs
313 * @els_io_active_list: list of active (processed) ELS IOs
314 * @nodedb_state: Node debugging, saved state
315 * @gidpt_delay_timer: GIDPT delay timer
316 * @time_last_gidpt_msec:Start time of last target RSCN GIDPT
317 * @wwnn: remote port WWNN
318 * @wwpn: remote port WWPN
322 char display_name[EFC_NAME_LENGTH];
323 struct efc_nport *nport;
325 void (*release)(struct kref *arg);
335 spinlock_t els_ios_lock;
336 struct list_head els_ios_list;
340 struct efc_remote_node rnode;
341 /* Declarations private to FC trannport */
342 struct efc_sm_ctx sm;
345 enum efc_node_send_ls_acc send_ls_acc;
349 enum efc_node_shutd_rsn shutdown_reason;
353 struct efc_dma sparm_dma_buf;
354 u8 service_params[EFC_SERVICE_PARMS_LENGTH];
355 spinlock_t pend_frames_lock;
356 struct list_head pend_frames;
357 u32 pend_frames_processed;
359 u32 els_retries_remaining;
364 char current_state_name[EFC_SM_NAME_LENGTH];
365 char prev_state_name[EFC_SM_NAME_LENGTH];
369 void (*nodedb_state)(struct efc_sm_ctx *ctx,
370 enum efc_sm_event evt, void *arg);
371 struct timer_list gidpt_delay_timer;
372 u64 time_last_gidpt_msec;
374 char wwnn[EFC_WWN_LENGTH];
375 char wwpn[EFC_WWN_LENGTH];
381 * Collection of the information required to restore a virtual port across
386 * @tgt_data: target backend pointer
387 * @ini_data: initiator backend pointe
388 * @nport: Used to match record after attaching for update
393 struct list_head list_entry;
401 struct efc_nport *nport;
404 #define node_printf(node, fmt, args...) \
405 efc_log_info(node->efc, "[%s] " fmt, node->display_name, ##args)
407 /* Node SM IO Context Callback structure */
411 struct efc_hw_rq_buffer *header;
412 struct efc_hw_rq_buffer *payload;
413 struct efc_dma els_rsp;
415 /* Actual length of data received */
419 struct efc_hw_rq_buffer {
427 * Defines a general FC sequence object
428 * @hw: HW that owns this sequence
429 * @fcfi: FCFI associated with sequence
430 * @header: Received frame header
431 * @payload: Received frame header
432 * @hw_priv: HW private context
434 struct efc_hw_sequence {
435 struct list_head list_entry;
438 struct efc_hw_rq_buffer *header;
439 struct efc_hw_rq_buffer *payload;
443 enum efc_disc_io_type {
445 EFC_DISC_IO_ELS_RESP,
450 struct efc_io_els_params {
456 struct efc_io_ct_params {
464 union efc_disc_io_param {
465 struct efc_io_els_params els;
466 struct efc_io_ct_params ct;
470 struct efc_dma req; /* send buffer */
471 struct efc_dma rsp; /* receive buffer */
472 enum efc_disc_io_type io_type; /* EFC_DISC_IO_TYPE enum*/
473 u16 xmit_len; /* Length of els request*/
474 u16 rsp_len; /* Max length of rsps to be rcvd */
475 u32 rpi; /* Registered RPI */
476 u32 vpi; /* VPI for this nport */
479 bool rpi_registered; /* if false, use tmp RPI */
480 union efc_disc_io_param iparam;
483 /* Return value indiacating the sequence can not be freed */
484 #define EFC_HW_SEQ_HOLD 0
485 /* Return value indiacating the sequence can be freed */
486 #define EFC_HW_SEQ_FREE 1
488 struct libefc_function_template {
490 int (*new_nport)(struct efc *efc, struct efc_nport *sp);
491 void (*del_nport)(struct efc *efc, struct efc_nport *sp);
494 int (*scsi_new_node)(struct efc *efc, struct efc_node *n);
495 int (*scsi_del_node)(struct efc *efc, struct efc_node *n, int reason);
497 int (*issue_mbox_rqst)(void *efct, void *buf, void *cb, void *arg);
499 int (*send_els)(struct efc *efc, struct efc_disc_io *io);
501 int (*send_bls)(struct efc *efc, u32 type, struct sli_bls_params *bls);
503 int (*hw_seq_free)(struct efc *efc, struct efc_hw_sequence *seq);
506 #define EFC_LOG_LIB 0x01
507 #define EFC_LOG_NODE 0x02
508 #define EFC_LOG_PORT 0x04
509 #define EFC_LOG_DOMAIN 0x08
510 #define EFC_LOG_ELS 0x10
511 #define EFC_LOG_DOMAIN_SM 0x20
512 #define EFC_LOG_SM 0x40
514 /* efc library port structure */
526 mempool_t *node_pool;
527 struct dma_pool *node_dma_pool;
532 struct list_head vport_list;
533 /* lock to protect the vport list */
534 spinlock_t vport_lock;
536 struct libefc_function_template tt;
537 /* lock to protect the discovery library.
538 * Refer to efclib.c for more details.
547 struct efc_domain *domain;
548 void (*domain_free_cb)(struct efc *efc, void *arg);
549 void *domain_free_cb_arg;
551 u64 tgt_rscn_delay_msec;
552 u64 tgt_rscn_period_msec;
554 bool external_loopback;
557 mempool_t *els_io_pool;
558 atomic_t els_io_alloc_failed_count;
560 /* hold pending frames */
562 /* lock to protect pending frames list access */
563 spinlock_t pend_frames_lock;
564 struct list_head pend_frames;
565 /* count of pending frames that were processed */
566 u32 pend_frames_processed;
571 * EFC library registration
572 * **********************************/
573 int efcport_init(struct efc *efc);
574 void efcport_destroy(struct efc *efc);
577 * **********************************/
578 int efc_domain_cb(void *arg, int event, void *data);
580 efc_register_domain_free_cb(struct efc *efc,
581 void (*callback)(struct efc *efc, void *arg),
586 * **********************************/
587 void efc_nport_cb(void *arg, int event, void *data);
589 efc_vport_create_spec(struct efc *efc, u64 wwnn, u64 wwpn, u32 fc_id,
590 bool enable_ini, bool enable_tgt,
591 void *tgt_data, void *ini_data);
592 int efc_nport_vport_new(struct efc_domain *domain, u64 wwpn,
593 u64 wwnn, u32 fc_id, bool ini, bool tgt,
594 void *tgt_data, void *ini_data);
595 int efc_nport_vport_del(struct efc *efc, struct efc_domain *domain,
598 void efc_vport_del_all(struct efc *efc);
602 * **********************************/
603 int efc_remote_node_cb(void *arg, int event, void *data);
604 void efc_node_fcid_display(u32 fc_id, char *buffer, u32 buf_len);
605 void efc_node_post_shutdown(struct efc_node *node, void *arg);
606 u64 efc_node_get_wwpn(struct efc_node *node);
609 * EFC FCP/ELS/CT interface
610 * **********************************/
611 void efc_dispatch_frame(struct efc *efc, struct efc_hw_sequence *seq);
612 void efc_disc_io_complete(struct efc_disc_io *io, u32 len, u32 status,
616 * EFC SCSI INTERACTION LAYER
617 * **********************************/
618 void efc_scsi_sess_reg_complete(struct efc_node *node, u32 status);
619 void efc_scsi_del_initiator_complete(struct efc *efc, struct efc_node *node);
620 void efc_scsi_del_target_complete(struct efc *efc, struct efc_node *node);
621 void efc_scsi_io_list_empty(struct efc *efc, struct efc_node *node);
623 #endif /* __EFCLIB_H__ */