ALSA: hda - Add quirk for Dell Vostro 1220
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / bfa / bfa_ioc.h
blobd0804406ea1a318c115e1f5ccb6983a9dca58c71
1 /*
2 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
3 * All rights reserved
4 * www.brocade.com
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.
18 #ifndef __BFA_IOC_H__
19 #define __BFA_IOC_H__
21 #include <cs/bfa_sm.h>
22 #include <bfi/bfi.h>
23 #include <bfi/bfi_ioc.h>
24 #include <bfi/bfi_boot.h>
25 #include <bfa_timer.h>
27 /**
28 * PCI device information required by IOC
30 struct bfa_pcidev_s {
31 int pci_slot;
32 u8 pci_func;
33 u16 device_id;
34 bfa_os_addr_t pci_bar_kva;
37 /**
38 * Structure used to remember the DMA-able memory block's KVA and Physical
39 * Address
41 struct bfa_dma_s {
42 void *kva; /*! Kernel virtual address */
43 u64 pa; /*! Physical address */
46 #define BFA_DMA_ALIGN_SZ 256
47 #define BFA_ROUNDUP(_l, _s) (((_l) + ((_s) - 1)) & ~((_s) - 1))
51 #define bfa_dma_addr_set(dma_addr, pa) \
52 __bfa_dma_addr_set(&dma_addr, (u64)pa)
54 static inline void
55 __bfa_dma_addr_set(union bfi_addr_u *dma_addr, u64 pa)
57 dma_addr->a32.addr_lo = (u32) pa;
58 dma_addr->a32.addr_hi = (u32) (bfa_os_u32(pa));
62 #define bfa_dma_be_addr_set(dma_addr, pa) \
63 __bfa_dma_be_addr_set(&dma_addr, (u64)pa)
64 static inline void
65 __bfa_dma_be_addr_set(union bfi_addr_u *dma_addr, u64 pa)
67 dma_addr->a32.addr_lo = (u32) bfa_os_htonl(pa);
68 dma_addr->a32.addr_hi = (u32) bfa_os_htonl(bfa_os_u32(pa));
71 struct bfa_ioc_regs_s {
72 bfa_os_addr_t hfn_mbox_cmd;
73 bfa_os_addr_t hfn_mbox;
74 bfa_os_addr_t lpu_mbox_cmd;
75 bfa_os_addr_t lpu_mbox;
76 bfa_os_addr_t pss_ctl_reg;
77 bfa_os_addr_t pss_err_status_reg;
78 bfa_os_addr_t app_pll_fast_ctl_reg;
79 bfa_os_addr_t app_pll_slow_ctl_reg;
80 bfa_os_addr_t ioc_sem_reg;
81 bfa_os_addr_t ioc_usage_sem_reg;
82 bfa_os_addr_t ioc_init_sem_reg;
83 bfa_os_addr_t ioc_usage_reg;
84 bfa_os_addr_t host_page_num_fn;
85 bfa_os_addr_t heartbeat;
86 bfa_os_addr_t ioc_fwstate;
87 bfa_os_addr_t ll_halt;
88 bfa_os_addr_t err_set;
89 bfa_os_addr_t shirq_isr_next;
90 bfa_os_addr_t shirq_msk_next;
91 bfa_os_addr_t smem_page_start;
92 u32 smem_pg0;
95 #define bfa_reg_read(_raddr) bfa_os_reg_read(_raddr)
96 #define bfa_reg_write(_raddr, _val) bfa_os_reg_write(_raddr, _val)
97 #define bfa_mem_read(_raddr, _off) bfa_os_mem_read(_raddr, _off)
98 #define bfa_mem_write(_raddr, _off, _val) \
99 bfa_os_mem_write(_raddr, _off, _val)
101 * IOC Mailbox structures
103 struct bfa_mbox_cmd_s {
104 struct list_head qe;
105 u32 msg[BFI_IOC_MSGSZ];
109 * IOC mailbox module
111 typedef void (*bfa_ioc_mbox_mcfunc_t)(void *cbarg, struct bfi_mbmsg_s *m);
112 struct bfa_ioc_mbox_mod_s {
113 struct list_head cmd_q; /* pending mbox queue */
114 int nmclass; /* number of handlers */
115 struct {
116 bfa_ioc_mbox_mcfunc_t cbfn; /* message handlers */
117 void *cbarg;
118 } mbhdlr[BFI_MC_MAX];
122 * IOC callback function interfaces
124 typedef void (*bfa_ioc_enable_cbfn_t)(void *bfa, enum bfa_status status);
125 typedef void (*bfa_ioc_disable_cbfn_t)(void *bfa);
126 typedef void (*bfa_ioc_hbfail_cbfn_t)(void *bfa);
127 typedef void (*bfa_ioc_reset_cbfn_t)(void *bfa);
128 struct bfa_ioc_cbfn_s {
129 bfa_ioc_enable_cbfn_t enable_cbfn;
130 bfa_ioc_disable_cbfn_t disable_cbfn;
131 bfa_ioc_hbfail_cbfn_t hbfail_cbfn;
132 bfa_ioc_reset_cbfn_t reset_cbfn;
136 * Heartbeat failure notification queue element.
138 struct bfa_ioc_hbfail_notify_s {
139 struct list_head qe;
140 bfa_ioc_hbfail_cbfn_t cbfn;
141 void *cbarg;
145 * Initialize a heartbeat failure notification structure
147 #define bfa_ioc_hbfail_init(__notify, __cbfn, __cbarg) do { \
148 (__notify)->cbfn = (__cbfn); \
149 (__notify)->cbarg = (__cbarg); \
150 } while (0)
152 struct bfa_ioc_s {
153 bfa_fsm_t fsm;
154 struct bfa_s *bfa;
155 struct bfa_pcidev_s pcidev;
156 struct bfa_timer_mod_s *timer_mod;
157 struct bfa_timer_s ioc_timer;
158 struct bfa_timer_s sem_timer;
159 u32 hb_count;
160 u32 retry_count;
161 struct list_head hb_notify_q;
162 void *dbg_fwsave;
163 int dbg_fwsave_len;
164 bfa_boolean_t dbg_fwsave_once;
165 enum bfi_mclass ioc_mc;
166 struct bfa_ioc_regs_s ioc_regs;
167 struct bfa_trc_mod_s *trcmod;
168 struct bfa_aen_s *aen;
169 struct bfa_log_mod_s *logm;
170 struct bfa_ioc_drv_stats_s stats;
171 bfa_boolean_t auto_recover;
172 bfa_boolean_t fcmode;
173 bfa_boolean_t ctdev;
174 bfa_boolean_t cna;
175 bfa_boolean_t pllinit;
176 u8 port_id;
178 struct bfa_dma_s attr_dma;
179 struct bfi_ioc_attr_s *attr;
180 struct bfa_ioc_cbfn_s *cbfn;
181 struct bfa_ioc_mbox_mod_s mbox_mod;
182 struct bfa_ioc_hwif_s *ioc_hwif;
185 struct bfa_ioc_hwif_s {
186 bfa_status_t (*ioc_pll_init) (struct bfa_ioc_s *ioc);
187 bfa_boolean_t (*ioc_firmware_lock) (struct bfa_ioc_s *ioc);
188 void (*ioc_firmware_unlock) (struct bfa_ioc_s *ioc);
189 u32 * (*ioc_fwimg_get_chunk) (struct bfa_ioc_s *ioc,
190 u32 off);
191 u32 (*ioc_fwimg_get_size) (struct bfa_ioc_s *ioc);
192 void (*ioc_reg_init) (struct bfa_ioc_s *ioc);
193 void (*ioc_map_port) (struct bfa_ioc_s *ioc);
194 void (*ioc_isr_mode_set) (struct bfa_ioc_s *ioc,
195 bfa_boolean_t msix);
196 void (*ioc_notify_hbfail) (struct bfa_ioc_s *ioc);
197 void (*ioc_ownership_reset) (struct bfa_ioc_s *ioc);
200 #define bfa_ioc_pcifn(__ioc) ((__ioc)->pcidev.pci_func)
201 #define bfa_ioc_devid(__ioc) ((__ioc)->pcidev.device_id)
202 #define bfa_ioc_bar0(__ioc) ((__ioc)->pcidev.pci_bar_kva)
203 #define bfa_ioc_portid(__ioc) ((__ioc)->port_id)
204 #define bfa_ioc_fetch_stats(__ioc, __stats) \
205 (((__stats)->drv_stats) = (__ioc)->stats)
206 #define bfa_ioc_clr_stats(__ioc) \
207 bfa_os_memset(&(__ioc)->stats, 0, sizeof((__ioc)->stats))
208 #define bfa_ioc_maxfrsize(__ioc) ((__ioc)->attr->maxfrsize)
209 #define bfa_ioc_rx_bbcredit(__ioc) ((__ioc)->attr->rx_bbcredit)
210 #define bfa_ioc_speed_sup(__ioc) \
211 BFI_ADAPTER_GETP(SPEED, (__ioc)->attr->adapter_prop)
212 #define bfa_ioc_get_nports(__ioc) \
213 BFI_ADAPTER_GETP(NPORTS, (__ioc)->attr->adapter_prop)
215 #define bfa_ioc_stats(_ioc, _stats) ((_ioc)->stats._stats++)
216 #define BFA_IOC_FWIMG_MINSZ (16 * 1024)
218 #define BFA_IOC_FLASH_CHUNK_NO(off) (off / BFI_FLASH_CHUNK_SZ_WORDS)
219 #define BFA_IOC_FLASH_OFFSET_IN_CHUNK(off) (off % BFI_FLASH_CHUNK_SZ_WORDS)
220 #define BFA_IOC_FLASH_CHUNK_ADDR(chunkno) (chunkno * BFI_FLASH_CHUNK_SZ_WORDS)
223 * IOC mailbox interface
225 void bfa_ioc_mbox_queue(struct bfa_ioc_s *ioc, struct bfa_mbox_cmd_s *cmd);
226 void bfa_ioc_mbox_register(struct bfa_ioc_s *ioc,
227 bfa_ioc_mbox_mcfunc_t *mcfuncs);
228 void bfa_ioc_mbox_isr(struct bfa_ioc_s *ioc);
229 void bfa_ioc_mbox_send(struct bfa_ioc_s *ioc, void *ioc_msg, int len);
230 void bfa_ioc_msgget(struct bfa_ioc_s *ioc, void *mbmsg);
231 void bfa_ioc_mbox_regisr(struct bfa_ioc_s *ioc, enum bfi_mclass mc,
232 bfa_ioc_mbox_mcfunc_t cbfn, void *cbarg);
235 * IOC interfaces
237 #define bfa_ioc_pll_init(__ioc) ((__ioc)->ioc_hwif->ioc_pll_init(__ioc))
238 #define bfa_ioc_isr_mode_set(__ioc, __msix) \
239 ((__ioc)->ioc_hwif->ioc_isr_mode_set(__ioc, __msix))
240 #define bfa_ioc_ownership_reset(__ioc) \
241 ((__ioc)->ioc_hwif->ioc_ownership_reset(__ioc))
243 void bfa_ioc_set_ct_hwif(struct bfa_ioc_s *ioc);
244 void bfa_ioc_set_cb_hwif(struct bfa_ioc_s *ioc);
245 void bfa_ioc_attach(struct bfa_ioc_s *ioc, void *bfa,
246 struct bfa_ioc_cbfn_s *cbfn, struct bfa_timer_mod_s *timer_mod,
247 struct bfa_trc_mod_s *trcmod,
248 struct bfa_aen_s *aen, struct bfa_log_mod_s *logm);
249 void bfa_ioc_detach(struct bfa_ioc_s *ioc);
250 void bfa_ioc_pci_init(struct bfa_ioc_s *ioc, struct bfa_pcidev_s *pcidev,
251 enum bfi_mclass mc);
252 u32 bfa_ioc_meminfo(void);
253 void bfa_ioc_mem_claim(struct bfa_ioc_s *ioc, u8 *dm_kva, u64 dm_pa);
254 void bfa_ioc_enable(struct bfa_ioc_s *ioc);
255 void bfa_ioc_disable(struct bfa_ioc_s *ioc);
256 bfa_boolean_t bfa_ioc_intx_claim(struct bfa_ioc_s *ioc);
258 void bfa_ioc_boot(struct bfa_ioc_s *ioc, u32 boot_type, u32 boot_param);
259 void bfa_ioc_isr(struct bfa_ioc_s *ioc, struct bfi_mbmsg_s *msg);
260 void bfa_ioc_error_isr(struct bfa_ioc_s *ioc);
261 bfa_boolean_t bfa_ioc_is_operational(struct bfa_ioc_s *ioc);
262 bfa_boolean_t bfa_ioc_is_disabled(struct bfa_ioc_s *ioc);
263 bfa_boolean_t bfa_ioc_fw_mismatch(struct bfa_ioc_s *ioc);
264 bfa_boolean_t bfa_ioc_adapter_is_disabled(struct bfa_ioc_s *ioc);
265 void bfa_ioc_cfg_complete(struct bfa_ioc_s *ioc);
266 enum bfa_ioc_type_e bfa_ioc_get_type(struct bfa_ioc_s *ioc);
267 void bfa_ioc_get_adapter_serial_num(struct bfa_ioc_s *ioc, char *serial_num);
268 void bfa_ioc_get_adapter_fw_ver(struct bfa_ioc_s *ioc, char *fw_ver);
269 void bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc_s *ioc, char *optrom_ver);
270 void bfa_ioc_get_adapter_model(struct bfa_ioc_s *ioc, char *model);
271 void bfa_ioc_get_adapter_manufacturer(struct bfa_ioc_s *ioc,
272 char *manufacturer);
273 void bfa_ioc_get_pci_chip_rev(struct bfa_ioc_s *ioc, char *chip_rev);
274 enum bfa_ioc_state bfa_ioc_get_state(struct bfa_ioc_s *ioc);
276 void bfa_ioc_get_attr(struct bfa_ioc_s *ioc, struct bfa_ioc_attr_s *ioc_attr);
277 void bfa_ioc_get_adapter_attr(struct bfa_ioc_s *ioc,
278 struct bfa_adapter_attr_s *ad_attr);
279 int bfa_ioc_debug_trcsz(bfa_boolean_t auto_recover);
280 void bfa_ioc_debug_memclaim(struct bfa_ioc_s *ioc, void *dbg_fwsave);
281 bfa_status_t bfa_ioc_debug_fwsave(struct bfa_ioc_s *ioc, void *trcdata,
282 int *trclen);
283 void bfa_ioc_debug_fwsave_clear(struct bfa_ioc_s *ioc);
284 bfa_status_t bfa_ioc_debug_fwtrc(struct bfa_ioc_s *ioc, void *trcdata,
285 int *trclen);
286 u32 bfa_ioc_smem_pgnum(struct bfa_ioc_s *ioc, u32 fmaddr);
287 u32 bfa_ioc_smem_pgoff(struct bfa_ioc_s *ioc, u32 fmaddr);
288 void bfa_ioc_set_fcmode(struct bfa_ioc_s *ioc);
289 bfa_boolean_t bfa_ioc_get_fcmode(struct bfa_ioc_s *ioc);
290 void bfa_ioc_hbfail_register(struct bfa_ioc_s *ioc,
291 struct bfa_ioc_hbfail_notify_s *notify);
292 bfa_boolean_t bfa_ioc_sem_get(bfa_os_addr_t sem_reg);
293 void bfa_ioc_sem_release(bfa_os_addr_t sem_reg);
294 void bfa_ioc_hw_sem_release(struct bfa_ioc_s *ioc);
295 void bfa_ioc_fwver_get(struct bfa_ioc_s *ioc,
296 struct bfi_ioc_image_hdr_s *fwhdr);
297 bfa_boolean_t bfa_ioc_fwver_cmp(struct bfa_ioc_s *ioc,
298 struct bfi_ioc_image_hdr_s *fwhdr);
301 * bfa mfg wwn API functions
303 wwn_t bfa_ioc_get_pwwn(struct bfa_ioc_s *ioc);
304 wwn_t bfa_ioc_get_nwwn(struct bfa_ioc_s *ioc);
305 wwn_t bfa_ioc_get_wwn_naa5(struct bfa_ioc_s *ioc, u16 inst);
306 mac_t bfa_ioc_get_mac(struct bfa_ioc_s *ioc);
307 u64 bfa_ioc_get_adid(struct bfa_ioc_s *ioc);
309 #endif /* __BFA_IOC_H__ */