blob: 4613bddd58e41eca67f7ce631aa5fb77815fecbc [file] [log] [blame]
Jing Huang7725ccf2009-09-23 17:46:15 -07001/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07002 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
Jing Huang7725ccf2009-09-23 17:46:15 -07003 * All rights reserved
4 * www.brocade.com
5 *
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7 *
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
11 *
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.
16 */
17
Maggie Zhangf16a1752010-12-09 19:12:32 -080018#include "bfad_drv.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070019#include "bfa_modules.h"
Krishna Gudipati11189202011-06-13 15:50:35 -070020#include "bfi_reg.h"
Jing Huang7725ccf2009-09-23 17:46:15 -070021
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070022BFA_TRC_FILE(HAL, CORE);
Jing Huang7725ccf2009-09-23 17:46:15 -070023
Jing Huang5fbe25c2010-10-18 17:17:23 -070024/*
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080025 * BFA module list terminated by NULL
26 */
27static struct bfa_module_s *hal_mods[] = {
Krishna Gudipati3d7fc662011-06-24 20:28:17 -070028 &hal_mod_fcdiag,
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080029 &hal_mod_sgpg,
30 &hal_mod_fcport,
31 &hal_mod_fcxp,
32 &hal_mod_lps,
33 &hal_mod_uf,
34 &hal_mod_rport,
Krishna Gudipatie2187d72011-06-13 15:53:58 -070035 &hal_mod_fcp,
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080036 NULL
37};
38
39/*
40 * Message handlers for various modules.
41 */
42static bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
43 bfa_isr_unhandled, /* NONE */
44 bfa_isr_unhandled, /* BFI_MC_IOC */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -070045 bfa_fcdiag_intr, /* BFI_MC_DIAG */
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080046 bfa_isr_unhandled, /* BFI_MC_FLASH */
47 bfa_isr_unhandled, /* BFI_MC_CEE */
48 bfa_fcport_isr, /* BFI_MC_FCPORT */
49 bfa_isr_unhandled, /* BFI_MC_IOCFC */
50 bfa_isr_unhandled, /* BFI_MC_LL */
51 bfa_uf_isr, /* BFI_MC_UF */
52 bfa_fcxp_isr, /* BFI_MC_FCXP */
53 bfa_lps_isr, /* BFI_MC_LPS */
54 bfa_rport_isr, /* BFI_MC_RPORT */
Krishna Gudipatie2187d72011-06-13 15:53:58 -070055 bfa_itn_isr, /* BFI_MC_ITN */
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080056 bfa_isr_unhandled, /* BFI_MC_IOIM_READ */
57 bfa_isr_unhandled, /* BFI_MC_IOIM_WRITE */
58 bfa_isr_unhandled, /* BFI_MC_IOIM_IO */
59 bfa_ioim_isr, /* BFI_MC_IOIM */
60 bfa_ioim_good_comp_isr, /* BFI_MC_IOIM_IOCOM */
61 bfa_tskim_isr, /* BFI_MC_TSKIM */
62 bfa_isr_unhandled, /* BFI_MC_SBOOT */
63 bfa_isr_unhandled, /* BFI_MC_IPFC */
64 bfa_isr_unhandled, /* BFI_MC_PORT */
65 bfa_isr_unhandled, /* --------- */
66 bfa_isr_unhandled, /* --------- */
67 bfa_isr_unhandled, /* --------- */
68 bfa_isr_unhandled, /* --------- */
69 bfa_isr_unhandled, /* --------- */
70 bfa_isr_unhandled, /* --------- */
71 bfa_isr_unhandled, /* --------- */
72 bfa_isr_unhandled, /* --------- */
73 bfa_isr_unhandled, /* --------- */
74 bfa_isr_unhandled, /* --------- */
75};
76/*
77 * Message handlers for mailbox command classes
78 */
79static bfa_ioc_mbox_mcfunc_t bfa_mbox_isrs[BFI_MC_MAX] = {
80 NULL,
81 NULL, /* BFI_MC_IOC */
82 NULL, /* BFI_MC_DIAG */
83 NULL, /* BFI_MC_FLASH */
84 NULL, /* BFI_MC_CEE */
85 NULL, /* BFI_MC_PORT */
86 bfa_iocfc_isr, /* BFI_MC_IOCFC */
87 NULL,
88};
89
90
91
92static void
Krishna Gudipati45070252011-06-24 20:24:29 -070093bfa_com_port_attach(struct bfa_s *bfa)
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080094{
95 struct bfa_port_s *port = &bfa->modules.port;
Krishna Gudipati45070252011-06-24 20:24:29 -070096 struct bfa_mem_dma_s *port_dma = BFA_MEM_PORT_DMA(bfa);
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080097
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080098 bfa_port_attach(port, &bfa->ioc, bfa, bfa->trcmod);
Krishna Gudipati45070252011-06-24 20:24:29 -070099 bfa_port_mem_claim(port, port_dma->kva_curp, port_dma->dma_curp);
Maggie Zhangb77ee1f2010-12-09 19:09:26 -0800100}
101
102/*
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700103 * ablk module attach
104 */
105static void
Krishna Gudipati45070252011-06-24 20:24:29 -0700106bfa_com_ablk_attach(struct bfa_s *bfa)
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700107{
108 struct bfa_ablk_s *ablk = &bfa->modules.ablk;
Krishna Gudipati45070252011-06-24 20:24:29 -0700109 struct bfa_mem_dma_s *ablk_dma = BFA_MEM_ABLK_DMA(bfa);
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700110
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700111 bfa_ablk_attach(ablk, &bfa->ioc);
Krishna Gudipati45070252011-06-24 20:24:29 -0700112 bfa_ablk_memclaim(ablk, ablk_dma->kva_curp, ablk_dma->dma_curp);
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700113}
114
Krishna Gudipati148d6102011-06-24 20:25:36 -0700115static void
116bfa_com_cee_attach(struct bfa_s *bfa)
117{
118 struct bfa_cee_s *cee = &bfa->modules.cee;
119 struct bfa_mem_dma_s *cee_dma = BFA_MEM_CEE_DMA(bfa);
120
121 cee->trcmod = bfa->trcmod;
122 bfa_cee_attach(cee, &bfa->ioc, bfa);
123 bfa_cee_mem_claim(cee, cee_dma->kva_curp, cee_dma->dma_curp);
124}
125
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700126static void
127bfa_com_sfp_attach(struct bfa_s *bfa)
128{
129 struct bfa_sfp_s *sfp = BFA_SFP_MOD(bfa);
130 struct bfa_mem_dma_s *sfp_dma = BFA_MEM_SFP_DMA(bfa);
131
132 bfa_sfp_attach(sfp, &bfa->ioc, bfa, bfa->trcmod);
133 bfa_sfp_memclaim(sfp, sfp_dma->kva_curp, sfp_dma->dma_curp);
134}
135
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700136static void
137bfa_com_flash_attach(struct bfa_s *bfa, bfa_boolean_t mincfg)
138{
139 struct bfa_flash_s *flash = BFA_FLASH(bfa);
140 struct bfa_mem_dma_s *flash_dma = BFA_MEM_FLASH_DMA(bfa);
141
142 bfa_flash_attach(flash, &bfa->ioc, bfa, bfa->trcmod, mincfg);
143 bfa_flash_memclaim(flash, flash_dma->kva_curp,
144 flash_dma->dma_curp, mincfg);
145}
146
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700147static void
148bfa_com_diag_attach(struct bfa_s *bfa)
149{
150 struct bfa_diag_s *diag = BFA_DIAG_MOD(bfa);
151 struct bfa_mem_dma_s *diag_dma = BFA_MEM_DIAG_DMA(bfa);
152
153 bfa_diag_attach(diag, &bfa->ioc, bfa, bfa_fcport_beacon, bfa->trcmod);
154 bfa_diag_memclaim(diag, diag_dma->kva_curp, diag_dma->dma_curp);
155}
156
Krishna Gudipati3350d982011-06-24 20:28:37 -0700157static void
158bfa_com_phy_attach(struct bfa_s *bfa, bfa_boolean_t mincfg)
159{
160 struct bfa_phy_s *phy = BFA_PHY(bfa);
161 struct bfa_mem_dma_s *phy_dma = BFA_MEM_PHY_DMA(bfa);
162
163 bfa_phy_attach(phy, &bfa->ioc, bfa, bfa->trcmod, mincfg);
164 bfa_phy_memclaim(phy, phy_dma->kva_curp, phy_dma->dma_curp, mincfg);
165}
166
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700167/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700168 * BFA IOC FC related definitions
169 */
170
Jing Huang5fbe25c2010-10-18 17:17:23 -0700171/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700172 * IOC local definitions
173 */
174#define BFA_IOCFC_TOV 5000 /* msecs */
175
176enum {
177 BFA_IOCFC_ACT_NONE = 0,
178 BFA_IOCFC_ACT_INIT = 1,
179 BFA_IOCFC_ACT_STOP = 2,
180 BFA_IOCFC_ACT_DISABLE = 3,
Krishna Gudipati60138062011-06-24 20:25:15 -0700181 BFA_IOCFC_ACT_ENABLE = 4,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700182};
183
184#define DEF_CFG_NUM_FABRICS 1
185#define DEF_CFG_NUM_LPORTS 256
186#define DEF_CFG_NUM_CQS 4
187#define DEF_CFG_NUM_IOIM_REQS (BFA_IOIM_MAX)
188#define DEF_CFG_NUM_TSKIM_REQS 128
189#define DEF_CFG_NUM_FCXP_REQS 64
190#define DEF_CFG_NUM_UF_BUFS 64
191#define DEF_CFG_NUM_RPORTS 1024
192#define DEF_CFG_NUM_ITNIMS (DEF_CFG_NUM_RPORTS)
193#define DEF_CFG_NUM_TINS 256
194
195#define DEF_CFG_NUM_SGPGS 2048
196#define DEF_CFG_NUM_REQQ_ELEMS 256
197#define DEF_CFG_NUM_RSPQ_ELEMS 64
198#define DEF_CFG_NUM_SBOOT_TGTS 16
199#define DEF_CFG_NUM_SBOOT_LUNS 16
200
Jing Huang5fbe25c2010-10-18 17:17:23 -0700201/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700202 * forward declaration for IOC FC functions
203 */
204static void bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status);
205static void bfa_iocfc_disable_cbfn(void *bfa_arg);
206static void bfa_iocfc_hbfail_cbfn(void *bfa_arg);
207static void bfa_iocfc_reset_cbfn(void *bfa_arg);
208static struct bfa_ioc_cbfn_s bfa_iocfc_cbfn;
209
Jing Huang5fbe25c2010-10-18 17:17:23 -0700210/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700211 * BFA Interrupt handling functions
212 */
213static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700214bfa_reqq_resume(struct bfa_s *bfa, int qid)
215{
216 struct list_head *waitq, *qe, *qen;
217 struct bfa_reqq_wait_s *wqe;
218
219 waitq = bfa_reqq(bfa, qid);
220 list_for_each_safe(qe, qen, waitq) {
Jing Huang5fbe25c2010-10-18 17:17:23 -0700221 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700222 * Callback only as long as there is room in request queue
223 */
224 if (bfa_reqq_full(bfa, qid))
225 break;
226
227 list_del(qe);
228 wqe = (struct bfa_reqq_wait_s *) qe;
229 wqe->qresume(wqe->cbarg);
230 }
231}
232
Krishna Gudipati11189202011-06-13 15:50:35 -0700233static inline void
234bfa_isr_rspq(struct bfa_s *bfa, int qid)
235{
236 struct bfi_msg_s *m;
237 u32 pi, ci;
238 struct list_head *waitq;
239
Krishna Gudipati11189202011-06-13 15:50:35 -0700240 ci = bfa_rspq_ci(bfa, qid);
241 pi = bfa_rspq_pi(bfa, qid);
242
243 while (ci != pi) {
244 m = bfa_rspq_elem(bfa, qid, ci);
245 WARN_ON(m->mhdr.msg_class >= BFI_MC_MAX);
246
247 bfa_isrs[m->mhdr.msg_class] (bfa, m);
248 CQ_INCR(ci, bfa->iocfc.cfg.drvcfg.num_rspq_elems);
249 }
250
251 /*
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700252 * acknowledge RME completions and update CI
Krishna Gudipati11189202011-06-13 15:50:35 -0700253 */
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700254 bfa_isr_rspq_ack(bfa, qid, ci);
Krishna Gudipati11189202011-06-13 15:50:35 -0700255
256 /*
257 * Resume any pending requests in the corresponding reqq.
258 */
259 waitq = bfa_reqq(bfa, qid);
260 if (!list_empty(waitq))
261 bfa_reqq_resume(bfa, qid);
262}
263
264static inline void
265bfa_isr_reqq(struct bfa_s *bfa, int qid)
266{
267 struct list_head *waitq;
268
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700269 bfa_isr_reqq_ack(bfa, qid);
Krishna Gudipati11189202011-06-13 15:50:35 -0700270
271 /*
272 * Resume any pending requests in the corresponding reqq.
273 */
274 waitq = bfa_reqq(bfa, qid);
275 if (!list_empty(waitq))
276 bfa_reqq_resume(bfa, qid);
277}
278
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700279void
280bfa_msix_all(struct bfa_s *bfa, int vec)
281{
Krishna Gudipati10a07372011-06-24 20:23:38 -0700282 u32 intr, qintr;
283 int queue;
284
285 intr = readl(bfa->iocfc.bfa_regs.intr_status);
286 if (!intr)
287 return;
288
289 /*
290 * RME completion queue interrupt
291 */
292 qintr = intr & __HFN_INT_RME_MASK;
293 if (qintr && bfa->queue_process) {
294 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
295 bfa_isr_rspq(bfa, queue);
296 }
297
298 intr &= ~qintr;
299 if (!intr)
300 return;
301
302 /*
303 * CPE completion queue interrupt
304 */
305 qintr = intr & __HFN_INT_CPE_MASK;
306 if (qintr && bfa->queue_process) {
307 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
308 bfa_isr_reqq(bfa, queue);
309 }
310 intr &= ~qintr;
311 if (!intr)
312 return;
313
314 bfa_msix_lpu_err(bfa, intr);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700315}
316
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700317bfa_boolean_t
318bfa_intx(struct bfa_s *bfa)
319{
320 u32 intr, qintr;
321 int queue;
322
Jing Huang53440262010-10-18 17:12:29 -0700323 intr = readl(bfa->iocfc.bfa_regs.intr_status);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700324
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700325 qintr = intr & (__HFN_INT_RME_MASK | __HFN_INT_CPE_MASK);
326 if (qintr)
327 writel(qintr, bfa->iocfc.bfa_regs.intr_status);
328
Jing Huang5fbe25c2010-10-18 17:17:23 -0700329 /*
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700330 * Unconditional RME completion queue interrupt
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700331 */
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700332 if (bfa->queue_process) {
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700333 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
334 bfa_isr_rspq(bfa, queue);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700335 }
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700336
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700337 if (!intr)
338 return BFA_TRUE;
339
Jing Huang5fbe25c2010-10-18 17:17:23 -0700340 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700341 * CPE completion queue interrupt
342 */
343 qintr = intr & __HFN_INT_CPE_MASK;
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700344 if (qintr && bfa->queue_process) {
345 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
346 bfa_isr_reqq(bfa, queue);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700347 }
348 intr &= ~qintr;
349 if (!intr)
350 return BFA_TRUE;
351
352 bfa_msix_lpu_err(bfa, intr);
353
354 return BFA_TRUE;
355}
356
357void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700358bfa_isr_enable(struct bfa_s *bfa)
359{
Krishna Gudipati11189202011-06-13 15:50:35 -0700360 u32 umsk;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700361 int pci_func = bfa_ioc_pcifn(&bfa->ioc);
362
363 bfa_trc(bfa, pci_func);
364
Krishna Gudipati775c7742011-06-13 15:52:12 -0700365 bfa_msix_ctrl_install(bfa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700366
Krishna Gudipati11189202011-06-13 15:50:35 -0700367 if (bfa_asic_id_ct2(bfa->ioc.pcidev.device_id)) {
368 umsk = __HFN_INT_ERR_MASK_CT2;
369 umsk |= pci_func == 0 ?
370 __HFN_INT_FN0_MASK_CT2 : __HFN_INT_FN1_MASK_CT2;
371 } else {
372 umsk = __HFN_INT_ERR_MASK;
373 umsk |= pci_func == 0 ? __HFN_INT_FN0_MASK : __HFN_INT_FN1_MASK;
374 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700375
Krishna Gudipati11189202011-06-13 15:50:35 -0700376 writel(umsk, bfa->iocfc.bfa_regs.intr_status);
377 writel(~umsk, bfa->iocfc.bfa_regs.intr_mask);
378 bfa->iocfc.intr_mask = ~umsk;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700379 bfa_isr_mode_set(bfa, bfa->msix.nvecs != 0);
380}
381
382void
383bfa_isr_disable(struct bfa_s *bfa)
384{
385 bfa_isr_mode_set(bfa, BFA_FALSE);
Jing Huang53440262010-10-18 17:12:29 -0700386 writel(-1L, bfa->iocfc.bfa_regs.intr_mask);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700387 bfa_msix_uninstall(bfa);
388}
389
390void
Krishna Gudipati11189202011-06-13 15:50:35 -0700391bfa_msix_reqq(struct bfa_s *bfa, int vec)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700392{
Krishna Gudipati11189202011-06-13 15:50:35 -0700393 bfa_isr_reqq(bfa, vec - bfa->iocfc.hwif.cpe_vec_q0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700394}
395
396void
397bfa_isr_unhandled(struct bfa_s *bfa, struct bfi_msg_s *m)
398{
399 bfa_trc(bfa, m->mhdr.msg_class);
400 bfa_trc(bfa, m->mhdr.msg_id);
401 bfa_trc(bfa, m->mhdr.mtag.i2htok);
Jing Huangd4b671c2010-12-26 21:46:35 -0800402 WARN_ON(1);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700403 bfa_trc_stop(bfa->trcmod);
404}
405
406void
Krishna Gudipati11189202011-06-13 15:50:35 -0700407bfa_msix_rspq(struct bfa_s *bfa, int vec)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700408{
Krishna Gudipati11189202011-06-13 15:50:35 -0700409 bfa_isr_rspq(bfa, vec - bfa->iocfc.hwif.rme_vec_q0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700410}
411
412void
413bfa_msix_lpu_err(struct bfa_s *bfa, int vec)
414{
415 u32 intr, curr_value;
Krishna Gudipati11189202011-06-13 15:50:35 -0700416 bfa_boolean_t lpu_isr, halt_isr, pss_isr;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700417
Jing Huang53440262010-10-18 17:12:29 -0700418 intr = readl(bfa->iocfc.bfa_regs.intr_status);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700419
Krishna Gudipati11189202011-06-13 15:50:35 -0700420 if (bfa_asic_id_ct2(bfa->ioc.pcidev.device_id)) {
421 halt_isr = intr & __HFN_INT_CPQ_HALT_CT2;
422 pss_isr = intr & __HFN_INT_ERR_PSS_CT2;
423 lpu_isr = intr & (__HFN_INT_MBOX_LPU0_CT2 |
424 __HFN_INT_MBOX_LPU1_CT2);
425 intr &= __HFN_INT_ERR_MASK_CT2;
426 } else {
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700427 halt_isr = bfa_asic_id_ct(bfa->ioc.pcidev.device_id) ?
428 (intr & __HFN_INT_LL_HALT) : 0;
Krishna Gudipati11189202011-06-13 15:50:35 -0700429 pss_isr = intr & __HFN_INT_ERR_PSS;
430 lpu_isr = intr & (__HFN_INT_MBOX_LPU0 | __HFN_INT_MBOX_LPU1);
431 intr &= __HFN_INT_ERR_MASK;
432 }
433
434 if (lpu_isr)
Maggie Zhangda99dcc2010-12-09 19:13:20 -0800435 bfa_ioc_mbox_isr(&bfa->ioc);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700436
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700437 if (intr) {
Krishna Gudipati11189202011-06-13 15:50:35 -0700438 if (halt_isr) {
Jing Huang5fbe25c2010-10-18 17:17:23 -0700439 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700440 * If LL_HALT bit is set then FW Init Halt LL Port
441 * Register needs to be cleared as well so Interrupt
442 * Status Register will be cleared.
443 */
Jing Huang53440262010-10-18 17:12:29 -0700444 curr_value = readl(bfa->ioc.ioc_regs.ll_halt);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700445 curr_value &= ~__FW_INIT_HALT_P;
Jing Huang53440262010-10-18 17:12:29 -0700446 writel(curr_value, bfa->ioc.ioc_regs.ll_halt);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700447 }
448
Krishna Gudipati11189202011-06-13 15:50:35 -0700449 if (pss_isr) {
Jing Huang5fbe25c2010-10-18 17:17:23 -0700450 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700451 * ERR_PSS bit needs to be cleared as well in case
452 * interrups are shared so driver's interrupt handler is
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300453 * still called even though it is already masked out.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700454 */
Jing Huang53440262010-10-18 17:12:29 -0700455 curr_value = readl(
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700456 bfa->ioc.ioc_regs.pss_err_status_reg);
Jing Huang53440262010-10-18 17:12:29 -0700457 writel(curr_value,
458 bfa->ioc.ioc_regs.pss_err_status_reg);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700459 }
460
Jing Huang53440262010-10-18 17:12:29 -0700461 writel(intr, bfa->iocfc.bfa_regs.intr_status);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800462 bfa_ioc_error_isr(&bfa->ioc);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700463 }
464}
465
Jing Huang5fbe25c2010-10-18 17:17:23 -0700466/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700467 * BFA IOC FC related functions
468 */
469
Jing Huang5fbe25c2010-10-18 17:17:23 -0700470/*
Maggie Zhangdf0f1932010-12-09 19:07:46 -0800471 * BFA IOC private functions
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700472 */
473
Jing Huang5fbe25c2010-10-18 17:17:23 -0700474/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700475 * Use the Mailbox interface to send BFI_IOCFC_H2I_CFG_REQ
476 */
477static void
478bfa_iocfc_send_cfg(void *bfa_arg)
479{
480 struct bfa_s *bfa = bfa_arg;
481 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
482 struct bfi_iocfc_cfg_req_s cfg_req;
483 struct bfi_iocfc_cfg_s *cfg_info = iocfc->cfginfo;
484 struct bfa_iocfc_cfg_s *cfg = &iocfc->cfg;
485 int i;
486
Jing Huangd4b671c2010-12-26 21:46:35 -0800487 WARN_ON(cfg->fwcfg.num_cqs > BFI_IOC_MAX_CQS);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700488 bfa_trc(bfa, cfg->fwcfg.num_cqs);
489
490 bfa_iocfc_reset_queues(bfa);
491
Jing Huang5fbe25c2010-10-18 17:17:23 -0700492 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700493 * initialize IOC configuration info
494 */
Krishna Gudipati10a07372011-06-24 20:23:38 -0700495 cfg_info->single_msix_vec = 0;
496 if (bfa->msix.nvecs == 1)
497 cfg_info->single_msix_vec = 1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700498 cfg_info->endian_sig = BFI_IOC_ENDIAN_SIG;
499 cfg_info->num_cqs = cfg->fwcfg.num_cqs;
Krishna Gudipatie2187d72011-06-13 15:53:58 -0700500 cfg_info->num_ioim_reqs = cpu_to_be16(cfg->fwcfg.num_ioim_reqs);
501 cfg_info->num_fwtio_reqs = cpu_to_be16(cfg->fwcfg.num_fwtio_reqs);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700502
503 bfa_dma_be_addr_set(cfg_info->cfgrsp_addr, iocfc->cfgrsp_dma.pa);
Jing Huang5fbe25c2010-10-18 17:17:23 -0700504 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700505 * dma map REQ and RSP circular queues and shadow pointers
506 */
507 for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
508 bfa_dma_be_addr_set(cfg_info->req_cq_ba[i],
509 iocfc->req_cq_ba[i].pa);
510 bfa_dma_be_addr_set(cfg_info->req_shadow_ci[i],
511 iocfc->req_cq_shadow_ci[i].pa);
512 cfg_info->req_cq_elems[i] =
Jing Huangba816ea2010-10-18 17:10:50 -0700513 cpu_to_be16(cfg->drvcfg.num_reqq_elems);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700514
515 bfa_dma_be_addr_set(cfg_info->rsp_cq_ba[i],
516 iocfc->rsp_cq_ba[i].pa);
517 bfa_dma_be_addr_set(cfg_info->rsp_shadow_pi[i],
518 iocfc->rsp_cq_shadow_pi[i].pa);
519 cfg_info->rsp_cq_elems[i] =
Jing Huangba816ea2010-10-18 17:10:50 -0700520 cpu_to_be16(cfg->drvcfg.num_rspq_elems);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700521 }
522
Jing Huang5fbe25c2010-10-18 17:17:23 -0700523 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700524 * Enable interrupt coalescing if it is driver init path
525 * and not ioc disable/enable path.
526 */
527 if (!iocfc->cfgdone)
528 cfg_info->intr_attr.coalesce = BFA_TRUE;
529
530 iocfc->cfgdone = BFA_FALSE;
531
Jing Huang5fbe25c2010-10-18 17:17:23 -0700532 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700533 * dma map IOC configuration itself
534 */
535 bfi_h2i_set(cfg_req.mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_CFG_REQ,
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700536 bfa_fn_lpu(bfa));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700537 bfa_dma_be_addr_set(cfg_req.ioc_cfg_dma_addr, iocfc->cfg_info.pa);
538
539 bfa_ioc_mbox_send(&bfa->ioc, &cfg_req,
540 sizeof(struct bfi_iocfc_cfg_req_s));
541}
542
543static void
544bfa_iocfc_init_mem(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
545 struct bfa_pcidev_s *pcidev)
546{
547 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
548
549 bfa->bfad = bfad;
550 iocfc->bfa = bfa;
551 iocfc->action = BFA_IOCFC_ACT_NONE;
552
Jing Huang6a18b162010-10-18 17:08:54 -0700553 iocfc->cfg = *cfg;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700554
Jing Huang5fbe25c2010-10-18 17:17:23 -0700555 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700556 * Initialize chip specific handlers.
557 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700558 if (bfa_asic_id_ctc(bfa_ioc_devid(&bfa->ioc))) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700559 iocfc->hwif.hw_reginit = bfa_hwct_reginit;
560 iocfc->hwif.hw_reqq_ack = bfa_hwct_reqq_ack;
561 iocfc->hwif.hw_rspq_ack = bfa_hwct_rspq_ack;
562 iocfc->hwif.hw_msix_init = bfa_hwct_msix_init;
Krishna Gudipati775c7742011-06-13 15:52:12 -0700563 iocfc->hwif.hw_msix_ctrl_install = bfa_hwct_msix_ctrl_install;
564 iocfc->hwif.hw_msix_queue_install = bfa_hwct_msix_queue_install;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700565 iocfc->hwif.hw_msix_uninstall = bfa_hwct_msix_uninstall;
566 iocfc->hwif.hw_isr_mode_set = bfa_hwct_isr_mode_set;
567 iocfc->hwif.hw_msix_getvecs = bfa_hwct_msix_getvecs;
568 iocfc->hwif.hw_msix_get_rme_range = bfa_hwct_msix_get_rme_range;
Krishna Gudipati11189202011-06-13 15:50:35 -0700569 iocfc->hwif.rme_vec_q0 = BFI_MSIX_RME_QMIN_CT;
570 iocfc->hwif.cpe_vec_q0 = BFI_MSIX_CPE_QMIN_CT;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700571 } else {
572 iocfc->hwif.hw_reginit = bfa_hwcb_reginit;
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700573 iocfc->hwif.hw_reqq_ack = NULL;
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700574 iocfc->hwif.hw_rspq_ack = bfa_hwcb_rspq_ack;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700575 iocfc->hwif.hw_msix_init = bfa_hwcb_msix_init;
Krishna Gudipati775c7742011-06-13 15:52:12 -0700576 iocfc->hwif.hw_msix_ctrl_install = bfa_hwcb_msix_ctrl_install;
577 iocfc->hwif.hw_msix_queue_install = bfa_hwcb_msix_queue_install;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700578 iocfc->hwif.hw_msix_uninstall = bfa_hwcb_msix_uninstall;
579 iocfc->hwif.hw_isr_mode_set = bfa_hwcb_isr_mode_set;
580 iocfc->hwif.hw_msix_getvecs = bfa_hwcb_msix_getvecs;
581 iocfc->hwif.hw_msix_get_rme_range = bfa_hwcb_msix_get_rme_range;
Krishna Gudipati11189202011-06-13 15:50:35 -0700582 iocfc->hwif.rme_vec_q0 = BFI_MSIX_RME_QMIN_CB +
583 bfa_ioc_pcifn(&bfa->ioc) * BFI_IOC_MAX_CQS;
584 iocfc->hwif.cpe_vec_q0 = BFI_MSIX_CPE_QMIN_CB +
585 bfa_ioc_pcifn(&bfa->ioc) * BFI_IOC_MAX_CQS;
586 }
587
588 if (bfa_asic_id_ct2(bfa_ioc_devid(&bfa->ioc))) {
589 iocfc->hwif.hw_reginit = bfa_hwct2_reginit;
590 iocfc->hwif.hw_isr_mode_set = NULL;
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700591 iocfc->hwif.hw_rspq_ack = bfa_hwct2_rspq_ack;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700592 }
593
594 iocfc->hwif.hw_reginit(bfa);
595 bfa->msix.nvecs = 0;
596}
597
598static void
Krishna Gudipati45070252011-06-24 20:24:29 -0700599bfa_iocfc_mem_claim(struct bfa_s *bfa, struct bfa_iocfc_cfg_s *cfg)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700600{
Krishna Gudipati45070252011-06-24 20:24:29 -0700601 u8 *dm_kva = NULL;
602 u64 dm_pa = 0;
603 int i, per_reqq_sz, per_rspq_sz, dbgsz;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700604 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
Krishna Gudipati45070252011-06-24 20:24:29 -0700605 struct bfa_mem_dma_s *ioc_dma = BFA_MEM_IOC_DMA(bfa);
606 struct bfa_mem_dma_s *iocfc_dma = BFA_MEM_IOCFC_DMA(bfa);
607 struct bfa_mem_dma_s *reqq_dma, *rspq_dma;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700608
Krishna Gudipati45070252011-06-24 20:24:29 -0700609 /* First allocate dma memory for IOC */
610 bfa_ioc_mem_claim(&bfa->ioc, bfa_mem_dma_virt(ioc_dma),
611 bfa_mem_dma_phys(ioc_dma));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700612
Krishna Gudipati45070252011-06-24 20:24:29 -0700613 /* Claim DMA-able memory for the request/response queues */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700614 per_reqq_sz = BFA_ROUNDUP((cfg->drvcfg.num_reqq_elems * BFI_LMSG_SZ),
Krishna Gudipati45070252011-06-24 20:24:29 -0700615 BFA_DMA_ALIGN_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700616 per_rspq_sz = BFA_ROUNDUP((cfg->drvcfg.num_rspq_elems * BFI_LMSG_SZ),
Krishna Gudipati45070252011-06-24 20:24:29 -0700617 BFA_DMA_ALIGN_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700618
619 for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
Krishna Gudipati45070252011-06-24 20:24:29 -0700620 reqq_dma = BFA_MEM_REQQ_DMA(bfa, i);
621 iocfc->req_cq_ba[i].kva = bfa_mem_dma_virt(reqq_dma);
622 iocfc->req_cq_ba[i].pa = bfa_mem_dma_phys(reqq_dma);
623 memset(iocfc->req_cq_ba[i].kva, 0, per_reqq_sz);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700624
Krishna Gudipati45070252011-06-24 20:24:29 -0700625 rspq_dma = BFA_MEM_RSPQ_DMA(bfa, i);
626 iocfc->rsp_cq_ba[i].kva = bfa_mem_dma_virt(rspq_dma);
627 iocfc->rsp_cq_ba[i].pa = bfa_mem_dma_phys(rspq_dma);
628 memset(iocfc->rsp_cq_ba[i].kva, 0, per_rspq_sz);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700629 }
630
Krishna Gudipati45070252011-06-24 20:24:29 -0700631 /* Claim IOCFC dma memory - for shadow CI/PI */
632 dm_kva = bfa_mem_dma_virt(iocfc_dma);
633 dm_pa = bfa_mem_dma_phys(iocfc_dma);
634
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700635 for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
636 iocfc->req_cq_shadow_ci[i].kva = dm_kva;
637 iocfc->req_cq_shadow_ci[i].pa = dm_pa;
638 dm_kva += BFA_CACHELINE_SZ;
639 dm_pa += BFA_CACHELINE_SZ;
640
641 iocfc->rsp_cq_shadow_pi[i].kva = dm_kva;
642 iocfc->rsp_cq_shadow_pi[i].pa = dm_pa;
643 dm_kva += BFA_CACHELINE_SZ;
644 dm_pa += BFA_CACHELINE_SZ;
645 }
646
Krishna Gudipati45070252011-06-24 20:24:29 -0700647 /* Claim IOCFC dma memory - for the config info page */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700648 bfa->iocfc.cfg_info.kva = dm_kva;
649 bfa->iocfc.cfg_info.pa = dm_pa;
650 bfa->iocfc.cfginfo = (struct bfi_iocfc_cfg_s *) dm_kva;
651 dm_kva += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
652 dm_pa += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
653
Krishna Gudipati45070252011-06-24 20:24:29 -0700654 /* Claim IOCFC dma memory - for the config response */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700655 bfa->iocfc.cfgrsp_dma.kva = dm_kva;
656 bfa->iocfc.cfgrsp_dma.pa = dm_pa;
657 bfa->iocfc.cfgrsp = (struct bfi_iocfc_cfgrsp_s *) dm_kva;
Krishna Gudipati45070252011-06-24 20:24:29 -0700658 dm_kva += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
659 BFA_CACHELINE_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700660 dm_pa += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
Krishna Gudipati45070252011-06-24 20:24:29 -0700661 BFA_CACHELINE_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700662
Krishna Gudipati45070252011-06-24 20:24:29 -0700663 /* Claim IOCFC kva memory */
Maggie Zhangf7f738122010-12-09 19:08:43 -0800664 dbgsz = (bfa_auto_recover) ? BFA_DBG_FWTRC_LEN : 0;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700665 if (dbgsz > 0) {
Krishna Gudipati45070252011-06-24 20:24:29 -0700666 bfa_ioc_debug_memclaim(&bfa->ioc, bfa_mem_kva_curp(iocfc));
667 bfa_mem_kva_curp(iocfc) += dbgsz;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700668 }
669}
670
Jing Huang5fbe25c2010-10-18 17:17:23 -0700671/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700672 * Start BFA submodules.
673 */
674static void
675bfa_iocfc_start_submod(struct bfa_s *bfa)
676{
677 int i;
678
Krishna Gudipati775c7742011-06-13 15:52:12 -0700679 bfa->queue_process = BFA_TRUE;
Krishna Gudipati11189202011-06-13 15:50:35 -0700680 for (i = 0; i < BFI_IOC_MAX_CQS; i++)
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700681 bfa_isr_rspq_ack(bfa, i, bfa_rspq_ci(bfa, i));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700682
683 for (i = 0; hal_mods[i]; i++)
684 hal_mods[i]->start(bfa);
685}
686
Jing Huang5fbe25c2010-10-18 17:17:23 -0700687/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700688 * Disable BFA submodules.
689 */
690static void
691bfa_iocfc_disable_submod(struct bfa_s *bfa)
692{
693 int i;
694
695 for (i = 0; hal_mods[i]; i++)
696 hal_mods[i]->iocdisable(bfa);
697}
698
699static void
700bfa_iocfc_init_cb(void *bfa_arg, bfa_boolean_t complete)
701{
702 struct bfa_s *bfa = bfa_arg;
703
704 if (complete) {
705 if (bfa->iocfc.cfgdone)
706 bfa_cb_init(bfa->bfad, BFA_STATUS_OK);
707 else
708 bfa_cb_init(bfa->bfad, BFA_STATUS_FAILED);
709 } else {
710 if (bfa->iocfc.cfgdone)
711 bfa->iocfc.action = BFA_IOCFC_ACT_NONE;
712 }
713}
714
715static void
716bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl)
717{
718 struct bfa_s *bfa = bfa_arg;
719 struct bfad_s *bfad = bfa->bfad;
720
721 if (compl)
722 complete(&bfad->comp);
723 else
724 bfa->iocfc.action = BFA_IOCFC_ACT_NONE;
725}
726
727static void
Krishna Gudipati60138062011-06-24 20:25:15 -0700728bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl)
729{
730 struct bfa_s *bfa = bfa_arg;
731 struct bfad_s *bfad = bfa->bfad;
732
733 if (compl)
734 complete(&bfad->enable_comp);
735}
736
737static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700738bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl)
739{
740 struct bfa_s *bfa = bfa_arg;
741 struct bfad_s *bfad = bfa->bfad;
742
743 if (compl)
744 complete(&bfad->disable_comp);
745}
746
Krishna Gudipati11189202011-06-13 15:50:35 -0700747/**
748 * configure queue registers from firmware response
749 */
750static void
751bfa_iocfc_qreg(struct bfa_s *bfa, struct bfi_iocfc_qreg_s *qreg)
752{
753 int i;
754 struct bfa_iocfc_regs_s *r = &bfa->iocfc.bfa_regs;
755 void __iomem *kva = bfa_ioc_bar0(&bfa->ioc);
756
757 for (i = 0; i < BFI_IOC_MAX_CQS; i++) {
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700758 bfa->iocfc.hw_qid[i] = qreg->hw_qid[i];
Krishna Gudipati11189202011-06-13 15:50:35 -0700759 r->cpe_q_ci[i] = kva + be32_to_cpu(qreg->cpe_q_ci_off[i]);
760 r->cpe_q_pi[i] = kva + be32_to_cpu(qreg->cpe_q_pi_off[i]);
761 r->cpe_q_ctrl[i] = kva + be32_to_cpu(qreg->cpe_qctl_off[i]);
762 r->rme_q_ci[i] = kva + be32_to_cpu(qreg->rme_q_ci_off[i]);
763 r->rme_q_pi[i] = kva + be32_to_cpu(qreg->rme_q_pi_off[i]);
764 r->rme_q_ctrl[i] = kva + be32_to_cpu(qreg->rme_qctl_off[i]);
765 }
766}
767
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700768static void
769bfa_iocfc_res_recfg(struct bfa_s *bfa, struct bfa_iocfc_fwcfg_s *fwcfg)
770{
771 bfa_fcxp_res_recfg(bfa, fwcfg->num_fcxp_reqs);
772 bfa_uf_res_recfg(bfa, fwcfg->num_uf_bufs);
773 bfa_rport_res_recfg(bfa, fwcfg->num_rports);
774 bfa_fcp_res_recfg(bfa, fwcfg->num_ioim_reqs);
775 bfa_tskim_res_recfg(bfa, fwcfg->num_tskim_reqs);
776}
777
Jing Huang5fbe25c2010-10-18 17:17:23 -0700778/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700779 * Update BFA configuration from firmware configuration.
780 */
781static void
782bfa_iocfc_cfgrsp(struct bfa_s *bfa)
783{
784 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
785 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
786 struct bfa_iocfc_fwcfg_s *fwcfg = &cfgrsp->fwcfg;
787
788 fwcfg->num_cqs = fwcfg->num_cqs;
Jing Huangba816ea2010-10-18 17:10:50 -0700789 fwcfg->num_ioim_reqs = be16_to_cpu(fwcfg->num_ioim_reqs);
Krishna Gudipatie2187d72011-06-13 15:53:58 -0700790 fwcfg->num_fwtio_reqs = be16_to_cpu(fwcfg->num_fwtio_reqs);
Jing Huangba816ea2010-10-18 17:10:50 -0700791 fwcfg->num_tskim_reqs = be16_to_cpu(fwcfg->num_tskim_reqs);
792 fwcfg->num_fcxp_reqs = be16_to_cpu(fwcfg->num_fcxp_reqs);
793 fwcfg->num_uf_bufs = be16_to_cpu(fwcfg->num_uf_bufs);
794 fwcfg->num_rports = be16_to_cpu(fwcfg->num_rports);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700795
796 iocfc->cfgdone = BFA_TRUE;
797
Jing Huang5fbe25c2010-10-18 17:17:23 -0700798 /*
Krishna Gudipati11189202011-06-13 15:50:35 -0700799 * configure queue register offsets as learnt from firmware
800 */
801 bfa_iocfc_qreg(bfa, &cfgrsp->qreg);
802
803 /*
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700804 * Re-configure resources as learnt from Firmware
805 */
806 bfa_iocfc_res_recfg(bfa, fwcfg);
807
808 /*
Krishna Gudipati775c7742011-06-13 15:52:12 -0700809 * Install MSIX queue handlers
810 */
811 bfa_msix_queue_install(bfa);
812
813 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700814 * Configuration is complete - initialize/start submodules
815 */
816 bfa_fcport_init(bfa);
817
818 if (iocfc->action == BFA_IOCFC_ACT_INIT)
819 bfa_cb_queue(bfa, &iocfc->init_hcb_qe, bfa_iocfc_init_cb, bfa);
Krishna Gudipati60138062011-06-24 20:25:15 -0700820 else {
821 if (bfa->iocfc.action == BFA_IOCFC_ACT_ENABLE)
822 bfa_cb_queue(bfa, &bfa->iocfc.en_hcb_qe,
823 bfa_iocfc_enable_cb, bfa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700824 bfa_iocfc_start_submod(bfa);
Krishna Gudipati60138062011-06-24 20:25:15 -0700825 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700826}
827void
828bfa_iocfc_reset_queues(struct bfa_s *bfa)
829{
830 int q;
831
832 for (q = 0; q < BFI_IOC_MAX_CQS; q++) {
833 bfa_reqq_ci(bfa, q) = 0;
834 bfa_reqq_pi(bfa, q) = 0;
835 bfa_rspq_ci(bfa, q) = 0;
836 bfa_rspq_pi(bfa, q) = 0;
837 }
838}
839
Krishna Gudipatia7141342011-06-24 20:23:19 -0700840/* Fabric Assigned Address specific functions */
841
842/*
843 * Check whether IOC is ready before sending command down
844 */
845static bfa_status_t
846bfa_faa_validate_request(struct bfa_s *bfa)
847{
848 enum bfa_ioc_type_e ioc_type = bfa_get_type(bfa);
849 u32 card_type = bfa->ioc.attr->card_type;
850
851 if (bfa_ioc_is_operational(&bfa->ioc)) {
852 if ((ioc_type != BFA_IOC_TYPE_FC) || bfa_mfg_is_mezz(card_type))
853 return BFA_STATUS_FEATURE_NOT_SUPPORTED;
854 } else {
855 if (!bfa_ioc_is_acq_addr(&bfa->ioc))
856 return BFA_STATUS_IOC_NON_OP;
857 }
858
859 return BFA_STATUS_OK;
860}
861
862bfa_status_t
863bfa_faa_enable(struct bfa_s *bfa, bfa_cb_iocfc_t cbfn, void *cbarg)
864{
865 struct bfi_faa_en_dis_s faa_enable_req;
866 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
867 bfa_status_t status;
868
869 iocfc->faa_args.faa_cb.faa_cbfn = cbfn;
870 iocfc->faa_args.faa_cb.faa_cbarg = cbarg;
871
872 status = bfa_faa_validate_request(bfa);
873 if (status != BFA_STATUS_OK)
874 return status;
875
876 if (iocfc->faa_args.busy == BFA_TRUE)
877 return BFA_STATUS_DEVBUSY;
878
879 if (iocfc->faa_args.faa_state == BFA_FAA_ENABLED)
880 return BFA_STATUS_FAA_ENABLED;
881
882 if (bfa_fcport_is_trunk_enabled(bfa))
883 return BFA_STATUS_ERROR_TRUNK_ENABLED;
884
885 bfa_fcport_cfg_faa(bfa, BFA_FAA_ENABLED);
886 iocfc->faa_args.busy = BFA_TRUE;
887
888 memset(&faa_enable_req, 0, sizeof(struct bfi_faa_en_dis_s));
889 bfi_h2i_set(faa_enable_req.mh, BFI_MC_IOCFC,
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700890 BFI_IOCFC_H2I_FAA_ENABLE_REQ, bfa_fn_lpu(bfa));
Krishna Gudipatia7141342011-06-24 20:23:19 -0700891
892 bfa_ioc_mbox_send(&bfa->ioc, &faa_enable_req,
893 sizeof(struct bfi_faa_en_dis_s));
894
895 return BFA_STATUS_OK;
896}
897
898bfa_status_t
899bfa_faa_disable(struct bfa_s *bfa, bfa_cb_iocfc_t cbfn,
900 void *cbarg)
901{
902 struct bfi_faa_en_dis_s faa_disable_req;
903 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
904 bfa_status_t status;
905
906 iocfc->faa_args.faa_cb.faa_cbfn = cbfn;
907 iocfc->faa_args.faa_cb.faa_cbarg = cbarg;
908
909 status = bfa_faa_validate_request(bfa);
910 if (status != BFA_STATUS_OK)
911 return status;
912
913 if (iocfc->faa_args.busy == BFA_TRUE)
914 return BFA_STATUS_DEVBUSY;
915
916 if (iocfc->faa_args.faa_state == BFA_FAA_DISABLED)
917 return BFA_STATUS_FAA_DISABLED;
918
919 bfa_fcport_cfg_faa(bfa, BFA_FAA_DISABLED);
920 iocfc->faa_args.busy = BFA_TRUE;
921
922 memset(&faa_disable_req, 0, sizeof(struct bfi_faa_en_dis_s));
923 bfi_h2i_set(faa_disable_req.mh, BFI_MC_IOCFC,
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700924 BFI_IOCFC_H2I_FAA_DISABLE_REQ, bfa_fn_lpu(bfa));
Krishna Gudipatia7141342011-06-24 20:23:19 -0700925
926 bfa_ioc_mbox_send(&bfa->ioc, &faa_disable_req,
927 sizeof(struct bfi_faa_en_dis_s));
928
929 return BFA_STATUS_OK;
930}
931
932bfa_status_t
933bfa_faa_query(struct bfa_s *bfa, struct bfa_faa_attr_s *attr,
934 bfa_cb_iocfc_t cbfn, void *cbarg)
935{
936 struct bfi_faa_query_s faa_attr_req;
937 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
938 bfa_status_t status;
939
940 iocfc->faa_args.faa_attr = attr;
941 iocfc->faa_args.faa_cb.faa_cbfn = cbfn;
942 iocfc->faa_args.faa_cb.faa_cbarg = cbarg;
943
944 status = bfa_faa_validate_request(bfa);
945 if (status != BFA_STATUS_OK)
946 return status;
947
948 if (iocfc->faa_args.busy == BFA_TRUE)
949 return BFA_STATUS_DEVBUSY;
950
951 iocfc->faa_args.busy = BFA_TRUE;
952 memset(&faa_attr_req, 0, sizeof(struct bfi_faa_query_s));
953 bfi_h2i_set(faa_attr_req.mh, BFI_MC_IOCFC,
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700954 BFI_IOCFC_H2I_FAA_QUERY_REQ, bfa_fn_lpu(bfa));
Krishna Gudipatia7141342011-06-24 20:23:19 -0700955
956 bfa_ioc_mbox_send(&bfa->ioc, &faa_attr_req,
957 sizeof(struct bfi_faa_query_s));
958
959 return BFA_STATUS_OK;
960}
961
962/*
963 * FAA enable response
964 */
965static void
966bfa_faa_enable_reply(struct bfa_iocfc_s *iocfc,
967 struct bfi_faa_en_dis_rsp_s *rsp)
968{
969 void *cbarg = iocfc->faa_args.faa_cb.faa_cbarg;
970 bfa_status_t status = rsp->status;
971
972 WARN_ON(!iocfc->faa_args.faa_cb.faa_cbfn);
973
974 iocfc->faa_args.faa_cb.faa_cbfn(cbarg, status);
975 iocfc->faa_args.busy = BFA_FALSE;
976}
977
978/*
979 * FAA disable response
980 */
981static void
982bfa_faa_disable_reply(struct bfa_iocfc_s *iocfc,
983 struct bfi_faa_en_dis_rsp_s *rsp)
984{
985 void *cbarg = iocfc->faa_args.faa_cb.faa_cbarg;
986 bfa_status_t status = rsp->status;
987
988 WARN_ON(!iocfc->faa_args.faa_cb.faa_cbfn);
989
990 iocfc->faa_args.faa_cb.faa_cbfn(cbarg, status);
991 iocfc->faa_args.busy = BFA_FALSE;
992}
993
994/*
995 * FAA query response
996 */
997static void
998bfa_faa_query_reply(struct bfa_iocfc_s *iocfc,
999 bfi_faa_query_rsp_t *rsp)
1000{
1001 void *cbarg = iocfc->faa_args.faa_cb.faa_cbarg;
1002
1003 if (iocfc->faa_args.faa_attr) {
1004 iocfc->faa_args.faa_attr->faa = rsp->faa;
1005 iocfc->faa_args.faa_attr->faa_state = rsp->faa_status;
1006 iocfc->faa_args.faa_attr->pwwn_source = rsp->addr_source;
1007 }
1008
1009 WARN_ON(!iocfc->faa_args.faa_cb.faa_cbfn);
1010
1011 iocfc->faa_args.faa_cb.faa_cbfn(cbarg, BFA_STATUS_OK);
1012 iocfc->faa_args.busy = BFA_FALSE;
1013}
1014
Jing Huang5fbe25c2010-10-18 17:17:23 -07001015/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001016 * IOC enable request is complete
1017 */
1018static void
1019bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status)
1020{
1021 struct bfa_s *bfa = bfa_arg;
1022
Krishna Gudipatia7141342011-06-24 20:23:19 -07001023 if (status == BFA_STATUS_FAA_ACQ_ADDR) {
1024 bfa_cb_queue(bfa, &bfa->iocfc.init_hcb_qe,
1025 bfa_iocfc_init_cb, bfa);
1026 return;
1027 }
1028
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001029 if (status != BFA_STATUS_OK) {
1030 bfa_isr_disable(bfa);
1031 if (bfa->iocfc.action == BFA_IOCFC_ACT_INIT)
1032 bfa_cb_queue(bfa, &bfa->iocfc.init_hcb_qe,
1033 bfa_iocfc_init_cb, bfa);
Krishna Gudipati60138062011-06-24 20:25:15 -07001034 else if (bfa->iocfc.action == BFA_IOCFC_ACT_ENABLE)
1035 bfa_cb_queue(bfa, &bfa->iocfc.en_hcb_qe,
1036 bfa_iocfc_enable_cb, bfa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001037 return;
1038 }
1039
1040 bfa_iocfc_send_cfg(bfa);
1041}
1042
Jing Huang5fbe25c2010-10-18 17:17:23 -07001043/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001044 * IOC disable request is complete
1045 */
1046static void
1047bfa_iocfc_disable_cbfn(void *bfa_arg)
1048{
1049 struct bfa_s *bfa = bfa_arg;
1050
1051 bfa_isr_disable(bfa);
1052 bfa_iocfc_disable_submod(bfa);
1053
1054 if (bfa->iocfc.action == BFA_IOCFC_ACT_STOP)
1055 bfa_cb_queue(bfa, &bfa->iocfc.stop_hcb_qe, bfa_iocfc_stop_cb,
1056 bfa);
1057 else {
Jing Huangd4b671c2010-12-26 21:46:35 -08001058 WARN_ON(bfa->iocfc.action != BFA_IOCFC_ACT_DISABLE);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001059 bfa_cb_queue(bfa, &bfa->iocfc.dis_hcb_qe, bfa_iocfc_disable_cb,
1060 bfa);
1061 }
1062}
1063
Jing Huang5fbe25c2010-10-18 17:17:23 -07001064/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001065 * Notify sub-modules of hardware failure.
1066 */
1067static void
1068bfa_iocfc_hbfail_cbfn(void *bfa_arg)
1069{
1070 struct bfa_s *bfa = bfa_arg;
1071
Krishna Gudipati775c7742011-06-13 15:52:12 -07001072 bfa->queue_process = BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001073
1074 bfa_isr_disable(bfa);
1075 bfa_iocfc_disable_submod(bfa);
1076
1077 if (bfa->iocfc.action == BFA_IOCFC_ACT_INIT)
1078 bfa_cb_queue(bfa, &bfa->iocfc.init_hcb_qe, bfa_iocfc_init_cb,
1079 bfa);
1080}
1081
Jing Huang5fbe25c2010-10-18 17:17:23 -07001082/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001083 * Actions on chip-reset completion.
1084 */
1085static void
1086bfa_iocfc_reset_cbfn(void *bfa_arg)
1087{
1088 struct bfa_s *bfa = bfa_arg;
1089
1090 bfa_iocfc_reset_queues(bfa);
1091 bfa_isr_enable(bfa);
1092}
1093
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001094
Jing Huang5fbe25c2010-10-18 17:17:23 -07001095/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001096 * Query IOC memory requirement information.
1097 */
1098void
Krishna Gudipati45070252011-06-24 20:24:29 -07001099bfa_iocfc_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo,
1100 struct bfa_s *bfa)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001101{
Krishna Gudipati45070252011-06-24 20:24:29 -07001102 int q, per_reqq_sz, per_rspq_sz;
1103 struct bfa_mem_dma_s *ioc_dma = BFA_MEM_IOC_DMA(bfa);
1104 struct bfa_mem_dma_s *iocfc_dma = BFA_MEM_IOCFC_DMA(bfa);
1105 struct bfa_mem_kva_s *iocfc_kva = BFA_MEM_IOCFC_KVA(bfa);
1106 u32 dm_len = 0;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001107
Krishna Gudipati45070252011-06-24 20:24:29 -07001108 /* dma memory setup for IOC */
1109 bfa_mem_dma_setup(meminfo, ioc_dma,
1110 BFA_ROUNDUP(sizeof(struct bfi_ioc_attr_s), BFA_DMA_ALIGN_SZ));
1111
1112 /* dma memory setup for REQ/RSP queues */
1113 per_reqq_sz = BFA_ROUNDUP((cfg->drvcfg.num_reqq_elems * BFI_LMSG_SZ),
1114 BFA_DMA_ALIGN_SZ);
1115 per_rspq_sz = BFA_ROUNDUP((cfg->drvcfg.num_rspq_elems * BFI_LMSG_SZ),
1116 BFA_DMA_ALIGN_SZ);
1117
1118 for (q = 0; q < cfg->fwcfg.num_cqs; q++) {
1119 bfa_mem_dma_setup(meminfo, BFA_MEM_REQQ_DMA(bfa, q),
1120 per_reqq_sz);
1121 bfa_mem_dma_setup(meminfo, BFA_MEM_RSPQ_DMA(bfa, q),
1122 per_rspq_sz);
1123 }
1124
1125 /* IOCFC dma memory - calculate Shadow CI/PI size */
1126 for (q = 0; q < cfg->fwcfg.num_cqs; q++)
1127 dm_len += (2 * BFA_CACHELINE_SZ);
1128
1129 /* IOCFC dma memory - calculate config info / rsp size */
1130 dm_len += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
1131 dm_len += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
1132 BFA_CACHELINE_SZ);
1133
1134 /* dma memory setup for IOCFC */
1135 bfa_mem_dma_setup(meminfo, iocfc_dma, dm_len);
1136
1137 /* kva memory setup for IOCFC */
1138 bfa_mem_kva_setup(meminfo, iocfc_kva,
1139 ((bfa_auto_recover) ? BFA_DBG_FWTRC_LEN : 0));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001140}
1141
Jing Huang5fbe25c2010-10-18 17:17:23 -07001142/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001143 * Query IOC memory requirement information.
1144 */
1145void
1146bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
Krishna Gudipati45070252011-06-24 20:24:29 -07001147 struct bfa_pcidev_s *pcidev)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001148{
1149 int i;
1150 struct bfa_ioc_s *ioc = &bfa->ioc;
1151
1152 bfa_iocfc_cbfn.enable_cbfn = bfa_iocfc_enable_cbfn;
1153 bfa_iocfc_cbfn.disable_cbfn = bfa_iocfc_disable_cbfn;
1154 bfa_iocfc_cbfn.hbfail_cbfn = bfa_iocfc_hbfail_cbfn;
1155 bfa_iocfc_cbfn.reset_cbfn = bfa_iocfc_reset_cbfn;
1156
1157 ioc->trcmod = bfa->trcmod;
1158 bfa_ioc_attach(&bfa->ioc, bfa, &bfa_iocfc_cbfn, &bfa->timer_mod);
1159
Krishna Gudipatid37779f2011-06-13 15:42:10 -07001160 bfa_ioc_pci_init(&bfa->ioc, pcidev, BFI_PCIFN_CLASS_FC);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001161 bfa_ioc_mbox_register(&bfa->ioc, bfa_mbox_isrs);
1162
1163 bfa_iocfc_init_mem(bfa, bfad, cfg, pcidev);
Krishna Gudipati45070252011-06-24 20:24:29 -07001164 bfa_iocfc_mem_claim(bfa, cfg);
Maggie Zhangf7f738122010-12-09 19:08:43 -08001165 INIT_LIST_HEAD(&bfa->timer_mod.timer_q);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001166
1167 INIT_LIST_HEAD(&bfa->comp_q);
1168 for (i = 0; i < BFI_IOC_MAX_CQS; i++)
1169 INIT_LIST_HEAD(&bfa->reqq_waitq[i]);
1170}
1171
Jing Huang5fbe25c2010-10-18 17:17:23 -07001172/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001173 * Query IOC memory requirement information.
1174 */
1175void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001176bfa_iocfc_init(struct bfa_s *bfa)
1177{
1178 bfa->iocfc.action = BFA_IOCFC_ACT_INIT;
1179 bfa_ioc_enable(&bfa->ioc);
1180}
1181
Jing Huang5fbe25c2010-10-18 17:17:23 -07001182/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001183 * IOC start called from bfa_start(). Called to start IOC operations
1184 * at driver instantiation for this instance.
1185 */
1186void
1187bfa_iocfc_start(struct bfa_s *bfa)
1188{
1189 if (bfa->iocfc.cfgdone)
1190 bfa_iocfc_start_submod(bfa);
1191}
1192
Jing Huang5fbe25c2010-10-18 17:17:23 -07001193/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001194 * IOC stop called from bfa_stop(). Called only when driver is unloaded
1195 * for this instance.
1196 */
1197void
1198bfa_iocfc_stop(struct bfa_s *bfa)
1199{
1200 bfa->iocfc.action = BFA_IOCFC_ACT_STOP;
1201
Krishna Gudipati775c7742011-06-13 15:52:12 -07001202 bfa->queue_process = BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001203 bfa_ioc_disable(&bfa->ioc);
1204}
1205
1206void
1207bfa_iocfc_isr(void *bfaarg, struct bfi_mbmsg_s *m)
1208{
1209 struct bfa_s *bfa = bfaarg;
1210 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1211 union bfi_iocfc_i2h_msg_u *msg;
1212
1213 msg = (union bfi_iocfc_i2h_msg_u *) m;
1214 bfa_trc(bfa, msg->mh.msg_id);
1215
1216 switch (msg->mh.msg_id) {
1217 case BFI_IOCFC_I2H_CFG_REPLY:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001218 bfa_iocfc_cfgrsp(bfa);
1219 break;
1220 case BFI_IOCFC_I2H_UPDATEQ_RSP:
1221 iocfc->updateq_cbfn(iocfc->updateq_cbarg, BFA_STATUS_OK);
1222 break;
Krishna Gudipatia7141342011-06-24 20:23:19 -07001223 case BFI_IOCFC_I2H_FAA_ENABLE_RSP:
1224 bfa_faa_enable_reply(iocfc,
1225 (struct bfi_faa_en_dis_rsp_s *)msg);
1226 break;
1227 case BFI_IOCFC_I2H_FAA_DISABLE_RSP:
1228 bfa_faa_disable_reply(iocfc,
1229 (struct bfi_faa_en_dis_rsp_s *)msg);
1230 break;
1231 case BFI_IOCFC_I2H_FAA_QUERY_RSP:
1232 bfa_faa_query_reply(iocfc, (bfi_faa_query_rsp_t *)msg);
1233 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001234 default:
Jing Huangd4b671c2010-12-26 21:46:35 -08001235 WARN_ON(1);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001236 }
1237}
1238
1239void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001240bfa_iocfc_get_attr(struct bfa_s *bfa, struct bfa_iocfc_attr_s *attr)
1241{
1242 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1243
1244 attr->intr_attr.coalesce = iocfc->cfginfo->intr_attr.coalesce;
1245
1246 attr->intr_attr.delay = iocfc->cfginfo->intr_attr.delay ?
Jing Huangba816ea2010-10-18 17:10:50 -07001247 be16_to_cpu(iocfc->cfginfo->intr_attr.delay) :
1248 be16_to_cpu(iocfc->cfgrsp->intr_attr.delay);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001249
1250 attr->intr_attr.latency = iocfc->cfginfo->intr_attr.latency ?
Jing Huangba816ea2010-10-18 17:10:50 -07001251 be16_to_cpu(iocfc->cfginfo->intr_attr.latency) :
1252 be16_to_cpu(iocfc->cfgrsp->intr_attr.latency);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001253
1254 attr->config = iocfc->cfg;
1255}
1256
1257bfa_status_t
1258bfa_iocfc_israttr_set(struct bfa_s *bfa, struct bfa_iocfc_intr_attr_s *attr)
1259{
1260 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1261 struct bfi_iocfc_set_intr_req_s *m;
1262
1263 iocfc->cfginfo->intr_attr.coalesce = attr->coalesce;
Jing Huangba816ea2010-10-18 17:10:50 -07001264 iocfc->cfginfo->intr_attr.delay = cpu_to_be16(attr->delay);
1265 iocfc->cfginfo->intr_attr.latency = cpu_to_be16(attr->latency);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001266
1267 if (!bfa_iocfc_is_operational(bfa))
1268 return BFA_STATUS_OK;
1269
1270 m = bfa_reqq_next(bfa, BFA_REQQ_IOC);
1271 if (!m)
1272 return BFA_STATUS_DEVBUSY;
1273
1274 bfi_h2i_set(m->mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_SET_INTR_REQ,
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001275 bfa_fn_lpu(bfa));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001276 m->coalesce = iocfc->cfginfo->intr_attr.coalesce;
1277 m->delay = iocfc->cfginfo->intr_attr.delay;
1278 m->latency = iocfc->cfginfo->intr_attr.latency;
1279
1280 bfa_trc(bfa, attr->delay);
1281 bfa_trc(bfa, attr->latency);
1282
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001283 bfa_reqq_produce(bfa, BFA_REQQ_IOC, m->mh);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001284 return BFA_STATUS_OK;
1285}
1286
1287void
Krishna Gudipati45070252011-06-24 20:24:29 -07001288bfa_iocfc_set_snsbase(struct bfa_s *bfa, int seg_no, u64 snsbase_pa)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001289{
1290 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1291
1292 iocfc->cfginfo->sense_buf_len = (BFI_IOIM_SNSLEN - 1);
Krishna Gudipati45070252011-06-24 20:24:29 -07001293 bfa_dma_be_addr_set(iocfc->cfginfo->ioim_snsbase[seg_no], snsbase_pa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001294}
Jing Huang5fbe25c2010-10-18 17:17:23 -07001295/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001296 * Enable IOC after it is disabled.
1297 */
1298void
1299bfa_iocfc_enable(struct bfa_s *bfa)
1300{
1301 bfa_plog_str(bfa->plog, BFA_PL_MID_HAL, BFA_PL_EID_MISC, 0,
1302 "IOC Enable");
Krishna Gudipati60138062011-06-24 20:25:15 -07001303 bfa->iocfc.action = BFA_IOCFC_ACT_ENABLE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001304 bfa_ioc_enable(&bfa->ioc);
1305}
1306
1307void
1308bfa_iocfc_disable(struct bfa_s *bfa)
1309{
1310 bfa_plog_str(bfa->plog, BFA_PL_MID_HAL, BFA_PL_EID_MISC, 0,
1311 "IOC Disable");
1312 bfa->iocfc.action = BFA_IOCFC_ACT_DISABLE;
1313
Krishna Gudipati775c7742011-06-13 15:52:12 -07001314 bfa->queue_process = BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001315 bfa_ioc_disable(&bfa->ioc);
1316}
1317
1318
1319bfa_boolean_t
1320bfa_iocfc_is_operational(struct bfa_s *bfa)
1321{
1322 return bfa_ioc_is_operational(&bfa->ioc) && bfa->iocfc.cfgdone;
1323}
1324
Jing Huang5fbe25c2010-10-18 17:17:23 -07001325/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001326 * Return boot target port wwns -- read from boot information in flash.
1327 */
1328void
1329bfa_iocfc_get_bootwwns(struct bfa_s *bfa, u8 *nwwns, wwn_t *wwns)
1330{
1331 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1332 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
1333 int i;
1334
1335 if (cfgrsp->pbc_cfg.boot_enabled && cfgrsp->pbc_cfg.nbluns) {
1336 bfa_trc(bfa, cfgrsp->pbc_cfg.nbluns);
1337 *nwwns = cfgrsp->pbc_cfg.nbluns;
1338 for (i = 0; i < cfgrsp->pbc_cfg.nbluns; i++)
1339 wwns[i] = cfgrsp->pbc_cfg.blun[i].tgt_pwwn;
1340
1341 return;
1342 }
1343
1344 *nwwns = cfgrsp->bootwwns.nwwns;
1345 memcpy(wwns, cfgrsp->bootwwns.wwn, sizeof(cfgrsp->bootwwns.wwn));
1346}
1347
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001348int
1349bfa_iocfc_get_pbc_vports(struct bfa_s *bfa, struct bfi_pbc_vport_s *pbc_vport)
1350{
1351 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1352 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
1353
1354 memcpy(pbc_vport, cfgrsp->pbc_cfg.vport, sizeof(cfgrsp->pbc_cfg.vport));
1355 return cfgrsp->pbc_cfg.nvports;
1356}
1357
Jing Huang7725ccf2009-09-23 17:46:15 -07001358
Jing Huang5fbe25c2010-10-18 17:17:23 -07001359/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001360 * Use this function query the memory requirement of the BFA library.
1361 * This function needs to be called before bfa_attach() to get the
1362 * memory required of the BFA layer for a given driver configuration.
1363 *
1364 * This call will fail, if the cap is out of range compared to pre-defined
1365 * values within the BFA library
1366 *
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001367 * @param[in] cfg - pointer to bfa_ioc_cfg_t. Driver layer should indicate
1368 * its configuration in this structure.
Jing Huang7725ccf2009-09-23 17:46:15 -07001369 * The default values for struct bfa_iocfc_cfg_s can be
1370 * fetched using bfa_cfg_get_default() API.
1371 *
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001372 * If cap's boundary check fails, the library will use
Jing Huang7725ccf2009-09-23 17:46:15 -07001373 * the default bfa_cap_t values (and log a warning msg).
1374 *
1375 * @param[out] meminfo - pointer to bfa_meminfo_t. This content
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001376 * indicates the memory type (see bfa_mem_type_t) and
Jing Huang7725ccf2009-09-23 17:46:15 -07001377 * amount of memory required.
1378 *
1379 * Driver should allocate the memory, populate the
1380 * starting address for each block and provide the same
1381 * structure as input parameter to bfa_attach() call.
1382 *
Krishna Gudipati45070252011-06-24 20:24:29 -07001383 * @param[in] bfa - pointer to the bfa structure, used while fetching the
1384 * dma, kva memory information of the bfa sub-modules.
1385 *
Jing Huang7725ccf2009-09-23 17:46:15 -07001386 * @return void
1387 *
1388 * Special Considerations: @note
1389 */
1390void
Krishna Gudipati45070252011-06-24 20:24:29 -07001391bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo,
1392 struct bfa_s *bfa)
Jing Huang7725ccf2009-09-23 17:46:15 -07001393{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001394 int i;
Krishna Gudipati45070252011-06-24 20:24:29 -07001395 struct bfa_mem_dma_s *port_dma = BFA_MEM_PORT_DMA(bfa);
1396 struct bfa_mem_dma_s *ablk_dma = BFA_MEM_ABLK_DMA(bfa);
Krishna Gudipati148d6102011-06-24 20:25:36 -07001397 struct bfa_mem_dma_s *cee_dma = BFA_MEM_CEE_DMA(bfa);
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001398 struct bfa_mem_dma_s *sfp_dma = BFA_MEM_SFP_DMA(bfa);
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001399 struct bfa_mem_dma_s *flash_dma = BFA_MEM_FLASH_DMA(bfa);
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001400 struct bfa_mem_dma_s *diag_dma = BFA_MEM_DIAG_DMA(bfa);
Krishna Gudipati3350d982011-06-24 20:28:37 -07001401 struct bfa_mem_dma_s *phy_dma = BFA_MEM_PHY_DMA(bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001402
Jing Huangd4b671c2010-12-26 21:46:35 -08001403 WARN_ON((cfg == NULL) || (meminfo == NULL));
Jing Huang7725ccf2009-09-23 17:46:15 -07001404
Jing Huang6a18b162010-10-18 17:08:54 -07001405 memset((void *)meminfo, 0, sizeof(struct bfa_meminfo_s));
Jing Huang7725ccf2009-09-23 17:46:15 -07001406
Krishna Gudipati45070252011-06-24 20:24:29 -07001407 /* Initialize the DMA & KVA meminfo queues */
1408 INIT_LIST_HEAD(&meminfo->dma_info.qe);
1409 INIT_LIST_HEAD(&meminfo->kva_info.qe);
1410
1411 bfa_iocfc_meminfo(cfg, meminfo, bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001412
1413 for (i = 0; hal_mods[i]; i++)
Krishna Gudipati45070252011-06-24 20:24:29 -07001414 hal_mods[i]->meminfo(cfg, meminfo, bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001415
Krishna Gudipati45070252011-06-24 20:24:29 -07001416 /* dma info setup */
1417 bfa_mem_dma_setup(meminfo, port_dma, bfa_port_meminfo());
1418 bfa_mem_dma_setup(meminfo, ablk_dma, bfa_ablk_meminfo());
Krishna Gudipati148d6102011-06-24 20:25:36 -07001419 bfa_mem_dma_setup(meminfo, cee_dma, bfa_cee_meminfo());
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001420 bfa_mem_dma_setup(meminfo, sfp_dma, bfa_sfp_meminfo());
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001421 bfa_mem_dma_setup(meminfo, flash_dma,
1422 bfa_flash_meminfo(cfg->drvcfg.min_cfg));
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001423 bfa_mem_dma_setup(meminfo, diag_dma, bfa_diag_meminfo());
Krishna Gudipati3350d982011-06-24 20:28:37 -07001424 bfa_mem_dma_setup(meminfo, phy_dma,
1425 bfa_phy_meminfo(cfg->drvcfg.min_cfg));
Jing Huang7725ccf2009-09-23 17:46:15 -07001426}
1427
Jing Huang5fbe25c2010-10-18 17:17:23 -07001428/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001429 * Use this function to do attach the driver instance with the BFA
1430 * library. This function will not trigger any HW initialization
1431 * process (which will be done in bfa_init() call)
1432 *
1433 * This call will fail, if the cap is out of range compared to
1434 * pre-defined values within the BFA library
1435 *
1436 * @param[out] bfa Pointer to bfa_t.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001437 * @param[in] bfad Opaque handle back to the driver's IOC structure
Jing Huang7725ccf2009-09-23 17:46:15 -07001438 * @param[in] cfg Pointer to bfa_ioc_cfg_t. Should be same structure
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001439 * that was used in bfa_cfg_get_meminfo().
1440 * @param[in] meminfo Pointer to bfa_meminfo_t. The driver should
1441 * use the bfa_cfg_get_meminfo() call to
1442 * find the memory blocks required, allocate the
1443 * required memory and provide the starting addresses.
1444 * @param[in] pcidev pointer to struct bfa_pcidev_s
Jing Huang7725ccf2009-09-23 17:46:15 -07001445 *
1446 * @return
1447 * void
1448 *
1449 * Special Considerations:
1450 *
1451 * @note
1452 *
1453 */
1454void
1455bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
1456 struct bfa_meminfo_s *meminfo, struct bfa_pcidev_s *pcidev)
1457{
Krishna Gudipati45070252011-06-24 20:24:29 -07001458 int i;
1459 struct bfa_mem_dma_s *dma_info, *dma_elem;
1460 struct bfa_mem_kva_s *kva_info, *kva_elem;
1461 struct list_head *dm_qe, *km_qe;
Jing Huang7725ccf2009-09-23 17:46:15 -07001462
1463 bfa->fcs = BFA_FALSE;
1464
Jing Huangd4b671c2010-12-26 21:46:35 -08001465 WARN_ON((cfg == NULL) || (meminfo == NULL));
Jing Huang7725ccf2009-09-23 17:46:15 -07001466
Krishna Gudipati45070252011-06-24 20:24:29 -07001467 /* Initialize memory pointers for iterative allocation */
1468 dma_info = &meminfo->dma_info;
1469 dma_info->kva_curp = dma_info->kva;
1470 dma_info->dma_curp = dma_info->dma;
1471
1472 kva_info = &meminfo->kva_info;
1473 kva_info->kva_curp = kva_info->kva;
1474
1475 list_for_each(dm_qe, &dma_info->qe) {
1476 dma_elem = (struct bfa_mem_dma_s *) dm_qe;
1477 dma_elem->kva_curp = dma_elem->kva;
1478 dma_elem->dma_curp = dma_elem->dma;
Jing Huang7725ccf2009-09-23 17:46:15 -07001479 }
1480
Krishna Gudipati45070252011-06-24 20:24:29 -07001481 list_for_each(km_qe, &kva_info->qe) {
1482 kva_elem = (struct bfa_mem_kva_s *) km_qe;
1483 kva_elem->kva_curp = kva_elem->kva;
1484 }
1485
1486 bfa_iocfc_attach(bfa, bfad, cfg, pcidev);
Jing Huang7725ccf2009-09-23 17:46:15 -07001487
1488 for (i = 0; hal_mods[i]; i++)
Krishna Gudipati45070252011-06-24 20:24:29 -07001489 hal_mods[i]->attach(bfa, bfad, cfg, pcidev);
Jing Huang7725ccf2009-09-23 17:46:15 -07001490
Krishna Gudipati45070252011-06-24 20:24:29 -07001491 bfa_com_port_attach(bfa);
1492 bfa_com_ablk_attach(bfa);
Krishna Gudipati148d6102011-06-24 20:25:36 -07001493 bfa_com_cee_attach(bfa);
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001494 bfa_com_sfp_attach(bfa);
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001495 bfa_com_flash_attach(bfa, cfg->drvcfg.min_cfg);
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001496 bfa_com_diag_attach(bfa);
Krishna Gudipati3350d982011-06-24 20:28:37 -07001497 bfa_com_phy_attach(bfa, cfg->drvcfg.min_cfg);
Jing Huang7725ccf2009-09-23 17:46:15 -07001498}
1499
Jing Huang5fbe25c2010-10-18 17:17:23 -07001500/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001501 * Use this function to delete a BFA IOC. IOC should be stopped (by
1502 * calling bfa_stop()) before this function call.
1503 *
1504 * @param[in] bfa - pointer to bfa_t.
1505 *
1506 * @return
1507 * void
1508 *
1509 * Special Considerations:
1510 *
1511 * @note
1512 */
1513void
1514bfa_detach(struct bfa_s *bfa)
1515{
1516 int i;
1517
1518 for (i = 0; hal_mods[i]; i++)
1519 hal_mods[i]->detach(bfa);
Maggie Zhangf7f738122010-12-09 19:08:43 -08001520 bfa_ioc_detach(&bfa->ioc);
Jing Huang7725ccf2009-09-23 17:46:15 -07001521}
1522
1523void
1524bfa_comp_deq(struct bfa_s *bfa, struct list_head *comp_q)
1525{
1526 INIT_LIST_HEAD(comp_q);
1527 list_splice_tail_init(&bfa->comp_q, comp_q);
1528}
1529
1530void
1531bfa_comp_process(struct bfa_s *bfa, struct list_head *comp_q)
1532{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001533 struct list_head *qe;
1534 struct list_head *qen;
1535 struct bfa_cb_qe_s *hcb_qe;
Krishna Gudipati37ea0552011-07-20 17:02:11 -07001536 bfa_cb_cbfn_status_t cbfn;
Jing Huang7725ccf2009-09-23 17:46:15 -07001537
1538 list_for_each_safe(qe, qen, comp_q) {
1539 hcb_qe = (struct bfa_cb_qe_s *) qe;
Krishna Gudipati37ea0552011-07-20 17:02:11 -07001540 if (hcb_qe->pre_rmv) {
1541 /* qe is invalid after return, dequeue before cbfn() */
1542 list_del(qe);
1543 cbfn = (bfa_cb_cbfn_status_t)(hcb_qe->cbfn);
1544 cbfn(hcb_qe->cbarg, hcb_qe->fw_status);
1545 } else
1546 hcb_qe->cbfn(hcb_qe->cbarg, BFA_TRUE);
Jing Huang7725ccf2009-09-23 17:46:15 -07001547 }
1548}
1549
1550void
1551bfa_comp_free(struct bfa_s *bfa, struct list_head *comp_q)
1552{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001553 struct list_head *qe;
1554 struct bfa_cb_qe_s *hcb_qe;
Jing Huang7725ccf2009-09-23 17:46:15 -07001555
1556 while (!list_empty(comp_q)) {
1557 bfa_q_deq(comp_q, &qe);
1558 hcb_qe = (struct bfa_cb_qe_s *) qe;
Krishna Gudipati37ea0552011-07-20 17:02:11 -07001559 WARN_ON(hcb_qe->pre_rmv);
Jing Huang7725ccf2009-09-23 17:46:15 -07001560 hcb_qe->cbfn(hcb_qe->cbarg, BFA_FALSE);
1561 }
1562}
1563
Jing Huang7725ccf2009-09-23 17:46:15 -07001564
Jing Huang5fbe25c2010-10-18 17:17:23 -07001565/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001566 * Return the list of PCI vendor/device id lists supported by this
1567 * BFA instance.
1568 */
1569void
1570bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids)
1571{
1572 static struct bfa_pciid_s __pciids[] = {
1573 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G2P},
1574 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G1P},
1575 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT},
Jing Huang293f82d2010-07-08 19:45:20 -07001576 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT_FC},
Jing Huang7725ccf2009-09-23 17:46:15 -07001577 };
1578
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001579 *npciids = sizeof(__pciids) / sizeof(__pciids[0]);
Jing Huang7725ccf2009-09-23 17:46:15 -07001580 *pciids = __pciids;
1581}
1582
Jing Huang5fbe25c2010-10-18 17:17:23 -07001583/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001584 * Use this function query the default struct bfa_iocfc_cfg_s value (compiled
1585 * into BFA layer). The OS driver can then turn back and overwrite entries that
1586 * have been configured by the user.
1587 *
1588 * @param[in] cfg - pointer to bfa_ioc_cfg_t
1589 *
1590 * @return
1591 * void
1592 *
1593 * Special Considerations:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001594 * note
Jing Huang7725ccf2009-09-23 17:46:15 -07001595 */
1596void
1597bfa_cfg_get_default(struct bfa_iocfc_cfg_s *cfg)
1598{
1599 cfg->fwcfg.num_fabrics = DEF_CFG_NUM_FABRICS;
1600 cfg->fwcfg.num_lports = DEF_CFG_NUM_LPORTS;
1601 cfg->fwcfg.num_rports = DEF_CFG_NUM_RPORTS;
1602 cfg->fwcfg.num_ioim_reqs = DEF_CFG_NUM_IOIM_REQS;
1603 cfg->fwcfg.num_tskim_reqs = DEF_CFG_NUM_TSKIM_REQS;
1604 cfg->fwcfg.num_fcxp_reqs = DEF_CFG_NUM_FCXP_REQS;
1605 cfg->fwcfg.num_uf_bufs = DEF_CFG_NUM_UF_BUFS;
1606 cfg->fwcfg.num_cqs = DEF_CFG_NUM_CQS;
Krishna Gudipatie2187d72011-06-13 15:53:58 -07001607 cfg->fwcfg.num_fwtio_reqs = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001608
1609 cfg->drvcfg.num_reqq_elems = DEF_CFG_NUM_REQQ_ELEMS;
1610 cfg->drvcfg.num_rspq_elems = DEF_CFG_NUM_RSPQ_ELEMS;
1611 cfg->drvcfg.num_sgpgs = DEF_CFG_NUM_SGPGS;
1612 cfg->drvcfg.num_sboot_tgts = DEF_CFG_NUM_SBOOT_TGTS;
1613 cfg->drvcfg.num_sboot_luns = DEF_CFG_NUM_SBOOT_LUNS;
1614 cfg->drvcfg.path_tov = BFA_FCPIM_PATHTOV_DEF;
1615 cfg->drvcfg.ioc_recover = BFA_FALSE;
1616 cfg->drvcfg.delay_comp = BFA_FALSE;
1617
1618}
1619
1620void
1621bfa_cfg_get_min(struct bfa_iocfc_cfg_s *cfg)
1622{
1623 bfa_cfg_get_default(cfg);
1624 cfg->fwcfg.num_ioim_reqs = BFA_IOIM_MIN;
1625 cfg->fwcfg.num_tskim_reqs = BFA_TSKIM_MIN;
1626 cfg->fwcfg.num_fcxp_reqs = BFA_FCXP_MIN;
1627 cfg->fwcfg.num_uf_bufs = BFA_UF_MIN;
1628 cfg->fwcfg.num_rports = BFA_RPORT_MIN;
Krishna Gudipatie2187d72011-06-13 15:53:58 -07001629 cfg->fwcfg.num_fwtio_reqs = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001630
1631 cfg->drvcfg.num_sgpgs = BFA_SGPG_MIN;
1632 cfg->drvcfg.num_reqq_elems = BFA_REQQ_NELEMS_MIN;
1633 cfg->drvcfg.num_rspq_elems = BFA_RSPQ_NELEMS_MIN;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001634 cfg->drvcfg.min_cfg = BFA_TRUE;
Jing Huang7725ccf2009-09-23 17:46:15 -07001635}