2 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
21 #include "bfa_fcbuild.h"
24 BFA_TRC_FILE(FCS
, PORT
);
26 static void bfa_fcs_lport_send_ls_rjt(struct bfa_fcs_lport_s
*port
,
27 struct fchs_s
*rx_fchs
, u8 reason_code
,
29 static void bfa_fcs_lport_plogi(struct bfa_fcs_lport_s
*port
,
30 struct fchs_s
*rx_fchs
, struct fc_logi_s
*plogi
);
31 static void bfa_fcs_lport_online_actions(struct bfa_fcs_lport_s
*port
);
32 static void bfa_fcs_lport_offline_actions(struct bfa_fcs_lport_s
*port
);
33 static void bfa_fcs_lport_unknown_init(struct bfa_fcs_lport_s
*port
);
34 static void bfa_fcs_lport_unknown_online(struct bfa_fcs_lport_s
*port
);
35 static void bfa_fcs_lport_unknown_offline(struct bfa_fcs_lport_s
*port
);
36 static void bfa_fcs_lport_deleted(struct bfa_fcs_lport_s
*port
);
37 static void bfa_fcs_lport_echo(struct bfa_fcs_lport_s
*port
,
38 struct fchs_s
*rx_fchs
,
39 struct fc_echo_s
*echo
, u16 len
);
40 static void bfa_fcs_lport_rnid(struct bfa_fcs_lport_s
*port
,
41 struct fchs_s
*rx_fchs
,
42 struct fc_rnid_cmd_s
*rnid
, u16 len
);
43 static void bfa_fs_port_get_gen_topo_data(struct bfa_fcs_lport_s
*port
,
44 struct fc_rnid_general_topology_data_s
*gen_topo_data
);
46 static void bfa_fcs_lport_fab_init(struct bfa_fcs_lport_s
*port
);
47 static void bfa_fcs_lport_fab_online(struct bfa_fcs_lport_s
*port
);
48 static void bfa_fcs_lport_fab_offline(struct bfa_fcs_lport_s
*port
);
50 static void bfa_fcs_lport_n2n_init(struct bfa_fcs_lport_s
*port
);
51 static void bfa_fcs_lport_n2n_online(struct bfa_fcs_lport_s
*port
);
52 static void bfa_fcs_lport_n2n_offline(struct bfa_fcs_lport_s
*port
);
55 void (*init
) (struct bfa_fcs_lport_s
*port
);
56 void (*online
) (struct bfa_fcs_lport_s
*port
);
57 void (*offline
) (struct bfa_fcs_lport_s
*port
);
60 bfa_fcs_lport_unknown_init
, bfa_fcs_lport_unknown_online
,
61 bfa_fcs_lport_unknown_offline
}, {
62 bfa_fcs_lport_fab_init
, bfa_fcs_lport_fab_online
,
63 bfa_fcs_lport_fab_offline
}, {
64 bfa_fcs_lport_n2n_init
, bfa_fcs_lport_n2n_online
,
65 bfa_fcs_lport_n2n_offline
},
69 * fcs_port_sm FCS logical port state machine
72 enum bfa_fcs_lport_event
{
73 BFA_FCS_PORT_SM_CREATE
= 1,
74 BFA_FCS_PORT_SM_ONLINE
= 2,
75 BFA_FCS_PORT_SM_OFFLINE
= 3,
76 BFA_FCS_PORT_SM_DELETE
= 4,
77 BFA_FCS_PORT_SM_DELRPORT
= 5,
78 BFA_FCS_PORT_SM_STOP
= 6,
81 static void bfa_fcs_lport_sm_uninit(struct bfa_fcs_lport_s
*port
,
82 enum bfa_fcs_lport_event event
);
83 static void bfa_fcs_lport_sm_init(struct bfa_fcs_lport_s
*port
,
84 enum bfa_fcs_lport_event event
);
85 static void bfa_fcs_lport_sm_online(struct bfa_fcs_lport_s
*port
,
86 enum bfa_fcs_lport_event event
);
87 static void bfa_fcs_lport_sm_offline(struct bfa_fcs_lport_s
*port
,
88 enum bfa_fcs_lport_event event
);
89 static void bfa_fcs_lport_sm_deleting(struct bfa_fcs_lport_s
*port
,
90 enum bfa_fcs_lport_event event
);
91 static void bfa_fcs_lport_sm_stopping(struct bfa_fcs_lport_s
*port
,
92 enum bfa_fcs_lport_event event
);
95 bfa_fcs_lport_sm_uninit(
96 struct bfa_fcs_lport_s
*port
,
97 enum bfa_fcs_lport_event event
)
99 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
100 bfa_trc(port
->fcs
, event
);
103 case BFA_FCS_PORT_SM_CREATE
:
104 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
108 bfa_sm_fault(port
->fcs
, event
);
113 bfa_fcs_lport_sm_init(struct bfa_fcs_lport_s
*port
,
114 enum bfa_fcs_lport_event event
)
116 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
117 bfa_trc(port
->fcs
, event
);
120 case BFA_FCS_PORT_SM_ONLINE
:
121 bfa_sm_set_state(port
, bfa_fcs_lport_sm_online
);
122 bfa_fcs_lport_online_actions(port
);
125 case BFA_FCS_PORT_SM_DELETE
:
126 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
127 bfa_fcs_lport_deleted(port
);
130 case BFA_FCS_PORT_SM_STOP
:
131 /* If vport - send completion call back */
133 bfa_fcs_vport_stop_comp(port
->vport
);
136 case BFA_FCS_PORT_SM_OFFLINE
:
140 bfa_sm_fault(port
->fcs
, event
);
145 bfa_fcs_lport_sm_online(
146 struct bfa_fcs_lport_s
*port
,
147 enum bfa_fcs_lport_event event
)
149 struct bfa_fcs_rport_s
*rport
;
150 struct list_head
*qe
, *qen
;
152 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
153 bfa_trc(port
->fcs
, event
);
156 case BFA_FCS_PORT_SM_OFFLINE
:
157 bfa_sm_set_state(port
, bfa_fcs_lport_sm_offline
);
158 bfa_fcs_lport_offline_actions(port
);
161 case BFA_FCS_PORT_SM_STOP
:
162 __port_action
[port
->fabric
->fab_type
].offline(port
);
164 if (port
->num_rports
== 0) {
165 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
166 /* If vport - send completion call back */
168 bfa_fcs_vport_stop_comp(port
->vport
);
170 bfa_sm_set_state(port
, bfa_fcs_lport_sm_stopping
);
171 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
172 rport
= (struct bfa_fcs_rport_s
*) qe
;
173 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
178 case BFA_FCS_PORT_SM_DELETE
:
180 __port_action
[port
->fabric
->fab_type
].offline(port
);
182 if (port
->num_rports
== 0) {
183 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
184 bfa_fcs_lport_deleted(port
);
186 bfa_sm_set_state(port
, bfa_fcs_lport_sm_deleting
);
187 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
188 rport
= (struct bfa_fcs_rport_s
*) qe
;
189 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
194 case BFA_FCS_PORT_SM_DELRPORT
:
198 bfa_sm_fault(port
->fcs
, event
);
203 bfa_fcs_lport_sm_offline(
204 struct bfa_fcs_lport_s
*port
,
205 enum bfa_fcs_lport_event event
)
207 struct bfa_fcs_rport_s
*rport
;
208 struct list_head
*qe
, *qen
;
210 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
211 bfa_trc(port
->fcs
, event
);
214 case BFA_FCS_PORT_SM_ONLINE
:
215 bfa_sm_set_state(port
, bfa_fcs_lport_sm_online
);
216 bfa_fcs_lport_online_actions(port
);
219 case BFA_FCS_PORT_SM_STOP
:
220 if (port
->num_rports
== 0) {
221 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
222 /* If vport - send completion call back */
224 bfa_fcs_vport_stop_comp(port
->vport
);
226 bfa_sm_set_state(port
, bfa_fcs_lport_sm_stopping
);
227 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
228 rport
= (struct bfa_fcs_rport_s
*) qe
;
229 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
234 case BFA_FCS_PORT_SM_DELETE
:
235 if (port
->num_rports
== 0) {
236 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
237 bfa_fcs_lport_deleted(port
);
239 bfa_sm_set_state(port
, bfa_fcs_lport_sm_deleting
);
240 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
241 rport
= (struct bfa_fcs_rport_s
*) qe
;
242 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
247 case BFA_FCS_PORT_SM_DELRPORT
:
248 case BFA_FCS_PORT_SM_OFFLINE
:
252 bfa_sm_fault(port
->fcs
, event
);
257 bfa_fcs_lport_sm_stopping(struct bfa_fcs_lport_s
*port
,
258 enum bfa_fcs_lport_event event
)
260 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
261 bfa_trc(port
->fcs
, event
);
264 case BFA_FCS_PORT_SM_DELRPORT
:
265 if (port
->num_rports
== 0) {
266 bfa_sm_set_state(port
, bfa_fcs_lport_sm_init
);
267 /* If vport - send completion call back */
269 bfa_fcs_vport_stop_comp(port
->vport
);
274 bfa_sm_fault(port
->fcs
, event
);
279 bfa_fcs_lport_sm_deleting(
280 struct bfa_fcs_lport_s
*port
,
281 enum bfa_fcs_lport_event event
)
283 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
284 bfa_trc(port
->fcs
, event
);
287 case BFA_FCS_PORT_SM_DELRPORT
:
288 if (port
->num_rports
== 0) {
289 bfa_sm_set_state(port
, bfa_fcs_lport_sm_uninit
);
290 bfa_fcs_lport_deleted(port
);
295 bfa_sm_fault(port
->fcs
, event
);
304 * Send AEN notification
307 bfa_fcs_lport_aen_post(struct bfa_fcs_lport_s
*port
,
308 enum bfa_lport_aen_event event
)
310 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fabric
->fcs
->bfad
;
311 struct bfa_aen_entry_s
*aen_entry
;
313 bfad_get_aen_entry(bfad
, aen_entry
);
317 aen_entry
->aen_data
.lport
.vf_id
= port
->fabric
->vf_id
;
318 aen_entry
->aen_data
.lport
.roles
= port
->port_cfg
.roles
;
319 aen_entry
->aen_data
.lport
.ppwwn
= bfa_fcs_lport_get_pwwn(
320 bfa_fcs_get_base_port(port
->fcs
));
321 aen_entry
->aen_data
.lport
.lpwwn
= bfa_fcs_lport_get_pwwn(port
);
323 /* Send the AEN notification */
324 bfad_im_post_vendor_event(aen_entry
, bfad
, ++port
->fcs
->fcs_aen_seq
,
325 BFA_AEN_CAT_LPORT
, event
);
332 bfa_fcs_lport_send_ls_rjt(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
,
333 u8 reason_code
, u8 reason_code_expl
)
336 struct bfa_fcxp_s
*fcxp
;
337 struct bfa_rport_s
*bfa_rport
= NULL
;
340 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
341 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
343 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
);
347 len
= fc_ls_rjt_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
348 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
349 rx_fchs
->ox_id
, reason_code
, reason_code_expl
);
351 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
352 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
360 bfa_fcs_lport_send_fcgs_rjt(struct bfa_fcs_lport_s
*port
,
361 struct fchs_s
*rx_fchs
, u8 reason_code
, u8 reason_code_expl
)
364 struct bfa_fcxp_s
*fcxp
;
365 struct bfa_rport_s
*bfa_rport
= NULL
;
367 struct ct_hdr_s
*rx_cthdr
= (struct ct_hdr_s
*)(rx_fchs
+ 1);
368 struct ct_hdr_s
*ct_hdr
;
370 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
371 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
373 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
);
377 ct_hdr
= bfa_fcxp_get_reqbuf(fcxp
);
378 ct_hdr
->gs_type
= rx_cthdr
->gs_type
;
379 ct_hdr
->gs_sub_type
= rx_cthdr
->gs_sub_type
;
381 len
= fc_gs_rjt_build(&fchs
, ct_hdr
, rx_fchs
->s_id
,
382 bfa_fcs_lport_get_fcid(port
),
383 rx_fchs
->ox_id
, reason_code
, reason_code_expl
);
385 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
386 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
391 * Process incoming plogi from a remote port.
394 bfa_fcs_lport_plogi(struct bfa_fcs_lport_s
*port
,
395 struct fchs_s
*rx_fchs
, struct fc_logi_s
*plogi
)
397 struct bfa_fcs_rport_s
*rport
;
399 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
400 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
403 * If min cfg mode is enabled, drop any incoming PLOGIs
405 if (__fcs_min_cfg(port
->fcs
)) {
406 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
410 if (fc_plogi_parse(rx_fchs
) != FC_PARSE_OK
) {
411 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
415 bfa_fcs_lport_send_ls_rjt(port
, rx_fchs
,
416 FC_LS_RJT_RSN_PROTOCOL_ERROR
,
417 FC_LS_RJT_EXP_SPARMS_ERR_OPTIONS
);
422 * Direct Attach P2P mode : verify address assigned by the r-port.
424 if ((!bfa_fcs_fabric_is_switched(port
->fabric
)) &&
425 (memcmp((void *)&bfa_fcs_lport_get_pwwn(port
),
426 (void *)&plogi
->port_name
, sizeof(wwn_t
)) < 0)) {
427 if (BFA_FCS_PID_IS_WKA(rx_fchs
->d_id
)) {
428 /* Address assigned to us cannot be a WKA */
429 bfa_fcs_lport_send_ls_rjt(port
, rx_fchs
,
430 FC_LS_RJT_RSN_PROTOCOL_ERROR
,
431 FC_LS_RJT_EXP_INVALID_NPORT_ID
);
434 port
->pid
= rx_fchs
->d_id
;
435 bfa_lps_set_n2n_pid(port
->fabric
->lps
, rx_fchs
->d_id
);
439 * First, check if we know the device by pwwn.
441 rport
= bfa_fcs_lport_get_rport_by_pwwn(port
, plogi
->port_name
);
444 * Direct Attach P2P mode : handle address assigned by r-port.
446 if ((!bfa_fcs_fabric_is_switched(port
->fabric
)) &&
447 (memcmp((void *)&bfa_fcs_lport_get_pwwn(port
),
448 (void *)&plogi
->port_name
, sizeof(wwn_t
)) < 0)) {
449 port
->pid
= rx_fchs
->d_id
;
450 bfa_lps_set_n2n_pid(port
->fabric
->lps
, rx_fchs
->d_id
);
451 rport
->pid
= rx_fchs
->s_id
;
453 bfa_fcs_rport_plogi(rport
, rx_fchs
, plogi
);
458 * Next, lookup rport by PID.
460 rport
= bfa_fcs_lport_get_rport_by_pid(port
, rx_fchs
->s_id
);
463 * Inbound PLOGI from a new device.
465 bfa_fcs_rport_plogi_create(port
, rx_fchs
, plogi
);
470 * Rport is known only by PID.
474 * This is a different device with the same pid. Old device
475 * disappeared. Send implicit LOGO to old device.
477 WARN_ON(rport
->pwwn
== plogi
->port_name
);
478 bfa_sm_send_event(rport
, RPSM_EVENT_LOGO_IMP
);
481 * Inbound PLOGI from a new device (with old PID).
483 bfa_fcs_rport_plogi_create(port
, rx_fchs
, plogi
);
488 * PLOGI crossing each other.
490 WARN_ON(rport
->pwwn
!= WWN_NULL
);
491 bfa_fcs_rport_plogi(rport
, rx_fchs
, plogi
);
495 * Process incoming ECHO.
496 * Since it does not require a login, it is processed here.
499 bfa_fcs_lport_echo(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
,
500 struct fc_echo_s
*echo
, u16 rx_len
)
503 struct bfa_fcxp_s
*fcxp
;
504 struct bfa_rport_s
*bfa_rport
= NULL
;
507 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
508 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
510 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
);
514 len
= fc_ls_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
515 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
519 * Copy the payload (if any) from the echo frame
521 pyld_len
= rx_len
- sizeof(struct fchs_s
);
522 bfa_trc(port
->fcs
, rx_len
);
523 bfa_trc(port
->fcs
, pyld_len
);
526 memcpy(((u8
*) bfa_fcxp_get_reqbuf(fcxp
)) +
527 sizeof(struct fc_echo_s
), (echo
+ 1),
528 (pyld_len
- sizeof(struct fc_echo_s
)));
530 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
531 BFA_FALSE
, FC_CLASS_3
, pyld_len
, &fchs
, NULL
, NULL
,
536 * Process incoming RNID.
537 * Since it does not require a login, it is processed here.
540 bfa_fcs_lport_rnid(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
,
541 struct fc_rnid_cmd_s
*rnid
, u16 rx_len
)
543 struct fc_rnid_common_id_data_s common_id_data
;
544 struct fc_rnid_general_topology_data_s gen_topo_data
;
546 struct bfa_fcxp_s
*fcxp
;
547 struct bfa_rport_s
*bfa_rport
= NULL
;
551 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
552 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
553 bfa_trc(port
->fcs
, rx_len
);
555 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
);
560 * Check Node Indentification Data Format
561 * We only support General Topology Discovery Format.
562 * For any other requested Data Formats, we return Common Node Id Data
563 * only, as per FC-LS.
565 bfa_trc(port
->fcs
, rnid
->node_id_data_format
);
566 if (rnid
->node_id_data_format
== RNID_NODEID_DATA_FORMAT_DISCOVERY
) {
567 data_format
= RNID_NODEID_DATA_FORMAT_DISCOVERY
;
569 * Get General topology data for this port
571 bfa_fs_port_get_gen_topo_data(port
, &gen_topo_data
);
573 data_format
= RNID_NODEID_DATA_FORMAT_COMMON
;
577 * Copy the Node Id Info
579 common_id_data
.port_name
= bfa_fcs_lport_get_pwwn(port
);
580 common_id_data
.node_name
= bfa_fcs_lport_get_nwwn(port
);
582 len
= fc_rnid_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
583 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
584 rx_fchs
->ox_id
, data_format
, &common_id_data
,
587 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
588 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
593 * Fill out General Topolpgy Discovery Data for RNID ELS.
596 bfa_fs_port_get_gen_topo_data(struct bfa_fcs_lport_s
*port
,
597 struct fc_rnid_general_topology_data_s
*gen_topo_data
)
599 memset(gen_topo_data
, 0,
600 sizeof(struct fc_rnid_general_topology_data_s
));
602 gen_topo_data
->asso_type
= cpu_to_be32(RNID_ASSOCIATED_TYPE_HOST
);
603 gen_topo_data
->phy_port_num
= 0; /* @todo */
604 gen_topo_data
->num_attached_nodes
= cpu_to_be32(1);
608 bfa_fcs_lport_online_actions(struct bfa_fcs_lport_s
*port
)
610 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fcs
->bfad
;
611 char lpwwn_buf
[BFA_STRING_32
];
613 bfa_trc(port
->fcs
, port
->fabric
->oper_type
);
615 __port_action
[port
->fabric
->fab_type
].init(port
);
616 __port_action
[port
->fabric
->fab_type
].online(port
);
618 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(port
));
619 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
620 "Logical port online: WWN = %s Role = %s\n",
621 lpwwn_buf
, "Initiator");
622 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_ONLINE
);
624 bfad
->bfad_flags
|= BFAD_PORT_ONLINE
;
628 bfa_fcs_lport_offline_actions(struct bfa_fcs_lport_s
*port
)
630 struct list_head
*qe
, *qen
;
631 struct bfa_fcs_rport_s
*rport
;
632 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fcs
->bfad
;
633 char lpwwn_buf
[BFA_STRING_32
];
635 bfa_trc(port
->fcs
, port
->fabric
->oper_type
);
637 __port_action
[port
->fabric
->fab_type
].offline(port
);
639 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(port
));
640 if (bfa_sm_cmp_state(port
->fabric
,
641 bfa_fcs_fabric_sm_online
) == BFA_TRUE
) {
642 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
643 "Logical port lost fabric connectivity: WWN = %s Role = %s\n",
644 lpwwn_buf
, "Initiator");
645 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_DISCONNECT
);
647 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
648 "Logical port taken offline: WWN = %s Role = %s\n",
649 lpwwn_buf
, "Initiator");
650 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_OFFLINE
);
653 list_for_each_safe(qe
, qen
, &port
->rport_q
) {
654 rport
= (struct bfa_fcs_rport_s
*) qe
;
655 bfa_sm_send_event(rport
, RPSM_EVENT_LOGO_IMP
);
660 bfa_fcs_lport_unknown_init(struct bfa_fcs_lport_s
*port
)
666 bfa_fcs_lport_unknown_online(struct bfa_fcs_lport_s
*port
)
672 bfa_fcs_lport_unknown_offline(struct bfa_fcs_lport_s
*port
)
678 bfa_fcs_lport_abts_acc(struct bfa_fcs_lport_s
*port
, struct fchs_s
*rx_fchs
)
681 struct bfa_fcxp_s
*fcxp
;
684 bfa_trc(port
->fcs
, rx_fchs
->d_id
);
685 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
687 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
);
691 len
= fc_ba_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
692 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
695 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
,
696 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
700 bfa_fcs_lport_deleted(struct bfa_fcs_lport_s
*port
)
702 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fcs
->bfad
;
703 char lpwwn_buf
[BFA_STRING_32
];
705 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(port
));
706 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
707 "Logical port deleted: WWN = %s Role = %s\n",
708 lpwwn_buf
, "Initiator");
709 bfa_fcs_lport_aen_post(port
, BFA_LPORT_AEN_DELETE
);
711 /* Base port will be deleted by the OS driver */
713 bfa_fcb_lport_delete(port
->fcs
->bfad
, port
->port_cfg
.roles
,
714 port
->fabric
->vf_drv
,
715 port
->vport
? port
->vport
->vport_drv
: NULL
);
716 bfa_fcs_vport_delete_comp(port
->vport
);
718 bfa_wc_down(&port
->fabric
->wc
);
724 * Unsolicited frame receive handling.
727 bfa_fcs_lport_uf_recv(struct bfa_fcs_lport_s
*lport
,
728 struct fchs_s
*fchs
, u16 len
)
730 u32 pid
= fchs
->s_id
;
731 struct bfa_fcs_rport_s
*rport
= NULL
;
732 struct fc_els_cmd_s
*els_cmd
= (struct fc_els_cmd_s
*) (fchs
+ 1);
734 bfa_stats(lport
, uf_recvs
);
735 bfa_trc(lport
->fcs
, fchs
->type
);
737 if (!bfa_fcs_lport_is_online(lport
)) {
738 bfa_stats(lport
, uf_recv_drops
);
743 * First, handle ELSs that donot require a login.
748 if ((fchs
->type
== FC_TYPE_ELS
) &&
749 (els_cmd
->els_code
== FC_ELS_PLOGI
)) {
750 bfa_fcs_lport_plogi(lport
, fchs
, (struct fc_logi_s
*) els_cmd
);
755 * Handle ECHO separately.
757 if ((fchs
->type
== FC_TYPE_ELS
) && (els_cmd
->els_code
== FC_ELS_ECHO
)) {
758 bfa_fcs_lport_echo(lport
, fchs
,
759 (struct fc_echo_s
*)els_cmd
, len
);
764 * Handle RNID separately.
766 if ((fchs
->type
== FC_TYPE_ELS
) && (els_cmd
->els_code
== FC_ELS_RNID
)) {
767 bfa_fcs_lport_rnid(lport
, fchs
,
768 (struct fc_rnid_cmd_s
*) els_cmd
, len
);
772 if (fchs
->type
== FC_TYPE_BLS
) {
773 if ((fchs
->routing
== FC_RTG_BASIC_LINK
) &&
774 (fchs
->cat_info
== FC_CAT_ABTS
))
775 bfa_fcs_lport_abts_acc(lport
, fchs
);
779 if (fchs
->type
== FC_TYPE_SERVICES
) {
781 * Unhandled FC-GS frames. Send a FC-CT Reject
783 bfa_fcs_lport_send_fcgs_rjt(lport
, fchs
, CT_RSN_NOT_SUPP
,
784 CT_NS_EXP_NOADDITIONAL
);
789 * look for a matching remote port ID
791 rport
= bfa_fcs_lport_get_rport_by_pid(lport
, pid
);
793 bfa_trc(rport
->fcs
, fchs
->s_id
);
794 bfa_trc(rport
->fcs
, fchs
->d_id
);
795 bfa_trc(rport
->fcs
, fchs
->type
);
797 bfa_fcs_rport_uf_recv(rport
, fchs
, len
);
802 * Only handles ELS frames for now.
804 if (fchs
->type
!= FC_TYPE_ELS
) {
805 bfa_trc(lport
->fcs
, fchs
->s_id
);
806 bfa_trc(lport
->fcs
, fchs
->d_id
);
807 /* ignore type FC_TYPE_FC_FSS */
808 if (fchs
->type
!= FC_TYPE_FC_FSS
)
809 bfa_sm_fault(lport
->fcs
, fchs
->type
);
813 bfa_trc(lport
->fcs
, els_cmd
->els_code
);
814 if (els_cmd
->els_code
== FC_ELS_RSCN
) {
815 bfa_fcs_lport_scn_process_rscn(lport
, fchs
, len
);
819 if (els_cmd
->els_code
== FC_ELS_LOGO
) {
821 * @todo Handle LOGO frames received.
826 if (els_cmd
->els_code
== FC_ELS_PRLI
) {
828 * @todo Handle PRLI frames received.
834 * Unhandled ELS frames. Send a LS_RJT.
836 bfa_fcs_lport_send_ls_rjt(lport
, fchs
, FC_LS_RJT_RSN_CMD_NOT_SUPP
,
837 FC_LS_RJT_EXP_NO_ADDL_INFO
);
842 * PID based Lookup for a R-Port in the Port R-Port Queue
844 struct bfa_fcs_rport_s
*
845 bfa_fcs_lport_get_rport_by_pid(struct bfa_fcs_lport_s
*port
, u32 pid
)
847 struct bfa_fcs_rport_s
*rport
;
848 struct list_head
*qe
;
850 list_for_each(qe
, &port
->rport_q
) {
851 rport
= (struct bfa_fcs_rport_s
*) qe
;
852 if (rport
->pid
== pid
)
856 bfa_trc(port
->fcs
, pid
);
861 * PWWN based Lookup for a R-Port in the Port R-Port Queue
863 struct bfa_fcs_rport_s
*
864 bfa_fcs_lport_get_rport_by_pwwn(struct bfa_fcs_lport_s
*port
, wwn_t pwwn
)
866 struct bfa_fcs_rport_s
*rport
;
867 struct list_head
*qe
;
869 list_for_each(qe
, &port
->rport_q
) {
870 rport
= (struct bfa_fcs_rport_s
*) qe
;
871 if (wwn_is_equal(rport
->pwwn
, pwwn
))
875 bfa_trc(port
->fcs
, pwwn
);
880 * NWWN based Lookup for a R-Port in the Port R-Port Queue
882 struct bfa_fcs_rport_s
*
883 bfa_fcs_lport_get_rport_by_nwwn(struct bfa_fcs_lport_s
*port
, wwn_t nwwn
)
885 struct bfa_fcs_rport_s
*rport
;
886 struct list_head
*qe
;
888 list_for_each(qe
, &port
->rport_q
) {
889 rport
= (struct bfa_fcs_rport_s
*) qe
;
890 if (wwn_is_equal(rport
->nwwn
, nwwn
))
894 bfa_trc(port
->fcs
, nwwn
);
899 * Called by rport module when new rports are discovered.
902 bfa_fcs_lport_add_rport(
903 struct bfa_fcs_lport_s
*port
,
904 struct bfa_fcs_rport_s
*rport
)
906 list_add_tail(&rport
->qe
, &port
->rport_q
);
911 * Called by rport module to when rports are deleted.
914 bfa_fcs_lport_del_rport(
915 struct bfa_fcs_lport_s
*port
,
916 struct bfa_fcs_rport_s
*rport
)
918 WARN_ON(!bfa_q_is_on_q(&port
->rport_q
, rport
));
919 list_del(&rport
->qe
);
922 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_DELRPORT
);
926 * Called by fabric for base port when fabric login is complete.
927 * Called by vport for virtual ports when FDISC is complete.
930 bfa_fcs_lport_online(struct bfa_fcs_lport_s
*port
)
932 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_ONLINE
);
936 * Called by fabric for base port when fabric goes offline.
937 * Called by vport for virtual ports when virtual port becomes offline.
940 bfa_fcs_lport_offline(struct bfa_fcs_lport_s
*port
)
942 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_OFFLINE
);
946 * Called by fabric to delete base lport and associated resources.
948 * Called by vport to delete lport and associated resources. Should call
949 * bfa_fcs_vport_delete_comp() for vports on completion.
952 bfa_fcs_lport_delete(struct bfa_fcs_lport_s
*port
)
954 bfa_sm_send_event(port
, BFA_FCS_PORT_SM_DELETE
);
958 * Return TRUE if port is online, else return FALSE
961 bfa_fcs_lport_is_online(struct bfa_fcs_lport_s
*port
)
963 return bfa_sm_cmp_state(port
, bfa_fcs_lport_sm_online
);
967 * Attach time initialization of logical ports.
970 bfa_fcs_lport_attach(struct bfa_fcs_lport_s
*lport
, struct bfa_fcs_s
*fcs
,
971 u16 vf_id
, struct bfa_fcs_vport_s
*vport
)
974 lport
->fabric
= bfa_fcs_vf_lookup(fcs
, vf_id
);
975 lport
->vport
= vport
;
976 lport
->lp_tag
= (vport
) ? vport
->lps
->bfa_tag
:
977 lport
->fabric
->lps
->bfa_tag
;
979 INIT_LIST_HEAD(&lport
->rport_q
);
980 lport
->num_rports
= 0;
984 * Logical port initialization of base or virtual port.
985 * Called by fabric for base port or by vport for virtual ports.
989 bfa_fcs_lport_init(struct bfa_fcs_lport_s
*lport
,
990 struct bfa_lport_cfg_s
*port_cfg
)
992 struct bfa_fcs_vport_s
*vport
= lport
->vport
;
993 struct bfad_s
*bfad
= (struct bfad_s
*)lport
->fcs
->bfad
;
994 char lpwwn_buf
[BFA_STRING_32
];
996 lport
->port_cfg
= *port_cfg
;
998 lport
->bfad_port
= bfa_fcb_lport_new(lport
->fcs
->bfad
, lport
,
999 lport
->port_cfg
.roles
,
1000 lport
->fabric
->vf_drv
,
1001 vport
? vport
->vport_drv
: NULL
);
1003 wwn2str(lpwwn_buf
, bfa_fcs_lport_get_pwwn(lport
));
1004 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
1005 "New logical port created: WWN = %s Role = %s\n",
1006 lpwwn_buf
, "Initiator");
1007 bfa_fcs_lport_aen_post(lport
, BFA_LPORT_AEN_NEW
);
1009 bfa_sm_set_state(lport
, bfa_fcs_lport_sm_uninit
);
1010 bfa_sm_send_event(lport
, BFA_FCS_PORT_SM_CREATE
);
1018 bfa_fcs_lport_get_attr(
1019 struct bfa_fcs_lport_s
*port
,
1020 struct bfa_lport_attr_s
*port_attr
)
1022 if (bfa_sm_cmp_state(port
, bfa_fcs_lport_sm_online
))
1023 port_attr
->pid
= port
->pid
;
1027 port_attr
->port_cfg
= port
->port_cfg
;
1030 port_attr
->port_type
= port
->fabric
->oper_type
;
1031 port_attr
->loopback
= bfa_sm_cmp_state(port
->fabric
,
1032 bfa_fcs_fabric_sm_loopback
);
1033 port_attr
->authfail
=
1034 bfa_sm_cmp_state(port
->fabric
,
1035 bfa_fcs_fabric_sm_auth_failed
);
1036 port_attr
->fabric_name
= bfa_fcs_lport_get_fabric_name(port
);
1037 memcpy(port_attr
->fabric_ip_addr
,
1038 bfa_fcs_lport_get_fabric_ipaddr(port
),
1039 BFA_FCS_FABRIC_IPADDR_SZ
);
1041 if (port
->vport
!= NULL
) {
1042 port_attr
->port_type
= BFA_PORT_TYPE_VPORT
;
1043 port_attr
->fpma_mac
=
1044 port
->vport
->lps
->lp_mac
;
1046 port_attr
->fpma_mac
=
1047 port
->fabric
->lps
->lp_mac
;
1050 port_attr
->port_type
= BFA_PORT_TYPE_UNKNOWN
;
1051 port_attr
->state
= BFA_LPORT_UNINIT
;
1056 * bfa_fcs_lport_fab port fab functions
1060 * Called by port to initialize fabric services of the base port.
1063 bfa_fcs_lport_fab_init(struct bfa_fcs_lport_s
*port
)
1065 bfa_fcs_lport_ns_init(port
);
1066 bfa_fcs_lport_scn_init(port
);
1067 bfa_fcs_lport_ms_init(port
);
1071 * Called by port to notify transition to online state.
1074 bfa_fcs_lport_fab_online(struct bfa_fcs_lport_s
*port
)
1076 bfa_fcs_lport_ns_online(port
);
1077 bfa_fcs_lport_scn_online(port
);
1081 * Called by port to notify transition to offline state.
1084 bfa_fcs_lport_fab_offline(struct bfa_fcs_lport_s
*port
)
1086 bfa_fcs_lport_ns_offline(port
);
1087 bfa_fcs_lport_scn_offline(port
);
1088 bfa_fcs_lport_ms_offline(port
);
1092 * bfa_fcs_lport_n2n functions
1096 * Called by fcs/port to initialize N2N topology.
1099 bfa_fcs_lport_n2n_init(struct bfa_fcs_lport_s
*port
)
1104 * Called by fcs/port to notify transition to online state.
1107 bfa_fcs_lport_n2n_online(struct bfa_fcs_lport_s
*port
)
1109 struct bfa_fcs_lport_n2n_s
*n2n_port
= &port
->port_topo
.pn2n
;
1110 struct bfa_lport_cfg_s
*pcfg
= &port
->port_cfg
;
1111 struct bfa_fcs_rport_s
*rport
;
1113 bfa_trc(port
->fcs
, pcfg
->pwwn
);
1116 * If our PWWN is > than that of the r-port, we have to initiate PLOGI
1117 * and assign an Address. if not, we need to wait for its PLOGI.
1119 * If our PWWN is < than that of the remote port, it will send a PLOGI
1120 * with the PIDs assigned. The rport state machine take care of this
1124 ((void *)&pcfg
->pwwn
, (void *)&n2n_port
->rem_port_wwn
,
1125 sizeof(wwn_t
)) > 0) {
1126 port
->pid
= N2N_LOCAL_PID
;
1127 bfa_lps_set_n2n_pid(port
->fabric
->lps
, N2N_LOCAL_PID
);
1129 * First, check if we know the device by pwwn.
1131 rport
= bfa_fcs_lport_get_rport_by_pwwn(port
,
1132 n2n_port
->rem_port_wwn
);
1134 bfa_trc(port
->fcs
, rport
->pid
);
1135 bfa_trc(port
->fcs
, rport
->pwwn
);
1136 rport
->pid
= N2N_REMOTE_PID
;
1137 bfa_sm_send_event(rport
, RPSM_EVENT_PLOGI_SEND
);
1142 * In n2n there can be only one rport. Delete the old one
1143 * whose pid should be zero, because it is offline.
1145 if (port
->num_rports
> 0) {
1146 rport
= bfa_fcs_lport_get_rport_by_pid(port
, 0);
1147 WARN_ON(rport
== NULL
);
1149 bfa_trc(port
->fcs
, rport
->pwwn
);
1150 bfa_sm_send_event(rport
, RPSM_EVENT_DELETE
);
1153 bfa_fcs_rport_create(port
, N2N_REMOTE_PID
);
1158 * Called by fcs/port to notify transition to offline state.
1161 bfa_fcs_lport_n2n_offline(struct bfa_fcs_lport_s
*port
)
1163 struct bfa_fcs_lport_n2n_s
*n2n_port
= &port
->port_topo
.pn2n
;
1165 bfa_trc(port
->fcs
, port
->pid
);
1167 n2n_port
->rem_port_wwn
= 0;
1168 n2n_port
->reply_oxid
= 0;
1171 #define BFA_FCS_FDMI_CMD_MAX_RETRIES 2
1174 * forward declarations
1176 static void bfa_fcs_lport_fdmi_send_rhba(void *fdmi_cbarg
,
1177 struct bfa_fcxp_s
*fcxp_alloced
);
1178 static void bfa_fcs_lport_fdmi_send_rprt(void *fdmi_cbarg
,
1179 struct bfa_fcxp_s
*fcxp_alloced
);
1180 static void bfa_fcs_lport_fdmi_send_rpa(void *fdmi_cbarg
,
1181 struct bfa_fcxp_s
*fcxp_alloced
);
1182 static void bfa_fcs_lport_fdmi_rhba_response(void *fcsarg
,
1183 struct bfa_fcxp_s
*fcxp
,
1185 bfa_status_t req_status
,
1188 struct fchs_s
*rsp_fchs
);
1189 static void bfa_fcs_lport_fdmi_rprt_response(void *fcsarg
,
1190 struct bfa_fcxp_s
*fcxp
,
1192 bfa_status_t req_status
,
1195 struct fchs_s
*rsp_fchs
);
1196 static void bfa_fcs_lport_fdmi_rpa_response(void *fcsarg
,
1197 struct bfa_fcxp_s
*fcxp
,
1199 bfa_status_t req_status
,
1202 struct fchs_s
*rsp_fchs
);
1203 static void bfa_fcs_lport_fdmi_timeout(void *arg
);
1204 static u16
bfa_fcs_lport_fdmi_build_rhba_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1206 static u16
bfa_fcs_lport_fdmi_build_rprt_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1208 static u16
bfa_fcs_lport_fdmi_build_rpa_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1210 static u16
bfa_fcs_lport_fdmi_build_portattr_block(struct bfa_fcs_lport_fdmi_s
*
1212 static void bfa_fcs_fdmi_get_hbaattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1213 struct bfa_fcs_fdmi_hba_attr_s
*hba_attr
);
1214 static void bfa_fcs_fdmi_get_portattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1215 struct bfa_fcs_fdmi_port_attr_s
*port_attr
);
1216 u32
bfa_fcs_fdmi_convert_speed(enum bfa_port_speed pport_speed
);
1219 * fcs_fdmi_sm FCS FDMI state machine
1223 * FDMI State Machine events
1225 enum port_fdmi_event
{
1226 FDMISM_EVENT_PORT_ONLINE
= 1,
1227 FDMISM_EVENT_PORT_OFFLINE
= 2,
1228 FDMISM_EVENT_RSP_OK
= 4,
1229 FDMISM_EVENT_RSP_ERROR
= 5,
1230 FDMISM_EVENT_TIMEOUT
= 6,
1231 FDMISM_EVENT_RHBA_SENT
= 7,
1232 FDMISM_EVENT_RPRT_SENT
= 8,
1233 FDMISM_EVENT_RPA_SENT
= 9,
1236 static void bfa_fcs_lport_fdmi_sm_offline(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1237 enum port_fdmi_event event
);
1238 static void bfa_fcs_lport_fdmi_sm_sending_rhba(
1239 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1240 enum port_fdmi_event event
);
1241 static void bfa_fcs_lport_fdmi_sm_rhba(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1242 enum port_fdmi_event event
);
1243 static void bfa_fcs_lport_fdmi_sm_rhba_retry(
1244 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1245 enum port_fdmi_event event
);
1246 static void bfa_fcs_lport_fdmi_sm_sending_rprt(
1247 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1248 enum port_fdmi_event event
);
1249 static void bfa_fcs_lport_fdmi_sm_rprt(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1250 enum port_fdmi_event event
);
1251 static void bfa_fcs_lport_fdmi_sm_rprt_retry(
1252 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1253 enum port_fdmi_event event
);
1254 static void bfa_fcs_lport_fdmi_sm_sending_rpa(
1255 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1256 enum port_fdmi_event event
);
1257 static void bfa_fcs_lport_fdmi_sm_rpa(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1258 enum port_fdmi_event event
);
1259 static void bfa_fcs_lport_fdmi_sm_rpa_retry(
1260 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1261 enum port_fdmi_event event
);
1262 static void bfa_fcs_lport_fdmi_sm_online(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1263 enum port_fdmi_event event
);
1264 static void bfa_fcs_lport_fdmi_sm_disabled(
1265 struct bfa_fcs_lport_fdmi_s
*fdmi
,
1266 enum port_fdmi_event event
);
1268 * Start in offline state - awaiting MS to send start.
1271 bfa_fcs_lport_fdmi_sm_offline(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1272 enum port_fdmi_event event
)
1274 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1276 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1277 bfa_trc(port
->fcs
, event
);
1279 fdmi
->retry_cnt
= 0;
1282 case FDMISM_EVENT_PORT_ONLINE
:
1285 * For Vports, register a new port.
1287 bfa_sm_set_state(fdmi
,
1288 bfa_fcs_lport_fdmi_sm_sending_rprt
);
1289 bfa_fcs_lport_fdmi_send_rprt(fdmi
, NULL
);
1292 * For a base port, we should first register the HBA
1293 * attribute. The HBA attribute also contains the base
1294 * port registration.
1296 bfa_sm_set_state(fdmi
,
1297 bfa_fcs_lport_fdmi_sm_sending_rhba
);
1298 bfa_fcs_lport_fdmi_send_rhba(fdmi
, NULL
);
1302 case FDMISM_EVENT_PORT_OFFLINE
:
1306 bfa_sm_fault(port
->fcs
, event
);
1311 bfa_fcs_lport_fdmi_sm_sending_rhba(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1312 enum port_fdmi_event event
)
1314 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1316 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1317 bfa_trc(port
->fcs
, event
);
1320 case FDMISM_EVENT_RHBA_SENT
:
1321 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rhba
);
1324 case FDMISM_EVENT_PORT_OFFLINE
:
1325 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1326 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(port
),
1331 bfa_sm_fault(port
->fcs
, event
);
1336 bfa_fcs_lport_fdmi_sm_rhba(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1337 enum port_fdmi_event event
)
1339 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1341 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1342 bfa_trc(port
->fcs
, event
);
1345 case FDMISM_EVENT_RSP_ERROR
:
1347 * if max retries have not been reached, start timer for a
1350 if (fdmi
->retry_cnt
++ < BFA_FCS_FDMI_CMD_MAX_RETRIES
) {
1351 bfa_sm_set_state(fdmi
,
1352 bfa_fcs_lport_fdmi_sm_rhba_retry
);
1353 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(port
),
1355 bfa_fcs_lport_fdmi_timeout
, fdmi
,
1356 BFA_FCS_RETRY_TIMEOUT
);
1359 * set state to offline
1361 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1365 case FDMISM_EVENT_RSP_OK
:
1367 * Initiate Register Port Attributes
1369 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rpa
);
1370 fdmi
->retry_cnt
= 0;
1371 bfa_fcs_lport_fdmi_send_rpa(fdmi
, NULL
);
1374 case FDMISM_EVENT_PORT_OFFLINE
:
1375 bfa_fcxp_discard(fdmi
->fcxp
);
1376 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1380 bfa_sm_fault(port
->fcs
, event
);
1385 bfa_fcs_lport_fdmi_sm_rhba_retry(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1386 enum port_fdmi_event event
)
1388 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1390 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1391 bfa_trc(port
->fcs
, event
);
1394 case FDMISM_EVENT_TIMEOUT
:
1396 * Retry Timer Expired. Re-send
1398 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rhba
);
1399 bfa_fcs_lport_fdmi_send_rhba(fdmi
, NULL
);
1402 case FDMISM_EVENT_PORT_OFFLINE
:
1403 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1404 bfa_timer_stop(&fdmi
->timer
);
1408 bfa_sm_fault(port
->fcs
, event
);
1413 * RPRT : Register Port
1416 bfa_fcs_lport_fdmi_sm_sending_rprt(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1417 enum port_fdmi_event event
)
1419 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1421 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1422 bfa_trc(port
->fcs
, event
);
1425 case FDMISM_EVENT_RPRT_SENT
:
1426 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rprt
);
1429 case FDMISM_EVENT_PORT_OFFLINE
:
1430 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1431 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(port
),
1436 bfa_sm_fault(port
->fcs
, event
);
1441 bfa_fcs_lport_fdmi_sm_rprt(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1442 enum port_fdmi_event event
)
1444 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1446 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1447 bfa_trc(port
->fcs
, event
);
1450 case FDMISM_EVENT_RSP_ERROR
:
1452 * if max retries have not been reached, start timer for a
1455 if (fdmi
->retry_cnt
++ < BFA_FCS_FDMI_CMD_MAX_RETRIES
) {
1456 bfa_sm_set_state(fdmi
,
1457 bfa_fcs_lport_fdmi_sm_rprt_retry
);
1458 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(port
),
1460 bfa_fcs_lport_fdmi_timeout
, fdmi
,
1461 BFA_FCS_RETRY_TIMEOUT
);
1465 * set state to offline
1467 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1468 fdmi
->retry_cnt
= 0;
1472 case FDMISM_EVENT_RSP_OK
:
1473 fdmi
->retry_cnt
= 0;
1474 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_online
);
1477 case FDMISM_EVENT_PORT_OFFLINE
:
1478 bfa_fcxp_discard(fdmi
->fcxp
);
1479 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1483 bfa_sm_fault(port
->fcs
, event
);
1488 bfa_fcs_lport_fdmi_sm_rprt_retry(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1489 enum port_fdmi_event event
)
1491 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1493 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1494 bfa_trc(port
->fcs
, event
);
1497 case FDMISM_EVENT_TIMEOUT
:
1499 * Retry Timer Expired. Re-send
1501 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rprt
);
1502 bfa_fcs_lport_fdmi_send_rprt(fdmi
, NULL
);
1505 case FDMISM_EVENT_PORT_OFFLINE
:
1506 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1507 bfa_timer_stop(&fdmi
->timer
);
1511 bfa_sm_fault(port
->fcs
, event
);
1516 * Register Port Attributes
1519 bfa_fcs_lport_fdmi_sm_sending_rpa(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1520 enum port_fdmi_event event
)
1522 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1524 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1525 bfa_trc(port
->fcs
, event
);
1528 case FDMISM_EVENT_RPA_SENT
:
1529 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rpa
);
1532 case FDMISM_EVENT_PORT_OFFLINE
:
1533 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1534 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(port
),
1539 bfa_sm_fault(port
->fcs
, event
);
1544 bfa_fcs_lport_fdmi_sm_rpa(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1545 enum port_fdmi_event event
)
1547 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1549 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1550 bfa_trc(port
->fcs
, event
);
1553 case FDMISM_EVENT_RSP_ERROR
:
1555 * if max retries have not been reached, start timer for a
1558 if (fdmi
->retry_cnt
++ < BFA_FCS_FDMI_CMD_MAX_RETRIES
) {
1559 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_rpa_retry
);
1560 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(port
),
1562 bfa_fcs_lport_fdmi_timeout
, fdmi
,
1563 BFA_FCS_RETRY_TIMEOUT
);
1566 * set state to offline
1568 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1569 fdmi
->retry_cnt
= 0;
1573 case FDMISM_EVENT_RSP_OK
:
1574 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_online
);
1575 fdmi
->retry_cnt
= 0;
1578 case FDMISM_EVENT_PORT_OFFLINE
:
1579 bfa_fcxp_discard(fdmi
->fcxp
);
1580 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1584 bfa_sm_fault(port
->fcs
, event
);
1589 bfa_fcs_lport_fdmi_sm_rpa_retry(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1590 enum port_fdmi_event event
)
1592 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1594 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1595 bfa_trc(port
->fcs
, event
);
1598 case FDMISM_EVENT_TIMEOUT
:
1600 * Retry Timer Expired. Re-send
1602 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_sending_rpa
);
1603 bfa_fcs_lport_fdmi_send_rpa(fdmi
, NULL
);
1606 case FDMISM_EVENT_PORT_OFFLINE
:
1607 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1608 bfa_timer_stop(&fdmi
->timer
);
1612 bfa_sm_fault(port
->fcs
, event
);
1617 bfa_fcs_lport_fdmi_sm_online(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1618 enum port_fdmi_event event
)
1620 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1622 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1623 bfa_trc(port
->fcs
, event
);
1626 case FDMISM_EVENT_PORT_OFFLINE
:
1627 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
1631 bfa_sm_fault(port
->fcs
, event
);
1635 * FDMI is disabled state.
1638 bfa_fcs_lport_fdmi_sm_disabled(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1639 enum port_fdmi_event event
)
1641 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1643 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1644 bfa_trc(port
->fcs
, event
);
1646 /* No op State. It can only be enabled at Driver Init. */
1650 * RHBA : Register HBA Attributes.
1653 bfa_fcs_lport_fdmi_send_rhba(void *fdmi_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
1655 struct bfa_fcs_lport_fdmi_s
*fdmi
= fdmi_cbarg
;
1656 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1659 struct bfa_fcxp_s
*fcxp
;
1662 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1664 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
1666 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &fdmi
->fcxp_wqe
,
1667 bfa_fcs_lport_fdmi_send_rhba
, fdmi
);
1672 pyld
= bfa_fcxp_get_reqbuf(fcxp
);
1673 memset(pyld
, 0, FC_MAX_PDUSZ
);
1675 len
= fc_fdmi_reqhdr_build(&fchs
, pyld
, bfa_fcs_lport_get_fcid(port
),
1679 bfa_fcs_lport_fdmi_build_rhba_pyld(fdmi
,
1680 (u8
*) ((struct ct_hdr_s
*) pyld
1683 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
1684 FC_CLASS_3
, (len
+ attr_len
), &fchs
,
1685 bfa_fcs_lport_fdmi_rhba_response
, (void *)fdmi
,
1686 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
1688 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RHBA_SENT
);
1692 bfa_fcs_lport_fdmi_build_rhba_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
, u8
*pyld
)
1694 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1695 struct bfa_fcs_fdmi_hba_attr_s hba_attr
;
1696 struct bfa_fcs_fdmi_hba_attr_s
*fcs_hba_attr
= &hba_attr
;
1697 struct fdmi_rhba_s
*rhba
= (struct fdmi_rhba_s
*) pyld
;
1698 struct fdmi_attr_s
*attr
;
1704 * get hba attributes
1706 bfa_fcs_fdmi_get_hbaattr(fdmi
, fcs_hba_attr
);
1708 rhba
->hba_id
= bfa_fcs_lport_get_pwwn(port
);
1709 rhba
->port_list
.num_ports
= cpu_to_be32(1);
1710 rhba
->port_list
.port_entry
= bfa_fcs_lport_get_pwwn(port
);
1712 len
= sizeof(rhba
->hba_id
) + sizeof(rhba
->port_list
);
1715 len
+= sizeof(rhba
->hba_attr_blk
.attr_count
);
1718 * fill out the invididual entries of the HBA attrib Block
1720 curr_ptr
= (u8
*) &rhba
->hba_attr_blk
.hba_attr
;
1725 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1726 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_NODENAME
);
1727 templen
= sizeof(wwn_t
);
1728 memcpy(attr
->value
, &bfa_fcs_lport_get_nwwn(port
), templen
);
1729 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1732 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1738 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1739 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MANUFACTURER
);
1740 templen
= (u16
) strlen(fcs_hba_attr
->manufacturer
);
1741 memcpy(attr
->value
, fcs_hba_attr
->manufacturer
, templen
);
1742 templen
= fc_roundup(templen
, sizeof(u32
));
1743 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1746 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1752 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1753 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_SERIALNUM
);
1754 templen
= (u16
) strlen(fcs_hba_attr
->serial_num
);
1755 memcpy(attr
->value
, fcs_hba_attr
->serial_num
, templen
);
1756 templen
= fc_roundup(templen
, sizeof(u32
));
1757 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1760 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1766 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1767 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MODEL
);
1768 templen
= (u16
) strlen(fcs_hba_attr
->model
);
1769 memcpy(attr
->value
, fcs_hba_attr
->model
, templen
);
1770 templen
= fc_roundup(templen
, sizeof(u32
));
1771 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1774 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1780 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1781 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MODEL_DESC
);
1782 templen
= (u16
) strlen(fcs_hba_attr
->model_desc
);
1783 memcpy(attr
->value
, fcs_hba_attr
->model_desc
, templen
);
1784 templen
= fc_roundup(templen
, sizeof(u32
));
1785 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1788 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1794 if (fcs_hba_attr
->hw_version
[0] != '\0') {
1795 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1796 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_HW_VERSION
);
1797 templen
= (u16
) strlen(fcs_hba_attr
->hw_version
);
1798 memcpy(attr
->value
, fcs_hba_attr
->hw_version
, templen
);
1799 templen
= fc_roundup(templen
, sizeof(u32
));
1800 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1803 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1810 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1811 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_DRIVER_VERSION
);
1812 templen
= (u16
) strlen(fcs_hba_attr
->driver_version
);
1813 memcpy(attr
->value
, fcs_hba_attr
->driver_version
, templen
);
1814 templen
= fc_roundup(templen
, sizeof(u32
));
1815 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1818 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1822 * Option Rom Version
1824 if (fcs_hba_attr
->option_rom_ver
[0] != '\0') {
1825 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1826 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_ROM_VERSION
);
1827 templen
= (u16
) strlen(fcs_hba_attr
->option_rom_ver
);
1828 memcpy(attr
->value
, fcs_hba_attr
->option_rom_ver
, templen
);
1829 templen
= fc_roundup(templen
, sizeof(u32
));
1830 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1833 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1838 * f/w Version = driver version
1840 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1841 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_FW_VERSION
);
1842 templen
= (u16
) strlen(fcs_hba_attr
->driver_version
);
1843 memcpy(attr
->value
, fcs_hba_attr
->driver_version
, templen
);
1844 templen
= fc_roundup(templen
, sizeof(u32
));
1845 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1848 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1854 if (fcs_hba_attr
->os_name
[0] != '\0') {
1855 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1856 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_OS_NAME
);
1857 templen
= (u16
) strlen(fcs_hba_attr
->os_name
);
1858 memcpy(attr
->value
, fcs_hba_attr
->os_name
, templen
);
1859 templen
= fc_roundup(templen
, sizeof(u32
));
1860 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
1863 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1870 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1871 attr
->type
= cpu_to_be16(FDMI_HBA_ATTRIB_MAX_CT
);
1872 templen
= sizeof(fcs_hba_attr
->max_ct_pyld
);
1873 memcpy(attr
->value
, &fcs_hba_attr
->max_ct_pyld
, templen
);
1876 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
1880 * Update size of payload
1882 len
+= ((sizeof(attr
->type
) + sizeof(attr
->len
)) * count
);
1884 rhba
->hba_attr_blk
.attr_count
= cpu_to_be32(count
);
1889 bfa_fcs_lport_fdmi_rhba_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
1890 void *cbarg
, bfa_status_t req_status
,
1891 u32 rsp_len
, u32 resid_len
,
1892 struct fchs_s
*rsp_fchs
)
1894 struct bfa_fcs_lport_fdmi_s
*fdmi
=
1895 (struct bfa_fcs_lport_fdmi_s
*) cbarg
;
1896 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1897 struct ct_hdr_s
*cthdr
= NULL
;
1899 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1904 if (req_status
!= BFA_STATUS_OK
) {
1905 bfa_trc(port
->fcs
, req_status
);
1906 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
1910 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
1911 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
1913 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
1914 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_OK
);
1918 bfa_trc(port
->fcs
, cthdr
->reason_code
);
1919 bfa_trc(port
->fcs
, cthdr
->exp_code
);
1920 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
1924 * RPRT : Register Port
1927 bfa_fcs_lport_fdmi_send_rprt(void *fdmi_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
1929 struct bfa_fcs_lport_fdmi_s
*fdmi
= fdmi_cbarg
;
1930 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
1933 struct bfa_fcxp_s
*fcxp
;
1936 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
1938 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
1940 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &fdmi
->fcxp_wqe
,
1941 bfa_fcs_lport_fdmi_send_rprt
, fdmi
);
1946 pyld
= bfa_fcxp_get_reqbuf(fcxp
);
1947 memset(pyld
, 0, FC_MAX_PDUSZ
);
1949 len
= fc_fdmi_reqhdr_build(&fchs
, pyld
, bfa_fcs_lport_get_fcid(port
),
1953 bfa_fcs_lport_fdmi_build_rprt_pyld(fdmi
,
1954 (u8
*) ((struct ct_hdr_s
*) pyld
1957 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
1958 FC_CLASS_3
, len
+ attr_len
, &fchs
,
1959 bfa_fcs_lport_fdmi_rprt_response
, (void *)fdmi
,
1960 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
1962 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RPRT_SENT
);
1966 * This routine builds Port Attribute Block that used in RPA, RPRT commands.
1969 bfa_fcs_lport_fdmi_build_portattr_block(struct bfa_fcs_lport_fdmi_s
*fdmi
,
1972 struct bfa_fcs_fdmi_port_attr_s fcs_port_attr
;
1973 struct fdmi_port_attr_s
*port_attrib
= (struct fdmi_port_attr_s
*) pyld
;
1974 struct fdmi_attr_s
*attr
;
1981 * get port attributes
1983 bfa_fcs_fdmi_get_portattr(fdmi
, &fcs_port_attr
);
1985 len
= sizeof(port_attrib
->attr_count
);
1988 * fill out the invididual entries
1990 curr_ptr
= (u8
*) &port_attrib
->port_attr
;
1995 attr
= (struct fdmi_attr_s
*) curr_ptr
;
1996 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_FC4_TYPES
);
1997 templen
= sizeof(fcs_port_attr
.supp_fc4_types
);
1998 memcpy(attr
->value
, fcs_port_attr
.supp_fc4_types
, templen
);
1999 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2003 cpu_to_be16(templen
+ sizeof(attr
->type
) +
2009 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2010 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_SUPP_SPEED
);
2011 templen
= sizeof(fcs_port_attr
.supp_speed
);
2012 memcpy(attr
->value
, &fcs_port_attr
.supp_speed
, templen
);
2013 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2017 cpu_to_be16(templen
+ sizeof(attr
->type
) +
2021 * current Port Speed
2023 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2024 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_PORT_SPEED
);
2025 templen
= sizeof(fcs_port_attr
.curr_speed
);
2026 memcpy(attr
->value
, &fcs_port_attr
.curr_speed
, templen
);
2027 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2030 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2036 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2037 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_FRAME_SIZE
);
2038 templen
= sizeof(fcs_port_attr
.max_frm_size
);
2039 memcpy(attr
->value
, &fcs_port_attr
.max_frm_size
, templen
);
2040 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2043 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2049 if (fcs_port_attr
.os_device_name
[0] != '\0') {
2050 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2051 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_DEV_NAME
);
2052 templen
= (u16
) strlen(fcs_port_attr
.os_device_name
);
2053 memcpy(attr
->value
, fcs_port_attr
.os_device_name
, templen
);
2054 templen
= fc_roundup(templen
, sizeof(u32
));
2055 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2058 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2064 if (fcs_port_attr
.host_name
[0] != '\0') {
2065 attr
= (struct fdmi_attr_s
*) curr_ptr
;
2066 attr
->type
= cpu_to_be16(FDMI_PORT_ATTRIB_HOST_NAME
);
2067 templen
= (u16
) strlen(fcs_port_attr
.host_name
);
2068 memcpy(attr
->value
, fcs_port_attr
.host_name
, templen
);
2069 templen
= fc_roundup(templen
, sizeof(u32
));
2070 curr_ptr
+= sizeof(attr
->type
) + sizeof(templen
) + templen
;
2073 attr
->len
= cpu_to_be16(templen
+ sizeof(attr
->type
) +
2078 * Update size of payload
2080 port_attrib
->attr_count
= cpu_to_be32(count
);
2081 len
+= ((sizeof(attr
->type
) + sizeof(attr
->len
)) * count
);
2086 bfa_fcs_lport_fdmi_build_rprt_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
, u8
*pyld
)
2088 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2089 struct fdmi_rprt_s
*rprt
= (struct fdmi_rprt_s
*) pyld
;
2092 rprt
->hba_id
= bfa_fcs_lport_get_pwwn(bfa_fcs_get_base_port(port
->fcs
));
2093 rprt
->port_name
= bfa_fcs_lport_get_pwwn(port
);
2095 len
= bfa_fcs_lport_fdmi_build_portattr_block(fdmi
,
2096 (u8
*) &rprt
->port_attr_blk
);
2098 len
+= sizeof(rprt
->hba_id
) + sizeof(rprt
->port_name
);
2104 bfa_fcs_lport_fdmi_rprt_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2105 void *cbarg
, bfa_status_t req_status
,
2106 u32 rsp_len
, u32 resid_len
,
2107 struct fchs_s
*rsp_fchs
)
2109 struct bfa_fcs_lport_fdmi_s
*fdmi
=
2110 (struct bfa_fcs_lport_fdmi_s
*) cbarg
;
2111 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2112 struct ct_hdr_s
*cthdr
= NULL
;
2114 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2119 if (req_status
!= BFA_STATUS_OK
) {
2120 bfa_trc(port
->fcs
, req_status
);
2121 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2125 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2126 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2128 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2129 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_OK
);
2133 bfa_trc(port
->fcs
, cthdr
->reason_code
);
2134 bfa_trc(port
->fcs
, cthdr
->exp_code
);
2135 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2139 * RPA : Register Port Attributes.
2142 bfa_fcs_lport_fdmi_send_rpa(void *fdmi_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
2144 struct bfa_fcs_lport_fdmi_s
*fdmi
= fdmi_cbarg
;
2145 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2148 struct bfa_fcxp_s
*fcxp
;
2151 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2153 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
2155 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &fdmi
->fcxp_wqe
,
2156 bfa_fcs_lport_fdmi_send_rpa
, fdmi
);
2161 pyld
= bfa_fcxp_get_reqbuf(fcxp
);
2162 memset(pyld
, 0, FC_MAX_PDUSZ
);
2164 len
= fc_fdmi_reqhdr_build(&fchs
, pyld
, bfa_fcs_lport_get_fcid(port
),
2167 attr_len
= bfa_fcs_lport_fdmi_build_rpa_pyld(fdmi
,
2168 (u8
*) ((struct ct_hdr_s
*) pyld
+ 1));
2170 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
2171 FC_CLASS_3
, len
+ attr_len
, &fchs
,
2172 bfa_fcs_lport_fdmi_rpa_response
, (void *)fdmi
,
2173 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
2175 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RPA_SENT
);
2179 bfa_fcs_lport_fdmi_build_rpa_pyld(struct bfa_fcs_lport_fdmi_s
*fdmi
, u8
*pyld
)
2181 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2182 struct fdmi_rpa_s
*rpa
= (struct fdmi_rpa_s
*) pyld
;
2185 rpa
->port_name
= bfa_fcs_lport_get_pwwn(port
);
2187 len
= bfa_fcs_lport_fdmi_build_portattr_block(fdmi
,
2188 (u8
*) &rpa
->port_attr_blk
);
2190 len
+= sizeof(rpa
->port_name
);
2196 bfa_fcs_lport_fdmi_rpa_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2197 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
2198 u32 resid_len
, struct fchs_s
*rsp_fchs
)
2200 struct bfa_fcs_lport_fdmi_s
*fdmi
=
2201 (struct bfa_fcs_lport_fdmi_s
*) cbarg
;
2202 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2203 struct ct_hdr_s
*cthdr
= NULL
;
2205 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2210 if (req_status
!= BFA_STATUS_OK
) {
2211 bfa_trc(port
->fcs
, req_status
);
2212 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2216 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2217 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2219 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2220 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_OK
);
2224 bfa_trc(port
->fcs
, cthdr
->reason_code
);
2225 bfa_trc(port
->fcs
, cthdr
->exp_code
);
2226 bfa_sm_send_event(fdmi
, FDMISM_EVENT_RSP_ERROR
);
2230 bfa_fcs_lport_fdmi_timeout(void *arg
)
2232 struct bfa_fcs_lport_fdmi_s
*fdmi
= (struct bfa_fcs_lport_fdmi_s
*) arg
;
2234 bfa_sm_send_event(fdmi
, FDMISM_EVENT_TIMEOUT
);
2238 bfa_fcs_fdmi_get_hbaattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
2239 struct bfa_fcs_fdmi_hba_attr_s
*hba_attr
)
2241 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2242 struct bfa_fcs_driver_info_s
*driver_info
= &port
->fcs
->driver_info
;
2244 memset(hba_attr
, 0, sizeof(struct bfa_fcs_fdmi_hba_attr_s
));
2246 bfa_ioc_get_adapter_manufacturer(&port
->fcs
->bfa
->ioc
,
2247 hba_attr
->manufacturer
);
2248 bfa_ioc_get_adapter_serial_num(&port
->fcs
->bfa
->ioc
,
2249 hba_attr
->serial_num
);
2250 bfa_ioc_get_adapter_model(&port
->fcs
->bfa
->ioc
,
2252 bfa_ioc_get_adapter_model(&port
->fcs
->bfa
->ioc
,
2253 hba_attr
->model_desc
);
2254 bfa_ioc_get_pci_chip_rev(&port
->fcs
->bfa
->ioc
,
2255 hba_attr
->hw_version
);
2256 bfa_ioc_get_adapter_optrom_ver(&port
->fcs
->bfa
->ioc
,
2257 hba_attr
->option_rom_ver
);
2258 bfa_ioc_get_adapter_fw_ver(&port
->fcs
->bfa
->ioc
,
2259 hba_attr
->fw_version
);
2261 strncpy(hba_attr
->driver_version
, (char *)driver_info
->version
,
2262 sizeof(hba_attr
->driver_version
));
2264 strncpy(hba_attr
->os_name
, driver_info
->host_os_name
,
2265 sizeof(hba_attr
->os_name
));
2268 * If there is a patch level, append it
2269 * to the os name along with a separator
2271 if (driver_info
->host_os_patch
[0] != '\0') {
2272 strncat(hba_attr
->os_name
, BFA_FCS_PORT_SYMBNAME_SEPARATOR
,
2273 sizeof(BFA_FCS_PORT_SYMBNAME_SEPARATOR
));
2274 strncat(hba_attr
->os_name
, driver_info
->host_os_patch
,
2275 sizeof(driver_info
->host_os_patch
));
2278 hba_attr
->max_ct_pyld
= cpu_to_be32(FC_MAX_PDUSZ
);
2282 bfa_fcs_fdmi_get_portattr(struct bfa_fcs_lport_fdmi_s
*fdmi
,
2283 struct bfa_fcs_fdmi_port_attr_s
*port_attr
)
2285 struct bfa_fcs_lport_s
*port
= fdmi
->ms
->port
;
2286 struct bfa_fcs_driver_info_s
*driver_info
= &port
->fcs
->driver_info
;
2287 struct bfa_port_attr_s pport_attr
;
2289 memset(port_attr
, 0, sizeof(struct bfa_fcs_fdmi_port_attr_s
));
2292 * get pport attributes from hal
2294 bfa_fcport_get_attr(port
->fcs
->bfa
, &pport_attr
);
2297 * get FC4 type Bitmask
2299 fc_get_fc4type_bitmask(FC_TYPE_FCP
, port_attr
->supp_fc4_types
);
2304 switch (pport_attr
.speed_supported
) {
2305 case BFA_PORT_SPEED_16GBPS
:
2306 port_attr
->supp_speed
=
2307 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_16G
);
2310 case BFA_PORT_SPEED_10GBPS
:
2311 port_attr
->supp_speed
=
2312 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_10G
);
2315 case BFA_PORT_SPEED_8GBPS
:
2316 port_attr
->supp_speed
=
2317 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_8G
);
2320 case BFA_PORT_SPEED_4GBPS
:
2321 port_attr
->supp_speed
=
2322 cpu_to_be32(BFA_FCS_FDMI_SUPP_SPEEDS_4G
);
2326 bfa_sm_fault(port
->fcs
, pport_attr
.speed_supported
);
2332 port_attr
->curr_speed
= cpu_to_be32(
2333 bfa_fcs_fdmi_convert_speed(pport_attr
.speed
));
2338 port_attr
->max_frm_size
= cpu_to_be32(FC_MAX_PDUSZ
);
2343 strncpy(port_attr
->os_device_name
, (char *)driver_info
->os_device_name
,
2344 sizeof(port_attr
->os_device_name
));
2349 strncpy(port_attr
->host_name
, (char *)driver_info
->host_machine_name
,
2350 sizeof(port_attr
->host_name
));
2355 * Convert BFA speed to FDMI format.
2358 bfa_fcs_fdmi_convert_speed(bfa_port_speed_t pport_speed
)
2362 switch (pport_speed
) {
2363 case BFA_PORT_SPEED_1GBPS
:
2364 case BFA_PORT_SPEED_2GBPS
:
2368 case BFA_PORT_SPEED_4GBPS
:
2369 ret
= FDMI_TRANS_SPEED_4G
;
2372 case BFA_PORT_SPEED_8GBPS
:
2373 ret
= FDMI_TRANS_SPEED_8G
;
2376 case BFA_PORT_SPEED_10GBPS
:
2377 ret
= FDMI_TRANS_SPEED_10G
;
2380 case BFA_PORT_SPEED_16GBPS
:
2381 ret
= FDMI_TRANS_SPEED_16G
;
2385 ret
= FDMI_TRANS_SPEED_UNKNOWN
;
2391 bfa_fcs_lport_fdmi_init(struct bfa_fcs_lport_ms_s
*ms
)
2393 struct bfa_fcs_lport_fdmi_s
*fdmi
= &ms
->fdmi
;
2396 if (ms
->port
->fcs
->fdmi_enabled
)
2397 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_offline
);
2399 bfa_sm_set_state(fdmi
, bfa_fcs_lport_fdmi_sm_disabled
);
2403 bfa_fcs_lport_fdmi_offline(struct bfa_fcs_lport_ms_s
*ms
)
2405 struct bfa_fcs_lport_fdmi_s
*fdmi
= &ms
->fdmi
;
2408 bfa_sm_send_event(fdmi
, FDMISM_EVENT_PORT_OFFLINE
);
2412 bfa_fcs_lport_fdmi_online(struct bfa_fcs_lport_ms_s
*ms
)
2414 struct bfa_fcs_lport_fdmi_s
*fdmi
= &ms
->fdmi
;
2417 bfa_sm_send_event(fdmi
, FDMISM_EVENT_PORT_ONLINE
);
2420 #define BFA_FCS_MS_CMD_MAX_RETRIES 2
2423 * forward declarations
2425 static void bfa_fcs_lport_ms_send_plogi(void *ms_cbarg
,
2426 struct bfa_fcxp_s
*fcxp_alloced
);
2427 static void bfa_fcs_lport_ms_timeout(void *arg
);
2428 static void bfa_fcs_lport_ms_plogi_response(void *fcsarg
,
2429 struct bfa_fcxp_s
*fcxp
,
2431 bfa_status_t req_status
,
2434 struct fchs_s
*rsp_fchs
);
2436 static void bfa_fcs_lport_ms_send_gmal(void *ms_cbarg
,
2437 struct bfa_fcxp_s
*fcxp_alloced
);
2438 static void bfa_fcs_lport_ms_gmal_response(void *fcsarg
,
2439 struct bfa_fcxp_s
*fcxp
,
2441 bfa_status_t req_status
,
2444 struct fchs_s
*rsp_fchs
);
2445 static void bfa_fcs_lport_ms_send_gfn(void *ms_cbarg
,
2446 struct bfa_fcxp_s
*fcxp_alloced
);
2447 static void bfa_fcs_lport_ms_gfn_response(void *fcsarg
,
2448 struct bfa_fcxp_s
*fcxp
,
2450 bfa_status_t req_status
,
2453 struct fchs_s
*rsp_fchs
);
2455 * fcs_ms_sm FCS MS state machine
2459 * MS State Machine events
2461 enum port_ms_event
{
2462 MSSM_EVENT_PORT_ONLINE
= 1,
2463 MSSM_EVENT_PORT_OFFLINE
= 2,
2464 MSSM_EVENT_RSP_OK
= 3,
2465 MSSM_EVENT_RSP_ERROR
= 4,
2466 MSSM_EVENT_TIMEOUT
= 5,
2467 MSSM_EVENT_FCXP_SENT
= 6,
2468 MSSM_EVENT_PORT_FABRIC_RSCN
= 7
2471 static void bfa_fcs_lport_ms_sm_offline(struct bfa_fcs_lport_ms_s
*ms
,
2472 enum port_ms_event event
);
2473 static void bfa_fcs_lport_ms_sm_plogi_sending(struct bfa_fcs_lport_ms_s
*ms
,
2474 enum port_ms_event event
);
2475 static void bfa_fcs_lport_ms_sm_plogi(struct bfa_fcs_lport_ms_s
*ms
,
2476 enum port_ms_event event
);
2477 static void bfa_fcs_lport_ms_sm_plogi_retry(struct bfa_fcs_lport_ms_s
*ms
,
2478 enum port_ms_event event
);
2479 static void bfa_fcs_lport_ms_sm_gmal_sending(struct bfa_fcs_lport_ms_s
*ms
,
2480 enum port_ms_event event
);
2481 static void bfa_fcs_lport_ms_sm_gmal(struct bfa_fcs_lport_ms_s
*ms
,
2482 enum port_ms_event event
);
2483 static void bfa_fcs_lport_ms_sm_gmal_retry(struct bfa_fcs_lport_ms_s
*ms
,
2484 enum port_ms_event event
);
2485 static void bfa_fcs_lport_ms_sm_gfn_sending(struct bfa_fcs_lport_ms_s
*ms
,
2486 enum port_ms_event event
);
2487 static void bfa_fcs_lport_ms_sm_gfn(struct bfa_fcs_lport_ms_s
*ms
,
2488 enum port_ms_event event
);
2489 static void bfa_fcs_lport_ms_sm_gfn_retry(struct bfa_fcs_lport_ms_s
*ms
,
2490 enum port_ms_event event
);
2491 static void bfa_fcs_lport_ms_sm_online(struct bfa_fcs_lport_ms_s
*ms
,
2492 enum port_ms_event event
);
2494 * Start in offline state - awaiting NS to send start.
2497 bfa_fcs_lport_ms_sm_offline(struct bfa_fcs_lport_ms_s
*ms
,
2498 enum port_ms_event event
)
2500 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2501 bfa_trc(ms
->port
->fcs
, event
);
2504 case MSSM_EVENT_PORT_ONLINE
:
2505 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi_sending
);
2506 bfa_fcs_lport_ms_send_plogi(ms
, NULL
);
2509 case MSSM_EVENT_PORT_OFFLINE
:
2513 bfa_sm_fault(ms
->port
->fcs
, event
);
2518 bfa_fcs_lport_ms_sm_plogi_sending(struct bfa_fcs_lport_ms_s
*ms
,
2519 enum port_ms_event event
)
2521 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2522 bfa_trc(ms
->port
->fcs
, event
);
2525 case MSSM_EVENT_FCXP_SENT
:
2526 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi
);
2529 case MSSM_EVENT_PORT_OFFLINE
:
2530 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2531 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2536 bfa_sm_fault(ms
->port
->fcs
, event
);
2541 bfa_fcs_lport_ms_sm_plogi(struct bfa_fcs_lport_ms_s
*ms
,
2542 enum port_ms_event event
)
2544 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2545 bfa_trc(ms
->port
->fcs
, event
);
2548 case MSSM_EVENT_RSP_ERROR
:
2550 * Start timer for a delayed retry
2552 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi_retry
);
2553 ms
->port
->stats
.ms_retries
++;
2554 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2555 &ms
->timer
, bfa_fcs_lport_ms_timeout
, ms
,
2556 BFA_FCS_RETRY_TIMEOUT
);
2559 case MSSM_EVENT_RSP_OK
:
2561 * since plogi is done, now invoke MS related sub-modules
2563 bfa_fcs_lport_fdmi_online(ms
);
2566 * if this is a Vport, go to online state.
2568 if (ms
->port
->vport
) {
2569 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_online
);
2574 * For a base port we need to get the
2575 * switch's IP address.
2577 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal_sending
);
2578 bfa_fcs_lport_ms_send_gmal(ms
, NULL
);
2581 case MSSM_EVENT_PORT_OFFLINE
:
2582 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2583 bfa_fcxp_discard(ms
->fcxp
);
2587 bfa_sm_fault(ms
->port
->fcs
, event
);
2592 bfa_fcs_lport_ms_sm_plogi_retry(struct bfa_fcs_lport_ms_s
*ms
,
2593 enum port_ms_event event
)
2595 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2596 bfa_trc(ms
->port
->fcs
, event
);
2599 case MSSM_EVENT_TIMEOUT
:
2601 * Retry Timer Expired. Re-send
2603 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_plogi_sending
);
2604 bfa_fcs_lport_ms_send_plogi(ms
, NULL
);
2607 case MSSM_EVENT_PORT_OFFLINE
:
2608 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2609 bfa_timer_stop(&ms
->timer
);
2613 bfa_sm_fault(ms
->port
->fcs
, event
);
2618 bfa_fcs_lport_ms_sm_online(struct bfa_fcs_lport_ms_s
*ms
,
2619 enum port_ms_event event
)
2621 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2622 bfa_trc(ms
->port
->fcs
, event
);
2625 case MSSM_EVENT_PORT_OFFLINE
:
2626 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2629 case MSSM_EVENT_PORT_FABRIC_RSCN
:
2630 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
2632 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
2636 bfa_sm_fault(ms
->port
->fcs
, event
);
2641 bfa_fcs_lport_ms_sm_gmal_sending(struct bfa_fcs_lport_ms_s
*ms
,
2642 enum port_ms_event event
)
2644 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2645 bfa_trc(ms
->port
->fcs
, event
);
2648 case MSSM_EVENT_FCXP_SENT
:
2649 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal
);
2652 case MSSM_EVENT_PORT_OFFLINE
:
2653 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2654 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2659 bfa_sm_fault(ms
->port
->fcs
, event
);
2664 bfa_fcs_lport_ms_sm_gmal(struct bfa_fcs_lport_ms_s
*ms
,
2665 enum port_ms_event event
)
2667 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2668 bfa_trc(ms
->port
->fcs
, event
);
2671 case MSSM_EVENT_RSP_ERROR
:
2673 * Start timer for a delayed retry
2675 if (ms
->retry_cnt
++ < BFA_FCS_MS_CMD_MAX_RETRIES
) {
2676 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal_retry
);
2677 ms
->port
->stats
.ms_retries
++;
2678 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2679 &ms
->timer
, bfa_fcs_lport_ms_timeout
, ms
,
2680 BFA_FCS_RETRY_TIMEOUT
);
2682 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
2683 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
2688 case MSSM_EVENT_RSP_OK
:
2689 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
2690 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
2693 case MSSM_EVENT_PORT_OFFLINE
:
2694 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2695 bfa_fcxp_discard(ms
->fcxp
);
2699 bfa_sm_fault(ms
->port
->fcs
, event
);
2704 bfa_fcs_lport_ms_sm_gmal_retry(struct bfa_fcs_lport_ms_s
*ms
,
2705 enum port_ms_event event
)
2707 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2708 bfa_trc(ms
->port
->fcs
, event
);
2711 case MSSM_EVENT_TIMEOUT
:
2713 * Retry Timer Expired. Re-send
2715 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gmal_sending
);
2716 bfa_fcs_lport_ms_send_gmal(ms
, NULL
);
2719 case MSSM_EVENT_PORT_OFFLINE
:
2720 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2721 bfa_timer_stop(&ms
->timer
);
2725 bfa_sm_fault(ms
->port
->fcs
, event
);
2729 * ms_pvt MS local functions
2733 bfa_fcs_lport_ms_send_gmal(void *ms_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
2735 struct bfa_fcs_lport_ms_s
*ms
= ms_cbarg
;
2736 bfa_fcs_lport_t
*port
= ms
->port
;
2739 struct bfa_fcxp_s
*fcxp
;
2741 bfa_trc(port
->fcs
, port
->pid
);
2743 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
2745 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ms
->fcxp_wqe
,
2746 bfa_fcs_lport_ms_send_gmal
, ms
);
2751 len
= fc_gmal_req_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
2752 bfa_fcs_lport_get_fcid(port
),
2753 port
->fabric
->lps
->pr_nwwn
);
2755 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
2756 FC_CLASS_3
, len
, &fchs
,
2757 bfa_fcs_lport_ms_gmal_response
, (void *)ms
,
2758 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
2760 bfa_sm_send_event(ms
, MSSM_EVENT_FCXP_SENT
);
2764 bfa_fcs_lport_ms_gmal_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2765 void *cbarg
, bfa_status_t req_status
,
2766 u32 rsp_len
, u32 resid_len
,
2767 struct fchs_s
*rsp_fchs
)
2769 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) cbarg
;
2770 bfa_fcs_lport_t
*port
= ms
->port
;
2771 struct ct_hdr_s
*cthdr
= NULL
;
2772 struct fcgs_gmal_resp_s
*gmal_resp
;
2773 struct fcgs_gmal_entry_s
*gmal_entry
;
2777 bfa_trc(port
->fcs
, req_status
);
2778 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2783 if (req_status
!= BFA_STATUS_OK
) {
2784 bfa_trc(port
->fcs
, req_status
);
2785 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
2789 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2790 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2792 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2793 gmal_resp
= (struct fcgs_gmal_resp_s
*)(cthdr
+ 1);
2795 num_entries
= be32_to_cpu(gmal_resp
->ms_len
);
2796 if (num_entries
== 0) {
2797 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
2801 * The response could contain multiple Entries.
2802 * Entries for SNMP interface, etc.
2803 * We look for the entry with a telnet prefix.
2804 * First "http://" entry refers to IP addr
2807 gmal_entry
= (struct fcgs_gmal_entry_s
*)gmal_resp
->ms_ma
;
2808 while (num_entries
> 0) {
2809 if (strncmp(gmal_entry
->prefix
,
2810 CT_GMAL_RESP_PREFIX_HTTP
,
2811 sizeof(gmal_entry
->prefix
)) == 0) {
2814 * if the IP address is terminating with a '/',
2816 * Byte 0 consists of the length of the string.
2818 rsp_str
= &(gmal_entry
->prefix
[0]);
2819 if (rsp_str
[gmal_entry
->len
-1] == '/')
2820 rsp_str
[gmal_entry
->len
-1] = 0;
2822 /* copy IP Address to fabric */
2823 strncpy(bfa_fcs_lport_get_fabric_ipaddr(port
),
2824 gmal_entry
->ip_addr
,
2825 BFA_FCS_FABRIC_IPADDR_SZ
);
2833 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_OK
);
2837 bfa_trc(port
->fcs
, cthdr
->reason_code
);
2838 bfa_trc(port
->fcs
, cthdr
->exp_code
);
2839 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
2843 bfa_fcs_lport_ms_sm_gfn_sending(struct bfa_fcs_lport_ms_s
*ms
,
2844 enum port_ms_event event
)
2846 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2847 bfa_trc(ms
->port
->fcs
, event
);
2850 case MSSM_EVENT_FCXP_SENT
:
2851 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn
);
2854 case MSSM_EVENT_PORT_OFFLINE
:
2855 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2856 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2861 bfa_sm_fault(ms
->port
->fcs
, event
);
2866 bfa_fcs_lport_ms_sm_gfn(struct bfa_fcs_lport_ms_s
*ms
,
2867 enum port_ms_event event
)
2869 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2870 bfa_trc(ms
->port
->fcs
, event
);
2873 case MSSM_EVENT_RSP_ERROR
:
2875 * Start timer for a delayed retry
2877 if (ms
->retry_cnt
++ < BFA_FCS_MS_CMD_MAX_RETRIES
) {
2878 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_retry
);
2879 ms
->port
->stats
.ms_retries
++;
2880 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ms
->port
),
2881 &ms
->timer
, bfa_fcs_lport_ms_timeout
, ms
,
2882 BFA_FCS_RETRY_TIMEOUT
);
2884 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_online
);
2889 case MSSM_EVENT_RSP_OK
:
2890 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_online
);
2893 case MSSM_EVENT_PORT_OFFLINE
:
2894 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2895 bfa_fcxp_discard(ms
->fcxp
);
2899 bfa_sm_fault(ms
->port
->fcs
, event
);
2904 bfa_fcs_lport_ms_sm_gfn_retry(struct bfa_fcs_lport_ms_s
*ms
,
2905 enum port_ms_event event
)
2907 bfa_trc(ms
->port
->fcs
, ms
->port
->port_cfg
.pwwn
);
2908 bfa_trc(ms
->port
->fcs
, event
);
2911 case MSSM_EVENT_TIMEOUT
:
2913 * Retry Timer Expired. Re-send
2915 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_gfn_sending
);
2916 bfa_fcs_lport_ms_send_gfn(ms
, NULL
);
2919 case MSSM_EVENT_PORT_OFFLINE
:
2920 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
2921 bfa_timer_stop(&ms
->timer
);
2925 bfa_sm_fault(ms
->port
->fcs
, event
);
2929 * ms_pvt MS local functions
2933 bfa_fcs_lport_ms_send_gfn(void *ms_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
2935 struct bfa_fcs_lport_ms_s
*ms
= ms_cbarg
;
2936 bfa_fcs_lport_t
*port
= ms
->port
;
2939 struct bfa_fcxp_s
*fcxp
;
2941 bfa_trc(port
->fcs
, port
->pid
);
2943 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
2945 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ms
->fcxp_wqe
,
2946 bfa_fcs_lport_ms_send_gfn
, ms
);
2951 len
= fc_gfn_req_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
2952 bfa_fcs_lport_get_fcid(port
),
2953 port
->fabric
->lps
->pr_nwwn
);
2955 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
2956 FC_CLASS_3
, len
, &fchs
,
2957 bfa_fcs_lport_ms_gfn_response
, (void *)ms
,
2958 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
2960 bfa_sm_send_event(ms
, MSSM_EVENT_FCXP_SENT
);
2964 bfa_fcs_lport_ms_gfn_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
2965 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
2966 u32 resid_len
, struct fchs_s
*rsp_fchs
)
2968 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) cbarg
;
2969 bfa_fcs_lport_t
*port
= ms
->port
;
2970 struct ct_hdr_s
*cthdr
= NULL
;
2973 bfa_trc(port
->fcs
, req_status
);
2974 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
2979 if (req_status
!= BFA_STATUS_OK
) {
2980 bfa_trc(port
->fcs
, req_status
);
2981 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
2985 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
2986 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
2988 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
2989 gfn_resp
= (wwn_t
*)(cthdr
+ 1);
2990 /* check if it has actually changed */
2991 if ((memcmp((void *)&bfa_fcs_lport_get_fabric_name(port
),
2992 gfn_resp
, sizeof(wwn_t
)) != 0)) {
2993 bfa_fcs_fabric_set_fabric_name(port
->fabric
, *gfn_resp
);
2995 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_OK
);
2999 bfa_trc(port
->fcs
, cthdr
->reason_code
);
3000 bfa_trc(port
->fcs
, cthdr
->exp_code
);
3001 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3005 * ms_pvt MS local functions
3009 bfa_fcs_lport_ms_send_plogi(void *ms_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3011 struct bfa_fcs_lport_ms_s
*ms
= ms_cbarg
;
3012 struct bfa_fcs_lport_s
*port
= ms
->port
;
3015 struct bfa_fcxp_s
*fcxp
;
3017 bfa_trc(port
->fcs
, port
->pid
);
3019 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
3021 port
->stats
.ms_plogi_alloc_wait
++;
3022 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ms
->fcxp_wqe
,
3023 bfa_fcs_lport_ms_send_plogi
, ms
);
3028 len
= fc_plogi_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3029 bfa_hton3b(FC_MGMT_SERVER
),
3030 bfa_fcs_lport_get_fcid(port
), 0,
3031 port
->port_cfg
.pwwn
, port
->port_cfg
.nwwn
,
3032 bfa_fcport_get_maxfrsize(port
->fcs
->bfa
),
3033 bfa_fcport_get_rx_bbcredit(port
->fcs
->bfa
));
3035 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3036 FC_CLASS_3
, len
, &fchs
,
3037 bfa_fcs_lport_ms_plogi_response
, (void *)ms
,
3038 FC_MAX_PDUSZ
, FC_ELS_TOV
);
3040 port
->stats
.ms_plogi_sent
++;
3041 bfa_sm_send_event(ms
, MSSM_EVENT_FCXP_SENT
);
3045 bfa_fcs_lport_ms_plogi_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
3046 void *cbarg
, bfa_status_t req_status
,
3047 u32 rsp_len
, u32 resid_len
, struct fchs_s
*rsp_fchs
)
3049 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) cbarg
;
3050 struct bfa_fcs_lport_s
*port
= ms
->port
;
3051 struct fc_els_cmd_s
*els_cmd
;
3052 struct fc_ls_rjt_s
*ls_rjt
;
3054 bfa_trc(port
->fcs
, req_status
);
3055 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3060 if (req_status
!= BFA_STATUS_OK
) {
3061 port
->stats
.ms_plogi_rsp_err
++;
3062 bfa_trc(port
->fcs
, req_status
);
3063 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3067 els_cmd
= (struct fc_els_cmd_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3069 switch (els_cmd
->els_code
) {
3072 if (rsp_len
< sizeof(struct fc_logi_s
)) {
3073 bfa_trc(port
->fcs
, rsp_len
);
3074 port
->stats
.ms_plogi_acc_err
++;
3075 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3078 port
->stats
.ms_plogi_accepts
++;
3079 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_OK
);
3083 ls_rjt
= (struct fc_ls_rjt_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3085 bfa_trc(port
->fcs
, ls_rjt
->reason_code
);
3086 bfa_trc(port
->fcs
, ls_rjt
->reason_code_expl
);
3088 port
->stats
.ms_rejects
++;
3089 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3093 port
->stats
.ms_plogi_unknown_rsp
++;
3094 bfa_trc(port
->fcs
, els_cmd
->els_code
);
3095 bfa_sm_send_event(ms
, MSSM_EVENT_RSP_ERROR
);
3100 bfa_fcs_lport_ms_timeout(void *arg
)
3102 struct bfa_fcs_lport_ms_s
*ms
= (struct bfa_fcs_lport_ms_s
*) arg
;
3104 ms
->port
->stats
.ms_timeouts
++;
3105 bfa_sm_send_event(ms
, MSSM_EVENT_TIMEOUT
);
3110 bfa_fcs_lport_ms_init(struct bfa_fcs_lport_s
*port
)
3112 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3115 bfa_sm_set_state(ms
, bfa_fcs_lport_ms_sm_offline
);
3118 * Invoke init routines of sub modules.
3120 bfa_fcs_lport_fdmi_init(ms
);
3124 bfa_fcs_lport_ms_offline(struct bfa_fcs_lport_s
*port
)
3126 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3129 bfa_sm_send_event(ms
, MSSM_EVENT_PORT_OFFLINE
);
3130 bfa_fcs_lport_fdmi_offline(ms
);
3134 bfa_fcs_lport_ms_online(struct bfa_fcs_lport_s
*port
)
3136 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3139 bfa_sm_send_event(ms
, MSSM_EVENT_PORT_ONLINE
);
3142 bfa_fcs_lport_ms_fabric_rscn(struct bfa_fcs_lport_s
*port
)
3144 struct bfa_fcs_lport_ms_s
*ms
= BFA_FCS_GET_MS_FROM_PORT(port
);
3146 /* todo. Handle this only when in Online state */
3147 if (bfa_sm_cmp_state(ms
, bfa_fcs_lport_ms_sm_online
))
3148 bfa_sm_send_event(ms
, MSSM_EVENT_PORT_FABRIC_RSCN
);
3152 * @page ns_sm_info VPORT NS State Machine
3154 * @section ns_sm_interactions VPORT NS State Machine Interactions
3156 * @section ns_sm VPORT NS State Machine
3161 * forward declarations
3163 static void bfa_fcs_lport_ns_send_plogi(void *ns_cbarg
,
3164 struct bfa_fcxp_s
*fcxp_alloced
);
3165 static void bfa_fcs_lport_ns_send_rspn_id(void *ns_cbarg
,
3166 struct bfa_fcxp_s
*fcxp_alloced
);
3167 static void bfa_fcs_lport_ns_send_rft_id(void *ns_cbarg
,
3168 struct bfa_fcxp_s
*fcxp_alloced
);
3169 static void bfa_fcs_lport_ns_send_rff_id(void *ns_cbarg
,
3170 struct bfa_fcxp_s
*fcxp_alloced
);
3171 static void bfa_fcs_lport_ns_send_gid_ft(void *ns_cbarg
,
3172 struct bfa_fcxp_s
*fcxp_alloced
);
3173 static void bfa_fcs_lport_ns_timeout(void *arg
);
3174 static void bfa_fcs_lport_ns_plogi_response(void *fcsarg
,
3175 struct bfa_fcxp_s
*fcxp
,
3177 bfa_status_t req_status
,
3180 struct fchs_s
*rsp_fchs
);
3181 static void bfa_fcs_lport_ns_rspn_id_response(void *fcsarg
,
3182 struct bfa_fcxp_s
*fcxp
,
3184 bfa_status_t req_status
,
3187 struct fchs_s
*rsp_fchs
);
3188 static void bfa_fcs_lport_ns_rft_id_response(void *fcsarg
,
3189 struct bfa_fcxp_s
*fcxp
,
3191 bfa_status_t req_status
,
3194 struct fchs_s
*rsp_fchs
);
3195 static void bfa_fcs_lport_ns_rff_id_response(void *fcsarg
,
3196 struct bfa_fcxp_s
*fcxp
,
3198 bfa_status_t req_status
,
3201 struct fchs_s
*rsp_fchs
);
3202 static void bfa_fcs_lport_ns_gid_ft_response(void *fcsarg
,
3203 struct bfa_fcxp_s
*fcxp
,
3205 bfa_status_t req_status
,
3208 struct fchs_s
*rsp_fchs
);
3209 static void bfa_fcs_lport_ns_process_gidft_pids(
3210 struct bfa_fcs_lport_s
*port
,
3211 u32
*pid_buf
, u32 n_pids
);
3213 static void bfa_fcs_lport_ns_boot_target_disc(bfa_fcs_lport_t
*port
);
3215 * fcs_ns_sm FCS nameserver interface state machine
3219 * VPort NS State Machine events
3221 enum vport_ns_event
{
3222 NSSM_EVENT_PORT_ONLINE
= 1,
3223 NSSM_EVENT_PORT_OFFLINE
= 2,
3224 NSSM_EVENT_PLOGI_SENT
= 3,
3225 NSSM_EVENT_RSP_OK
= 4,
3226 NSSM_EVENT_RSP_ERROR
= 5,
3227 NSSM_EVENT_TIMEOUT
= 6,
3228 NSSM_EVENT_NS_QUERY
= 7,
3229 NSSM_EVENT_RSPNID_SENT
= 8,
3230 NSSM_EVENT_RFTID_SENT
= 9,
3231 NSSM_EVENT_RFFID_SENT
= 10,
3232 NSSM_EVENT_GIDFT_SENT
= 11,
3235 static void bfa_fcs_lport_ns_sm_offline(struct bfa_fcs_lport_ns_s
*ns
,
3236 enum vport_ns_event event
);
3237 static void bfa_fcs_lport_ns_sm_plogi_sending(struct bfa_fcs_lport_ns_s
*ns
,
3238 enum vport_ns_event event
);
3239 static void bfa_fcs_lport_ns_sm_plogi(struct bfa_fcs_lport_ns_s
*ns
,
3240 enum vport_ns_event event
);
3241 static void bfa_fcs_lport_ns_sm_plogi_retry(struct bfa_fcs_lport_ns_s
*ns
,
3242 enum vport_ns_event event
);
3243 static void bfa_fcs_lport_ns_sm_sending_rspn_id(
3244 struct bfa_fcs_lport_ns_s
*ns
,
3245 enum vport_ns_event event
);
3246 static void bfa_fcs_lport_ns_sm_rspn_id(struct bfa_fcs_lport_ns_s
*ns
,
3247 enum vport_ns_event event
);
3248 static void bfa_fcs_lport_ns_sm_rspn_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3249 enum vport_ns_event event
);
3250 static void bfa_fcs_lport_ns_sm_sending_rft_id(
3251 struct bfa_fcs_lport_ns_s
*ns
,
3252 enum vport_ns_event event
);
3253 static void bfa_fcs_lport_ns_sm_rft_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3254 enum vport_ns_event event
);
3255 static void bfa_fcs_lport_ns_sm_rft_id(struct bfa_fcs_lport_ns_s
*ns
,
3256 enum vport_ns_event event
);
3257 static void bfa_fcs_lport_ns_sm_sending_rff_id(
3258 struct bfa_fcs_lport_ns_s
*ns
,
3259 enum vport_ns_event event
);
3260 static void bfa_fcs_lport_ns_sm_rff_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3261 enum vport_ns_event event
);
3262 static void bfa_fcs_lport_ns_sm_rff_id(struct bfa_fcs_lport_ns_s
*ns
,
3263 enum vport_ns_event event
);
3264 static void bfa_fcs_lport_ns_sm_sending_gid_ft(
3265 struct bfa_fcs_lport_ns_s
*ns
,
3266 enum vport_ns_event event
);
3267 static void bfa_fcs_lport_ns_sm_gid_ft(struct bfa_fcs_lport_ns_s
*ns
,
3268 enum vport_ns_event event
);
3269 static void bfa_fcs_lport_ns_sm_gid_ft_retry(struct bfa_fcs_lport_ns_s
*ns
,
3270 enum vport_ns_event event
);
3271 static void bfa_fcs_lport_ns_sm_online(struct bfa_fcs_lport_ns_s
*ns
,
3272 enum vport_ns_event event
);
3274 * Start in offline state - awaiting linkup
3277 bfa_fcs_lport_ns_sm_offline(struct bfa_fcs_lport_ns_s
*ns
,
3278 enum vport_ns_event event
)
3280 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3281 bfa_trc(ns
->port
->fcs
, event
);
3284 case NSSM_EVENT_PORT_ONLINE
:
3285 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi_sending
);
3286 bfa_fcs_lport_ns_send_plogi(ns
, NULL
);
3289 case NSSM_EVENT_PORT_OFFLINE
:
3293 bfa_sm_fault(ns
->port
->fcs
, event
);
3298 bfa_fcs_lport_ns_sm_plogi_sending(struct bfa_fcs_lport_ns_s
*ns
,
3299 enum vport_ns_event event
)
3301 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3302 bfa_trc(ns
->port
->fcs
, event
);
3305 case NSSM_EVENT_PLOGI_SENT
:
3306 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi
);
3309 case NSSM_EVENT_PORT_OFFLINE
:
3310 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3311 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3316 bfa_sm_fault(ns
->port
->fcs
, event
);
3321 bfa_fcs_lport_ns_sm_plogi(struct bfa_fcs_lport_ns_s
*ns
,
3322 enum vport_ns_event event
)
3324 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3325 bfa_trc(ns
->port
->fcs
, event
);
3328 case NSSM_EVENT_RSP_ERROR
:
3330 * Start timer for a delayed retry
3332 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi_retry
);
3333 ns
->port
->stats
.ns_retries
++;
3334 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3335 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3336 BFA_FCS_RETRY_TIMEOUT
);
3339 case NSSM_EVENT_RSP_OK
:
3340 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rspn_id
);
3341 bfa_fcs_lport_ns_send_rspn_id(ns
, NULL
);
3344 case NSSM_EVENT_PORT_OFFLINE
:
3345 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3346 bfa_fcxp_discard(ns
->fcxp
);
3350 bfa_sm_fault(ns
->port
->fcs
, event
);
3355 bfa_fcs_lport_ns_sm_plogi_retry(struct bfa_fcs_lport_ns_s
*ns
,
3356 enum vport_ns_event event
)
3358 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3359 bfa_trc(ns
->port
->fcs
, event
);
3362 case NSSM_EVENT_TIMEOUT
:
3364 * Retry Timer Expired. Re-send
3366 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_plogi_sending
);
3367 bfa_fcs_lport_ns_send_plogi(ns
, NULL
);
3370 case NSSM_EVENT_PORT_OFFLINE
:
3371 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3372 bfa_timer_stop(&ns
->timer
);
3376 bfa_sm_fault(ns
->port
->fcs
, event
);
3381 bfa_fcs_lport_ns_sm_sending_rspn_id(struct bfa_fcs_lport_ns_s
*ns
,
3382 enum vport_ns_event event
)
3384 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3385 bfa_trc(ns
->port
->fcs
, event
);
3388 case NSSM_EVENT_RSPNID_SENT
:
3389 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rspn_id
);
3392 case NSSM_EVENT_PORT_OFFLINE
:
3393 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3394 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3399 bfa_sm_fault(ns
->port
->fcs
, event
);
3404 bfa_fcs_lport_ns_sm_rspn_id(struct bfa_fcs_lport_ns_s
*ns
,
3405 enum vport_ns_event event
)
3407 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3408 bfa_trc(ns
->port
->fcs
, event
);
3411 case NSSM_EVENT_RSP_ERROR
:
3413 * Start timer for a delayed retry
3415 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rspn_id_retry
);
3416 ns
->port
->stats
.ns_retries
++;
3417 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3418 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3419 BFA_FCS_RETRY_TIMEOUT
);
3422 case NSSM_EVENT_RSP_OK
:
3423 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rft_id
);
3424 bfa_fcs_lport_ns_send_rft_id(ns
, NULL
);
3427 case NSSM_EVENT_PORT_OFFLINE
:
3428 bfa_fcxp_discard(ns
->fcxp
);
3429 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3433 bfa_sm_fault(ns
->port
->fcs
, event
);
3438 bfa_fcs_lport_ns_sm_rspn_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3439 enum vport_ns_event event
)
3441 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3442 bfa_trc(ns
->port
->fcs
, event
);
3445 case NSSM_EVENT_TIMEOUT
:
3447 * Retry Timer Expired. Re-send
3449 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rspn_id
);
3450 bfa_fcs_lport_ns_send_rspn_id(ns
, NULL
);
3453 case NSSM_EVENT_PORT_OFFLINE
:
3454 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3455 bfa_timer_stop(&ns
->timer
);
3459 bfa_sm_fault(ns
->port
->fcs
, event
);
3464 bfa_fcs_lport_ns_sm_sending_rft_id(struct bfa_fcs_lport_ns_s
*ns
,
3465 enum vport_ns_event event
)
3467 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3468 bfa_trc(ns
->port
->fcs
, event
);
3471 case NSSM_EVENT_RFTID_SENT
:
3472 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rft_id
);
3475 case NSSM_EVENT_PORT_OFFLINE
:
3476 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3477 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3482 bfa_sm_fault(ns
->port
->fcs
, event
);
3487 bfa_fcs_lport_ns_sm_rft_id(struct bfa_fcs_lport_ns_s
*ns
,
3488 enum vport_ns_event event
)
3490 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3491 bfa_trc(ns
->port
->fcs
, event
);
3494 case NSSM_EVENT_RSP_OK
:
3495 /* Now move to register FC4 Features */
3496 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rff_id
);
3497 bfa_fcs_lport_ns_send_rff_id(ns
, NULL
);
3500 case NSSM_EVENT_RSP_ERROR
:
3502 * Start timer for a delayed retry
3504 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rft_id_retry
);
3505 ns
->port
->stats
.ns_retries
++;
3506 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3507 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3508 BFA_FCS_RETRY_TIMEOUT
);
3511 case NSSM_EVENT_PORT_OFFLINE
:
3512 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3513 bfa_fcxp_discard(ns
->fcxp
);
3517 bfa_sm_fault(ns
->port
->fcs
, event
);
3522 bfa_fcs_lport_ns_sm_rft_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3523 enum vport_ns_event event
)
3525 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3526 bfa_trc(ns
->port
->fcs
, event
);
3529 case NSSM_EVENT_TIMEOUT
:
3530 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rft_id
);
3531 bfa_fcs_lport_ns_send_rft_id(ns
, NULL
);
3534 case NSSM_EVENT_PORT_OFFLINE
:
3535 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3536 bfa_timer_stop(&ns
->timer
);
3540 bfa_sm_fault(ns
->port
->fcs
, event
);
3545 bfa_fcs_lport_ns_sm_sending_rff_id(struct bfa_fcs_lport_ns_s
*ns
,
3546 enum vport_ns_event event
)
3548 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3549 bfa_trc(ns
->port
->fcs
, event
);
3552 case NSSM_EVENT_RFFID_SENT
:
3553 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rff_id
);
3556 case NSSM_EVENT_PORT_OFFLINE
:
3557 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3558 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3563 bfa_sm_fault(ns
->port
->fcs
, event
);
3568 bfa_fcs_lport_ns_sm_rff_id(struct bfa_fcs_lport_ns_s
*ns
,
3569 enum vport_ns_event event
)
3571 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3572 bfa_trc(ns
->port
->fcs
, event
);
3575 case NSSM_EVENT_RSP_OK
:
3578 * If min cfg mode is enabled, we donot initiate rport
3579 * discovery with the fabric. Instead, we will retrieve the
3580 * boot targets from HAL/FW.
3582 if (__fcs_min_cfg(ns
->port
->fcs
)) {
3583 bfa_fcs_lport_ns_boot_target_disc(ns
->port
);
3584 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_online
);
3589 * If the port role is Initiator Mode issue NS query.
3590 * If it is Target Mode, skip this and go to online.
3592 if (BFA_FCS_VPORT_IS_INITIATOR_MODE(ns
->port
)) {
3593 bfa_sm_set_state(ns
,
3594 bfa_fcs_lport_ns_sm_sending_gid_ft
);
3595 bfa_fcs_lport_ns_send_gid_ft(ns
, NULL
);
3598 * kick off mgmt srvr state machine
3600 bfa_fcs_lport_ms_online(ns
->port
);
3603 case NSSM_EVENT_RSP_ERROR
:
3605 * Start timer for a delayed retry
3607 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_rff_id_retry
);
3608 ns
->port
->stats
.ns_retries
++;
3609 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3610 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3611 BFA_FCS_RETRY_TIMEOUT
);
3614 case NSSM_EVENT_PORT_OFFLINE
:
3615 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3616 bfa_fcxp_discard(ns
->fcxp
);
3620 bfa_sm_fault(ns
->port
->fcs
, event
);
3625 bfa_fcs_lport_ns_sm_rff_id_retry(struct bfa_fcs_lport_ns_s
*ns
,
3626 enum vport_ns_event event
)
3628 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3629 bfa_trc(ns
->port
->fcs
, event
);
3632 case NSSM_EVENT_TIMEOUT
:
3633 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_rff_id
);
3634 bfa_fcs_lport_ns_send_rff_id(ns
, NULL
);
3637 case NSSM_EVENT_PORT_OFFLINE
:
3638 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3639 bfa_timer_stop(&ns
->timer
);
3643 bfa_sm_fault(ns
->port
->fcs
, event
);
3647 bfa_fcs_lport_ns_sm_sending_gid_ft(struct bfa_fcs_lport_ns_s
*ns
,
3648 enum vport_ns_event event
)
3650 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3651 bfa_trc(ns
->port
->fcs
, event
);
3654 case NSSM_EVENT_GIDFT_SENT
:
3655 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_gid_ft
);
3658 case NSSM_EVENT_PORT_OFFLINE
:
3659 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3660 bfa_fcxp_walloc_cancel(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3665 bfa_sm_fault(ns
->port
->fcs
, event
);
3670 bfa_fcs_lport_ns_sm_gid_ft(struct bfa_fcs_lport_ns_s
*ns
,
3671 enum vport_ns_event event
)
3673 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3674 bfa_trc(ns
->port
->fcs
, event
);
3677 case NSSM_EVENT_RSP_OK
:
3678 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_online
);
3681 case NSSM_EVENT_RSP_ERROR
:
3683 * TBD: for certain reject codes, we don't need to retry
3686 * Start timer for a delayed retry
3688 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_gid_ft_retry
);
3689 ns
->port
->stats
.ns_retries
++;
3690 bfa_timer_start(BFA_FCS_GET_HAL_FROM_PORT(ns
->port
),
3691 &ns
->timer
, bfa_fcs_lport_ns_timeout
, ns
,
3692 BFA_FCS_RETRY_TIMEOUT
);
3695 case NSSM_EVENT_PORT_OFFLINE
:
3696 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3697 bfa_fcxp_discard(ns
->fcxp
);
3700 case NSSM_EVENT_NS_QUERY
:
3704 bfa_sm_fault(ns
->port
->fcs
, event
);
3709 bfa_fcs_lport_ns_sm_gid_ft_retry(struct bfa_fcs_lport_ns_s
*ns
,
3710 enum vport_ns_event event
)
3712 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3713 bfa_trc(ns
->port
->fcs
, event
);
3716 case NSSM_EVENT_TIMEOUT
:
3717 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_sending_gid_ft
);
3718 bfa_fcs_lport_ns_send_gid_ft(ns
, NULL
);
3721 case NSSM_EVENT_PORT_OFFLINE
:
3722 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3723 bfa_timer_stop(&ns
->timer
);
3727 bfa_sm_fault(ns
->port
->fcs
, event
);
3732 bfa_fcs_lport_ns_sm_online(struct bfa_fcs_lport_ns_s
*ns
,
3733 enum vport_ns_event event
)
3735 bfa_trc(ns
->port
->fcs
, ns
->port
->port_cfg
.pwwn
);
3736 bfa_trc(ns
->port
->fcs
, event
);
3739 case NSSM_EVENT_PORT_OFFLINE
:
3740 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
3743 case NSSM_EVENT_NS_QUERY
:
3745 * If the port role is Initiator Mode issue NS query.
3746 * If it is Target Mode, skip this and go to online.
3748 if (BFA_FCS_VPORT_IS_INITIATOR_MODE(ns
->port
)) {
3749 bfa_sm_set_state(ns
,
3750 bfa_fcs_lport_ns_sm_sending_gid_ft
);
3751 bfa_fcs_lport_ns_send_gid_ft(ns
, NULL
);
3756 bfa_sm_fault(ns
->port
->fcs
, event
);
3763 * ns_pvt Nameserver local functions
3767 bfa_fcs_lport_ns_send_plogi(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3769 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
3770 struct bfa_fcs_lport_s
*port
= ns
->port
;
3773 struct bfa_fcxp_s
*fcxp
;
3775 bfa_trc(port
->fcs
, port
->pid
);
3777 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
3779 port
->stats
.ns_plogi_alloc_wait
++;
3780 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
3781 bfa_fcs_lport_ns_send_plogi
, ns
);
3786 len
= fc_plogi_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3787 bfa_hton3b(FC_NAME_SERVER
),
3788 bfa_fcs_lport_get_fcid(port
), 0,
3789 port
->port_cfg
.pwwn
, port
->port_cfg
.nwwn
,
3790 bfa_fcport_get_maxfrsize(port
->fcs
->bfa
),
3791 bfa_fcport_get_rx_bbcredit(port
->fcs
->bfa
));
3793 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3794 FC_CLASS_3
, len
, &fchs
,
3795 bfa_fcs_lport_ns_plogi_response
, (void *)ns
,
3796 FC_MAX_PDUSZ
, FC_ELS_TOV
);
3797 port
->stats
.ns_plogi_sent
++;
3799 bfa_sm_send_event(ns
, NSSM_EVENT_PLOGI_SENT
);
3803 bfa_fcs_lport_ns_plogi_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
3804 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
3805 u32 resid_len
, struct fchs_s
*rsp_fchs
)
3807 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
3808 struct bfa_fcs_lport_s
*port
= ns
->port
;
3809 /* struct fc_logi_s *plogi_resp; */
3810 struct fc_els_cmd_s
*els_cmd
;
3811 struct fc_ls_rjt_s
*ls_rjt
;
3813 bfa_trc(port
->fcs
, req_status
);
3814 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3819 if (req_status
!= BFA_STATUS_OK
) {
3820 bfa_trc(port
->fcs
, req_status
);
3821 port
->stats
.ns_plogi_rsp_err
++;
3822 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
3826 els_cmd
= (struct fc_els_cmd_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3828 switch (els_cmd
->els_code
) {
3831 if (rsp_len
< sizeof(struct fc_logi_s
)) {
3832 bfa_trc(port
->fcs
, rsp_len
);
3833 port
->stats
.ns_plogi_acc_err
++;
3834 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
3837 port
->stats
.ns_plogi_accepts
++;
3838 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
3842 ls_rjt
= (struct fc_ls_rjt_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3844 bfa_trc(port
->fcs
, ls_rjt
->reason_code
);
3845 bfa_trc(port
->fcs
, ls_rjt
->reason_code_expl
);
3847 port
->stats
.ns_rejects
++;
3849 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
3853 port
->stats
.ns_plogi_unknown_rsp
++;
3854 bfa_trc(port
->fcs
, els_cmd
->els_code
);
3855 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
3860 * Register the symbolic port name.
3863 bfa_fcs_lport_ns_send_rspn_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3865 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
3866 struct bfa_fcs_lport_s
*port
= ns
->port
;
3869 struct bfa_fcxp_s
*fcxp
;
3871 u8
*psymbl
= &symbl
[0];
3873 memset(symbl
, 0, sizeof(symbl
));
3875 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3877 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
3879 port
->stats
.ns_rspnid_alloc_wait
++;
3880 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
3881 bfa_fcs_lport_ns_send_rspn_id
, ns
);
3887 * for V-Port, form a Port Symbolic Name
3891 * For Vports, we append the vport's port symbolic name
3892 * to that of the base port.
3895 strncpy((char *)psymbl
,
3897 (bfa_fcs_lport_get_psym_name
3898 (bfa_fcs_get_base_port(port
->fcs
))),
3900 bfa_fcs_lport_get_psym_name(bfa_fcs_get_base_port
3903 /* Ensure we have a null terminating string. */
3904 ((char *)psymbl
)[strlen((char *) &
3905 bfa_fcs_lport_get_psym_name(bfa_fcs_get_base_port
3907 strncat((char *)psymbl
,
3908 (char *) &(bfa_fcs_lport_get_psym_name(port
)),
3909 strlen((char *) &bfa_fcs_lport_get_psym_name(port
)));
3911 psymbl
= (u8
*) &(bfa_fcs_lport_get_psym_name(port
));
3914 len
= fc_rspnid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3915 bfa_fcs_lport_get_fcid(port
), 0, psymbl
);
3917 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3918 FC_CLASS_3
, len
, &fchs
,
3919 bfa_fcs_lport_ns_rspn_id_response
, (void *)ns
,
3920 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
3922 port
->stats
.ns_rspnid_sent
++;
3924 bfa_sm_send_event(ns
, NSSM_EVENT_RSPNID_SENT
);
3928 bfa_fcs_lport_ns_rspn_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
3929 void *cbarg
, bfa_status_t req_status
,
3930 u32 rsp_len
, u32 resid_len
,
3931 struct fchs_s
*rsp_fchs
)
3933 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
3934 struct bfa_fcs_lport_s
*port
= ns
->port
;
3935 struct ct_hdr_s
*cthdr
= NULL
;
3937 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3942 if (req_status
!= BFA_STATUS_OK
) {
3943 bfa_trc(port
->fcs
, req_status
);
3944 port
->stats
.ns_rspnid_rsp_err
++;
3945 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
3949 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
3950 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
3952 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
3953 port
->stats
.ns_rspnid_accepts
++;
3954 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
3958 port
->stats
.ns_rspnid_rejects
++;
3959 bfa_trc(port
->fcs
, cthdr
->reason_code
);
3960 bfa_trc(port
->fcs
, cthdr
->exp_code
);
3961 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
3965 * Register FC4-Types
3968 bfa_fcs_lport_ns_send_rft_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
3970 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
3971 struct bfa_fcs_lport_s
*port
= ns
->port
;
3974 struct bfa_fcxp_s
*fcxp
;
3976 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
3978 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
3980 port
->stats
.ns_rftid_alloc_wait
++;
3981 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
3982 bfa_fcs_lport_ns_send_rft_id
, ns
);
3987 len
= fc_rftid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
3988 bfa_fcs_lport_get_fcid(port
), 0, port
->port_cfg
.roles
);
3990 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
3991 FC_CLASS_3
, len
, &fchs
,
3992 bfa_fcs_lport_ns_rft_id_response
, (void *)ns
,
3993 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
3995 port
->stats
.ns_rftid_sent
++;
3996 bfa_sm_send_event(ns
, NSSM_EVENT_RFTID_SENT
);
4000 bfa_fcs_lport_ns_rft_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4001 void *cbarg
, bfa_status_t req_status
,
4002 u32 rsp_len
, u32 resid_len
,
4003 struct fchs_s
*rsp_fchs
)
4005 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4006 struct bfa_fcs_lport_s
*port
= ns
->port
;
4007 struct ct_hdr_s
*cthdr
= NULL
;
4009 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4014 if (req_status
!= BFA_STATUS_OK
) {
4015 bfa_trc(port
->fcs
, req_status
);
4016 port
->stats
.ns_rftid_rsp_err
++;
4017 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4021 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4022 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4024 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4025 port
->stats
.ns_rftid_accepts
++;
4026 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4030 port
->stats
.ns_rftid_rejects
++;
4031 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4032 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4033 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4037 * Register FC4-Features : Should be done after RFT_ID
4040 bfa_fcs_lport_ns_send_rff_id(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4042 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4043 struct bfa_fcs_lport_s
*port
= ns
->port
;
4046 struct bfa_fcxp_s
*fcxp
;
4049 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4051 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
4053 port
->stats
.ns_rffid_alloc_wait
++;
4054 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4055 bfa_fcs_lport_ns_send_rff_id
, ns
);
4060 if (BFA_FCS_VPORT_IS_INITIATOR_MODE(ns
->port
))
4061 fc4_ftrs
= FC_GS_FCP_FC4_FEATURE_INITIATOR
;
4063 len
= fc_rffid_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4064 bfa_fcs_lport_get_fcid(port
), 0,
4065 FC_TYPE_FCP
, fc4_ftrs
);
4067 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4068 FC_CLASS_3
, len
, &fchs
,
4069 bfa_fcs_lport_ns_rff_id_response
, (void *)ns
,
4070 FC_MAX_PDUSZ
, FC_FCCT_TOV
);
4072 port
->stats
.ns_rffid_sent
++;
4073 bfa_sm_send_event(ns
, NSSM_EVENT_RFFID_SENT
);
4077 bfa_fcs_lport_ns_rff_id_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4078 void *cbarg
, bfa_status_t req_status
,
4079 u32 rsp_len
, u32 resid_len
,
4080 struct fchs_s
*rsp_fchs
)
4082 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4083 struct bfa_fcs_lport_s
*port
= ns
->port
;
4084 struct ct_hdr_s
*cthdr
= NULL
;
4086 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4091 if (req_status
!= BFA_STATUS_OK
) {
4092 bfa_trc(port
->fcs
, req_status
);
4093 port
->stats
.ns_rffid_rsp_err
++;
4094 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4098 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4099 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4101 if (cthdr
->cmd_rsp_code
== CT_RSP_ACCEPT
) {
4102 port
->stats
.ns_rffid_accepts
++;
4103 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4107 port
->stats
.ns_rffid_rejects
++;
4108 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4109 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4111 if (cthdr
->reason_code
== CT_RSN_NOT_SUPP
) {
4112 /* if this command is not supported, we don't retry */
4113 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4115 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4118 * Query Fabric for FC4-Types Devices.
4120 * TBD : Need to use a local (FCS private) response buffer, since the response
4121 * can be larger than 2K.
4124 bfa_fcs_lport_ns_send_gid_ft(void *ns_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4126 struct bfa_fcs_lport_ns_s
*ns
= ns_cbarg
;
4127 struct bfa_fcs_lport_s
*port
= ns
->port
;
4130 struct bfa_fcxp_s
*fcxp
;
4132 bfa_trc(port
->fcs
, port
->pid
);
4134 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
4136 port
->stats
.ns_gidft_alloc_wait
++;
4137 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &ns
->fcxp_wqe
,
4138 bfa_fcs_lport_ns_send_gid_ft
, ns
);
4144 * This query is only initiated for FCP initiator mode.
4146 len
= fc_gid_ft_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4147 ns
->port
->pid
, FC_TYPE_FCP
);
4149 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4150 FC_CLASS_3
, len
, &fchs
,
4151 bfa_fcs_lport_ns_gid_ft_response
, (void *)ns
,
4152 bfa_fcxp_get_maxrsp(port
->fcs
->bfa
), FC_FCCT_TOV
);
4154 port
->stats
.ns_gidft_sent
++;
4156 bfa_sm_send_event(ns
, NSSM_EVENT_GIDFT_SENT
);
4160 bfa_fcs_lport_ns_gid_ft_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4161 void *cbarg
, bfa_status_t req_status
,
4162 u32 rsp_len
, u32 resid_len
,
4163 struct fchs_s
*rsp_fchs
)
4165 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) cbarg
;
4166 struct bfa_fcs_lport_s
*port
= ns
->port
;
4167 struct ct_hdr_s
*cthdr
= NULL
;
4170 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4175 if (req_status
!= BFA_STATUS_OK
) {
4176 bfa_trc(port
->fcs
, req_status
);
4177 port
->stats
.ns_gidft_rsp_err
++;
4178 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4182 if (resid_len
!= 0) {
4184 * TBD : we will need to allocate a larger buffer & retry the
4187 bfa_trc(port
->fcs
, rsp_len
);
4188 bfa_trc(port
->fcs
, resid_len
);
4192 cthdr
= (struct ct_hdr_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4193 cthdr
->cmd_rsp_code
= be16_to_cpu(cthdr
->cmd_rsp_code
);
4195 switch (cthdr
->cmd_rsp_code
) {
4199 port
->stats
.ns_gidft_accepts
++;
4200 n_pids
= (fc_get_ctresp_pyld_len(rsp_len
) / sizeof(u32
));
4201 bfa_trc(port
->fcs
, n_pids
);
4202 bfa_fcs_lport_ns_process_gidft_pids(port
,
4203 (u32
*) (cthdr
+ 1),
4205 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4211 * Check the reason code & explanation.
4212 * There may not have been any FC4 devices in the fabric
4214 port
->stats
.ns_gidft_rejects
++;
4215 bfa_trc(port
->fcs
, cthdr
->reason_code
);
4216 bfa_trc(port
->fcs
, cthdr
->exp_code
);
4218 if ((cthdr
->reason_code
== CT_RSN_UNABLE_TO_PERF
)
4219 && (cthdr
->exp_code
== CT_NS_EXP_FT_NOT_REG
)) {
4221 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_OK
);
4224 * for all other errors, retry
4226 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4231 port
->stats
.ns_gidft_unknown_rsp
++;
4232 bfa_trc(port
->fcs
, cthdr
->cmd_rsp_code
);
4233 bfa_sm_send_event(ns
, NSSM_EVENT_RSP_ERROR
);
4238 * This routine will be called by bfa_timer on timer timeouts.
4240 * param[in] port - pointer to bfa_fcs_lport_t.
4245 * Special Considerations:
4250 bfa_fcs_lport_ns_timeout(void *arg
)
4252 struct bfa_fcs_lport_ns_s
*ns
= (struct bfa_fcs_lport_ns_s
*) arg
;
4254 ns
->port
->stats
.ns_timeouts
++;
4255 bfa_sm_send_event(ns
, NSSM_EVENT_TIMEOUT
);
4259 * Process the PID list in GID_FT response
4262 bfa_fcs_lport_ns_process_gidft_pids(struct bfa_fcs_lport_s
*port
, u32
*pid_buf
,
4265 struct fcgs_gidft_resp_s
*gidft_entry
;
4266 struct bfa_fcs_rport_s
*rport
;
4269 for (ii
= 0; ii
< n_pids
; ii
++) {
4270 gidft_entry
= (struct fcgs_gidft_resp_s
*) &pid_buf
[ii
];
4272 if (gidft_entry
->pid
== port
->pid
)
4276 * Check if this rport already exists
4278 rport
= bfa_fcs_lport_get_rport_by_pid(port
, gidft_entry
->pid
);
4279 if (rport
== NULL
) {
4281 * this is a new device. create rport
4283 rport
= bfa_fcs_rport_create(port
, gidft_entry
->pid
);
4286 * this rport already exists
4288 bfa_fcs_rport_scn(rport
);
4291 bfa_trc(port
->fcs
, gidft_entry
->pid
);
4294 * if the last entry bit is set, bail out.
4296 if (gidft_entry
->last
)
4302 * fcs_ns_public FCS nameserver public interfaces
4306 * Functions called by port/fab.
4307 * These will send relevant Events to the ns state machine.
4310 bfa_fcs_lport_ns_init(struct bfa_fcs_lport_s
*port
)
4312 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
4315 bfa_sm_set_state(ns
, bfa_fcs_lport_ns_sm_offline
);
4319 bfa_fcs_lport_ns_offline(struct bfa_fcs_lport_s
*port
)
4321 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
4324 bfa_sm_send_event(ns
, NSSM_EVENT_PORT_OFFLINE
);
4328 bfa_fcs_lport_ns_online(struct bfa_fcs_lport_s
*port
)
4330 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
4333 bfa_sm_send_event(ns
, NSSM_EVENT_PORT_ONLINE
);
4337 bfa_fcs_lport_ns_query(struct bfa_fcs_lport_s
*port
)
4339 struct bfa_fcs_lport_ns_s
*ns
= BFA_FCS_GET_NS_FROM_PORT(port
);
4341 bfa_trc(port
->fcs
, port
->pid
);
4342 bfa_sm_send_event(ns
, NSSM_EVENT_NS_QUERY
);
4346 bfa_fcs_lport_ns_boot_target_disc(bfa_fcs_lport_t
*port
)
4349 struct bfa_fcs_rport_s
*rport
;
4351 wwn_t wwns
[BFA_PREBOOT_BOOTLUN_MAX
];
4354 bfa_iocfc_get_bootwwns(port
->fcs
->bfa
, &nwwns
, wwns
);
4356 for (ii
= 0 ; ii
< nwwns
; ++ii
) {
4357 rport
= bfa_fcs_rport_create_by_wwn(port
, wwns
[ii
]);
4366 #define FC_QOS_RSCN_EVENT 0x0c
4367 #define FC_FABRIC_NAME_RSCN_EVENT 0x0d
4370 * forward declarations
4372 static void bfa_fcs_lport_scn_send_scr(void *scn_cbarg
,
4373 struct bfa_fcxp_s
*fcxp_alloced
);
4374 static void bfa_fcs_lport_scn_scr_response(void *fcsarg
,
4375 struct bfa_fcxp_s
*fcxp
,
4377 bfa_status_t req_status
,
4380 struct fchs_s
*rsp_fchs
);
4381 static void bfa_fcs_lport_scn_send_ls_acc(struct bfa_fcs_lport_s
*port
,
4382 struct fchs_s
*rx_fchs
);
4383 static void bfa_fcs_lport_scn_timeout(void *arg
);
4386 * fcs_scm_sm FCS SCN state machine
4390 * VPort SCN State Machine events
4392 enum port_scn_event
{
4393 SCNSM_EVENT_PORT_ONLINE
= 1,
4394 SCNSM_EVENT_PORT_OFFLINE
= 2,
4395 SCNSM_EVENT_RSP_OK
= 3,
4396 SCNSM_EVENT_RSP_ERROR
= 4,
4397 SCNSM_EVENT_TIMEOUT
= 5,
4398 SCNSM_EVENT_SCR_SENT
= 6,
4401 static void bfa_fcs_lport_scn_sm_offline(struct bfa_fcs_lport_scn_s
*scn
,
4402 enum port_scn_event event
);
4403 static void bfa_fcs_lport_scn_sm_sending_scr(
4404 struct bfa_fcs_lport_scn_s
*scn
,
4405 enum port_scn_event event
);
4406 static void bfa_fcs_lport_scn_sm_scr(struct bfa_fcs_lport_scn_s
*scn
,
4407 enum port_scn_event event
);
4408 static void bfa_fcs_lport_scn_sm_scr_retry(struct bfa_fcs_lport_scn_s
*scn
,
4409 enum port_scn_event event
);
4410 static void bfa_fcs_lport_scn_sm_online(struct bfa_fcs_lport_scn_s
*scn
,
4411 enum port_scn_event event
);
4414 * Starting state - awaiting link up.
4417 bfa_fcs_lport_scn_sm_offline(struct bfa_fcs_lport_scn_s
*scn
,
4418 enum port_scn_event event
)
4421 case SCNSM_EVENT_PORT_ONLINE
:
4422 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_sending_scr
);
4423 bfa_fcs_lport_scn_send_scr(scn
, NULL
);
4426 case SCNSM_EVENT_PORT_OFFLINE
:
4430 bfa_sm_fault(scn
->port
->fcs
, event
);
4435 bfa_fcs_lport_scn_sm_sending_scr(struct bfa_fcs_lport_scn_s
*scn
,
4436 enum port_scn_event event
)
4439 case SCNSM_EVENT_SCR_SENT
:
4440 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_scr
);
4443 case SCNSM_EVENT_PORT_OFFLINE
:
4444 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
4445 bfa_fcxp_walloc_cancel(scn
->port
->fcs
->bfa
, &scn
->fcxp_wqe
);
4449 bfa_sm_fault(scn
->port
->fcs
, event
);
4454 bfa_fcs_lport_scn_sm_scr(struct bfa_fcs_lport_scn_s
*scn
,
4455 enum port_scn_event event
)
4457 struct bfa_fcs_lport_s
*port
= scn
->port
;
4460 case SCNSM_EVENT_RSP_OK
:
4461 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_online
);
4464 case SCNSM_EVENT_RSP_ERROR
:
4465 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_scr_retry
);
4466 bfa_timer_start(port
->fcs
->bfa
, &scn
->timer
,
4467 bfa_fcs_lport_scn_timeout
, scn
,
4468 BFA_FCS_RETRY_TIMEOUT
);
4471 case SCNSM_EVENT_PORT_OFFLINE
:
4472 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
4473 bfa_fcxp_discard(scn
->fcxp
);
4477 bfa_sm_fault(port
->fcs
, event
);
4482 bfa_fcs_lport_scn_sm_scr_retry(struct bfa_fcs_lport_scn_s
*scn
,
4483 enum port_scn_event event
)
4486 case SCNSM_EVENT_TIMEOUT
:
4487 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_sending_scr
);
4488 bfa_fcs_lport_scn_send_scr(scn
, NULL
);
4491 case SCNSM_EVENT_PORT_OFFLINE
:
4492 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
4493 bfa_timer_stop(&scn
->timer
);
4497 bfa_sm_fault(scn
->port
->fcs
, event
);
4502 bfa_fcs_lport_scn_sm_online(struct bfa_fcs_lport_scn_s
*scn
,
4503 enum port_scn_event event
)
4506 case SCNSM_EVENT_PORT_OFFLINE
:
4507 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
4511 bfa_sm_fault(scn
->port
->fcs
, event
);
4518 * fcs_scn_private FCS SCN private functions
4522 * This routine will be called to send a SCR command.
4525 bfa_fcs_lport_scn_send_scr(void *scn_cbarg
, struct bfa_fcxp_s
*fcxp_alloced
)
4527 struct bfa_fcs_lport_scn_s
*scn
= scn_cbarg
;
4528 struct bfa_fcs_lport_s
*port
= scn
->port
;
4531 struct bfa_fcxp_s
*fcxp
;
4533 bfa_trc(port
->fcs
, port
->pid
);
4534 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4536 fcxp
= fcxp_alloced
? fcxp_alloced
: bfa_fcs_fcxp_alloc(port
->fcs
);
4538 bfa_fcs_fcxp_alloc_wait(port
->fcs
->bfa
, &scn
->fcxp_wqe
,
4539 bfa_fcs_lport_scn_send_scr
, scn
);
4544 /* Handle VU registrations for Base port only */
4545 if ((!port
->vport
) && bfa_ioc_get_fcmode(&port
->fcs
->bfa
->ioc
)) {
4546 len
= fc_scr_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4547 port
->fabric
->lps
->brcd_switch
,
4550 len
= fc_scr_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4555 bfa_fcxp_send(fcxp
, NULL
, port
->fabric
->vf_id
, port
->lp_tag
, BFA_FALSE
,
4556 FC_CLASS_3
, len
, &fchs
,
4557 bfa_fcs_lport_scn_scr_response
,
4558 (void *)scn
, FC_MAX_PDUSZ
, FC_ELS_TOV
);
4560 bfa_sm_send_event(scn
, SCNSM_EVENT_SCR_SENT
);
4564 bfa_fcs_lport_scn_scr_response(void *fcsarg
, struct bfa_fcxp_s
*fcxp
,
4565 void *cbarg
, bfa_status_t req_status
, u32 rsp_len
,
4566 u32 resid_len
, struct fchs_s
*rsp_fchs
)
4568 struct bfa_fcs_lport_scn_s
*scn
= (struct bfa_fcs_lport_scn_s
*) cbarg
;
4569 struct bfa_fcs_lport_s
*port
= scn
->port
;
4570 struct fc_els_cmd_s
*els_cmd
;
4571 struct fc_ls_rjt_s
*ls_rjt
;
4573 bfa_trc(port
->fcs
, port
->port_cfg
.pwwn
);
4578 if (req_status
!= BFA_STATUS_OK
) {
4579 bfa_trc(port
->fcs
, req_status
);
4580 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_ERROR
);
4584 els_cmd
= (struct fc_els_cmd_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4586 switch (els_cmd
->els_code
) {
4589 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_OK
);
4594 ls_rjt
= (struct fc_ls_rjt_s
*) BFA_FCXP_RSP_PLD(fcxp
);
4596 bfa_trc(port
->fcs
, ls_rjt
->reason_code
);
4597 bfa_trc(port
->fcs
, ls_rjt
->reason_code_expl
);
4599 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_ERROR
);
4603 bfa_sm_send_event(scn
, SCNSM_EVENT_RSP_ERROR
);
4611 bfa_fcs_lport_scn_send_ls_acc(struct bfa_fcs_lport_s
*port
,
4612 struct fchs_s
*rx_fchs
)
4615 struct bfa_fcxp_s
*fcxp
;
4616 struct bfa_rport_s
*bfa_rport
= NULL
;
4619 bfa_trc(port
->fcs
, rx_fchs
->s_id
);
4621 fcxp
= bfa_fcs_fcxp_alloc(port
->fcs
);
4625 len
= fc_ls_acc_build(&fchs
, bfa_fcxp_get_reqbuf(fcxp
),
4626 rx_fchs
->s_id
, bfa_fcs_lport_get_fcid(port
),
4629 bfa_fcxp_send(fcxp
, bfa_rport
, port
->fabric
->vf_id
, port
->lp_tag
,
4630 BFA_FALSE
, FC_CLASS_3
, len
, &fchs
, NULL
, NULL
,
4635 * This routine will be called by bfa_timer on timer timeouts.
4637 * param[in] vport - pointer to bfa_fcs_lport_t.
4638 * param[out] vport_status - pointer to return vport status in
4643 * Special Considerations:
4648 bfa_fcs_lport_scn_timeout(void *arg
)
4650 struct bfa_fcs_lport_scn_s
*scn
= (struct bfa_fcs_lport_scn_s
*) arg
;
4652 bfa_sm_send_event(scn
, SCNSM_EVENT_TIMEOUT
);
4658 * fcs_scn_public FCS state change notification public interfaces
4662 * Functions called by port/fab
4665 bfa_fcs_lport_scn_init(struct bfa_fcs_lport_s
*port
)
4667 struct bfa_fcs_lport_scn_s
*scn
= BFA_FCS_GET_SCN_FROM_PORT(port
);
4670 bfa_sm_set_state(scn
, bfa_fcs_lport_scn_sm_offline
);
4674 bfa_fcs_lport_scn_offline(struct bfa_fcs_lport_s
*port
)
4676 struct bfa_fcs_lport_scn_s
*scn
= BFA_FCS_GET_SCN_FROM_PORT(port
);
4679 bfa_sm_send_event(scn
, SCNSM_EVENT_PORT_OFFLINE
);
4683 bfa_fcs_lport_scn_online(struct bfa_fcs_lport_s
*port
)
4685 struct bfa_fcs_lport_scn_s
*scn
= BFA_FCS_GET_SCN_FROM_PORT(port
);
4688 bfa_sm_send_event(scn
, SCNSM_EVENT_PORT_ONLINE
);
4692 bfa_fcs_lport_scn_portid_rscn(struct bfa_fcs_lport_s
*port
, u32 rpid
)
4694 struct bfa_fcs_rport_s
*rport
;
4696 bfa_trc(port
->fcs
, rpid
);
4699 * If this is an unknown device, then it just came online.
4700 * Otherwise let rport handle the RSCN event.
4702 rport
= bfa_fcs_lport_get_rport_by_pid(port
, rpid
);
4703 if (rport
== NULL
) {
4705 * If min cfg mode is enabled, we donot need to
4706 * discover any new rports.
4708 if (!__fcs_min_cfg(port
->fcs
))
4709 rport
= bfa_fcs_rport_create(port
, rpid
);
4711 bfa_fcs_rport_scn(rport
);
4715 * rscn format based PID comparison
4717 #define __fc_pid_match(__c0, __c1, __fmt) \
4718 (((__fmt) == FC_RSCN_FORMAT_FABRIC) || \
4719 (((__fmt) == FC_RSCN_FORMAT_DOMAIN) && \
4720 ((__c0)[0] == (__c1)[0])) || \
4721 (((__fmt) == FC_RSCN_FORMAT_AREA) && \
4722 ((__c0)[0] == (__c1)[0]) && \
4723 ((__c0)[1] == (__c1)[1])))
4726 bfa_fcs_lport_scn_multiport_rscn(struct bfa_fcs_lport_s
*port
,
4727 enum fc_rscn_format format
,
4730 struct bfa_fcs_rport_s
*rport
;
4731 struct list_head
*qe
, *qe_next
;
4734 bfa_trc(port
->fcs
, format
);
4735 bfa_trc(port
->fcs
, rscn_pid
);
4737 c0
= (u8
*) &rscn_pid
;
4739 list_for_each_safe(qe
, qe_next
, &port
->rport_q
) {
4740 rport
= (struct bfa_fcs_rport_s
*) qe
;
4741 c1
= (u8
*) &rport
->pid
;
4742 if (__fc_pid_match(c0
, c1
, format
))
4743 bfa_fcs_rport_scn(rport
);
4749 bfa_fcs_lport_scn_process_rscn(struct bfa_fcs_lport_s
*port
,
4750 struct fchs_s
*fchs
, u32 len
)
4752 struct fc_rscn_pl_s
*rscn
= (struct fc_rscn_pl_s
*) (fchs
+ 1);
4755 bfa_boolean_t nsquery
= BFA_FALSE
, found
;
4759 (be16_to_cpu(rscn
->payldlen
) -
4760 sizeof(u32
)) / sizeof(rscn
->event
[0]);
4762 bfa_trc(port
->fcs
, num_entries
);
4764 port
->stats
.num_rscn
++;
4766 bfa_fcs_lport_scn_send_ls_acc(port
, fchs
);
4768 for (i
= 0; i
< num_entries
; i
++) {
4769 rscn_pid
= rscn
->event
[i
].portid
;
4771 bfa_trc(port
->fcs
, rscn
->event
[i
].format
);
4772 bfa_trc(port
->fcs
, rscn_pid
);
4774 /* check for duplicate entries in the list */
4776 for (j
= 0; j
< i
; j
++) {
4777 if (rscn
->event
[j
].portid
== rscn_pid
) {
4783 /* if found in down the list, pid has been already processed */
4785 bfa_trc(port
->fcs
, rscn_pid
);
4789 switch (rscn
->event
[i
].format
) {
4790 case FC_RSCN_FORMAT_PORTID
:
4791 if (rscn
->event
[i
].qualifier
== FC_QOS_RSCN_EVENT
) {
4793 * Ignore this event.
4794 * f/w would have processed it
4796 bfa_trc(port
->fcs
, rscn_pid
);
4798 port
->stats
.num_portid_rscn
++;
4799 bfa_fcs_lport_scn_portid_rscn(port
, rscn_pid
);
4803 case FC_RSCN_FORMAT_FABRIC
:
4804 if (rscn
->event
[i
].qualifier
==
4805 FC_FABRIC_NAME_RSCN_EVENT
) {
4806 bfa_fcs_lport_ms_fabric_rscn(port
);
4809 /* !!!!!!!!! Fall Through !!!!!!!!!!!!! */
4811 case FC_RSCN_FORMAT_AREA
:
4812 case FC_RSCN_FORMAT_DOMAIN
:
4814 bfa_fcs_lport_scn_multiport_rscn(port
,
4815 rscn
->event
[i
].format
,
4827 * If any of area, domain or fabric RSCN is received, do a fresh
4828 * discovery to find new devices.
4831 bfa_fcs_lport_ns_query(port
);
4838 * fcs_port_api BFA FCS port API
4840 struct bfa_fcs_lport_s
*
4841 bfa_fcs_get_base_port(struct bfa_fcs_s
*fcs
)
4843 return &fcs
->fabric
.bport
;
4847 bfa_fcs_lport_get_rport(struct bfa_fcs_lport_s
*port
, wwn_t wwn
, int index
,
4848 int nrports
, bfa_boolean_t bwwn
)
4850 struct list_head
*qh
, *qe
;
4851 struct bfa_fcs_rport_s
*rport
= NULL
;
4853 struct bfa_fcs_s
*fcs
;
4855 if (port
== NULL
|| nrports
== 0)
4859 bfa_trc(fcs
, (u32
) nrports
);
4862 qh
= &port
->rport_q
;
4863 qe
= bfa_q_first(qh
);
4865 while ((qe
!= qh
) && (i
< nrports
)) {
4866 rport
= (struct bfa_fcs_rport_s
*) qe
;
4867 if (bfa_ntoh3b(rport
->pid
) > 0xFFF000) {
4868 qe
= bfa_q_next(qe
);
4869 bfa_trc(fcs
, (u32
) rport
->pwwn
);
4870 bfa_trc(fcs
, rport
->pid
);
4876 if (!memcmp(&wwn
, &rport
->pwwn
, 8))
4884 qe
= bfa_q_next(qe
);
4895 bfa_fcs_lport_get_rports(struct bfa_fcs_lport_s
*port
,
4896 wwn_t rport_wwns
[], int *nrports
)
4898 struct list_head
*qh
, *qe
;
4899 struct bfa_fcs_rport_s
*rport
= NULL
;
4901 struct bfa_fcs_s
*fcs
;
4903 if (port
== NULL
|| rport_wwns
== NULL
|| *nrports
== 0)
4907 bfa_trc(fcs
, (u32
) *nrports
);
4910 qh
= &port
->rport_q
;
4911 qe
= bfa_q_first(qh
);
4913 while ((qe
!= qh
) && (i
< *nrports
)) {
4914 rport
= (struct bfa_fcs_rport_s
*) qe
;
4915 if (bfa_ntoh3b(rport
->pid
) > 0xFFF000) {
4916 qe
= bfa_q_next(qe
);
4917 bfa_trc(fcs
, (u32
) rport
->pwwn
);
4918 bfa_trc(fcs
, rport
->pid
);
4923 rport_wwns
[i
] = rport
->pwwn
;
4926 qe
= bfa_q_next(qe
);
4934 * Iterate's through all the rport's in the given port to
4935 * determine the maximum operating speed.
4937 * !!!! To be used in TRL Functionality only !!!!
4940 bfa_fcs_lport_get_rport_max_speed(bfa_fcs_lport_t
*port
)
4942 struct list_head
*qh
, *qe
;
4943 struct bfa_fcs_rport_s
*rport
= NULL
;
4944 struct bfa_fcs_s
*fcs
;
4945 bfa_port_speed_t max_speed
= 0;
4946 struct bfa_port_attr_s port_attr
;
4947 bfa_port_speed_t port_speed
, rport_speed
;
4948 bfa_boolean_t trl_enabled
= bfa_fcport_is_ratelim(port
->fcs
->bfa
);
4956 /* Get Physical port's current speed */
4957 bfa_fcport_get_attr(port
->fcs
->bfa
, &port_attr
);
4958 port_speed
= port_attr
.speed
;
4959 bfa_trc(fcs
, port_speed
);
4961 qh
= &port
->rport_q
;
4962 qe
= bfa_q_first(qh
);
4965 rport
= (struct bfa_fcs_rport_s
*) qe
;
4966 if ((bfa_ntoh3b(rport
->pid
) > 0xFFF000) ||
4967 (bfa_fcs_rport_get_state(rport
) == BFA_RPORT_OFFLINE
) ||
4968 (rport
->scsi_function
!= BFA_RPORT_TARGET
)) {
4969 qe
= bfa_q_next(qe
);
4973 rport_speed
= rport
->rpf
.rpsc_speed
;
4974 if ((trl_enabled
) && (rport_speed
==
4975 BFA_PORT_SPEED_UNKNOWN
)) {
4976 /* Use default ratelim speed setting */
4978 bfa_fcport_get_ratelim_speed(port
->fcs
->bfa
);
4981 if (rport_speed
> max_speed
)
4982 max_speed
= rport_speed
;
4984 qe
= bfa_q_next(qe
);
4987 if (max_speed
> port_speed
)
4988 max_speed
= port_speed
;
4990 bfa_trc(fcs
, max_speed
);
4994 struct bfa_fcs_lport_s
*
4995 bfa_fcs_lookup_port(struct bfa_fcs_s
*fcs
, u16 vf_id
, wwn_t lpwwn
)
4997 struct bfa_fcs_vport_s
*vport
;
5000 WARN_ON(fcs
== NULL
);
5002 vf
= bfa_fcs_vf_lookup(fcs
, vf_id
);
5004 bfa_trc(fcs
, vf_id
);
5008 if (!lpwwn
|| (vf
->bport
.port_cfg
.pwwn
== lpwwn
))
5011 vport
= bfa_fcs_fabric_vport_lookup(vf
, lpwwn
);
5013 return &vport
->lport
;
5019 * API corresponding to NPIV_VPORT_GETINFO.
5022 bfa_fcs_lport_get_info(struct bfa_fcs_lport_s
*port
,
5023 struct bfa_lport_info_s
*port_info
)
5026 bfa_trc(port
->fcs
, port
->fabric
->fabric_name
);
5028 if (port
->vport
== NULL
) {
5030 * This is a Physical port
5032 port_info
->port_type
= BFA_LPORT_TYPE_PHYSICAL
;
5035 * @todo : need to fix the state & reason
5037 port_info
->port_state
= 0;
5038 port_info
->offline_reason
= 0;
5040 port_info
->port_wwn
= bfa_fcs_lport_get_pwwn(port
);
5041 port_info
->node_wwn
= bfa_fcs_lport_get_nwwn(port
);
5043 port_info
->max_vports_supp
=
5044 bfa_lps_get_max_vport(port
->fcs
->bfa
);
5045 port_info
->num_vports_inuse
=
5046 port
->fabric
->num_vports
;
5047 port_info
->max_rports_supp
= BFA_FCS_MAX_RPORTS_SUPP
;
5048 port_info
->num_rports_inuse
= port
->num_rports
;
5051 * This is a virtual port
5053 port_info
->port_type
= BFA_LPORT_TYPE_VIRTUAL
;
5056 * @todo : need to fix the state & reason
5058 port_info
->port_state
= 0;
5059 port_info
->offline_reason
= 0;
5061 port_info
->port_wwn
= bfa_fcs_lport_get_pwwn(port
);
5062 port_info
->node_wwn
= bfa_fcs_lport_get_nwwn(port
);
5067 bfa_fcs_lport_get_stats(struct bfa_fcs_lport_s
*fcs_port
,
5068 struct bfa_lport_stats_s
*port_stats
)
5070 *port_stats
= fcs_port
->stats
;
5074 bfa_fcs_lport_clear_stats(struct bfa_fcs_lport_s
*fcs_port
)
5076 memset(&fcs_port
->stats
, 0, sizeof(struct bfa_lport_stats_s
));
5080 * FCS virtual port state machine
5083 #define __vport_fcs(__vp) ((__vp)->lport.fcs)
5084 #define __vport_pwwn(__vp) ((__vp)->lport.port_cfg.pwwn)
5085 #define __vport_nwwn(__vp) ((__vp)->lport.port_cfg.nwwn)
5086 #define __vport_bfa(__vp) ((__vp)->lport.fcs->bfa)
5087 #define __vport_fcid(__vp) ((__vp)->lport.pid)
5088 #define __vport_fabric(__vp) ((__vp)->lport.fabric)
5089 #define __vport_vfid(__vp) ((__vp)->lport.fabric->vf_id)
5091 #define BFA_FCS_VPORT_MAX_RETRIES 5
5093 * Forward declarations
5095 static void bfa_fcs_vport_do_fdisc(struct bfa_fcs_vport_s
*vport
);
5096 static void bfa_fcs_vport_timeout(void *vport_arg
);
5097 static void bfa_fcs_vport_do_logo(struct bfa_fcs_vport_s
*vport
);
5098 static void bfa_fcs_vport_free(struct bfa_fcs_vport_s
*vport
);
5101 * fcs_vport_sm FCS virtual port state machine
5105 * VPort State Machine events
5107 enum bfa_fcs_vport_event
{
5108 BFA_FCS_VPORT_SM_CREATE
= 1, /* vport create event */
5109 BFA_FCS_VPORT_SM_DELETE
= 2, /* vport delete event */
5110 BFA_FCS_VPORT_SM_START
= 3, /* vport start request */
5111 BFA_FCS_VPORT_SM_STOP
= 4, /* stop: unsupported */
5112 BFA_FCS_VPORT_SM_ONLINE
= 5, /* fabric online */
5113 BFA_FCS_VPORT_SM_OFFLINE
= 6, /* fabric offline event */
5114 BFA_FCS_VPORT_SM_FRMSENT
= 7, /* fdisc/logo sent events */
5115 BFA_FCS_VPORT_SM_RSP_OK
= 8, /* good response */
5116 BFA_FCS_VPORT_SM_RSP_ERROR
= 9, /* error/bad response */
5117 BFA_FCS_VPORT_SM_TIMEOUT
= 10, /* delay timer event */
5118 BFA_FCS_VPORT_SM_DELCOMP
= 11, /* lport delete completion */
5119 BFA_FCS_VPORT_SM_RSP_DUP_WWN
= 12, /* Dup wnn error*/
5120 BFA_FCS_VPORT_SM_RSP_FAILED
= 13, /* non-retryable failure */
5121 BFA_FCS_VPORT_SM_STOPCOMP
= 14, /* vport delete completion */
5124 static void bfa_fcs_vport_sm_uninit(struct bfa_fcs_vport_s
*vport
,
5125 enum bfa_fcs_vport_event event
);
5126 static void bfa_fcs_vport_sm_created(struct bfa_fcs_vport_s
*vport
,
5127 enum bfa_fcs_vport_event event
);
5128 static void bfa_fcs_vport_sm_offline(struct bfa_fcs_vport_s
*vport
,
5129 enum bfa_fcs_vport_event event
);
5130 static void bfa_fcs_vport_sm_fdisc(struct bfa_fcs_vport_s
*vport
,
5131 enum bfa_fcs_vport_event event
);
5132 static void bfa_fcs_vport_sm_fdisc_retry(struct bfa_fcs_vport_s
*vport
,
5133 enum bfa_fcs_vport_event event
);
5134 static void bfa_fcs_vport_sm_fdisc_rsp_wait(struct bfa_fcs_vport_s
*vport
,
5135 enum bfa_fcs_vport_event event
);
5136 static void bfa_fcs_vport_sm_online(struct bfa_fcs_vport_s
*vport
,
5137 enum bfa_fcs_vport_event event
);
5138 static void bfa_fcs_vport_sm_deleting(struct bfa_fcs_vport_s
*vport
,
5139 enum bfa_fcs_vport_event event
);
5140 static void bfa_fcs_vport_sm_cleanup(struct bfa_fcs_vport_s
*vport
,
5141 enum bfa_fcs_vport_event event
);
5142 static void bfa_fcs_vport_sm_logo(struct bfa_fcs_vport_s
*vport
,
5143 enum bfa_fcs_vport_event event
);
5144 static void bfa_fcs_vport_sm_error(struct bfa_fcs_vport_s
*vport
,
5145 enum bfa_fcs_vport_event event
);
5146 static void bfa_fcs_vport_sm_stopping(struct bfa_fcs_vport_s
*vport
,
5147 enum bfa_fcs_vport_event event
);
5148 static void bfa_fcs_vport_sm_logo_for_stop(struct bfa_fcs_vport_s
*vport
,
5149 enum bfa_fcs_vport_event event
);
5151 static struct bfa_sm_table_s vport_sm_table
[] = {
5152 {BFA_SM(bfa_fcs_vport_sm_uninit
), BFA_FCS_VPORT_UNINIT
},
5153 {BFA_SM(bfa_fcs_vport_sm_created
), BFA_FCS_VPORT_CREATED
},
5154 {BFA_SM(bfa_fcs_vport_sm_offline
), BFA_FCS_VPORT_OFFLINE
},
5155 {BFA_SM(bfa_fcs_vport_sm_fdisc
), BFA_FCS_VPORT_FDISC
},
5156 {BFA_SM(bfa_fcs_vport_sm_fdisc_retry
), BFA_FCS_VPORT_FDISC_RETRY
},
5157 {BFA_SM(bfa_fcs_vport_sm_fdisc_rsp_wait
), BFA_FCS_VPORT_FDISC_RSP_WAIT
},
5158 {BFA_SM(bfa_fcs_vport_sm_online
), BFA_FCS_VPORT_ONLINE
},
5159 {BFA_SM(bfa_fcs_vport_sm_deleting
), BFA_FCS_VPORT_DELETING
},
5160 {BFA_SM(bfa_fcs_vport_sm_cleanup
), BFA_FCS_VPORT_CLEANUP
},
5161 {BFA_SM(bfa_fcs_vport_sm_logo
), BFA_FCS_VPORT_LOGO
},
5162 {BFA_SM(bfa_fcs_vport_sm_error
), BFA_FCS_VPORT_ERROR
}
5169 bfa_fcs_vport_sm_uninit(struct bfa_fcs_vport_s
*vport
,
5170 enum bfa_fcs_vport_event event
)
5172 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5173 bfa_trc(__vport_fcs(vport
), event
);
5176 case BFA_FCS_VPORT_SM_CREATE
:
5177 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
5178 bfa_fcs_fabric_addvport(__vport_fabric(vport
), vport
);
5182 bfa_sm_fault(__vport_fcs(vport
), event
);
5187 * Created state - a start event is required to start up the state machine.
5190 bfa_fcs_vport_sm_created(struct bfa_fcs_vport_s
*vport
,
5191 enum bfa_fcs_vport_event event
)
5193 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5194 bfa_trc(__vport_fcs(vport
), event
);
5197 case BFA_FCS_VPORT_SM_START
:
5198 if (bfa_sm_cmp_state(__vport_fabric(vport
),
5199 bfa_fcs_fabric_sm_online
)
5200 && bfa_fcs_fabric_npiv_capable(__vport_fabric(vport
))) {
5201 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
5202 bfa_fcs_vport_do_fdisc(vport
);
5205 * Fabric is offline or not NPIV capable, stay in
5208 vport
->vport_stats
.fab_no_npiv
++;
5209 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
5213 case BFA_FCS_VPORT_SM_DELETE
:
5214 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5215 bfa_fcs_lport_delete(&vport
->lport
);
5218 case BFA_FCS_VPORT_SM_ONLINE
:
5219 case BFA_FCS_VPORT_SM_OFFLINE
:
5221 * Ignore ONLINE/OFFLINE events from fabric
5222 * till vport is started.
5227 bfa_sm_fault(__vport_fcs(vport
), event
);
5232 * Offline state - awaiting ONLINE event from fabric SM.
5235 bfa_fcs_vport_sm_offline(struct bfa_fcs_vport_s
*vport
,
5236 enum bfa_fcs_vport_event event
)
5238 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5239 bfa_trc(__vport_fcs(vport
), event
);
5242 case BFA_FCS_VPORT_SM_DELETE
:
5243 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5244 bfa_fcs_lport_delete(&vport
->lport
);
5247 case BFA_FCS_VPORT_SM_ONLINE
:
5248 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
5249 vport
->fdisc_retries
= 0;
5250 bfa_fcs_vport_do_fdisc(vport
);
5253 case BFA_FCS_VPORT_SM_STOP
:
5254 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5255 bfa_sm_send_event(&vport
->lport
, BFA_FCS_PORT_SM_STOP
);
5258 case BFA_FCS_VPORT_SM_OFFLINE
:
5260 * This can happen if the vport couldn't be initialzied
5261 * due the fact that the npiv was not enabled on the switch.
5262 * In that case we will put the vport in offline state.
5263 * However, the link can go down and cause the this event to
5264 * be sent when we are already offline. Ignore it.
5269 bfa_sm_fault(__vport_fcs(vport
), event
);
5275 * FDISC is sent and awaiting reply from fabric.
5278 bfa_fcs_vport_sm_fdisc(struct bfa_fcs_vport_s
*vport
,
5279 enum bfa_fcs_vport_event event
)
5281 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5282 bfa_trc(__vport_fcs(vport
), event
);
5285 case BFA_FCS_VPORT_SM_DELETE
:
5286 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc_rsp_wait
);
5289 case BFA_FCS_VPORT_SM_OFFLINE
:
5290 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
5291 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
5294 case BFA_FCS_VPORT_SM_RSP_OK
:
5295 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_online
);
5296 bfa_fcs_lport_online(&vport
->lport
);
5299 case BFA_FCS_VPORT_SM_RSP_ERROR
:
5300 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc_retry
);
5301 bfa_timer_start(__vport_bfa(vport
), &vport
->timer
,
5302 bfa_fcs_vport_timeout
, vport
,
5303 BFA_FCS_RETRY_TIMEOUT
);
5306 case BFA_FCS_VPORT_SM_RSP_FAILED
:
5307 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
5310 case BFA_FCS_VPORT_SM_RSP_DUP_WWN
:
5311 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_error
);
5315 bfa_sm_fault(__vport_fcs(vport
), event
);
5320 * FDISC attempt failed - a timer is active to retry FDISC.
5323 bfa_fcs_vport_sm_fdisc_retry(struct bfa_fcs_vport_s
*vport
,
5324 enum bfa_fcs_vport_event event
)
5326 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5327 bfa_trc(__vport_fcs(vport
), event
);
5330 case BFA_FCS_VPORT_SM_DELETE
:
5331 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5332 bfa_timer_stop(&vport
->timer
);
5333 bfa_fcs_lport_delete(&vport
->lport
);
5336 case BFA_FCS_VPORT_SM_OFFLINE
:
5337 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
5338 bfa_timer_stop(&vport
->timer
);
5341 case BFA_FCS_VPORT_SM_TIMEOUT
:
5342 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
5343 vport
->vport_stats
.fdisc_retries
++;
5344 vport
->fdisc_retries
++;
5345 bfa_fcs_vport_do_fdisc(vport
);
5349 bfa_sm_fault(__vport_fcs(vport
), event
);
5354 * FDISC is in progress and we got a vport delete request -
5355 * this is a wait state while we wait for fdisc response and
5356 * we will transition to the appropriate state - on rsp status.
5359 bfa_fcs_vport_sm_fdisc_rsp_wait(struct bfa_fcs_vport_s
*vport
,
5360 enum bfa_fcs_vport_event event
)
5362 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5363 bfa_trc(__vport_fcs(vport
), event
);
5366 case BFA_FCS_VPORT_SM_RSP_OK
:
5367 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_deleting
);
5368 bfa_fcs_lport_delete(&vport
->lport
);
5371 case BFA_FCS_VPORT_SM_DELETE
:
5374 case BFA_FCS_VPORT_SM_OFFLINE
:
5375 case BFA_FCS_VPORT_SM_RSP_ERROR
:
5376 case BFA_FCS_VPORT_SM_RSP_FAILED
:
5377 case BFA_FCS_VPORT_SM_RSP_DUP_WWN
:
5378 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5379 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
5380 bfa_fcs_lport_delete(&vport
->lport
);
5384 bfa_sm_fault(__vport_fcs(vport
), event
);
5389 * Vport is online (FDISC is complete).
5392 bfa_fcs_vport_sm_online(struct bfa_fcs_vport_s
*vport
,
5393 enum bfa_fcs_vport_event event
)
5395 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5396 bfa_trc(__vport_fcs(vport
), event
);
5399 case BFA_FCS_VPORT_SM_DELETE
:
5400 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_deleting
);
5401 bfa_fcs_lport_delete(&vport
->lport
);
5404 case BFA_FCS_VPORT_SM_STOP
:
5405 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_stopping
);
5406 bfa_sm_send_event(&vport
->lport
, BFA_FCS_PORT_SM_STOP
);
5409 case BFA_FCS_VPORT_SM_OFFLINE
:
5410 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
5411 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
5412 bfa_fcs_lport_offline(&vport
->lport
);
5416 bfa_sm_fault(__vport_fcs(vport
), event
);
5421 * Vport is being stopped - awaiting lport stop completion to send
5425 bfa_fcs_vport_sm_stopping(struct bfa_fcs_vport_s
*vport
,
5426 enum bfa_fcs_vport_event event
)
5428 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5429 bfa_trc(__vport_fcs(vport
), event
);
5432 case BFA_FCS_VPORT_SM_STOPCOMP
:
5433 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_logo_for_stop
);
5434 bfa_fcs_vport_do_logo(vport
);
5437 case BFA_FCS_VPORT_SM_OFFLINE
:
5438 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5442 bfa_sm_fault(__vport_fcs(vport
), event
);
5447 * Vport is being deleted - awaiting lport delete completion to send
5451 bfa_fcs_vport_sm_deleting(struct bfa_fcs_vport_s
*vport
,
5452 enum bfa_fcs_vport_event event
)
5454 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5455 bfa_trc(__vport_fcs(vport
), event
);
5458 case BFA_FCS_VPORT_SM_DELETE
:
5461 case BFA_FCS_VPORT_SM_DELCOMP
:
5462 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_logo
);
5463 bfa_fcs_vport_do_logo(vport
);
5466 case BFA_FCS_VPORT_SM_OFFLINE
:
5467 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5471 bfa_sm_fault(__vport_fcs(vport
), event
);
5477 * This state will be set when the Vport Creation fails due
5478 * to errors like Dup WWN. In this state only operation allowed
5479 * is a Vport Delete.
5482 bfa_fcs_vport_sm_error(struct bfa_fcs_vport_s
*vport
,
5483 enum bfa_fcs_vport_event event
)
5485 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5486 bfa_trc(__vport_fcs(vport
), event
);
5489 case BFA_FCS_VPORT_SM_DELETE
:
5490 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
5491 bfa_fcs_lport_delete(&vport
->lport
);
5495 bfa_trc(__vport_fcs(vport
), event
);
5500 * Lport cleanup is in progress since vport is being deleted. Fabric is
5501 * offline, so no LOGO is needed to complete vport deletion.
5504 bfa_fcs_vport_sm_cleanup(struct bfa_fcs_vport_s
*vport
,
5505 enum bfa_fcs_vport_event event
)
5507 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5508 bfa_trc(__vport_fcs(vport
), event
);
5511 case BFA_FCS_VPORT_SM_DELCOMP
:
5512 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
5513 bfa_fcs_vport_free(vport
);
5516 case BFA_FCS_VPORT_SM_STOPCOMP
:
5517 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
5520 case BFA_FCS_VPORT_SM_DELETE
:
5524 bfa_sm_fault(__vport_fcs(vport
), event
);
5529 * LOGO is sent to fabric. Vport stop is in progress. Lport stop cleanup
5533 bfa_fcs_vport_sm_logo_for_stop(struct bfa_fcs_vport_s
*vport
,
5534 enum bfa_fcs_vport_event event
)
5536 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5537 bfa_trc(__vport_fcs(vport
), event
);
5540 case BFA_FCS_VPORT_SM_OFFLINE
:
5541 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
5543 * !!! fall through !!!
5546 case BFA_FCS_VPORT_SM_RSP_OK
:
5547 case BFA_FCS_VPORT_SM_RSP_ERROR
:
5548 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
5552 bfa_sm_fault(__vport_fcs(vport
), event
);
5557 * LOGO is sent to fabric. Vport delete is in progress. Lport delete cleanup
5561 bfa_fcs_vport_sm_logo(struct bfa_fcs_vport_s
*vport
,
5562 enum bfa_fcs_vport_event event
)
5564 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5565 bfa_trc(__vport_fcs(vport
), event
);
5568 case BFA_FCS_VPORT_SM_OFFLINE
:
5569 bfa_sm_send_event(vport
->lps
, BFA_LPS_SM_OFFLINE
);
5571 * !!! fall through !!!
5574 case BFA_FCS_VPORT_SM_RSP_OK
:
5575 case BFA_FCS_VPORT_SM_RSP_ERROR
:
5576 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
5577 bfa_fcs_vport_free(vport
);
5580 case BFA_FCS_VPORT_SM_DELETE
:
5584 bfa_sm_fault(__vport_fcs(vport
), event
);
5591 * fcs_vport_private FCS virtual port private functions
5594 * Send AEN notification
5597 bfa_fcs_vport_aen_post(struct bfa_fcs_lport_s
*port
,
5598 enum bfa_lport_aen_event event
)
5600 struct bfad_s
*bfad
= (struct bfad_s
*)port
->fabric
->fcs
->bfad
;
5601 struct bfa_aen_entry_s
*aen_entry
;
5603 bfad_get_aen_entry(bfad
, aen_entry
);
5607 aen_entry
->aen_data
.lport
.vf_id
= port
->fabric
->vf_id
;
5608 aen_entry
->aen_data
.lport
.roles
= port
->port_cfg
.roles
;
5609 aen_entry
->aen_data
.lport
.ppwwn
= bfa_fcs_lport_get_pwwn(
5610 bfa_fcs_get_base_port(port
->fcs
));
5611 aen_entry
->aen_data
.lport
.lpwwn
= bfa_fcs_lport_get_pwwn(port
);
5613 /* Send the AEN notification */
5614 bfad_im_post_vendor_event(aen_entry
, bfad
, ++port
->fcs
->fcs_aen_seq
,
5615 BFA_AEN_CAT_LPORT
, event
);
5619 * This routine will be called to send a FDISC command.
5622 bfa_fcs_vport_do_fdisc(struct bfa_fcs_vport_s
*vport
)
5624 bfa_lps_fdisc(vport
->lps
, vport
,
5625 bfa_fcport_get_maxfrsize(__vport_bfa(vport
)),
5626 __vport_pwwn(vport
), __vport_nwwn(vport
));
5627 vport
->vport_stats
.fdisc_sent
++;
5631 bfa_fcs_vport_fdisc_rejected(struct bfa_fcs_vport_s
*vport
)
5633 u8 lsrjt_rsn
= vport
->lps
->lsrjt_rsn
;
5634 u8 lsrjt_expl
= vport
->lps
->lsrjt_expl
;
5636 bfa_trc(__vport_fcs(vport
), lsrjt_rsn
);
5637 bfa_trc(__vport_fcs(vport
), lsrjt_expl
);
5639 /* For certain reason codes, we don't want to retry. */
5640 switch (vport
->lps
->lsrjt_expl
) {
5641 case FC_LS_RJT_EXP_INV_PORT_NAME
: /* by brocade */
5642 case FC_LS_RJT_EXP_INVALID_NPORT_ID
: /* by Cisco */
5643 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
5644 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
5646 bfa_fcs_vport_aen_post(&vport
->lport
,
5647 BFA_LPORT_AEN_NPIV_DUP_WWN
);
5648 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_DUP_WWN
);
5652 case FC_LS_RJT_EXP_INSUFF_RES
:
5654 * This means max logins per port/switch setting on the
5655 * switch was exceeded.
5657 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
5658 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
5660 bfa_fcs_vport_aen_post(&vport
->lport
,
5661 BFA_LPORT_AEN_NPIV_FABRIC_MAX
);
5662 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_FAILED
);
5667 if (vport
->fdisc_retries
== 0)
5668 bfa_fcs_vport_aen_post(&vport
->lport
,
5669 BFA_LPORT_AEN_NPIV_UNKNOWN
);
5670 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
5675 * Called to send a logout to the fabric. Used when a V-Port is
5679 bfa_fcs_vport_do_logo(struct bfa_fcs_vport_s
*vport
)
5681 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5683 vport
->vport_stats
.logo_sent
++;
5684 bfa_lps_fdisclogo(vport
->lps
);
5689 * This routine will be called by bfa_timer on timer timeouts.
5691 * param[in] vport - pointer to bfa_fcs_vport_t.
5692 * param[out] vport_status - pointer to return vport status in
5697 * Special Considerations:
5702 bfa_fcs_vport_timeout(void *vport_arg
)
5704 struct bfa_fcs_vport_s
*vport
= (struct bfa_fcs_vport_s
*) vport_arg
;
5706 vport
->vport_stats
.fdisc_timeouts
++;
5707 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_TIMEOUT
);
5711 bfa_fcs_vport_free(struct bfa_fcs_vport_s
*vport
)
5713 struct bfad_vport_s
*vport_drv
=
5714 (struct bfad_vport_s
*)vport
->vport_drv
;
5716 bfa_fcs_fabric_delvport(__vport_fabric(vport
), vport
);
5718 if (vport_drv
->comp_del
)
5719 complete(vport_drv
->comp_del
);
5721 bfa_lps_delete(vport
->lps
);
5727 * fcs_vport_public FCS virtual port public interfaces
5731 * Online notification from fabric SM.
5734 bfa_fcs_vport_online(struct bfa_fcs_vport_s
*vport
)
5736 vport
->vport_stats
.fab_online
++;
5737 if (bfa_fcs_fabric_npiv_capable(__vport_fabric(vport
)))
5738 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_ONLINE
);
5740 vport
->vport_stats
.fab_no_npiv
++;
5744 * Offline notification from fabric SM.
5747 bfa_fcs_vport_offline(struct bfa_fcs_vport_s
*vport
)
5749 vport
->vport_stats
.fab_offline
++;
5750 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_OFFLINE
);
5754 * Cleanup notification from fabric SM on link timer expiry.
5757 bfa_fcs_vport_cleanup(struct bfa_fcs_vport_s
*vport
)
5759 vport
->vport_stats
.fab_cleanup
++;
5762 * delete notification from fabric SM. To be invoked from within FCS.
5765 bfa_fcs_vport_fcs_delete(struct bfa_fcs_vport_s
*vport
)
5767 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELETE
);
5771 * Stop completion callback from associated lport
5774 bfa_fcs_vport_stop_comp(struct bfa_fcs_vport_s
*vport
)
5776 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_STOPCOMP
);
5780 * Delete completion callback from associated lport
5783 bfa_fcs_vport_delete_comp(struct bfa_fcs_vport_s
*vport
)
5785 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELCOMP
);
5791 * fcs_vport_api Virtual port API
5795 * Use this function to instantiate a new FCS vport object. This
5796 * function will not trigger any HW initialization process (which will be
5797 * done in vport_start() call)
5799 * param[in] vport - pointer to bfa_fcs_vport_t. This space
5800 * needs to be allocated by the driver.
5801 * param[in] fcs - FCS instance
5802 * param[in] vport_cfg - vport configuration
5803 * param[in] vf_id - VF_ID if vport is created within a VF.
5804 * FC_VF_ID_NULL to specify base fabric.
5805 * param[in] vport_drv - Opaque handle back to the driver's vport
5808 * retval BFA_STATUS_OK - on success.
5809 * retval BFA_STATUS_FAILED - on failure.
5812 bfa_fcs_vport_create(struct bfa_fcs_vport_s
*vport
, struct bfa_fcs_s
*fcs
,
5813 u16 vf_id
, struct bfa_lport_cfg_s
*vport_cfg
,
5814 struct bfad_vport_s
*vport_drv
)
5816 if (vport_cfg
->pwwn
== 0)
5817 return BFA_STATUS_INVALID_WWN
;
5819 if (bfa_fcs_lport_get_pwwn(&fcs
->fabric
.bport
) == vport_cfg
->pwwn
)
5820 return BFA_STATUS_VPORT_WWN_BP
;
5822 if (bfa_fcs_vport_lookup(fcs
, vf_id
, vport_cfg
->pwwn
) != NULL
)
5823 return BFA_STATUS_VPORT_EXISTS
;
5825 if (fcs
->fabric
.num_vports
==
5826 bfa_lps_get_max_vport(fcs
->bfa
))
5827 return BFA_STATUS_VPORT_MAX
;
5829 vport
->lps
= bfa_lps_alloc(fcs
->bfa
);
5831 return BFA_STATUS_VPORT_MAX
;
5833 vport
->vport_drv
= vport_drv
;
5834 vport_cfg
->preboot_vp
= BFA_FALSE
;
5836 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
5837 bfa_fcs_lport_attach(&vport
->lport
, fcs
, vf_id
, vport
);
5838 bfa_fcs_lport_init(&vport
->lport
, vport_cfg
);
5839 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_CREATE
);
5841 return BFA_STATUS_OK
;
5845 * Use this function to instantiate a new FCS PBC vport object. This
5846 * function will not trigger any HW initialization process (which will be
5847 * done in vport_start() call)
5849 * param[in] vport - pointer to bfa_fcs_vport_t. This space
5850 * needs to be allocated by the driver.
5851 * param[in] fcs - FCS instance
5852 * param[in] vport_cfg - vport configuration
5853 * param[in] vf_id - VF_ID if vport is created within a VF.
5854 * FC_VF_ID_NULL to specify base fabric.
5855 * param[in] vport_drv - Opaque handle back to the driver's vport
5858 * retval BFA_STATUS_OK - on success.
5859 * retval BFA_STATUS_FAILED - on failure.
5862 bfa_fcs_pbc_vport_create(struct bfa_fcs_vport_s
*vport
, struct bfa_fcs_s
*fcs
,
5863 u16 vf_id
, struct bfa_lport_cfg_s
*vport_cfg
,
5864 struct bfad_vport_s
*vport_drv
)
5868 rc
= bfa_fcs_vport_create(vport
, fcs
, vf_id
, vport_cfg
, vport_drv
);
5869 vport
->lport
.port_cfg
.preboot_vp
= BFA_TRUE
;
5875 * Use this function to findout if this is a pbc vport or not.
5877 * @param[in] vport - pointer to bfa_fcs_vport_t.
5882 bfa_fcs_is_pbc_vport(struct bfa_fcs_vport_s
*vport
)
5885 if (vport
&& (vport
->lport
.port_cfg
.preboot_vp
== BFA_TRUE
))
5893 * Use this function initialize the vport.
5895 * @param[in] vport - pointer to bfa_fcs_vport_t.
5900 bfa_fcs_vport_start(struct bfa_fcs_vport_s
*vport
)
5902 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_START
);
5904 return BFA_STATUS_OK
;
5908 * Use this function quiese the vport object. This function will return
5909 * immediately, when the vport is actually stopped, the
5910 * bfa_drv_vport_stop_cb() will be called.
5912 * param[in] vport - pointer to bfa_fcs_vport_t.
5917 bfa_fcs_vport_stop(struct bfa_fcs_vport_s
*vport
)
5919 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_STOP
);
5921 return BFA_STATUS_OK
;
5925 * Use this function to delete a vport object. Fabric object should
5926 * be stopped before this function call.
5928 * !!!!!!! Donot invoke this from within FCS !!!!!!!
5930 * param[in] vport - pointer to bfa_fcs_vport_t.
5935 bfa_fcs_vport_delete(struct bfa_fcs_vport_s
*vport
)
5938 if (vport
->lport
.port_cfg
.preboot_vp
)
5939 return BFA_STATUS_PBC
;
5941 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELETE
);
5943 return BFA_STATUS_OK
;
5947 * Use this function to get vport's current status info.
5949 * param[in] vport pointer to bfa_fcs_vport_t.
5950 * param[out] attr pointer to return vport attributes
5955 bfa_fcs_vport_get_attr(struct bfa_fcs_vport_s
*vport
,
5956 struct bfa_vport_attr_s
*attr
)
5958 if (vport
== NULL
|| attr
== NULL
)
5961 memset(attr
, 0, sizeof(struct bfa_vport_attr_s
));
5963 bfa_fcs_lport_get_attr(&vport
->lport
, &attr
->port_attr
);
5964 attr
->vport_state
= bfa_sm_to_state(vport_sm_table
, vport
->sm
);
5969 * Lookup a virtual port. Excludes base port from lookup.
5971 struct bfa_fcs_vport_s
*
5972 bfa_fcs_vport_lookup(struct bfa_fcs_s
*fcs
, u16 vf_id
, wwn_t vpwwn
)
5974 struct bfa_fcs_vport_s
*vport
;
5975 struct bfa_fcs_fabric_s
*fabric
;
5977 bfa_trc(fcs
, vf_id
);
5978 bfa_trc(fcs
, vpwwn
);
5980 fabric
= bfa_fcs_vf_lookup(fcs
, vf_id
);
5982 bfa_trc(fcs
, vf_id
);
5986 vport
= bfa_fcs_fabric_vport_lookup(fabric
, vpwwn
);
5994 bfa_cb_lps_fdisc_comp(void *bfad
, void *uarg
, bfa_status_t status
)
5996 struct bfa_fcs_vport_s
*vport
= uarg
;
5998 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
5999 bfa_trc(__vport_fcs(vport
), status
);
6004 * Initialize the V-Port fields
6006 __vport_fcid(vport
) = vport
->lps
->lp_pid
;
6007 vport
->vport_stats
.fdisc_accepts
++;
6008 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_OK
);
6011 case BFA_STATUS_INVALID_MAC
:
6013 vport
->vport_stats
.fdisc_acc_bad
++;
6014 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6018 case BFA_STATUS_EPROTOCOL
:
6019 switch (vport
->lps
->ext_status
) {
6020 case BFA_EPROTO_BAD_ACCEPT
:
6021 vport
->vport_stats
.fdisc_acc_bad
++;
6024 case BFA_EPROTO_UNKNOWN_RSP
:
6025 vport
->vport_stats
.fdisc_unknown_rsp
++;
6032 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6035 case BFA_STATUS_FABRIC_RJT
:
6036 vport
->vport_stats
.fdisc_rejects
++;
6037 bfa_fcs_vport_fdisc_rejected(vport
);
6041 vport
->vport_stats
.fdisc_rsp_err
++;
6042 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
6050 bfa_cb_lps_fdisclogo_comp(void *bfad
, void *uarg
)
6052 struct bfa_fcs_vport_s
*vport
= uarg
;
6053 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_OK
);
6057 * Received clear virtual link
6060 bfa_cb_lps_cvl_event(void *bfad
, void *uarg
)
6062 struct bfa_fcs_vport_s
*vport
= uarg
;
6064 /* Send an Offline followed by an ONLINE */
6065 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_OFFLINE
);
6066 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_ONLINE
);