2 * Copyright (c) 2005-2009 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.
19 * bfa_fcs_vport.c FCS virtual port state machine
25 #include "fcs_fabric.h"
26 #include "fcs_lport.h"
27 #include "fcs_vport.h"
28 #include "fcs_trcmod.h"
30 #include <aen/bfa_aen_lport.h>
32 BFA_TRC_FILE(FCS
, VPORT
);
34 #define __vport_fcs(__vp) (__vp)->lport.fcs
35 #define __vport_pwwn(__vp) (__vp)->lport.port_cfg.pwwn
36 #define __vport_nwwn(__vp) (__vp)->lport.port_cfg.nwwn
37 #define __vport_bfa(__vp) (__vp)->lport.fcs->bfa
38 #define __vport_fcid(__vp) (__vp)->lport.pid
39 #define __vport_fabric(__vp) (__vp)->lport.fabric
40 #define __vport_vfid(__vp) (__vp)->lport.fabric->vf_id
42 #define BFA_FCS_VPORT_MAX_RETRIES 5
44 * Forward declarations
46 static void bfa_fcs_vport_do_fdisc(struct bfa_fcs_vport_s
*vport
);
47 static void bfa_fcs_vport_timeout(void *vport_arg
);
48 static void bfa_fcs_vport_do_logo(struct bfa_fcs_vport_s
*vport
);
49 static void bfa_fcs_vport_free(struct bfa_fcs_vport_s
*vport
);
52 * fcs_vport_sm FCS virtual port state machine
56 * VPort State Machine events
58 enum bfa_fcs_vport_event
{
59 BFA_FCS_VPORT_SM_CREATE
= 1, /* vport create event */
60 BFA_FCS_VPORT_SM_DELETE
= 2, /* vport delete event */
61 BFA_FCS_VPORT_SM_START
= 3, /* vport start request */
62 BFA_FCS_VPORT_SM_STOP
= 4, /* stop: unsupported */
63 BFA_FCS_VPORT_SM_ONLINE
= 5, /* fabric online */
64 BFA_FCS_VPORT_SM_OFFLINE
= 6, /* fabric offline event */
65 BFA_FCS_VPORT_SM_FRMSENT
= 7, /* fdisc/logo sent events */
66 BFA_FCS_VPORT_SM_RSP_OK
= 8, /* good response */
67 BFA_FCS_VPORT_SM_RSP_ERROR
= 9, /* error/bad response */
68 BFA_FCS_VPORT_SM_TIMEOUT
= 10, /* delay timer event */
69 BFA_FCS_VPORT_SM_DELCOMP
= 11, /* lport delete completion */
70 BFA_FCS_VPORT_SM_RSP_DUP_WWN
= 12, /* Dup wnn error */
71 BFA_FCS_VPORT_SM_RSP_FAILED
= 13, /* non-retryable failure */
74 static void bfa_fcs_vport_sm_uninit(struct bfa_fcs_vport_s
*vport
,
75 enum bfa_fcs_vport_event event
);
76 static void bfa_fcs_vport_sm_created(struct bfa_fcs_vport_s
*vport
,
77 enum bfa_fcs_vport_event event
);
78 static void bfa_fcs_vport_sm_offline(struct bfa_fcs_vport_s
*vport
,
79 enum bfa_fcs_vport_event event
);
80 static void bfa_fcs_vport_sm_fdisc(struct bfa_fcs_vport_s
*vport
,
81 enum bfa_fcs_vport_event event
);
82 static void bfa_fcs_vport_sm_fdisc_retry(struct bfa_fcs_vport_s
*vport
,
83 enum bfa_fcs_vport_event event
);
84 static void bfa_fcs_vport_sm_online(struct bfa_fcs_vport_s
*vport
,
85 enum bfa_fcs_vport_event event
);
86 static void bfa_fcs_vport_sm_deleting(struct bfa_fcs_vport_s
*vport
,
87 enum bfa_fcs_vport_event event
);
88 static void bfa_fcs_vport_sm_cleanup(struct bfa_fcs_vport_s
*vport
,
89 enum bfa_fcs_vport_event event
);
90 static void bfa_fcs_vport_sm_logo(struct bfa_fcs_vport_s
*vport
,
91 enum bfa_fcs_vport_event event
);
92 static void bfa_fcs_vport_sm_error(struct bfa_fcs_vport_s
*vport
,
93 enum bfa_fcs_vport_event event
);
95 static struct bfa_sm_table_s vport_sm_table
[] = {
96 {BFA_SM(bfa_fcs_vport_sm_uninit
), BFA_FCS_VPORT_UNINIT
},
97 {BFA_SM(bfa_fcs_vport_sm_created
), BFA_FCS_VPORT_CREATED
},
98 {BFA_SM(bfa_fcs_vport_sm_offline
), BFA_FCS_VPORT_OFFLINE
},
99 {BFA_SM(bfa_fcs_vport_sm_fdisc
), BFA_FCS_VPORT_FDISC
},
100 {BFA_SM(bfa_fcs_vport_sm_fdisc_retry
), BFA_FCS_VPORT_FDISC_RETRY
},
101 {BFA_SM(bfa_fcs_vport_sm_online
), BFA_FCS_VPORT_ONLINE
},
102 {BFA_SM(bfa_fcs_vport_sm_deleting
), BFA_FCS_VPORT_DELETING
},
103 {BFA_SM(bfa_fcs_vport_sm_cleanup
), BFA_FCS_VPORT_CLEANUP
},
104 {BFA_SM(bfa_fcs_vport_sm_logo
), BFA_FCS_VPORT_LOGO
},
105 {BFA_SM(bfa_fcs_vport_sm_error
), BFA_FCS_VPORT_ERROR
}
112 bfa_fcs_vport_sm_uninit(struct bfa_fcs_vport_s
*vport
,
113 enum bfa_fcs_vport_event event
)
115 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
116 bfa_trc(__vport_fcs(vport
), event
);
119 case BFA_FCS_VPORT_SM_CREATE
:
120 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_created
);
121 bfa_fcs_fabric_addvport(__vport_fabric(vport
), vport
);
130 * Created state - a start event is required to start up the state machine.
133 bfa_fcs_vport_sm_created(struct bfa_fcs_vport_s
*vport
,
134 enum bfa_fcs_vport_event event
)
136 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
137 bfa_trc(__vport_fcs(vport
), event
);
140 case BFA_FCS_VPORT_SM_START
:
141 if (bfa_fcs_fabric_is_online(__vport_fabric(vport
))
142 && bfa_fcs_fabric_npiv_capable(__vport_fabric(vport
))) {
143 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
144 bfa_fcs_vport_do_fdisc(vport
);
147 * Fabric is offline or not NPIV capable, stay in
150 vport
->vport_stats
.fab_no_npiv
++;
151 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
155 case BFA_FCS_VPORT_SM_DELETE
:
156 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
157 bfa_fcs_port_delete(&vport
->lport
);
160 case BFA_FCS_VPORT_SM_ONLINE
:
161 case BFA_FCS_VPORT_SM_OFFLINE
:
163 * Ignore ONLINE/OFFLINE events from fabric till vport is started.
173 * Offline state - awaiting ONLINE event from fabric SM.
176 bfa_fcs_vport_sm_offline(struct bfa_fcs_vport_s
*vport
,
177 enum bfa_fcs_vport_event event
)
179 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
180 bfa_trc(__vport_fcs(vport
), event
);
183 case BFA_FCS_VPORT_SM_DELETE
:
184 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
185 bfa_fcs_port_delete(&vport
->lport
);
188 case BFA_FCS_VPORT_SM_ONLINE
:
189 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
190 vport
->fdisc_retries
= 0;
191 bfa_fcs_vport_do_fdisc(vport
);
194 case BFA_FCS_VPORT_SM_OFFLINE
:
196 * This can happen if the vport couldn't be initialzied due
197 * the fact that the npiv was not enabled on the switch. In
198 * that case we will put the vport in offline state. However,
199 * the link can go down and cause the this event to be sent when
200 * we are already offline. Ignore it.
210 * FDISC is sent and awaiting reply from fabric.
213 bfa_fcs_vport_sm_fdisc(struct bfa_fcs_vport_s
*vport
,
214 enum bfa_fcs_vport_event event
)
216 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
217 bfa_trc(__vport_fcs(vport
), event
);
220 case BFA_FCS_VPORT_SM_DELETE
:
221 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_logo
);
222 bfa_lps_discard(vport
->lps
);
223 bfa_fcs_vport_do_logo(vport
);
226 case BFA_FCS_VPORT_SM_OFFLINE
:
227 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
228 bfa_lps_discard(vport
->lps
);
231 case BFA_FCS_VPORT_SM_RSP_OK
:
232 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_online
);
233 bfa_fcs_port_online(&vport
->lport
);
236 case BFA_FCS_VPORT_SM_RSP_ERROR
:
237 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc_retry
);
238 bfa_timer_start(__vport_bfa(vport
), &vport
->timer
,
239 bfa_fcs_vport_timeout
, vport
,
240 BFA_FCS_RETRY_TIMEOUT
);
243 case BFA_FCS_VPORT_SM_RSP_FAILED
:
244 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
247 case BFA_FCS_VPORT_SM_RSP_DUP_WWN
:
248 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_error
);
257 * FDISC attempt failed - a timer is active to retry FDISC.
260 bfa_fcs_vport_sm_fdisc_retry(struct bfa_fcs_vport_s
*vport
,
261 enum bfa_fcs_vport_event event
)
263 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
264 bfa_trc(__vport_fcs(vport
), event
);
267 case BFA_FCS_VPORT_SM_DELETE
:
268 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
269 bfa_timer_stop(&vport
->timer
);
270 bfa_fcs_port_delete(&vport
->lport
);
273 case BFA_FCS_VPORT_SM_OFFLINE
:
274 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
275 bfa_timer_stop(&vport
->timer
);
278 case BFA_FCS_VPORT_SM_TIMEOUT
:
279 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_fdisc
);
280 vport
->vport_stats
.fdisc_retries
++;
281 vport
->fdisc_retries
++;
282 bfa_fcs_vport_do_fdisc(vport
);
291 * Vport is online (FDISC is complete).
294 bfa_fcs_vport_sm_online(struct bfa_fcs_vport_s
*vport
,
295 enum bfa_fcs_vport_event event
)
297 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
298 bfa_trc(__vport_fcs(vport
), event
);
301 case BFA_FCS_VPORT_SM_DELETE
:
302 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_deleting
);
303 bfa_fcs_port_delete(&vport
->lport
);
306 case BFA_FCS_VPORT_SM_OFFLINE
:
307 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_offline
);
308 bfa_lps_discard(vport
->lps
);
309 bfa_fcs_port_offline(&vport
->lport
);
318 * Vport is being deleted - awaiting lport delete completion to send
322 bfa_fcs_vport_sm_deleting(struct bfa_fcs_vport_s
*vport
,
323 enum bfa_fcs_vport_event event
)
325 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
326 bfa_trc(__vport_fcs(vport
), event
);
329 case BFA_FCS_VPORT_SM_DELETE
:
332 case BFA_FCS_VPORT_SM_DELCOMP
:
333 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_logo
);
334 bfa_fcs_vport_do_logo(vport
);
337 case BFA_FCS_VPORT_SM_OFFLINE
:
338 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_cleanup
);
348 * This state will be set when the Vport Creation fails due to errors like
349 * Dup WWN. In this state only operation allowed is a Vport Delete.
352 bfa_fcs_vport_sm_error(struct bfa_fcs_vport_s
*vport
,
353 enum bfa_fcs_vport_event event
)
355 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
356 bfa_trc(__vport_fcs(vport
), event
);
359 case BFA_FCS_VPORT_SM_DELETE
:
360 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
361 bfa_fcs_vport_free(vport
);
365 bfa_trc(__vport_fcs(vport
), event
);
370 * Lport cleanup is in progress since vport is being deleted. Fabric is
371 * offline, so no LOGO is needed to complete vport deletion.
374 bfa_fcs_vport_sm_cleanup(struct bfa_fcs_vport_s
*vport
,
375 enum bfa_fcs_vport_event event
)
377 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
378 bfa_trc(__vport_fcs(vport
), event
);
381 case BFA_FCS_VPORT_SM_DELCOMP
:
382 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
383 bfa_fcs_vport_free(vport
);
386 case BFA_FCS_VPORT_SM_DELETE
:
395 * LOGO is sent to fabric. Vport delete is in progress. Lport delete cleanup
399 bfa_fcs_vport_sm_logo(struct bfa_fcs_vport_s
*vport
,
400 enum bfa_fcs_vport_event event
)
402 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
403 bfa_trc(__vport_fcs(vport
), event
);
406 case BFA_FCS_VPORT_SM_OFFLINE
:
407 bfa_lps_discard(vport
->lps
);
409 * !!! fall through !!!
412 case BFA_FCS_VPORT_SM_RSP_OK
:
413 case BFA_FCS_VPORT_SM_RSP_ERROR
:
414 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
415 bfa_fcs_vport_free(vport
);
418 case BFA_FCS_VPORT_SM_DELETE
:
429 * fcs_vport_private FCS virtual port private functions
433 * Send AEN notification
436 bfa_fcs_vport_aen_post(bfa_fcs_lport_t
*port
, enum bfa_lport_aen_event event
)
438 union bfa_aen_data_u aen_data
;
439 struct bfa_log_mod_s
*logmod
= port
->fcs
->logm
;
440 enum bfa_port_role role
= port
->port_cfg
.roles
;
441 wwn_t lpwwn
= bfa_fcs_port_get_pwwn(port
);
442 char lpwwn_ptr
[BFA_STRING_32
];
443 char *role_str
[BFA_PORT_ROLE_FCP_MAX
/ 2 + 1] =
444 { "Initiator", "Target", "IPFC" };
446 wwn2str(lpwwn_ptr
, lpwwn
);
448 bfa_assert(role
<= BFA_PORT_ROLE_FCP_MAX
);
451 case BFA_LPORT_AEN_NPIV_DUP_WWN
:
452 bfa_log(logmod
, BFA_AEN_LPORT_NPIV_DUP_WWN
, lpwwn_ptr
,
455 case BFA_LPORT_AEN_NPIV_FABRIC_MAX
:
456 bfa_log(logmod
, BFA_AEN_LPORT_NPIV_FABRIC_MAX
, lpwwn_ptr
,
459 case BFA_LPORT_AEN_NPIV_UNKNOWN
:
460 bfa_log(logmod
, BFA_AEN_LPORT_NPIV_UNKNOWN
, lpwwn_ptr
,
467 aen_data
.lport
.vf_id
= port
->fabric
->vf_id
;
468 aen_data
.lport
.roles
= role
;
469 aen_data
.lport
.ppwwn
=
470 bfa_fcs_port_get_pwwn(bfa_fcs_get_base_port(port
->fcs
));
471 aen_data
.lport
.lpwwn
= lpwwn
;
475 * This routine will be called to send a FDISC command.
478 bfa_fcs_vport_do_fdisc(struct bfa_fcs_vport_s
*vport
)
480 bfa_lps_fdisc(vport
->lps
, vport
,
481 bfa_pport_get_maxfrsize(__vport_bfa(vport
)),
482 __vport_pwwn(vport
), __vport_nwwn(vport
));
483 vport
->vport_stats
.fdisc_sent
++;
487 bfa_fcs_vport_fdisc_rejected(struct bfa_fcs_vport_s
*vport
)
489 u8 lsrjt_rsn
= bfa_lps_get_lsrjt_rsn(vport
->lps
);
490 u8 lsrjt_expl
= bfa_lps_get_lsrjt_expl(vport
->lps
);
492 bfa_trc(__vport_fcs(vport
), lsrjt_rsn
);
493 bfa_trc(__vport_fcs(vport
), lsrjt_expl
);
496 * For certain reason codes, we don't want to retry.
498 switch (bfa_lps_get_lsrjt_expl(vport
->lps
)) {
499 case FC_LS_RJT_EXP_INV_PORT_NAME
: /* by brocade */
500 case FC_LS_RJT_EXP_INVALID_NPORT_ID
: /* by Cisco */
501 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
502 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
504 bfa_fcs_vport_aen_post(&vport
->lport
,
505 BFA_LPORT_AEN_NPIV_DUP_WWN
);
506 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_DUP_WWN
);
510 case FC_LS_RJT_EXP_INSUFF_RES
:
512 * This means max logins per port/switch setting on the
513 * switch was exceeded.
515 if (vport
->fdisc_retries
< BFA_FCS_VPORT_MAX_RETRIES
)
516 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
518 bfa_fcs_vport_aen_post(&vport
->lport
,
519 BFA_LPORT_AEN_NPIV_FABRIC_MAX
);
520 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_FAILED
);
525 if (vport
->fdisc_retries
== 0) /* Print only once */
526 bfa_fcs_vport_aen_post(&vport
->lport
,
527 BFA_LPORT_AEN_NPIV_UNKNOWN
);
528 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
533 * Called to send a logout to the fabric. Used when a V-Port is
537 bfa_fcs_vport_do_logo(struct bfa_fcs_vport_s
*vport
)
539 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
541 vport
->vport_stats
.logo_sent
++;
542 bfa_lps_fdisclogo(vport
->lps
);
546 * This routine will be called by bfa_timer on timer timeouts.
548 * param[in] vport - pointer to bfa_fcs_vport_t.
549 * param[out] vport_status - pointer to return vport status in
554 * Special Considerations:
559 bfa_fcs_vport_timeout(void *vport_arg
)
561 struct bfa_fcs_vport_s
*vport
= (struct bfa_fcs_vport_s
*)vport_arg
;
563 vport
->vport_stats
.fdisc_timeouts
++;
564 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_TIMEOUT
);
568 bfa_fcs_vport_free(struct bfa_fcs_vport_s
*vport
)
570 bfa_fcs_fabric_delvport(__vport_fabric(vport
), vport
);
571 bfa_fcb_vport_delete(vport
->vport_drv
);
572 bfa_lps_delete(vport
->lps
);
578 * fcs_vport_public FCS virtual port public interfaces
582 * Online notification from fabric SM.
585 bfa_fcs_vport_online(struct bfa_fcs_vport_s
*vport
)
587 vport
->vport_stats
.fab_online
++;
588 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_ONLINE
);
592 * Offline notification from fabric SM.
595 bfa_fcs_vport_offline(struct bfa_fcs_vport_s
*vport
)
597 vport
->vport_stats
.fab_offline
++;
598 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_OFFLINE
);
602 * Cleanup notification from fabric SM on link timer expiry.
605 bfa_fcs_vport_cleanup(struct bfa_fcs_vport_s
*vport
)
607 vport
->vport_stats
.fab_cleanup
++;
611 * Delete completion callback from associated lport
614 bfa_fcs_vport_delete_comp(struct bfa_fcs_vport_s
*vport
)
616 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELCOMP
);
620 * Module initialization
623 bfa_fcs_vport_modinit(struct bfa_fcs_s
*fcs
)
631 bfa_fcs_vport_modexit(struct bfa_fcs_s
*fcs
)
633 bfa_fcs_modexit_comp(fcs
);
637 bfa_fcs_vport_get_max(struct bfa_fcs_s
*fcs
)
639 struct bfa_ioc_attr_s ioc_attr
;
641 bfa_get_attr(fcs
->bfa
, &ioc_attr
);
643 if (ioc_attr
.pci_attr
.device_id
== BFA_PCI_DEVICE_ID_CT
)
644 return (BFA_FCS_MAX_VPORTS_SUPP_CT
);
646 return (BFA_FCS_MAX_VPORTS_SUPP_CB
);
652 * fcs_vport_api Virtual port API
656 * Use this function to instantiate a new FCS vport object. This
657 * function will not trigger any HW initialization process (which will be
658 * done in vport_start() call)
660 * param[in] vport - pointer to bfa_fcs_vport_t. This space
661 * needs to be allocated by the driver.
662 * param[in] fcs - FCS instance
663 * param[in] vport_cfg - vport configuration
664 * param[in] vf_id - VF_ID if vport is created within a VF.
665 * FC_VF_ID_NULL to specify base fabric.
666 * param[in] vport_drv - Opaque handle back to the driver's vport
669 * retval BFA_STATUS_OK - on success.
670 * retval BFA_STATUS_FAILED - on failure.
673 bfa_fcs_vport_create(struct bfa_fcs_vport_s
*vport
, struct bfa_fcs_s
*fcs
,
674 u16 vf_id
, struct bfa_port_cfg_s
*vport_cfg
,
675 struct bfad_vport_s
*vport_drv
)
677 if (vport_cfg
->pwwn
== 0)
678 return (BFA_STATUS_INVALID_WWN
);
680 if (bfa_fcs_port_get_pwwn(&fcs
->fabric
.bport
) == vport_cfg
->pwwn
)
681 return BFA_STATUS_VPORT_WWN_BP
;
683 if (bfa_fcs_vport_lookup(fcs
, vf_id
, vport_cfg
->pwwn
) != NULL
)
684 return BFA_STATUS_VPORT_EXISTS
;
686 if (bfa_fcs_fabric_vport_count(&fcs
->fabric
) ==
687 bfa_fcs_vport_get_max(fcs
))
688 return BFA_STATUS_VPORT_MAX
;
690 vport
->lps
= bfa_lps_alloc(fcs
->bfa
);
692 return BFA_STATUS_VPORT_MAX
;
694 vport
->vport_drv
= vport_drv
;
695 bfa_sm_set_state(vport
, bfa_fcs_vport_sm_uninit
);
697 bfa_fcs_lport_init(&vport
->lport
, fcs
, vf_id
, vport_cfg
, vport
);
699 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_CREATE
);
701 return BFA_STATUS_OK
;
705 * Use this function initialize the vport.
707 * @param[in] vport - pointer to bfa_fcs_vport_t.
712 bfa_fcs_vport_start(struct bfa_fcs_vport_s
*vport
)
714 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_START
);
716 return BFA_STATUS_OK
;
720 * Use this function quiese the vport object. This function will return
721 * immediately, when the vport is actually stopped, the
722 * bfa_drv_vport_stop_cb() will be called.
724 * param[in] vport - pointer to bfa_fcs_vport_t.
729 bfa_fcs_vport_stop(struct bfa_fcs_vport_s
*vport
)
731 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_STOP
);
733 return BFA_STATUS_OK
;
737 * Use this function to delete a vport object. Fabric object should
738 * be stopped before this function call.
740 * param[in] vport - pointer to bfa_fcs_vport_t.
745 bfa_fcs_vport_delete(struct bfa_fcs_vport_s
*vport
)
747 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_DELETE
);
749 return BFA_STATUS_OK
;
753 * Use this function to get vport's current status info.
755 * param[in] vport pointer to bfa_fcs_vport_t.
756 * param[out] attr pointer to return vport attributes
761 bfa_fcs_vport_get_attr(struct bfa_fcs_vport_s
*vport
,
762 struct bfa_vport_attr_s
*attr
)
764 if (vport
== NULL
|| attr
== NULL
)
767 bfa_os_memset(attr
, 0, sizeof(struct bfa_vport_attr_s
));
769 bfa_fcs_port_get_attr(&vport
->lport
, &attr
->port_attr
);
770 attr
->vport_state
= bfa_sm_to_state(vport_sm_table
, vport
->sm
);
774 * Use this function to get vport's statistics.
776 * param[in] vport pointer to bfa_fcs_vport_t.
777 * param[out] stats pointer to return vport statistics in
782 bfa_fcs_vport_get_stats(struct bfa_fcs_vport_s
*vport
,
783 struct bfa_vport_stats_s
*stats
)
785 *stats
= vport
->vport_stats
;
789 * Use this function to clear vport's statistics.
791 * param[in] vport pointer to bfa_fcs_vport_t.
796 bfa_fcs_vport_clr_stats(struct bfa_fcs_vport_s
*vport
)
798 bfa_os_memset(&vport
->vport_stats
, 0, sizeof(struct bfa_vport_stats_s
));
802 * Lookup a virtual port. Excludes base port from lookup.
804 struct bfa_fcs_vport_s
*
805 bfa_fcs_vport_lookup(struct bfa_fcs_s
*fcs
, u16 vf_id
, wwn_t vpwwn
)
807 struct bfa_fcs_vport_s
*vport
;
808 struct bfa_fcs_fabric_s
*fabric
;
813 fabric
= bfa_fcs_vf_lookup(fcs
, vf_id
);
819 vport
= bfa_fcs_fabric_vport_lookup(fabric
, vpwwn
);
827 bfa_cb_lps_fdisc_comp(void *bfad
, void *uarg
, bfa_status_t status
)
829 struct bfa_fcs_vport_s
*vport
= uarg
;
831 bfa_trc(__vport_fcs(vport
), __vport_pwwn(vport
));
832 bfa_trc(__vport_fcs(vport
), status
);
837 * Initialiaze the V-Port fields
839 __vport_fcid(vport
) = bfa_lps_get_pid(vport
->lps
);
840 vport
->vport_stats
.fdisc_accepts
++;
841 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_OK
);
844 case BFA_STATUS_INVALID_MAC
:
848 vport
->vport_stats
.fdisc_acc_bad
++;
849 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
853 case BFA_STATUS_EPROTOCOL
:
854 switch (bfa_lps_get_extstatus(vport
->lps
)) {
855 case BFA_EPROTO_BAD_ACCEPT
:
856 vport
->vport_stats
.fdisc_acc_bad
++;
859 case BFA_EPROTO_UNKNOWN_RSP
:
860 vport
->vport_stats
.fdisc_unknown_rsp
++;
867 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
870 case BFA_STATUS_FABRIC_RJT
:
871 vport
->vport_stats
.fdisc_rejects
++;
872 bfa_fcs_vport_fdisc_rejected(vport
);
876 vport
->vport_stats
.fdisc_rsp_err
++;
877 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_ERROR
);
885 bfa_cb_lps_fdisclogo_comp(void *bfad
, void *uarg
)
887 struct bfa_fcs_vport_s
*vport
= uarg
;
888 bfa_sm_send_event(vport
, BFA_FCS_VPORT_SM_RSP_OK
);