2 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
3 * Copyright (c) 2014- QLogic Corporation.
7 * Linux driver for QLogic BR-series Fibre Channel Host Bus Adapter.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License (GPL) Version 2 as
11 * published by the Free Software Foundation
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
22 #include "bfa_fcbuild.h"
25 BFA_TRC_FILE(FCS
, PORT
);
28 * ALPA to LIXA bitmap mapping
30 * ALPA 0x00 (Word 0, Bit 30) is invalid for N_Ports. Also Word 0 Bit 31
31 * is for L_bit (login required) and is filled as ALPA 0x00 here.
33 static const u8 loop_alpa_map
[] = {
34 0x00, 0x00, 0x01, 0x02, 0x04, 0x08, 0x0F, 0x10, /* Word 0 Bits 31..24 */
35 0x17, 0x18, 0x1B, 0x1D, 0x1E, 0x1F, 0x23, 0x25, /* Word 0 Bits 23..16 */
36 0x26, 0x27, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, /* Word 0 Bits 15..08 */
37 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x39, 0x3A, /* Word 0 Bits 07..00 */
39 0x3C, 0x43, 0x45, 0x46, 0x47, 0x49, 0x4A, 0x4B, /* Word 1 Bits 31..24 */
40 0x4C, 0x4D, 0x4E, 0x51, 0x52, 0x53, 0x54, 0x55, /* Word 1 Bits 23..16 */
41 0x56, 0x59, 0x5A, 0x5C, 0x63, 0x65, 0x66, 0x67, /* Word 1 Bits 15..08 */
42 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x71, 0x72, /* Word 1 Bits 07..00 */
44 0x73, 0x74, 0x75, 0x76, 0x79, 0x7A, 0x7C, 0x80, /* Word 2 Bits 31..24 */
45 0x81, 0x82, 0x84, 0x88, 0x8F, 0x90, 0x97, 0x98, /* Word 2 Bits 23..16 */
46 0x9B, 0x9D, 0x9E, 0x9F, 0xA3, 0xA5, 0xA6, 0xA7, /* Word 2 Bits 15..08 */
47 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xB1, 0xB2, /* Word 2 Bits 07..00 */
49 0xB3, 0xB4, 0xB5, 0xB6, 0xB9, 0xBA, 0xBC, 0xC3, /* Word 3 Bits 31..24 */
50 0xC5, 0xC6, 0xC7, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, /* Word 3 Bits 23..16 */
51 0xCE, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD9, /* Word 3 Bits 15..08 */
52 0xDA, 0xDC, 0xE0, 0xE1, 0xE2, 0xE4, 0xE8, 0xEF, /* Word 3 Bits 07..00 */
55 static void bfa_fcs_lport_send_ls_rjt(struct bfa_fcs_lport_s
*port
,
56 struct fchs_s
*rx_fchs
, u8 reason_code
,
58 static void bfa_fcs_lport_plogi(struct bfa_fcs_lport_s
*port
,
59 struct fchs_s
*rx_fchs
, struct fc_logi_s
*plogi
);
60 static void bfa_fcs_lport_online_actions(struct bfa_fcs_lport_s
*port
);
61 static void bfa_fcs_lport_offline_actions(struct bfa_fcs_lport_s
*port
);
62 static void bfa_fcs_lport_unknown_init(struct bfa_fcs_lport_s
*port
);
63 static void bfa_fcs_lport_unknown_online(struct bfa_fcs_lport_s
*port
);
64 static void bfa_fcs_lport_unknown_offline(struct bfa_fcs_lport_s
*port
);
65 static void bfa_fcs_lport_deleted(struct bfa_fcs_lport_s
*port
);
66 static void bfa_fcs_lport_echo(struct bfa_fcs_lport_s
*port
,
67 struct fchs_s
*rx_fchs
,
68 struct fc_echo_s
*echo
, u16 len
);
69 static void bfa_fcs_lport_rnid(struct bfa_fcs_lport_s
*port
,
70 struct fchs_s
*rx_fchs
,
71 struct fc_rnid_cmd_s
*rnid
, u16 len
);
72 static void bfa_fs_port_get_gen_topo_data(struct bfa_fcs_lport_s
*port
,
73 struct fc_rnid_general_topology_data_s
*gen_topo_data
);
75 static void bfa_fcs_lport_fab_init(struct bfa_fcs_lport_s
*port
);
76 static void bfa_fcs_lport_fab_online(struct bfa_fcs_lport_s
*port
);
77 static void bfa_fcs_lport_fab_offline(struct bfa_fcs_lport_s
*port
);
79 static void bfa_fcs_lport_n2n_init(struct bfa_fcs_lport_s
*port
);
80 static void bfa_fcs_lport_n2n_online(struct bfa_fcs_lport_s
*port
);
81 static void bfa_fcs_lport_n2n_offline(struct bfa_fcs_lport_s
*port
);
83 static void bfa_fcs_lport_loop_init(struct bfa_fcs_lport_s
*port
);
84 static void bfa_fcs_lport_loop_online(struct bfa_fcs_lport_s
*port
);
85 static void bfa_fcs_lport_loop_offline(struct bfa_fcs_lport_s
*port
);
88 void (*init
) (struct bfa_fcs_lport_s
*port
);
89 void (*online
) (struct bfa_fcs_lport_s
*port
);
90 void (*offline
) (struct bfa_fcs_lport_s
*port
);
92 [BFA_FCS_FABRIC_UNKNOWN
] = {
93 .init
= bfa_fcs_lport_unknown_init
,
94 .online
= bfa_fcs_lport_unknown_online
,
95 .offline
= bfa_fcs_lport_unknown_offline
97 [BFA_FCS_FABRIC_SWITCHED
] = {
98 .init
= bfa_fcs_lport_fab_init
,
99 .online
= bfa_fcs_lport_fab_online
,
100 .offline
= bfa_fcs_lport_fab_offline
102 [BFA_FCS_FABRIC_N2N
] = {
103 .init
= bfa_fcs_lport_n2n_init
,
104 .online
= bfa_fcs_lport_n2n_online
,
105 .offline
= bfa_fcs_lport_n2n_offline
107 [BFA_FCS_FABRIC_LOOP
] = {
108 .init
= bfa_fcs_lport_loop_init
,
109 .online
= bfa_fcs_lport_loop_online
,
110 .offline
= bfa_fcs_lport_loop_offline
115 * fcs_port_sm FCS logical port state machine
118 enum bfa_fcs_lport_event
{
119 BFA_FCS_PORT_SM_CREATE
= 1,
120 BFA_FCS_PORT_SM_ONLINE
= 2,
121 BFA_FCS_PORT_SM_OFFLINE
= 3,
122 BFA_FCS_PORT_SM_DELETE
= 4,
123 BFA_FCS_PORT_SM_DELRPORT
= 5,
124 BFA_FCS_PORT_SM_STOP
= 6,
127 static void bfa_fcs_lport_sm_uninit(struct bfa_fcs_lport_s
*port
,
128 enum bfa_fcs_lport_event event
);
129 static void bfa_fcs_lport_sm_init(struct bfa_fcs_lport_s
*port
,
130 enum bfa_fcs_lport_event event
);
131 static void bfa_fcs_lport_sm_online(struct bfa_fcs_lport_s
*port
,
132 enum bfa_fcs_lport_event event
);
133 static void bfa_fcs_lport_sm_offline(struct bfa_fcs_lport_s
*port
,
134 enum bfa_fcs_lport_event event
);
135 static void bfa_fcs_lport_sm_deleting(struct bfa_fcs_lport_s
*port
,
136 enum bfa_fcs_lport_event event
);
137 static void bfa_fcs_lport_sm_stopping(struct bfa_fcs_lport_s
*port
,
138 enum bfa_fcs_lport_event event
);
141 bfa_fcs_lport_sm_uninit(
142 struct bfa_fcs_lport_s
*port
,
143 enum bfa_fcs_lport_event event
)
145 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
146 bfa_trc(port
->fcs
, event
);
149 case BFA_FCS_PORT_SM_CREATE
:
150 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
154 bfa_sm_fault(port
->fcs
, event
);
159 bfa_fcs_lport_sm_init(struct bfa_fcs_lport_s
*port
,
160 enum bfa_fcs_lport_event event
)
162 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
163 bfa_trc(port
->fcs
, event
);
166 case BFA_FCS_PORT_SM_ONLINE
:
167 bfa_sm_set_state(port
, bfa_fcs_lport_sm_online
);
168 bfa_fcs_lport_online_actions(port
);
171 case BFA_FCS_PORT_SM_DELETE
:
172 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
173 bfa_fcs_lport_deleted(port
);
176 case BFA_FCS_PORT_SM_STOP
:
177 /* If vport - send completion call back */
179 bfa_fcs_vport_stop_comp(port
->vport
);
181 bfa_wc_down(&(port
->fabric
->stop_wc
));
184 case BFA_FCS_PORT_SM_OFFLINE
:
188 bfa_sm_fault(port
->fcs
, event
);
193 bfa_fcs_lport_sm_online(
194 struct bfa_fcs_lport_s
*port
,
195 enum bfa_fcs_lport_event event
)
197 struct bfa_fcs_rport_s
*rport
;
198 struct list_head
*qe
, *qen
;
200 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
201 bfa_trc(port
->fcs
, event
);
204 case BFA_FCS_PORT_SM_OFFLINE
:
205 bfa_sm_set_state(port
, bfa_fcs_lport_sm_offline
);
206 bfa_fcs_lport_offline_actions(port
);
209 case BFA_FCS_PORT_SM_STOP
:
210 __port_action
[port
->fabric
->fab_type
].offline(port
);
212 if (port
->num_rports
== 0) {
213 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
214 /* If vport - send completion call back */
216 bfa_fcs_vport_stop_comp(port
->vport
);
218 bfa_wc_down(&(port
->fabric
->stop_wc
));
220 bfa_sm_set_state(port
, bfa_fcs_lport_sm_stopping
);
221 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
222 rport
= (struct bfa_fcs_rport_s
*) qe
;
223 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
228 case BFA_FCS_PORT_SM_DELETE
:
230 __port_action
[port
->fabric
->fab_type
].offline(port
);
232 if (port
->num_rports
== 0) {
233 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
234 bfa_fcs_lport_deleted(port
);
236 bfa_sm_set_state(port
, bfa_fcs_lport_sm_deleting
);
237 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
238 rport
= (struct bfa_fcs_rport_s
*) qe
;
239 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
244 case BFA_FCS_PORT_SM_DELRPORT
:
248 bfa_sm_fault(port
->fcs
, event
);
253 bfa_fcs_lport_sm_offline(
254 struct bfa_fcs_lport_s
*port
,
255 enum bfa_fcs_lport_event event
)
257 struct bfa_fcs_rport_s
*rport
;
258 struct list_head
*qe
, *qen
;
260 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
261 bfa_trc(port
->fcs
, event
);
264 case BFA_FCS_PORT_SM_ONLINE
:
265 bfa_sm_set_state(port
, bfa_fcs_lport_sm_online
);
266 bfa_fcs_lport_online_actions(port
);
269 case BFA_FCS_PORT_SM_STOP
:
270 if (port
->num_rports
== 0) {
271 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
272 /* If vport - send completion call back */
274 bfa_fcs_vport_stop_comp(port
->vport
);
276 bfa_wc_down(&(port
->fabric
->stop_wc
));
278 bfa_sm_set_state(port
, bfa_fcs_lport_sm_stopping
);
279 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
280 rport
= (struct bfa_fcs_rport_s
*) qe
;
281 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
286 case BFA_FCS_PORT_SM_DELETE
:
287 if (port
->num_rports
== 0) {
288 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
289 bfa_fcs_lport_deleted(port
);
291 bfa_sm_set_state(port
, bfa_fcs_lport_sm_deleting
);
292 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
293 rport
= (struct bfa_fcs_rport_s
*) qe
;
294 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
299 case BFA_FCS_PORT_SM_DELRPORT
:
300 case BFA_FCS_PORT_SM_OFFLINE
:
304 bfa_sm_fault(port
->fcs
, event
);
309 bfa_fcs_lport_sm_stopping(struct bfa_fcs_lport_s
*port
,
310 enum bfa_fcs_lport_event event
)
312 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
313 bfa_trc(port
->fcs
, event
);
316 case BFA_FCS_PORT_SM_DELRPORT
:
317 if (port
->num_rports
== 0) {
318 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
319 /* If vport - send completion call back */
321 bfa_fcs_vport_stop_comp(port
->vport
);
323 bfa_wc_down(&(port
->fabric
->stop_wc
));
328 bfa_sm_fault(port
->fcs
, event
);
333 bfa_fcs_lport_sm_deleting(
334 struct bfa_fcs_lport_s
*port
,
335 enum bfa_fcs_lport_event event
)
337 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
338 bfa_trc(port
->fcs
, event
);
341 case BFA_FCS_PORT_SM_DELRPORT
:
342 if (port
->num_rports
== 0) {
343 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
344 bfa_fcs_lport_deleted(port
);
349 bfa_sm_fault(port
->fcs
, event
);
358 * Send AEN notification
361 bfa_fcs_lport_aen_post(struct bfa_fcs_lport_s
*port
,
362 enum bfa_lport_aen_event event
)
364 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fabric
->fcs
->bfad
;
365 struct bfa_aen_entry_s
*aen_entry
;
367 bfad_get_aen_entry(bfad
, aen_entry
);
371 aen_entry
->aen_data
.lport
.vf_id
= port
->fabric
->vf_id
;
372 aen_entry
->aen_data
.lport
.roles
= port
->port_cfg
.roles
;
373 aen_entry
->aen_data
.lport
.ppwwn
= bfa_fcs_lport_get_pwwn(
374 bfa_fcs_get_base_port(port
->fcs
));
375 aen_entry
->aen_data
.lport
.lpwwn
= bfa_fcs_lport_get_pwwn(port
);
377 /* Send the AEN notification */
378 bfad_im_post_vendor_event(aen_entry
, bfad
, ++port
->fcs
->fcs_aen_seq
,
379 BFA_AEN_CAT_LPORT
, event
);
386 bfa_fcs_lport_send_ls_rjt(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
,
387 u8 reason_code
, u8 reason_code_expl
)
390 struct bfa_fcxp_s
*fcxp
;
391 struct bfa_rport_s
*bfa_rport
= NULL
;
394 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
395 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
397 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
401 len
= fc_ls_rjt_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
402 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
403 rx_fchs
->ox_id
, reason_code
, reason_code_expl
);
405 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
406 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
414 bfa_fcs_lport_send_fcgs_rjt(struct bfa_fcs_lport_s
*port
,
415 struct fchs_s
*rx_fchs
, u8 reason_code
, u8 reason_code_expl
)
418 struct bfa_fcxp_s
*fcxp
;
419 struct bfa_rport_s
*bfa_rport
= NULL
;
421 struct ct_hdr_s
*rx_cthdr
= (struct ct_hdr_s
*)(rx_fchs
+ 1);
422 struct ct_hdr_s
*ct_hdr
;
424 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
425 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
427 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
431 ct_hdr
= bfa_fcxp_get_reqbuf(fcxp
);
432 ct_hdr
->gs_type
= rx_cthdr
->gs_type
;
433 ct_hdr
->gs_sub_type
= rx_cthdr
->gs_sub_type
;
435 len
= fc_gs_rjt_build(&fchs
, ct_hdr
, rx_fchs
->s_id
,
436 bfa_fcs_lport_get_fcid(port
),
437 rx_fchs
->ox_id
, reason_code
, reason_code_expl
);
439 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
440 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
445 * Process incoming plogi from a remote port.
448 bfa_fcs_lport_plogi(struct bfa_fcs_lport_s
*port
,
449 struct fchs_s
*rx_fchs
, struct fc_logi_s
*plogi
)
451 struct bfa_fcs_rport_s
*rport
;
453 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
454 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
457 * If min cfg mode is enabled, drop any incoming PLOGIs
459 if (__fcs_min_cfg(port
->fcs
)) {
460 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
464 if (fc_plogi_parse(rx_fchs
) != FC_PARSE_OK
) {
465 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
469 bfa_fcs_lport_send_ls_rjt(port
, rx_fchs
,
470 FC_LS_RJT_RSN_PROTOCOL_ERROR
,
471 FC_LS_RJT_EXP_SPARMS_ERR_OPTIONS
);
476 * Direct Attach P2P mode : verify address assigned by the r-port.
478 if ((!bfa_fcs_fabric_is_switched(port
->fabric
)) &&
479 (memcmp((void *)&bfa_fcs_lport_get_pwwn(port
),
480 (void *)&plogi
->port_name
, sizeof(wwn_t
)) < 0)) {
481 if (BFA_FCS_PID_IS_WKA(rx_fchs
->d_id
)) {
482 /* Address assigned to us cannot be a WKA */
483 bfa_fcs_lport_send_ls_rjt(port
, rx_fchs
,
484 FC_LS_RJT_RSN_PROTOCOL_ERROR
,
485 FC_LS_RJT_EXP_INVALID_NPORT_ID
);
488 port
->pid
= rx_fchs
->d_id
;
489 bfa_lps_set_n2n_pid(port
->fabric
->lps
, rx_fchs
->d_id
);
493 * First, check if we know the device by pwwn.
495 rport
= bfa_fcs_lport_get_rport_by_pwwn(port
, plogi
->port_name
);
498 * Direct Attach P2P mode : handle address assigned by r-port.
500 if ((!bfa_fcs_fabric_is_switched(port
->fabric
)) &&
501 (memcmp((void *)&bfa_fcs_lport_get_pwwn(port
),
502 (void *)&plogi
->port_name
, sizeof(wwn_t
)) < 0)) {
503 port
->pid
= rx_fchs
->d_id
;
504 bfa_lps_set_n2n_pid(port
->fabric
->lps
, rx_fchs
->d_id
);
505 rport
->pid
= rx_fchs
->s_id
;
507 bfa_fcs_rport_plogi(rport
, rx_fchs
, plogi
);
512 * Next, lookup rport by PID.
514 rport
= bfa_fcs_lport_get_rport_by_pid(port
, rx_fchs
->s_id
);
517 * Inbound PLOGI from a new device.
519 bfa_fcs_rport_plogi_create(port
, rx_fchs
, plogi
);
524 * Rport is known only by PID.
528 * This is a different device with the same pid. Old device
529 * disappeared. Send implicit LOGO to old device.
531 WARN_ON(rport
->pwwn
== plogi
->port_name
);
532 bfa_sm_send_event(rport
, RPSM_EVENT_LOGO_IMP
);
535 * Inbound PLOGI from a new device (with old PID).
537 bfa_fcs_rport_plogi_create(port
, rx_fchs
, plogi
);
542 * PLOGI crossing each other.
544 WARN_ON(rport
->pwwn
!= WWN_NULL
);
545 bfa_fcs_rport_plogi(rport
, rx_fchs
, plogi
);
549 * Process incoming ECHO.
550 * Since it does not require a login, it is processed here.
553 bfa_fcs_lport_echo(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
,
554 struct fc_echo_s
*echo
, u16 rx_len
)
557 struct bfa_fcxp_s
*fcxp
;
558 struct bfa_rport_s
*bfa_rport
= NULL
;
561 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
562 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
564 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
568 len
= fc_ls_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
569 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
573 * Copy the payload (if any) from the echo frame
575 pyld_len
= rx_len
- sizeof(struct fchs_s
);
576 bfa_trc(port
->fcs
, rx_len
);
577 bfa_trc(port
->fcs
, pyld_len
);
580 memcpy(((u8
*) bfa_fcxp_get_reqbuf(fcxp
)) +
581 sizeof(struct fc_echo_s
), (echo
+ 1),
582 (pyld_len
- sizeof(struct fc_echo_s
)));
584 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
585 BFA_FALSE
, FC_CLASS_3
, pyld_len
, &fchs
, NULL
, NULL
,
590 * Process incoming RNID.
591 * Since it does not require a login, it is processed here.
594 bfa_fcs_lport_rnid(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
,
595 struct fc_rnid_cmd_s
*rnid
, u16 rx_len
)
597 struct fc_rnid_common_id_data_s common_id_data
;
598 struct fc_rnid_general_topology_data_s gen_topo_data
;
600 struct bfa_fcxp_s
*fcxp
;
601 struct bfa_rport_s
*bfa_rport
= NULL
;
605 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
606 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
607 bfa_trc(port
->fcs
, rx_len
);
609 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
614 * Check Node Indentification Data Format
615 * We only support General Topology Discovery Format.
616 * For any other requested Data Formats, we return Common Node Id Data
617 * only, as per FC-LS.
619 bfa_trc(port
->fcs
, rnid
->node_id_data_format
);
620 if (rnid
->node_id_data_format
== RNID_NODEID_DATA_FORMAT_DISCOVERY
) {
621 data_format
= RNID_NODEID_DATA_FORMAT_DISCOVERY
;
623 * Get General topology data for this port
625 bfa_fs_port_get_gen_topo_data(port
, &gen_topo_data
);
627 data_format
= RNID_NODEID_DATA_FORMAT_COMMON
;
631 * Copy the Node Id Info
633 common_id_data
.port_name
= bfa_fcs_lport_get_pwwn(port
);
634 common_id_data
.node_name
= bfa_fcs_lport_get_nwwn(port
);
636 len
= fc_rnid_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
637 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
638 rx_fchs
->ox_id
, data_format
, &common_id_data
,
641 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
642 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
647 * Fill out General Topolpgy Discovery Data for RNID ELS.
650 bfa_fs_port_get_gen_topo_data(struct bfa_fcs_lport_s
*port
,
651 struct fc_rnid_general_topology_data_s
*gen_topo_data
)
653 memset(gen_topo_data
, 0,
654 sizeof(struct fc_rnid_general_topology_data_s
));
656 gen_topo_data
->asso_type
= cpu_to_be32(RNID_ASSOCIATED_TYPE_HOST
);
657 gen_topo_data
->phy_port_num
= 0; /* @todo */
658 gen_topo_data
->num_attached_nodes
= cpu_to_be32(1);
662 bfa_fcs_lport_online_actions(struct bfa_fcs_lport_s
*port
)
664 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fcs
->bfad
;
665 char lpwwn_buf
[BFA_STRING_32
];
667 bfa_trc(port
->fcs
, port
->fabric
->oper_type
);
669 __port_action
[port
->fabric
->fab_type
].init(port
);
670 __port_action
[port
->fabric
->fab_type
].online(port
);
672 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(port
));
673 BFA_LOG(KERN_WARNING
, bfad
, bfa_log_level
,
674 "Logical port online: WWN = %s Role = %s\n",
675 lpwwn_buf
, "Initiator");
676 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_ONLINE
);
678 bfad
->bfad_flags
|= BFAD_PORT_ONLINE
;
682 bfa_fcs_lport_offline_actions(struct bfa_fcs_lport_s
*port
)
684 struct list_head
*qe
, *qen
;
685 struct bfa_fcs_rport_s
*rport
;
686 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fcs
->bfad
;
687 char lpwwn_buf
[BFA_STRING_32
];
689 bfa_trc(port
->fcs
, port
->fabric
->oper_type
);
691 __port_action
[port
->fabric
->fab_type
].offline(port
);
693 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(port
));
694 if (bfa_sm_cmp_state(port
->fabric
,
695 bfa_fcs_fabric_sm_online
) == BFA_TRUE
) {
696 BFA_LOG(KERN_WARNING
, bfad
, bfa_log_level
,
697 "Logical port lost fabric connectivity: WWN = %s Role = %s\n",
698 lpwwn_buf
, "Initiator");
699 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_DISCONNECT
);
701 BFA_LOG(KERN_WARNING
, bfad
, bfa_log_level
,
702 "Logical port taken offline: WWN = %s Role = %s\n",
703 lpwwn_buf
, "Initiator");
704 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_OFFLINE
);
707 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
708 rport
= (struct bfa_fcs_rport_s
*) qe
;
709 bfa_sm_send_event(rport
, RPSM_EVENT_LOGO_IMP
);
714 bfa_fcs_lport_unknown_init(struct bfa_fcs_lport_s
*port
)
720 bfa_fcs_lport_unknown_online(struct bfa_fcs_lport_s
*port
)
726 bfa_fcs_lport_unknown_offline(struct bfa_fcs_lport_s
*port
)
732 bfa_fcs_lport_abts_acc(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
)
735 struct bfa_fcxp_s
*fcxp
;
738 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
739 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
741 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
745 len
= fc_ba_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
746 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
749 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
,
750 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
754 bfa_fcs_lport_deleted(struct bfa_fcs_lport_s
*port
)
756 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fcs
->bfad
;
757 char lpwwn_buf
[BFA_STRING_32
];
759 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(port
));
760 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
761 "Logical port deleted: WWN = %s Role = %s\n",
762 lpwwn_buf
, "Initiator");
763 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_DELETE
);
765 /* Base port will be deleted by the OS driver */
767 bfa_fcs_vport_delete_comp(port
->vport
);
769 bfa_wc_down(&port
->fabric
->wc
);
774 * Unsolicited frame receive handling.
777 bfa_fcs_lport_uf_recv(struct bfa_fcs_lport_s
*lport
,
778 struct fchs_s
*fchs
, u16 len
)
780 u32 pid
= fchs
->s_id
;
781 struct bfa_fcs_rport_s
*rport
= NULL
;
782 struct fc_els_cmd_s
*els_cmd
= (struct fc_els_cmd_s
*) (fchs
+ 1);
784 bfa_stats(lport
, uf_recvs
);
785 bfa_trc(lport
->fcs
, fchs
->type
);
787 if (!bfa_fcs_lport_is_online(lport
)) {
789 * In direct attach topology, it is possible to get a PLOGI
790 * before the lport is online due to port feature
791 * (QoS/Trunk/FEC/CR), so send a rjt
793 if ((fchs
->type
== FC_TYPE_ELS
) &&
794 (els_cmd
->els_code
== FC_ELS_PLOGI
)) {
795 bfa_fcs_lport_send_ls_rjt(lport
, fchs
,
796 FC_LS_RJT_RSN_UNABLE_TO_PERF_CMD
,
797 FC_LS_RJT_EXP_NO_ADDL_INFO
);
798 bfa_stats(lport
, plogi_rcvd
);
800 bfa_stats(lport
, uf_recv_drops
);
806 * First, handle ELSs that donot require a login.
811 if ((fchs
->type
== FC_TYPE_ELS
) &&
812 (els_cmd
->els_code
== FC_ELS_PLOGI
)) {
813 bfa_fcs_lport_plogi(lport
, fchs
, (struct fc_logi_s
*) els_cmd
);
818 * Handle ECHO separately.
820 if ((fchs
->type
== FC_TYPE_ELS
) && (els_cmd
->els_code
== FC_ELS_ECHO
)) {
821 bfa_fcs_lport_echo(lport
, fchs
,
822 (struct fc_echo_s
*)els_cmd
, len
);
827 * Handle RNID separately.
829 if ((fchs
->type
== FC_TYPE_ELS
) && (els_cmd
->els_code
== FC_ELS_RNID
)) {
830 bfa_fcs_lport_rnid(lport
, fchs
,
831 (struct fc_rnid_cmd_s
*) els_cmd
, len
);
835 if (fchs
->type
== FC_TYPE_BLS
) {
836 if ((fchs
->routing
== FC_RTG_BASIC_LINK
) &&
837 (fchs
->cat_info
== FC_CAT_ABTS
))
838 bfa_fcs_lport_abts_acc(lport
, fchs
);
842 if (fchs
->type
== FC_TYPE_SERVICES
) {
844 * Unhandled FC-GS frames. Send a FC-CT Reject
846 bfa_fcs_lport_send_fcgs_rjt(lport
, fchs
, CT_RSN_NOT_SUPP
,
847 CT_NS_EXP_NOADDITIONAL
);
852 * look for a matching remote port ID
854 rport
= bfa_fcs_lport_get_rport_by_pid(lport
, pid
);
856 bfa_trc(rport
->fcs
, fchs
->s_id
);
857 bfa_trc(rport
->fcs
, fchs
->d_id
);
858 bfa_trc(rport
->fcs
, fchs
->type
);
860 bfa_fcs_rport_uf_recv(rport
, fchs
, len
);
865 * Only handles ELS frames for now.
867 if (fchs
->type
!= FC_TYPE_ELS
) {
868 bfa_trc(lport
->fcs
, fchs
->s_id
);
869 bfa_trc(lport
->fcs
, fchs
->d_id
);
870 /* ignore type FC_TYPE_FC_FSS */
871 if (fchs
->type
!= FC_TYPE_FC_FSS
)
872 bfa_sm_fault(lport
->fcs
, fchs
->type
);
876 bfa_trc(lport
->fcs
, els_cmd
->els_code
);
877 if (els_cmd
->els_code
== FC_ELS_RSCN
) {
878 bfa_fcs_lport_scn_process_rscn(lport
, fchs
, len
);
882 if (els_cmd
->els_code
== FC_ELS_LOGO
) {
884 * @todo Handle LOGO frames received.
889 if (els_cmd
->els_code
== FC_ELS_PRLI
) {
891 * @todo Handle PRLI frames received.
897 * Unhandled ELS frames. Send a LS_RJT.
899 bfa_fcs_lport_send_ls_rjt(lport
, fchs
, FC_LS_RJT_RSN_CMD_NOT_SUPP
,
900 FC_LS_RJT_EXP_NO_ADDL_INFO
);
905 * PID based Lookup for a R-Port in the Port R-Port Queue
907 struct bfa_fcs_rport_s
*
908 bfa_fcs_lport_get_rport_by_pid(struct bfa_fcs_lport_s
*port
, u32 pid
)
910 struct bfa_fcs_rport_s
*rport
;
911 struct list_head
*qe
;
913 list_for_each(qe
, &port
->rport_q
) {
914 rport
= (struct bfa_fcs_rport_s
*) qe
;
915 if (rport
->pid
== pid
)
919 bfa_trc(port
->fcs
, pid
);
924 * OLD_PID based Lookup for a R-Port in the Port R-Port Queue
926 struct bfa_fcs_rport_s
*
927 bfa_fcs_lport_get_rport_by_old_pid(struct bfa_fcs_lport_s
*port
, u32 pid
)
929 struct bfa_fcs_rport_s
*rport
;
930 struct list_head
*qe
;
932 list_for_each(qe
, &port
->rport_q
) {
933 rport
= (struct bfa_fcs_rport_s
*) qe
;
934 if (rport
->old_pid
== pid
)
938 bfa_trc(port
->fcs
, pid
);
943 * PWWN based Lookup for a R-Port in the Port R-Port Queue
945 struct bfa_fcs_rport_s
*
946 bfa_fcs_lport_get_rport_by_pwwn(struct bfa_fcs_lport_s
*port
, wwn_t pwwn
)
948 struct bfa_fcs_rport_s
*rport
;
949 struct list_head
*qe
;
951 list_for_each(qe
, &port
->rport_q
) {
952 rport
= (struct bfa_fcs_rport_s
*) qe
;
953 if (wwn_is_equal(rport
->pwwn
, pwwn
))
957 bfa_trc(port
->fcs
, pwwn
);
962 * NWWN based Lookup for a R-Port in the Port R-Port Queue
964 struct bfa_fcs_rport_s
*
965 bfa_fcs_lport_get_rport_by_nwwn(struct bfa_fcs_lport_s
*port
, wwn_t nwwn
)
967 struct bfa_fcs_rport_s
*rport
;
968 struct list_head
*qe
;
970 list_for_each(qe
, &port
->rport_q
) {
971 rport
= (struct bfa_fcs_rport_s
*) qe
;
972 if (wwn_is_equal(rport
->nwwn
, nwwn
))
976 bfa_trc(port
->fcs
, nwwn
);
981 * PWWN & PID based Lookup for a R-Port in the Port R-Port Queue
983 struct bfa_fcs_rport_s
*
984 bfa_fcs_lport_get_rport_by_qualifier(struct bfa_fcs_lport_s
*port
,
987 struct bfa_fcs_rport_s
*rport
;
988 struct list_head
*qe
;
990 list_for_each(qe
, &port
->rport_q
) {
991 rport
= (struct bfa_fcs_rport_s
*) qe
;
992 if (wwn_is_equal(rport
->pwwn
, pwwn
) && rport
->pid
== pid
)
996 bfa_trc(port
->fcs
, pwwn
);
1001 * Called by rport module when new rports are discovered.
1004 bfa_fcs_lport_add_rport(
1005 struct bfa_fcs_lport_s
*port
,
1006 struct bfa_fcs_rport_s
*rport
)
1008 list_add_tail(&rport
->qe
, &port
->rport_q
);
1013 * Called by rport module to when rports are deleted.
1016 bfa_fcs_lport_del_rport(
1017 struct bfa_fcs_lport_s
*port
,
1018 struct bfa_fcs_rport_s
*rport
)
1020 WARN_ON(!bfa_q_is_on_q(&port
->rport_q
, rport
));
1021 list_del(&rport
->qe
);
1024 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_DELRPORT
);
1028 * Called by fabric for base port when fabric login is complete.
1029 * Called by vport for virtual ports when FDISC is complete.
1032 bfa_fcs_lport_online(struct bfa_fcs_lport_s
*port
)
1034 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_ONLINE
);
1038 * Called by fabric for base port when fabric goes offline.
1039 * Called by vport for virtual ports when virtual port becomes offline.
1042 bfa_fcs_lport_offline(struct bfa_fcs_lport_s
*port
)
1044 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_OFFLINE
);
1048 * Called by fabric for base port and by vport for virtual ports
1049 * when target mode driver is unloaded.
1052 bfa_fcs_lport_stop(struct bfa_fcs_lport_s
*port
)
1054 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_STOP
);
1058 * Called by fabric to delete base lport and associated resources.
1060 * Called by vport to delete lport and associated resources. Should call
1061 * bfa_fcs_vport_delete_comp() for vports on completion.
1064 bfa_fcs_lport_delete(struct bfa_fcs_lport_s
*port
)
1066 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_DELETE
);
1070 * Return TRUE if port is online, else return FALSE
1073 bfa_fcs_lport_is_online(struct bfa_fcs_lport_s
*port
)
1075 return bfa_sm_cmp_state(port
, bfa_fcs_lport_sm_online
);
1079 * Attach time initialization of logical ports.
1082 bfa_fcs_lport_attach(struct bfa_fcs_lport_s
*lport
, struct bfa_fcs_s
*fcs
,
1083 u16 vf_id
, struct bfa_fcs_vport_s
*vport
)
1086 lport
->fabric
= bfa_fcs_vf_lookup(fcs
, vf_id
);
1087 lport
->vport
= vport
;
1088 lport
->lp_tag
= (vport
) ? vport
->lps
->bfa_tag
:
1089 lport
->fabric
->lps
->bfa_tag
;
1091 INIT_LIST_HEAD(&lport
->rport_q
);
1092 lport
->num_rports
= 0;
1096 * Logical port initialization of base or virtual port.
1097 * Called by fabric for base port or by vport for virtual ports.
1101 bfa_fcs_lport_init(struct bfa_fcs_lport_s
*lport
,
1102 struct bfa_lport_cfg_s
*port_cfg
)
1104 struct bfa_fcs_vport_s
*vport
= lport
->vport
;
1105 struct bfad_s
*bfad
= (struct bfad_s
*)lport
->fcs
->bfad
;
1106 char lpwwn_buf
[BFA_STRING_32
];
1108 lport
->port_cfg
= *port_cfg
;
1110 lport
->bfad_port
= bfa_fcb_lport_new(lport
->fcs
->bfad
, lport
,
1111 lport
->port_cfg
.roles
,
1112 lport
->fabric
->vf_drv
,
1113 vport
? vport
->vport_drv
: NULL
);
1115 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(lport
));
1116 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
1117 "New logical port created: WWN = %s Role = %s\n",
1118 lpwwn_buf
, "Initiator");
1119 bfa_fcs_lport_aen_post(lport
, BFA_LPORT_AEN_NEW
);
1121 bfa_sm_set_state(lport
, bfa_fcs_lport_sm_uninit
);
1122 bfa_sm_send_event(lport
, BFA_FCS_PORT_SM_CREATE
);
1126 bfa_fcs_lport_set_symname(struct bfa_fcs_lport_s
*port
,
1129 strcpy(port
->port_cfg
.sym_name
.symname
, symname
);
1131 if (bfa_sm_cmp_state(port
, bfa_fcs_lport_sm_online
))
1132 bfa_fcs_lport_ns_util_send_rspn_id(
1133 BFA_FCS_GET_NS_FROM_PORT(port
), NULL
);
1141 bfa_fcs_lport_get_attr(
1142 struct bfa_fcs_lport_s
*port
,
1143 struct bfa_lport_attr_s
*port_attr
)
1145 if (bfa_sm_cmp_state(port
, bfa_fcs_lport_sm_online
))
1146 port_attr
->pid
= port
->pid
;
1150 port_attr
->port_cfg
= port
->port_cfg
;
1153 port_attr
->port_type
= port
->fabric
->oper_type
;
1154 port_attr
->loopback
= bfa_sm_cmp_state(port
->fabric
,
1155 bfa_fcs_fabric_sm_loopback
);
1156 port_attr
->authfail
=
1157 bfa_sm_cmp_state(port
->fabric
,
1158 bfa_fcs_fabric_sm_auth_failed
);
1159 port_attr
->fabric_name
= bfa_fcs_lport_get_fabric_name(port
);
1160 memcpy(port_attr
->fabric_ip_addr
,
1161 bfa_fcs_lport_get_fabric_ipaddr(port
),
1162 BFA_FCS_FABRIC_IPADDR_SZ
);
1164 if (port
->vport
!= NULL
) {
1165 port_attr
->port_type
= BFA_PORT_TYPE_VPORT
;
1166 port_attr
->fpma_mac
=
1167 port
->vport
->lps
->lp_mac
;
1169 port_attr
->fpma_mac
=
1170 port
->fabric
->lps
->lp_mac
;
1173 port_attr
->port_type
= BFA_PORT_TYPE_UNKNOWN
;
1174 port_attr
->state
= BFA_LPORT_UNINIT
;
1179 * bfa_fcs_lport_fab port fab functions
1183 * Called by port to initialize fabric services of the base port.
1186 bfa_fcs_lport_fab_init(struct bfa_fcs_lport_s
*port
)
1188 bfa_fcs_lport_ns_init(port
);
1189 bfa_fcs_lport_scn_init(port
);
1190 bfa_fcs_lport_ms_init(port
);
1194 * Called by port to notify transition to online state.
1197 bfa_fcs_lport_fab_online(struct bfa_fcs_lport_s
*port
)
1199 bfa_fcs_lport_ns_online(port
);
1200 bfa_fcs_lport_fab_scn_online(port
);
1204 * Called by port to notify transition to offline state.
1207 bfa_fcs_lport_fab_offline(struct bfa_fcs_lport_s
*port
)
1209 bfa_fcs_lport_ns_offline(port
);
1210 bfa_fcs_lport_scn_offline(port
);
1211 bfa_fcs_lport_ms_offline(port
);
1215 * bfa_fcs_lport_n2n functions
1219 * Called by fcs/port to initialize N2N topology.
1222 bfa_fcs_lport_n2n_init(struct bfa_fcs_lport_s
*port
)
1227 * Called by fcs/port to notify transition to online state.
1230 bfa_fcs_lport_n2n_online(struct bfa_fcs_lport_s
*port
)
1232 struct bfa_fcs_lport_n2n_s
*n2n_port
= &port
->port_topo
.pn2n
;
1233 struct bfa_lport_cfg_s
*pcfg
= &port
->port_cfg
;
1234 struct bfa_fcs_rport_s
*rport
;
1236 bfa_trc(port
->fcs
, pcfg
->pwwn
);
1239 * If our PWWN is > than that of the r-port, we have to initiate PLOGI
1240 * and assign an Address. if not, we need to wait for its PLOGI.
1242 * If our PWWN is < than that of the remote port, it will send a PLOGI
1243 * with the PIDs assigned. The rport state machine take care of this
1247 ((void *)&pcfg
->pwwn
, (void *)&n2n_port
->rem_port_wwn
,
1248 sizeof(wwn_t
)) > 0) {
1249 port
->pid
= N2N_LOCAL_PID
;
1250 bfa_lps_set_n2n_pid(port
->fabric
->lps
, N2N_LOCAL_PID
);
1252 * First, check if we know the device by pwwn.
1254 rport
= bfa_fcs_lport_get_rport_by_pwwn(port
,
1255 n2n_port
->rem_port_wwn
);
1257 bfa_trc(port
->fcs
, rport
->pid
);
1258 bfa_trc(port
->fcs
, rport
->pwwn
);
1259 rport
->pid
= N2N_REMOTE_PID
;
1260 bfa_sm_send_event(rport
, RPSM_EVENT_PLOGI_SEND
);
1265 * In n2n there can be only one rport. Delete the old one
1266 * whose pid should be zero, because it is offline.
1268 if (port
->num_rports
> 0) {
1269 rport
= bfa_fcs_lport_get_rport_by_pid(port
, 0);
1270 WARN_ON(rport
== NULL
);
1272 bfa_trc(port
->fcs
, rport
->pwwn
);
1273 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
1276 bfa_fcs_rport_create(port
, N2N_REMOTE_PID
);
1281 * Called by fcs/port to notify transition to offline state.
1284 bfa_fcs_lport_n2n_offline(struct bfa_fcs_lport_s
*port
)
1286 struct bfa_fcs_lport_n2n_s
*n2n_port
= &port
->port_topo
.pn2n
;
1288 bfa_trc(port
->fcs
, port
->pid
);
1290 n2n_port
->rem_port_wwn
= 0;
1291 n2n_port
->reply_oxid
= 0;
1295 bfa_fcport_get_loop_attr(struct bfa_fcs_lport_s
*port
)
1297 int i
= 0, j
= 0, bit
= 0, alpa_bit
= 0;
1299 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(port
->fcs
->bfa
);
1301 port
->port_topo
.ploop
.alpabm_valid
= fcport
->alpabm_valid
;
1302 port
->pid
= fcport
->myalpa
;
1303 port
->pid
= bfa_hton3b(port
->pid
);
1305 for (i
= 0; i
< (FC_ALPA_MAX
/ 8); i
++) {
1306 for (j
= 0, alpa_bit
= 0; j
< 8; j
++, alpa_bit
++) {
1307 bfa_trc(port
->fcs
->bfa
, fcport
->alpabm
.alpa_bm
[i
]);
1308 bit
= (fcport
->alpabm
.alpa_bm
[i
] & (1 << (7 - j
)));
1310 port
->port_topo
.ploop
.alpa_pos_map
[k
] =
1311 loop_alpa_map
[(i
* 8) + alpa_bit
];
1313 bfa_trc(port
->fcs
->bfa
, k
);
1314 bfa_trc(port
->fcs
->bfa
,
1315 port
->port_topo
.ploop
.alpa_pos_map
[k
]);
1319 port
->port_topo
.ploop
.num_alpa
= k
;
1323 * Called by fcs/port to initialize Loop topology.
1326 bfa_fcs_lport_loop_init(struct bfa_fcs_lport_s
*port
)
1331 * Called by fcs/port to notify transition to online state.
1334 bfa_fcs_lport_loop_online(struct bfa_fcs_lport_s
*port
)
1336 u8 num_alpa
= 0, alpabm_valid
= 0;
1337 struct bfa_fcs_rport_s
*rport
;
1338 u8
*alpa_map
= NULL
;
1342 bfa_fcport_get_loop_attr(port
);
1344 num_alpa
= port
->port_topo
.ploop
.num_alpa
;
1345 alpabm_valid
= port
->port_topo
.ploop
.alpabm_valid
;
1346 alpa_map
= port
->port_topo
.ploop
.alpa_pos_map
;
1348 bfa_trc(port
->fcs
->bfa
, port
->pid
);
1349 bfa_trc(port
->fcs
->bfa
, num_alpa
);
1350 if (alpabm_valid
== 1) {
1351 for (i
= 0; i
< num_alpa
; i
++) {
1352 bfa_trc(port
->fcs
->bfa
, alpa_map
[i
]);
1353 if (alpa_map
[i
] != bfa_hton3b(port
->pid
)) {
1355 bfa_trc(port
->fcs
->bfa
, pid
);
1356 rport
= bfa_fcs_lport_get_rport_by_pid(port
,
1359 rport
= bfa_fcs_rport_create(port
,
1364 for (i
= 0; i
< MAX_ALPA_COUNT
; i
++) {
1365 if (alpa_map
[i
] != port
->pid
) {
1366 pid
= loop_alpa_map
[i
];
1367 bfa_trc(port
->fcs
->bfa
, pid
);
1368 rport
= bfa_fcs_lport_get_rport_by_pid(port
,
1371 rport
= bfa_fcs_rport_create(port
,
1379 * Called by fcs/port to notify transition to offline state.
1382 bfa_fcs_lport_loop_offline(struct bfa_fcs_lport_s
*port
)
1386 #define BFA_FCS_FDMI_CMD_MAX_RETRIES 2
1389 * forward declarations
1391 static void bfa_fcs_lport_fdmi_send_rhba(void *fdmi_cbarg
,
1392 struct bfa_fcxp_s
*fcxp_alloced
);
1393 static void bfa_fcs_lport_fdmi_send_rprt(void *fdmi_cbarg
,
1394 struct bfa_fcxp_s
*fcxp_alloced
);
1395 static void bfa_fcs_lport_fdmi_send_rpa(void *fdmi_cbarg
,
1396 struct bfa_fcxp_s
*fcxp_alloced
);
1397 static void bfa_fcs_lport_fdmi_rhba_response(void *fcsarg
,
1398 struct bfa_fcxp_s
*fcxp
,
1400 bfa_status_t req_status
,
1403 struct fchs_s
*rsp_fchs
);
1404 static void bfa_fcs_lport_fdmi_rprt_response(void *fcsarg
,
1405 struct bfa_fcxp_s
*fcxp
,
1407 bfa_status_t req_status
,
1410 struct fchs_s
*rsp_fchs
);
1411 static void bfa_fcs_lport_fdmi_rpa_response(void *fcsarg
,
1412 struct bfa_fcxp_s
*fcxp
,
1414 bfa_status_t req_status
,
1417 struct fchs_s
*rsp_fchs
);
1418 static void bfa_fcs_lport_fdmi_timeout(void *arg
);
1419 static u16
bfa_fcs_lport_fdmi_build_rhba_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1421 static u16
bfa_fcs_lport_fdmi_build_rprt_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1423 static u16
bfa_fcs_lport_fdmi_build_rpa_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1425 static u16
bfa_fcs_lport_fdmi_build_portattr_block(struct bfa_fcs_lport_fdmi_s
*
1427 static void bfa_fcs_fdmi_get_hbaattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1428 struct bfa_fcs_fdmi_hba_attr_s
*hba_attr
);
1429 static void bfa_fcs_fdmi_get_portattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1430 struct bfa_fcs_fdmi_port_attr_s
*port_attr
);
1431 u32
bfa_fcs_fdmi_convert_speed(enum bfa_port_speed pport_speed
);
1434 * fcs_fdmi_sm FCS FDMI state machine
1438 * FDMI State Machine events
1440 enum port_fdmi_event
{
1441 FDMISM_EVENT_PORT_ONLINE
= 1,
1442 FDMISM_EVENT_PORT_OFFLINE
= 2,
1443 FDMISM_EVENT_RSP_OK
= 4,
1444 FDMISM_EVENT_RSP_ERROR
= 5,
1445 FDMISM_EVENT_TIMEOUT
= 6,
1446 FDMISM_EVENT_RHBA_SENT
= 7,
1447 FDMISM_EVENT_RPRT_SENT
= 8,
1448 FDMISM_EVENT_RPA_SENT
= 9,
1451 static void bfa_fcs_lport_fdmi_sm_offline(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1452 enum port_fdmi_event event
);
1453 static void bfa_fcs_lport_fdmi_sm_sending_rhba(
1454 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1455 enum port_fdmi_event event
);
1456 static void bfa_fcs_lport_fdmi_sm_rhba(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1457 enum port_fdmi_event event
);
1458 static void bfa_fcs_lport_fdmi_sm_rhba_retry(
1459 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1460 enum port_fdmi_event event
);
1461 static void bfa_fcs_lport_fdmi_sm_sending_rprt(
1462 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1463 enum port_fdmi_event event
);
1464 static void bfa_fcs_lport_fdmi_sm_rprt(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1465 enum port_fdmi_event event
);
1466 static void bfa_fcs_lport_fdmi_sm_rprt_retry(
1467 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1468 enum port_fdmi_event event
);
1469 static void bfa_fcs_lport_fdmi_sm_sending_rpa(
1470 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1471 enum port_fdmi_event event
);
1472 static void bfa_fcs_lport_fdmi_sm_rpa(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1473 enum port_fdmi_event event
);
1474 static void bfa_fcs_lport_fdmi_sm_rpa_retry(
1475 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1476 enum port_fdmi_event event
);
1477 static void bfa_fcs_lport_fdmi_sm_online(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1478 enum port_fdmi_event event
);
1479 static void bfa_fcs_lport_fdmi_sm_disabled(
1480 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1481 enum port_fdmi_event event
);
1483 * Start in offline state - awaiting MS to send start.
1486 bfa_fcs_lport_fdmi_sm_offline(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1487 enum port_fdmi_event event
)
1489 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1491 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1492 bfa_trc(port
->fcs
, event
);
1494 fdmi
->retry_cnt
= 0;
1497 case FDMISM_EVENT_PORT_ONLINE
:
1500 * For Vports, register a new port.
1502 bfa_sm_set_state(fdmi
,
1503 bfa_fcs_lport_fdmi_sm_sending_rprt
);
1504 bfa_fcs_lport_fdmi_send_rprt(fdmi
, NULL
);
1507 * For a base port, we should first register the HBA
1508 * attribute. The HBA attribute also contains the base
1509 * port registration.
1511 bfa_sm_set_state(fdmi
,
1512 bfa_fcs_lport_fdmi_sm_sending_rhba
);
1513 bfa_fcs_lport_fdmi_send_rhba(fdmi
, NULL
);
1517 case FDMISM_EVENT_PORT_OFFLINE
:
1521 bfa_sm_fault(port
->fcs
, event
);
1526 bfa_fcs_lport_fdmi_sm_sending_rhba(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1527 enum port_fdmi_event event
)
1529 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1531 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1532 bfa_trc(port
->fcs
, event
);
1535 case FDMISM_EVENT_RHBA_SENT
:
1536 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rhba
);
1539 case FDMISM_EVENT_PORT_OFFLINE
:
1540 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1541 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(port
),
1546 bfa_sm_fault(port
->fcs
, event
);
1551 bfa_fcs_lport_fdmi_sm_rhba(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1552 enum port_fdmi_event event
)
1554 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1556 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1557 bfa_trc(port
->fcs
, event
);
1560 case FDMISM_EVENT_RSP_ERROR
:
1562 * if max retries have not been reached, start timer for a
1565 if (fdmi
->retry_cnt
++ < BFA_FCS_FDMI_CMD_MAX_RETRIES
) {
1566 bfa_sm_set_state(fdmi
,
1567 bfa_fcs_lport_fdmi_sm_rhba_retry
);
1568 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(port
),
1570 bfa_fcs_lport_fdmi_timeout
, fdmi
,
1571 BFA_FCS_RETRY_TIMEOUT
);
1574 * set state to offline
1576 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1580 case FDMISM_EVENT_RSP_OK
:
1582 * Initiate Register Port Attributes
1584 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rpa
);
1585 fdmi
->retry_cnt
= 0;
1586 bfa_fcs_lport_fdmi_send_rpa(fdmi
, NULL
);
1589 case FDMISM_EVENT_PORT_OFFLINE
:
1590 bfa_fcxp_discard(fdmi
->fcxp
);
1591 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1595 bfa_sm_fault(port
->fcs
, event
);
1600 bfa_fcs_lport_fdmi_sm_rhba_retry(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1601 enum port_fdmi_event event
)
1603 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1605 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1606 bfa_trc(port
->fcs
, event
);
1609 case FDMISM_EVENT_TIMEOUT
:
1611 * Retry Timer Expired. Re-send
1613 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rhba
);
1614 bfa_fcs_lport_fdmi_send_rhba(fdmi
, NULL
);
1617 case FDMISM_EVENT_PORT_OFFLINE
:
1618 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1619 bfa_timer_stop(&fdmi
->timer
);
1623 bfa_sm_fault(port
->fcs
, event
);
1628 * RPRT : Register Port
1631 bfa_fcs_lport_fdmi_sm_sending_rprt(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1632 enum port_fdmi_event event
)
1634 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1636 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1637 bfa_trc(port
->fcs
, event
);
1640 case FDMISM_EVENT_RPRT_SENT
:
1641 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rprt
);
1644 case FDMISM_EVENT_PORT_OFFLINE
:
1645 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1646 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(port
),
1651 bfa_sm_fault(port
->fcs
, event
);
1656 bfa_fcs_lport_fdmi_sm_rprt(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1657 enum port_fdmi_event event
)
1659 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1661 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1662 bfa_trc(port
->fcs
, event
);
1665 case FDMISM_EVENT_RSP_ERROR
:
1667 * if max retries have not been reached, start timer for a
1670 if (fdmi
->retry_cnt
++ < BFA_FCS_FDMI_CMD_MAX_RETRIES
) {
1671 bfa_sm_set_state(fdmi
,
1672 bfa_fcs_lport_fdmi_sm_rprt_retry
);
1673 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(port
),
1675 bfa_fcs_lport_fdmi_timeout
, fdmi
,
1676 BFA_FCS_RETRY_TIMEOUT
);
1680 * set state to offline
1682 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1683 fdmi
->retry_cnt
= 0;
1687 case FDMISM_EVENT_RSP_OK
:
1688 fdmi
->retry_cnt
= 0;
1689 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_online
);
1692 case FDMISM_EVENT_PORT_OFFLINE
:
1693 bfa_fcxp_discard(fdmi
->fcxp
);
1694 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1698 bfa_sm_fault(port
->fcs
, event
);
1703 bfa_fcs_lport_fdmi_sm_rprt_retry(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1704 enum port_fdmi_event event
)
1706 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1708 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1709 bfa_trc(port
->fcs
, event
);
1712 case FDMISM_EVENT_TIMEOUT
:
1714 * Retry Timer Expired. Re-send
1716 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rprt
);
1717 bfa_fcs_lport_fdmi_send_rprt(fdmi
, NULL
);
1720 case FDMISM_EVENT_PORT_OFFLINE
:
1721 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1722 bfa_timer_stop(&fdmi
->timer
);
1726 bfa_sm_fault(port
->fcs
, event
);
1731 * Register Port Attributes
1734 bfa_fcs_lport_fdmi_sm_sending_rpa(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1735 enum port_fdmi_event event
)
1737 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1739 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1740 bfa_trc(port
->fcs
, event
);
1743 case FDMISM_EVENT_RPA_SENT
:
1744 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rpa
);
1747 case FDMISM_EVENT_PORT_OFFLINE
:
1748 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1749 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(port
),
1754 bfa_sm_fault(port
->fcs
, event
);
1759 bfa_fcs_lport_fdmi_sm_rpa(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1760 enum port_fdmi_event event
)
1762 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1764 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1765 bfa_trc(port
->fcs
, event
);
1768 case FDMISM_EVENT_RSP_ERROR
:
1770 * if max retries have not been reached, start timer for a
1773 if (fdmi
->retry_cnt
++ < BFA_FCS_FDMI_CMD_MAX_RETRIES
) {
1774 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rpa_retry
);
1775 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(port
),
1777 bfa_fcs_lport_fdmi_timeout
, fdmi
,
1778 BFA_FCS_RETRY_TIMEOUT
);
1781 * set state to offline
1783 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1784 fdmi
->retry_cnt
= 0;
1788 case FDMISM_EVENT_RSP_OK
:
1789 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_online
);
1790 fdmi
->retry_cnt
= 0;
1793 case FDMISM_EVENT_PORT_OFFLINE
:
1794 bfa_fcxp_discard(fdmi
->fcxp
);
1795 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1799 bfa_sm_fault(port
->fcs
, event
);
1804 bfa_fcs_lport_fdmi_sm_rpa_retry(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1805 enum port_fdmi_event event
)
1807 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1809 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1810 bfa_trc(port
->fcs
, event
);
1813 case FDMISM_EVENT_TIMEOUT
:
1815 * Retry Timer Expired. Re-send
1817 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rpa
);
1818 bfa_fcs_lport_fdmi_send_rpa(fdmi
, NULL
);
1821 case FDMISM_EVENT_PORT_OFFLINE
:
1822 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1823 bfa_timer_stop(&fdmi
->timer
);
1827 bfa_sm_fault(port
->fcs
, event
);
1832 bfa_fcs_lport_fdmi_sm_online(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1833 enum port_fdmi_event event
)
1835 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1837 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1838 bfa_trc(port
->fcs
, event
);
1841 case FDMISM_EVENT_PORT_OFFLINE
:
1842 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1846 bfa_sm_fault(port
->fcs
, event
);
1850 * FDMI is disabled state.
1853 bfa_fcs_lport_fdmi_sm_disabled(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1854 enum port_fdmi_event event
)
1856 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1858 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1859 bfa_trc(port
->fcs
, event
);
1861 /* No op State. It can only be enabled at Driver Init. */
1865 * RHBA : Register HBA Attributes.
1868 bfa_fcs_lport_fdmi_send_rhba(void *fdmi_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
1870 struct bfa_fcs_lport_fdmi_s
*fdmi
= fdmi_cbarg
;
1871 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1874 struct bfa_fcxp_s
*fcxp
;
1877 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1879 fcxp
= fcxp_alloced
? fcxp_alloced
:
1880 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
1882 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &fdmi
->fcxp_wqe
,
1883 bfa_fcs_lport_fdmi_send_rhba
, fdmi
, BFA_TRUE
);
1888 pyld
= bfa_fcxp_get_reqbuf(fcxp
);
1889 memset(pyld
, 0, FC_MAX_PDUSZ
);
1891 len
= fc_fdmi_reqhdr_build(&fchs
, pyld
, bfa_fcs_lport_get_fcid(port
),
1895 bfa_fcs_lport_fdmi_build_rhba_pyld(fdmi
,
1896 (u8
*) ((struct ct_hdr_s
*) pyld
1899 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
1900 FC_CLASS_3
, (len
+ attr_len
), &fchs
,
1901 bfa_fcs_lport_fdmi_rhba_response
, (void *)fdmi
,
1902 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
1904 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RHBA_SENT
);
1908 bfa_fcs_lport_fdmi_build_rhba_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
, u8
*pyld
)
1910 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1911 struct bfa_fcs_fdmi_hba_attr_s hba_attr
;
1912 struct bfa_fcs_fdmi_hba_attr_s
*fcs_hba_attr
= &hba_attr
;
1913 struct fdmi_rhba_s
*rhba
= (struct fdmi_rhba_s
*) pyld
;
1914 struct fdmi_attr_s
*attr
;
1920 * get hba attributes
1922 bfa_fcs_fdmi_get_hbaattr(fdmi
, fcs_hba_attr
);
1924 rhba
->hba_id
= bfa_fcs_lport_get_pwwn(port
);
1925 rhba
->port_list
.num_ports
= cpu_to_be32(1);
1926 rhba
->port_list
.port_entry
= bfa_fcs_lport_get_pwwn(port
);
1928 len
= sizeof(rhba
->hba_id
) + sizeof(rhba
->port_list
);
1931 len
+= sizeof(rhba
->hba_attr_blk
.attr_count
);
1934 * fill out the invididual entries of the HBA attrib Block
1936 curr_ptr
= (u8
*) &rhba
->hba_attr_blk
.hba_attr
;
1941 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1942 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_NODENAME
);
1943 templen
= sizeof(wwn_t
);
1944 memcpy(attr
->value
, &bfa_fcs_lport_get_nwwn(port
), templen
);
1945 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1948 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1954 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1955 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MANUFACTURER
);
1956 templen
= (u16
) strlen(fcs_hba_attr
->manufacturer
);
1957 memcpy(attr
->value
, fcs_hba_attr
->manufacturer
, templen
);
1958 templen
= fc_roundup(templen
, sizeof(u32
));
1959 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1962 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1968 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1969 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_SERIALNUM
);
1970 templen
= (u16
) strlen(fcs_hba_attr
->serial_num
);
1971 memcpy(attr
->value
, fcs_hba_attr
->serial_num
, templen
);
1972 templen
= fc_roundup(templen
, sizeof(u32
));
1973 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1976 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1982 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1983 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MODEL
);
1984 templen
= (u16
) strlen(fcs_hba_attr
->model
);
1985 memcpy(attr
->value
, fcs_hba_attr
->model
, templen
);
1986 templen
= fc_roundup(templen
, sizeof(u32
));
1987 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1990 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1996 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1997 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MODEL_DESC
);
1998 templen
= (u16
) strlen(fcs_hba_attr
->model_desc
);
1999 memcpy(attr
->value
, fcs_hba_attr
->model_desc
, templen
);
2000 templen
= fc_roundup(templen
, sizeof(u32
));
2001 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2004 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2010 if (fcs_hba_attr
->hw_version
[0] != '\0') {
2011 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2012 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_HW_VERSION
);
2013 templen
= (u16
) strlen(fcs_hba_attr
->hw_version
);
2014 memcpy(attr
->value
, fcs_hba_attr
->hw_version
, templen
);
2015 templen
= fc_roundup(templen
, sizeof(u32
));
2016 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2019 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2026 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2027 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_DRIVER_VERSION
);
2028 templen
= (u16
) strlen(fcs_hba_attr
->driver_version
);
2029 memcpy(attr
->value
, fcs_hba_attr
->driver_version
, templen
);
2030 templen
= fc_roundup(templen
, sizeof(u32
));
2031 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2034 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2038 * Option Rom Version
2040 if (fcs_hba_attr
->option_rom_ver
[0] != '\0') {
2041 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2042 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_ROM_VERSION
);
2043 templen
= (u16
) strlen(fcs_hba_attr
->option_rom_ver
);
2044 memcpy(attr
->value
, fcs_hba_attr
->option_rom_ver
, templen
);
2045 templen
= fc_roundup(templen
, sizeof(u32
));
2046 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2049 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2053 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2054 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_FW_VERSION
);
2055 templen
= (u16
) strlen(fcs_hba_attr
->fw_version
);
2056 memcpy(attr
->value
, fcs_hba_attr
->fw_version
, templen
);
2057 templen
= fc_roundup(templen
, sizeof(u32
));
2058 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2061 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2067 if (fcs_hba_attr
->os_name
[0] != '\0') {
2068 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2069 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_OS_NAME
);
2070 templen
= (u16
) strlen(fcs_hba_attr
->os_name
);
2071 memcpy(attr
->value
, fcs_hba_attr
->os_name
, templen
);
2072 templen
= fc_roundup(templen
, sizeof(u32
));
2073 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2076 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2083 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2084 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MAX_CT
);
2085 templen
= sizeof(fcs_hba_attr
->max_ct_pyld
);
2086 memcpy(attr
->value
, &fcs_hba_attr
->max_ct_pyld
, templen
);
2087 templen
= fc_roundup(templen
, sizeof(u32
));
2088 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2091 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2094 * Send extended attributes ( FOS 7.1 support )
2096 if (fdmi
->retry_cnt
== 0) {
2097 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2098 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_NODE_SYM_NAME
);
2099 templen
= sizeof(fcs_hba_attr
->node_sym_name
);
2100 memcpy(attr
->value
, &fcs_hba_attr
->node_sym_name
, templen
);
2101 templen
= fc_roundup(templen
, sizeof(u32
));
2102 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2105 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2108 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2109 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_VENDOR_ID
);
2110 templen
= sizeof(fcs_hba_attr
->vendor_info
);
2111 memcpy(attr
->value
, &fcs_hba_attr
->vendor_info
, templen
);
2112 templen
= fc_roundup(templen
, sizeof(u32
));
2113 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2116 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2119 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2120 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_NUM_PORTS
);
2121 templen
= sizeof(fcs_hba_attr
->num_ports
);
2122 memcpy(attr
->value
, &fcs_hba_attr
->num_ports
, templen
);
2123 templen
= fc_roundup(templen
, sizeof(u32
));
2124 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2127 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2130 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2131 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_FABRIC_NAME
);
2132 templen
= sizeof(fcs_hba_attr
->fabric_name
);
2133 memcpy(attr
->value
, &fcs_hba_attr
->fabric_name
, templen
);
2134 templen
= fc_roundup(templen
, sizeof(u32
));
2135 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2138 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2141 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2142 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_BIOS_VER
);
2143 templen
= sizeof(fcs_hba_attr
->bios_ver
);
2144 memcpy(attr
->value
, &fcs_hba_attr
->bios_ver
, templen
);
2145 templen
= fc_roundup(attr
->len
, sizeof(u32
));
2146 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2149 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2154 * Update size of payload
2156 len
+= ((sizeof(attr
->type
) + sizeof(attr
->len
)) * count
);
2158 rhba
->hba_attr_blk
.attr_count
= cpu_to_be32(count
);
2163 bfa_fcs_lport_fdmi_rhba_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2164 void *cbarg
, bfa_status_t req_status
,
2165 u32 rsp_len
, u32 resid_len
,
2166 struct fchs_s
*rsp_fchs
)
2168 struct bfa_fcs_lport_fdmi_s
*fdmi
=
2169 (struct bfa_fcs_lport_fdmi_s
*) cbarg
;
2170 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2171 struct ct_hdr_s
*cthdr
= NULL
;
2173 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2178 if (req_status
!= BFA_STATUS_OK
) {
2179 bfa_trc(port
->fcs
, req_status
);
2180 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2184 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2185 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2187 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2188 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_OK
);
2192 bfa_trc(port
->fcs
, cthdr
->reason_code
);
2193 bfa_trc(port
->fcs
, cthdr
->exp_code
);
2194 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2198 * RPRT : Register Port
2201 bfa_fcs_lport_fdmi_send_rprt(void *fdmi_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
2203 struct bfa_fcs_lport_fdmi_s
*fdmi
= fdmi_cbarg
;
2204 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2207 struct bfa_fcxp_s
*fcxp
;
2210 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2212 fcxp
= fcxp_alloced
? fcxp_alloced
:
2213 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
2215 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &fdmi
->fcxp_wqe
,
2216 bfa_fcs_lport_fdmi_send_rprt
, fdmi
, BFA_TRUE
);
2221 pyld
= bfa_fcxp_get_reqbuf(fcxp
);
2222 memset(pyld
, 0, FC_MAX_PDUSZ
);
2224 len
= fc_fdmi_reqhdr_build(&fchs
, pyld
, bfa_fcs_lport_get_fcid(port
),
2228 bfa_fcs_lport_fdmi_build_rprt_pyld(fdmi
,
2229 (u8
*) ((struct ct_hdr_s
*) pyld
2232 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
2233 FC_CLASS_3
, len
+ attr_len
, &fchs
,
2234 bfa_fcs_lport_fdmi_rprt_response
, (void *)fdmi
,
2235 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
2237 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RPRT_SENT
);
2241 * This routine builds Port Attribute Block that used in RPA, RPRT commands.
2244 bfa_fcs_lport_fdmi_build_portattr_block(struct bfa_fcs_lport_fdmi_s
*fdmi
,
2247 struct bfa_fcs_fdmi_port_attr_s fcs_port_attr
;
2248 struct fdmi_port_attr_s
*port_attrib
= (struct fdmi_port_attr_s
*) pyld
;
2249 struct fdmi_attr_s
*attr
;
2256 * get port attributes
2258 bfa_fcs_fdmi_get_portattr(fdmi
, &fcs_port_attr
);
2260 len
= sizeof(port_attrib
->attr_count
);
2263 * fill out the invididual entries
2265 curr_ptr
= (u8
*) &port_attrib
->port_attr
;
2270 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2271 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_FC4_TYPES
);
2272 templen
= sizeof(fcs_port_attr
.supp_fc4_types
);
2273 memcpy(attr
->value
, fcs_port_attr
.supp_fc4_types
, templen
);
2274 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2278 cpu_to_be16(templen
+ sizeof(attr
->type
) +
2284 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2285 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_SUPP_SPEED
);
2286 templen
= sizeof(fcs_port_attr
.supp_speed
);
2287 memcpy(attr
->value
, &fcs_port_attr
.supp_speed
, templen
);
2288 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2292 cpu_to_be16(templen
+ sizeof(attr
->type
) +
2296 * current Port Speed
2298 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2299 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_SPEED
);
2300 templen
= sizeof(fcs_port_attr
.curr_speed
);
2301 memcpy(attr
->value
, &fcs_port_attr
.curr_speed
, templen
);
2302 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2305 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2311 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2312 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_FRAME_SIZE
);
2313 templen
= sizeof(fcs_port_attr
.max_frm_size
);
2314 memcpy(attr
->value
, &fcs_port_attr
.max_frm_size
, templen
);
2315 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2318 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2324 if (fcs_port_attr
.os_device_name
[0] != '\0') {
2325 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2326 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_DEV_NAME
);
2327 templen
= (u16
) strlen(fcs_port_attr
.os_device_name
);
2328 memcpy(attr
->value
, fcs_port_attr
.os_device_name
, templen
);
2329 templen
= fc_roundup(templen
, sizeof(u32
));
2330 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2333 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2339 if (fcs_port_attr
.host_name
[0] != '\0') {
2340 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2341 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_HOST_NAME
);
2342 templen
= (u16
) strlen(fcs_port_attr
.host_name
);
2343 memcpy(attr
->value
, fcs_port_attr
.host_name
, templen
);
2344 templen
= fc_roundup(templen
, sizeof(u32
));
2345 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2348 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2352 if (fdmi
->retry_cnt
== 0) {
2353 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2354 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_NODE_NAME
);
2355 templen
= sizeof(fcs_port_attr
.node_name
);
2356 memcpy(attr
->value
, &fcs_port_attr
.node_name
, templen
);
2357 templen
= fc_roundup(templen
, sizeof(u32
));
2358 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2361 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2364 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2365 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_NAME
);
2366 templen
= sizeof(fcs_port_attr
.port_name
);
2367 memcpy(attr
->value
, &fcs_port_attr
.port_name
, templen
);
2368 templen
= fc_roundup(templen
, sizeof(u32
));
2369 curr_ptr
+= sizeof(attr
->type
) + sizeof(attr
->len
) + templen
;
2372 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2375 if (fcs_port_attr
.port_sym_name
.symname
[0] != '\0') {
2376 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2378 cpu_to_be16(FDMI_PORT_ATTRIB_PORT_SYM_NAME
);
2379 templen
= sizeof(fcs_port_attr
.port_sym_name
);
2381 &fcs_port_attr
.port_sym_name
, templen
);
2382 templen
= fc_roundup(templen
, sizeof(u32
));
2383 curr_ptr
+= sizeof(attr
->type
) +
2384 sizeof(templen
) + templen
;
2387 attr
->len
= cpu_to_be16(templen
+
2388 sizeof(attr
->type
) + sizeof(templen
));
2391 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2392 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_TYPE
);
2393 templen
= sizeof(fcs_port_attr
.port_type
);
2394 memcpy(attr
->value
, &fcs_port_attr
.port_type
, templen
);
2395 templen
= fc_roundup(templen
, sizeof(u32
));
2396 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2399 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2402 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2403 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_SUPP_COS
);
2404 templen
= sizeof(fcs_port_attr
.scos
);
2405 memcpy(attr
->value
, &fcs_port_attr
.scos
, templen
);
2406 templen
= fc_roundup(templen
, sizeof(u32
));
2407 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2410 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2413 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2414 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_FAB_NAME
);
2415 templen
= sizeof(fcs_port_attr
.port_fabric_name
);
2416 memcpy(attr
->value
, &fcs_port_attr
.port_fabric_name
, templen
);
2417 templen
= fc_roundup(templen
, sizeof(u32
));
2418 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2421 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2424 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2425 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_FC4_TYPE
);
2426 templen
= sizeof(fcs_port_attr
.port_act_fc4_type
);
2427 memcpy(attr
->value
, fcs_port_attr
.port_act_fc4_type
,
2429 templen
= fc_roundup(templen
, sizeof(u32
));
2430 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2433 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2436 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2437 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_STATE
);
2438 templen
= sizeof(fcs_port_attr
.port_state
);
2439 memcpy(attr
->value
, &fcs_port_attr
.port_state
, templen
);
2440 templen
= fc_roundup(templen
, sizeof(u32
));
2441 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2444 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2447 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2448 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_NUM_RPRT
);
2449 templen
= sizeof(fcs_port_attr
.num_ports
);
2450 memcpy(attr
->value
, &fcs_port_attr
.num_ports
, templen
);
2451 templen
= fc_roundup(templen
, sizeof(u32
));
2452 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2455 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2460 * Update size of payload
2462 port_attrib
->attr_count
= cpu_to_be32(count
);
2463 len
+= ((sizeof(attr
->type
) + sizeof(attr
->len
)) * count
);
2468 bfa_fcs_lport_fdmi_build_rprt_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
, u8
*pyld
)
2470 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2471 struct fdmi_rprt_s
*rprt
= (struct fdmi_rprt_s
*) pyld
;
2474 rprt
->hba_id
= bfa_fcs_lport_get_pwwn(bfa_fcs_get_base_port(port
->fcs
));
2475 rprt
->port_name
= bfa_fcs_lport_get_pwwn(port
);
2477 len
= bfa_fcs_lport_fdmi_build_portattr_block(fdmi
,
2478 (u8
*) &rprt
->port_attr_blk
);
2480 len
+= sizeof(rprt
->hba_id
) + sizeof(rprt
->port_name
);
2486 bfa_fcs_lport_fdmi_rprt_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2487 void *cbarg
, bfa_status_t req_status
,
2488 u32 rsp_len
, u32 resid_len
,
2489 struct fchs_s
*rsp_fchs
)
2491 struct bfa_fcs_lport_fdmi_s
*fdmi
=
2492 (struct bfa_fcs_lport_fdmi_s
*) cbarg
;
2493 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2494 struct ct_hdr_s
*cthdr
= NULL
;
2496 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2501 if (req_status
!= BFA_STATUS_OK
) {
2502 bfa_trc(port
->fcs
, req_status
);
2503 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2507 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2508 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2510 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2511 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_OK
);
2515 bfa_trc(port
->fcs
, cthdr
->reason_code
);
2516 bfa_trc(port
->fcs
, cthdr
->exp_code
);
2517 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2521 * RPA : Register Port Attributes.
2524 bfa_fcs_lport_fdmi_send_rpa(void *fdmi_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
2526 struct bfa_fcs_lport_fdmi_s
*fdmi
= fdmi_cbarg
;
2527 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2530 struct bfa_fcxp_s
*fcxp
;
2533 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2535 fcxp
= fcxp_alloced
? fcxp_alloced
:
2536 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
2538 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &fdmi
->fcxp_wqe
,
2539 bfa_fcs_lport_fdmi_send_rpa
, fdmi
, BFA_TRUE
);
2544 pyld
= bfa_fcxp_get_reqbuf(fcxp
);
2545 memset(pyld
, 0, FC_MAX_PDUSZ
);
2547 len
= fc_fdmi_reqhdr_build(&fchs
, pyld
, bfa_fcs_lport_get_fcid(port
),
2550 attr_len
= bfa_fcs_lport_fdmi_build_rpa_pyld(fdmi
,
2551 (u8
*) ((struct ct_hdr_s
*) pyld
+ 1));
2553 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
2554 FC_CLASS_3
, len
+ attr_len
, &fchs
,
2555 bfa_fcs_lport_fdmi_rpa_response
, (void *)fdmi
,
2556 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
2558 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RPA_SENT
);
2562 bfa_fcs_lport_fdmi_build_rpa_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
, u8
*pyld
)
2564 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2565 struct fdmi_rpa_s
*rpa
= (struct fdmi_rpa_s
*) pyld
;
2568 rpa
->port_name
= bfa_fcs_lport_get_pwwn(port
);
2570 len
= bfa_fcs_lport_fdmi_build_portattr_block(fdmi
,
2571 (u8
*) &rpa
->port_attr_blk
);
2573 len
+= sizeof(rpa
->port_name
);
2579 bfa_fcs_lport_fdmi_rpa_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2580 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
2581 u32 resid_len
, struct fchs_s
*rsp_fchs
)
2583 struct bfa_fcs_lport_fdmi_s
*fdmi
=
2584 (struct bfa_fcs_lport_fdmi_s
*) cbarg
;
2585 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2586 struct ct_hdr_s
*cthdr
= NULL
;
2588 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2593 if (req_status
!= BFA_STATUS_OK
) {
2594 bfa_trc(port
->fcs
, req_status
);
2595 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2599 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2600 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2602 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2603 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_OK
);
2607 bfa_trc(port
->fcs
, cthdr
->reason_code
);
2608 bfa_trc(port
->fcs
, cthdr
->exp_code
);
2609 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2613 bfa_fcs_lport_fdmi_timeout(void *arg
)
2615 struct bfa_fcs_lport_fdmi_s
*fdmi
= (struct bfa_fcs_lport_fdmi_s
*) arg
;
2617 bfa_sm_send_event(fdmi
, FDMISM_EVENT_TIMEOUT
);
2621 bfa_fcs_fdmi_get_hbaattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
2622 struct bfa_fcs_fdmi_hba_attr_s
*hba_attr
)
2624 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2625 struct bfa_fcs_driver_info_s
*driver_info
= &port
->fcs
->driver_info
;
2626 struct bfa_fcs_fdmi_port_attr_s fcs_port_attr
;
2628 memset(hba_attr
, 0, sizeof(struct bfa_fcs_fdmi_hba_attr_s
));
2630 bfa_ioc_get_adapter_manufacturer(&port
->fcs
->bfa
->ioc
,
2631 hba_attr
->manufacturer
);
2632 bfa_ioc_get_adapter_serial_num(&port
->fcs
->bfa
->ioc
,
2633 hba_attr
->serial_num
);
2634 bfa_ioc_get_adapter_model(&port
->fcs
->bfa
->ioc
,
2636 bfa_ioc_get_adapter_model(&port
->fcs
->bfa
->ioc
,
2637 hba_attr
->model_desc
);
2638 bfa_ioc_get_pci_chip_rev(&port
->fcs
->bfa
->ioc
,
2639 hba_attr
->hw_version
);
2640 bfa_ioc_get_adapter_optrom_ver(&port
->fcs
->bfa
->ioc
,
2641 hba_attr
->option_rom_ver
);
2642 bfa_ioc_get_adapter_fw_ver(&port
->fcs
->bfa
->ioc
,
2643 hba_attr
->fw_version
);
2645 strlcpy(hba_attr
->driver_version
, (char *)driver_info
->version
,
2646 sizeof(hba_attr
->driver_version
));
2648 strlcpy(hba_attr
->os_name
, driver_info
->host_os_name
,
2649 sizeof(hba_attr
->os_name
));
2652 * If there is a patch level, append it
2653 * to the os name along with a separator
2655 if (driver_info
->host_os_patch
[0] != '\0') {
2656 strlcat(hba_attr
->os_name
, BFA_FCS_PORT_SYMBNAME_SEPARATOR
,
2657 sizeof(hba_attr
->os_name
));
2658 strlcat(hba_attr
->os_name
, driver_info
->host_os_patch
,
2659 sizeof(hba_attr
->os_name
));
2662 /* Retrieve the max frame size from the port attr */
2663 bfa_fcs_fdmi_get_portattr(fdmi
, &fcs_port_attr
);
2664 hba_attr
->max_ct_pyld
= fcs_port_attr
.max_frm_size
;
2666 strlcpy(hba_attr
->node_sym_name
.symname
,
2667 port
->port_cfg
.node_sym_name
.symname
, BFA_SYMNAME_MAXLEN
);
2668 strcpy(hba_attr
->vendor_info
, "QLogic");
2669 hba_attr
->num_ports
=
2670 cpu_to_be32(bfa_ioc_get_nports(&port
->fcs
->bfa
->ioc
));
2671 hba_attr
->fabric_name
= port
->fabric
->lps
->pr_nwwn
;
2672 strlcpy(hba_attr
->bios_ver
, hba_attr
->option_rom_ver
, BFA_VERSION_LEN
);
2677 bfa_fcs_fdmi_get_portattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
2678 struct bfa_fcs_fdmi_port_attr_s
*port_attr
)
2680 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2681 struct bfa_fcs_driver_info_s
*driver_info
= &port
->fcs
->driver_info
;
2682 struct bfa_port_attr_s pport_attr
;
2683 struct bfa_lport_attr_s lport_attr
;
2685 memset(port_attr
, 0, sizeof(struct bfa_fcs_fdmi_port_attr_s
));
2688 * get pport attributes from hal
2690 bfa_fcport_get_attr(port
->fcs
->bfa
, &pport_attr
);
2693 * get FC4 type Bitmask
2695 fc_get_fc4type_bitmask(FC_TYPE_FCP
, port_attr
->supp_fc4_types
);
2700 switch (pport_attr
.speed_supported
) {
2701 case BFA_PORT_SPEED_16GBPS
:
2702 port_attr
->supp_speed
=
2703 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_16G
);
2706 case BFA_PORT_SPEED_10GBPS
:
2707 port_attr
->supp_speed
=
2708 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_10G
);
2711 case BFA_PORT_SPEED_8GBPS
:
2712 port_attr
->supp_speed
=
2713 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_8G
);
2716 case BFA_PORT_SPEED_4GBPS
:
2717 port_attr
->supp_speed
=
2718 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_4G
);
2722 bfa_sm_fault(port
->fcs
, pport_attr
.speed_supported
);
2728 port_attr
->curr_speed
= cpu_to_be32(
2729 bfa_fcs_fdmi_convert_speed(pport_attr
.speed
));
2734 port_attr
->max_frm_size
= cpu_to_be32(pport_attr
.pport_cfg
.maxfrsize
);
2739 strlcpy(port_attr
->os_device_name
, driver_info
->os_device_name
,
2740 sizeof(port_attr
->os_device_name
));
2745 strlcpy(port_attr
->host_name
, driver_info
->host_machine_name
,
2746 sizeof(port_attr
->host_name
));
2748 port_attr
->node_name
= bfa_fcs_lport_get_nwwn(port
);
2749 port_attr
->port_name
= bfa_fcs_lport_get_pwwn(port
);
2751 strlcpy(port_attr
->port_sym_name
.symname
,
2752 bfa_fcs_lport_get_psym_name(port
).symname
, BFA_SYMNAME_MAXLEN
);
2753 bfa_fcs_lport_get_attr(port
, &lport_attr
);
2754 port_attr
->port_type
= cpu_to_be32(lport_attr
.port_type
);
2755 port_attr
->scos
= pport_attr
.cos_supported
;
2756 port_attr
->port_fabric_name
= port
->fabric
->lps
->pr_nwwn
;
2757 fc_get_fc4type_bitmask(FC_TYPE_FCP
, port_attr
->port_act_fc4_type
);
2758 port_attr
->port_state
= cpu_to_be32(pport_attr
.port_state
);
2759 port_attr
->num_ports
= cpu_to_be32(port
->num_rports
);
2763 * Convert BFA speed to FDMI format.
2766 bfa_fcs_fdmi_convert_speed(bfa_port_speed_t pport_speed
)
2770 switch (pport_speed
) {
2771 case BFA_PORT_SPEED_1GBPS
:
2772 case BFA_PORT_SPEED_2GBPS
:
2776 case BFA_PORT_SPEED_4GBPS
:
2777 ret
= FDMI_TRANS_SPEED_4G
;
2780 case BFA_PORT_SPEED_8GBPS
:
2781 ret
= FDMI_TRANS_SPEED_8G
;
2784 case BFA_PORT_SPEED_10GBPS
:
2785 ret
= FDMI_TRANS_SPEED_10G
;
2788 case BFA_PORT_SPEED_16GBPS
:
2789 ret
= FDMI_TRANS_SPEED_16G
;
2793 ret
= FDMI_TRANS_SPEED_UNKNOWN
;
2799 bfa_fcs_lport_fdmi_init(struct bfa_fcs_lport_ms_s
*ms
)
2801 struct bfa_fcs_lport_fdmi_s
*fdmi
= &ms
->fdmi
;
2804 if (ms
->port
->fcs
->fdmi_enabled
)
2805 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
2807 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_disabled
);
2811 bfa_fcs_lport_fdmi_offline(struct bfa_fcs_lport_ms_s
*ms
)
2813 struct bfa_fcs_lport_fdmi_s
*fdmi
= &ms
->fdmi
;
2816 bfa_sm_send_event(fdmi
, FDMISM_EVENT_PORT_OFFLINE
);
2820 bfa_fcs_lport_fdmi_online(struct bfa_fcs_lport_ms_s
*ms
)
2822 struct bfa_fcs_lport_fdmi_s
*fdmi
= &ms
->fdmi
;
2825 bfa_sm_send_event(fdmi
, FDMISM_EVENT_PORT_ONLINE
);
2828 #define BFA_FCS_MS_CMD_MAX_RETRIES 2
2831 * forward declarations
2833 static void bfa_fcs_lport_ms_send_plogi(void *ms_cbarg
,
2834 struct bfa_fcxp_s
*fcxp_alloced
);
2835 static void bfa_fcs_lport_ms_timeout(void *arg
);
2836 static void bfa_fcs_lport_ms_plogi_response(void *fcsarg
,
2837 struct bfa_fcxp_s
*fcxp
,
2839 bfa_status_t req_status
,
2842 struct fchs_s
*rsp_fchs
);
2844 static void bfa_fcs_lport_ms_send_gmal(void *ms_cbarg
,
2845 struct bfa_fcxp_s
*fcxp_alloced
);
2846 static void bfa_fcs_lport_ms_gmal_response(void *fcsarg
,
2847 struct bfa_fcxp_s
*fcxp
,
2849 bfa_status_t req_status
,
2852 struct fchs_s
*rsp_fchs
);
2853 static void bfa_fcs_lport_ms_send_gfn(void *ms_cbarg
,
2854 struct bfa_fcxp_s
*fcxp_alloced
);
2855 static void bfa_fcs_lport_ms_gfn_response(void *fcsarg
,
2856 struct bfa_fcxp_s
*fcxp
,
2858 bfa_status_t req_status
,
2861 struct fchs_s
*rsp_fchs
);
2863 * fcs_ms_sm FCS MS state machine
2867 * MS State Machine events
2869 enum port_ms_event
{
2870 MSSM_EVENT_PORT_ONLINE
= 1,
2871 MSSM_EVENT_PORT_OFFLINE
= 2,
2872 MSSM_EVENT_RSP_OK
= 3,
2873 MSSM_EVENT_RSP_ERROR
= 4,
2874 MSSM_EVENT_TIMEOUT
= 5,
2875 MSSM_EVENT_FCXP_SENT
= 6,
2876 MSSM_EVENT_PORT_FABRIC_RSCN
= 7
2879 static void bfa_fcs_lport_ms_sm_offline(struct bfa_fcs_lport_ms_s
*ms
,
2880 enum port_ms_event event
);
2881 static void bfa_fcs_lport_ms_sm_plogi_sending(struct bfa_fcs_lport_ms_s
*ms
,
2882 enum port_ms_event event
);
2883 static void bfa_fcs_lport_ms_sm_plogi(struct bfa_fcs_lport_ms_s
*ms
,
2884 enum port_ms_event event
);
2885 static void bfa_fcs_lport_ms_sm_plogi_retry(struct bfa_fcs_lport_ms_s
*ms
,
2886 enum port_ms_event event
);
2887 static void bfa_fcs_lport_ms_sm_gmal_sending(struct bfa_fcs_lport_ms_s
*ms
,
2888 enum port_ms_event event
);
2889 static void bfa_fcs_lport_ms_sm_gmal(struct bfa_fcs_lport_ms_s
*ms
,
2890 enum port_ms_event event
);
2891 static void bfa_fcs_lport_ms_sm_gmal_retry(struct bfa_fcs_lport_ms_s
*ms
,
2892 enum port_ms_event event
);
2893 static void bfa_fcs_lport_ms_sm_gfn_sending(struct bfa_fcs_lport_ms_s
*ms
,
2894 enum port_ms_event event
);
2895 static void bfa_fcs_lport_ms_sm_gfn(struct bfa_fcs_lport_ms_s
*ms
,
2896 enum port_ms_event event
);
2897 static void bfa_fcs_lport_ms_sm_gfn_retry(struct bfa_fcs_lport_ms_s
*ms
,
2898 enum port_ms_event event
);
2899 static void bfa_fcs_lport_ms_sm_online(struct bfa_fcs_lport_ms_s
*ms
,
2900 enum port_ms_event event
);
2902 * Start in offline state - awaiting NS to send start.
2905 bfa_fcs_lport_ms_sm_offline(struct bfa_fcs_lport_ms_s
*ms
,
2906 enum port_ms_event event
)
2908 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2909 bfa_trc(ms
->port
->fcs
, event
);
2912 case MSSM_EVENT_PORT_ONLINE
:
2913 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi_sending
);
2914 bfa_fcs_lport_ms_send_plogi(ms
, NULL
);
2917 case MSSM_EVENT_PORT_OFFLINE
:
2921 bfa_sm_fault(ms
->port
->fcs
, event
);
2926 bfa_fcs_lport_ms_sm_plogi_sending(struct bfa_fcs_lport_ms_s
*ms
,
2927 enum port_ms_event event
)
2929 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2930 bfa_trc(ms
->port
->fcs
, event
);
2933 case MSSM_EVENT_FCXP_SENT
:
2934 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi
);
2937 case MSSM_EVENT_PORT_OFFLINE
:
2938 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2939 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2944 bfa_sm_fault(ms
->port
->fcs
, event
);
2949 bfa_fcs_lport_ms_sm_plogi(struct bfa_fcs_lport_ms_s
*ms
,
2950 enum port_ms_event event
)
2952 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2953 bfa_trc(ms
->port
->fcs
, event
);
2956 case MSSM_EVENT_RSP_ERROR
:
2958 * Start timer for a delayed retry
2960 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi_retry
);
2961 ms
->port
->stats
.ms_retries
++;
2962 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2963 &ms
->timer
, bfa_fcs_lport_ms_timeout
, ms
,
2964 BFA_FCS_RETRY_TIMEOUT
);
2967 case MSSM_EVENT_RSP_OK
:
2969 * since plogi is done, now invoke MS related sub-modules
2971 bfa_fcs_lport_fdmi_online(ms
);
2974 * if this is a Vport, go to online state.
2976 if (ms
->port
->vport
) {
2977 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_online
);
2982 * For a base port we need to get the
2983 * switch's IP address.
2985 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal_sending
);
2986 bfa_fcs_lport_ms_send_gmal(ms
, NULL
);
2989 case MSSM_EVENT_PORT_OFFLINE
:
2990 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2991 bfa_fcxp_discard(ms
->fcxp
);
2995 bfa_sm_fault(ms
->port
->fcs
, event
);
3000 bfa_fcs_lport_ms_sm_plogi_retry(struct bfa_fcs_lport_ms_s
*ms
,
3001 enum port_ms_event event
)
3003 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3004 bfa_trc(ms
->port
->fcs
, event
);
3007 case MSSM_EVENT_TIMEOUT
:
3009 * Retry Timer Expired. Re-send
3011 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi_sending
);
3012 bfa_fcs_lport_ms_send_plogi(ms
, NULL
);
3015 case MSSM_EVENT_PORT_OFFLINE
:
3016 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3017 bfa_timer_stop(&ms
->timer
);
3021 bfa_sm_fault(ms
->port
->fcs
, event
);
3026 bfa_fcs_lport_ms_sm_online(struct bfa_fcs_lport_ms_s
*ms
,
3027 enum port_ms_event event
)
3029 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3030 bfa_trc(ms
->port
->fcs
, event
);
3033 case MSSM_EVENT_PORT_OFFLINE
:
3034 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3037 case MSSM_EVENT_PORT_FABRIC_RSCN
:
3038 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
3040 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
3044 bfa_sm_fault(ms
->port
->fcs
, event
);
3049 bfa_fcs_lport_ms_sm_gmal_sending(struct bfa_fcs_lport_ms_s
*ms
,
3050 enum port_ms_event event
)
3052 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3053 bfa_trc(ms
->port
->fcs
, event
);
3056 case MSSM_EVENT_FCXP_SENT
:
3057 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal
);
3060 case MSSM_EVENT_PORT_OFFLINE
:
3061 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3062 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
3067 bfa_sm_fault(ms
->port
->fcs
, event
);
3072 bfa_fcs_lport_ms_sm_gmal(struct bfa_fcs_lport_ms_s
*ms
,
3073 enum port_ms_event event
)
3075 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3076 bfa_trc(ms
->port
->fcs
, event
);
3079 case MSSM_EVENT_RSP_ERROR
:
3081 * Start timer for a delayed retry
3083 if (ms
->retry_cnt
++ < BFA_FCS_MS_CMD_MAX_RETRIES
) {
3084 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal_retry
);
3085 ms
->port
->stats
.ms_retries
++;
3086 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
3087 &ms
->timer
, bfa_fcs_lport_ms_timeout
, ms
,
3088 BFA_FCS_RETRY_TIMEOUT
);
3090 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
3091 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
3096 case MSSM_EVENT_RSP_OK
:
3097 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
3098 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
3101 case MSSM_EVENT_PORT_OFFLINE
:
3102 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3103 bfa_fcxp_discard(ms
->fcxp
);
3107 bfa_sm_fault(ms
->port
->fcs
, event
);
3112 bfa_fcs_lport_ms_sm_gmal_retry(struct bfa_fcs_lport_ms_s
*ms
,
3113 enum port_ms_event event
)
3115 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3116 bfa_trc(ms
->port
->fcs
, event
);
3119 case MSSM_EVENT_TIMEOUT
:
3121 * Retry Timer Expired. Re-send
3123 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal_sending
);
3124 bfa_fcs_lport_ms_send_gmal(ms
, NULL
);
3127 case MSSM_EVENT_PORT_OFFLINE
:
3128 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3129 bfa_timer_stop(&ms
->timer
);
3133 bfa_sm_fault(ms
->port
->fcs
, event
);
3137 * ms_pvt MS local functions
3141 bfa_fcs_lport_ms_send_gmal(void *ms_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3143 struct bfa_fcs_lport_ms_s
*ms
= ms_cbarg
;
3144 bfa_fcs_lport_t
*port
= ms
->port
;
3147 struct bfa_fcxp_s
*fcxp
;
3149 bfa_trc(port
->fcs
, port
->pid
);
3151 fcxp
= fcxp_alloced
? fcxp_alloced
:
3152 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
3154 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ms
->fcxp_wqe
,
3155 bfa_fcs_lport_ms_send_gmal
, ms
, BFA_TRUE
);
3160 len
= fc_gmal_req_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3161 bfa_fcs_lport_get_fcid(port
),
3162 port
->fabric
->lps
->pr_nwwn
);
3164 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3165 FC_CLASS_3
, len
, &fchs
,
3166 bfa_fcs_lport_ms_gmal_response
, (void *)ms
,
3167 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
3169 bfa_sm_send_event(ms
, MSSM_EVENT_FCXP_SENT
);
3173 bfa_fcs_lport_ms_gmal_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
3174 void *cbarg
, bfa_status_t req_status
,
3175 u32 rsp_len
, u32 resid_len
,
3176 struct fchs_s
*rsp_fchs
)
3178 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) cbarg
;
3179 bfa_fcs_lport_t
*port
= ms
->port
;
3180 struct ct_hdr_s
*cthdr
= NULL
;
3181 struct fcgs_gmal_resp_s
*gmal_resp
;
3182 struct fcgs_gmal_entry_s
*gmal_entry
;
3186 bfa_trc(port
->fcs
, req_status
);
3187 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3192 if (req_status
!= BFA_STATUS_OK
) {
3193 bfa_trc(port
->fcs
, req_status
);
3194 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3198 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3199 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
3201 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
3202 gmal_resp
= (struct fcgs_gmal_resp_s
*)(cthdr
+ 1);
3204 num_entries
= be32_to_cpu(gmal_resp
->ms_len
);
3205 if (num_entries
== 0) {
3206 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3210 * The response could contain multiple Entries.
3211 * Entries for SNMP interface, etc.
3212 * We look for the entry with a telnet prefix.
3213 * First "http://" entry refers to IP addr
3216 gmal_entry
= (struct fcgs_gmal_entry_s
*)gmal_resp
->ms_ma
;
3217 while (num_entries
> 0) {
3218 if (strncmp(gmal_entry
->prefix
,
3219 CT_GMAL_RESP_PREFIX_HTTP
,
3220 sizeof(gmal_entry
->prefix
)) == 0) {
3223 * if the IP address is terminating with a '/',
3225 * Byte 0 consists of the length of the string.
3227 rsp_str
= &(gmal_entry
->prefix
[0]);
3228 if (rsp_str
[gmal_entry
->len
-1] == '/')
3229 rsp_str
[gmal_entry
->len
-1] = 0;
3231 /* copy IP Address to fabric */
3232 strlcpy(bfa_fcs_lport_get_fabric_ipaddr(port
),
3233 gmal_entry
->ip_addr
,
3234 BFA_FCS_FABRIC_IPADDR_SZ
);
3242 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_OK
);
3246 bfa_trc(port
->fcs
, cthdr
->reason_code
);
3247 bfa_trc(port
->fcs
, cthdr
->exp_code
);
3248 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3252 bfa_fcs_lport_ms_sm_gfn_sending(struct bfa_fcs_lport_ms_s
*ms
,
3253 enum port_ms_event event
)
3255 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3256 bfa_trc(ms
->port
->fcs
, event
);
3259 case MSSM_EVENT_FCXP_SENT
:
3260 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn
);
3263 case MSSM_EVENT_PORT_OFFLINE
:
3264 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3265 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
3270 bfa_sm_fault(ms
->port
->fcs
, event
);
3275 bfa_fcs_lport_ms_sm_gfn(struct bfa_fcs_lport_ms_s
*ms
,
3276 enum port_ms_event event
)
3278 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3279 bfa_trc(ms
->port
->fcs
, event
);
3282 case MSSM_EVENT_RSP_ERROR
:
3284 * Start timer for a delayed retry
3286 if (ms
->retry_cnt
++ < BFA_FCS_MS_CMD_MAX_RETRIES
) {
3287 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_retry
);
3288 ms
->port
->stats
.ms_retries
++;
3289 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
3290 &ms
->timer
, bfa_fcs_lport_ms_timeout
, ms
,
3291 BFA_FCS_RETRY_TIMEOUT
);
3293 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_online
);
3298 case MSSM_EVENT_RSP_OK
:
3299 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_online
);
3302 case MSSM_EVENT_PORT_OFFLINE
:
3303 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3304 bfa_fcxp_discard(ms
->fcxp
);
3308 bfa_sm_fault(ms
->port
->fcs
, event
);
3313 bfa_fcs_lport_ms_sm_gfn_retry(struct bfa_fcs_lport_ms_s
*ms
,
3314 enum port_ms_event event
)
3316 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
3317 bfa_trc(ms
->port
->fcs
, event
);
3320 case MSSM_EVENT_TIMEOUT
:
3322 * Retry Timer Expired. Re-send
3324 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
3325 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
3328 case MSSM_EVENT_PORT_OFFLINE
:
3329 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3330 bfa_timer_stop(&ms
->timer
);
3334 bfa_sm_fault(ms
->port
->fcs
, event
);
3338 * ms_pvt MS local functions
3342 bfa_fcs_lport_ms_send_gfn(void *ms_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3344 struct bfa_fcs_lport_ms_s
*ms
= ms_cbarg
;
3345 bfa_fcs_lport_t
*port
= ms
->port
;
3348 struct bfa_fcxp_s
*fcxp
;
3350 bfa_trc(port
->fcs
, port
->pid
);
3352 fcxp
= fcxp_alloced
? fcxp_alloced
:
3353 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
3355 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ms
->fcxp_wqe
,
3356 bfa_fcs_lport_ms_send_gfn
, ms
, BFA_TRUE
);
3361 len
= fc_gfn_req_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3362 bfa_fcs_lport_get_fcid(port
),
3363 port
->fabric
->lps
->pr_nwwn
);
3365 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3366 FC_CLASS_3
, len
, &fchs
,
3367 bfa_fcs_lport_ms_gfn_response
, (void *)ms
,
3368 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
3370 bfa_sm_send_event(ms
, MSSM_EVENT_FCXP_SENT
);
3374 bfa_fcs_lport_ms_gfn_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
3375 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
3376 u32 resid_len
, struct fchs_s
*rsp_fchs
)
3378 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) cbarg
;
3379 bfa_fcs_lport_t
*port
= ms
->port
;
3380 struct ct_hdr_s
*cthdr
= NULL
;
3383 bfa_trc(port
->fcs
, req_status
);
3384 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3389 if (req_status
!= BFA_STATUS_OK
) {
3390 bfa_trc(port
->fcs
, req_status
);
3391 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3395 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3396 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
3398 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
3399 gfn_resp
= (wwn_t
*)(cthdr
+ 1);
3400 /* check if it has actually changed */
3401 if ((memcmp((void *)&bfa_fcs_lport_get_fabric_name(port
),
3402 gfn_resp
, sizeof(wwn_t
)) != 0)) {
3403 bfa_fcs_fabric_set_fabric_name(port
->fabric
, *gfn_resp
);
3405 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_OK
);
3409 bfa_trc(port
->fcs
, cthdr
->reason_code
);
3410 bfa_trc(port
->fcs
, cthdr
->exp_code
);
3411 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3415 * ms_pvt MS local functions
3419 bfa_fcs_lport_ms_send_plogi(void *ms_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3421 struct bfa_fcs_lport_ms_s
*ms
= ms_cbarg
;
3422 struct bfa_fcs_lport_s
*port
= ms
->port
;
3425 struct bfa_fcxp_s
*fcxp
;
3427 bfa_trc(port
->fcs
, port
->pid
);
3429 fcxp
= fcxp_alloced
? fcxp_alloced
:
3430 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
3432 port
->stats
.ms_plogi_alloc_wait
++;
3433 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ms
->fcxp_wqe
,
3434 bfa_fcs_lport_ms_send_plogi
, ms
, BFA_TRUE
);
3439 len
= fc_plogi_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3440 bfa_hton3b(FC_MGMT_SERVER
),
3441 bfa_fcs_lport_get_fcid(port
), 0,
3442 port
->port_cfg
.pwwn
, port
->port_cfg
.nwwn
,
3443 bfa_fcport_get_maxfrsize(port
->fcs
->bfa
),
3444 bfa_fcport_get_rx_bbcredit(port
->fcs
->bfa
));
3446 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3447 FC_CLASS_3
, len
, &fchs
,
3448 bfa_fcs_lport_ms_plogi_response
, (void *)ms
,
3449 FC_MAX_PDUSZ
, FC_ELS_TOV
);
3451 port
->stats
.ms_plogi_sent
++;
3452 bfa_sm_send_event(ms
, MSSM_EVENT_FCXP_SENT
);
3456 bfa_fcs_lport_ms_plogi_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
3457 void *cbarg
, bfa_status_t req_status
,
3458 u32 rsp_len
, u32 resid_len
, struct fchs_s
*rsp_fchs
)
3460 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) cbarg
;
3461 struct bfa_fcs_lport_s
*port
= ms
->port
;
3462 struct fc_els_cmd_s
*els_cmd
;
3463 struct fc_ls_rjt_s
*ls_rjt
;
3465 bfa_trc(port
->fcs
, req_status
);
3466 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3471 if (req_status
!= BFA_STATUS_OK
) {
3472 port
->stats
.ms_plogi_rsp_err
++;
3473 bfa_trc(port
->fcs
, req_status
);
3474 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3478 els_cmd
= (struct fc_els_cmd_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3480 switch (els_cmd
->els_code
) {
3483 if (rsp_len
< sizeof(struct fc_logi_s
)) {
3484 bfa_trc(port
->fcs
, rsp_len
);
3485 port
->stats
.ms_plogi_acc_err
++;
3486 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3489 port
->stats
.ms_plogi_accepts
++;
3490 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_OK
);
3494 ls_rjt
= (struct fc_ls_rjt_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3496 bfa_trc(port
->fcs
, ls_rjt
->reason_code
);
3497 bfa_trc(port
->fcs
, ls_rjt
->reason_code_expl
);
3499 port
->stats
.ms_rejects
++;
3500 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3504 port
->stats
.ms_plogi_unknown_rsp
++;
3505 bfa_trc(port
->fcs
, els_cmd
->els_code
);
3506 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3511 bfa_fcs_lport_ms_timeout(void *arg
)
3513 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) arg
;
3515 ms
->port
->stats
.ms_timeouts
++;
3516 bfa_sm_send_event(ms
, MSSM_EVENT_TIMEOUT
);
3521 bfa_fcs_lport_ms_init(struct bfa_fcs_lport_s
*port
)
3523 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3526 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3529 * Invoke init routines of sub modules.
3531 bfa_fcs_lport_fdmi_init(ms
);
3535 bfa_fcs_lport_ms_offline(struct bfa_fcs_lport_s
*port
)
3537 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3540 bfa_sm_send_event(ms
, MSSM_EVENT_PORT_OFFLINE
);
3541 bfa_fcs_lport_fdmi_offline(ms
);
3545 bfa_fcs_lport_ms_online(struct bfa_fcs_lport_s
*port
)
3547 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3550 bfa_sm_send_event(ms
, MSSM_EVENT_PORT_ONLINE
);
3553 bfa_fcs_lport_ms_fabric_rscn(struct bfa_fcs_lport_s
*port
)
3555 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3557 /* todo. Handle this only when in Online state */
3558 if (bfa_sm_cmp_state(ms
, bfa_fcs_lport_ms_sm_online
))
3559 bfa_sm_send_event(ms
, MSSM_EVENT_PORT_FABRIC_RSCN
);
3563 * @page ns_sm_info VPORT NS State Machine
3565 * @section ns_sm_interactions VPORT NS State Machine Interactions
3567 * @section ns_sm VPORT NS State Machine
3572 * forward declarations
3574 static void bfa_fcs_lport_ns_send_plogi(void *ns_cbarg
,
3575 struct bfa_fcxp_s
*fcxp_alloced
);
3576 static void bfa_fcs_lport_ns_send_rspn_id(void *ns_cbarg
,
3577 struct bfa_fcxp_s
*fcxp_alloced
);
3578 static void bfa_fcs_lport_ns_send_rft_id(void *ns_cbarg
,
3579 struct bfa_fcxp_s
*fcxp_alloced
);
3580 static void bfa_fcs_lport_ns_send_rff_id(void *ns_cbarg
,
3581 struct bfa_fcxp_s
*fcxp_alloced
);
3582 static void bfa_fcs_lport_ns_send_gid_ft(void *ns_cbarg
,
3583 struct bfa_fcxp_s
*fcxp_alloced
);
3584 static void bfa_fcs_lport_ns_send_rnn_id(void *ns_cbarg
,
3585 struct bfa_fcxp_s
*fcxp_alloced
);
3586 static void bfa_fcs_lport_ns_send_rsnn_nn(void *ns_cbarg
,
3587 struct bfa_fcxp_s
*fcxp_alloced
);
3588 static void bfa_fcs_lport_ns_timeout(void *arg
);
3589 static void bfa_fcs_lport_ns_plogi_response(void *fcsarg
,
3590 struct bfa_fcxp_s
*fcxp
,
3592 bfa_status_t req_status
,
3595 struct fchs_s
*rsp_fchs
);
3596 static void bfa_fcs_lport_ns_rspn_id_response(void *fcsarg
,
3597 struct bfa_fcxp_s
*fcxp
,
3599 bfa_status_t req_status
,
3602 struct fchs_s
*rsp_fchs
);
3603 static void bfa_fcs_lport_ns_rft_id_response(void *fcsarg
,
3604 struct bfa_fcxp_s
*fcxp
,
3606 bfa_status_t req_status
,
3609 struct fchs_s
*rsp_fchs
);
3610 static void bfa_fcs_lport_ns_rff_id_response(void *fcsarg
,
3611 struct bfa_fcxp_s
*fcxp
,
3613 bfa_status_t req_status
,
3616 struct fchs_s
*rsp_fchs
);
3617 static void bfa_fcs_lport_ns_gid_ft_response(void *fcsarg
,
3618 struct bfa_fcxp_s
*fcxp
,
3620 bfa_status_t req_status
,
3623 struct fchs_s
*rsp_fchs
);
3624 static void bfa_fcs_lport_ns_rnn_id_response(void *fcsarg
,
3625 struct bfa_fcxp_s
*fcxp
,
3627 bfa_status_t req_status
,
3630 struct fchs_s
*rsp_fchs
);
3631 static void bfa_fcs_lport_ns_rsnn_nn_response(void *fcsarg
,
3632 struct bfa_fcxp_s
*fcxp
,
3634 bfa_status_t req_status
,
3637 struct fchs_s
*rsp_fchs
);
3638 static void bfa_fcs_lport_ns_process_gidft_pids(
3639 struct bfa_fcs_lport_s
*port
,
3640 u32
*pid_buf
, u32 n_pids
);
3642 static void bfa_fcs_lport_ns_boot_target_disc(bfa_fcs_lport_t
*port
);
3644 * fcs_ns_sm FCS nameserver interface state machine
3648 * VPort NS State Machine events
3650 enum vport_ns_event
{
3651 NSSM_EVENT_PORT_ONLINE
= 1,
3652 NSSM_EVENT_PORT_OFFLINE
= 2,
3653 NSSM_EVENT_PLOGI_SENT
= 3,
3654 NSSM_EVENT_RSP_OK
= 4,
3655 NSSM_EVENT_RSP_ERROR
= 5,
3656 NSSM_EVENT_TIMEOUT
= 6,
3657 NSSM_EVENT_NS_QUERY
= 7,
3658 NSSM_EVENT_RSPNID_SENT
= 8,
3659 NSSM_EVENT_RFTID_SENT
= 9,
3660 NSSM_EVENT_RFFID_SENT
= 10,
3661 NSSM_EVENT_GIDFT_SENT
= 11,
3662 NSSM_EVENT_RNNID_SENT
= 12,
3663 NSSM_EVENT_RSNN_NN_SENT
= 13,
3666 static void bfa_fcs_lport_ns_sm_offline(struct bfa_fcs_lport_ns_s
*ns
,
3667 enum vport_ns_event event
);
3668 static void bfa_fcs_lport_ns_sm_plogi_sending(struct bfa_fcs_lport_ns_s
*ns
,
3669 enum vport_ns_event event
);
3670 static void bfa_fcs_lport_ns_sm_plogi(struct bfa_fcs_lport_ns_s
*ns
,
3671 enum vport_ns_event event
);
3672 static void bfa_fcs_lport_ns_sm_plogi_retry(struct bfa_fcs_lport_ns_s
*ns
,
3673 enum vport_ns_event event
);
3674 static void bfa_fcs_lport_ns_sm_sending_rspn_id(
3675 struct bfa_fcs_lport_ns_s
*ns
,
3676 enum vport_ns_event event
);
3677 static void bfa_fcs_lport_ns_sm_rspn_id(struct bfa_fcs_lport_ns_s
*ns
,
3678 enum vport_ns_event event
);
3679 static void bfa_fcs_lport_ns_sm_rspn_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3680 enum vport_ns_event event
);
3681 static void bfa_fcs_lport_ns_sm_sending_rft_id(
3682 struct bfa_fcs_lport_ns_s
*ns
,
3683 enum vport_ns_event event
);
3684 static void bfa_fcs_lport_ns_sm_rft_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3685 enum vport_ns_event event
);
3686 static void bfa_fcs_lport_ns_sm_rft_id(struct bfa_fcs_lport_ns_s
*ns
,
3687 enum vport_ns_event event
);
3688 static void bfa_fcs_lport_ns_sm_sending_rff_id(
3689 struct bfa_fcs_lport_ns_s
*ns
,
3690 enum vport_ns_event event
);
3691 static void bfa_fcs_lport_ns_sm_rff_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3692 enum vport_ns_event event
);
3693 static void bfa_fcs_lport_ns_sm_rff_id(struct bfa_fcs_lport_ns_s
*ns
,
3694 enum vport_ns_event event
);
3695 static void bfa_fcs_lport_ns_sm_sending_gid_ft(
3696 struct bfa_fcs_lport_ns_s
*ns
,
3697 enum vport_ns_event event
);
3698 static void bfa_fcs_lport_ns_sm_gid_ft(struct bfa_fcs_lport_ns_s
*ns
,
3699 enum vport_ns_event event
);
3700 static void bfa_fcs_lport_ns_sm_gid_ft_retry(struct bfa_fcs_lport_ns_s
*ns
,
3701 enum vport_ns_event event
);
3702 static void bfa_fcs_lport_ns_sm_online(struct bfa_fcs_lport_ns_s
*ns
,
3703 enum vport_ns_event event
);
3704 static void bfa_fcs_lport_ns_sm_sending_rnn_id(
3705 struct bfa_fcs_lport_ns_s
*ns
,
3706 enum vport_ns_event event
);
3707 static void bfa_fcs_lport_ns_sm_rnn_id(struct bfa_fcs_lport_ns_s
*ns
,
3708 enum vport_ns_event event
);
3709 static void bfa_fcs_lport_ns_sm_rnn_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3710 enum vport_ns_event event
);
3711 static void bfa_fcs_lport_ns_sm_sending_rsnn_nn(
3712 struct bfa_fcs_lport_ns_s
*ns
,
3713 enum vport_ns_event event
);
3714 static void bfa_fcs_lport_ns_sm_rsnn_nn(struct bfa_fcs_lport_ns_s
*ns
,
3715 enum vport_ns_event event
);
3716 static void bfa_fcs_lport_ns_sm_rsnn_nn_retry(
3717 struct bfa_fcs_lport_ns_s
*ns
,
3718 enum vport_ns_event event
);
3720 * Start in offline state - awaiting linkup
3723 bfa_fcs_lport_ns_sm_offline(struct bfa_fcs_lport_ns_s
*ns
,
3724 enum vport_ns_event event
)
3726 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3727 bfa_trc(ns
->port
->fcs
, event
);
3730 case NSSM_EVENT_PORT_ONLINE
:
3731 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi_sending
);
3732 bfa_fcs_lport_ns_send_plogi(ns
, NULL
);
3735 case NSSM_EVENT_PORT_OFFLINE
:
3739 bfa_sm_fault(ns
->port
->fcs
, event
);
3744 bfa_fcs_lport_ns_sm_plogi_sending(struct bfa_fcs_lport_ns_s
*ns
,
3745 enum vport_ns_event event
)
3747 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3748 bfa_trc(ns
->port
->fcs
, event
);
3751 case NSSM_EVENT_PLOGI_SENT
:
3752 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi
);
3755 case NSSM_EVENT_PORT_OFFLINE
:
3756 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3757 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3762 bfa_sm_fault(ns
->port
->fcs
, event
);
3767 bfa_fcs_lport_ns_sm_plogi(struct bfa_fcs_lport_ns_s
*ns
,
3768 enum vport_ns_event event
)
3770 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3771 bfa_trc(ns
->port
->fcs
, event
);
3774 case NSSM_EVENT_RSP_ERROR
:
3776 * Start timer for a delayed retry
3778 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi_retry
);
3779 ns
->port
->stats
.ns_retries
++;
3780 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3781 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3782 BFA_FCS_RETRY_TIMEOUT
);
3785 case NSSM_EVENT_RSP_OK
:
3786 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rnn_id
);
3787 ns
->num_rnnid_retries
= 0;
3788 bfa_fcs_lport_ns_send_rnn_id(ns
, NULL
);
3791 case NSSM_EVENT_PORT_OFFLINE
:
3792 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3793 bfa_fcxp_discard(ns
->fcxp
);
3797 bfa_sm_fault(ns
->port
->fcs
, event
);
3802 bfa_fcs_lport_ns_sm_plogi_retry(struct bfa_fcs_lport_ns_s
*ns
,
3803 enum vport_ns_event event
)
3805 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3806 bfa_trc(ns
->port
->fcs
, event
);
3809 case NSSM_EVENT_TIMEOUT
:
3811 * Retry Timer Expired. Re-send
3813 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi_sending
);
3814 bfa_fcs_lport_ns_send_plogi(ns
, NULL
);
3817 case NSSM_EVENT_PORT_OFFLINE
:
3818 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3819 bfa_timer_stop(&ns
->timer
);
3823 bfa_sm_fault(ns
->port
->fcs
, event
);
3828 bfa_fcs_lport_ns_sm_sending_rnn_id(struct bfa_fcs_lport_ns_s
*ns
,
3829 enum vport_ns_event event
)
3831 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3832 bfa_trc(ns
->port
->fcs
, event
);
3835 case NSSM_EVENT_RNNID_SENT
:
3836 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rnn_id
);
3839 case NSSM_EVENT_PORT_OFFLINE
:
3840 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3841 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3845 bfa_sm_fault(ns
->port
->fcs
, event
);
3850 bfa_fcs_lport_ns_sm_rnn_id(struct bfa_fcs_lport_ns_s
*ns
,
3851 enum vport_ns_event event
)
3853 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3854 bfa_trc(ns
->port
->fcs
, event
);
3857 case NSSM_EVENT_RSP_OK
:
3858 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rsnn_nn
);
3859 ns
->num_rnnid_retries
= 0;
3860 ns
->num_rsnn_nn_retries
= 0;
3861 bfa_fcs_lport_ns_send_rsnn_nn(ns
, NULL
);
3864 case NSSM_EVENT_RSP_ERROR
:
3865 if (ns
->num_rnnid_retries
< BFA_FCS_MAX_NS_RETRIES
) {
3866 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rnn_id_retry
);
3867 ns
->port
->stats
.ns_retries
++;
3868 ns
->num_rnnid_retries
++;
3869 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3870 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3871 BFA_FCS_RETRY_TIMEOUT
);
3873 bfa_sm_set_state(ns
,
3874 bfa_fcs_lport_ns_sm_sending_rspn_id
);
3875 bfa_fcs_lport_ns_send_rspn_id(ns
, NULL
);
3879 case NSSM_EVENT_PORT_OFFLINE
:
3880 bfa_fcxp_discard(ns
->fcxp
);
3881 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3885 bfa_sm_fault(ns
->port
->fcs
, event
);
3890 bfa_fcs_lport_ns_sm_rnn_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3891 enum vport_ns_event event
)
3893 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3894 bfa_trc(ns
->port
->fcs
, event
);
3897 case NSSM_EVENT_TIMEOUT
:
3898 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rnn_id
);
3899 bfa_fcs_lport_ns_send_rnn_id(ns
, NULL
);
3902 case NSSM_EVENT_PORT_OFFLINE
:
3903 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3904 bfa_timer_stop(&ns
->timer
);
3908 bfa_sm_fault(ns
->port
->fcs
, event
);
3913 bfa_fcs_lport_ns_sm_sending_rsnn_nn(struct bfa_fcs_lport_ns_s
*ns
,
3914 enum vport_ns_event event
)
3916 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3917 bfa_trc(ns
->port
->fcs
, event
);
3920 case NSSM_EVENT_RSNN_NN_SENT
:
3921 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rsnn_nn
);
3924 case NSSM_EVENT_PORT_OFFLINE
:
3925 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3926 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3931 bfa_sm_fault(ns
->port
->fcs
, event
);
3936 bfa_fcs_lport_ns_sm_rsnn_nn(struct bfa_fcs_lport_ns_s
*ns
,
3937 enum vport_ns_event event
)
3939 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3940 bfa_trc(ns
->port
->fcs
, event
);
3943 case NSSM_EVENT_RSP_OK
:
3944 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rspn_id
);
3945 ns
->num_rsnn_nn_retries
= 0;
3946 bfa_fcs_lport_ns_send_rspn_id(ns
, NULL
);
3949 case NSSM_EVENT_RSP_ERROR
:
3950 if (ns
->num_rsnn_nn_retries
< BFA_FCS_MAX_NS_RETRIES
) {
3951 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rsnn_nn_retry
);
3952 ns
->port
->stats
.ns_retries
++;
3953 ns
->num_rsnn_nn_retries
++;
3954 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3955 &ns
->timer
, bfa_fcs_lport_ns_timeout
,
3956 ns
, BFA_FCS_RETRY_TIMEOUT
);
3958 bfa_sm_set_state(ns
,
3959 bfa_fcs_lport_ns_sm_sending_rspn_id
);
3960 bfa_fcs_lport_ns_send_rspn_id(ns
, NULL
);
3964 case NSSM_EVENT_PORT_OFFLINE
:
3965 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3966 bfa_fcxp_discard(ns
->fcxp
);
3970 bfa_sm_fault(ns
->port
->fcs
, event
);
3975 bfa_fcs_lport_ns_sm_rsnn_nn_retry(struct bfa_fcs_lport_ns_s
*ns
,
3976 enum vport_ns_event event
)
3978 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3979 bfa_trc(ns
->port
->fcs
, event
);
3982 case NSSM_EVENT_TIMEOUT
:
3983 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rsnn_nn
);
3984 bfa_fcs_lport_ns_send_rsnn_nn(ns
, NULL
);
3987 case NSSM_EVENT_PORT_OFFLINE
:
3988 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3989 bfa_timer_stop(&ns
->timer
);
3993 bfa_sm_fault(ns
->port
->fcs
, event
);
3998 bfa_fcs_lport_ns_sm_sending_rspn_id(struct bfa_fcs_lport_ns_s
*ns
,
3999 enum vport_ns_event event
)
4001 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4002 bfa_trc(ns
->port
->fcs
, event
);
4005 case NSSM_EVENT_RSPNID_SENT
:
4006 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rspn_id
);
4009 case NSSM_EVENT_PORT_OFFLINE
:
4010 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4011 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4016 bfa_sm_fault(ns
->port
->fcs
, event
);
4021 bfa_fcs_lport_ns_sm_rspn_id(struct bfa_fcs_lport_ns_s
*ns
,
4022 enum vport_ns_event event
)
4024 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4025 bfa_trc(ns
->port
->fcs
, event
);
4028 case NSSM_EVENT_RSP_ERROR
:
4030 * Start timer for a delayed retry
4032 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rspn_id_retry
);
4033 ns
->port
->stats
.ns_retries
++;
4034 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4035 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
4036 BFA_FCS_RETRY_TIMEOUT
);
4039 case NSSM_EVENT_RSP_OK
:
4040 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rft_id
);
4041 bfa_fcs_lport_ns_send_rft_id(ns
, NULL
);
4044 case NSSM_EVENT_PORT_OFFLINE
:
4045 bfa_fcxp_discard(ns
->fcxp
);
4046 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4050 bfa_sm_fault(ns
->port
->fcs
, event
);
4055 bfa_fcs_lport_ns_sm_rspn_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
4056 enum vport_ns_event event
)
4058 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4059 bfa_trc(ns
->port
->fcs
, event
);
4062 case NSSM_EVENT_TIMEOUT
:
4064 * Retry Timer Expired. Re-send
4066 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rspn_id
);
4067 bfa_fcs_lport_ns_send_rspn_id(ns
, NULL
);
4070 case NSSM_EVENT_PORT_OFFLINE
:
4071 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4072 bfa_timer_stop(&ns
->timer
);
4076 bfa_sm_fault(ns
->port
->fcs
, event
);
4081 bfa_fcs_lport_ns_sm_sending_rft_id(struct bfa_fcs_lport_ns_s
*ns
,
4082 enum vport_ns_event event
)
4084 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4085 bfa_trc(ns
->port
->fcs
, event
);
4088 case NSSM_EVENT_RFTID_SENT
:
4089 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rft_id
);
4092 case NSSM_EVENT_PORT_OFFLINE
:
4093 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4094 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4099 bfa_sm_fault(ns
->port
->fcs
, event
);
4104 bfa_fcs_lport_ns_sm_rft_id(struct bfa_fcs_lport_ns_s
*ns
,
4105 enum vport_ns_event event
)
4107 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4108 bfa_trc(ns
->port
->fcs
, event
);
4111 case NSSM_EVENT_RSP_OK
:
4112 /* Now move to register FC4 Features */
4113 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rff_id
);
4114 bfa_fcs_lport_ns_send_rff_id(ns
, NULL
);
4117 case NSSM_EVENT_RSP_ERROR
:
4119 * Start timer for a delayed retry
4121 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rft_id_retry
);
4122 ns
->port
->stats
.ns_retries
++;
4123 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4124 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
4125 BFA_FCS_RETRY_TIMEOUT
);
4128 case NSSM_EVENT_PORT_OFFLINE
:
4129 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4130 bfa_fcxp_discard(ns
->fcxp
);
4134 bfa_sm_fault(ns
->port
->fcs
, event
);
4139 bfa_fcs_lport_ns_sm_rft_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
4140 enum vport_ns_event event
)
4142 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4143 bfa_trc(ns
->port
->fcs
, event
);
4146 case NSSM_EVENT_TIMEOUT
:
4147 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rft_id
);
4148 bfa_fcs_lport_ns_send_rft_id(ns
, NULL
);
4151 case NSSM_EVENT_PORT_OFFLINE
:
4152 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4153 bfa_timer_stop(&ns
->timer
);
4157 bfa_sm_fault(ns
->port
->fcs
, event
);
4162 bfa_fcs_lport_ns_sm_sending_rff_id(struct bfa_fcs_lport_ns_s
*ns
,
4163 enum vport_ns_event event
)
4165 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4166 bfa_trc(ns
->port
->fcs
, event
);
4169 case NSSM_EVENT_RFFID_SENT
:
4170 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rff_id
);
4173 case NSSM_EVENT_PORT_OFFLINE
:
4174 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4175 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4180 bfa_sm_fault(ns
->port
->fcs
, event
);
4185 bfa_fcs_lport_ns_sm_rff_id(struct bfa_fcs_lport_ns_s
*ns
,
4186 enum vport_ns_event event
)
4188 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4189 bfa_trc(ns
->port
->fcs
, event
);
4192 case NSSM_EVENT_RSP_OK
:
4195 * If min cfg mode is enabled, we donot initiate rport
4196 * discovery with the fabric. Instead, we will retrieve the
4197 * boot targets from HAL/FW.
4199 if (__fcs_min_cfg(ns
->port
->fcs
)) {
4200 bfa_fcs_lport_ns_boot_target_disc(ns
->port
);
4201 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_online
);
4206 * If the port role is Initiator Mode issue NS query.
4207 * If it is Target Mode, skip this and go to online.
4209 if (BFA_FCS_VPORT_IS_INITIATOR_MODE(ns
->port
)) {
4210 bfa_sm_set_state(ns
,
4211 bfa_fcs_lport_ns_sm_sending_gid_ft
);
4212 bfa_fcs_lport_ns_send_gid_ft(ns
, NULL
);
4215 * kick off mgmt srvr state machine
4217 bfa_fcs_lport_ms_online(ns
->port
);
4220 case NSSM_EVENT_RSP_ERROR
:
4222 * Start timer for a delayed retry
4224 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rff_id_retry
);
4225 ns
->port
->stats
.ns_retries
++;
4226 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4227 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
4228 BFA_FCS_RETRY_TIMEOUT
);
4231 case NSSM_EVENT_PORT_OFFLINE
:
4232 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4233 bfa_fcxp_discard(ns
->fcxp
);
4237 bfa_sm_fault(ns
->port
->fcs
, event
);
4242 bfa_fcs_lport_ns_sm_rff_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
4243 enum vport_ns_event event
)
4245 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4246 bfa_trc(ns
->port
->fcs
, event
);
4249 case NSSM_EVENT_TIMEOUT
:
4250 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rff_id
);
4251 bfa_fcs_lport_ns_send_rff_id(ns
, NULL
);
4254 case NSSM_EVENT_PORT_OFFLINE
:
4255 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4256 bfa_timer_stop(&ns
->timer
);
4260 bfa_sm_fault(ns
->port
->fcs
, event
);
4264 bfa_fcs_lport_ns_sm_sending_gid_ft(struct bfa_fcs_lport_ns_s
*ns
,
4265 enum vport_ns_event event
)
4267 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4268 bfa_trc(ns
->port
->fcs
, event
);
4271 case NSSM_EVENT_GIDFT_SENT
:
4272 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_gid_ft
);
4275 case NSSM_EVENT_PORT_OFFLINE
:
4276 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4277 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4282 bfa_sm_fault(ns
->port
->fcs
, event
);
4287 bfa_fcs_lport_ns_sm_gid_ft(struct bfa_fcs_lport_ns_s
*ns
,
4288 enum vport_ns_event event
)
4290 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4291 bfa_trc(ns
->port
->fcs
, event
);
4294 case NSSM_EVENT_RSP_OK
:
4295 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_online
);
4298 case NSSM_EVENT_RSP_ERROR
:
4300 * TBD: for certain reject codes, we don't need to retry
4303 * Start timer for a delayed retry
4305 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_gid_ft_retry
);
4306 ns
->port
->stats
.ns_retries
++;
4307 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
4308 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
4309 BFA_FCS_RETRY_TIMEOUT
);
4312 case NSSM_EVENT_PORT_OFFLINE
:
4313 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4314 bfa_fcxp_discard(ns
->fcxp
);
4317 case NSSM_EVENT_NS_QUERY
:
4321 bfa_sm_fault(ns
->port
->fcs
, event
);
4326 bfa_fcs_lport_ns_sm_gid_ft_retry(struct bfa_fcs_lport_ns_s
*ns
,
4327 enum vport_ns_event event
)
4329 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4330 bfa_trc(ns
->port
->fcs
, event
);
4333 case NSSM_EVENT_TIMEOUT
:
4334 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_gid_ft
);
4335 bfa_fcs_lport_ns_send_gid_ft(ns
, NULL
);
4338 case NSSM_EVENT_PORT_OFFLINE
:
4339 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4340 bfa_timer_stop(&ns
->timer
);
4344 bfa_sm_fault(ns
->port
->fcs
, event
);
4349 bfa_fcs_lport_ns_sm_online(struct bfa_fcs_lport_ns_s
*ns
,
4350 enum vport_ns_event event
)
4352 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
4353 bfa_trc(ns
->port
->fcs
, event
);
4356 case NSSM_EVENT_PORT_OFFLINE
:
4357 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4360 case NSSM_EVENT_NS_QUERY
:
4362 * If the port role is Initiator Mode issue NS query.
4363 * If it is Target Mode, skip this and go to online.
4365 if (BFA_FCS_VPORT_IS_INITIATOR_MODE(ns
->port
)) {
4366 bfa_sm_set_state(ns
,
4367 bfa_fcs_lport_ns_sm_sending_gid_ft
);
4368 bfa_fcs_lport_ns_send_gid_ft(ns
, NULL
);
4373 bfa_sm_fault(ns
->port
->fcs
, event
);
4380 * ns_pvt Nameserver local functions
4384 bfa_fcs_lport_ns_send_plogi(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4386 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4387 struct bfa_fcs_lport_s
*port
= ns
->port
;
4390 struct bfa_fcxp_s
*fcxp
;
4392 bfa_trc(port
->fcs
, port
->pid
);
4394 fcxp
= fcxp_alloced
? fcxp_alloced
:
4395 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4397 port
->stats
.ns_plogi_alloc_wait
++;
4398 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4399 bfa_fcs_lport_ns_send_plogi
, ns
, BFA_TRUE
);
4404 len
= fc_plogi_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4405 bfa_hton3b(FC_NAME_SERVER
),
4406 bfa_fcs_lport_get_fcid(port
), 0,
4407 port
->port_cfg
.pwwn
, port
->port_cfg
.nwwn
,
4408 bfa_fcport_get_maxfrsize(port
->fcs
->bfa
),
4409 bfa_fcport_get_rx_bbcredit(port
->fcs
->bfa
));
4411 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4412 FC_CLASS_3
, len
, &fchs
,
4413 bfa_fcs_lport_ns_plogi_response
, (void *)ns
,
4414 FC_MAX_PDUSZ
, FC_ELS_TOV
);
4415 port
->stats
.ns_plogi_sent
++;
4417 bfa_sm_send_event(ns
, NSSM_EVENT_PLOGI_SENT
);
4421 bfa_fcs_lport_ns_plogi_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4422 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
4423 u32 resid_len
, struct fchs_s
*rsp_fchs
)
4425 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4426 struct bfa_fcs_lport_s
*port
= ns
->port
;
4427 /* struct fc_logi_s *plogi_resp; */
4428 struct fc_els_cmd_s
*els_cmd
;
4429 struct fc_ls_rjt_s
*ls_rjt
;
4431 bfa_trc(port
->fcs
, req_status
);
4432 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4437 if (req_status
!= BFA_STATUS_OK
) {
4438 bfa_trc(port
->fcs
, req_status
);
4439 port
->stats
.ns_plogi_rsp_err
++;
4440 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4444 els_cmd
= (struct fc_els_cmd_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4446 switch (els_cmd
->els_code
) {
4449 if (rsp_len
< sizeof(struct fc_logi_s
)) {
4450 bfa_trc(port
->fcs
, rsp_len
);
4451 port
->stats
.ns_plogi_acc_err
++;
4452 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4455 port
->stats
.ns_plogi_accepts
++;
4456 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4460 ls_rjt
= (struct fc_ls_rjt_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4462 bfa_trc(port
->fcs
, ls_rjt
->reason_code
);
4463 bfa_trc(port
->fcs
, ls_rjt
->reason_code_expl
);
4465 port
->stats
.ns_rejects
++;
4467 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4471 port
->stats
.ns_plogi_unknown_rsp
++;
4472 bfa_trc(port
->fcs
, els_cmd
->els_code
);
4473 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4478 * Register node name for port_id
4481 bfa_fcs_lport_ns_send_rnn_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4483 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4484 struct bfa_fcs_lport_s
*port
= ns
->port
;
4487 struct bfa_fcxp_s
*fcxp
;
4489 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4491 fcxp
= fcxp_alloced
? fcxp_alloced
:
4492 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4494 port
->stats
.ns_rnnid_alloc_wait
++;
4495 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4496 bfa_fcs_lport_ns_send_rnn_id
, ns
, BFA_TRUE
);
4502 len
= fc_rnnid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4503 bfa_fcs_lport_get_fcid(port
),
4504 bfa_fcs_lport_get_fcid(port
),
4505 bfa_fcs_lport_get_nwwn(port
));
4507 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4508 FC_CLASS_3
, len
, &fchs
,
4509 bfa_fcs_lport_ns_rnn_id_response
, (void *)ns
,
4510 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
4512 port
->stats
.ns_rnnid_sent
++;
4513 bfa_sm_send_event(ns
, NSSM_EVENT_RNNID_SENT
);
4517 bfa_fcs_lport_ns_rnn_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4518 void *cbarg
, bfa_status_t req_status
,
4519 u32 rsp_len
, u32 resid_len
,
4520 struct fchs_s
*rsp_fchs
)
4523 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4524 struct bfa_fcs_lport_s
*port
= ns
->port
;
4525 struct ct_hdr_s
*cthdr
= NULL
;
4527 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4532 if (req_status
!= BFA_STATUS_OK
) {
4533 bfa_trc(port
->fcs
, req_status
);
4534 port
->stats
.ns_rnnid_rsp_err
++;
4535 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4539 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4540 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4542 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4543 port
->stats
.ns_rnnid_accepts
++;
4544 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4548 port
->stats
.ns_rnnid_rejects
++;
4549 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4550 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4551 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4555 * Register the symbolic node name for a given node name.
4558 bfa_fcs_lport_ns_send_rsnn_nn(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4560 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4561 struct bfa_fcs_lport_s
*port
= ns
->port
;
4564 struct bfa_fcxp_s
*fcxp
;
4567 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4569 fcxp
= fcxp_alloced
? fcxp_alloced
:
4570 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4572 port
->stats
.ns_rsnn_nn_alloc_wait
++;
4573 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4574 bfa_fcs_lport_ns_send_rsnn_nn
, ns
, BFA_TRUE
);
4579 nsymbl
= (u8
*) &(bfa_fcs_lport_get_nsym_name(
4580 bfa_fcs_get_base_port(port
->fcs
)));
4582 len
= fc_rsnn_nn_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4583 bfa_fcs_lport_get_fcid(port
),
4584 bfa_fcs_lport_get_nwwn(port
), nsymbl
);
4586 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4587 FC_CLASS_3
, len
, &fchs
,
4588 bfa_fcs_lport_ns_rsnn_nn_response
, (void *)ns
,
4589 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
4591 port
->stats
.ns_rsnn_nn_sent
++;
4593 bfa_sm_send_event(ns
, NSSM_EVENT_RSNN_NN_SENT
);
4597 bfa_fcs_lport_ns_rsnn_nn_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4598 void *cbarg
, bfa_status_t req_status
,
4599 u32 rsp_len
, u32 resid_len
,
4600 struct fchs_s
*rsp_fchs
)
4602 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4603 struct bfa_fcs_lport_s
*port
= ns
->port
;
4604 struct ct_hdr_s
*cthdr
= NULL
;
4606 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4611 if (req_status
!= BFA_STATUS_OK
) {
4612 bfa_trc(port
->fcs
, req_status
);
4613 port
->stats
.ns_rsnn_nn_rsp_err
++;
4614 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4618 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4619 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4621 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4622 port
->stats
.ns_rsnn_nn_accepts
++;
4623 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4627 port
->stats
.ns_rsnn_nn_rejects
++;
4628 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4629 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4630 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4634 * Register the symbolic port name.
4637 bfa_fcs_lport_ns_send_rspn_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4639 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4640 struct bfa_fcs_lport_s
*port
= ns
->port
;
4643 struct bfa_fcxp_s
*fcxp
;
4645 u8
*psymbl
= &symbl
[0];
4647 memset(symbl
, 0, sizeof(symbl
));
4649 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4651 fcxp
= fcxp_alloced
? fcxp_alloced
:
4652 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4654 port
->stats
.ns_rspnid_alloc_wait
++;
4655 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4656 bfa_fcs_lport_ns_send_rspn_id
, ns
, BFA_TRUE
);
4662 * for V-Port, form a Port Symbolic Name
4666 * For Vports, we append the vport's port symbolic name
4667 * to that of the base port.
4671 (char *)&(bfa_fcs_lport_get_psym_name
4672 (bfa_fcs_get_base_port(port
->fcs
))),
4675 strlcat(symbl
, (char *)&(bfa_fcs_lport_get_psym_name(port
)),
4678 psymbl
= (u8
*) &(bfa_fcs_lport_get_psym_name(port
));
4681 len
= fc_rspnid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4682 bfa_fcs_lport_get_fcid(port
), 0, psymbl
);
4684 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4685 FC_CLASS_3
, len
, &fchs
,
4686 bfa_fcs_lport_ns_rspn_id_response
, (void *)ns
,
4687 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
4689 port
->stats
.ns_rspnid_sent
++;
4691 bfa_sm_send_event(ns
, NSSM_EVENT_RSPNID_SENT
);
4695 bfa_fcs_lport_ns_rspn_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4696 void *cbarg
, bfa_status_t req_status
,
4697 u32 rsp_len
, u32 resid_len
,
4698 struct fchs_s
*rsp_fchs
)
4700 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4701 struct bfa_fcs_lport_s
*port
= ns
->port
;
4702 struct ct_hdr_s
*cthdr
= NULL
;
4704 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4709 if (req_status
!= BFA_STATUS_OK
) {
4710 bfa_trc(port
->fcs
, req_status
);
4711 port
->stats
.ns_rspnid_rsp_err
++;
4712 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4716 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4717 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4719 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4720 port
->stats
.ns_rspnid_accepts
++;
4721 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4725 port
->stats
.ns_rspnid_rejects
++;
4726 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4727 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4728 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4732 * Register FC4-Types
4735 bfa_fcs_lport_ns_send_rft_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4737 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4738 struct bfa_fcs_lport_s
*port
= ns
->port
;
4741 struct bfa_fcxp_s
*fcxp
;
4743 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4745 fcxp
= fcxp_alloced
? fcxp_alloced
:
4746 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4748 port
->stats
.ns_rftid_alloc_wait
++;
4749 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4750 bfa_fcs_lport_ns_send_rft_id
, ns
, BFA_TRUE
);
4755 len
= fc_rftid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4756 bfa_fcs_lport_get_fcid(port
), 0, port
->port_cfg
.roles
);
4758 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4759 FC_CLASS_3
, len
, &fchs
,
4760 bfa_fcs_lport_ns_rft_id_response
, (void *)ns
,
4761 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
4763 port
->stats
.ns_rftid_sent
++;
4764 bfa_sm_send_event(ns
, NSSM_EVENT_RFTID_SENT
);
4768 bfa_fcs_lport_ns_rft_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4769 void *cbarg
, bfa_status_t req_status
,
4770 u32 rsp_len
, u32 resid_len
,
4771 struct fchs_s
*rsp_fchs
)
4773 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4774 struct bfa_fcs_lport_s
*port
= ns
->port
;
4775 struct ct_hdr_s
*cthdr
= NULL
;
4777 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4782 if (req_status
!= BFA_STATUS_OK
) {
4783 bfa_trc(port
->fcs
, req_status
);
4784 port
->stats
.ns_rftid_rsp_err
++;
4785 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4789 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4790 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4792 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4793 port
->stats
.ns_rftid_accepts
++;
4794 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4798 port
->stats
.ns_rftid_rejects
++;
4799 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4800 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4801 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4805 * Register FC4-Features : Should be done after RFT_ID
4808 bfa_fcs_lport_ns_send_rff_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4810 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4811 struct bfa_fcs_lport_s
*port
= ns
->port
;
4814 struct bfa_fcxp_s
*fcxp
;
4817 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4819 fcxp
= fcxp_alloced
? fcxp_alloced
:
4820 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4822 port
->stats
.ns_rffid_alloc_wait
++;
4823 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4824 bfa_fcs_lport_ns_send_rff_id
, ns
, BFA_TRUE
);
4829 if (BFA_FCS_VPORT_IS_INITIATOR_MODE(ns
->port
))
4830 fc4_ftrs
= FC_GS_FCP_FC4_FEATURE_INITIATOR
;
4832 len
= fc_rffid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4833 bfa_fcs_lport_get_fcid(port
), 0,
4834 FC_TYPE_FCP
, fc4_ftrs
);
4836 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4837 FC_CLASS_3
, len
, &fchs
,
4838 bfa_fcs_lport_ns_rff_id_response
, (void *)ns
,
4839 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
4841 port
->stats
.ns_rffid_sent
++;
4842 bfa_sm_send_event(ns
, NSSM_EVENT_RFFID_SENT
);
4846 bfa_fcs_lport_ns_rff_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4847 void *cbarg
, bfa_status_t req_status
,
4848 u32 rsp_len
, u32 resid_len
,
4849 struct fchs_s
*rsp_fchs
)
4851 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4852 struct bfa_fcs_lport_s
*port
= ns
->port
;
4853 struct ct_hdr_s
*cthdr
= NULL
;
4855 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4860 if (req_status
!= BFA_STATUS_OK
) {
4861 bfa_trc(port
->fcs
, req_status
);
4862 port
->stats
.ns_rffid_rsp_err
++;
4863 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4867 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4868 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4870 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4871 port
->stats
.ns_rffid_accepts
++;
4872 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4876 port
->stats
.ns_rffid_rejects
++;
4877 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4878 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4880 if (cthdr
->reason_code
== CT_RSN_NOT_SUPP
) {
4881 /* if this command is not supported, we don't retry */
4882 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4884 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4887 * Query Fabric for FC4-Types Devices.
4889 * TBD : Need to use a local (FCS private) response buffer, since the response
4890 * can be larger than 2K.
4893 bfa_fcs_lport_ns_send_gid_ft(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4895 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4896 struct bfa_fcs_lport_s
*port
= ns
->port
;
4899 struct bfa_fcxp_s
*fcxp
;
4901 bfa_trc(port
->fcs
, port
->pid
);
4903 fcxp
= fcxp_alloced
? fcxp_alloced
:
4904 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
4906 port
->stats
.ns_gidft_alloc_wait
++;
4907 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4908 bfa_fcs_lport_ns_send_gid_ft
, ns
, BFA_TRUE
);
4914 * This query is only initiated for FCP initiator mode.
4916 len
= fc_gid_ft_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4917 ns
->port
->pid
, FC_TYPE_FCP
);
4919 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4920 FC_CLASS_3
, len
, &fchs
,
4921 bfa_fcs_lport_ns_gid_ft_response
, (void *)ns
,
4922 bfa_fcxp_get_maxrsp(port
->fcs
->bfa
), FC_FCCT_TOV
);
4924 port
->stats
.ns_gidft_sent
++;
4926 bfa_sm_send_event(ns
, NSSM_EVENT_GIDFT_SENT
);
4930 bfa_fcs_lport_ns_gid_ft_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4931 void *cbarg
, bfa_status_t req_status
,
4932 u32 rsp_len
, u32 resid_len
,
4933 struct fchs_s
*rsp_fchs
)
4935 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4936 struct bfa_fcs_lport_s
*port
= ns
->port
;
4937 struct ct_hdr_s
*cthdr
= NULL
;
4940 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4945 if (req_status
!= BFA_STATUS_OK
) {
4946 bfa_trc(port
->fcs
, req_status
);
4947 port
->stats
.ns_gidft_rsp_err
++;
4948 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4952 if (resid_len
!= 0) {
4954 * TBD : we will need to allocate a larger buffer & retry the
4957 bfa_trc(port
->fcs
, rsp_len
);
4958 bfa_trc(port
->fcs
, resid_len
);
4962 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4963 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4965 switch (cthdr
->cmd_rsp_code
) {
4969 port
->stats
.ns_gidft_accepts
++;
4970 n_pids
= (fc_get_ctresp_pyld_len(rsp_len
) / sizeof(u32
));
4971 bfa_trc(port
->fcs
, n_pids
);
4972 bfa_fcs_lport_ns_process_gidft_pids(port
,
4973 (u32
*) (cthdr
+ 1),
4975 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4981 * Check the reason code & explanation.
4982 * There may not have been any FC4 devices in the fabric
4984 port
->stats
.ns_gidft_rejects
++;
4985 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4986 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4988 if ((cthdr
->reason_code
== CT_RSN_UNABLE_TO_PERF
)
4989 && (cthdr
->exp_code
== CT_NS_EXP_FT_NOT_REG
)) {
4991 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4994 * for all other errors, retry
4996 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
5001 port
->stats
.ns_gidft_unknown_rsp
++;
5002 bfa_trc(port
->fcs
, cthdr
->cmd_rsp_code
);
5003 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
5008 * This routine will be called by bfa_timer on timer timeouts.
5010 * param[in] port - pointer to bfa_fcs_lport_t.
5015 * Special Considerations:
5020 bfa_fcs_lport_ns_timeout(void *arg
)
5022 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) arg
;
5024 ns
->port
->stats
.ns_timeouts
++;
5025 bfa_sm_send_event(ns
, NSSM_EVENT_TIMEOUT
);
5029 * Process the PID list in GID_FT response
5032 bfa_fcs_lport_ns_process_gidft_pids(struct bfa_fcs_lport_s
*port
, u32
*pid_buf
,
5035 struct fcgs_gidft_resp_s
*gidft_entry
;
5036 struct bfa_fcs_rport_s
*rport
;
5038 struct bfa_fcs_fabric_s
*fabric
= port
->fabric
;
5039 struct bfa_fcs_vport_s
*vport
;
5040 struct list_head
*qe
;
5043 for (ii
= 0; ii
< n_pids
; ii
++) {
5044 gidft_entry
= (struct fcgs_gidft_resp_s
*) &pid_buf
[ii
];
5046 if (gidft_entry
->pid
== port
->pid
)
5050 * Ignore PID if it is of base port
5051 * (Avoid vports discovering base port as remote port)
5053 if (gidft_entry
->pid
== fabric
->bport
.pid
)
5057 * Ignore PID if it is of vport created on the same base port
5058 * (Avoid vport discovering every other vport created on the
5059 * same port as remote port)
5061 list_for_each(qe
, &fabric
->vport_q
) {
5062 vport
= (struct bfa_fcs_vport_s
*) qe
;
5063 if (vport
->lport
.pid
== gidft_entry
->pid
)
5073 * Check if this rport already exists
5075 rport
= bfa_fcs_lport_get_rport_by_pid(port
, gidft_entry
->pid
);
5076 if (rport
== NULL
) {
5078 * this is a new device. create rport
5080 rport
= bfa_fcs_rport_create(port
, gidft_entry
->pid
);
5083 * this rport already exists
5085 bfa_fcs_rport_scn(rport
);
5088 bfa_trc(port
->fcs
, gidft_entry
->pid
);
5091 * if the last entry bit is set, bail out.
5093 if (gidft_entry
->last
)
5099 * fcs_ns_public FCS nameserver public interfaces
5103 * Functions called by port/fab.
5104 * These will send relevant Events to the ns state machine.
5107 bfa_fcs_lport_ns_init(struct bfa_fcs_lport_s
*port
)
5109 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
5112 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
5116 bfa_fcs_lport_ns_offline(struct bfa_fcs_lport_s
*port
)
5118 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
5121 bfa_sm_send_event(ns
, NSSM_EVENT_PORT_OFFLINE
);
5125 bfa_fcs_lport_ns_online(struct bfa_fcs_lport_s
*port
)
5127 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
5130 bfa_sm_send_event(ns
, NSSM_EVENT_PORT_ONLINE
);
5134 bfa_fcs_lport_ns_query(struct bfa_fcs_lport_s
*port
)
5136 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
5138 bfa_trc(port
->fcs
, port
->pid
);
5139 if (bfa_sm_cmp_state(ns
, bfa_fcs_lport_ns_sm_online
))
5140 bfa_sm_send_event(ns
, NSSM_EVENT_NS_QUERY
);
5144 bfa_fcs_lport_ns_boot_target_disc(bfa_fcs_lport_t
*port
)
5147 struct bfa_fcs_rport_s
*rport
;
5149 wwn_t wwns
[BFA_PREBOOT_BOOTLUN_MAX
];
5152 bfa_iocfc_get_bootwwns(port
->fcs
->bfa
, &nwwns
, wwns
);
5154 for (ii
= 0 ; ii
< nwwns
; ++ii
) {
5155 rport
= bfa_fcs_rport_create_by_wwn(port
, wwns
[ii
]);
5161 bfa_fcs_lport_ns_util_send_rspn_id(void *cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
5163 struct bfa_fcs_lport_ns_s
*ns
= cbarg
;
5164 struct bfa_fcs_lport_s
*port
= ns
->port
;
5166 struct bfa_fcxp_s
*fcxp
;
5170 /* Avoid sending RSPN in the following states. */
5171 if (bfa_sm_cmp_state(ns
, bfa_fcs_lport_ns_sm_offline
) ||
5172 bfa_sm_cmp_state(ns
, bfa_fcs_lport_ns_sm_plogi_sending
) ||
5173 bfa_sm_cmp_state(ns
, bfa_fcs_lport_ns_sm_plogi
) ||
5174 bfa_sm_cmp_state(ns
, bfa_fcs_lport_ns_sm_plogi_retry
) ||
5175 bfa_sm_cmp_state(ns
, bfa_fcs_lport_ns_sm_rspn_id_retry
))
5178 memset(symbl
, 0, sizeof(symbl
));
5179 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
5181 fcxp
= fcxp_alloced
? fcxp_alloced
:
5182 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
5184 port
->stats
.ns_rspnid_alloc_wait
++;
5185 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
5186 bfa_fcs_lport_ns_util_send_rspn_id
, ns
, BFA_FALSE
);
5194 * For Vports, we append the vport's port symbolic name
5195 * to that of the base port.
5197 strlcpy(symbl
, (char *)&(bfa_fcs_lport_get_psym_name
5198 (bfa_fcs_get_base_port(port
->fcs
))),
5202 (char *)&(bfa_fcs_lport_get_psym_name(port
)),
5206 len
= fc_rspnid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
5207 bfa_fcs_lport_get_fcid(port
), 0, symbl
);
5209 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
5210 FC_CLASS_3
, len
, &fchs
, NULL
, NULL
, FC_MAX_PDUSZ
, 0);
5212 port
->stats
.ns_rspnid_sent
++;
5219 #define FC_QOS_RSCN_EVENT 0x0c
5220 #define FC_FABRIC_NAME_RSCN_EVENT 0x0d
5223 * forward declarations
5225 static void bfa_fcs_lport_scn_send_scr(void *scn_cbarg
,
5226 struct bfa_fcxp_s
*fcxp_alloced
);
5227 static void bfa_fcs_lport_scn_scr_response(void *fcsarg
,
5228 struct bfa_fcxp_s
*fcxp
,
5230 bfa_status_t req_status
,
5233 struct fchs_s
*rsp_fchs
);
5234 static void bfa_fcs_lport_scn_send_ls_acc(struct bfa_fcs_lport_s
*port
,
5235 struct fchs_s
*rx_fchs
);
5236 static void bfa_fcs_lport_scn_timeout(void *arg
);
5239 * fcs_scm_sm FCS SCN state machine
5243 * VPort SCN State Machine events
5245 enum port_scn_event
{
5246 SCNSM_EVENT_PORT_ONLINE
= 1,
5247 SCNSM_EVENT_PORT_OFFLINE
= 2,
5248 SCNSM_EVENT_RSP_OK
= 3,
5249 SCNSM_EVENT_RSP_ERROR
= 4,
5250 SCNSM_EVENT_TIMEOUT
= 5,
5251 SCNSM_EVENT_SCR_SENT
= 6,
5254 static void bfa_fcs_lport_scn_sm_offline(struct bfa_fcs_lport_scn_s
*scn
,
5255 enum port_scn_event event
);
5256 static void bfa_fcs_lport_scn_sm_sending_scr(
5257 struct bfa_fcs_lport_scn_s
*scn
,
5258 enum port_scn_event event
);
5259 static void bfa_fcs_lport_scn_sm_scr(struct bfa_fcs_lport_scn_s
*scn
,
5260 enum port_scn_event event
);
5261 static void bfa_fcs_lport_scn_sm_scr_retry(struct bfa_fcs_lport_scn_s
*scn
,
5262 enum port_scn_event event
);
5263 static void bfa_fcs_lport_scn_sm_online(struct bfa_fcs_lport_scn_s
*scn
,
5264 enum port_scn_event event
);
5267 * Starting state - awaiting link up.
5270 bfa_fcs_lport_scn_sm_offline(struct bfa_fcs_lport_scn_s
*scn
,
5271 enum port_scn_event event
)
5274 case SCNSM_EVENT_PORT_ONLINE
:
5275 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_sending_scr
);
5276 bfa_fcs_lport_scn_send_scr(scn
, NULL
);
5279 case SCNSM_EVENT_PORT_OFFLINE
:
5283 bfa_sm_fault(scn
->port
->fcs
, event
);
5288 bfa_fcs_lport_scn_sm_sending_scr(struct bfa_fcs_lport_scn_s
*scn
,
5289 enum port_scn_event event
)
5292 case SCNSM_EVENT_SCR_SENT
:
5293 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_scr
);
5296 case SCNSM_EVENT_PORT_OFFLINE
:
5297 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
5298 bfa_fcxp_walloc_cancel(scn
->port
->fcs
->bfa
, &scn
->fcxp_wqe
);
5302 bfa_sm_fault(scn
->port
->fcs
, event
);
5307 bfa_fcs_lport_scn_sm_scr(struct bfa_fcs_lport_scn_s
*scn
,
5308 enum port_scn_event event
)
5310 struct bfa_fcs_lport_s
*port
= scn
->port
;
5313 case SCNSM_EVENT_RSP_OK
:
5314 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_online
);
5317 case SCNSM_EVENT_RSP_ERROR
:
5318 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_scr_retry
);
5319 bfa_timer_start(port
->fcs
->bfa
, &scn
->timer
,
5320 bfa_fcs_lport_scn_timeout
, scn
,
5321 BFA_FCS_RETRY_TIMEOUT
);
5324 case SCNSM_EVENT_PORT_OFFLINE
:
5325 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
5326 bfa_fcxp_discard(scn
->fcxp
);
5330 bfa_sm_fault(port
->fcs
, event
);
5335 bfa_fcs_lport_scn_sm_scr_retry(struct bfa_fcs_lport_scn_s
*scn
,
5336 enum port_scn_event event
)
5339 case SCNSM_EVENT_TIMEOUT
:
5340 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_sending_scr
);
5341 bfa_fcs_lport_scn_send_scr(scn
, NULL
);
5344 case SCNSM_EVENT_PORT_OFFLINE
:
5345 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
5346 bfa_timer_stop(&scn
->timer
);
5350 bfa_sm_fault(scn
->port
->fcs
, event
);
5355 bfa_fcs_lport_scn_sm_online(struct bfa_fcs_lport_scn_s
*scn
,
5356 enum port_scn_event event
)
5359 case SCNSM_EVENT_PORT_OFFLINE
:
5360 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
5364 bfa_sm_fault(scn
->port
->fcs
, event
);
5371 * fcs_scn_private FCS SCN private functions
5375 * This routine will be called to send a SCR command.
5378 bfa_fcs_lport_scn_send_scr(void *scn_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
5380 struct bfa_fcs_lport_scn_s
*scn
= scn_cbarg
;
5381 struct bfa_fcs_lport_s
*port
= scn
->port
;
5384 struct bfa_fcxp_s
*fcxp
;
5386 bfa_trc(port
->fcs
, port
->pid
);
5387 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
5389 fcxp
= fcxp_alloced
? fcxp_alloced
:
5390 bfa_fcs_fcxp_alloc(port
->fcs
, BFA_TRUE
);
5392 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &scn
->fcxp_wqe
,
5393 bfa_fcs_lport_scn_send_scr
, scn
, BFA_TRUE
);
5398 /* Handle VU registrations for Base port only */
5399 if ((!port
->vport
) && bfa_ioc_get_fcmode(&port
->fcs
->bfa
->ioc
)) {
5400 len
= fc_scr_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
5401 port
->fabric
->lps
->brcd_switch
,
5404 len
= fc_scr_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
5409 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
5410 FC_CLASS_3
, len
, &fchs
,
5411 bfa_fcs_lport_scn_scr_response
,
5412 (void *)scn
, FC_MAX_PDUSZ
, FC_ELS_TOV
);
5414 bfa_sm_send_event(scn
, SCNSM_EVENT_SCR_SENT
);
5418 bfa_fcs_lport_scn_scr_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
5419 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
5420 u32 resid_len
, struct fchs_s
*rsp_fchs
)
5422 struct bfa_fcs_lport_scn_s
*scn
= (struct bfa_fcs_lport_scn_s
*) cbarg
;
5423 struct bfa_fcs_lport_s
*port
= scn
->port
;
5424 struct fc_els_cmd_s
*els_cmd
;
5425 struct fc_ls_rjt_s
*ls_rjt
;
5427 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
5432 if (req_status
!= BFA_STATUS_OK
) {
5433 bfa_trc(port
->fcs
, req_status
);
5434 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_ERROR
);
5438 els_cmd
= (struct fc_els_cmd_s
*) BFA_FCXP_RSP_PLD(fcxp
);
5440 switch (els_cmd
->els_code
) {
5443 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_OK
);
5448 ls_rjt
= (struct fc_ls_rjt_s
*) BFA_FCXP_RSP_PLD(fcxp
);
5450 bfa_trc(port
->fcs
, ls_rjt
->reason_code
);
5451 bfa_trc(port
->fcs
, ls_rjt
->reason_code_expl
);
5453 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_ERROR
);
5457 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_ERROR
);
5465 bfa_fcs_lport_scn_send_ls_acc(struct bfa_fcs_lport_s
*port
,
5466 struct fchs_s
*rx_fchs
)
5469 struct bfa_fcxp_s
*fcxp
;
5470 struct bfa_rport_s
*bfa_rport
= NULL
;
5473 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
5475 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
, BFA_FALSE
);
5479 len
= fc_ls_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
5480 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
5483 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
5484 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
5489 * This routine will be called by bfa_timer on timer timeouts.
5491 * param[in] vport - pointer to bfa_fcs_lport_t.
5492 * param[out] vport_status - pointer to return vport status in
5497 * Special Considerations:
5502 bfa_fcs_lport_scn_timeout(void *arg
)
5504 struct bfa_fcs_lport_scn_s
*scn
= (struct bfa_fcs_lport_scn_s
*) arg
;
5506 bfa_sm_send_event(scn
, SCNSM_EVENT_TIMEOUT
);
5512 * fcs_scn_public FCS state change notification public interfaces
5516 * Functions called by port/fab
5519 bfa_fcs_lport_scn_init(struct bfa_fcs_lport_s
*port
)
5521 struct bfa_fcs_lport_scn_s
*scn
= BFA_FCS_GET_SCN_FROM_PORT(port
);
5524 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
5528 bfa_fcs_lport_scn_offline(struct bfa_fcs_lport_s
*port
)
5530 struct bfa_fcs_lport_scn_s
*scn
= BFA_FCS_GET_SCN_FROM_PORT(port
);
5533 bfa_sm_send_event(scn
, SCNSM_EVENT_PORT_OFFLINE
);
5537 bfa_fcs_lport_fab_scn_online(struct bfa_fcs_lport_s
*port
)
5539 struct bfa_fcs_lport_scn_s
*scn
= BFA_FCS_GET_SCN_FROM_PORT(port
);
5542 bfa_sm_send_event(scn
, SCNSM_EVENT_PORT_ONLINE
);
5546 bfa_fcs_lport_scn_portid_rscn(struct bfa_fcs_lport_s
*port
, u32 rpid
)
5548 struct bfa_fcs_rport_s
*rport
;
5549 struct bfa_fcs_fabric_s
*fabric
= port
->fabric
;
5550 struct bfa_fcs_vport_s
*vport
;
5551 struct list_head
*qe
;
5553 bfa_trc(port
->fcs
, rpid
);
5556 * Ignore PID if it is of base port or of vports created on the
5557 * same base port. It is to avoid vports discovering base port or
5558 * other vports created on same base port as remote port
5560 if (rpid
== fabric
->bport
.pid
)
5563 list_for_each(qe
, &fabric
->vport_q
) {
5564 vport
= (struct bfa_fcs_vport_s
*) qe
;
5565 if (vport
->lport
.pid
== rpid
)
5569 * If this is an unknown device, then it just came online.
5570 * Otherwise let rport handle the RSCN event.
5572 rport
= bfa_fcs_lport_get_rport_by_pid(port
, rpid
);
5574 rport
= bfa_fcs_lport_get_rport_by_old_pid(port
, rpid
);
5576 if (rport
== NULL
) {
5578 * If min cfg mode is enabled, we donot need to
5579 * discover any new rports.
5581 if (!__fcs_min_cfg(port
->fcs
))
5582 rport
= bfa_fcs_rport_create(port
, rpid
);
5584 bfa_fcs_rport_scn(rport
);
5588 * rscn format based PID comparison
5590 #define __fc_pid_match(__c0, __c1, __fmt) \
5591 (((__fmt) == FC_RSCN_FORMAT_FABRIC) || \
5592 (((__fmt) == FC_RSCN_FORMAT_DOMAIN) && \
5593 ((__c0)[0] == (__c1)[0])) || \
5594 (((__fmt) == FC_RSCN_FORMAT_AREA) && \
5595 ((__c0)[0] == (__c1)[0]) && \
5596 ((__c0)[1] == (__c1)[1])))
5599 bfa_fcs_lport_scn_multiport_rscn(struct bfa_fcs_lport_s
*port
,
5600 enum fc_rscn_format format
,
5603 struct bfa_fcs_rport_s
*rport
;
5604 struct list_head
*qe
, *qe_next
;
5607 bfa_trc(port
->fcs
, format
);
5608 bfa_trc(port
->fcs
, rscn_pid
);
5610 c0
= (u8
*) &rscn_pid
;
5612 list_for_each_safe(qe
, qe_next
, &port
->rport_q
) {
5613 rport
= (struct bfa_fcs_rport_s
*) qe
;
5614 c1
= (u8
*) &rport
->pid
;
5615 if (__fc_pid_match(c0
, c1
, format
))
5616 bfa_fcs_rport_scn(rport
);
5622 bfa_fcs_lport_scn_process_rscn(struct bfa_fcs_lport_s
*port
,
5623 struct fchs_s
*fchs
, u32 len
)
5625 struct fc_rscn_pl_s
*rscn
= (struct fc_rscn_pl_s
*) (fchs
+ 1);
5628 bfa_boolean_t nsquery
= BFA_FALSE
, found
;
5632 (be16_to_cpu(rscn
->payldlen
) -
5633 sizeof(u32
)) / sizeof(rscn
->event
[0]);
5635 bfa_trc(port
->fcs
, num_entries
);
5637 port
->stats
.num_rscn
++;
5639 bfa_fcs_lport_scn_send_ls_acc(port
, fchs
);
5641 for (i
= 0; i
< num_entries
; i
++) {
5642 rscn_pid
= rscn
->event
[i
].portid
;
5644 bfa_trc(port
->fcs
, rscn
->event
[i
].format
);
5645 bfa_trc(port
->fcs
, rscn_pid
);
5647 /* check for duplicate entries in the list */
5649 for (j
= 0; j
< i
; j
++) {
5650 if (rscn
->event
[j
].portid
== rscn_pid
) {
5656 /* if found in down the list, pid has been already processed */
5658 bfa_trc(port
->fcs
, rscn_pid
);
5662 switch (rscn
->event
[i
].format
) {
5663 case FC_RSCN_FORMAT_PORTID
:
5664 if (rscn
->event
[i
].qualifier
== FC_QOS_RSCN_EVENT
) {
5666 * Ignore this event.
5667 * f/w would have processed it
5669 bfa_trc(port
->fcs
, rscn_pid
);
5671 port
->stats
.num_portid_rscn
++;
5672 bfa_fcs_lport_scn_portid_rscn(port
, rscn_pid
);
5676 case FC_RSCN_FORMAT_FABRIC
:
5677 if (rscn
->event
[i
].qualifier
==
5678 FC_FABRIC_NAME_RSCN_EVENT
) {
5679 bfa_fcs_lport_ms_fabric_rscn(port
);
5682 /* !!!!!!!!! Fall Through !!!!!!!!!!!!! */
5684 case FC_RSCN_FORMAT_AREA
:
5685 case FC_RSCN_FORMAT_DOMAIN
:
5687 bfa_fcs_lport_scn_multiport_rscn(port
,
5688 rscn
->event
[i
].format
,
5700 * If any of area, domain or fabric RSCN is received, do a fresh
5701 * discovery to find new devices.
5704 bfa_fcs_lport_ns_query(port
);
5711 * fcs_port_api BFA FCS port API
5713 struct bfa_fcs_lport_s
*
5714 bfa_fcs_get_base_port(struct bfa_fcs_s
*fcs
)
5716 return &fcs
->fabric
.bport
;
5720 bfa_fcs_lport_get_rport(struct bfa_fcs_lport_s
*port
, wwn_t wwn
, int index
,
5721 int nrports
, bfa_boolean_t bwwn
)
5723 struct list_head
*qh
, *qe
;
5724 struct bfa_fcs_rport_s
*rport
= NULL
;
5726 struct bfa_fcs_s
*fcs
;
5728 if (port
== NULL
|| nrports
== 0)
5732 bfa_trc(fcs
, (u32
) nrports
);
5735 qh
= &port
->rport_q
;
5736 qe
= bfa_q_first(qh
);
5738 while ((qe
!= qh
) && (i
< nrports
)) {
5739 rport
= (struct bfa_fcs_rport_s
*) qe
;
5740 if (bfa_ntoh3b(rport
->pid
) > 0xFFF000) {
5741 qe
= bfa_q_next(qe
);
5742 bfa_trc(fcs
, (u32
) rport
->pwwn
);
5743 bfa_trc(fcs
, rport
->pid
);
5749 if (!memcmp(&wwn
, &rport
->pwwn
, 8))
5757 qe
= bfa_q_next(qe
);
5768 bfa_fcs_lport_get_rport_quals(struct bfa_fcs_lport_s
*port
,
5769 struct bfa_rport_qualifier_s rports
[], int *nrports
)
5771 struct list_head
*qh
, *qe
;
5772 struct bfa_fcs_rport_s
*rport
= NULL
;
5774 struct bfa_fcs_s
*fcs
;
5776 if (port
== NULL
|| rports
== NULL
|| *nrports
== 0)
5780 bfa_trc(fcs
, (u32
) *nrports
);
5783 qh
= &port
->rport_q
;
5784 qe
= bfa_q_first(qh
);
5786 while ((qe
!= qh
) && (i
< *nrports
)) {
5787 rport
= (struct bfa_fcs_rport_s
*) qe
;
5788 if (bfa_ntoh3b(rport
->pid
) > 0xFFF000) {
5789 qe
= bfa_q_next(qe
);
5790 bfa_trc(fcs
, (u32
) rport
->pwwn
);
5791 bfa_trc(fcs
, rport
->pid
);
5796 if (!rport
->pwwn
&& !rport
->pid
) {
5797 qe
= bfa_q_next(qe
);
5801 rports
[i
].pwwn
= rport
->pwwn
;
5802 rports
[i
].pid
= rport
->pid
;
5805 qe
= bfa_q_next(qe
);
5813 * Iterate's through all the rport's in the given port to
5814 * determine the maximum operating speed.
5816 * !!!! To be used in TRL Functionality only !!!!
5819 bfa_fcs_lport_get_rport_max_speed(bfa_fcs_lport_t
*port
)
5821 struct list_head
*qh
, *qe
;
5822 struct bfa_fcs_rport_s
*rport
= NULL
;
5823 struct bfa_fcs_s
*fcs
;
5824 bfa_port_speed_t max_speed
= 0;
5825 struct bfa_port_attr_s port_attr
;
5826 bfa_port_speed_t port_speed
, rport_speed
;
5827 bfa_boolean_t trl_enabled
;
5833 trl_enabled
= bfa_fcport_is_ratelim(port
->fcs
->bfa
);
5835 /* Get Physical port's current speed */
5836 bfa_fcport_get_attr(port
->fcs
->bfa
, &port_attr
);
5837 port_speed
= port_attr
.speed
;
5838 bfa_trc(fcs
, port_speed
);
5840 qh
= &port
->rport_q
;
5841 qe
= bfa_q_first(qh
);
5844 rport
= (struct bfa_fcs_rport_s
*) qe
;
5845 if ((bfa_ntoh3b(rport
->pid
) > 0xFFF000) ||
5846 (bfa_fcs_rport_get_state(rport
) == BFA_RPORT_OFFLINE
) ||
5847 (rport
->scsi_function
!= BFA_RPORT_TARGET
)) {
5848 qe
= bfa_q_next(qe
);
5852 rport_speed
= rport
->rpf
.rpsc_speed
;
5853 if ((trl_enabled
) && (rport_speed
==
5854 BFA_PORT_SPEED_UNKNOWN
)) {
5855 /* Use default ratelim speed setting */
5857 bfa_fcport_get_ratelim_speed(port
->fcs
->bfa
);
5860 if (rport_speed
> max_speed
)
5861 max_speed
= rport_speed
;
5863 qe
= bfa_q_next(qe
);
5866 if (max_speed
> port_speed
)
5867 max_speed
= port_speed
;
5869 bfa_trc(fcs
, max_speed
);
5873 struct bfa_fcs_lport_s
*
5874 bfa_fcs_lookup_port(struct bfa_fcs_s
*fcs
, u16 vf_id
, wwn_t lpwwn
)
5876 struct bfa_fcs_vport_s
*vport
;
5879 WARN_ON(fcs
== NULL
);
5881 vf
= bfa_fcs_vf_lookup(fcs
, vf_id
);
5883 bfa_trc(fcs
, vf_id
);
5887 if (!lpwwn
|| (vf
->bport
.port_cfg
.pwwn
== lpwwn
))
5890 vport
= bfa_fcs_fabric_vport_lookup(vf
, lpwwn
);
5892 return &vport
->lport
;
5898 * API corresponding to NPIV_VPORT_GETINFO.
5901 bfa_fcs_lport_get_info(struct bfa_fcs_lport_s
*port
,
5902 struct bfa_lport_info_s
*port_info
)
5905 bfa_trc(port
->fcs
, port
->fabric
->fabric_name
);
5907 if (port
->vport
== NULL
) {
5909 * This is a Physical port
5911 port_info
->port_type
= BFA_LPORT_TYPE_PHYSICAL
;
5914 * @todo : need to fix the state & reason
5916 port_info
->port_state
= 0;
5917 port_info
->offline_reason
= 0;
5919 port_info
->port_wwn
= bfa_fcs_lport_get_pwwn(port
);
5920 port_info
->node_wwn
= bfa_fcs_lport_get_nwwn(port
);
5922 port_info
->max_vports_supp
=
5923 bfa_lps_get_max_vport(port
->fcs
->bfa
);
5924 port_info
->num_vports_inuse
=
5925 port
->fabric
->num_vports
;
5926 port_info
->max_rports_supp
= BFA_FCS_MAX_RPORTS_SUPP
;
5927 port_info
->num_rports_inuse
= port
->num_rports
;
5930 * This is a virtual port
5932 port_info
->port_type
= BFA_LPORT_TYPE_VIRTUAL
;
5935 * @todo : need to fix the state & reason
5937 port_info
->port_state
= 0;
5938 port_info
->offline_reason
= 0;
5940 port_info
->port_wwn
= bfa_fcs_lport_get_pwwn(port
);
5941 port_info
->node_wwn
= bfa_fcs_lport_get_nwwn(port
);
5946 bfa_fcs_lport_get_stats(struct bfa_fcs_lport_s
*fcs_port
,
5947 struct bfa_lport_stats_s
*port_stats
)
5949 *port_stats
= fcs_port
->stats
;
5953 bfa_fcs_lport_clear_stats(struct bfa_fcs_lport_s
*fcs_port
)
5955 memset(&fcs_port
->stats
, 0, sizeof(struct bfa_lport_stats_s
));
5959 * Let new loop map create missing rports
5962 bfa_fcs_lport_lip_scn_online(struct bfa_fcs_lport_s
*port
)
5964 bfa_fcs_lport_loop_online(port
);
5968 * FCS virtual port state machine
5971 #define __vport_fcs(__vp) ((__vp)->lport.fcs)
5972 #define __vport_pwwn(__vp) ((__vp)->lport.port_cfg.pwwn)
5973 #define __vport_nwwn(__vp) ((__vp)->lport.port_cfg.nwwn)
5974 #define __vport_bfa(__vp) ((__vp)->lport.fcs->bfa)
5975 #define __vport_fcid(__vp) ((__vp)->lport.pid)
5976 #define __vport_fabric(__vp) ((__vp)->lport.fabric)
5977 #define __vport_vfid(__vp) ((__vp)->lport.fabric->vf_id)
5979 #define BFA_FCS_VPORT_MAX_RETRIES 5
5981 * Forward declarations
5983 static void bfa_fcs_vport_do_fdisc(struct bfa_fcs_vport_s
*vport
);
5984 static void bfa_fcs_vport_timeout(void *vport_arg
);
5985 static void bfa_fcs_vport_do_logo(struct bfa_fcs_vport_s
*vport
);
5986 static void bfa_fcs_vport_free(struct bfa_fcs_vport_s
*vport
);
5989 * fcs_vport_sm FCS virtual port state machine
5993 * VPort State Machine events
5995 enum bfa_fcs_vport_event
{
5996 BFA_FCS_VPORT_SM_CREATE
= 1, /* vport create event */
5997 BFA_FCS_VPORT_SM_DELETE
= 2, /* vport delete event */
5998 BFA_FCS_VPORT_SM_START
= 3, /* vport start request */
5999 BFA_FCS_VPORT_SM_STOP
= 4, /* stop: unsupported */
6000 BFA_FCS_VPORT_SM_ONLINE
= 5, /* fabric online */
6001 BFA_FCS_VPORT_SM_OFFLINE
= 6, /* fabric offline event */
6002 BFA_FCS_VPORT_SM_FRMSENT
= 7, /* fdisc/logo sent events */
6003 BFA_FCS_VPORT_SM_RSP_OK
= 8, /* good response */
6004 BFA_FCS_VPORT_SM_RSP_ERROR
= 9, /* error/bad response */
6005 BFA_FCS_VPORT_SM_TIMEOUT
= 10, /* delay timer event */
6006 BFA_FCS_VPORT_SM_DELCOMP
= 11, /* lport delete completion */
6007 BFA_FCS_VPORT_SM_RSP_DUP_WWN
= 12, /* Dup wnn error*/
6008 BFA_FCS_VPORT_SM_RSP_FAILED
= 13, /* non-retryable failure */
6009 BFA_FCS_VPORT_SM_STOPCOMP
= 14, /* vport delete completion */
6010 BFA_FCS_VPORT_SM_FABRIC_MAX
= 15, /* max vports on fabric */
6013 static void bfa_fcs_vport_sm_uninit(struct bfa_fcs_vport_s
*vport
,
6014 enum bfa_fcs_vport_event event
);
6015 static void bfa_fcs_vport_sm_created(struct bfa_fcs_vport_s
*vport
,
6016 enum bfa_fcs_vport_event event
);
6017 static void bfa_fcs_vport_sm_offline(struct bfa_fcs_vport_s
*vport
,
6018 enum bfa_fcs_vport_event event
);
6019 static void bfa_fcs_vport_sm_fdisc(struct bfa_fcs_vport_s
*vport
,
6020 enum bfa_fcs_vport_event event
);
6021 static void bfa_fcs_vport_sm_fdisc_retry(struct bfa_fcs_vport_s
*vport
,
6022 enum bfa_fcs_vport_event event
);
6023 static void bfa_fcs_vport_sm_fdisc_rsp_wait(struct bfa_fcs_vport_s
*vport
,
6024 enum bfa_fcs_vport_event event
);
6025 static void bfa_fcs_vport_sm_online(struct bfa_fcs_vport_s
*vport
,
6026 enum bfa_fcs_vport_event event
);
6027 static void bfa_fcs_vport_sm_deleting(struct bfa_fcs_vport_s
*vport
,
6028 enum bfa_fcs_vport_event event
);
6029 static void bfa_fcs_vport_sm_cleanup(struct bfa_fcs_vport_s
*vport
,
6030 enum bfa_fcs_vport_event event
);
6031 static void bfa_fcs_vport_sm_logo(struct bfa_fcs_vport_s
*vport
,
6032 enum bfa_fcs_vport_event event
);
6033 static void bfa_fcs_vport_sm_error(struct bfa_fcs_vport_s
*vport
,
6034 enum bfa_fcs_vport_event event
);
6035 static void bfa_fcs_vport_sm_stopping(struct bfa_fcs_vport_s
*vport
,
6036 enum bfa_fcs_vport_event event
);
6037 static void bfa_fcs_vport_sm_logo_for_stop(struct bfa_fcs_vport_s
*vport
,
6038 enum bfa_fcs_vport_event event
);
6040 static struct bfa_sm_table_s vport_sm_table
[] = {
6041 {BFA_SM(bfa_fcs_vport_sm_uninit
), BFA_FCS_VPORT_UNINIT
},
6042 {BFA_SM(bfa_fcs_vport_sm_created
), BFA_FCS_VPORT_CREATED
},
6043 {BFA_SM(bfa_fcs_vport_sm_offline
), BFA_FCS_VPORT_OFFLINE
},
6044 {BFA_SM(bfa_fcs_vport_sm_fdisc
), BFA_FCS_VPORT_FDISC
},
6045 {BFA_SM(bfa_fcs_vport_sm_fdisc_retry
), BFA_FCS_VPORT_FDISC_RETRY
},
6046 {BFA_SM(bfa_fcs_vport_sm_fdisc_rsp_wait
), BFA_FCS_VPORT_FDISC_RSP_WAIT
},
6047 {BFA_SM(bfa_fcs_vport_sm_online
), BFA_FCS_VPORT_ONLINE
},
6048 {BFA_SM(bfa_fcs_vport_sm_deleting
), BFA_FCS_VPORT_DELETING
},
6049 {BFA_SM(bfa_fcs_vport_sm_cleanup
), BFA_FCS_VPORT_CLEANUP
},
6050 {BFA_SM(bfa_fcs_vport_sm_logo
), BFA_FCS_VPORT_LOGO
},
6051 {BFA_SM(bfa_fcs_vport_sm_error
), BFA_FCS_VPORT_ERROR
}
6058 bfa_fcs_vport_sm_uninit(struct bfa_fcs_vport_s
*vport
,
6059 enum bfa_fcs_vport_event event
)
6061 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6062 bfa_trc(__vport_fcs(vport
), event
);
6065 case BFA_FCS_VPORT_SM_CREATE
:
6066 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
6067 bfa_fcs_fabric_addvport(__vport_fabric(vport
), vport
);
6071 bfa_sm_fault(__vport_fcs(vport
), event
);
6076 * Created state - a start event is required to start up the state machine.
6079 bfa_fcs_vport_sm_created(struct bfa_fcs_vport_s
*vport
,
6080 enum bfa_fcs_vport_event event
)
6082 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6083 bfa_trc(__vport_fcs(vport
), event
);
6086 case BFA_FCS_VPORT_SM_START
:
6087 if (bfa_sm_cmp_state(__vport_fabric(vport
),
6088 bfa_fcs_fabric_sm_online
)
6089 && bfa_fcs_fabric_npiv_capable(__vport_fabric(vport
))) {
6090 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
6091 bfa_fcs_vport_do_fdisc(vport
);
6094 * Fabric is offline or not NPIV capable, stay in
6097 vport
->vport_stats
.fab_no_npiv
++;
6098 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
6102 case BFA_FCS_VPORT_SM_DELETE
:
6103 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6104 bfa_fcs_lport_delete(&vport
->lport
);
6107 case BFA_FCS_VPORT_SM_ONLINE
:
6108 case BFA_FCS_VPORT_SM_OFFLINE
:
6110 * Ignore ONLINE/OFFLINE events from fabric
6111 * till vport is started.
6116 bfa_sm_fault(__vport_fcs(vport
), event
);
6121 * Offline state - awaiting ONLINE event from fabric SM.
6124 bfa_fcs_vport_sm_offline(struct bfa_fcs_vport_s
*vport
,
6125 enum bfa_fcs_vport_event event
)
6127 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6128 bfa_trc(__vport_fcs(vport
), event
);
6131 case BFA_FCS_VPORT_SM_DELETE
:
6132 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6133 bfa_fcs_lport_delete(&vport
->lport
);
6136 case BFA_FCS_VPORT_SM_ONLINE
:
6137 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
6138 vport
->fdisc_retries
= 0;
6139 bfa_fcs_vport_do_fdisc(vport
);
6142 case BFA_FCS_VPORT_SM_STOP
:
6143 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6144 bfa_sm_send_event(&vport
->lport
, BFA_FCS_PORT_SM_STOP
);
6147 case BFA_FCS_VPORT_SM_OFFLINE
:
6149 * This can happen if the vport couldn't be initialzied
6150 * due the fact that the npiv was not enabled on the switch.
6151 * In that case we will put the vport in offline state.
6152 * However, the link can go down and cause the this event to
6153 * be sent when we are already offline. Ignore it.
6158 bfa_sm_fault(__vport_fcs(vport
), event
);
6164 * FDISC is sent and awaiting reply from fabric.
6167 bfa_fcs_vport_sm_fdisc(struct bfa_fcs_vport_s
*vport
,
6168 enum bfa_fcs_vport_event event
)
6170 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6171 bfa_trc(__vport_fcs(vport
), event
);
6174 case BFA_FCS_VPORT_SM_DELETE
:
6175 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc_rsp_wait
);
6178 case BFA_FCS_VPORT_SM_OFFLINE
:
6179 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
6180 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
6183 case BFA_FCS_VPORT_SM_RSP_OK
:
6184 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_online
);
6185 bfa_fcs_lport_online(&vport
->lport
);
6188 case BFA_FCS_VPORT_SM_RSP_ERROR
:
6189 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc_retry
);
6190 bfa_timer_start(__vport_bfa(vport
), &vport
->timer
,
6191 bfa_fcs_vport_timeout
, vport
,
6192 BFA_FCS_RETRY_TIMEOUT
);
6195 case BFA_FCS_VPORT_SM_RSP_FAILED
:
6196 case BFA_FCS_VPORT_SM_FABRIC_MAX
:
6197 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
6200 case BFA_FCS_VPORT_SM_RSP_DUP_WWN
:
6201 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_error
);
6205 bfa_sm_fault(__vport_fcs(vport
), event
);
6210 * FDISC attempt failed - a timer is active to retry FDISC.
6213 bfa_fcs_vport_sm_fdisc_retry(struct bfa_fcs_vport_s
*vport
,
6214 enum bfa_fcs_vport_event event
)
6216 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6217 bfa_trc(__vport_fcs(vport
), event
);
6220 case BFA_FCS_VPORT_SM_DELETE
:
6221 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6222 bfa_timer_stop(&vport
->timer
);
6223 bfa_fcs_lport_delete(&vport
->lport
);
6226 case BFA_FCS_VPORT_SM_OFFLINE
:
6227 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
6228 bfa_timer_stop(&vport
->timer
);
6231 case BFA_FCS_VPORT_SM_TIMEOUT
:
6232 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
6233 vport
->vport_stats
.fdisc_retries
++;
6234 vport
->fdisc_retries
++;
6235 bfa_fcs_vport_do_fdisc(vport
);
6239 bfa_sm_fault(__vport_fcs(vport
), event
);
6244 * FDISC is in progress and we got a vport delete request -
6245 * this is a wait state while we wait for fdisc response and
6246 * we will transition to the appropriate state - on rsp status.
6249 bfa_fcs_vport_sm_fdisc_rsp_wait(struct bfa_fcs_vport_s
*vport
,
6250 enum bfa_fcs_vport_event event
)
6252 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6253 bfa_trc(__vport_fcs(vport
), event
);
6256 case BFA_FCS_VPORT_SM_RSP_OK
:
6257 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_deleting
);
6258 bfa_fcs_lport_delete(&vport
->lport
);
6261 case BFA_FCS_VPORT_SM_DELETE
:
6264 case BFA_FCS_VPORT_SM_OFFLINE
:
6265 case BFA_FCS_VPORT_SM_RSP_ERROR
:
6266 case BFA_FCS_VPORT_SM_RSP_FAILED
:
6267 case BFA_FCS_VPORT_SM_FABRIC_MAX
:
6268 case BFA_FCS_VPORT_SM_RSP_DUP_WWN
:
6269 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6270 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
6271 bfa_fcs_lport_delete(&vport
->lport
);
6275 bfa_sm_fault(__vport_fcs(vport
), event
);
6280 * Vport is online (FDISC is complete).
6283 bfa_fcs_vport_sm_online(struct bfa_fcs_vport_s
*vport
,
6284 enum bfa_fcs_vport_event event
)
6286 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6287 bfa_trc(__vport_fcs(vport
), event
);
6290 case BFA_FCS_VPORT_SM_DELETE
:
6291 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_deleting
);
6292 bfa_fcs_lport_delete(&vport
->lport
);
6295 case BFA_FCS_VPORT_SM_STOP
:
6296 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_stopping
);
6297 bfa_sm_send_event(&vport
->lport
, BFA_FCS_PORT_SM_STOP
);
6300 case BFA_FCS_VPORT_SM_OFFLINE
:
6301 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
6302 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
6303 bfa_fcs_lport_offline(&vport
->lport
);
6307 bfa_sm_fault(__vport_fcs(vport
), event
);
6312 * Vport is being stopped - awaiting lport stop completion to send
6316 bfa_fcs_vport_sm_stopping(struct bfa_fcs_vport_s
*vport
,
6317 enum bfa_fcs_vport_event event
)
6319 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6320 bfa_trc(__vport_fcs(vport
), event
);
6323 case BFA_FCS_VPORT_SM_STOPCOMP
:
6324 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_logo_for_stop
);
6325 bfa_fcs_vport_do_logo(vport
);
6328 case BFA_FCS_VPORT_SM_OFFLINE
:
6329 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6333 bfa_sm_fault(__vport_fcs(vport
), event
);
6338 * Vport is being deleted - awaiting lport delete completion to send
6342 bfa_fcs_vport_sm_deleting(struct bfa_fcs_vport_s
*vport
,
6343 enum bfa_fcs_vport_event event
)
6345 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6346 bfa_trc(__vport_fcs(vport
), event
);
6349 case BFA_FCS_VPORT_SM_DELETE
:
6352 case BFA_FCS_VPORT_SM_DELCOMP
:
6353 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_logo
);
6354 bfa_fcs_vport_do_logo(vport
);
6357 case BFA_FCS_VPORT_SM_OFFLINE
:
6358 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6362 bfa_sm_fault(__vport_fcs(vport
), event
);
6368 * This state will be set when the Vport Creation fails due
6369 * to errors like Dup WWN. In this state only operation allowed
6370 * is a Vport Delete.
6373 bfa_fcs_vport_sm_error(struct bfa_fcs_vport_s
*vport
,
6374 enum bfa_fcs_vport_event event
)
6376 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6377 bfa_trc(__vport_fcs(vport
), event
);
6380 case BFA_FCS_VPORT_SM_DELETE
:
6381 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
6382 bfa_fcs_lport_delete(&vport
->lport
);
6386 bfa_trc(__vport_fcs(vport
), event
);
6391 * Lport cleanup is in progress since vport is being deleted. Fabric is
6392 * offline, so no LOGO is needed to complete vport deletion.
6395 bfa_fcs_vport_sm_cleanup(struct bfa_fcs_vport_s
*vport
,
6396 enum bfa_fcs_vport_event event
)
6398 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6399 bfa_trc(__vport_fcs(vport
), event
);
6402 case BFA_FCS_VPORT_SM_DELCOMP
:
6403 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
6404 bfa_fcs_vport_free(vport
);
6407 case BFA_FCS_VPORT_SM_STOPCOMP
:
6408 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
6411 case BFA_FCS_VPORT_SM_DELETE
:
6415 bfa_sm_fault(__vport_fcs(vport
), event
);
6420 * LOGO is sent to fabric. Vport stop is in progress. Lport stop cleanup
6424 bfa_fcs_vport_sm_logo_for_stop(struct bfa_fcs_vport_s
*vport
,
6425 enum bfa_fcs_vport_event event
)
6427 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6428 bfa_trc(__vport_fcs(vport
), event
);
6431 case BFA_FCS_VPORT_SM_OFFLINE
:
6432 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
6434 * !!! fall through !!!
6437 case BFA_FCS_VPORT_SM_RSP_OK
:
6438 case BFA_FCS_VPORT_SM_RSP_ERROR
:
6439 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
6443 bfa_sm_fault(__vport_fcs(vport
), event
);
6448 * LOGO is sent to fabric. Vport delete is in progress. Lport delete cleanup
6452 bfa_fcs_vport_sm_logo(struct bfa_fcs_vport_s
*vport
,
6453 enum bfa_fcs_vport_event event
)
6455 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6456 bfa_trc(__vport_fcs(vport
), event
);
6459 case BFA_FCS_VPORT_SM_OFFLINE
:
6460 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
6462 * !!! fall through !!!
6465 case BFA_FCS_VPORT_SM_RSP_OK
:
6466 case BFA_FCS_VPORT_SM_RSP_ERROR
:
6467 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
6468 bfa_fcs_vport_free(vport
);
6471 case BFA_FCS_VPORT_SM_DELETE
:
6475 bfa_sm_fault(__vport_fcs(vport
), event
);
6482 * fcs_vport_private FCS virtual port private functions
6485 * Send AEN notification
6488 bfa_fcs_vport_aen_post(struct bfa_fcs_lport_s
*port
,
6489 enum bfa_lport_aen_event event
)
6491 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fabric
->fcs
->bfad
;
6492 struct bfa_aen_entry_s
*aen_entry
;
6494 bfad_get_aen_entry(bfad
, aen_entry
);
6498 aen_entry
->aen_data
.lport
.vf_id
= port
->fabric
->vf_id
;
6499 aen_entry
->aen_data
.lport
.roles
= port
->port_cfg
.roles
;
6500 aen_entry
->aen_data
.lport
.ppwwn
= bfa_fcs_lport_get_pwwn(
6501 bfa_fcs_get_base_port(port
->fcs
));
6502 aen_entry
->aen_data
.lport
.lpwwn
= bfa_fcs_lport_get_pwwn(port
);
6504 /* Send the AEN notification */
6505 bfad_im_post_vendor_event(aen_entry
, bfad
, ++port
->fcs
->fcs_aen_seq
,
6506 BFA_AEN_CAT_LPORT
, event
);
6510 * This routine will be called to send a FDISC command.
6513 bfa_fcs_vport_do_fdisc(struct bfa_fcs_vport_s
*vport
)
6515 bfa_lps_fdisc(vport
->lps
, vport
,
6516 bfa_fcport_get_maxfrsize(__vport_bfa(vport
)),
6517 __vport_pwwn(vport
), __vport_nwwn(vport
));
6518 vport
->vport_stats
.fdisc_sent
++;
6522 bfa_fcs_vport_fdisc_rejected(struct bfa_fcs_vport_s
*vport
)
6524 u8 lsrjt_rsn
= vport
->lps
->lsrjt_rsn
;
6525 u8 lsrjt_expl
= vport
->lps
->lsrjt_expl
;
6527 bfa_trc(__vport_fcs(vport
), lsrjt_rsn
);
6528 bfa_trc(__vport_fcs(vport
), lsrjt_expl
);
6530 /* For certain reason codes, we don't want to retry. */
6531 switch (vport
->lps
->lsrjt_expl
) {
6532 case FC_LS_RJT_EXP_INV_PORT_NAME
: /* by brocade */
6533 case FC_LS_RJT_EXP_INVALID_NPORT_ID
: /* by Cisco */
6534 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
6535 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6537 bfa_fcs_vport_aen_post(&vport
->lport
,
6538 BFA_LPORT_AEN_NPIV_DUP_WWN
);
6539 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_DUP_WWN
);
6543 case FC_LS_RJT_EXP_INSUFF_RES
:
6545 * This means max logins per port/switch setting on the
6546 * switch was exceeded.
6548 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
6549 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6551 bfa_fcs_vport_aen_post(&vport
->lport
,
6552 BFA_LPORT_AEN_NPIV_FABRIC_MAX
);
6553 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_FABRIC_MAX
);
6558 if (vport
->fdisc_retries
== 0)
6559 bfa_fcs_vport_aen_post(&vport
->lport
,
6560 BFA_LPORT_AEN_NPIV_UNKNOWN
);
6561 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6566 * Called to send a logout to the fabric. Used when a V-Port is
6570 bfa_fcs_vport_do_logo(struct bfa_fcs_vport_s
*vport
)
6572 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6574 vport
->vport_stats
.logo_sent
++;
6575 bfa_lps_fdisclogo(vport
->lps
);
6580 * This routine will be called by bfa_timer on timer timeouts.
6582 * param[in] vport - pointer to bfa_fcs_vport_t.
6583 * param[out] vport_status - pointer to return vport status in
6588 * Special Considerations:
6593 bfa_fcs_vport_timeout(void *vport_arg
)
6595 struct bfa_fcs_vport_s
*vport
= (struct bfa_fcs_vport_s
*) vport_arg
;
6597 vport
->vport_stats
.fdisc_timeouts
++;
6598 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_TIMEOUT
);
6602 bfa_fcs_vport_free(struct bfa_fcs_vport_s
*vport
)
6604 struct bfad_vport_s
*vport_drv
=
6605 (struct bfad_vport_s
*)vport
->vport_drv
;
6607 bfa_fcs_fabric_delvport(__vport_fabric(vport
), vport
);
6608 bfa_lps_delete(vport
->lps
);
6610 if (vport_drv
->comp_del
) {
6611 complete(vport_drv
->comp_del
);
6616 * We queue the vport delete work to the IM work_q from here.
6617 * The memory for the bfad_vport_s is freed from the FC function
6618 * template vport_delete entry point.
6620 bfad_im_port_delete(vport_drv
->drv_port
.bfad
, &vport_drv
->drv_port
);
6624 * fcs_vport_public FCS virtual port public interfaces
6628 * Online notification from fabric SM.
6631 bfa_fcs_vport_online(struct bfa_fcs_vport_s
*vport
)
6633 vport
->vport_stats
.fab_online
++;
6634 if (bfa_fcs_fabric_npiv_capable(__vport_fabric(vport
)))
6635 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_ONLINE
);
6637 vport
->vport_stats
.fab_no_npiv
++;
6641 * Offline notification from fabric SM.
6644 bfa_fcs_vport_offline(struct bfa_fcs_vport_s
*vport
)
6646 vport
->vport_stats
.fab_offline
++;
6647 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_OFFLINE
);
6651 * Cleanup notification from fabric SM on link timer expiry.
6654 bfa_fcs_vport_cleanup(struct bfa_fcs_vport_s
*vport
)
6656 vport
->vport_stats
.fab_cleanup
++;
6660 * Stop notification from fabric SM. To be invoked from within FCS.
6663 bfa_fcs_vport_fcs_stop(struct bfa_fcs_vport_s
*vport
)
6665 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_STOP
);
6669 * delete notification from fabric SM. To be invoked from within FCS.
6672 bfa_fcs_vport_fcs_delete(struct bfa_fcs_vport_s
*vport
)
6674 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELETE
);
6678 * Stop completion callback from associated lport
6681 bfa_fcs_vport_stop_comp(struct bfa_fcs_vport_s
*vport
)
6683 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_STOPCOMP
);
6687 * Delete completion callback from associated lport
6690 bfa_fcs_vport_delete_comp(struct bfa_fcs_vport_s
*vport
)
6692 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELCOMP
);
6698 * fcs_vport_api Virtual port API
6702 * Use this function to instantiate a new FCS vport object. This
6703 * function will not trigger any HW initialization process (which will be
6704 * done in vport_start() call)
6706 * param[in] vport - pointer to bfa_fcs_vport_t. This space
6707 * needs to be allocated by the driver.
6708 * param[in] fcs - FCS instance
6709 * param[in] vport_cfg - vport configuration
6710 * param[in] vf_id - VF_ID if vport is created within a VF.
6711 * FC_VF_ID_NULL to specify base fabric.
6712 * param[in] vport_drv - Opaque handle back to the driver's vport
6715 * retval BFA_STATUS_OK - on success.
6716 * retval BFA_STATUS_FAILED - on failure.
6719 bfa_fcs_vport_create(struct bfa_fcs_vport_s
*vport
, struct bfa_fcs_s
*fcs
,
6720 u16 vf_id
, struct bfa_lport_cfg_s
*vport_cfg
,
6721 struct bfad_vport_s
*vport_drv
)
6723 if (vport_cfg
->pwwn
== 0)
6724 return BFA_STATUS_INVALID_WWN
;
6726 if (bfa_fcs_lport_get_pwwn(&fcs
->fabric
.bport
) == vport_cfg
->pwwn
)
6727 return BFA_STATUS_VPORT_WWN_BP
;
6729 if (bfa_fcs_vport_lookup(fcs
, vf_id
, vport_cfg
->pwwn
) != NULL
)
6730 return BFA_STATUS_VPORT_EXISTS
;
6732 if (fcs
->fabric
.num_vports
==
6733 bfa_lps_get_max_vport(fcs
->bfa
))
6734 return BFA_STATUS_VPORT_MAX
;
6736 vport
->lps
= bfa_lps_alloc(fcs
->bfa
);
6738 return BFA_STATUS_VPORT_MAX
;
6740 vport
->vport_drv
= vport_drv
;
6741 vport_cfg
->preboot_vp
= BFA_FALSE
;
6743 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
6744 bfa_fcs_lport_attach(&vport
->lport
, fcs
, vf_id
, vport
);
6745 bfa_fcs_lport_init(&vport
->lport
, vport_cfg
);
6746 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_CREATE
);
6748 return BFA_STATUS_OK
;
6752 * Use this function to instantiate a new FCS PBC vport object. This
6753 * function will not trigger any HW initialization process (which will be
6754 * done in vport_start() call)
6756 * param[in] vport - pointer to bfa_fcs_vport_t. This space
6757 * needs to be allocated by the driver.
6758 * param[in] fcs - FCS instance
6759 * param[in] vport_cfg - vport configuration
6760 * param[in] vf_id - VF_ID if vport is created within a VF.
6761 * FC_VF_ID_NULL to specify base fabric.
6762 * param[in] vport_drv - Opaque handle back to the driver's vport
6765 * retval BFA_STATUS_OK - on success.
6766 * retval BFA_STATUS_FAILED - on failure.
6769 bfa_fcs_pbc_vport_create(struct bfa_fcs_vport_s
*vport
, struct bfa_fcs_s
*fcs
,
6770 u16 vf_id
, struct bfa_lport_cfg_s
*vport_cfg
,
6771 struct bfad_vport_s
*vport_drv
)
6775 rc
= bfa_fcs_vport_create(vport
, fcs
, vf_id
, vport_cfg
, vport_drv
);
6776 vport
->lport
.port_cfg
.preboot_vp
= BFA_TRUE
;
6782 * Use this function to findout if this is a pbc vport or not.
6784 * @param[in] vport - pointer to bfa_fcs_vport_t.
6789 bfa_fcs_is_pbc_vport(struct bfa_fcs_vport_s
*vport
)
6792 if (vport
&& (vport
->lport
.port_cfg
.preboot_vp
== BFA_TRUE
))
6800 * Use this function initialize the vport.
6802 * @param[in] vport - pointer to bfa_fcs_vport_t.
6807 bfa_fcs_vport_start(struct bfa_fcs_vport_s
*vport
)
6809 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_START
);
6811 return BFA_STATUS_OK
;
6815 * Use this function quiese the vport object. This function will return
6816 * immediately, when the vport is actually stopped, the
6817 * bfa_drv_vport_stop_cb() will be called.
6819 * param[in] vport - pointer to bfa_fcs_vport_t.
6824 bfa_fcs_vport_stop(struct bfa_fcs_vport_s
*vport
)
6826 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_STOP
);
6828 return BFA_STATUS_OK
;
6832 * Use this function to delete a vport object. Fabric object should
6833 * be stopped before this function call.
6835 * !!!!!!! Donot invoke this from within FCS !!!!!!!
6837 * param[in] vport - pointer to bfa_fcs_vport_t.
6842 bfa_fcs_vport_delete(struct bfa_fcs_vport_s
*vport
)
6845 if (vport
->lport
.port_cfg
.preboot_vp
)
6846 return BFA_STATUS_PBC
;
6848 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELETE
);
6850 return BFA_STATUS_OK
;
6854 * Use this function to get vport's current status info.
6856 * param[in] vport pointer to bfa_fcs_vport_t.
6857 * param[out] attr pointer to return vport attributes
6862 bfa_fcs_vport_get_attr(struct bfa_fcs_vport_s
*vport
,
6863 struct bfa_vport_attr_s
*attr
)
6865 if (vport
== NULL
|| attr
== NULL
)
6868 memset(attr
, 0, sizeof(struct bfa_vport_attr_s
));
6870 bfa_fcs_lport_get_attr(&vport
->lport
, &attr
->port_attr
);
6871 attr
->vport_state
= bfa_sm_to_state(vport_sm_table
, vport
->sm
);
6876 * Lookup a virtual port. Excludes base port from lookup.
6878 struct bfa_fcs_vport_s
*
6879 bfa_fcs_vport_lookup(struct bfa_fcs_s
*fcs
, u16 vf_id
, wwn_t vpwwn
)
6881 struct bfa_fcs_vport_s
*vport
;
6882 struct bfa_fcs_fabric_s
*fabric
;
6884 bfa_trc(fcs
, vf_id
);
6885 bfa_trc(fcs
, vpwwn
);
6887 fabric
= bfa_fcs_vf_lookup(fcs
, vf_id
);
6889 bfa_trc(fcs
, vf_id
);
6893 vport
= bfa_fcs_fabric_vport_lookup(fabric
, vpwwn
);
6901 bfa_cb_lps_fdisc_comp(void *bfad
, void *uarg
, bfa_status_t status
)
6903 struct bfa_fcs_vport_s
*vport
= uarg
;
6905 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
6906 bfa_trc(__vport_fcs(vport
), status
);
6911 * Initialize the V-Port fields
6913 __vport_fcid(vport
) = vport
->lps
->lp_pid
;
6914 vport
->vport_stats
.fdisc_accepts
++;
6915 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_OK
);
6918 case BFA_STATUS_INVALID_MAC
:
6920 vport
->vport_stats
.fdisc_acc_bad
++;
6921 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6925 case BFA_STATUS_EPROTOCOL
:
6926 switch (vport
->lps
->ext_status
) {
6927 case BFA_EPROTO_BAD_ACCEPT
:
6928 vport
->vport_stats
.fdisc_acc_bad
++;
6931 case BFA_EPROTO_UNKNOWN_RSP
:
6932 vport
->vport_stats
.fdisc_unknown_rsp
++;
6939 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
6940 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6942 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_FAILED
);
6946 case BFA_STATUS_ETIMER
:
6947 vport
->vport_stats
.fdisc_timeouts
++;
6948 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
6949 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6951 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_FAILED
);
6954 case BFA_STATUS_FABRIC_RJT
:
6955 vport
->vport_stats
.fdisc_rejects
++;
6956 bfa_fcs_vport_fdisc_rejected(vport
);
6960 vport
->vport_stats
.fdisc_rsp_err
++;
6961 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6969 bfa_cb_lps_fdisclogo_comp(void *bfad
, void *uarg
)
6971 struct bfa_fcs_vport_s
*vport
= uarg
;
6972 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_OK
);
6976 * Received clear virtual link
6979 bfa_cb_lps_cvl_event(void *bfad
, void *uarg
)
6981 struct bfa_fcs_vport_s
*vport
= uarg
;
6983 /* Send an Offline followed by an ONLINE */
6984 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_OFFLINE
);
6985 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_ONLINE
);