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.
23 #define FCPI_NAME " fcpim"
26 #define KOBJ_NAME_LEN 20
29 bfa_status_t
bfad_im_module_init(void);
30 void bfad_im_module_exit(void);
31 bfa_status_t
bfad_im_probe(struct bfad_s
*bfad
);
32 void bfad_im_probe_undo(struct bfad_s
*bfad
);
33 bfa_status_t
bfad_im_port_new(struct bfad_s
*bfad
, struct bfad_port_s
*port
);
34 void bfad_im_port_delete(struct bfad_s
*bfad
, struct bfad_port_s
*port
);
35 void bfad_im_port_clean(struct bfad_im_port_s
*im_port
);
36 int bfad_im_scsi_host_alloc(struct bfad_s
*bfad
,
37 struct bfad_im_port_s
*im_port
, struct device
*dev
);
38 void bfad_im_scsi_host_free(struct bfad_s
*bfad
,
39 struct bfad_im_port_s
*im_port
);
41 #define MAX_FCP_TARGET 1024
42 #define MAX_FCP_LUN 16384
43 #define BFAD_TARGET_RESET_TMO 60
44 #define BFAD_LUN_RESET_TMO 60
45 #define ScsiResult(host_code, scsi_code) (((host_code) << 16) | scsi_code)
46 #define BFA_QUEUE_FULL_RAMP_UP_TIME 120
53 struct bfad_itnim_data_s
{
54 struct bfad_itnim_s
*itnim
;
57 struct bfad_im_port_s
{
59 struct bfad_port_s
*port
;
60 struct work_struct port_delete_work
;
64 struct list_head binding_list
;
65 struct Scsi_Host
*shost
;
66 struct list_head itnim_mapped_list
;
67 struct fc_vport
*fc_vport
;
70 enum bfad_itnim_state
{
73 ITNIM_STATE_OFFLINE_PENDING
,
80 * Per itnim data structure
83 struct list_head list_entry
;
84 struct bfa_fcs_itnim_s fcs_itnim
;
85 struct work_struct itnim_work
;
87 enum bfad_itnim_state state
;
89 struct bfad_im_port_s
*im_port
;
90 struct bfad_rport_s
*drv_rport
;
91 struct fc_rport
*fc_rport
;
92 struct bfa_itnim_s
*bfa_itnim
;
95 unsigned long last_ramp_up_time
;
96 unsigned long last_queue_full_time
;
99 enum bfad_binding_type
{
100 FCP_PWWN_BINDING
= 0x1,
101 FCP_NWWN_BINDING
= 0x2,
102 FCP_FCID_BINDING
= 0x3,
105 struct bfad_fcp_binding
{
106 struct list_head list_entry
;
107 enum bfad_binding_type binding_type
;
116 struct workqueue_struct
*drv_workq
;
117 char drv_workq_name
[KOBJ_NAME_LEN
];
118 struct work_struct aen_im_notify_work
;
121 #define bfad_get_aen_entry(_drv, _entry) do { \
122 unsigned long _flags; \
123 spin_lock_irqsave(&(_drv)->bfad_aen_spinlock, _flags); \
124 bfa_q_deq(&(_drv)->free_aen_q, &(_entry)); \
126 list_add_tail(&(_entry)->qe, &(_drv)->active_aen_q); \
127 spin_unlock_irqrestore(&(_drv)->bfad_aen_spinlock, _flags); \
130 /* post fc_host vendor event */
131 #define bfad_im_post_vendor_event(_entry, _drv, _cnt, _cat, _evt) do { \
132 do_gettimeofday(&(_entry)->aen_tv); \
133 (_entry)->bfad_num = (_drv)->inst_no; \
134 (_entry)->seq_num = (_cnt); \
135 (_entry)->aen_category = (_cat); \
136 (_entry)->aen_type = (_evt); \
137 if ((_drv)->bfad_flags & BFAD_FC4_PROBE_DONE) \
138 queue_work((_drv)->im->drv_workq, \
139 &(_drv)->im->aen_im_notify_work); \
142 struct Scsi_Host
*bfad_scsi_host_alloc(struct bfad_im_port_s
*im_port
,
144 bfa_status_t
bfad_thread_workq(struct bfad_s
*bfad
);
145 void bfad_destroy_workq(struct bfad_im_s
*im
);
146 void bfad_fc_host_init(struct bfad_im_port_s
*im_port
);
147 void bfad_scsi_host_free(struct bfad_s
*bfad
,
148 struct bfad_im_port_s
*im_port
);
149 void bfad_ramp_up_qdepth(struct bfad_itnim_s
*itnim
,
150 struct scsi_device
*sdev
);
151 void bfad_handle_qfull(struct bfad_itnim_s
*itnim
, struct scsi_device
*sdev
);
152 struct bfad_itnim_s
*bfad_get_itnim(struct bfad_im_port_s
*im_port
, int id
);
154 extern struct scsi_host_template bfad_im_scsi_host_template
;
155 extern struct scsi_host_template bfad_im_vport_template
;
156 extern struct fc_function_template bfad_im_fc_function_template
;
157 extern struct fc_function_template bfad_im_vport_fc_function_template
;
158 extern struct scsi_transport_template
*bfad_im_scsi_transport_template
;
159 extern struct scsi_transport_template
*bfad_im_scsi_vport_transport_template
;
161 extern struct device_attribute
*bfad_im_host_attrs
[];
162 extern struct device_attribute
*bfad_im_vport_attrs
[];
164 irqreturn_t
bfad_intx(int irq
, void *dev_id
);
166 int bfad_im_bsg_request(struct fc_bsg_job
*job
);
167 int bfad_im_bsg_timeout(struct fc_bsg_job
*job
);