blob: eb296286c37e03de7da06e83eee22ea6980fe281 [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,
Krishna Gudipati45c5dc12011-07-20 17:03:46 -070036 &hal_mod_dconf,
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080037 NULL
38};
39
40/*
41 * Message handlers for various modules.
42 */
43static bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
44 bfa_isr_unhandled, /* NONE */
45 bfa_isr_unhandled, /* BFI_MC_IOC */
Krishna Gudipati3d7fc662011-06-24 20:28:17 -070046 bfa_fcdiag_intr, /* BFI_MC_DIAG */
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080047 bfa_isr_unhandled, /* BFI_MC_FLASH */
48 bfa_isr_unhandled, /* BFI_MC_CEE */
49 bfa_fcport_isr, /* BFI_MC_FCPORT */
50 bfa_isr_unhandled, /* BFI_MC_IOCFC */
51 bfa_isr_unhandled, /* BFI_MC_LL */
52 bfa_uf_isr, /* BFI_MC_UF */
53 bfa_fcxp_isr, /* BFI_MC_FCXP */
54 bfa_lps_isr, /* BFI_MC_LPS */
55 bfa_rport_isr, /* BFI_MC_RPORT */
Krishna Gudipatie2187d72011-06-13 15:53:58 -070056 bfa_itn_isr, /* BFI_MC_ITN */
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080057 bfa_isr_unhandled, /* BFI_MC_IOIM_READ */
58 bfa_isr_unhandled, /* BFI_MC_IOIM_WRITE */
59 bfa_isr_unhandled, /* BFI_MC_IOIM_IO */
60 bfa_ioim_isr, /* BFI_MC_IOIM */
61 bfa_ioim_good_comp_isr, /* BFI_MC_IOIM_IOCOM */
62 bfa_tskim_isr, /* BFI_MC_TSKIM */
63 bfa_isr_unhandled, /* BFI_MC_SBOOT */
64 bfa_isr_unhandled, /* BFI_MC_IPFC */
65 bfa_isr_unhandled, /* BFI_MC_PORT */
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 bfa_isr_unhandled, /* --------- */
76};
77/*
78 * Message handlers for mailbox command classes
79 */
80static bfa_ioc_mbox_mcfunc_t bfa_mbox_isrs[BFI_MC_MAX] = {
81 NULL,
82 NULL, /* BFI_MC_IOC */
83 NULL, /* BFI_MC_DIAG */
84 NULL, /* BFI_MC_FLASH */
85 NULL, /* BFI_MC_CEE */
86 NULL, /* BFI_MC_PORT */
87 bfa_iocfc_isr, /* BFI_MC_IOCFC */
88 NULL,
89};
90
91
92
93static void
Krishna Gudipati45070252011-06-24 20:24:29 -070094bfa_com_port_attach(struct bfa_s *bfa)
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080095{
96 struct bfa_port_s *port = &bfa->modules.port;
Krishna Gudipati45070252011-06-24 20:24:29 -070097 struct bfa_mem_dma_s *port_dma = BFA_MEM_PORT_DMA(bfa);
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080098
Maggie Zhangb77ee1f2010-12-09 19:09:26 -080099 bfa_port_attach(port, &bfa->ioc, bfa, bfa->trcmod);
Krishna Gudipati45070252011-06-24 20:24:29 -0700100 bfa_port_mem_claim(port, port_dma->kva_curp, port_dma->dma_curp);
Maggie Zhangb77ee1f2010-12-09 19:09:26 -0800101}
102
103/*
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700104 * ablk module attach
105 */
106static void
Krishna Gudipati45070252011-06-24 20:24:29 -0700107bfa_com_ablk_attach(struct bfa_s *bfa)
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700108{
109 struct bfa_ablk_s *ablk = &bfa->modules.ablk;
Krishna Gudipati45070252011-06-24 20:24:29 -0700110 struct bfa_mem_dma_s *ablk_dma = BFA_MEM_ABLK_DMA(bfa);
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700111
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700112 bfa_ablk_attach(ablk, &bfa->ioc);
Krishna Gudipati45070252011-06-24 20:24:29 -0700113 bfa_ablk_memclaim(ablk, ablk_dma->kva_curp, ablk_dma->dma_curp);
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700114}
115
Krishna Gudipati148d6102011-06-24 20:25:36 -0700116static void
117bfa_com_cee_attach(struct bfa_s *bfa)
118{
119 struct bfa_cee_s *cee = &bfa->modules.cee;
120 struct bfa_mem_dma_s *cee_dma = BFA_MEM_CEE_DMA(bfa);
121
122 cee->trcmod = bfa->trcmod;
123 bfa_cee_attach(cee, &bfa->ioc, bfa);
124 bfa_cee_mem_claim(cee, cee_dma->kva_curp, cee_dma->dma_curp);
125}
126
Krishna Gudipati51e569a2011-06-24 20:26:25 -0700127static void
128bfa_com_sfp_attach(struct bfa_s *bfa)
129{
130 struct bfa_sfp_s *sfp = BFA_SFP_MOD(bfa);
131 struct bfa_mem_dma_s *sfp_dma = BFA_MEM_SFP_DMA(bfa);
132
133 bfa_sfp_attach(sfp, &bfa->ioc, bfa, bfa->trcmod);
134 bfa_sfp_memclaim(sfp, sfp_dma->kva_curp, sfp_dma->dma_curp);
135}
136
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -0700137static void
138bfa_com_flash_attach(struct bfa_s *bfa, bfa_boolean_t mincfg)
139{
140 struct bfa_flash_s *flash = BFA_FLASH(bfa);
141 struct bfa_mem_dma_s *flash_dma = BFA_MEM_FLASH_DMA(bfa);
142
143 bfa_flash_attach(flash, &bfa->ioc, bfa, bfa->trcmod, mincfg);
144 bfa_flash_memclaim(flash, flash_dma->kva_curp,
145 flash_dma->dma_curp, mincfg);
146}
147
Krishna Gudipati3d7fc662011-06-24 20:28:17 -0700148static void
149bfa_com_diag_attach(struct bfa_s *bfa)
150{
151 struct bfa_diag_s *diag = BFA_DIAG_MOD(bfa);
152 struct bfa_mem_dma_s *diag_dma = BFA_MEM_DIAG_DMA(bfa);
153
154 bfa_diag_attach(diag, &bfa->ioc, bfa, bfa_fcport_beacon, bfa->trcmod);
155 bfa_diag_memclaim(diag, diag_dma->kva_curp, diag_dma->dma_curp);
156}
157
Krishna Gudipati3350d982011-06-24 20:28:37 -0700158static void
159bfa_com_phy_attach(struct bfa_s *bfa, bfa_boolean_t mincfg)
160{
161 struct bfa_phy_s *phy = BFA_PHY(bfa);
162 struct bfa_mem_dma_s *phy_dma = BFA_MEM_PHY_DMA(bfa);
163
164 bfa_phy_attach(phy, &bfa->ioc, bfa, bfa->trcmod, mincfg);
165 bfa_phy_memclaim(phy, phy_dma->kva_curp, phy_dma->dma_curp, mincfg);
166}
167
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700168/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700169 * BFA IOC FC related definitions
170 */
171
Jing Huang5fbe25c2010-10-18 17:17:23 -0700172/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700173 * IOC local definitions
174 */
175#define BFA_IOCFC_TOV 5000 /* msecs */
176
177enum {
178 BFA_IOCFC_ACT_NONE = 0,
179 BFA_IOCFC_ACT_INIT = 1,
180 BFA_IOCFC_ACT_STOP = 2,
181 BFA_IOCFC_ACT_DISABLE = 3,
Krishna Gudipati60138062011-06-24 20:25:15 -0700182 BFA_IOCFC_ACT_ENABLE = 4,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700183};
184
185#define DEF_CFG_NUM_FABRICS 1
186#define DEF_CFG_NUM_LPORTS 256
187#define DEF_CFG_NUM_CQS 4
188#define DEF_CFG_NUM_IOIM_REQS (BFA_IOIM_MAX)
189#define DEF_CFG_NUM_TSKIM_REQS 128
190#define DEF_CFG_NUM_FCXP_REQS 64
191#define DEF_CFG_NUM_UF_BUFS 64
192#define DEF_CFG_NUM_RPORTS 1024
193#define DEF_CFG_NUM_ITNIMS (DEF_CFG_NUM_RPORTS)
194#define DEF_CFG_NUM_TINS 256
195
196#define DEF_CFG_NUM_SGPGS 2048
197#define DEF_CFG_NUM_REQQ_ELEMS 256
198#define DEF_CFG_NUM_RSPQ_ELEMS 64
199#define DEF_CFG_NUM_SBOOT_TGTS 16
200#define DEF_CFG_NUM_SBOOT_LUNS 16
201
Jing Huang5fbe25c2010-10-18 17:17:23 -0700202/*
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700203 * IOCFC state machine definitions/declarations
204 */
205bfa_fsm_state_decl(bfa_iocfc, stopped, struct bfa_iocfc_s, enum iocfc_event);
206bfa_fsm_state_decl(bfa_iocfc, initing, struct bfa_iocfc_s, enum iocfc_event);
207bfa_fsm_state_decl(bfa_iocfc, dconf_read, struct bfa_iocfc_s, enum iocfc_event);
208bfa_fsm_state_decl(bfa_iocfc, init_cfg_wait,
209 struct bfa_iocfc_s, enum iocfc_event);
210bfa_fsm_state_decl(bfa_iocfc, init_cfg_done,
211 struct bfa_iocfc_s, enum iocfc_event);
212bfa_fsm_state_decl(bfa_iocfc, operational,
213 struct bfa_iocfc_s, enum iocfc_event);
214bfa_fsm_state_decl(bfa_iocfc, dconf_write,
215 struct bfa_iocfc_s, enum iocfc_event);
216bfa_fsm_state_decl(bfa_iocfc, stopping, struct bfa_iocfc_s, enum iocfc_event);
217bfa_fsm_state_decl(bfa_iocfc, enabling, struct bfa_iocfc_s, enum iocfc_event);
218bfa_fsm_state_decl(bfa_iocfc, cfg_wait, struct bfa_iocfc_s, enum iocfc_event);
219bfa_fsm_state_decl(bfa_iocfc, disabling, struct bfa_iocfc_s, enum iocfc_event);
220bfa_fsm_state_decl(bfa_iocfc, disabled, struct bfa_iocfc_s, enum iocfc_event);
221bfa_fsm_state_decl(bfa_iocfc, failed, struct bfa_iocfc_s, enum iocfc_event);
222bfa_fsm_state_decl(bfa_iocfc, init_failed,
223 struct bfa_iocfc_s, enum iocfc_event);
224
225/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700226 * forward declaration for IOC FC functions
227 */
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700228static void bfa_iocfc_start_submod(struct bfa_s *bfa);
229static void bfa_iocfc_disable_submod(struct bfa_s *bfa);
230static void bfa_iocfc_send_cfg(void *bfa_arg);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700231static void bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status);
232static void bfa_iocfc_disable_cbfn(void *bfa_arg);
233static void bfa_iocfc_hbfail_cbfn(void *bfa_arg);
234static void bfa_iocfc_reset_cbfn(void *bfa_arg);
235static struct bfa_ioc_cbfn_s bfa_iocfc_cbfn;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700236static void bfa_iocfc_init_cb(void *bfa_arg, bfa_boolean_t complete);
237static void bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl);
238static void bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl);
239static void bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl);
240
241static void
242bfa_iocfc_sm_stopped_entry(struct bfa_iocfc_s *iocfc)
243{
244}
245
246static void
247bfa_iocfc_sm_stopped(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
248{
249 bfa_trc(iocfc->bfa, event);
250
251 switch (event) {
252 case IOCFC_E_INIT:
253 case IOCFC_E_ENABLE:
254 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_initing);
255 break;
256 default:
257 bfa_sm_fault(iocfc->bfa, event);
258 break;
259 }
260}
261
262static void
263bfa_iocfc_sm_initing_entry(struct bfa_iocfc_s *iocfc)
264{
265 bfa_ioc_enable(&iocfc->bfa->ioc);
266}
267
268static void
269bfa_iocfc_sm_initing(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
270{
271 bfa_trc(iocfc->bfa, event);
272
273 switch (event) {
274 case IOCFC_E_IOC_ENABLED:
275 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_read);
276 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700277
278 case IOCFC_E_DISABLE:
279 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
280 break;
281
282 case IOCFC_E_STOP:
283 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
284 break;
285
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700286 case IOCFC_E_IOC_FAILED:
287 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_failed);
288 break;
289 default:
290 bfa_sm_fault(iocfc->bfa, event);
291 break;
292 }
293}
294
295static void
296bfa_iocfc_sm_dconf_read_entry(struct bfa_iocfc_s *iocfc)
297{
298 bfa_dconf_modinit(iocfc->bfa);
299}
300
301static void
302bfa_iocfc_sm_dconf_read(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
303{
304 bfa_trc(iocfc->bfa, event);
305
306 switch (event) {
307 case IOCFC_E_DCONF_DONE:
308 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_cfg_wait);
309 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700310
311 case IOCFC_E_DISABLE:
312 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
313 break;
314
315 case IOCFC_E_STOP:
316 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
317 break;
318
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700319 case IOCFC_E_IOC_FAILED:
320 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_failed);
321 break;
322 default:
323 bfa_sm_fault(iocfc->bfa, event);
324 break;
325 }
326}
327
328static void
329bfa_iocfc_sm_init_cfg_wait_entry(struct bfa_iocfc_s *iocfc)
330{
331 bfa_iocfc_send_cfg(iocfc->bfa);
332}
333
334static void
335bfa_iocfc_sm_init_cfg_wait(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
336{
337 bfa_trc(iocfc->bfa, event);
338
339 switch (event) {
340 case IOCFC_E_CFG_DONE:
341 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_cfg_done);
342 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700343
344 case IOCFC_E_DISABLE:
345 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
346 break;
347
348 case IOCFC_E_STOP:
349 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
350 break;
351
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700352 case IOCFC_E_IOC_FAILED:
353 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_init_failed);
354 break;
355 default:
356 bfa_sm_fault(iocfc->bfa, event);
357 break;
358 }
359}
360
361static void
362bfa_iocfc_sm_init_cfg_done_entry(struct bfa_iocfc_s *iocfc)
363{
364 iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
365 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.init_hcb_qe,
366 bfa_iocfc_init_cb, iocfc->bfa);
367}
368
369static void
370bfa_iocfc_sm_init_cfg_done(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
371{
372 bfa_trc(iocfc->bfa, event);
373
374 switch (event) {
375 case IOCFC_E_START:
376 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_operational);
377 break;
378 case IOCFC_E_STOP:
379 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
380 break;
381 case IOCFC_E_DISABLE:
382 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
383 break;
384 case IOCFC_E_IOC_FAILED:
385 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
386 break;
387 default:
388 bfa_sm_fault(iocfc->bfa, event);
389 break;
390 }
391}
392
393static void
394bfa_iocfc_sm_operational_entry(struct bfa_iocfc_s *iocfc)
395{
396 bfa_fcport_init(iocfc->bfa);
397 bfa_iocfc_start_submod(iocfc->bfa);
398}
399
400static void
401bfa_iocfc_sm_operational(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
402{
403 bfa_trc(iocfc->bfa, event);
404
405 switch (event) {
406 case IOCFC_E_STOP:
407 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
408 break;
409 case IOCFC_E_DISABLE:
410 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
411 break;
412 case IOCFC_E_IOC_FAILED:
413 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
414 break;
415 default:
416 bfa_sm_fault(iocfc->bfa, event);
417 break;
418 }
419}
420
421static void
422bfa_iocfc_sm_dconf_write_entry(struct bfa_iocfc_s *iocfc)
423{
424 bfa_dconf_modexit(iocfc->bfa);
425}
426
427static void
428bfa_iocfc_sm_dconf_write(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
429{
430 bfa_trc(iocfc->bfa, event);
431
432 switch (event) {
433 case IOCFC_E_DCONF_DONE:
434 case IOCFC_E_IOC_FAILED:
435 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
436 break;
437 default:
438 bfa_sm_fault(iocfc->bfa, event);
439 break;
440 }
441}
442
443static void
444bfa_iocfc_sm_stopping_entry(struct bfa_iocfc_s *iocfc)
445{
446 bfa_ioc_disable(&iocfc->bfa->ioc);
447}
448
449static void
450bfa_iocfc_sm_stopping(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
451{
452 bfa_trc(iocfc->bfa, event);
453
454 switch (event) {
455 case IOCFC_E_IOC_DISABLED:
456 bfa_isr_disable(iocfc->bfa);
457 bfa_iocfc_disable_submod(iocfc->bfa);
458 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopped);
459 iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
460 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.stop_hcb_qe,
461 bfa_iocfc_stop_cb, iocfc->bfa);
462 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700463
464 case IOCFC_E_IOC_ENABLED:
465 case IOCFC_E_DCONF_DONE:
466 case IOCFC_E_CFG_DONE:
467 break;
468
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700469 default:
470 bfa_sm_fault(iocfc->bfa, event);
471 break;
472 }
473}
474
475static void
476bfa_iocfc_sm_enabling_entry(struct bfa_iocfc_s *iocfc)
477{
478 bfa_ioc_enable(&iocfc->bfa->ioc);
479}
480
481static void
482bfa_iocfc_sm_enabling(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
483{
484 bfa_trc(iocfc->bfa, event);
485
486 switch (event) {
487 case IOCFC_E_IOC_ENABLED:
488 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_cfg_wait);
489 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700490
491 case IOCFC_E_DISABLE:
492 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
493 break;
494
495 case IOCFC_E_STOP:
496 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
497 break;
498
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700499 case IOCFC_E_IOC_FAILED:
500 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
501
502 if (iocfc->bfa->iocfc.cb_reqd == BFA_FALSE)
503 break;
504
505 iocfc->bfa->iocfc.op_status = BFA_STATUS_FAILED;
506 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.en_hcb_qe,
507 bfa_iocfc_enable_cb, iocfc->bfa);
508 iocfc->bfa->iocfc.cb_reqd = BFA_FALSE;
509 break;
510 default:
511 bfa_sm_fault(iocfc->bfa, event);
512 break;
513 }
514}
515
516static void
517bfa_iocfc_sm_cfg_wait_entry(struct bfa_iocfc_s *iocfc)
518{
519 bfa_iocfc_send_cfg(iocfc->bfa);
520}
521
522static void
523bfa_iocfc_sm_cfg_wait(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
524{
525 bfa_trc(iocfc->bfa, event);
526
527 switch (event) {
528 case IOCFC_E_CFG_DONE:
529 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_operational);
530 if (iocfc->bfa->iocfc.cb_reqd == BFA_FALSE)
531 break;
532
533 iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
534 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.en_hcb_qe,
535 bfa_iocfc_enable_cb, iocfc->bfa);
536 iocfc->bfa->iocfc.cb_reqd = BFA_FALSE;
537 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700538 case IOCFC_E_DISABLE:
539 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
540 break;
541
542 case IOCFC_E_STOP:
543 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
544 break;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700545 case IOCFC_E_IOC_FAILED:
546 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_failed);
547 if (iocfc->bfa->iocfc.cb_reqd == BFA_FALSE)
548 break;
549
550 iocfc->bfa->iocfc.op_status = BFA_STATUS_FAILED;
551 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.en_hcb_qe,
552 bfa_iocfc_enable_cb, iocfc->bfa);
553 iocfc->bfa->iocfc.cb_reqd = BFA_FALSE;
554 break;
555 default:
556 bfa_sm_fault(iocfc->bfa, event);
557 break;
558 }
559}
560
561static void
562bfa_iocfc_sm_disabling_entry(struct bfa_iocfc_s *iocfc)
563{
564 bfa_ioc_disable(&iocfc->bfa->ioc);
565}
566
567static void
568bfa_iocfc_sm_disabling(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
569{
570 bfa_trc(iocfc->bfa, event);
571
572 switch (event) {
573 case IOCFC_E_IOC_DISABLED:
574 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabled);
575 break;
Krishna Gudipati7ac83b12012-09-21 17:24:21 -0700576 case IOCFC_E_IOC_ENABLED:
577 case IOCFC_E_DCONF_DONE:
578 case IOCFC_E_CFG_DONE:
579 break;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -0700580 default:
581 bfa_sm_fault(iocfc->bfa, event);
582 break;
583 }
584}
585
586static void
587bfa_iocfc_sm_disabled_entry(struct bfa_iocfc_s *iocfc)
588{
589 bfa_isr_disable(iocfc->bfa);
590 bfa_iocfc_disable_submod(iocfc->bfa);
591 iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
592 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.dis_hcb_qe,
593 bfa_iocfc_disable_cb, iocfc->bfa);
594}
595
596static void
597bfa_iocfc_sm_disabled(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
598{
599 bfa_trc(iocfc->bfa, event);
600
601 switch (event) {
602 case IOCFC_E_STOP:
603 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
604 break;
605 case IOCFC_E_ENABLE:
606 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_enabling);
607 break;
608 default:
609 bfa_sm_fault(iocfc->bfa, event);
610 break;
611 }
612}
613
614static void
615bfa_iocfc_sm_failed_entry(struct bfa_iocfc_s *iocfc)
616{
617 bfa_isr_disable(iocfc->bfa);
618 bfa_iocfc_disable_submod(iocfc->bfa);
619}
620
621static void
622bfa_iocfc_sm_failed(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
623{
624 bfa_trc(iocfc->bfa, event);
625
626 switch (event) {
627 case IOCFC_E_STOP:
628 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_write);
629 break;
630 case IOCFC_E_DISABLE:
631 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_disabling);
632 break;
633 case IOCFC_E_IOC_ENABLED:
634 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_cfg_wait);
635 break;
636 case IOCFC_E_IOC_FAILED:
637 break;
638 default:
639 bfa_sm_fault(iocfc->bfa, event);
640 break;
641 }
642}
643
644static void
645bfa_iocfc_sm_init_failed_entry(struct bfa_iocfc_s *iocfc)
646{
647 bfa_isr_disable(iocfc->bfa);
648 iocfc->bfa->iocfc.op_status = BFA_STATUS_FAILED;
649 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.init_hcb_qe,
650 bfa_iocfc_init_cb, iocfc->bfa);
651}
652
653static void
654bfa_iocfc_sm_init_failed(struct bfa_iocfc_s *iocfc, enum iocfc_event event)
655{
656 bfa_trc(iocfc->bfa, event);
657
658 switch (event) {
659 case IOCFC_E_STOP:
660 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopping);
661 break;
662 case IOCFC_E_DISABLE:
663 bfa_ioc_disable(&iocfc->bfa->ioc);
664 break;
665 case IOCFC_E_IOC_ENABLED:
666 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_dconf_read);
667 break;
668 case IOCFC_E_IOC_DISABLED:
669 bfa_fsm_set_state(iocfc, bfa_iocfc_sm_stopped);
670 iocfc->bfa->iocfc.op_status = BFA_STATUS_OK;
671 bfa_cb_queue(iocfc->bfa, &iocfc->bfa->iocfc.dis_hcb_qe,
672 bfa_iocfc_disable_cb, iocfc->bfa);
673 break;
674 case IOCFC_E_IOC_FAILED:
675 break;
676 default:
677 bfa_sm_fault(iocfc->bfa, event);
678 break;
679 }
680}
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700681
Jing Huang5fbe25c2010-10-18 17:17:23 -0700682/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700683 * BFA Interrupt handling functions
684 */
685static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700686bfa_reqq_resume(struct bfa_s *bfa, int qid)
687{
688 struct list_head *waitq, *qe, *qen;
689 struct bfa_reqq_wait_s *wqe;
690
691 waitq = bfa_reqq(bfa, qid);
692 list_for_each_safe(qe, qen, waitq) {
Jing Huang5fbe25c2010-10-18 17:17:23 -0700693 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700694 * Callback only as long as there is room in request queue
695 */
696 if (bfa_reqq_full(bfa, qid))
697 break;
698
699 list_del(qe);
700 wqe = (struct bfa_reqq_wait_s *) qe;
701 wqe->qresume(wqe->cbarg);
702 }
703}
704
Krishna Gudipati1f670962012-03-13 17:38:15 -0700705bfa_boolean_t
Krishna Gudipati11189202011-06-13 15:50:35 -0700706bfa_isr_rspq(struct bfa_s *bfa, int qid)
707{
708 struct bfi_msg_s *m;
709 u32 pi, ci;
710 struct list_head *waitq;
Krishna Gudipati1f670962012-03-13 17:38:15 -0700711 bfa_boolean_t ret;
Krishna Gudipati11189202011-06-13 15:50:35 -0700712
Krishna Gudipati11189202011-06-13 15:50:35 -0700713 ci = bfa_rspq_ci(bfa, qid);
714 pi = bfa_rspq_pi(bfa, qid);
715
Krishna Gudipati1f670962012-03-13 17:38:15 -0700716 ret = (ci != pi);
717
Krishna Gudipati11189202011-06-13 15:50:35 -0700718 while (ci != pi) {
719 m = bfa_rspq_elem(bfa, qid, ci);
720 WARN_ON(m->mhdr.msg_class >= BFI_MC_MAX);
721
722 bfa_isrs[m->mhdr.msg_class] (bfa, m);
723 CQ_INCR(ci, bfa->iocfc.cfg.drvcfg.num_rspq_elems);
724 }
725
726 /*
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700727 * acknowledge RME completions and update CI
Krishna Gudipati11189202011-06-13 15:50:35 -0700728 */
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700729 bfa_isr_rspq_ack(bfa, qid, ci);
Krishna Gudipati11189202011-06-13 15:50:35 -0700730
731 /*
732 * Resume any pending requests in the corresponding reqq.
733 */
734 waitq = bfa_reqq(bfa, qid);
735 if (!list_empty(waitq))
736 bfa_reqq_resume(bfa, qid);
Krishna Gudipati1f670962012-03-13 17:38:15 -0700737
738 return ret;
Krishna Gudipati11189202011-06-13 15:50:35 -0700739}
740
741static inline void
742bfa_isr_reqq(struct bfa_s *bfa, int qid)
743{
744 struct list_head *waitq;
745
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700746 bfa_isr_reqq_ack(bfa, qid);
Krishna Gudipati11189202011-06-13 15:50:35 -0700747
748 /*
749 * Resume any pending requests in the corresponding reqq.
750 */
751 waitq = bfa_reqq(bfa, qid);
752 if (!list_empty(waitq))
753 bfa_reqq_resume(bfa, qid);
754}
755
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700756void
757bfa_msix_all(struct bfa_s *bfa, int vec)
758{
Krishna Gudipati10a07372011-06-24 20:23:38 -0700759 u32 intr, qintr;
760 int queue;
761
762 intr = readl(bfa->iocfc.bfa_regs.intr_status);
763 if (!intr)
764 return;
765
766 /*
767 * RME completion queue interrupt
768 */
769 qintr = intr & __HFN_INT_RME_MASK;
770 if (qintr && bfa->queue_process) {
771 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
772 bfa_isr_rspq(bfa, queue);
773 }
774
775 intr &= ~qintr;
776 if (!intr)
777 return;
778
779 /*
780 * CPE completion queue interrupt
781 */
782 qintr = intr & __HFN_INT_CPE_MASK;
783 if (qintr && bfa->queue_process) {
784 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
785 bfa_isr_reqq(bfa, queue);
786 }
787 intr &= ~qintr;
788 if (!intr)
789 return;
790
791 bfa_msix_lpu_err(bfa, intr);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700792}
793
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700794bfa_boolean_t
795bfa_intx(struct bfa_s *bfa)
796{
797 u32 intr, qintr;
798 int queue;
Krishna Gudipati1f670962012-03-13 17:38:15 -0700799 bfa_boolean_t rspq_comp = BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700800
Jing Huang53440262010-10-18 17:12:29 -0700801 intr = readl(bfa->iocfc.bfa_regs.intr_status);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700802
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700803 qintr = intr & (__HFN_INT_RME_MASK | __HFN_INT_CPE_MASK);
804 if (qintr)
805 writel(qintr, bfa->iocfc.bfa_regs.intr_status);
806
Jing Huang5fbe25c2010-10-18 17:17:23 -0700807 /*
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700808 * Unconditional RME completion queue interrupt
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700809 */
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700810 if (bfa->queue_process) {
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700811 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
Krishna Gudipati1f670962012-03-13 17:38:15 -0700812 if (bfa_isr_rspq(bfa, queue))
813 rspq_comp = BFA_TRUE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700814 }
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700815
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700816 if (!intr)
Krishna Gudipati1f670962012-03-13 17:38:15 -0700817 return (qintr | rspq_comp) ? BFA_TRUE : BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700818
Jing Huang5fbe25c2010-10-18 17:17:23 -0700819 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700820 * CPE completion queue interrupt
821 */
822 qintr = intr & __HFN_INT_CPE_MASK;
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700823 if (qintr && bfa->queue_process) {
824 for (queue = 0; queue < BFI_IOC_MAX_CQS; queue++)
825 bfa_isr_reqq(bfa, queue);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700826 }
827 intr &= ~qintr;
828 if (!intr)
829 return BFA_TRUE;
830
Krishna Gudipati9aec0242012-08-22 19:52:18 -0700831 if (bfa->intr_enabled)
832 bfa_msix_lpu_err(bfa, intr);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700833
834 return BFA_TRUE;
835}
836
837void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700838bfa_isr_enable(struct bfa_s *bfa)
839{
Krishna Gudipati11189202011-06-13 15:50:35 -0700840 u32 umsk;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700841 int pci_func = bfa_ioc_pcifn(&bfa->ioc);
842
843 bfa_trc(bfa, pci_func);
844
Krishna Gudipati775c7742011-06-13 15:52:12 -0700845 bfa_msix_ctrl_install(bfa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700846
Krishna Gudipati11189202011-06-13 15:50:35 -0700847 if (bfa_asic_id_ct2(bfa->ioc.pcidev.device_id)) {
848 umsk = __HFN_INT_ERR_MASK_CT2;
849 umsk |= pci_func == 0 ?
850 __HFN_INT_FN0_MASK_CT2 : __HFN_INT_FN1_MASK_CT2;
851 } else {
852 umsk = __HFN_INT_ERR_MASK;
853 umsk |= pci_func == 0 ? __HFN_INT_FN0_MASK : __HFN_INT_FN1_MASK;
854 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700855
Krishna Gudipati11189202011-06-13 15:50:35 -0700856 writel(umsk, bfa->iocfc.bfa_regs.intr_status);
857 writel(~umsk, bfa->iocfc.bfa_regs.intr_mask);
858 bfa->iocfc.intr_mask = ~umsk;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700859 bfa_isr_mode_set(bfa, bfa->msix.nvecs != 0);
Krishna Gudipati9aec0242012-08-22 19:52:18 -0700860
861 /*
862 * Set the flag indicating successful enabling of interrupts
863 */
864 bfa->intr_enabled = BFA_TRUE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700865}
866
867void
868bfa_isr_disable(struct bfa_s *bfa)
869{
Krishna Gudipati9aec0242012-08-22 19:52:18 -0700870 bfa->intr_enabled = BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700871 bfa_isr_mode_set(bfa, BFA_FALSE);
Jing Huang53440262010-10-18 17:12:29 -0700872 writel(-1L, bfa->iocfc.bfa_regs.intr_mask);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700873 bfa_msix_uninstall(bfa);
874}
875
876void
Krishna Gudipati11189202011-06-13 15:50:35 -0700877bfa_msix_reqq(struct bfa_s *bfa, int vec)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700878{
Krishna Gudipati11189202011-06-13 15:50:35 -0700879 bfa_isr_reqq(bfa, vec - bfa->iocfc.hwif.cpe_vec_q0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700880}
881
882void
883bfa_isr_unhandled(struct bfa_s *bfa, struct bfi_msg_s *m)
884{
885 bfa_trc(bfa, m->mhdr.msg_class);
886 bfa_trc(bfa, m->mhdr.msg_id);
887 bfa_trc(bfa, m->mhdr.mtag.i2htok);
Jing Huangd4b671c2010-12-26 21:46:35 -0800888 WARN_ON(1);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700889 bfa_trc_stop(bfa->trcmod);
890}
891
892void
Krishna Gudipati11189202011-06-13 15:50:35 -0700893bfa_msix_rspq(struct bfa_s *bfa, int vec)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700894{
Krishna Gudipati11189202011-06-13 15:50:35 -0700895 bfa_isr_rspq(bfa, vec - bfa->iocfc.hwif.rme_vec_q0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700896}
897
898void
899bfa_msix_lpu_err(struct bfa_s *bfa, int vec)
900{
901 u32 intr, curr_value;
Krishna Gudipati11189202011-06-13 15:50:35 -0700902 bfa_boolean_t lpu_isr, halt_isr, pss_isr;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700903
Jing Huang53440262010-10-18 17:12:29 -0700904 intr = readl(bfa->iocfc.bfa_regs.intr_status);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700905
Krishna Gudipati11189202011-06-13 15:50:35 -0700906 if (bfa_asic_id_ct2(bfa->ioc.pcidev.device_id)) {
907 halt_isr = intr & __HFN_INT_CPQ_HALT_CT2;
908 pss_isr = intr & __HFN_INT_ERR_PSS_CT2;
909 lpu_isr = intr & (__HFN_INT_MBOX_LPU0_CT2 |
910 __HFN_INT_MBOX_LPU1_CT2);
911 intr &= __HFN_INT_ERR_MASK_CT2;
912 } else {
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -0700913 halt_isr = bfa_asic_id_ct(bfa->ioc.pcidev.device_id) ?
914 (intr & __HFN_INT_LL_HALT) : 0;
Krishna Gudipati11189202011-06-13 15:50:35 -0700915 pss_isr = intr & __HFN_INT_ERR_PSS;
916 lpu_isr = intr & (__HFN_INT_MBOX_LPU0 | __HFN_INT_MBOX_LPU1);
917 intr &= __HFN_INT_ERR_MASK;
918 }
919
920 if (lpu_isr)
Maggie Zhangda99dcc2010-12-09 19:13:20 -0800921 bfa_ioc_mbox_isr(&bfa->ioc);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700922
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700923 if (intr) {
Krishna Gudipati11189202011-06-13 15:50:35 -0700924 if (halt_isr) {
Jing Huang5fbe25c2010-10-18 17:17:23 -0700925 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700926 * If LL_HALT bit is set then FW Init Halt LL Port
927 * Register needs to be cleared as well so Interrupt
928 * Status Register will be cleared.
929 */
Jing Huang53440262010-10-18 17:12:29 -0700930 curr_value = readl(bfa->ioc.ioc_regs.ll_halt);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700931 curr_value &= ~__FW_INIT_HALT_P;
Jing Huang53440262010-10-18 17:12:29 -0700932 writel(curr_value, bfa->ioc.ioc_regs.ll_halt);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700933 }
934
Krishna Gudipati11189202011-06-13 15:50:35 -0700935 if (pss_isr) {
Jing Huang5fbe25c2010-10-18 17:17:23 -0700936 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700937 * ERR_PSS bit needs to be cleared as well in case
938 * interrups are shared so driver's interrupt handler is
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300939 * still called even though it is already masked out.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700940 */
Jing Huang53440262010-10-18 17:12:29 -0700941 curr_value = readl(
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700942 bfa->ioc.ioc_regs.pss_err_status_reg);
Jing Huang53440262010-10-18 17:12:29 -0700943 writel(curr_value,
944 bfa->ioc.ioc_regs.pss_err_status_reg);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700945 }
946
Jing Huang53440262010-10-18 17:12:29 -0700947 writel(intr, bfa->iocfc.bfa_regs.intr_status);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800948 bfa_ioc_error_isr(&bfa->ioc);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700949 }
950}
951
Jing Huang5fbe25c2010-10-18 17:17:23 -0700952/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700953 * BFA IOC FC related functions
954 */
955
Jing Huang5fbe25c2010-10-18 17:17:23 -0700956/*
Maggie Zhangdf0f1932010-12-09 19:07:46 -0800957 * BFA IOC private functions
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700958 */
959
Jing Huang5fbe25c2010-10-18 17:17:23 -0700960/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700961 * Use the Mailbox interface to send BFI_IOCFC_H2I_CFG_REQ
962 */
963static void
964bfa_iocfc_send_cfg(void *bfa_arg)
965{
966 struct bfa_s *bfa = bfa_arg;
967 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
968 struct bfi_iocfc_cfg_req_s cfg_req;
969 struct bfi_iocfc_cfg_s *cfg_info = iocfc->cfginfo;
970 struct bfa_iocfc_cfg_s *cfg = &iocfc->cfg;
971 int i;
972
Jing Huangd4b671c2010-12-26 21:46:35 -0800973 WARN_ON(cfg->fwcfg.num_cqs > BFI_IOC_MAX_CQS);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700974 bfa_trc(bfa, cfg->fwcfg.num_cqs);
975
976 bfa_iocfc_reset_queues(bfa);
977
Jing Huang5fbe25c2010-10-18 17:17:23 -0700978 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700979 * initialize IOC configuration info
980 */
Krishna Gudipati10a07372011-06-24 20:23:38 -0700981 cfg_info->single_msix_vec = 0;
982 if (bfa->msix.nvecs == 1)
983 cfg_info->single_msix_vec = 1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700984 cfg_info->endian_sig = BFI_IOC_ENDIAN_SIG;
985 cfg_info->num_cqs = cfg->fwcfg.num_cqs;
Krishna Gudipati7ace27a2012-09-21 17:26:41 -0700986 cfg_info->num_ioim_reqs = cpu_to_be16(bfa_fcpim_get_throttle_cfg(bfa,
987 cfg->fwcfg.num_ioim_reqs));
Krishna Gudipatie2187d72011-06-13 15:53:58 -0700988 cfg_info->num_fwtio_reqs = cpu_to_be16(cfg->fwcfg.num_fwtio_reqs);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700989
990 bfa_dma_be_addr_set(cfg_info->cfgrsp_addr, iocfc->cfgrsp_dma.pa);
Jing Huang5fbe25c2010-10-18 17:17:23 -0700991 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700992 * dma map REQ and RSP circular queues and shadow pointers
993 */
994 for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
995 bfa_dma_be_addr_set(cfg_info->req_cq_ba[i],
996 iocfc->req_cq_ba[i].pa);
997 bfa_dma_be_addr_set(cfg_info->req_shadow_ci[i],
998 iocfc->req_cq_shadow_ci[i].pa);
999 cfg_info->req_cq_elems[i] =
Jing Huangba816ea2010-10-18 17:10:50 -07001000 cpu_to_be16(cfg->drvcfg.num_reqq_elems);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001001
1002 bfa_dma_be_addr_set(cfg_info->rsp_cq_ba[i],
1003 iocfc->rsp_cq_ba[i].pa);
1004 bfa_dma_be_addr_set(cfg_info->rsp_shadow_pi[i],
1005 iocfc->rsp_cq_shadow_pi[i].pa);
1006 cfg_info->rsp_cq_elems[i] =
Jing Huangba816ea2010-10-18 17:10:50 -07001007 cpu_to_be16(cfg->drvcfg.num_rspq_elems);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001008 }
1009
Jing Huang5fbe25c2010-10-18 17:17:23 -07001010 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001011 * Enable interrupt coalescing if it is driver init path
1012 * and not ioc disable/enable path.
1013 */
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001014 if (bfa_fsm_cmp_state(iocfc, bfa_iocfc_sm_init_cfg_wait))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001015 cfg_info->intr_attr.coalesce = BFA_TRUE;
1016
Jing Huang5fbe25c2010-10-18 17:17:23 -07001017 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001018 * dma map IOC configuration itself
1019 */
1020 bfi_h2i_set(cfg_req.mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_CFG_REQ,
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001021 bfa_fn_lpu(bfa));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001022 bfa_dma_be_addr_set(cfg_req.ioc_cfg_dma_addr, iocfc->cfg_info.pa);
1023
1024 bfa_ioc_mbox_send(&bfa->ioc, &cfg_req,
1025 sizeof(struct bfi_iocfc_cfg_req_s));
1026}
1027
1028static void
1029bfa_iocfc_init_mem(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
1030 struct bfa_pcidev_s *pcidev)
1031{
1032 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1033
1034 bfa->bfad = bfad;
1035 iocfc->bfa = bfa;
Jing Huang6a18b162010-10-18 17:08:54 -07001036 iocfc->cfg = *cfg;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001037
Jing Huang5fbe25c2010-10-18 17:17:23 -07001038 /*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001039 * Initialize chip specific handlers.
1040 */
Krishna Gudipati11189202011-06-13 15:50:35 -07001041 if (bfa_asic_id_ctc(bfa_ioc_devid(&bfa->ioc))) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001042 iocfc->hwif.hw_reginit = bfa_hwct_reginit;
1043 iocfc->hwif.hw_reqq_ack = bfa_hwct_reqq_ack;
1044 iocfc->hwif.hw_rspq_ack = bfa_hwct_rspq_ack;
1045 iocfc->hwif.hw_msix_init = bfa_hwct_msix_init;
Krishna Gudipati775c7742011-06-13 15:52:12 -07001046 iocfc->hwif.hw_msix_ctrl_install = bfa_hwct_msix_ctrl_install;
1047 iocfc->hwif.hw_msix_queue_install = bfa_hwct_msix_queue_install;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001048 iocfc->hwif.hw_msix_uninstall = bfa_hwct_msix_uninstall;
1049 iocfc->hwif.hw_isr_mode_set = bfa_hwct_isr_mode_set;
1050 iocfc->hwif.hw_msix_getvecs = bfa_hwct_msix_getvecs;
1051 iocfc->hwif.hw_msix_get_rme_range = bfa_hwct_msix_get_rme_range;
Krishna Gudipati11189202011-06-13 15:50:35 -07001052 iocfc->hwif.rme_vec_q0 = BFI_MSIX_RME_QMIN_CT;
1053 iocfc->hwif.cpe_vec_q0 = BFI_MSIX_CPE_QMIN_CT;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001054 } else {
1055 iocfc->hwif.hw_reginit = bfa_hwcb_reginit;
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001056 iocfc->hwif.hw_reqq_ack = NULL;
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -07001057 iocfc->hwif.hw_rspq_ack = bfa_hwcb_rspq_ack;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001058 iocfc->hwif.hw_msix_init = bfa_hwcb_msix_init;
Krishna Gudipati775c7742011-06-13 15:52:12 -07001059 iocfc->hwif.hw_msix_ctrl_install = bfa_hwcb_msix_ctrl_install;
1060 iocfc->hwif.hw_msix_queue_install = bfa_hwcb_msix_queue_install;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001061 iocfc->hwif.hw_msix_uninstall = bfa_hwcb_msix_uninstall;
1062 iocfc->hwif.hw_isr_mode_set = bfa_hwcb_isr_mode_set;
1063 iocfc->hwif.hw_msix_getvecs = bfa_hwcb_msix_getvecs;
1064 iocfc->hwif.hw_msix_get_rme_range = bfa_hwcb_msix_get_rme_range;
Krishna Gudipati11189202011-06-13 15:50:35 -07001065 iocfc->hwif.rme_vec_q0 = BFI_MSIX_RME_QMIN_CB +
1066 bfa_ioc_pcifn(&bfa->ioc) * BFI_IOC_MAX_CQS;
1067 iocfc->hwif.cpe_vec_q0 = BFI_MSIX_CPE_QMIN_CB +
1068 bfa_ioc_pcifn(&bfa->ioc) * BFI_IOC_MAX_CQS;
1069 }
1070
1071 if (bfa_asic_id_ct2(bfa_ioc_devid(&bfa->ioc))) {
1072 iocfc->hwif.hw_reginit = bfa_hwct2_reginit;
1073 iocfc->hwif.hw_isr_mode_set = NULL;
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -07001074 iocfc->hwif.hw_rspq_ack = bfa_hwct2_rspq_ack;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001075 }
1076
1077 iocfc->hwif.hw_reginit(bfa);
1078 bfa->msix.nvecs = 0;
1079}
1080
1081static void
Krishna Gudipati45070252011-06-24 20:24:29 -07001082bfa_iocfc_mem_claim(struct bfa_s *bfa, struct bfa_iocfc_cfg_s *cfg)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001083{
Krishna Gudipati45070252011-06-24 20:24:29 -07001084 u8 *dm_kva = NULL;
1085 u64 dm_pa = 0;
Krishna Gudipati881c1b32012-08-22 19:52:02 -07001086 int i, per_reqq_sz, per_rspq_sz;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001087 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
Krishna Gudipati45070252011-06-24 20:24:29 -07001088 struct bfa_mem_dma_s *ioc_dma = BFA_MEM_IOC_DMA(bfa);
1089 struct bfa_mem_dma_s *iocfc_dma = BFA_MEM_IOCFC_DMA(bfa);
1090 struct bfa_mem_dma_s *reqq_dma, *rspq_dma;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001091
Krishna Gudipati45070252011-06-24 20:24:29 -07001092 /* First allocate dma memory for IOC */
1093 bfa_ioc_mem_claim(&bfa->ioc, bfa_mem_dma_virt(ioc_dma),
1094 bfa_mem_dma_phys(ioc_dma));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001095
Krishna Gudipati45070252011-06-24 20:24:29 -07001096 /* Claim DMA-able memory for the request/response queues */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001097 per_reqq_sz = BFA_ROUNDUP((cfg->drvcfg.num_reqq_elems * BFI_LMSG_SZ),
Krishna Gudipati45070252011-06-24 20:24:29 -07001098 BFA_DMA_ALIGN_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001099 per_rspq_sz = BFA_ROUNDUP((cfg->drvcfg.num_rspq_elems * BFI_LMSG_SZ),
Krishna Gudipati45070252011-06-24 20:24:29 -07001100 BFA_DMA_ALIGN_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001101
1102 for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
Krishna Gudipati45070252011-06-24 20:24:29 -07001103 reqq_dma = BFA_MEM_REQQ_DMA(bfa, i);
1104 iocfc->req_cq_ba[i].kva = bfa_mem_dma_virt(reqq_dma);
1105 iocfc->req_cq_ba[i].pa = bfa_mem_dma_phys(reqq_dma);
1106 memset(iocfc->req_cq_ba[i].kva, 0, per_reqq_sz);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001107
Krishna Gudipati45070252011-06-24 20:24:29 -07001108 rspq_dma = BFA_MEM_RSPQ_DMA(bfa, i);
1109 iocfc->rsp_cq_ba[i].kva = bfa_mem_dma_virt(rspq_dma);
1110 iocfc->rsp_cq_ba[i].pa = bfa_mem_dma_phys(rspq_dma);
1111 memset(iocfc->rsp_cq_ba[i].kva, 0, per_rspq_sz);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001112 }
1113
Krishna Gudipati45070252011-06-24 20:24:29 -07001114 /* Claim IOCFC dma memory - for shadow CI/PI */
1115 dm_kva = bfa_mem_dma_virt(iocfc_dma);
1116 dm_pa = bfa_mem_dma_phys(iocfc_dma);
1117
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001118 for (i = 0; i < cfg->fwcfg.num_cqs; i++) {
1119 iocfc->req_cq_shadow_ci[i].kva = dm_kva;
1120 iocfc->req_cq_shadow_ci[i].pa = dm_pa;
1121 dm_kva += BFA_CACHELINE_SZ;
1122 dm_pa += BFA_CACHELINE_SZ;
1123
1124 iocfc->rsp_cq_shadow_pi[i].kva = dm_kva;
1125 iocfc->rsp_cq_shadow_pi[i].pa = dm_pa;
1126 dm_kva += BFA_CACHELINE_SZ;
1127 dm_pa += BFA_CACHELINE_SZ;
1128 }
1129
Krishna Gudipati45070252011-06-24 20:24:29 -07001130 /* Claim IOCFC dma memory - for the config info page */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001131 bfa->iocfc.cfg_info.kva = dm_kva;
1132 bfa->iocfc.cfg_info.pa = dm_pa;
1133 bfa->iocfc.cfginfo = (struct bfi_iocfc_cfg_s *) dm_kva;
1134 dm_kva += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
1135 dm_pa += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
1136
Krishna Gudipati45070252011-06-24 20:24:29 -07001137 /* Claim IOCFC dma memory - for the config response */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001138 bfa->iocfc.cfgrsp_dma.kva = dm_kva;
1139 bfa->iocfc.cfgrsp_dma.pa = dm_pa;
1140 bfa->iocfc.cfgrsp = (struct bfi_iocfc_cfgrsp_s *) dm_kva;
Krishna Gudipati45070252011-06-24 20:24:29 -07001141 dm_kva += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
1142 BFA_CACHELINE_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001143 dm_pa += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
Krishna Gudipati45070252011-06-24 20:24:29 -07001144 BFA_CACHELINE_SZ);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001145
Krishna Gudipati45070252011-06-24 20:24:29 -07001146 /* Claim IOCFC kva memory */
Krishna Gudipati881c1b32012-08-22 19:52:02 -07001147 bfa_ioc_debug_memclaim(&bfa->ioc, bfa_mem_kva_curp(iocfc));
1148 bfa_mem_kva_curp(iocfc) += BFA_DBG_FWTRC_LEN;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001149}
1150
Jing Huang5fbe25c2010-10-18 17:17:23 -07001151/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001152 * Start BFA submodules.
1153 */
1154static void
1155bfa_iocfc_start_submod(struct bfa_s *bfa)
1156{
1157 int i;
1158
Krishna Gudipati775c7742011-06-13 15:52:12 -07001159 bfa->queue_process = BFA_TRUE;
Krishna Gudipati11189202011-06-13 15:50:35 -07001160 for (i = 0; i < BFI_IOC_MAX_CQS; i++)
Krishna Gudipatica6e0ea2011-07-20 17:00:45 -07001161 bfa_isr_rspq_ack(bfa, i, bfa_rspq_ci(bfa, i));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001162
1163 for (i = 0; hal_mods[i]; i++)
1164 hal_mods[i]->start(bfa);
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001165
1166 bfa->iocfc.submod_enabled = BFA_TRUE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001167}
1168
Jing Huang5fbe25c2010-10-18 17:17:23 -07001169/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001170 * Disable BFA submodules.
1171 */
1172static void
1173bfa_iocfc_disable_submod(struct bfa_s *bfa)
1174{
1175 int i;
1176
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001177 if (bfa->iocfc.submod_enabled == BFA_FALSE)
1178 return;
1179
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001180 for (i = 0; hal_mods[i]; i++)
1181 hal_mods[i]->iocdisable(bfa);
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001182
1183 bfa->iocfc.submod_enabled = BFA_FALSE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001184}
1185
1186static void
1187bfa_iocfc_init_cb(void *bfa_arg, bfa_boolean_t complete)
1188{
1189 struct bfa_s *bfa = bfa_arg;
1190
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001191 if (complete)
1192 bfa_cb_init(bfa->bfad, bfa->iocfc.op_status);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001193}
1194
1195static void
1196bfa_iocfc_stop_cb(void *bfa_arg, bfa_boolean_t compl)
1197{
1198 struct bfa_s *bfa = bfa_arg;
1199 struct bfad_s *bfad = bfa->bfad;
1200
1201 if (compl)
1202 complete(&bfad->comp);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001203}
1204
1205static void
Krishna Gudipati60138062011-06-24 20:25:15 -07001206bfa_iocfc_enable_cb(void *bfa_arg, bfa_boolean_t compl)
1207{
1208 struct bfa_s *bfa = bfa_arg;
1209 struct bfad_s *bfad = bfa->bfad;
1210
1211 if (compl)
1212 complete(&bfad->enable_comp);
1213}
1214
1215static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001216bfa_iocfc_disable_cb(void *bfa_arg, bfa_boolean_t compl)
1217{
1218 struct bfa_s *bfa = bfa_arg;
1219 struct bfad_s *bfad = bfa->bfad;
1220
1221 if (compl)
1222 complete(&bfad->disable_comp);
1223}
1224
Krishna Gudipati11189202011-06-13 15:50:35 -07001225/**
1226 * configure queue registers from firmware response
1227 */
1228static void
1229bfa_iocfc_qreg(struct bfa_s *bfa, struct bfi_iocfc_qreg_s *qreg)
1230{
1231 int i;
1232 struct bfa_iocfc_regs_s *r = &bfa->iocfc.bfa_regs;
1233 void __iomem *kva = bfa_ioc_bar0(&bfa->ioc);
1234
1235 for (i = 0; i < BFI_IOC_MAX_CQS; i++) {
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001236 bfa->iocfc.hw_qid[i] = qreg->hw_qid[i];
Krishna Gudipati11189202011-06-13 15:50:35 -07001237 r->cpe_q_ci[i] = kva + be32_to_cpu(qreg->cpe_q_ci_off[i]);
1238 r->cpe_q_pi[i] = kva + be32_to_cpu(qreg->cpe_q_pi_off[i]);
1239 r->cpe_q_ctrl[i] = kva + be32_to_cpu(qreg->cpe_qctl_off[i]);
1240 r->rme_q_ci[i] = kva + be32_to_cpu(qreg->rme_q_ci_off[i]);
1241 r->rme_q_pi[i] = kva + be32_to_cpu(qreg->rme_q_pi_off[i]);
1242 r->rme_q_ctrl[i] = kva + be32_to_cpu(qreg->rme_qctl_off[i]);
1243 }
1244}
1245
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001246static void
1247bfa_iocfc_res_recfg(struct bfa_s *bfa, struct bfa_iocfc_fwcfg_s *fwcfg)
1248{
Krishna Gudipati7ace27a2012-09-21 17:26:41 -07001249 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1250 struct bfi_iocfc_cfg_s *cfg_info = iocfc->cfginfo;
1251
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001252 bfa_fcxp_res_recfg(bfa, fwcfg->num_fcxp_reqs);
1253 bfa_uf_res_recfg(bfa, fwcfg->num_uf_bufs);
1254 bfa_rport_res_recfg(bfa, fwcfg->num_rports);
Krishna Gudipati7ace27a2012-09-21 17:26:41 -07001255 bfa_fcp_res_recfg(bfa, cpu_to_be16(cfg_info->num_ioim_reqs),
1256 fwcfg->num_ioim_reqs);
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001257 bfa_tskim_res_recfg(bfa, fwcfg->num_tskim_reqs);
1258}
1259
Jing Huang5fbe25c2010-10-18 17:17:23 -07001260/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001261 * Update BFA configuration from firmware configuration.
1262 */
1263static void
1264bfa_iocfc_cfgrsp(struct bfa_s *bfa)
1265{
1266 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1267 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
1268 struct bfa_iocfc_fwcfg_s *fwcfg = &cfgrsp->fwcfg;
1269
1270 fwcfg->num_cqs = fwcfg->num_cqs;
Jing Huangba816ea2010-10-18 17:10:50 -07001271 fwcfg->num_ioim_reqs = be16_to_cpu(fwcfg->num_ioim_reqs);
Krishna Gudipatie2187d72011-06-13 15:53:58 -07001272 fwcfg->num_fwtio_reqs = be16_to_cpu(fwcfg->num_fwtio_reqs);
Jing Huangba816ea2010-10-18 17:10:50 -07001273 fwcfg->num_tskim_reqs = be16_to_cpu(fwcfg->num_tskim_reqs);
1274 fwcfg->num_fcxp_reqs = be16_to_cpu(fwcfg->num_fcxp_reqs);
1275 fwcfg->num_uf_bufs = be16_to_cpu(fwcfg->num_uf_bufs);
1276 fwcfg->num_rports = be16_to_cpu(fwcfg->num_rports);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001277
Jing Huang5fbe25c2010-10-18 17:17:23 -07001278 /*
Krishna Gudipati11189202011-06-13 15:50:35 -07001279 * configure queue register offsets as learnt from firmware
1280 */
1281 bfa_iocfc_qreg(bfa, &cfgrsp->qreg);
1282
1283 /*
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001284 * Re-configure resources as learnt from Firmware
1285 */
1286 bfa_iocfc_res_recfg(bfa, fwcfg);
1287
1288 /*
Krishna Gudipati775c7742011-06-13 15:52:12 -07001289 * Install MSIX queue handlers
1290 */
1291 bfa_msix_queue_install(bfa);
1292
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001293 if (bfa->iocfc.cfgrsp->pbc_cfg.pbc_pwwn != 0) {
1294 bfa->ioc.attr->pwwn = bfa->iocfc.cfgrsp->pbc_cfg.pbc_pwwn;
1295 bfa->ioc.attr->nwwn = bfa->iocfc.cfgrsp->pbc_cfg.pbc_nwwn;
1296 bfa_fsm_send_event(iocfc, IOCFC_E_CFG_DONE);
Krishna Gudipati60138062011-06-24 20:25:15 -07001297 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001298}
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001299
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001300void
1301bfa_iocfc_reset_queues(struct bfa_s *bfa)
1302{
1303 int q;
1304
1305 for (q = 0; q < BFI_IOC_MAX_CQS; q++) {
1306 bfa_reqq_ci(bfa, q) = 0;
1307 bfa_reqq_pi(bfa, q) = 0;
1308 bfa_rspq_ci(bfa, q) = 0;
1309 bfa_rspq_pi(bfa, q) = 0;
1310 }
1311}
1312
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001313/*
1314 * Process FAA pwwn msg from fw.
1315 */
1316static void
1317bfa_iocfc_process_faa_addr(struct bfa_s *bfa, struct bfi_faa_addr_msg_s *msg)
1318{
1319 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1320 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
1321
1322 cfgrsp->pbc_cfg.pbc_pwwn = msg->pwwn;
1323 cfgrsp->pbc_cfg.pbc_nwwn = msg->nwwn;
1324
1325 bfa->ioc.attr->pwwn = msg->pwwn;
1326 bfa->ioc.attr->nwwn = msg->nwwn;
1327 bfa_fsm_send_event(iocfc, IOCFC_E_CFG_DONE);
1328}
1329
Krishna Gudipatia7141342011-06-24 20:23:19 -07001330/* Fabric Assigned Address specific functions */
1331
1332/*
1333 * Check whether IOC is ready before sending command down
1334 */
1335static bfa_status_t
1336bfa_faa_validate_request(struct bfa_s *bfa)
1337{
1338 enum bfa_ioc_type_e ioc_type = bfa_get_type(bfa);
1339 u32 card_type = bfa->ioc.attr->card_type;
1340
1341 if (bfa_ioc_is_operational(&bfa->ioc)) {
1342 if ((ioc_type != BFA_IOC_TYPE_FC) || bfa_mfg_is_mezz(card_type))
1343 return BFA_STATUS_FEATURE_NOT_SUPPORTED;
1344 } else {
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001345 return BFA_STATUS_IOC_NON_OP;
Krishna Gudipatia7141342011-06-24 20:23:19 -07001346 }
1347
1348 return BFA_STATUS_OK;
1349}
1350
1351bfa_status_t
Krishna Gudipatia7141342011-06-24 20:23:19 -07001352bfa_faa_query(struct bfa_s *bfa, struct bfa_faa_attr_s *attr,
1353 bfa_cb_iocfc_t cbfn, void *cbarg)
1354{
1355 struct bfi_faa_query_s faa_attr_req;
1356 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1357 bfa_status_t status;
1358
1359 iocfc->faa_args.faa_attr = attr;
1360 iocfc->faa_args.faa_cb.faa_cbfn = cbfn;
1361 iocfc->faa_args.faa_cb.faa_cbarg = cbarg;
1362
1363 status = bfa_faa_validate_request(bfa);
1364 if (status != BFA_STATUS_OK)
1365 return status;
1366
1367 if (iocfc->faa_args.busy == BFA_TRUE)
1368 return BFA_STATUS_DEVBUSY;
1369
1370 iocfc->faa_args.busy = BFA_TRUE;
1371 memset(&faa_attr_req, 0, sizeof(struct bfi_faa_query_s));
1372 bfi_h2i_set(faa_attr_req.mh, BFI_MC_IOCFC,
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001373 BFI_IOCFC_H2I_FAA_QUERY_REQ, bfa_fn_lpu(bfa));
Krishna Gudipatia7141342011-06-24 20:23:19 -07001374
1375 bfa_ioc_mbox_send(&bfa->ioc, &faa_attr_req,
1376 sizeof(struct bfi_faa_query_s));
1377
1378 return BFA_STATUS_OK;
1379}
1380
1381/*
Krishna Gudipatia7141342011-06-24 20:23:19 -07001382 * FAA query response
1383 */
1384static void
1385bfa_faa_query_reply(struct bfa_iocfc_s *iocfc,
1386 bfi_faa_query_rsp_t *rsp)
1387{
1388 void *cbarg = iocfc->faa_args.faa_cb.faa_cbarg;
1389
1390 if (iocfc->faa_args.faa_attr) {
1391 iocfc->faa_args.faa_attr->faa = rsp->faa;
1392 iocfc->faa_args.faa_attr->faa_state = rsp->faa_status;
1393 iocfc->faa_args.faa_attr->pwwn_source = rsp->addr_source;
1394 }
1395
1396 WARN_ON(!iocfc->faa_args.faa_cb.faa_cbfn);
1397
1398 iocfc->faa_args.faa_cb.faa_cbfn(cbarg, BFA_STATUS_OK);
1399 iocfc->faa_args.busy = BFA_FALSE;
1400}
1401
Jing Huang5fbe25c2010-10-18 17:17:23 -07001402/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001403 * IOC enable request is complete
1404 */
1405static void
1406bfa_iocfc_enable_cbfn(void *bfa_arg, enum bfa_status status)
1407{
1408 struct bfa_s *bfa = bfa_arg;
1409
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001410 if (status == BFA_STATUS_OK)
1411 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_ENABLED);
1412 else
1413 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_FAILED);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001414}
1415
Jing Huang5fbe25c2010-10-18 17:17:23 -07001416/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001417 * IOC disable request is complete
1418 */
1419static void
1420bfa_iocfc_disable_cbfn(void *bfa_arg)
1421{
1422 struct bfa_s *bfa = bfa_arg;
1423
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001424 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_DISABLED);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001425}
1426
Jing Huang5fbe25c2010-10-18 17:17:23 -07001427/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001428 * Notify sub-modules of hardware failure.
1429 */
1430static void
1431bfa_iocfc_hbfail_cbfn(void *bfa_arg)
1432{
1433 struct bfa_s *bfa = bfa_arg;
1434
Krishna Gudipati775c7742011-06-13 15:52:12 -07001435 bfa->queue_process = BFA_FALSE;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001436 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_IOC_FAILED);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001437}
1438
Jing Huang5fbe25c2010-10-18 17:17:23 -07001439/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001440 * Actions on chip-reset completion.
1441 */
1442static void
1443bfa_iocfc_reset_cbfn(void *bfa_arg)
1444{
1445 struct bfa_s *bfa = bfa_arg;
1446
1447 bfa_iocfc_reset_queues(bfa);
1448 bfa_isr_enable(bfa);
1449}
1450
Jing Huang5fbe25c2010-10-18 17:17:23 -07001451/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001452 * Query IOC memory requirement information.
1453 */
1454void
Krishna Gudipati45070252011-06-24 20:24:29 -07001455bfa_iocfc_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo,
1456 struct bfa_s *bfa)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001457{
Krishna Gudipati45070252011-06-24 20:24:29 -07001458 int q, per_reqq_sz, per_rspq_sz;
1459 struct bfa_mem_dma_s *ioc_dma = BFA_MEM_IOC_DMA(bfa);
1460 struct bfa_mem_dma_s *iocfc_dma = BFA_MEM_IOCFC_DMA(bfa);
1461 struct bfa_mem_kva_s *iocfc_kva = BFA_MEM_IOCFC_KVA(bfa);
1462 u32 dm_len = 0;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001463
Krishna Gudipati45070252011-06-24 20:24:29 -07001464 /* dma memory setup for IOC */
1465 bfa_mem_dma_setup(meminfo, ioc_dma,
1466 BFA_ROUNDUP(sizeof(struct bfi_ioc_attr_s), BFA_DMA_ALIGN_SZ));
1467
1468 /* dma memory setup for REQ/RSP queues */
1469 per_reqq_sz = BFA_ROUNDUP((cfg->drvcfg.num_reqq_elems * BFI_LMSG_SZ),
1470 BFA_DMA_ALIGN_SZ);
1471 per_rspq_sz = BFA_ROUNDUP((cfg->drvcfg.num_rspq_elems * BFI_LMSG_SZ),
1472 BFA_DMA_ALIGN_SZ);
1473
1474 for (q = 0; q < cfg->fwcfg.num_cqs; q++) {
1475 bfa_mem_dma_setup(meminfo, BFA_MEM_REQQ_DMA(bfa, q),
1476 per_reqq_sz);
1477 bfa_mem_dma_setup(meminfo, BFA_MEM_RSPQ_DMA(bfa, q),
1478 per_rspq_sz);
1479 }
1480
1481 /* IOCFC dma memory - calculate Shadow CI/PI size */
1482 for (q = 0; q < cfg->fwcfg.num_cqs; q++)
1483 dm_len += (2 * BFA_CACHELINE_SZ);
1484
1485 /* IOCFC dma memory - calculate config info / rsp size */
1486 dm_len += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfg_s), BFA_CACHELINE_SZ);
1487 dm_len += BFA_ROUNDUP(sizeof(struct bfi_iocfc_cfgrsp_s),
1488 BFA_CACHELINE_SZ);
1489
1490 /* dma memory setup for IOCFC */
1491 bfa_mem_dma_setup(meminfo, iocfc_dma, dm_len);
1492
1493 /* kva memory setup for IOCFC */
Krishna Gudipati881c1b32012-08-22 19:52:02 -07001494 bfa_mem_kva_setup(meminfo, iocfc_kva, BFA_DBG_FWTRC_LEN);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001495}
1496
Jing Huang5fbe25c2010-10-18 17:17:23 -07001497/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001498 * Query IOC memory requirement information.
1499 */
1500void
1501bfa_iocfc_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
Krishna Gudipati45070252011-06-24 20:24:29 -07001502 struct bfa_pcidev_s *pcidev)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001503{
1504 int i;
1505 struct bfa_ioc_s *ioc = &bfa->ioc;
1506
1507 bfa_iocfc_cbfn.enable_cbfn = bfa_iocfc_enable_cbfn;
1508 bfa_iocfc_cbfn.disable_cbfn = bfa_iocfc_disable_cbfn;
1509 bfa_iocfc_cbfn.hbfail_cbfn = bfa_iocfc_hbfail_cbfn;
1510 bfa_iocfc_cbfn.reset_cbfn = bfa_iocfc_reset_cbfn;
1511
1512 ioc->trcmod = bfa->trcmod;
1513 bfa_ioc_attach(&bfa->ioc, bfa, &bfa_iocfc_cbfn, &bfa->timer_mod);
1514
Krishna Gudipatid37779f2011-06-13 15:42:10 -07001515 bfa_ioc_pci_init(&bfa->ioc, pcidev, BFI_PCIFN_CLASS_FC);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001516 bfa_ioc_mbox_register(&bfa->ioc, bfa_mbox_isrs);
1517
1518 bfa_iocfc_init_mem(bfa, bfad, cfg, pcidev);
Krishna Gudipati45070252011-06-24 20:24:29 -07001519 bfa_iocfc_mem_claim(bfa, cfg);
Maggie Zhangf7f738122010-12-09 19:08:43 -08001520 INIT_LIST_HEAD(&bfa->timer_mod.timer_q);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001521
1522 INIT_LIST_HEAD(&bfa->comp_q);
1523 for (i = 0; i < BFI_IOC_MAX_CQS; i++)
1524 INIT_LIST_HEAD(&bfa->reqq_waitq[i]);
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001525
1526 bfa->iocfc.cb_reqd = BFA_FALSE;
1527 bfa->iocfc.op_status = BFA_STATUS_OK;
1528 bfa->iocfc.submod_enabled = BFA_FALSE;
1529
1530 bfa_fsm_set_state(&bfa->iocfc, bfa_iocfc_sm_stopped);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001531}
1532
Jing Huang5fbe25c2010-10-18 17:17:23 -07001533/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001534 * Query IOC memory requirement information.
1535 */
1536void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001537bfa_iocfc_init(struct bfa_s *bfa)
1538{
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001539 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_INIT);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001540}
1541
Jing Huang5fbe25c2010-10-18 17:17:23 -07001542/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001543 * IOC start called from bfa_start(). Called to start IOC operations
1544 * at driver instantiation for this instance.
1545 */
1546void
1547bfa_iocfc_start(struct bfa_s *bfa)
1548{
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001549 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_START);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001550}
1551
Jing Huang5fbe25c2010-10-18 17:17:23 -07001552/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001553 * IOC stop called from bfa_stop(). Called only when driver is unloaded
1554 * for this instance.
1555 */
1556void
1557bfa_iocfc_stop(struct bfa_s *bfa)
1558{
Krishna Gudipati775c7742011-06-13 15:52:12 -07001559 bfa->queue_process = BFA_FALSE;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001560 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_STOP);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001561}
1562
1563void
1564bfa_iocfc_isr(void *bfaarg, struct bfi_mbmsg_s *m)
1565{
1566 struct bfa_s *bfa = bfaarg;
1567 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1568 union bfi_iocfc_i2h_msg_u *msg;
1569
1570 msg = (union bfi_iocfc_i2h_msg_u *) m;
1571 bfa_trc(bfa, msg->mh.msg_id);
1572
1573 switch (msg->mh.msg_id) {
1574 case BFI_IOCFC_I2H_CFG_REPLY:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001575 bfa_iocfc_cfgrsp(bfa);
1576 break;
1577 case BFI_IOCFC_I2H_UPDATEQ_RSP:
1578 iocfc->updateq_cbfn(iocfc->updateq_cbarg, BFA_STATUS_OK);
1579 break;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001580 case BFI_IOCFC_I2H_ADDR_MSG:
1581 bfa_iocfc_process_faa_addr(bfa,
1582 (struct bfi_faa_addr_msg_s *)msg);
Krishna Gudipatia7141342011-06-24 20:23:19 -07001583 break;
1584 case BFI_IOCFC_I2H_FAA_QUERY_RSP:
1585 bfa_faa_query_reply(iocfc, (bfi_faa_query_rsp_t *)msg);
1586 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001587 default:
Jing Huangd4b671c2010-12-26 21:46:35 -08001588 WARN_ON(1);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001589 }
1590}
1591
1592void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001593bfa_iocfc_get_attr(struct bfa_s *bfa, struct bfa_iocfc_attr_s *attr)
1594{
1595 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1596
1597 attr->intr_attr.coalesce = iocfc->cfginfo->intr_attr.coalesce;
1598
1599 attr->intr_attr.delay = iocfc->cfginfo->intr_attr.delay ?
Jing Huangba816ea2010-10-18 17:10:50 -07001600 be16_to_cpu(iocfc->cfginfo->intr_attr.delay) :
1601 be16_to_cpu(iocfc->cfgrsp->intr_attr.delay);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001602
1603 attr->intr_attr.latency = iocfc->cfginfo->intr_attr.latency ?
Jing Huangba816ea2010-10-18 17:10:50 -07001604 be16_to_cpu(iocfc->cfginfo->intr_attr.latency) :
1605 be16_to_cpu(iocfc->cfgrsp->intr_attr.latency);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001606
1607 attr->config = iocfc->cfg;
1608}
1609
1610bfa_status_t
1611bfa_iocfc_israttr_set(struct bfa_s *bfa, struct bfa_iocfc_intr_attr_s *attr)
1612{
1613 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1614 struct bfi_iocfc_set_intr_req_s *m;
1615
1616 iocfc->cfginfo->intr_attr.coalesce = attr->coalesce;
Jing Huangba816ea2010-10-18 17:10:50 -07001617 iocfc->cfginfo->intr_attr.delay = cpu_to_be16(attr->delay);
1618 iocfc->cfginfo->intr_attr.latency = cpu_to_be16(attr->latency);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001619
1620 if (!bfa_iocfc_is_operational(bfa))
1621 return BFA_STATUS_OK;
1622
1623 m = bfa_reqq_next(bfa, BFA_REQQ_IOC);
1624 if (!m)
1625 return BFA_STATUS_DEVBUSY;
1626
1627 bfi_h2i_set(m->mh, BFI_MC_IOCFC, BFI_IOCFC_H2I_SET_INTR_REQ,
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001628 bfa_fn_lpu(bfa));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001629 m->coalesce = iocfc->cfginfo->intr_attr.coalesce;
1630 m->delay = iocfc->cfginfo->intr_attr.delay;
1631 m->latency = iocfc->cfginfo->intr_attr.latency;
1632
1633 bfa_trc(bfa, attr->delay);
1634 bfa_trc(bfa, attr->latency);
1635
Krishna Gudipati3fd45982011-06-24 20:24:08 -07001636 bfa_reqq_produce(bfa, BFA_REQQ_IOC, m->mh);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001637 return BFA_STATUS_OK;
1638}
1639
1640void
Krishna Gudipati45070252011-06-24 20:24:29 -07001641bfa_iocfc_set_snsbase(struct bfa_s *bfa, int seg_no, u64 snsbase_pa)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001642{
1643 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1644
1645 iocfc->cfginfo->sense_buf_len = (BFI_IOIM_SNSLEN - 1);
Krishna Gudipati45070252011-06-24 20:24:29 -07001646 bfa_dma_be_addr_set(iocfc->cfginfo->ioim_snsbase[seg_no], snsbase_pa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001647}
Jing Huang5fbe25c2010-10-18 17:17:23 -07001648/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001649 * Enable IOC after it is disabled.
1650 */
1651void
1652bfa_iocfc_enable(struct bfa_s *bfa)
1653{
1654 bfa_plog_str(bfa->plog, BFA_PL_MID_HAL, BFA_PL_EID_MISC, 0,
1655 "IOC Enable");
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001656 bfa->iocfc.cb_reqd = BFA_TRUE;
1657 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_ENABLE);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001658}
1659
1660void
1661bfa_iocfc_disable(struct bfa_s *bfa)
1662{
1663 bfa_plog_str(bfa->plog, BFA_PL_MID_HAL, BFA_PL_EID_MISC, 0,
1664 "IOC Disable");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001665
Krishna Gudipati775c7742011-06-13 15:52:12 -07001666 bfa->queue_process = BFA_FALSE;
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001667 bfa_fsm_send_event(&bfa->iocfc, IOCFC_E_DISABLE);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001668}
1669
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001670bfa_boolean_t
1671bfa_iocfc_is_operational(struct bfa_s *bfa)
1672{
Krishna Gudipatidb9d8a72012-03-13 17:39:36 -07001673 return bfa_ioc_is_operational(&bfa->ioc) &&
1674 bfa_fsm_cmp_state(&bfa->iocfc, bfa_iocfc_sm_operational);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001675}
1676
Jing Huang5fbe25c2010-10-18 17:17:23 -07001677/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001678 * Return boot target port wwns -- read from boot information in flash.
1679 */
1680void
1681bfa_iocfc_get_bootwwns(struct bfa_s *bfa, u8 *nwwns, wwn_t *wwns)
1682{
1683 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1684 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
1685 int i;
1686
1687 if (cfgrsp->pbc_cfg.boot_enabled && cfgrsp->pbc_cfg.nbluns) {
1688 bfa_trc(bfa, cfgrsp->pbc_cfg.nbluns);
1689 *nwwns = cfgrsp->pbc_cfg.nbluns;
1690 for (i = 0; i < cfgrsp->pbc_cfg.nbluns; i++)
1691 wwns[i] = cfgrsp->pbc_cfg.blun[i].tgt_pwwn;
1692
1693 return;
1694 }
1695
1696 *nwwns = cfgrsp->bootwwns.nwwns;
1697 memcpy(wwns, cfgrsp->bootwwns.wwn, sizeof(cfgrsp->bootwwns.wwn));
1698}
1699
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001700int
1701bfa_iocfc_get_pbc_vports(struct bfa_s *bfa, struct bfi_pbc_vport_s *pbc_vport)
1702{
1703 struct bfa_iocfc_s *iocfc = &bfa->iocfc;
1704 struct bfi_iocfc_cfgrsp_s *cfgrsp = iocfc->cfgrsp;
1705
1706 memcpy(pbc_vport, cfgrsp->pbc_cfg.vport, sizeof(cfgrsp->pbc_cfg.vport));
1707 return cfgrsp->pbc_cfg.nvports;
1708}
1709
Jing Huang7725ccf2009-09-23 17:46:15 -07001710
Jing Huang5fbe25c2010-10-18 17:17:23 -07001711/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001712 * Use this function query the memory requirement of the BFA library.
1713 * This function needs to be called before bfa_attach() to get the
1714 * memory required of the BFA layer for a given driver configuration.
1715 *
1716 * This call will fail, if the cap is out of range compared to pre-defined
1717 * values within the BFA library
1718 *
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001719 * @param[in] cfg - pointer to bfa_ioc_cfg_t. Driver layer should indicate
1720 * its configuration in this structure.
Jing Huang7725ccf2009-09-23 17:46:15 -07001721 * The default values for struct bfa_iocfc_cfg_s can be
1722 * fetched using bfa_cfg_get_default() API.
1723 *
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001724 * If cap's boundary check fails, the library will use
Jing Huang7725ccf2009-09-23 17:46:15 -07001725 * the default bfa_cap_t values (and log a warning msg).
1726 *
1727 * @param[out] meminfo - pointer to bfa_meminfo_t. This content
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001728 * indicates the memory type (see bfa_mem_type_t) and
Jing Huang7725ccf2009-09-23 17:46:15 -07001729 * amount of memory required.
1730 *
1731 * Driver should allocate the memory, populate the
1732 * starting address for each block and provide the same
1733 * structure as input parameter to bfa_attach() call.
1734 *
Krishna Gudipati45070252011-06-24 20:24:29 -07001735 * @param[in] bfa - pointer to the bfa structure, used while fetching the
1736 * dma, kva memory information of the bfa sub-modules.
1737 *
Jing Huang7725ccf2009-09-23 17:46:15 -07001738 * @return void
1739 *
1740 * Special Considerations: @note
1741 */
1742void
Krishna Gudipati45070252011-06-24 20:24:29 -07001743bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s *cfg, struct bfa_meminfo_s *meminfo,
1744 struct bfa_s *bfa)
Jing Huang7725ccf2009-09-23 17:46:15 -07001745{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001746 int i;
Krishna Gudipati45070252011-06-24 20:24:29 -07001747 struct bfa_mem_dma_s *port_dma = BFA_MEM_PORT_DMA(bfa);
1748 struct bfa_mem_dma_s *ablk_dma = BFA_MEM_ABLK_DMA(bfa);
Krishna Gudipati148d6102011-06-24 20:25:36 -07001749 struct bfa_mem_dma_s *cee_dma = BFA_MEM_CEE_DMA(bfa);
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001750 struct bfa_mem_dma_s *sfp_dma = BFA_MEM_SFP_DMA(bfa);
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001751 struct bfa_mem_dma_s *flash_dma = BFA_MEM_FLASH_DMA(bfa);
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001752 struct bfa_mem_dma_s *diag_dma = BFA_MEM_DIAG_DMA(bfa);
Krishna Gudipati3350d982011-06-24 20:28:37 -07001753 struct bfa_mem_dma_s *phy_dma = BFA_MEM_PHY_DMA(bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001754
Jing Huangd4b671c2010-12-26 21:46:35 -08001755 WARN_ON((cfg == NULL) || (meminfo == NULL));
Jing Huang7725ccf2009-09-23 17:46:15 -07001756
Jing Huang6a18b162010-10-18 17:08:54 -07001757 memset((void *)meminfo, 0, sizeof(struct bfa_meminfo_s));
Jing Huang7725ccf2009-09-23 17:46:15 -07001758
Krishna Gudipati45070252011-06-24 20:24:29 -07001759 /* Initialize the DMA & KVA meminfo queues */
1760 INIT_LIST_HEAD(&meminfo->dma_info.qe);
1761 INIT_LIST_HEAD(&meminfo->kva_info.qe);
1762
1763 bfa_iocfc_meminfo(cfg, meminfo, bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001764
1765 for (i = 0; hal_mods[i]; i++)
Krishna Gudipati45070252011-06-24 20:24:29 -07001766 hal_mods[i]->meminfo(cfg, meminfo, bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001767
Krishna Gudipati45070252011-06-24 20:24:29 -07001768 /* dma info setup */
1769 bfa_mem_dma_setup(meminfo, port_dma, bfa_port_meminfo());
1770 bfa_mem_dma_setup(meminfo, ablk_dma, bfa_ablk_meminfo());
Krishna Gudipati148d6102011-06-24 20:25:36 -07001771 bfa_mem_dma_setup(meminfo, cee_dma, bfa_cee_meminfo());
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001772 bfa_mem_dma_setup(meminfo, sfp_dma, bfa_sfp_meminfo());
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001773 bfa_mem_dma_setup(meminfo, flash_dma,
1774 bfa_flash_meminfo(cfg->drvcfg.min_cfg));
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001775 bfa_mem_dma_setup(meminfo, diag_dma, bfa_diag_meminfo());
Krishna Gudipati3350d982011-06-24 20:28:37 -07001776 bfa_mem_dma_setup(meminfo, phy_dma,
1777 bfa_phy_meminfo(cfg->drvcfg.min_cfg));
Jing Huang7725ccf2009-09-23 17:46:15 -07001778}
1779
Jing Huang5fbe25c2010-10-18 17:17:23 -07001780/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001781 * Use this function to do attach the driver instance with the BFA
1782 * library. This function will not trigger any HW initialization
1783 * process (which will be done in bfa_init() call)
1784 *
1785 * This call will fail, if the cap is out of range compared to
1786 * pre-defined values within the BFA library
1787 *
1788 * @param[out] bfa Pointer to bfa_t.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001789 * @param[in] bfad Opaque handle back to the driver's IOC structure
Jing Huang7725ccf2009-09-23 17:46:15 -07001790 * @param[in] cfg Pointer to bfa_ioc_cfg_t. Should be same structure
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001791 * that was used in bfa_cfg_get_meminfo().
1792 * @param[in] meminfo Pointer to bfa_meminfo_t. The driver should
1793 * use the bfa_cfg_get_meminfo() call to
1794 * find the memory blocks required, allocate the
1795 * required memory and provide the starting addresses.
1796 * @param[in] pcidev pointer to struct bfa_pcidev_s
Jing Huang7725ccf2009-09-23 17:46:15 -07001797 *
1798 * @return
1799 * void
1800 *
1801 * Special Considerations:
1802 *
1803 * @note
1804 *
1805 */
1806void
1807bfa_attach(struct bfa_s *bfa, void *bfad, struct bfa_iocfc_cfg_s *cfg,
1808 struct bfa_meminfo_s *meminfo, struct bfa_pcidev_s *pcidev)
1809{
Krishna Gudipati45070252011-06-24 20:24:29 -07001810 int i;
1811 struct bfa_mem_dma_s *dma_info, *dma_elem;
1812 struct bfa_mem_kva_s *kva_info, *kva_elem;
1813 struct list_head *dm_qe, *km_qe;
Jing Huang7725ccf2009-09-23 17:46:15 -07001814
1815 bfa->fcs = BFA_FALSE;
1816
Jing Huangd4b671c2010-12-26 21:46:35 -08001817 WARN_ON((cfg == NULL) || (meminfo == NULL));
Jing Huang7725ccf2009-09-23 17:46:15 -07001818
Krishna Gudipati45070252011-06-24 20:24:29 -07001819 /* Initialize memory pointers for iterative allocation */
1820 dma_info = &meminfo->dma_info;
1821 dma_info->kva_curp = dma_info->kva;
1822 dma_info->dma_curp = dma_info->dma;
1823
1824 kva_info = &meminfo->kva_info;
1825 kva_info->kva_curp = kva_info->kva;
1826
1827 list_for_each(dm_qe, &dma_info->qe) {
1828 dma_elem = (struct bfa_mem_dma_s *) dm_qe;
1829 dma_elem->kva_curp = dma_elem->kva;
1830 dma_elem->dma_curp = dma_elem->dma;
Jing Huang7725ccf2009-09-23 17:46:15 -07001831 }
1832
Krishna Gudipati45070252011-06-24 20:24:29 -07001833 list_for_each(km_qe, &kva_info->qe) {
1834 kva_elem = (struct bfa_mem_kva_s *) km_qe;
1835 kva_elem->kva_curp = kva_elem->kva;
1836 }
1837
1838 bfa_iocfc_attach(bfa, bfad, cfg, pcidev);
Jing Huang7725ccf2009-09-23 17:46:15 -07001839
1840 for (i = 0; hal_mods[i]; i++)
Krishna Gudipati45070252011-06-24 20:24:29 -07001841 hal_mods[i]->attach(bfa, bfad, cfg, pcidev);
Jing Huang7725ccf2009-09-23 17:46:15 -07001842
Krishna Gudipati45070252011-06-24 20:24:29 -07001843 bfa_com_port_attach(bfa);
1844 bfa_com_ablk_attach(bfa);
Krishna Gudipati148d6102011-06-24 20:25:36 -07001845 bfa_com_cee_attach(bfa);
Krishna Gudipati51e569a2011-06-24 20:26:25 -07001846 bfa_com_sfp_attach(bfa);
Krishna Gudipati5a54b1d2011-06-24 20:27:13 -07001847 bfa_com_flash_attach(bfa, cfg->drvcfg.min_cfg);
Krishna Gudipati3d7fc662011-06-24 20:28:17 -07001848 bfa_com_diag_attach(bfa);
Krishna Gudipati3350d982011-06-24 20:28:37 -07001849 bfa_com_phy_attach(bfa, cfg->drvcfg.min_cfg);
Jing Huang7725ccf2009-09-23 17:46:15 -07001850}
1851
Jing Huang5fbe25c2010-10-18 17:17:23 -07001852/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001853 * Use this function to delete a BFA IOC. IOC should be stopped (by
1854 * calling bfa_stop()) before this function call.
1855 *
1856 * @param[in] bfa - pointer to bfa_t.
1857 *
1858 * @return
1859 * void
1860 *
1861 * Special Considerations:
1862 *
1863 * @note
1864 */
1865void
1866bfa_detach(struct bfa_s *bfa)
1867{
1868 int i;
1869
1870 for (i = 0; hal_mods[i]; i++)
1871 hal_mods[i]->detach(bfa);
Maggie Zhangf7f738122010-12-09 19:08:43 -08001872 bfa_ioc_detach(&bfa->ioc);
Jing Huang7725ccf2009-09-23 17:46:15 -07001873}
1874
1875void
1876bfa_comp_deq(struct bfa_s *bfa, struct list_head *comp_q)
1877{
1878 INIT_LIST_HEAD(comp_q);
1879 list_splice_tail_init(&bfa->comp_q, comp_q);
1880}
1881
1882void
1883bfa_comp_process(struct bfa_s *bfa, struct list_head *comp_q)
1884{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001885 struct list_head *qe;
1886 struct list_head *qen;
1887 struct bfa_cb_qe_s *hcb_qe;
Krishna Gudipati37ea0552011-07-20 17:02:11 -07001888 bfa_cb_cbfn_status_t cbfn;
Jing Huang7725ccf2009-09-23 17:46:15 -07001889
1890 list_for_each_safe(qe, qen, comp_q) {
1891 hcb_qe = (struct bfa_cb_qe_s *) qe;
Krishna Gudipati37ea0552011-07-20 17:02:11 -07001892 if (hcb_qe->pre_rmv) {
1893 /* qe is invalid after return, dequeue before cbfn() */
1894 list_del(qe);
1895 cbfn = (bfa_cb_cbfn_status_t)(hcb_qe->cbfn);
1896 cbfn(hcb_qe->cbarg, hcb_qe->fw_status);
1897 } else
1898 hcb_qe->cbfn(hcb_qe->cbarg, BFA_TRUE);
Jing Huang7725ccf2009-09-23 17:46:15 -07001899 }
1900}
1901
1902void
1903bfa_comp_free(struct bfa_s *bfa, struct list_head *comp_q)
1904{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001905 struct list_head *qe;
1906 struct bfa_cb_qe_s *hcb_qe;
Jing Huang7725ccf2009-09-23 17:46:15 -07001907
1908 while (!list_empty(comp_q)) {
1909 bfa_q_deq(comp_q, &qe);
1910 hcb_qe = (struct bfa_cb_qe_s *) qe;
Krishna Gudipati37ea0552011-07-20 17:02:11 -07001911 WARN_ON(hcb_qe->pre_rmv);
Jing Huang7725ccf2009-09-23 17:46:15 -07001912 hcb_qe->cbfn(hcb_qe->cbarg, BFA_FALSE);
1913 }
1914}
1915
Jing Huang5fbe25c2010-10-18 17:17:23 -07001916/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001917 * Return the list of PCI vendor/device id lists supported by this
1918 * BFA instance.
1919 */
1920void
1921bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids)
1922{
1923 static struct bfa_pciid_s __pciids[] = {
1924 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G2P},
1925 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G1P},
1926 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT},
Jing Huang293f82d2010-07-08 19:45:20 -07001927 {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT_FC},
Jing Huang7725ccf2009-09-23 17:46:15 -07001928 };
1929
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001930 *npciids = sizeof(__pciids) / sizeof(__pciids[0]);
Jing Huang7725ccf2009-09-23 17:46:15 -07001931 *pciids = __pciids;
1932}
1933
Jing Huang5fbe25c2010-10-18 17:17:23 -07001934/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001935 * Use this function query the default struct bfa_iocfc_cfg_s value (compiled
1936 * into BFA layer). The OS driver can then turn back and overwrite entries that
1937 * have been configured by the user.
1938 *
1939 * @param[in] cfg - pointer to bfa_ioc_cfg_t
1940 *
1941 * @return
1942 * void
1943 *
1944 * Special Considerations:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001945 * note
Jing Huang7725ccf2009-09-23 17:46:15 -07001946 */
1947void
1948bfa_cfg_get_default(struct bfa_iocfc_cfg_s *cfg)
1949{
1950 cfg->fwcfg.num_fabrics = DEF_CFG_NUM_FABRICS;
1951 cfg->fwcfg.num_lports = DEF_CFG_NUM_LPORTS;
1952 cfg->fwcfg.num_rports = DEF_CFG_NUM_RPORTS;
1953 cfg->fwcfg.num_ioim_reqs = DEF_CFG_NUM_IOIM_REQS;
1954 cfg->fwcfg.num_tskim_reqs = DEF_CFG_NUM_TSKIM_REQS;
1955 cfg->fwcfg.num_fcxp_reqs = DEF_CFG_NUM_FCXP_REQS;
1956 cfg->fwcfg.num_uf_bufs = DEF_CFG_NUM_UF_BUFS;
1957 cfg->fwcfg.num_cqs = DEF_CFG_NUM_CQS;
Krishna Gudipatie2187d72011-06-13 15:53:58 -07001958 cfg->fwcfg.num_fwtio_reqs = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001959
1960 cfg->drvcfg.num_reqq_elems = DEF_CFG_NUM_REQQ_ELEMS;
1961 cfg->drvcfg.num_rspq_elems = DEF_CFG_NUM_RSPQ_ELEMS;
1962 cfg->drvcfg.num_sgpgs = DEF_CFG_NUM_SGPGS;
1963 cfg->drvcfg.num_sboot_tgts = DEF_CFG_NUM_SBOOT_TGTS;
1964 cfg->drvcfg.num_sboot_luns = DEF_CFG_NUM_SBOOT_LUNS;
1965 cfg->drvcfg.path_tov = BFA_FCPIM_PATHTOV_DEF;
1966 cfg->drvcfg.ioc_recover = BFA_FALSE;
1967 cfg->drvcfg.delay_comp = BFA_FALSE;
1968
1969}
1970
1971void
1972bfa_cfg_get_min(struct bfa_iocfc_cfg_s *cfg)
1973{
1974 bfa_cfg_get_default(cfg);
1975 cfg->fwcfg.num_ioim_reqs = BFA_IOIM_MIN;
1976 cfg->fwcfg.num_tskim_reqs = BFA_TSKIM_MIN;
1977 cfg->fwcfg.num_fcxp_reqs = BFA_FCXP_MIN;
1978 cfg->fwcfg.num_uf_bufs = BFA_UF_MIN;
1979 cfg->fwcfg.num_rports = BFA_RPORT_MIN;
Krishna Gudipatie2187d72011-06-13 15:53:58 -07001980 cfg->fwcfg.num_fwtio_reqs = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001981
1982 cfg->drvcfg.num_sgpgs = BFA_SGPG_MIN;
1983 cfg->drvcfg.num_reqq_elems = BFA_REQQ_NELEMS_MIN;
1984 cfg->drvcfg.num_rspq_elems = BFA_RSPQ_NELEMS_MIN;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001985 cfg->drvcfg.min_cfg = BFA_TRUE;
Jing Huang7725ccf2009-09-23 17:46:15 -07001986}