2 * Copyright (c) 2011-2012 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 * Maintained at www.Open-FCoE.org
23 #include <linux/if_ether.h>
24 #include <linux/device.h>
25 #include <scsi/fc/fc_fcoe.h>
27 struct fcoe_ctlr_device
;
28 struct fcoe_fcf_device
;
30 struct fcoe_sysfs_function_template
{
31 void (*get_fcoe_ctlr_link_fail
)(struct fcoe_ctlr_device
*);
32 void (*get_fcoe_ctlr_vlink_fail
)(struct fcoe_ctlr_device
*);
33 void (*get_fcoe_ctlr_miss_fka
)(struct fcoe_ctlr_device
*);
34 void (*get_fcoe_ctlr_symb_err
)(struct fcoe_ctlr_device
*);
35 void (*get_fcoe_ctlr_err_block
)(struct fcoe_ctlr_device
*);
36 void (*get_fcoe_ctlr_fcs_error
)(struct fcoe_ctlr_device
*);
37 void (*get_fcoe_ctlr_mode
)(struct fcoe_ctlr_device
*);
38 void (*get_fcoe_fcf_selected
)(struct fcoe_fcf_device
*);
39 void (*get_fcoe_fcf_vlan_id
)(struct fcoe_fcf_device
*);
42 #define dev_to_ctlr(d) \
43 container_of((d), struct fcoe_ctlr_device, dev)
46 FIP_CONN_TYPE_UNKNOWN
,
51 struct fcoe_ctlr_device
{
55 struct fcoe_sysfs_function_template
*f
;
57 struct list_head fcfs
;
59 struct workqueue_struct
*work_q
;
60 char devloss_work_q_name
[20];
61 struct workqueue_struct
*devloss_work_q
;
65 enum fip_conn_type mode
;
67 /* expected in host order for displaying */
68 struct fcoe_fc_els_lesb lesb
;
71 static inline void *fcoe_ctlr_device_priv(const struct fcoe_ctlr_device
*ctlr
)
73 return (void *)(ctlr
+ 1);
78 FCOE_FCF_STATE_UNKNOWN
,
79 FCOE_FCF_STATE_DISCONNECTED
,
80 FCOE_FCF_STATE_CONNECTED
,
81 FCOE_FCF_STATE_DELETED
,
84 struct fcoe_fcf_device
{
87 struct list_head peers
;
88 struct work_struct delete_work
;
89 struct delayed_work dev_loss_work
;
105 #define dev_to_fcf(d) \
106 container_of((d), struct fcoe_fcf_device, dev)
107 /* parentage should never be missing */
108 #define fcoe_fcf_dev_to_ctlr_dev(x) \
109 dev_to_ctlr((x)->dev.parent)
110 #define fcoe_fcf_device_priv(x) \
113 struct fcoe_ctlr_device
*fcoe_ctlr_device_add(struct device
*parent
,
114 struct fcoe_sysfs_function_template
*f
,
116 void fcoe_ctlr_device_delete(struct fcoe_ctlr_device
*);
117 struct fcoe_fcf_device
*fcoe_fcf_device_add(struct fcoe_ctlr_device
*,
118 struct fcoe_fcf_device
*);
119 void fcoe_fcf_device_delete(struct fcoe_fcf_device
*);
121 int __init
fcoe_sysfs_setup(void);
122 void __exit
fcoe_sysfs_teardown(void);
124 #endif /* FCOE_SYSFS */