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.
20 #include <bfa_os_inc.h>
21 #include <cs/bfa_debug.h>
23 #include <cs/bfa_trc.h>
24 #include <cs/bfa_log.h>
25 #include <cs/bfa_plog.h>
26 #include <defs/bfa_defs_status.h>
27 #include <defs/bfa_defs_ioc.h>
28 #include <defs/bfa_defs_iocfc.h>
29 #include <aen/bfa_aen.h>
33 #include <bfa_intr_priv.h>
38 * PCI devices supported by the current BFA
45 extern char bfa_version
[];
48 * BFA Power Mgmt Commands
58 * BFA memory resources
61 BFA_MEM_TYPE_KVA
= 1, /*! Kernel Virtual Memory *(non-dma-able) */
62 BFA_MEM_TYPE_DMA
= 2, /*! DMA-able memory */
63 BFA_MEM_TYPE_MAX
= BFA_MEM_TYPE_DMA
,
66 struct bfa_mem_elem_s
{
67 enum bfa_mem_type mem_type
; /* see enum bfa_mem_type */
68 u32 mem_len
; /* Total Length in Bytes */
69 u8
*kva
; /* kernel virtual address */
70 u64 dma
; /* dma address if DMA memory */
71 u8
*kva_curp
; /* kva allocation cursor */
72 u64 dma_curp
; /* dma allocation cursor */
75 struct bfa_meminfo_s
{
76 struct bfa_mem_elem_s meminfo
[BFA_MEM_TYPE_MAX
];
78 #define bfa_meminfo_kva(_m) \
79 ((_m)->meminfo[BFA_MEM_TYPE_KVA - 1].kva_curp)
80 #define bfa_meminfo_dma_virt(_m) \
81 ((_m)->meminfo[BFA_MEM_TYPE_DMA - 1].kva_curp)
82 #define bfa_meminfo_dma_phys(_m) \
83 ((_m)->meminfo[BFA_MEM_TYPE_DMA - 1].dma_curp)
86 * Generic Scatter Gather Element used by driver
93 #define bfa_sge_to_be(__sge) do { \
94 ((u32 *)(__sge))[0] = bfa_os_htonl(((u32 *)(__sge))[0]); \
95 ((u32 *)(__sge))[1] = bfa_os_htonl(((u32 *)(__sge))[1]); \
96 ((u32 *)(__sge))[2] = bfa_os_htonl(((u32 *)(__sge))[2]); \
101 * bfa stats interfaces
103 #define bfa_stats(_mod, _stats) ((_mod)->stats._stats++)
105 #define bfa_ioc_get_stats(__bfa, __ioc_stats) \
106 bfa_ioc_fetch_stats(&(__bfa)->ioc, __ioc_stats)
107 #define bfa_ioc_clear_stats(__bfa) \
108 bfa_ioc_clr_stats(&(__bfa)->ioc)
109 #define bfa_get_nports(__bfa) \
110 bfa_ioc_get_nports(&(__bfa)->ioc)
111 #define bfa_get_adapter_manufacturer(__bfa, __manufacturer) \
112 bfa_ioc_get_adapter_manufacturer(&(__bfa)->ioc, __manufacturer)
113 #define bfa_get_adapter_model(__bfa, __model) \
114 bfa_ioc_get_adapter_model(&(__bfa)->ioc, __model)
115 #define bfa_get_adapter_serial_num(__bfa, __serial_num) \
116 bfa_ioc_get_adapter_serial_num(&(__bfa)->ioc, __serial_num)
117 #define bfa_get_adapter_fw_ver(__bfa, __fw_ver) \
118 bfa_ioc_get_adapter_fw_ver(&(__bfa)->ioc, __fw_ver)
119 #define bfa_get_adapter_optrom_ver(__bfa, __optrom_ver) \
120 bfa_ioc_get_adapter_optrom_ver(&(__bfa)->ioc, __optrom_ver)
121 #define bfa_get_pci_chip_rev(__bfa, __chip_rev) \
122 bfa_ioc_get_pci_chip_rev(&(__bfa)->ioc, __chip_rev)
123 #define bfa_get_ioc_state(__bfa) \
124 bfa_ioc_get_state(&(__bfa)->ioc)
125 #define bfa_get_type(__bfa) \
126 bfa_ioc_get_type(&(__bfa)->ioc)
127 #define bfa_get_mac(__bfa) \
128 bfa_ioc_get_mac(&(__bfa)->ioc)
133 void bfa_get_pciids(struct bfa_pciid_s
**pciids
, int *npciids
);
134 void bfa_cfg_get_default(struct bfa_iocfc_cfg_s
*cfg
);
135 void bfa_cfg_get_min(struct bfa_iocfc_cfg_s
*cfg
);
136 void bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s
*cfg
,
137 struct bfa_meminfo_s
*meminfo
);
138 void bfa_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
139 struct bfa_meminfo_s
*meminfo
,
140 struct bfa_pcidev_s
*pcidev
);
141 void bfa_init_trc(struct bfa_s
*bfa
, struct bfa_trc_mod_s
*trcmod
);
142 void bfa_init_log(struct bfa_s
*bfa
, struct bfa_log_mod_s
*logmod
);
143 void bfa_init_aen(struct bfa_s
*bfa
, struct bfa_aen_s
*aen
);
144 void bfa_init_plog(struct bfa_s
*bfa
, struct bfa_plog_s
*plog
);
145 void bfa_detach(struct bfa_s
*bfa
);
146 void bfa_init(struct bfa_s
*bfa
);
147 void bfa_start(struct bfa_s
*bfa
);
148 void bfa_stop(struct bfa_s
*bfa
);
149 void bfa_attach_fcs(struct bfa_s
*bfa
);
150 void bfa_cb_init(void *bfad
, bfa_status_t status
);
151 void bfa_cb_stop(void *bfad
, bfa_status_t status
);
152 void bfa_cb_updateq(void *bfad
, bfa_status_t status
);
154 bfa_boolean_t
bfa_intx(struct bfa_s
*bfa
);
155 void bfa_isr_enable(struct bfa_s
*bfa
);
156 void bfa_isr_disable(struct bfa_s
*bfa
);
157 void bfa_msix_getvecs(struct bfa_s
*bfa
, u32
*msix_vecs_bmap
,
158 u32
*num_vecs
, u32
*max_vec_bit
);
159 #define bfa_msix(__bfa, __vec) ((__bfa)->msix.handler[__vec](__bfa, __vec))
161 void bfa_comp_deq(struct bfa_s
*bfa
, struct list_head
*comp_q
);
162 void bfa_comp_process(struct bfa_s
*bfa
, struct list_head
*comp_q
);
163 void bfa_comp_free(struct bfa_s
*bfa
, struct list_head
*comp_q
);
165 typedef void (*bfa_cb_ioc_t
) (void *cbarg
, enum bfa_status status
);
166 void bfa_iocfc_get_attr(struct bfa_s
*bfa
, struct bfa_iocfc_attr_s
*attr
);
167 bfa_status_t
bfa_iocfc_get_stats(struct bfa_s
*bfa
,
168 struct bfa_iocfc_stats_s
*stats
,
169 bfa_cb_ioc_t cbfn
, void *cbarg
);
170 bfa_status_t
bfa_iocfc_clear_stats(struct bfa_s
*bfa
,
171 bfa_cb_ioc_t cbfn
, void *cbarg
);
172 void bfa_get_attr(struct bfa_s
*bfa
, struct bfa_ioc_attr_s
*ioc_attr
);
174 void bfa_adapter_get_attr(struct bfa_s
*bfa
,
175 struct bfa_adapter_attr_s
*ad_attr
);
176 u64
bfa_adapter_get_id(struct bfa_s
*bfa
);
178 bfa_status_t
bfa_iocfc_israttr_set(struct bfa_s
*bfa
,
179 struct bfa_iocfc_intr_attr_s
*attr
);
181 void bfa_iocfc_enable(struct bfa_s
*bfa
);
182 void bfa_iocfc_disable(struct bfa_s
*bfa
);
183 void bfa_ioc_auto_recover(bfa_boolean_t auto_recover
);
184 void bfa_chip_reset(struct bfa_s
*bfa
);
185 void bfa_cb_ioc_disable(void *bfad
);
186 void bfa_timer_tick(struct bfa_s
*bfa
);
187 #define bfa_timer_start(_bfa, _timer, _timercb, _arg, _timeout) \
188 bfa_timer_begin(&(_bfa)->timer_mod, _timer, _timercb, _arg, _timeout)
191 * BFA debug API functions
193 bfa_status_t
bfa_debug_fwtrc(struct bfa_s
*bfa
, void *trcdata
, int *trclen
);
194 bfa_status_t
bfa_debug_fwsave(struct bfa_s
*bfa
, void *trcdata
, int *trclen
);
195 void bfa_debug_fwsave_clear(struct bfa_s
*bfa
);
197 #include "bfa_priv.h"
199 #endif /* __BFA_H__ */