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_pport.c BFA FCS PPORT ( physical port)
22 #include <fcs/bfa_fcs.h>
24 #include <fcs/bfa_fcs_fabric.h>
25 #include "fcs_trcmod.h"
27 #include "fcs_fabric.h"
30 BFA_TRC_FILE(FCS
, PPORT
);
33 bfa_fcs_pport_event_handler(void *cbarg
, bfa_pport_event_t event
)
35 struct bfa_fcs_s
*fcs
= cbarg
;
40 case BFA_PPORT_LINKUP
:
41 bfa_fcs_fabric_link_up(&fcs
->fabric
);
44 case BFA_PPORT_LINKDOWN
:
45 bfa_fcs_fabric_link_down(&fcs
->fabric
);
48 case BFA_PPORT_TRUNK_LINKDOWN
:
58 bfa_fcs_pport_modinit(struct bfa_fcs_s
*fcs
)
60 bfa_pport_event_register(fcs
->bfa
, bfa_fcs_pport_event_handler
,
65 bfa_fcs_pport_modexit(struct bfa_fcs_s
*fcs
)
67 bfa_fcs_modexit_comp(fcs
);