aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/bfa/lport_priv.h
blob: dbae370a599a053054dcc4a499ebe2cb33db7a2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
 * All rights reserved
 * www.brocade.com
 *
 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License (GPL) Version 2 as
 * published by the Free Software Foundation
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 */

#ifndef __VP_PRIV_H__
#define __VP_PRIV_H__

#include <fcs/bfa_fcs_lport.h>
#include <fcs/bfa_fcs_vport.h>

/*
 * Functions exported by vps
 */
void            bfa_fcs_vport_init(struct bfa_fcs_vport_s *vport);

/*
 * Functions exported by vps
 */
void            bfa_fcs_vps_online(struct bfa_fcs_port_s *port);
void            bfa_fcs_vps_offline(struct bfa_fcs_port_s *port);
void            bfa_fcs_vps_lip(struct bfa_fcs_port_s *port);

/*
 * Functions exported by port_fab
 */
void            bfa_fcs_port_fab_init(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_fab_online(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_fab_offline(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_fab_rx_frame(struct bfa_fcs_port_s *port,
					  u8 *rx_frame, u32 len);

/*
 * Functions exported by VP-NS.
 */
void            bfa_fcs_port_ns_init(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_ns_offline(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_ns_online(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_ns_query(struct bfa_fcs_port_s *port);

/*
 * Functions exported by VP-SCN
 */
void            bfa_fcs_port_scn_init(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_scn_offline(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_scn_online(struct bfa_fcs_port_s *vport);
void            bfa_fcs_port_scn_process_rscn(struct bfa_fcs_port_s *port,
					      struct fchs_s *rx_frame, u32 len);

/*
 * Functions exported by VP-N2N
 */

void            bfa_fcs_port_n2n_init(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_n2n_online(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_n2n_offline(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_n2n_rx_frame(struct bfa_fcs_port_s *port,
					  u8 *rx_frame, u32 len);

/*
 * Functions exported by VP-LOOP
 */
void            bfa_fcs_port_loop_init(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_loop_online(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_loop_offline(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_loop_lip(struct bfa_fcs_port_s *port);
void            bfa_fcs_port_loop_rx_frame(struct bfa_fcs_port_s *port,
					   u8 *rx_frame, u32 len);

#endif /* __VP_PRIV_H__ */