2 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
3 * Copyright (c) 2014- QLogic Corporation.
7 * Linux driver for QLogic BR-series Fibre Channel Host Bus Adapter.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License (GPL) Version 2 as
11 * published by the Free Software Foundation
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
24 #include "bfa_defs_svc.h"
27 BFA_TRC_FILE(CNA
, IOC
);
30 * IOC local definitions
32 #define BFA_IOC_TOV 3000 /* msecs */
33 #define BFA_IOC_HWSEM_TOV 500 /* msecs */
34 #define BFA_IOC_HB_TOV 500 /* msecs */
35 #define BFA_IOC_TOV_RECOVER BFA_IOC_HB_TOV
36 #define BFA_IOC_POLL_TOV BFA_TIMER_FREQ
38 #define bfa_ioc_timer_start(__ioc) \
39 bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer, \
40 bfa_ioc_timeout, (__ioc), BFA_IOC_TOV)
41 #define bfa_ioc_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->ioc_timer)
43 #define bfa_hb_timer_start(__ioc) \
44 bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->hb_timer, \
45 bfa_ioc_hb_check, (__ioc), BFA_IOC_HB_TOV)
46 #define bfa_hb_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->hb_timer)
48 #define BFA_DBG_FWTRC_OFF(_fn) (BFI_IOC_TRC_OFF + BFA_DBG_FWTRC_LEN * (_fn))
50 #define bfa_ioc_state_disabled(__sm) \
51 (((__sm) == BFI_IOC_UNINIT) || \
52 ((__sm) == BFI_IOC_INITING) || \
53 ((__sm) == BFI_IOC_HWINIT) || \
54 ((__sm) == BFI_IOC_DISABLED) || \
55 ((__sm) == BFI_IOC_FAIL) || \
56 ((__sm) == BFI_IOC_CFG_DISABLED))
59 * Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details.
62 #define bfa_ioc_firmware_lock(__ioc) \
63 ((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
64 #define bfa_ioc_firmware_unlock(__ioc) \
65 ((__ioc)->ioc_hwif->ioc_firmware_unlock(__ioc))
66 #define bfa_ioc_reg_init(__ioc) ((__ioc)->ioc_hwif->ioc_reg_init(__ioc))
67 #define bfa_ioc_map_port(__ioc) ((__ioc)->ioc_hwif->ioc_map_port(__ioc))
68 #define bfa_ioc_notify_fail(__ioc) \
69 ((__ioc)->ioc_hwif->ioc_notify_fail(__ioc))
70 #define bfa_ioc_sync_start(__ioc) \
71 ((__ioc)->ioc_hwif->ioc_sync_start(__ioc))
72 #define bfa_ioc_sync_join(__ioc) \
73 ((__ioc)->ioc_hwif->ioc_sync_join(__ioc))
74 #define bfa_ioc_sync_leave(__ioc) \
75 ((__ioc)->ioc_hwif->ioc_sync_leave(__ioc))
76 #define bfa_ioc_sync_ack(__ioc) \
77 ((__ioc)->ioc_hwif->ioc_sync_ack(__ioc))
78 #define bfa_ioc_sync_complete(__ioc) \
79 ((__ioc)->ioc_hwif->ioc_sync_complete(__ioc))
80 #define bfa_ioc_set_cur_ioc_fwstate(__ioc, __fwstate) \
81 ((__ioc)->ioc_hwif->ioc_set_fwstate(__ioc, __fwstate))
82 #define bfa_ioc_get_cur_ioc_fwstate(__ioc) \
83 ((__ioc)->ioc_hwif->ioc_get_fwstate(__ioc))
84 #define bfa_ioc_set_alt_ioc_fwstate(__ioc, __fwstate) \
85 ((__ioc)->ioc_hwif->ioc_set_alt_fwstate(__ioc, __fwstate))
86 #define bfa_ioc_get_alt_ioc_fwstate(__ioc) \
87 ((__ioc)->ioc_hwif->ioc_get_alt_fwstate(__ioc))
89 #define bfa_ioc_mbox_cmd_pending(__ioc) \
90 (!list_empty(&((__ioc)->mbox_mod.cmd_q)) || \
91 readl((__ioc)->ioc_regs.hfn_mbox_cmd))
93 bfa_boolean_t bfa_auto_recover
= BFA_TRUE
;
96 * forward declarations
98 static void bfa_ioc_hw_sem_get(struct bfa_ioc_s
*ioc
);
99 static void bfa_ioc_hwinit(struct bfa_ioc_s
*ioc
, bfa_boolean_t force
);
100 static void bfa_ioc_timeout(void *ioc
);
101 static void bfa_ioc_poll_fwinit(struct bfa_ioc_s
*ioc
);
102 static void bfa_ioc_send_enable(struct bfa_ioc_s
*ioc
);
103 static void bfa_ioc_send_disable(struct bfa_ioc_s
*ioc
);
104 static void bfa_ioc_send_getattr(struct bfa_ioc_s
*ioc
);
105 static void bfa_ioc_hb_monitor(struct bfa_ioc_s
*ioc
);
106 static void bfa_ioc_mbox_poll(struct bfa_ioc_s
*ioc
);
107 static void bfa_ioc_mbox_flush(struct bfa_ioc_s
*ioc
);
108 static void bfa_ioc_recover(struct bfa_ioc_s
*ioc
);
109 static void bfa_ioc_event_notify(struct bfa_ioc_s
*ioc
,
110 enum bfa_ioc_event_e event
);
111 static void bfa_ioc_disable_comp(struct bfa_ioc_s
*ioc
);
112 static void bfa_ioc_lpu_stop(struct bfa_ioc_s
*ioc
);
113 static void bfa_ioc_fail_notify(struct bfa_ioc_s
*ioc
);
114 static void bfa_ioc_pf_fwmismatch(struct bfa_ioc_s
*ioc
);
115 static enum bfi_ioc_img_ver_cmp_e
bfa_ioc_fw_ver_patch_cmp(
116 struct bfi_ioc_image_hdr_s
*base_fwhdr
,
117 struct bfi_ioc_image_hdr_s
*fwhdr_to_cmp
);
118 static enum bfi_ioc_img_ver_cmp_e
bfa_ioc_flash_fwver_cmp(
119 struct bfa_ioc_s
*ioc
,
120 struct bfi_ioc_image_hdr_s
*base_fwhdr
);
123 * IOC state machine definitions/declarations
126 IOC_E_RESET
= 1, /* IOC reset request */
127 IOC_E_ENABLE
= 2, /* IOC enable request */
128 IOC_E_DISABLE
= 3, /* IOC disable request */
129 IOC_E_DETACH
= 4, /* driver detach cleanup */
130 IOC_E_ENABLED
= 5, /* f/w enabled */
131 IOC_E_FWRSP_GETATTR
= 6, /* IOC get attribute response */
132 IOC_E_DISABLED
= 7, /* f/w disabled */
133 IOC_E_PFFAILED
= 8, /* failure notice by iocpf sm */
134 IOC_E_HBFAIL
= 9, /* heartbeat failure */
135 IOC_E_HWERROR
= 10, /* hardware error interrupt */
136 IOC_E_TIMEOUT
= 11, /* timeout */
137 IOC_E_HWFAILED
= 12, /* PCI mapping failure notice */
140 bfa_fsm_state_decl(bfa_ioc
, uninit
, struct bfa_ioc_s
, enum ioc_event
);
141 bfa_fsm_state_decl(bfa_ioc
, reset
, struct bfa_ioc_s
, enum ioc_event
);
142 bfa_fsm_state_decl(bfa_ioc
, enabling
, struct bfa_ioc_s
, enum ioc_event
);
143 bfa_fsm_state_decl(bfa_ioc
, getattr
, struct bfa_ioc_s
, enum ioc_event
);
144 bfa_fsm_state_decl(bfa_ioc
, op
, struct bfa_ioc_s
, enum ioc_event
);
145 bfa_fsm_state_decl(bfa_ioc
, fail_retry
, struct bfa_ioc_s
, enum ioc_event
);
146 bfa_fsm_state_decl(bfa_ioc
, fail
, struct bfa_ioc_s
, enum ioc_event
);
147 bfa_fsm_state_decl(bfa_ioc
, disabling
, struct bfa_ioc_s
, enum ioc_event
);
148 bfa_fsm_state_decl(bfa_ioc
, disabled
, struct bfa_ioc_s
, enum ioc_event
);
149 bfa_fsm_state_decl(bfa_ioc
, hwfail
, struct bfa_ioc_s
, enum ioc_event
);
151 static struct bfa_sm_table_s ioc_sm_table
[] = {
152 {BFA_SM(bfa_ioc_sm_uninit
), BFA_IOC_UNINIT
},
153 {BFA_SM(bfa_ioc_sm_reset
), BFA_IOC_RESET
},
154 {BFA_SM(bfa_ioc_sm_enabling
), BFA_IOC_ENABLING
},
155 {BFA_SM(bfa_ioc_sm_getattr
), BFA_IOC_GETATTR
},
156 {BFA_SM(bfa_ioc_sm_op
), BFA_IOC_OPERATIONAL
},
157 {BFA_SM(bfa_ioc_sm_fail_retry
), BFA_IOC_INITFAIL
},
158 {BFA_SM(bfa_ioc_sm_fail
), BFA_IOC_FAIL
},
159 {BFA_SM(bfa_ioc_sm_disabling
), BFA_IOC_DISABLING
},
160 {BFA_SM(bfa_ioc_sm_disabled
), BFA_IOC_DISABLED
},
161 {BFA_SM(bfa_ioc_sm_hwfail
), BFA_IOC_HWFAIL
},
165 * IOCPF state machine definitions/declarations
168 #define bfa_iocpf_timer_start(__ioc) \
169 bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer, \
170 bfa_iocpf_timeout, (__ioc), BFA_IOC_TOV)
171 #define bfa_iocpf_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->ioc_timer)
173 #define bfa_iocpf_poll_timer_start(__ioc) \
174 bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer, \
175 bfa_iocpf_poll_timeout, (__ioc), BFA_IOC_POLL_TOV)
177 #define bfa_sem_timer_start(__ioc) \
178 bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->sem_timer, \
179 bfa_iocpf_sem_timeout, (__ioc), BFA_IOC_HWSEM_TOV)
180 #define bfa_sem_timer_stop(__ioc) bfa_timer_stop(&(__ioc)->sem_timer)
183 * Forward declareations for iocpf state machine
185 static void bfa_iocpf_timeout(void *ioc_arg
);
186 static void bfa_iocpf_sem_timeout(void *ioc_arg
);
187 static void bfa_iocpf_poll_timeout(void *ioc_arg
);
190 * IOCPF state machine events
193 IOCPF_E_ENABLE
= 1, /* IOCPF enable request */
194 IOCPF_E_DISABLE
= 2, /* IOCPF disable request */
195 IOCPF_E_STOP
= 3, /* stop on driver detach */
196 IOCPF_E_FWREADY
= 4, /* f/w initialization done */
197 IOCPF_E_FWRSP_ENABLE
= 5, /* enable f/w response */
198 IOCPF_E_FWRSP_DISABLE
= 6, /* disable f/w response */
199 IOCPF_E_FAIL
= 7, /* failure notice by ioc sm */
200 IOCPF_E_INITFAIL
= 8, /* init fail notice by ioc sm */
201 IOCPF_E_GETATTRFAIL
= 9, /* init fail notice by ioc sm */
202 IOCPF_E_SEMLOCKED
= 10, /* h/w semaphore is locked */
203 IOCPF_E_TIMEOUT
= 11, /* f/w response timeout */
204 IOCPF_E_SEM_ERROR
= 12, /* h/w sem mapping error */
210 enum bfa_iocpf_state
{
211 BFA_IOCPF_RESET
= 1, /* IOC is in reset state */
212 BFA_IOCPF_SEMWAIT
= 2, /* Waiting for IOC h/w semaphore */
213 BFA_IOCPF_HWINIT
= 3, /* IOC h/w is being initialized */
214 BFA_IOCPF_READY
= 4, /* IOCPF is initialized */
215 BFA_IOCPF_INITFAIL
= 5, /* IOCPF failed */
216 BFA_IOCPF_FAIL
= 6, /* IOCPF failed */
217 BFA_IOCPF_DISABLING
= 7, /* IOCPF is being disabled */
218 BFA_IOCPF_DISABLED
= 8, /* IOCPF is disabled */
219 BFA_IOCPF_FWMISMATCH
= 9, /* IOC f/w different from drivers */
222 bfa_fsm_state_decl(bfa_iocpf
, reset
, struct bfa_iocpf_s
, enum iocpf_event
);
223 bfa_fsm_state_decl(bfa_iocpf
, fwcheck
, struct bfa_iocpf_s
, enum iocpf_event
);
224 bfa_fsm_state_decl(bfa_iocpf
, mismatch
, struct bfa_iocpf_s
, enum iocpf_event
);
225 bfa_fsm_state_decl(bfa_iocpf
, semwait
, struct bfa_iocpf_s
, enum iocpf_event
);
226 bfa_fsm_state_decl(bfa_iocpf
, hwinit
, struct bfa_iocpf_s
, enum iocpf_event
);
227 bfa_fsm_state_decl(bfa_iocpf
, enabling
, struct bfa_iocpf_s
, enum iocpf_event
);
228 bfa_fsm_state_decl(bfa_iocpf
, ready
, struct bfa_iocpf_s
, enum iocpf_event
);
229 bfa_fsm_state_decl(bfa_iocpf
, initfail_sync
, struct bfa_iocpf_s
,
231 bfa_fsm_state_decl(bfa_iocpf
, initfail
, struct bfa_iocpf_s
, enum iocpf_event
);
232 bfa_fsm_state_decl(bfa_iocpf
, fail_sync
, struct bfa_iocpf_s
, enum iocpf_event
);
233 bfa_fsm_state_decl(bfa_iocpf
, fail
, struct bfa_iocpf_s
, enum iocpf_event
);
234 bfa_fsm_state_decl(bfa_iocpf
, disabling
, struct bfa_iocpf_s
, enum iocpf_event
);
235 bfa_fsm_state_decl(bfa_iocpf
, disabling_sync
, struct bfa_iocpf_s
,
237 bfa_fsm_state_decl(bfa_iocpf
, disabled
, struct bfa_iocpf_s
, enum iocpf_event
);
239 static struct bfa_sm_table_s iocpf_sm_table
[] = {
240 {BFA_SM(bfa_iocpf_sm_reset
), BFA_IOCPF_RESET
},
241 {BFA_SM(bfa_iocpf_sm_fwcheck
), BFA_IOCPF_FWMISMATCH
},
242 {BFA_SM(bfa_iocpf_sm_mismatch
), BFA_IOCPF_FWMISMATCH
},
243 {BFA_SM(bfa_iocpf_sm_semwait
), BFA_IOCPF_SEMWAIT
},
244 {BFA_SM(bfa_iocpf_sm_hwinit
), BFA_IOCPF_HWINIT
},
245 {BFA_SM(bfa_iocpf_sm_enabling
), BFA_IOCPF_HWINIT
},
246 {BFA_SM(bfa_iocpf_sm_ready
), BFA_IOCPF_READY
},
247 {BFA_SM(bfa_iocpf_sm_initfail_sync
), BFA_IOCPF_INITFAIL
},
248 {BFA_SM(bfa_iocpf_sm_initfail
), BFA_IOCPF_INITFAIL
},
249 {BFA_SM(bfa_iocpf_sm_fail_sync
), BFA_IOCPF_FAIL
},
250 {BFA_SM(bfa_iocpf_sm_fail
), BFA_IOCPF_FAIL
},
251 {BFA_SM(bfa_iocpf_sm_disabling
), BFA_IOCPF_DISABLING
},
252 {BFA_SM(bfa_iocpf_sm_disabling_sync
), BFA_IOCPF_DISABLING
},
253 {BFA_SM(bfa_iocpf_sm_disabled
), BFA_IOCPF_DISABLED
},
261 * Beginning state. IOC uninit state.
265 bfa_ioc_sm_uninit_entry(struct bfa_ioc_s
*ioc
)
270 * IOC is in uninit state.
273 bfa_ioc_sm_uninit(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
279 bfa_fsm_set_state(ioc
, bfa_ioc_sm_reset
);
283 bfa_sm_fault(ioc
, event
);
287 * Reset entry actions -- initialize state machine
290 bfa_ioc_sm_reset_entry(struct bfa_ioc_s
*ioc
)
292 bfa_fsm_set_state(&ioc
->iocpf
, bfa_iocpf_sm_reset
);
296 * IOC is in reset state.
299 bfa_ioc_sm_reset(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
305 bfa_fsm_set_state(ioc
, bfa_ioc_sm_enabling
);
309 bfa_ioc_disable_comp(ioc
);
313 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
317 bfa_sm_fault(ioc
, event
);
323 bfa_ioc_sm_enabling_entry(struct bfa_ioc_s
*ioc
)
325 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_ENABLE
);
329 * Host IOC function is being enabled, awaiting response from firmware.
330 * Semaphore is acquired.
333 bfa_ioc_sm_enabling(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
339 bfa_fsm_set_state(ioc
, bfa_ioc_sm_getattr
);
343 /* !!! fall through !!! */
345 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
346 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
347 if (event
!= IOC_E_PFFAILED
)
348 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_INITFAIL
);
352 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
353 bfa_fsm_set_state(ioc
, bfa_ioc_sm_hwfail
);
357 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
361 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
362 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_STOP
);
369 bfa_sm_fault(ioc
, event
);
375 bfa_ioc_sm_getattr_entry(struct bfa_ioc_s
*ioc
)
377 bfa_ioc_timer_start(ioc
);
378 bfa_ioc_send_getattr(ioc
);
382 * IOC configuration in progress. Timer is active.
385 bfa_ioc_sm_getattr(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
390 case IOC_E_FWRSP_GETATTR
:
391 bfa_ioc_timer_stop(ioc
);
392 bfa_fsm_set_state(ioc
, bfa_ioc_sm_op
);
397 bfa_ioc_timer_stop(ioc
);
398 /* !!! fall through !!! */
400 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
401 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
402 if (event
!= IOC_E_PFFAILED
)
403 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_GETATTRFAIL
);
407 bfa_ioc_timer_stop(ioc
);
408 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
415 bfa_sm_fault(ioc
, event
);
420 bfa_ioc_sm_op_entry(struct bfa_ioc_s
*ioc
)
422 struct bfad_s
*bfad
= (struct bfad_s
*)ioc
->bfa
->bfad
;
424 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_OK
);
425 bfa_ioc_event_notify(ioc
, BFA_IOC_E_ENABLED
);
426 bfa_ioc_hb_monitor(ioc
);
427 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
, "IOC enabled\n");
428 bfa_ioc_aen_post(ioc
, BFA_IOC_AEN_ENABLE
);
432 bfa_ioc_sm_op(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
441 bfa_hb_timer_stop(ioc
);
442 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
447 bfa_hb_timer_stop(ioc
);
448 /* !!! fall through !!! */
450 if (ioc
->iocpf
.auto_recover
)
451 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail_retry
);
453 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
455 bfa_ioc_fail_notify(ioc
);
457 if (event
!= IOC_E_PFFAILED
)
458 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FAIL
);
462 bfa_sm_fault(ioc
, event
);
468 bfa_ioc_sm_disabling_entry(struct bfa_ioc_s
*ioc
)
470 struct bfad_s
*bfad
= (struct bfad_s
*)ioc
->bfa
->bfad
;
471 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_DISABLE
);
472 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
, "IOC disabled\n");
473 bfa_ioc_aen_post(ioc
, BFA_IOC_AEN_DISABLE
);
477 * IOC is being disabled
480 bfa_ioc_sm_disabling(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
486 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabled
);
491 * No state change. Will move to disabled state
492 * after iocpf sm completes failure processing and
493 * moves to disabled state.
495 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FAIL
);
499 bfa_fsm_set_state(ioc
, bfa_ioc_sm_hwfail
);
500 bfa_ioc_disable_comp(ioc
);
504 bfa_sm_fault(ioc
, event
);
509 * IOC disable completion entry.
512 bfa_ioc_sm_disabled_entry(struct bfa_ioc_s
*ioc
)
514 bfa_ioc_disable_comp(ioc
);
518 bfa_ioc_sm_disabled(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
524 bfa_fsm_set_state(ioc
, bfa_ioc_sm_enabling
);
528 ioc
->cbfn
->disable_cbfn(ioc
->bfa
);
532 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
533 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_STOP
);
537 bfa_sm_fault(ioc
, event
);
543 bfa_ioc_sm_fail_retry_entry(struct bfa_ioc_s
*ioc
)
549 * Hardware initialization retry.
552 bfa_ioc_sm_fail_retry(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
558 bfa_fsm_set_state(ioc
, bfa_ioc_sm_getattr
);
564 * Initialization retry failed.
566 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
567 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
568 if (event
!= IOC_E_PFFAILED
)
569 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_INITFAIL
);
573 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
574 bfa_fsm_set_state(ioc
, bfa_ioc_sm_hwfail
);
581 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
585 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
586 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_STOP
);
590 bfa_sm_fault(ioc
, event
);
596 bfa_ioc_sm_fail_entry(struct bfa_ioc_s
*ioc
)
605 bfa_ioc_sm_fail(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
612 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
616 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
620 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
621 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_STOP
);
627 * HB failure / HW error notification, ignore.
631 bfa_sm_fault(ioc
, event
);
636 bfa_ioc_sm_hwfail_entry(struct bfa_ioc_s
*ioc
)
642 bfa_ioc_sm_hwfail(struct bfa_ioc_s
*ioc
, enum ioc_event event
)
648 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
652 ioc
->cbfn
->disable_cbfn(ioc
->bfa
);
656 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
660 /* Ignore - already in hwfail state */
664 bfa_sm_fault(ioc
, event
);
669 * IOCPF State Machine
673 * Reset entry actions -- initialize state machine
676 bfa_iocpf_sm_reset_entry(struct bfa_iocpf_s
*iocpf
)
678 iocpf
->fw_mismatch_notified
= BFA_FALSE
;
679 iocpf
->auto_recover
= bfa_auto_recover
;
683 * Beginning state. IOC is in reset state.
686 bfa_iocpf_sm_reset(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
688 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
694 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fwcheck
);
701 bfa_sm_fault(ioc
, event
);
706 * Semaphore should be acquired for version check.
709 bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf_s
*iocpf
)
711 struct bfi_ioc_image_hdr_s fwhdr
;
712 u32 r32
, fwstate
, pgnum
, pgoff
, loff
= 0;
716 * Spin on init semaphore to serialize.
718 r32
= readl(iocpf
->ioc
->ioc_regs
.ioc_init_sem_reg
);
721 r32
= readl(iocpf
->ioc
->ioc_regs
.ioc_init_sem_reg
);
725 fwstate
= bfa_ioc_get_cur_ioc_fwstate(iocpf
->ioc
);
726 if (fwstate
== BFI_IOC_UNINIT
) {
727 writel(1, iocpf
->ioc
->ioc_regs
.ioc_init_sem_reg
);
731 bfa_ioc_fwver_get(iocpf
->ioc
, &fwhdr
);
733 if (swab32(fwhdr
.exec
) == BFI_FWBOOT_TYPE_NORMAL
) {
734 writel(1, iocpf
->ioc
->ioc_regs
.ioc_init_sem_reg
);
741 pgnum
= PSS_SMEM_PGNUM(iocpf
->ioc
->ioc_regs
.smem_pg0
, loff
);
742 pgoff
= PSS_SMEM_PGOFF(loff
);
743 writel(pgnum
, iocpf
->ioc
->ioc_regs
.host_page_num_fn
);
745 for (i
= 0; i
< sizeof(struct bfi_ioc_image_hdr_s
) / sizeof(u32
); i
++) {
746 bfa_mem_write(iocpf
->ioc
->ioc_regs
.smem_page_start
, loff
, 0);
750 bfa_trc(iocpf
->ioc
, fwstate
);
751 bfa_trc(iocpf
->ioc
, swab32(fwhdr
.exec
));
752 bfa_ioc_set_cur_ioc_fwstate(iocpf
->ioc
, BFI_IOC_UNINIT
);
753 bfa_ioc_set_alt_ioc_fwstate(iocpf
->ioc
, BFI_IOC_UNINIT
);
756 * Unlock the hw semaphore. Should be here only once per boot.
758 bfa_ioc_ownership_reset(iocpf
->ioc
);
761 * unlock init semaphore.
763 writel(1, iocpf
->ioc
->ioc_regs
.ioc_init_sem_reg
);
766 bfa_ioc_hw_sem_get(iocpf
->ioc
);
770 * Awaiting h/w semaphore to continue with version check.
773 bfa_iocpf_sm_fwcheck(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
775 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
780 case IOCPF_E_SEMLOCKED
:
781 if (bfa_ioc_firmware_lock(ioc
)) {
782 if (bfa_ioc_sync_start(ioc
)) {
783 bfa_ioc_sync_join(ioc
);
784 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_hwinit
);
786 bfa_ioc_firmware_unlock(ioc
);
787 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
788 bfa_sem_timer_start(ioc
);
791 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
792 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_mismatch
);
796 case IOCPF_E_SEM_ERROR
:
797 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
798 bfa_fsm_send_event(ioc
, IOC_E_HWFAILED
);
801 case IOCPF_E_DISABLE
:
802 bfa_sem_timer_stop(ioc
);
803 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
804 bfa_fsm_send_event(ioc
, IOC_E_DISABLED
);
808 bfa_sem_timer_stop(ioc
);
809 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
813 bfa_sm_fault(ioc
, event
);
818 * Notify enable completion callback.
821 bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf_s
*iocpf
)
824 * Call only the first time sm enters fwmismatch state.
826 if (iocpf
->fw_mismatch_notified
== BFA_FALSE
)
827 bfa_ioc_pf_fwmismatch(iocpf
->ioc
);
829 iocpf
->fw_mismatch_notified
= BFA_TRUE
;
830 bfa_iocpf_timer_start(iocpf
->ioc
);
834 * Awaiting firmware version match.
837 bfa_iocpf_sm_mismatch(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
839 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
844 case IOCPF_E_TIMEOUT
:
845 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fwcheck
);
848 case IOCPF_E_DISABLE
:
849 bfa_iocpf_timer_stop(ioc
);
850 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
851 bfa_fsm_send_event(ioc
, IOC_E_DISABLED
);
855 bfa_iocpf_timer_stop(ioc
);
856 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
860 bfa_sm_fault(ioc
, event
);
865 * Request for semaphore.
868 bfa_iocpf_sm_semwait_entry(struct bfa_iocpf_s
*iocpf
)
870 bfa_ioc_hw_sem_get(iocpf
->ioc
);
874 * Awaiting semaphore for h/w initialzation.
877 bfa_iocpf_sm_semwait(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
879 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
884 case IOCPF_E_SEMLOCKED
:
885 if (bfa_ioc_sync_complete(ioc
)) {
886 bfa_ioc_sync_join(ioc
);
887 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_hwinit
);
889 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
890 bfa_sem_timer_start(ioc
);
894 case IOCPF_E_SEM_ERROR
:
895 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
896 bfa_fsm_send_event(ioc
, IOC_E_HWFAILED
);
899 case IOCPF_E_DISABLE
:
900 bfa_sem_timer_stop(ioc
);
901 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
905 bfa_sm_fault(ioc
, event
);
910 bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf_s
*iocpf
)
912 iocpf
->poll_time
= 0;
913 bfa_ioc_hwinit(iocpf
->ioc
, BFA_FALSE
);
917 * Hardware is being initialized. Interrupts are enabled.
918 * Holding hardware semaphore lock.
921 bfa_iocpf_sm_hwinit(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
923 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
928 case IOCPF_E_FWREADY
:
929 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_enabling
);
932 case IOCPF_E_TIMEOUT
:
933 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
934 bfa_fsm_send_event(ioc
, IOC_E_PFFAILED
);
935 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail_sync
);
938 case IOCPF_E_DISABLE
:
939 bfa_iocpf_timer_stop(ioc
);
940 bfa_ioc_sync_leave(ioc
);
941 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
942 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
946 bfa_sm_fault(ioc
, event
);
951 bfa_iocpf_sm_enabling_entry(struct bfa_iocpf_s
*iocpf
)
953 bfa_iocpf_timer_start(iocpf
->ioc
);
955 * Enable Interrupts before sending fw IOC ENABLE cmd.
957 iocpf
->ioc
->cbfn
->reset_cbfn(iocpf
->ioc
->bfa
);
958 bfa_ioc_send_enable(iocpf
->ioc
);
962 * Host IOC function is being enabled, awaiting response from firmware.
963 * Semaphore is acquired.
966 bfa_iocpf_sm_enabling(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
968 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
973 case IOCPF_E_FWRSP_ENABLE
:
974 bfa_iocpf_timer_stop(ioc
);
975 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
976 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_ready
);
979 case IOCPF_E_INITFAIL
:
980 bfa_iocpf_timer_stop(ioc
);
982 * !!! fall through !!!
985 case IOCPF_E_TIMEOUT
:
986 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
987 if (event
== IOCPF_E_TIMEOUT
)
988 bfa_fsm_send_event(ioc
, IOC_E_PFFAILED
);
989 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail_sync
);
992 case IOCPF_E_DISABLE
:
993 bfa_iocpf_timer_stop(ioc
);
994 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
995 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling
);
999 bfa_sm_fault(ioc
, event
);
1004 bfa_iocpf_sm_ready_entry(struct bfa_iocpf_s
*iocpf
)
1006 bfa_fsm_send_event(iocpf
->ioc
, IOC_E_ENABLED
);
1010 bfa_iocpf_sm_ready(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1012 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1014 bfa_trc(ioc
, event
);
1017 case IOCPF_E_DISABLE
:
1018 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling
);
1021 case IOCPF_E_GETATTRFAIL
:
1022 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail_sync
);
1026 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail_sync
);
1030 bfa_sm_fault(ioc
, event
);
1035 bfa_iocpf_sm_disabling_entry(struct bfa_iocpf_s
*iocpf
)
1037 bfa_iocpf_timer_start(iocpf
->ioc
);
1038 bfa_ioc_send_disable(iocpf
->ioc
);
1042 * IOC is being disabled
1045 bfa_iocpf_sm_disabling(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1047 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1049 bfa_trc(ioc
, event
);
1052 case IOCPF_E_FWRSP_DISABLE
:
1053 bfa_iocpf_timer_stop(ioc
);
1054 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
1058 bfa_iocpf_timer_stop(ioc
);
1060 * !!! fall through !!!
1063 case IOCPF_E_TIMEOUT
:
1064 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_FAIL
);
1065 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
1068 case IOCPF_E_FWRSP_ENABLE
:
1072 bfa_sm_fault(ioc
, event
);
1077 bfa_iocpf_sm_disabling_sync_entry(struct bfa_iocpf_s
*iocpf
)
1079 bfa_ioc_hw_sem_get(iocpf
->ioc
);
1083 * IOC hb ack request is being removed.
1086 bfa_iocpf_sm_disabling_sync(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1088 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1090 bfa_trc(ioc
, event
);
1093 case IOCPF_E_SEMLOCKED
:
1094 bfa_ioc_sync_leave(ioc
);
1095 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
1096 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
1099 case IOCPF_E_SEM_ERROR
:
1100 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
1101 bfa_fsm_send_event(ioc
, IOC_E_HWFAILED
);
1108 bfa_sm_fault(ioc
, event
);
1113 * IOC disable completion entry.
1116 bfa_iocpf_sm_disabled_entry(struct bfa_iocpf_s
*iocpf
)
1118 bfa_ioc_mbox_flush(iocpf
->ioc
);
1119 bfa_fsm_send_event(iocpf
->ioc
, IOC_E_DISABLED
);
1123 bfa_iocpf_sm_disabled(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1125 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1127 bfa_trc(ioc
, event
);
1130 case IOCPF_E_ENABLE
:
1131 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_semwait
);
1135 bfa_ioc_firmware_unlock(ioc
);
1136 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
1140 bfa_sm_fault(ioc
, event
);
1145 bfa_iocpf_sm_initfail_sync_entry(struct bfa_iocpf_s
*iocpf
)
1147 bfa_ioc_debug_save_ftrc(iocpf
->ioc
);
1148 bfa_ioc_hw_sem_get(iocpf
->ioc
);
1152 * Hardware initialization failed.
1155 bfa_iocpf_sm_initfail_sync(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1157 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1159 bfa_trc(ioc
, event
);
1162 case IOCPF_E_SEMLOCKED
:
1163 bfa_ioc_notify_fail(ioc
);
1164 bfa_ioc_sync_leave(ioc
);
1165 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_FAIL
);
1166 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
1167 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail
);
1170 case IOCPF_E_SEM_ERROR
:
1171 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
1172 bfa_fsm_send_event(ioc
, IOC_E_HWFAILED
);
1175 case IOCPF_E_DISABLE
:
1176 bfa_sem_timer_stop(ioc
);
1177 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
1181 bfa_sem_timer_stop(ioc
);
1182 bfa_ioc_firmware_unlock(ioc
);
1183 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
1190 bfa_sm_fault(ioc
, event
);
1195 bfa_iocpf_sm_initfail_entry(struct bfa_iocpf_s
*iocpf
)
1197 bfa_trc(iocpf
->ioc
, 0);
1201 * Hardware initialization failed.
1204 bfa_iocpf_sm_initfail(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1206 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1208 bfa_trc(ioc
, event
);
1211 case IOCPF_E_DISABLE
:
1212 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
1216 bfa_ioc_firmware_unlock(ioc
);
1217 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
1221 bfa_sm_fault(ioc
, event
);
1226 bfa_iocpf_sm_fail_sync_entry(struct bfa_iocpf_s
*iocpf
)
1229 * Mark IOC as failed in hardware and stop firmware.
1231 bfa_ioc_lpu_stop(iocpf
->ioc
);
1234 * Flush any queued up mailbox requests.
1236 bfa_ioc_mbox_flush(iocpf
->ioc
);
1238 bfa_ioc_hw_sem_get(iocpf
->ioc
);
1242 bfa_iocpf_sm_fail_sync(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1244 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1246 bfa_trc(ioc
, event
);
1249 case IOCPF_E_SEMLOCKED
:
1250 bfa_ioc_sync_ack(ioc
);
1251 bfa_ioc_notify_fail(ioc
);
1252 if (!iocpf
->auto_recover
) {
1253 bfa_ioc_sync_leave(ioc
);
1254 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_FAIL
);
1255 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
1256 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
1258 if (bfa_ioc_sync_complete(ioc
))
1259 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_hwinit
);
1261 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
1262 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_semwait
);
1267 case IOCPF_E_SEM_ERROR
:
1268 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
1269 bfa_fsm_send_event(ioc
, IOC_E_HWFAILED
);
1272 case IOCPF_E_DISABLE
:
1273 bfa_sem_timer_stop(ioc
);
1274 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
1281 bfa_sm_fault(ioc
, event
);
1286 bfa_iocpf_sm_fail_entry(struct bfa_iocpf_s
*iocpf
)
1288 bfa_trc(iocpf
->ioc
, 0);
1292 * IOC is in failed state.
1295 bfa_iocpf_sm_fail(struct bfa_iocpf_s
*iocpf
, enum iocpf_event event
)
1297 struct bfa_ioc_s
*ioc
= iocpf
->ioc
;
1299 bfa_trc(ioc
, event
);
1302 case IOCPF_E_DISABLE
:
1303 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
1307 bfa_sm_fault(ioc
, event
);
1312 * BFA IOC private functions
1316 * Notify common modules registered for notification.
1319 bfa_ioc_event_notify(struct bfa_ioc_s
*ioc
, enum bfa_ioc_event_e event
)
1321 struct bfa_ioc_notify_s
*notify
;
1322 struct list_head
*qe
;
1324 list_for_each(qe
, &ioc
->notify_q
) {
1325 notify
= (struct bfa_ioc_notify_s
*)qe
;
1326 notify
->cbfn(notify
->cbarg
, event
);
1331 bfa_ioc_disable_comp(struct bfa_ioc_s
*ioc
)
1333 ioc
->cbfn
->disable_cbfn(ioc
->bfa
);
1334 bfa_ioc_event_notify(ioc
, BFA_IOC_E_DISABLED
);
1338 bfa_ioc_sem_get(void __iomem
*sem_reg
)
1342 #define BFA_SEM_SPINCNT 3000
1344 r32
= readl(sem_reg
);
1346 while ((r32
& 1) && (cnt
< BFA_SEM_SPINCNT
)) {
1349 r32
= readl(sem_reg
);
1359 bfa_ioc_hw_sem_get(struct bfa_ioc_s
*ioc
)
1364 * First read to the semaphore register will return 0, subsequent reads
1365 * will return 1. Semaphore is released by writing 1 to the register
1367 r32
= readl(ioc
->ioc_regs
.ioc_sem_reg
);
1370 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_SEM_ERROR
);
1374 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_SEMLOCKED
);
1378 bfa_sem_timer_start(ioc
);
1382 * Initialize LPU local memory (aka secondary memory / SRAM)
1385 bfa_ioc_lmem_init(struct bfa_ioc_s
*ioc
)
1389 #define PSS_LMEM_INIT_TIME 10000
1391 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1392 pss_ctl
&= ~__PSS_LMEM_RESET
;
1393 pss_ctl
|= __PSS_LMEM_INIT_EN
;
1396 * i2c workaround 12.5khz clock
1398 pss_ctl
|= __PSS_I2C_CLK_DIV(3UL);
1399 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1402 * wait for memory initialization to be complete
1406 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1408 } while (!(pss_ctl
& __PSS_LMEM_INIT_DONE
) && (i
< PSS_LMEM_INIT_TIME
));
1411 * If memory initialization is not successful, IOC timeout will catch
1414 WARN_ON(!(pss_ctl
& __PSS_LMEM_INIT_DONE
));
1415 bfa_trc(ioc
, pss_ctl
);
1417 pss_ctl
&= ~(__PSS_LMEM_INIT_DONE
| __PSS_LMEM_INIT_EN
);
1418 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1422 bfa_ioc_lpu_start(struct bfa_ioc_s
*ioc
)
1427 * Take processor out of reset.
1429 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1430 pss_ctl
&= ~__PSS_LPU0_RESET
;
1432 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1436 bfa_ioc_lpu_stop(struct bfa_ioc_s
*ioc
)
1441 * Put processors in reset.
1443 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1444 pss_ctl
|= (__PSS_LPU0_RESET
| __PSS_LPU1_RESET
);
1446 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1450 * Get driver and firmware versions.
1453 bfa_ioc_fwver_get(struct bfa_ioc_s
*ioc
, struct bfi_ioc_image_hdr_s
*fwhdr
)
1458 u32
*fwsig
= (u32
*) fwhdr
;
1460 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, loff
);
1461 pgoff
= PSS_SMEM_PGOFF(loff
);
1462 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
1464 for (i
= 0; i
< (sizeof(struct bfi_ioc_image_hdr_s
) / sizeof(u32
));
1467 bfa_mem_read(ioc
->ioc_regs
.smem_page_start
, loff
);
1468 loff
+= sizeof(u32
);
1473 * Returns TRUE if driver is willing to work with current smem f/w version.
1476 bfa_ioc_fwver_cmp(struct bfa_ioc_s
*ioc
,
1477 struct bfi_ioc_image_hdr_s
*smem_fwhdr
)
1479 struct bfi_ioc_image_hdr_s
*drv_fwhdr
;
1480 enum bfi_ioc_img_ver_cmp_e smem_flash_cmp
, drv_smem_cmp
;
1482 drv_fwhdr
= (struct bfi_ioc_image_hdr_s
*)
1483 bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc
), 0);
1486 * If smem is incompatible or old, driver should not work with it.
1488 drv_smem_cmp
= bfa_ioc_fw_ver_patch_cmp(drv_fwhdr
, smem_fwhdr
);
1489 if (drv_smem_cmp
== BFI_IOC_IMG_VER_INCOMP
||
1490 drv_smem_cmp
== BFI_IOC_IMG_VER_OLD
) {
1495 * IF Flash has a better F/W than smem do not work with smem.
1496 * If smem f/w == flash f/w, as smem f/w not old | incmp, work with it.
1497 * If Flash is old or incomp work with smem iff smem f/w == drv f/w.
1499 smem_flash_cmp
= bfa_ioc_flash_fwver_cmp(ioc
, smem_fwhdr
);
1501 if (smem_flash_cmp
== BFI_IOC_IMG_VER_BETTER
) {
1503 } else if (smem_flash_cmp
== BFI_IOC_IMG_VER_SAME
) {
1506 return (drv_smem_cmp
== BFI_IOC_IMG_VER_SAME
) ?
1507 BFA_TRUE
: BFA_FALSE
;
1512 * Return true if current running version is valid. Firmware signature and
1513 * execution context (driver/bios) must match.
1515 static bfa_boolean_t
1516 bfa_ioc_fwver_valid(struct bfa_ioc_s
*ioc
, u32 boot_env
)
1518 struct bfi_ioc_image_hdr_s fwhdr
;
1520 bfa_ioc_fwver_get(ioc
, &fwhdr
);
1522 if (swab32(fwhdr
.bootenv
) != boot_env
) {
1523 bfa_trc(ioc
, fwhdr
.bootenv
);
1524 bfa_trc(ioc
, boot_env
);
1528 return bfa_ioc_fwver_cmp(ioc
, &fwhdr
);
1531 static bfa_boolean_t
1532 bfa_ioc_fwver_md5_check(struct bfi_ioc_image_hdr_s
*fwhdr_1
,
1533 struct bfi_ioc_image_hdr_s
*fwhdr_2
)
1537 for (i
= 0; i
< BFI_IOC_MD5SUM_SZ
; i
++)
1538 if (fwhdr_1
->md5sum
[i
] != fwhdr_2
->md5sum
[i
])
1545 * Returns TRUE if major minor and maintainence are same.
1546 * If patch versions are same, check for MD5 Checksum to be same.
1548 static bfa_boolean_t
1549 bfa_ioc_fw_ver_compatible(struct bfi_ioc_image_hdr_s
*drv_fwhdr
,
1550 struct bfi_ioc_image_hdr_s
*fwhdr_to_cmp
)
1552 if (drv_fwhdr
->signature
!= fwhdr_to_cmp
->signature
)
1555 if (drv_fwhdr
->fwver
.major
!= fwhdr_to_cmp
->fwver
.major
)
1558 if (drv_fwhdr
->fwver
.minor
!= fwhdr_to_cmp
->fwver
.minor
)
1561 if (drv_fwhdr
->fwver
.maint
!= fwhdr_to_cmp
->fwver
.maint
)
1564 if (drv_fwhdr
->fwver
.patch
== fwhdr_to_cmp
->fwver
.patch
&&
1565 drv_fwhdr
->fwver
.phase
== fwhdr_to_cmp
->fwver
.phase
&&
1566 drv_fwhdr
->fwver
.build
== fwhdr_to_cmp
->fwver
.build
) {
1567 return bfa_ioc_fwver_md5_check(drv_fwhdr
, fwhdr_to_cmp
);
1573 static bfa_boolean_t
1574 bfa_ioc_flash_fwver_valid(struct bfi_ioc_image_hdr_s
*flash_fwhdr
)
1576 if (flash_fwhdr
->fwver
.major
== 0 || flash_fwhdr
->fwver
.major
== 0xFF)
1582 static bfa_boolean_t
fwhdr_is_ga(struct bfi_ioc_image_hdr_s
*fwhdr
)
1584 if (fwhdr
->fwver
.phase
== 0 &&
1585 fwhdr
->fwver
.build
== 0)
1592 * Returns TRUE if both are compatible and patch of fwhdr_to_cmp is better.
1594 static enum bfi_ioc_img_ver_cmp_e
1595 bfa_ioc_fw_ver_patch_cmp(struct bfi_ioc_image_hdr_s
*base_fwhdr
,
1596 struct bfi_ioc_image_hdr_s
*fwhdr_to_cmp
)
1598 if (bfa_ioc_fw_ver_compatible(base_fwhdr
, fwhdr_to_cmp
) == BFA_FALSE
)
1599 return BFI_IOC_IMG_VER_INCOMP
;
1601 if (fwhdr_to_cmp
->fwver
.patch
> base_fwhdr
->fwver
.patch
)
1602 return BFI_IOC_IMG_VER_BETTER
;
1604 else if (fwhdr_to_cmp
->fwver
.patch
< base_fwhdr
->fwver
.patch
)
1605 return BFI_IOC_IMG_VER_OLD
;
1608 * GA takes priority over internal builds of the same patch stream.
1609 * At this point major minor maint and patch numbers are same.
1612 if (fwhdr_is_ga(base_fwhdr
) == BFA_TRUE
) {
1613 if (fwhdr_is_ga(fwhdr_to_cmp
))
1614 return BFI_IOC_IMG_VER_SAME
;
1616 return BFI_IOC_IMG_VER_OLD
;
1618 if (fwhdr_is_ga(fwhdr_to_cmp
))
1619 return BFI_IOC_IMG_VER_BETTER
;
1622 if (fwhdr_to_cmp
->fwver
.phase
> base_fwhdr
->fwver
.phase
)
1623 return BFI_IOC_IMG_VER_BETTER
;
1624 else if (fwhdr_to_cmp
->fwver
.phase
< base_fwhdr
->fwver
.phase
)
1625 return BFI_IOC_IMG_VER_OLD
;
1627 if (fwhdr_to_cmp
->fwver
.build
> base_fwhdr
->fwver
.build
)
1628 return BFI_IOC_IMG_VER_BETTER
;
1629 else if (fwhdr_to_cmp
->fwver
.build
< base_fwhdr
->fwver
.build
)
1630 return BFI_IOC_IMG_VER_OLD
;
1633 * All Version Numbers are equal.
1634 * Md5 check to be done as a part of compatibility check.
1636 return BFI_IOC_IMG_VER_SAME
;
1639 #define BFA_FLASH_PART_FWIMG_ADDR 0x100000 /* fw image address */
1642 bfa_ioc_flash_img_get_chnk(struct bfa_ioc_s
*ioc
, u32 off
,
1645 return bfa_flash_raw_read(ioc
->pcidev
.pci_bar_kva
,
1646 BFA_FLASH_PART_FWIMG_ADDR
+ (off
* sizeof(u32
)),
1647 (char *)fwimg
, BFI_FLASH_CHUNK_SZ
);
1650 static enum bfi_ioc_img_ver_cmp_e
1651 bfa_ioc_flash_fwver_cmp(struct bfa_ioc_s
*ioc
,
1652 struct bfi_ioc_image_hdr_s
*base_fwhdr
)
1654 struct bfi_ioc_image_hdr_s
*flash_fwhdr
;
1655 bfa_status_t status
;
1656 u32 fwimg
[BFI_FLASH_CHUNK_SZ_WORDS
];
1658 status
= bfa_ioc_flash_img_get_chnk(ioc
, 0, fwimg
);
1659 if (status
!= BFA_STATUS_OK
)
1660 return BFI_IOC_IMG_VER_INCOMP
;
1662 flash_fwhdr
= (struct bfi_ioc_image_hdr_s
*) fwimg
;
1663 if (bfa_ioc_flash_fwver_valid(flash_fwhdr
) == BFA_TRUE
)
1664 return bfa_ioc_fw_ver_patch_cmp(base_fwhdr
, flash_fwhdr
);
1666 return BFI_IOC_IMG_VER_INCOMP
;
1671 * Invalidate fwver signature
1674 bfa_ioc_fwsig_invalidate(struct bfa_ioc_s
*ioc
)
1679 enum bfi_ioc_state ioc_fwstate
;
1681 ioc_fwstate
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
1682 if (!bfa_ioc_state_disabled(ioc_fwstate
))
1683 return BFA_STATUS_ADAPTER_ENABLED
;
1685 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, loff
);
1686 pgoff
= PSS_SMEM_PGOFF(loff
);
1687 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
1688 bfa_mem_write(ioc
->ioc_regs
.smem_page_start
, loff
, BFA_IOC_FW_INV_SIGN
);
1690 return BFA_STATUS_OK
;
1694 * Conditionally flush any pending message from firmware at start.
1697 bfa_ioc_msgflush(struct bfa_ioc_s
*ioc
)
1701 r32
= readl(ioc
->ioc_regs
.lpu_mbox_cmd
);
1703 writel(1, ioc
->ioc_regs
.lpu_mbox_cmd
);
1707 bfa_ioc_hwinit(struct bfa_ioc_s
*ioc
, bfa_boolean_t force
)
1709 enum bfi_ioc_state ioc_fwstate
;
1710 bfa_boolean_t fwvalid
;
1714 ioc_fwstate
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
1717 ioc_fwstate
= BFI_IOC_UNINIT
;
1719 bfa_trc(ioc
, ioc_fwstate
);
1721 boot_type
= BFI_FWBOOT_TYPE_NORMAL
;
1722 boot_env
= BFI_FWBOOT_ENV_OS
;
1725 * check if firmware is valid
1727 fwvalid
= (ioc_fwstate
== BFI_IOC_UNINIT
) ?
1728 BFA_FALSE
: bfa_ioc_fwver_valid(ioc
, boot_env
);
1731 if (bfa_ioc_boot(ioc
, boot_type
, boot_env
) == BFA_STATUS_OK
)
1732 bfa_ioc_poll_fwinit(ioc
);
1737 * If hardware initialization is in progress (initialized by other IOC),
1738 * just wait for an initialization completion interrupt.
1740 if (ioc_fwstate
== BFI_IOC_INITING
) {
1741 bfa_ioc_poll_fwinit(ioc
);
1746 * If IOC function is disabled and firmware version is same,
1747 * just re-enable IOC.
1749 * If option rom, IOC must not be in operational state. With
1750 * convergence, IOC will be in operational state when 2nd driver
1753 if (ioc_fwstate
== BFI_IOC_DISABLED
|| ioc_fwstate
== BFI_IOC_OP
) {
1756 * When using MSI-X any pending firmware ready event should
1757 * be flushed. Otherwise MSI-X interrupts are not delivered.
1759 bfa_ioc_msgflush(ioc
);
1760 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FWREADY
);
1765 * Initialize the h/w for any other states.
1767 if (bfa_ioc_boot(ioc
, boot_type
, boot_env
) == BFA_STATUS_OK
)
1768 bfa_ioc_poll_fwinit(ioc
);
1772 bfa_ioc_timeout(void *ioc_arg
)
1774 struct bfa_ioc_s
*ioc
= (struct bfa_ioc_s
*) ioc_arg
;
1777 bfa_fsm_send_event(ioc
, IOC_E_TIMEOUT
);
1781 bfa_ioc_mbox_send(struct bfa_ioc_s
*ioc
, void *ioc_msg
, int len
)
1783 u32
*msgp
= (u32
*) ioc_msg
;
1786 bfa_trc(ioc
, msgp
[0]);
1789 WARN_ON(len
> BFI_IOC_MSGLEN_MAX
);
1792 * first write msg to mailbox registers
1794 for (i
= 0; i
< len
/ sizeof(u32
); i
++)
1795 writel(cpu_to_le32(msgp
[i
]),
1796 ioc
->ioc_regs
.hfn_mbox
+ i
* sizeof(u32
));
1798 for (; i
< BFI_IOC_MSGLEN_MAX
/ sizeof(u32
); i
++)
1799 writel(0, ioc
->ioc_regs
.hfn_mbox
+ i
* sizeof(u32
));
1802 * write 1 to mailbox CMD to trigger LPU event
1804 writel(1, ioc
->ioc_regs
.hfn_mbox_cmd
);
1805 (void) readl(ioc
->ioc_regs
.hfn_mbox_cmd
);
1809 bfa_ioc_send_enable(struct bfa_ioc_s
*ioc
)
1811 struct bfi_ioc_ctrl_req_s enable_req
;
1814 bfi_h2i_set(enable_req
.mh
, BFI_MC_IOC
, BFI_IOC_H2I_ENABLE_REQ
,
1815 bfa_ioc_portid(ioc
));
1816 enable_req
.clscode
= cpu_to_be16(ioc
->clscode
);
1817 do_gettimeofday(&tv
);
1818 enable_req
.tv_sec
= be32_to_cpu(tv
.tv_sec
);
1819 bfa_ioc_mbox_send(ioc
, &enable_req
, sizeof(struct bfi_ioc_ctrl_req_s
));
1823 bfa_ioc_send_disable(struct bfa_ioc_s
*ioc
)
1825 struct bfi_ioc_ctrl_req_s disable_req
;
1827 bfi_h2i_set(disable_req
.mh
, BFI_MC_IOC
, BFI_IOC_H2I_DISABLE_REQ
,
1828 bfa_ioc_portid(ioc
));
1829 bfa_ioc_mbox_send(ioc
, &disable_req
, sizeof(struct bfi_ioc_ctrl_req_s
));
1833 bfa_ioc_send_getattr(struct bfa_ioc_s
*ioc
)
1835 struct bfi_ioc_getattr_req_s attr_req
;
1837 bfi_h2i_set(attr_req
.mh
, BFI_MC_IOC
, BFI_IOC_H2I_GETATTR_REQ
,
1838 bfa_ioc_portid(ioc
));
1839 bfa_dma_be_addr_set(attr_req
.attr_addr
, ioc
->attr_dma
.pa
);
1840 bfa_ioc_mbox_send(ioc
, &attr_req
, sizeof(attr_req
));
1844 bfa_ioc_hb_check(void *cbarg
)
1846 struct bfa_ioc_s
*ioc
= cbarg
;
1849 hb_count
= readl(ioc
->ioc_regs
.heartbeat
);
1850 if (ioc
->hb_count
== hb_count
) {
1851 bfa_ioc_recover(ioc
);
1854 ioc
->hb_count
= hb_count
;
1857 bfa_ioc_mbox_poll(ioc
);
1858 bfa_hb_timer_start(ioc
);
1862 bfa_ioc_hb_monitor(struct bfa_ioc_s
*ioc
)
1864 ioc
->hb_count
= readl(ioc
->ioc_regs
.heartbeat
);
1865 bfa_hb_timer_start(ioc
);
1869 * Initiate a full firmware download.
1872 bfa_ioc_download_fw(struct bfa_ioc_s
*ioc
, u32 boot_type
,
1882 u32 fwimg_buf
[BFI_FLASH_CHUNK_SZ_WORDS
];
1883 bfa_status_t status
;
1885 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
1886 boot_type
== BFI_FWBOOT_TYPE_FLASH
) {
1887 fwimg_size
= BFI_FLASH_IMAGE_SZ
/sizeof(u32
);
1889 status
= bfa_ioc_flash_img_get_chnk(ioc
,
1890 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
), fwimg_buf
);
1891 if (status
!= BFA_STATUS_OK
)
1896 fwimg_size
= bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc
));
1897 fwimg
= bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc
),
1898 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
));
1901 bfa_trc(ioc
, fwimg_size
);
1904 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, loff
);
1905 pgoff
= PSS_SMEM_PGOFF(loff
);
1907 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
1909 for (i
= 0; i
< fwimg_size
; i
++) {
1911 if (BFA_IOC_FLASH_CHUNK_NO(i
) != chunkno
) {
1912 chunkno
= BFA_IOC_FLASH_CHUNK_NO(i
);
1914 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
1915 boot_type
== BFI_FWBOOT_TYPE_FLASH
) {
1916 status
= bfa_ioc_flash_img_get_chnk(ioc
,
1917 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
),
1919 if (status
!= BFA_STATUS_OK
)
1924 fwimg
= bfa_cb_image_get_chunk(
1925 bfa_ioc_asic_gen(ioc
),
1926 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
));
1933 bfa_mem_write(ioc
->ioc_regs
.smem_page_start
, loff
,
1934 fwimg
[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i
)]);
1936 loff
+= sizeof(u32
);
1939 * handle page offset wrap around
1941 loff
= PSS_SMEM_PGOFF(loff
);
1944 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
1948 writel(PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, 0),
1949 ioc
->ioc_regs
.host_page_num_fn
);
1952 * Set boot type, env and device mode at the end.
1954 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
1955 boot_type
== BFI_FWBOOT_TYPE_FLASH
) {
1956 boot_type
= BFI_FWBOOT_TYPE_NORMAL
;
1958 asicmode
= BFI_FWBOOT_DEVMODE(ioc
->asic_gen
, ioc
->asic_mode
,
1959 ioc
->port0_mode
, ioc
->port1_mode
);
1960 bfa_mem_write(ioc
->ioc_regs
.smem_page_start
, BFI_FWBOOT_DEVMODE_OFF
,
1962 bfa_mem_write(ioc
->ioc_regs
.smem_page_start
, BFI_FWBOOT_TYPE_OFF
,
1964 bfa_mem_write(ioc
->ioc_regs
.smem_page_start
, BFI_FWBOOT_ENV_OFF
,
1966 return BFA_STATUS_OK
;
1971 * Update BFA configuration from firmware configuration.
1974 bfa_ioc_getattr_reply(struct bfa_ioc_s
*ioc
)
1976 struct bfi_ioc_attr_s
*attr
= ioc
->attr
;
1978 attr
->adapter_prop
= be32_to_cpu(attr
->adapter_prop
);
1979 attr
->card_type
= be32_to_cpu(attr
->card_type
);
1980 attr
->maxfrsize
= be16_to_cpu(attr
->maxfrsize
);
1981 ioc
->fcmode
= (attr
->port_mode
== BFI_PORT_MODE_FC
);
1982 attr
->mfg_year
= be16_to_cpu(attr
->mfg_year
);
1984 bfa_fsm_send_event(ioc
, IOC_E_FWRSP_GETATTR
);
1988 * Attach time initialization of mbox logic.
1991 bfa_ioc_mbox_attach(struct bfa_ioc_s
*ioc
)
1993 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
1996 INIT_LIST_HEAD(&mod
->cmd_q
);
1997 for (mc
= 0; mc
< BFI_MC_MAX
; mc
++) {
1998 mod
->mbhdlr
[mc
].cbfn
= NULL
;
1999 mod
->mbhdlr
[mc
].cbarg
= ioc
->bfa
;
2004 * Mbox poll timer -- restarts any pending mailbox requests.
2007 bfa_ioc_mbox_poll(struct bfa_ioc_s
*ioc
)
2009 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
2010 struct bfa_mbox_cmd_s
*cmd
;
2014 * If no command pending, do nothing
2016 if (list_empty(&mod
->cmd_q
))
2020 * If previous command is not yet fetched by firmware, do nothing
2022 stat
= readl(ioc
->ioc_regs
.hfn_mbox_cmd
);
2027 * Enqueue command to firmware.
2029 bfa_q_deq(&mod
->cmd_q
, &cmd
);
2030 bfa_ioc_mbox_send(ioc
, cmd
->msg
, sizeof(cmd
->msg
));
2034 * Cleanup any pending requests.
2037 bfa_ioc_mbox_flush(struct bfa_ioc_s
*ioc
)
2039 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
2040 struct bfa_mbox_cmd_s
*cmd
;
2042 while (!list_empty(&mod
->cmd_q
))
2043 bfa_q_deq(&mod
->cmd_q
, &cmd
);
2047 * Read data from SMEM to host through PCI memmap
2049 * @param[in] ioc memory for IOC
2050 * @param[in] tbuf app memory to store data from smem
2051 * @param[in] soff smem offset
2052 * @param[in] sz size of smem in bytes
2055 bfa_ioc_smem_read(struct bfa_ioc_s
*ioc
, void *tbuf
, u32 soff
, u32 sz
)
2062 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, soff
);
2063 loff
= PSS_SMEM_PGOFF(soff
);
2064 bfa_trc(ioc
, pgnum
);
2069 * Hold semaphore to serialize pll init and fwtrc.
2071 if (BFA_FALSE
== bfa_ioc_sem_get(ioc
->ioc_regs
.ioc_init_sem_reg
)) {
2073 return BFA_STATUS_FAILED
;
2076 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2078 len
= sz
/sizeof(u32
);
2080 for (i
= 0; i
< len
; i
++) {
2081 r32
= bfa_mem_read(ioc
->ioc_regs
.smem_page_start
, loff
);
2082 buf
[i
] = swab32(r32
);
2083 loff
+= sizeof(u32
);
2086 * handle page offset wrap around
2088 loff
= PSS_SMEM_PGOFF(loff
);
2091 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2094 writel(PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, 0),
2095 ioc
->ioc_regs
.host_page_num_fn
);
2097 * release semaphore.
2099 readl(ioc
->ioc_regs
.ioc_init_sem_reg
);
2100 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
2102 bfa_trc(ioc
, pgnum
);
2103 return BFA_STATUS_OK
;
2107 * Clear SMEM data from host through PCI memmap
2109 * @param[in] ioc memory for IOC
2110 * @param[in] soff smem offset
2111 * @param[in] sz size of smem in bytes
2114 bfa_ioc_smem_clr(struct bfa_ioc_s
*ioc
, u32 soff
, u32 sz
)
2119 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, soff
);
2120 loff
= PSS_SMEM_PGOFF(soff
);
2121 bfa_trc(ioc
, pgnum
);
2126 * Hold semaphore to serialize pll init and fwtrc.
2128 if (BFA_FALSE
== bfa_ioc_sem_get(ioc
->ioc_regs
.ioc_init_sem_reg
)) {
2130 return BFA_STATUS_FAILED
;
2133 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2135 len
= sz
/sizeof(u32
); /* len in words */
2137 for (i
= 0; i
< len
; i
++) {
2138 bfa_mem_write(ioc
->ioc_regs
.smem_page_start
, loff
, 0);
2139 loff
+= sizeof(u32
);
2142 * handle page offset wrap around
2144 loff
= PSS_SMEM_PGOFF(loff
);
2147 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2150 writel(PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, 0),
2151 ioc
->ioc_regs
.host_page_num_fn
);
2154 * release semaphore.
2156 readl(ioc
->ioc_regs
.ioc_init_sem_reg
);
2157 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
2158 bfa_trc(ioc
, pgnum
);
2159 return BFA_STATUS_OK
;
2163 bfa_ioc_fail_notify(struct bfa_ioc_s
*ioc
)
2165 struct bfad_s
*bfad
= (struct bfad_s
*)ioc
->bfa
->bfad
;
2168 * Notify driver and common modules registered for notification.
2170 ioc
->cbfn
->hbfail_cbfn(ioc
->bfa
);
2171 bfa_ioc_event_notify(ioc
, BFA_IOC_E_FAILED
);
2173 bfa_ioc_debug_save_ftrc(ioc
);
2175 BFA_LOG(KERN_CRIT
, bfad
, bfa_log_level
,
2176 "Heart Beat of IOC has failed\n");
2177 bfa_ioc_aen_post(ioc
, BFA_IOC_AEN_HBFAIL
);
2182 bfa_ioc_pf_fwmismatch(struct bfa_ioc_s
*ioc
)
2184 struct bfad_s
*bfad
= (struct bfad_s
*)ioc
->bfa
->bfad
;
2186 * Provide enable completion callback.
2188 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
2189 BFA_LOG(KERN_WARNING
, bfad
, bfa_log_level
,
2190 "Running firmware version is incompatible "
2191 "with the driver version\n");
2192 bfa_ioc_aen_post(ioc
, BFA_IOC_AEN_FWMISMATCH
);
2196 bfa_ioc_pll_init(struct bfa_ioc_s
*ioc
)
2200 * Hold semaphore so that nobody can access the chip during init.
2202 bfa_ioc_sem_get(ioc
->ioc_regs
.ioc_init_sem_reg
);
2204 bfa_ioc_pll_init_asic(ioc
);
2206 ioc
->pllinit
= BFA_TRUE
;
2211 bfa_ioc_lmem_init(ioc
);
2214 * release semaphore.
2216 readl(ioc
->ioc_regs
.ioc_init_sem_reg
);
2217 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
2219 return BFA_STATUS_OK
;
2223 * Interface used by diag module to do firmware boot with memory test
2224 * as the entry vector.
2227 bfa_ioc_boot(struct bfa_ioc_s
*ioc
, u32 boot_type
, u32 boot_env
)
2229 struct bfi_ioc_image_hdr_s
*drv_fwhdr
;
2230 bfa_status_t status
;
2231 bfa_ioc_stats(ioc
, ioc_boots
);
2233 if (bfa_ioc_pll_init(ioc
) != BFA_STATUS_OK
)
2234 return BFA_STATUS_FAILED
;
2236 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
2237 boot_type
== BFI_FWBOOT_TYPE_NORMAL
) {
2239 drv_fwhdr
= (struct bfi_ioc_image_hdr_s
*)
2240 bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc
), 0);
2243 * Work with Flash iff flash f/w is better than driver f/w.
2244 * Otherwise push drivers firmware.
2246 if (bfa_ioc_flash_fwver_cmp(ioc
, drv_fwhdr
) ==
2247 BFI_IOC_IMG_VER_BETTER
)
2248 boot_type
= BFI_FWBOOT_TYPE_FLASH
;
2252 * Initialize IOC state of all functions on a chip reset.
2254 if (boot_type
== BFI_FWBOOT_TYPE_MEMTEST
) {
2255 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_MEMTEST
);
2256 bfa_ioc_set_alt_ioc_fwstate(ioc
, BFI_IOC_MEMTEST
);
2258 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_INITING
);
2259 bfa_ioc_set_alt_ioc_fwstate(ioc
, BFI_IOC_INITING
);
2262 bfa_ioc_msgflush(ioc
);
2263 status
= bfa_ioc_download_fw(ioc
, boot_type
, boot_env
);
2264 if (status
== BFA_STATUS_OK
)
2265 bfa_ioc_lpu_start(ioc
);
2267 WARN_ON(boot_type
== BFI_FWBOOT_TYPE_MEMTEST
);
2268 bfa_iocpf_timeout(ioc
);
2274 * Enable/disable IOC failure auto recovery.
2277 bfa_ioc_auto_recover(bfa_boolean_t auto_recover
)
2279 bfa_auto_recover
= auto_recover
;
2285 bfa_ioc_is_operational(struct bfa_ioc_s
*ioc
)
2287 return bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_op
);
2291 bfa_ioc_is_initialized(struct bfa_ioc_s
*ioc
)
2293 u32 r32
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
2295 return ((r32
!= BFI_IOC_UNINIT
) &&
2296 (r32
!= BFI_IOC_INITING
) &&
2297 (r32
!= BFI_IOC_MEMTEST
));
2301 bfa_ioc_msgget(struct bfa_ioc_s
*ioc
, void *mbmsg
)
2303 __be32
*msgp
= mbmsg
;
2307 r32
= readl(ioc
->ioc_regs
.lpu_mbox_cmd
);
2314 for (i
= 0; i
< (sizeof(union bfi_ioc_i2h_msg_u
) / sizeof(u32
));
2316 r32
= readl(ioc
->ioc_regs
.lpu_mbox
+
2318 msgp
[i
] = cpu_to_be32(r32
);
2322 * turn off mailbox interrupt by clearing mailbox status
2324 writel(1, ioc
->ioc_regs
.lpu_mbox_cmd
);
2325 readl(ioc
->ioc_regs
.lpu_mbox_cmd
);
2331 bfa_ioc_isr(struct bfa_ioc_s
*ioc
, struct bfi_mbmsg_s
*m
)
2333 union bfi_ioc_i2h_msg_u
*msg
;
2334 struct bfa_iocpf_s
*iocpf
= &ioc
->iocpf
;
2336 msg
= (union bfi_ioc_i2h_msg_u
*) m
;
2338 bfa_ioc_stats(ioc
, ioc_isrs
);
2340 switch (msg
->mh
.msg_id
) {
2341 case BFI_IOC_I2H_HBEAT
:
2344 case BFI_IOC_I2H_ENABLE_REPLY
:
2345 ioc
->port_mode
= ioc
->port_mode_cfg
=
2346 (enum bfa_mode_s
)msg
->fw_event
.port_mode
;
2347 ioc
->ad_cap_bm
= msg
->fw_event
.cap_bm
;
2348 bfa_fsm_send_event(iocpf
, IOCPF_E_FWRSP_ENABLE
);
2351 case BFI_IOC_I2H_DISABLE_REPLY
:
2352 bfa_fsm_send_event(iocpf
, IOCPF_E_FWRSP_DISABLE
);
2355 case BFI_IOC_I2H_GETATTR_REPLY
:
2356 bfa_ioc_getattr_reply(ioc
);
2360 bfa_trc(ioc
, msg
->mh
.msg_id
);
2366 * IOC attach time initialization and setup.
2368 * @param[in] ioc memory for IOC
2369 * @param[in] bfa driver instance structure
2372 bfa_ioc_attach(struct bfa_ioc_s
*ioc
, void *bfa
, struct bfa_ioc_cbfn_s
*cbfn
,
2373 struct bfa_timer_mod_s
*timer_mod
)
2377 ioc
->timer_mod
= timer_mod
;
2378 ioc
->fcmode
= BFA_FALSE
;
2379 ioc
->pllinit
= BFA_FALSE
;
2380 ioc
->dbg_fwsave_once
= BFA_TRUE
;
2381 ioc
->iocpf
.ioc
= ioc
;
2383 bfa_ioc_mbox_attach(ioc
);
2384 INIT_LIST_HEAD(&ioc
->notify_q
);
2386 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
2387 bfa_fsm_send_event(ioc
, IOC_E_RESET
);
2391 * Driver detach time IOC cleanup.
2394 bfa_ioc_detach(struct bfa_ioc_s
*ioc
)
2396 bfa_fsm_send_event(ioc
, IOC_E_DETACH
);
2397 INIT_LIST_HEAD(&ioc
->notify_q
);
2401 * Setup IOC PCI properties.
2403 * @param[in] pcidev PCI device information for this IOC
2406 bfa_ioc_pci_init(struct bfa_ioc_s
*ioc
, struct bfa_pcidev_s
*pcidev
,
2407 enum bfi_pcifn_class clscode
)
2409 ioc
->clscode
= clscode
;
2410 ioc
->pcidev
= *pcidev
;
2413 * Initialize IOC and device personality
2415 ioc
->port0_mode
= ioc
->port1_mode
= BFI_PORT_MODE_FC
;
2416 ioc
->asic_mode
= BFI_ASIC_MODE_FC
;
2418 switch (pcidev
->device_id
) {
2419 case BFA_PCI_DEVICE_ID_FC_8G1P
:
2420 case BFA_PCI_DEVICE_ID_FC_8G2P
:
2421 ioc
->asic_gen
= BFI_ASIC_GEN_CB
;
2422 ioc
->fcmode
= BFA_TRUE
;
2423 ioc
->port_mode
= ioc
->port_mode_cfg
= BFA_MODE_HBA
;
2424 ioc
->ad_cap_bm
= BFA_CM_HBA
;
2427 case BFA_PCI_DEVICE_ID_CT
:
2428 ioc
->asic_gen
= BFI_ASIC_GEN_CT
;
2429 ioc
->port0_mode
= ioc
->port1_mode
= BFI_PORT_MODE_ETH
;
2430 ioc
->asic_mode
= BFI_ASIC_MODE_ETH
;
2431 ioc
->port_mode
= ioc
->port_mode_cfg
= BFA_MODE_CNA
;
2432 ioc
->ad_cap_bm
= BFA_CM_CNA
;
2435 case BFA_PCI_DEVICE_ID_CT_FC
:
2436 ioc
->asic_gen
= BFI_ASIC_GEN_CT
;
2437 ioc
->fcmode
= BFA_TRUE
;
2438 ioc
->port_mode
= ioc
->port_mode_cfg
= BFA_MODE_HBA
;
2439 ioc
->ad_cap_bm
= BFA_CM_HBA
;
2442 case BFA_PCI_DEVICE_ID_CT2
:
2443 case BFA_PCI_DEVICE_ID_CT2_QUAD
:
2444 ioc
->asic_gen
= BFI_ASIC_GEN_CT2
;
2445 if (clscode
== BFI_PCIFN_CLASS_FC
&&
2446 pcidev
->ssid
== BFA_PCI_CT2_SSID_FC
) {
2447 ioc
->asic_mode
= BFI_ASIC_MODE_FC16
;
2448 ioc
->fcmode
= BFA_TRUE
;
2449 ioc
->port_mode
= ioc
->port_mode_cfg
= BFA_MODE_HBA
;
2450 ioc
->ad_cap_bm
= BFA_CM_HBA
;
2452 ioc
->port0_mode
= ioc
->port1_mode
= BFI_PORT_MODE_ETH
;
2453 ioc
->asic_mode
= BFI_ASIC_MODE_ETH
;
2454 if (pcidev
->ssid
== BFA_PCI_CT2_SSID_FCoE
) {
2456 ioc
->port_mode_cfg
= BFA_MODE_CNA
;
2457 ioc
->ad_cap_bm
= BFA_CM_CNA
;
2460 ioc
->port_mode_cfg
= BFA_MODE_NIC
;
2461 ioc
->ad_cap_bm
= BFA_CM_NIC
;
2471 * Set asic specific interfaces. See bfa_ioc_cb.c and bfa_ioc_ct.c
2473 if (ioc
->asic_gen
== BFI_ASIC_GEN_CB
)
2474 bfa_ioc_set_cb_hwif(ioc
);
2475 else if (ioc
->asic_gen
== BFI_ASIC_GEN_CT
)
2476 bfa_ioc_set_ct_hwif(ioc
);
2478 WARN_ON(ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
);
2479 bfa_ioc_set_ct2_hwif(ioc
);
2480 bfa_ioc_ct2_poweron(ioc
);
2483 bfa_ioc_map_port(ioc
);
2484 bfa_ioc_reg_init(ioc
);
2488 * Initialize IOC dma memory
2490 * @param[in] dm_kva kernel virtual address of IOC dma memory
2491 * @param[in] dm_pa physical address of IOC dma memory
2494 bfa_ioc_mem_claim(struct bfa_ioc_s
*ioc
, u8
*dm_kva
, u64 dm_pa
)
2497 * dma memory for firmware attribute
2499 ioc
->attr_dma
.kva
= dm_kva
;
2500 ioc
->attr_dma
.pa
= dm_pa
;
2501 ioc
->attr
= (struct bfi_ioc_attr_s
*) dm_kva
;
2505 bfa_ioc_enable(struct bfa_ioc_s
*ioc
)
2507 bfa_ioc_stats(ioc
, ioc_enables
);
2508 ioc
->dbg_fwsave_once
= BFA_TRUE
;
2510 bfa_fsm_send_event(ioc
, IOC_E_ENABLE
);
2514 bfa_ioc_disable(struct bfa_ioc_s
*ioc
)
2516 bfa_ioc_stats(ioc
, ioc_disables
);
2517 bfa_fsm_send_event(ioc
, IOC_E_DISABLE
);
2521 bfa_ioc_suspend(struct bfa_ioc_s
*ioc
)
2523 ioc
->dbg_fwsave_once
= BFA_TRUE
;
2524 bfa_fsm_send_event(ioc
, IOC_E_HWERROR
);
2528 * Initialize memory for saving firmware trace. Driver must initialize
2529 * trace memory before call bfa_ioc_enable().
2532 bfa_ioc_debug_memclaim(struct bfa_ioc_s
*ioc
, void *dbg_fwsave
)
2534 ioc
->dbg_fwsave
= dbg_fwsave
;
2535 ioc
->dbg_fwsave_len
= BFA_DBG_FWTRC_LEN
;
2539 * Register mailbox message handler functions
2541 * @param[in] ioc IOC instance
2542 * @param[in] mcfuncs message class handler functions
2545 bfa_ioc_mbox_register(struct bfa_ioc_s
*ioc
, bfa_ioc_mbox_mcfunc_t
*mcfuncs
)
2547 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
2550 for (mc
= 0; mc
< BFI_MC_MAX
; mc
++)
2551 mod
->mbhdlr
[mc
].cbfn
= mcfuncs
[mc
];
2555 * Register mailbox message handler function, to be called by common modules
2558 bfa_ioc_mbox_regisr(struct bfa_ioc_s
*ioc
, enum bfi_mclass mc
,
2559 bfa_ioc_mbox_mcfunc_t cbfn
, void *cbarg
)
2561 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
2563 mod
->mbhdlr
[mc
].cbfn
= cbfn
;
2564 mod
->mbhdlr
[mc
].cbarg
= cbarg
;
2568 * Queue a mailbox command request to firmware. Waits if mailbox is busy.
2569 * Responsibility of caller to serialize
2571 * @param[in] ioc IOC instance
2572 * @param[i] cmd Mailbox command
2575 bfa_ioc_mbox_queue(struct bfa_ioc_s
*ioc
, struct bfa_mbox_cmd_s
*cmd
)
2577 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
2581 * If a previous command is pending, queue new command
2583 if (!list_empty(&mod
->cmd_q
)) {
2584 list_add_tail(&cmd
->qe
, &mod
->cmd_q
);
2589 * If mailbox is busy, queue command for poll timer
2591 stat
= readl(ioc
->ioc_regs
.hfn_mbox_cmd
);
2593 list_add_tail(&cmd
->qe
, &mod
->cmd_q
);
2598 * mailbox is free -- queue command to firmware
2600 bfa_ioc_mbox_send(ioc
, cmd
->msg
, sizeof(cmd
->msg
));
2604 * Handle mailbox interrupts
2607 bfa_ioc_mbox_isr(struct bfa_ioc_s
*ioc
)
2609 struct bfa_ioc_mbox_mod_s
*mod
= &ioc
->mbox_mod
;
2610 struct bfi_mbmsg_s m
;
2613 if (bfa_ioc_msgget(ioc
, &m
)) {
2615 * Treat IOC message class as special.
2617 mc
= m
.mh
.msg_class
;
2618 if (mc
== BFI_MC_IOC
) {
2619 bfa_ioc_isr(ioc
, &m
);
2623 if ((mc
>= BFI_MC_MAX
) || (mod
->mbhdlr
[mc
].cbfn
== NULL
))
2626 mod
->mbhdlr
[mc
].cbfn(mod
->mbhdlr
[mc
].cbarg
, &m
);
2629 bfa_ioc_lpu_read_stat(ioc
);
2632 * Try to send pending mailbox commands
2634 bfa_ioc_mbox_poll(ioc
);
2638 bfa_ioc_error_isr(struct bfa_ioc_s
*ioc
)
2640 bfa_ioc_stats(ioc
, ioc_hbfails
);
2641 ioc
->stats
.hb_count
= ioc
->hb_count
;
2642 bfa_fsm_send_event(ioc
, IOC_E_HWERROR
);
2646 * return true if IOC is disabled
2649 bfa_ioc_is_disabled(struct bfa_ioc_s
*ioc
)
2651 return bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_disabling
) ||
2652 bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_disabled
);
2656 * return true if IOC firmware is different.
2659 bfa_ioc_fw_mismatch(struct bfa_ioc_s
*ioc
)
2661 return bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_reset
) ||
2662 bfa_fsm_cmp_state(&ioc
->iocpf
, bfa_iocpf_sm_fwcheck
) ||
2663 bfa_fsm_cmp_state(&ioc
->iocpf
, bfa_iocpf_sm_mismatch
);
2667 * Check if adapter is disabled -- both IOCs should be in a disabled
2671 bfa_ioc_adapter_is_disabled(struct bfa_ioc_s
*ioc
)
2675 if (!bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_disabled
))
2678 ioc_state
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
2679 if (!bfa_ioc_state_disabled(ioc_state
))
2682 if (ioc
->pcidev
.device_id
!= BFA_PCI_DEVICE_ID_FC_8G1P
) {
2683 ioc_state
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
2684 if (!bfa_ioc_state_disabled(ioc_state
))
2692 * Reset IOC fwstate registers.
2695 bfa_ioc_reset_fwstate(struct bfa_ioc_s
*ioc
)
2697 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_UNINIT
);
2698 bfa_ioc_set_alt_ioc_fwstate(ioc
, BFI_IOC_UNINIT
);
2701 #define BFA_MFG_NAME "QLogic"
2703 bfa_ioc_get_adapter_attr(struct bfa_ioc_s
*ioc
,
2704 struct bfa_adapter_attr_s
*ad_attr
)
2706 struct bfi_ioc_attr_s
*ioc_attr
;
2708 ioc_attr
= ioc
->attr
;
2710 bfa_ioc_get_adapter_serial_num(ioc
, ad_attr
->serial_num
);
2711 bfa_ioc_get_adapter_fw_ver(ioc
, ad_attr
->fw_ver
);
2712 bfa_ioc_get_adapter_optrom_ver(ioc
, ad_attr
->optrom_ver
);
2713 bfa_ioc_get_adapter_manufacturer(ioc
, ad_attr
->manufacturer
);
2714 memcpy(&ad_attr
->vpd
, &ioc_attr
->vpd
,
2715 sizeof(struct bfa_mfg_vpd_s
));
2717 ad_attr
->nports
= bfa_ioc_get_nports(ioc
);
2718 ad_attr
->max_speed
= bfa_ioc_speed_sup(ioc
);
2720 bfa_ioc_get_adapter_model(ioc
, ad_attr
->model
);
2721 /* For now, model descr uses same model string */
2722 bfa_ioc_get_adapter_model(ioc
, ad_attr
->model_descr
);
2724 ad_attr
->card_type
= ioc_attr
->card_type
;
2725 ad_attr
->is_mezz
= bfa_mfg_is_mezz(ioc_attr
->card_type
);
2727 if (BFI_ADAPTER_IS_SPECIAL(ioc_attr
->adapter_prop
))
2728 ad_attr
->prototype
= 1;
2730 ad_attr
->prototype
= 0;
2732 ad_attr
->pwwn
= ioc
->attr
->pwwn
;
2733 ad_attr
->mac
= bfa_ioc_get_mac(ioc
);
2735 ad_attr
->pcie_gen
= ioc_attr
->pcie_gen
;
2736 ad_attr
->pcie_lanes
= ioc_attr
->pcie_lanes
;
2737 ad_attr
->pcie_lanes_orig
= ioc_attr
->pcie_lanes_orig
;
2738 ad_attr
->asic_rev
= ioc_attr
->asic_rev
;
2740 bfa_ioc_get_pci_chip_rev(ioc
, ad_attr
->hw_ver
);
2742 ad_attr
->cna_capable
= bfa_ioc_is_cna(ioc
);
2743 ad_attr
->trunk_capable
= (ad_attr
->nports
> 1) &&
2744 !bfa_ioc_is_cna(ioc
) && !ad_attr
->is_mezz
;
2745 ad_attr
->mfg_day
= ioc_attr
->mfg_day
;
2746 ad_attr
->mfg_month
= ioc_attr
->mfg_month
;
2747 ad_attr
->mfg_year
= ioc_attr
->mfg_year
;
2748 memcpy(ad_attr
->uuid
, ioc_attr
->uuid
, BFA_ADAPTER_UUID_LEN
);
2752 bfa_ioc_get_type(struct bfa_ioc_s
*ioc
)
2754 if (ioc
->clscode
== BFI_PCIFN_CLASS_ETH
)
2755 return BFA_IOC_TYPE_LL
;
2757 WARN_ON(ioc
->clscode
!= BFI_PCIFN_CLASS_FC
);
2759 return (ioc
->attr
->port_mode
== BFI_PORT_MODE_FC
)
2760 ? BFA_IOC_TYPE_FC
: BFA_IOC_TYPE_FCoE
;
2764 bfa_ioc_get_adapter_serial_num(struct bfa_ioc_s
*ioc
, char *serial_num
)
2766 memset((void *)serial_num
, 0, BFA_ADAPTER_SERIAL_NUM_LEN
);
2767 memcpy((void *)serial_num
,
2768 (void *)ioc
->attr
->brcd_serialnum
,
2769 BFA_ADAPTER_SERIAL_NUM_LEN
);
2773 bfa_ioc_get_adapter_fw_ver(struct bfa_ioc_s
*ioc
, char *fw_ver
)
2775 memset((void *)fw_ver
, 0, BFA_VERSION_LEN
);
2776 memcpy(fw_ver
, ioc
->attr
->fw_version
, BFA_VERSION_LEN
);
2780 bfa_ioc_get_pci_chip_rev(struct bfa_ioc_s
*ioc
, char *chip_rev
)
2784 memset((void *)chip_rev
, 0, BFA_IOC_CHIP_REV_LEN
);
2790 chip_rev
[4] = ioc
->attr
->asic_rev
;
2795 bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc_s
*ioc
, char *optrom_ver
)
2797 memset((void *)optrom_ver
, 0, BFA_VERSION_LEN
);
2798 memcpy(optrom_ver
, ioc
->attr
->optrom_version
,
2803 bfa_ioc_get_adapter_manufacturer(struct bfa_ioc_s
*ioc
, char *manufacturer
)
2805 memset((void *)manufacturer
, 0, BFA_ADAPTER_MFG_NAME_LEN
);
2806 strncpy(manufacturer
, BFA_MFG_NAME
, BFA_ADAPTER_MFG_NAME_LEN
);
2810 bfa_ioc_get_adapter_model(struct bfa_ioc_s
*ioc
, char *model
)
2812 struct bfi_ioc_attr_s
*ioc_attr
;
2813 u8 nports
= bfa_ioc_get_nports(ioc
);
2816 memset((void *)model
, 0, BFA_ADAPTER_MODEL_NAME_LEN
);
2818 ioc_attr
= ioc
->attr
;
2820 if (bfa_asic_id_ct2(ioc
->pcidev
.device_id
) &&
2821 (!bfa_mfg_is_mezz(ioc_attr
->card_type
)))
2822 snprintf(model
, BFA_ADAPTER_MODEL_NAME_LEN
, "%s-%u-%u%s",
2823 BFA_MFG_NAME
, ioc_attr
->card_type
, nports
, "p");
2825 snprintf(model
, BFA_ADAPTER_MODEL_NAME_LEN
, "%s-%u",
2826 BFA_MFG_NAME
, ioc_attr
->card_type
);
2830 bfa_ioc_get_state(struct bfa_ioc_s
*ioc
)
2832 enum bfa_iocpf_state iocpf_st
;
2833 enum bfa_ioc_state ioc_st
= bfa_sm_to_state(ioc_sm_table
, ioc
->fsm
);
2835 if (ioc_st
== BFA_IOC_ENABLING
||
2836 ioc_st
== BFA_IOC_FAIL
|| ioc_st
== BFA_IOC_INITFAIL
) {
2838 iocpf_st
= bfa_sm_to_state(iocpf_sm_table
, ioc
->iocpf
.fsm
);
2841 case BFA_IOCPF_SEMWAIT
:
2842 ioc_st
= BFA_IOC_SEMWAIT
;
2845 case BFA_IOCPF_HWINIT
:
2846 ioc_st
= BFA_IOC_HWINIT
;
2849 case BFA_IOCPF_FWMISMATCH
:
2850 ioc_st
= BFA_IOC_FWMISMATCH
;
2853 case BFA_IOCPF_FAIL
:
2854 ioc_st
= BFA_IOC_FAIL
;
2857 case BFA_IOCPF_INITFAIL
:
2858 ioc_st
= BFA_IOC_INITFAIL
;
2870 bfa_ioc_get_attr(struct bfa_ioc_s
*ioc
, struct bfa_ioc_attr_s
*ioc_attr
)
2872 memset((void *)ioc_attr
, 0, sizeof(struct bfa_ioc_attr_s
));
2874 ioc_attr
->state
= bfa_ioc_get_state(ioc
);
2875 ioc_attr
->port_id
= bfa_ioc_portid(ioc
);
2876 ioc_attr
->port_mode
= ioc
->port_mode
;
2877 ioc_attr
->port_mode_cfg
= ioc
->port_mode_cfg
;
2878 ioc_attr
->cap_bm
= ioc
->ad_cap_bm
;
2880 ioc_attr
->ioc_type
= bfa_ioc_get_type(ioc
);
2882 bfa_ioc_get_adapter_attr(ioc
, &ioc_attr
->adapter_attr
);
2884 ioc_attr
->pci_attr
.device_id
= bfa_ioc_devid(ioc
);
2885 ioc_attr
->pci_attr
.pcifn
= bfa_ioc_pcifn(ioc
);
2886 ioc_attr
->def_fn
= (bfa_ioc_pcifn(ioc
) == bfa_ioc_portid(ioc
));
2887 bfa_ioc_get_pci_chip_rev(ioc
, ioc_attr
->pci_attr
.chip_rev
);
2891 bfa_ioc_get_mac(struct bfa_ioc_s
*ioc
)
2894 * Check the IOC type and return the appropriate MAC
2896 if (bfa_ioc_get_type(ioc
) == BFA_IOC_TYPE_FCoE
)
2897 return ioc
->attr
->fcoe_mac
;
2899 return ioc
->attr
->mac
;
2903 bfa_ioc_get_mfg_mac(struct bfa_ioc_s
*ioc
)
2907 m
= ioc
->attr
->mfg_mac
;
2908 if (bfa_mfg_is_old_wwn_mac_model(ioc
->attr
->card_type
))
2909 m
.mac
[MAC_ADDRLEN
- 1] += bfa_ioc_pcifn(ioc
);
2911 bfa_mfg_increment_wwn_mac(&(m
.mac
[MAC_ADDRLEN
-3]),
2912 bfa_ioc_pcifn(ioc
));
2918 * Send AEN notification
2921 bfa_ioc_aen_post(struct bfa_ioc_s
*ioc
, enum bfa_ioc_aen_event event
)
2923 struct bfad_s
*bfad
= (struct bfad_s
*)ioc
->bfa
->bfad
;
2924 struct bfa_aen_entry_s
*aen_entry
;
2925 enum bfa_ioc_type_e ioc_type
;
2927 bfad_get_aen_entry(bfad
, aen_entry
);
2931 ioc_type
= bfa_ioc_get_type(ioc
);
2933 case BFA_IOC_TYPE_FC
:
2934 aen_entry
->aen_data
.ioc
.pwwn
= ioc
->attr
->pwwn
;
2936 case BFA_IOC_TYPE_FCoE
:
2937 aen_entry
->aen_data
.ioc
.pwwn
= ioc
->attr
->pwwn
;
2938 aen_entry
->aen_data
.ioc
.mac
= bfa_ioc_get_mac(ioc
);
2940 case BFA_IOC_TYPE_LL
:
2941 aen_entry
->aen_data
.ioc
.mac
= bfa_ioc_get_mac(ioc
);
2944 WARN_ON(ioc_type
!= BFA_IOC_TYPE_FC
);
2948 /* Send the AEN notification */
2949 aen_entry
->aen_data
.ioc
.ioc_type
= ioc_type
;
2950 bfad_im_post_vendor_event(aen_entry
, bfad
, ++ioc
->ioc_aen_seq
,
2951 BFA_AEN_CAT_IOC
, event
);
2955 * Retrieve saved firmware trace from a prior IOC failure.
2958 bfa_ioc_debug_fwsave(struct bfa_ioc_s
*ioc
, void *trcdata
, int *trclen
)
2962 if (ioc
->dbg_fwsave_len
== 0)
2963 return BFA_STATUS_ENOFSAVE
;
2966 if (tlen
> ioc
->dbg_fwsave_len
)
2967 tlen
= ioc
->dbg_fwsave_len
;
2969 memcpy(trcdata
, ioc
->dbg_fwsave
, tlen
);
2971 return BFA_STATUS_OK
;
2976 * Retrieve saved firmware trace from a prior IOC failure.
2979 bfa_ioc_debug_fwtrc(struct bfa_ioc_s
*ioc
, void *trcdata
, int *trclen
)
2981 u32 loff
= BFA_DBG_FWTRC_OFF(bfa_ioc_portid(ioc
));
2983 bfa_status_t status
;
2985 bfa_trc(ioc
, *trclen
);
2988 if (tlen
> BFA_DBG_FWTRC_LEN
)
2989 tlen
= BFA_DBG_FWTRC_LEN
;
2991 status
= bfa_ioc_smem_read(ioc
, trcdata
, loff
, tlen
);
2997 bfa_ioc_send_fwsync(struct bfa_ioc_s
*ioc
)
2999 struct bfa_mbox_cmd_s cmd
;
3000 struct bfi_ioc_ctrl_req_s
*req
= (struct bfi_ioc_ctrl_req_s
*) cmd
.msg
;
3002 bfi_h2i_set(req
->mh
, BFI_MC_IOC
, BFI_IOC_H2I_DBG_SYNC
,
3003 bfa_ioc_portid(ioc
));
3004 req
->clscode
= cpu_to_be16(ioc
->clscode
);
3005 bfa_ioc_mbox_queue(ioc
, &cmd
);
3009 bfa_ioc_fwsync(struct bfa_ioc_s
*ioc
)
3011 u32 fwsync_iter
= 1000;
3013 bfa_ioc_send_fwsync(ioc
);
3016 * After sending a fw sync mbox command wait for it to
3017 * take effect. We will not wait for a response because
3018 * 1. fw_sync mbox cmd doesn't have a response.
3019 * 2. Even if we implement that, interrupts might not
3020 * be enabled when we call this function.
3021 * So, just keep checking if any mbox cmd is pending, and
3022 * after waiting for a reasonable amount of time, go ahead.
3023 * It is possible that fw has crashed and the mbox command
3024 * is never acknowledged.
3026 while (bfa_ioc_mbox_cmd_pending(ioc
) && fwsync_iter
> 0)
3031 * Dump firmware smem
3034 bfa_ioc_debug_fwcore(struct bfa_ioc_s
*ioc
, void *buf
,
3035 u32
*offset
, int *buflen
)
3039 bfa_status_t status
;
3040 u32 smem_len
= BFA_IOC_FW_SMEM_SIZE(ioc
);
3042 if (*offset
>= smem_len
) {
3043 *offset
= *buflen
= 0;
3044 return BFA_STATUS_EINVAL
;
3051 * First smem read, sync smem before proceeding
3052 * No need to sync before reading every chunk.
3055 bfa_ioc_fwsync(ioc
);
3057 if ((loff
+ dlen
) >= smem_len
)
3058 dlen
= smem_len
- loff
;
3060 status
= bfa_ioc_smem_read(ioc
, buf
, loff
, dlen
);
3062 if (status
!= BFA_STATUS_OK
) {
3063 *offset
= *buflen
= 0;
3069 if (*offset
>= smem_len
)
3078 * Firmware statistics
3081 bfa_ioc_fw_stats_get(struct bfa_ioc_s
*ioc
, void *stats
)
3083 u32 loff
= BFI_IOC_FWSTATS_OFF
+ \
3084 BFI_IOC_FWSTATS_SZ
* (bfa_ioc_portid(ioc
));
3086 bfa_status_t status
;
3088 if (ioc
->stats_busy
) {
3089 bfa_trc(ioc
, ioc
->stats_busy
);
3090 return BFA_STATUS_DEVBUSY
;
3092 ioc
->stats_busy
= BFA_TRUE
;
3094 tlen
= sizeof(struct bfa_fw_stats_s
);
3095 status
= bfa_ioc_smem_read(ioc
, stats
, loff
, tlen
);
3097 ioc
->stats_busy
= BFA_FALSE
;
3102 bfa_ioc_fw_stats_clear(struct bfa_ioc_s
*ioc
)
3104 u32 loff
= BFI_IOC_FWSTATS_OFF
+ \
3105 BFI_IOC_FWSTATS_SZ
* (bfa_ioc_portid(ioc
));
3107 bfa_status_t status
;
3109 if (ioc
->stats_busy
) {
3110 bfa_trc(ioc
, ioc
->stats_busy
);
3111 return BFA_STATUS_DEVBUSY
;
3113 ioc
->stats_busy
= BFA_TRUE
;
3115 tlen
= sizeof(struct bfa_fw_stats_s
);
3116 status
= bfa_ioc_smem_clr(ioc
, loff
, tlen
);
3118 ioc
->stats_busy
= BFA_FALSE
;
3123 * Save firmware trace if configured.
3126 bfa_ioc_debug_save_ftrc(struct bfa_ioc_s
*ioc
)
3130 if (ioc
->dbg_fwsave_once
) {
3131 ioc
->dbg_fwsave_once
= BFA_FALSE
;
3132 if (ioc
->dbg_fwsave_len
) {
3133 tlen
= ioc
->dbg_fwsave_len
;
3134 bfa_ioc_debug_fwtrc(ioc
, ioc
->dbg_fwsave
, &tlen
);
3140 * Firmware failure detected. Start recovery actions.
3143 bfa_ioc_recover(struct bfa_ioc_s
*ioc
)
3145 bfa_ioc_stats(ioc
, ioc_hbfails
);
3146 ioc
->stats
.hb_count
= ioc
->hb_count
;
3147 bfa_fsm_send_event(ioc
, IOC_E_HBFAIL
);
3151 * BFA IOC PF private functions
3154 bfa_iocpf_timeout(void *ioc_arg
)
3156 struct bfa_ioc_s
*ioc
= (struct bfa_ioc_s
*) ioc_arg
;
3159 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_TIMEOUT
);
3163 bfa_iocpf_sem_timeout(void *ioc_arg
)
3165 struct bfa_ioc_s
*ioc
= (struct bfa_ioc_s
*) ioc_arg
;
3167 bfa_ioc_hw_sem_get(ioc
);
3171 bfa_ioc_poll_fwinit(struct bfa_ioc_s
*ioc
)
3173 u32 fwstate
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
3175 bfa_trc(ioc
, fwstate
);
3177 if (fwstate
== BFI_IOC_DISABLED
) {
3178 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FWREADY
);
3182 if (ioc
->iocpf
.poll_time
>= (3 * BFA_IOC_TOV
))
3183 bfa_iocpf_timeout(ioc
);
3185 ioc
->iocpf
.poll_time
+= BFA_IOC_POLL_TOV
;
3186 bfa_iocpf_poll_timer_start(ioc
);
3191 bfa_iocpf_poll_timeout(void *ioc_arg
)
3193 struct bfa_ioc_s
*ioc
= (struct bfa_ioc_s
*) ioc_arg
;
3195 bfa_ioc_poll_fwinit(ioc
);
3199 * bfa timer function
3202 bfa_timer_beat(struct bfa_timer_mod_s
*mod
)
3204 struct list_head
*qh
= &mod
->timer_q
;
3205 struct list_head
*qe
, *qe_next
;
3206 struct bfa_timer_s
*elem
;
3207 struct list_head timedout_q
;
3209 INIT_LIST_HEAD(&timedout_q
);
3211 qe
= bfa_q_next(qh
);
3214 qe_next
= bfa_q_next(qe
);
3216 elem
= (struct bfa_timer_s
*) qe
;
3217 if (elem
->timeout
<= BFA_TIMER_FREQ
) {
3219 list_del(&elem
->qe
);
3220 list_add_tail(&elem
->qe
, &timedout_q
);
3222 elem
->timeout
-= BFA_TIMER_FREQ
;
3225 qe
= qe_next
; /* go to next elem */
3229 * Pop all the timeout entries
3231 while (!list_empty(&timedout_q
)) {
3232 bfa_q_deq(&timedout_q
, &elem
);
3233 elem
->timercb(elem
->arg
);
3238 * Should be called with lock protection
3241 bfa_timer_begin(struct bfa_timer_mod_s
*mod
, struct bfa_timer_s
*timer
,
3242 void (*timercb
) (void *), void *arg
, unsigned int timeout
)
3245 WARN_ON(timercb
== NULL
);
3246 WARN_ON(bfa_q_is_on_q(&mod
->timer_q
, timer
));
3248 timer
->timeout
= timeout
;
3249 timer
->timercb
= timercb
;
3252 list_add_tail(&timer
->qe
, &mod
->timer_q
);
3256 * Should be called with lock protection
3259 bfa_timer_stop(struct bfa_timer_s
*timer
)
3261 WARN_ON(list_empty(&timer
->qe
));
3263 list_del(&timer
->qe
);
3267 * ASIC block related
3270 bfa_ablk_config_swap(struct bfa_ablk_cfg_s
*cfg
)
3272 struct bfa_ablk_cfg_inst_s
*cfg_inst
;
3276 for (i
= 0; i
< BFA_ABLK_MAX
; i
++) {
3277 cfg_inst
= &cfg
->inst
[i
];
3278 for (j
= 0; j
< BFA_ABLK_MAX_PFS
; j
++) {
3279 be16
= cfg_inst
->pf_cfg
[j
].pers
;
3280 cfg_inst
->pf_cfg
[j
].pers
= be16_to_cpu(be16
);
3281 be16
= cfg_inst
->pf_cfg
[j
].num_qpairs
;
3282 cfg_inst
->pf_cfg
[j
].num_qpairs
= be16_to_cpu(be16
);
3283 be16
= cfg_inst
->pf_cfg
[j
].num_vectors
;
3284 cfg_inst
->pf_cfg
[j
].num_vectors
= be16_to_cpu(be16
);
3285 be16
= cfg_inst
->pf_cfg
[j
].bw_min
;
3286 cfg_inst
->pf_cfg
[j
].bw_min
= be16_to_cpu(be16
);
3287 be16
= cfg_inst
->pf_cfg
[j
].bw_max
;
3288 cfg_inst
->pf_cfg
[j
].bw_max
= be16_to_cpu(be16
);
3294 bfa_ablk_isr(void *cbarg
, struct bfi_mbmsg_s
*msg
)
3296 struct bfa_ablk_s
*ablk
= (struct bfa_ablk_s
*)cbarg
;
3297 struct bfi_ablk_i2h_rsp_s
*rsp
= (struct bfi_ablk_i2h_rsp_s
*)msg
;
3298 bfa_ablk_cbfn_t cbfn
;
3300 WARN_ON(msg
->mh
.msg_class
!= BFI_MC_ABLK
);
3301 bfa_trc(ablk
->ioc
, msg
->mh
.msg_id
);
3303 switch (msg
->mh
.msg_id
) {
3304 case BFI_ABLK_I2H_QUERY
:
3305 if (rsp
->status
== BFA_STATUS_OK
) {
3306 memcpy(ablk
->cfg
, ablk
->dma_addr
.kva
,
3307 sizeof(struct bfa_ablk_cfg_s
));
3308 bfa_ablk_config_swap(ablk
->cfg
);
3313 case BFI_ABLK_I2H_ADPT_CONFIG
:
3314 case BFI_ABLK_I2H_PORT_CONFIG
:
3315 /* update config port mode */
3316 ablk
->ioc
->port_mode_cfg
= rsp
->port_mode
;
3318 case BFI_ABLK_I2H_PF_DELETE
:
3319 case BFI_ABLK_I2H_PF_UPDATE
:
3320 case BFI_ABLK_I2H_OPTROM_ENABLE
:
3321 case BFI_ABLK_I2H_OPTROM_DISABLE
:
3325 case BFI_ABLK_I2H_PF_CREATE
:
3326 *(ablk
->pcifn
) = rsp
->pcifn
;
3334 ablk
->busy
= BFA_FALSE
;
3338 cbfn(ablk
->cbarg
, rsp
->status
);
3343 bfa_ablk_notify(void *cbarg
, enum bfa_ioc_event_e event
)
3345 struct bfa_ablk_s
*ablk
= (struct bfa_ablk_s
*)cbarg
;
3347 bfa_trc(ablk
->ioc
, event
);
3350 case BFA_IOC_E_ENABLED
:
3351 WARN_ON(ablk
->busy
!= BFA_FALSE
);
3354 case BFA_IOC_E_DISABLED
:
3355 case BFA_IOC_E_FAILED
:
3356 /* Fail any pending requests */
3360 ablk
->cbfn(ablk
->cbarg
, BFA_STATUS_FAILED
);
3362 ablk
->busy
= BFA_FALSE
;
3373 bfa_ablk_meminfo(void)
3375 return BFA_ROUNDUP(sizeof(struct bfa_ablk_cfg_s
), BFA_DMA_ALIGN_SZ
);
3379 bfa_ablk_memclaim(struct bfa_ablk_s
*ablk
, u8
*dma_kva
, u64 dma_pa
)
3381 ablk
->dma_addr
.kva
= dma_kva
;
3382 ablk
->dma_addr
.pa
= dma_pa
;
3386 bfa_ablk_attach(struct bfa_ablk_s
*ablk
, struct bfa_ioc_s
*ioc
)
3390 bfa_ioc_mbox_regisr(ablk
->ioc
, BFI_MC_ABLK
, bfa_ablk_isr
, ablk
);
3391 bfa_q_qe_init(&ablk
->ioc_notify
);
3392 bfa_ioc_notify_init(&ablk
->ioc_notify
, bfa_ablk_notify
, ablk
);
3393 list_add_tail(&ablk
->ioc_notify
.qe
, &ablk
->ioc
->notify_q
);
3397 bfa_ablk_query(struct bfa_ablk_s
*ablk
, struct bfa_ablk_cfg_s
*ablk_cfg
,
3398 bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3400 struct bfi_ablk_h2i_query_s
*m
;
3404 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3405 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3406 return BFA_STATUS_IOC_FAILURE
;
3410 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3411 return BFA_STATUS_DEVBUSY
;
3414 ablk
->cfg
= ablk_cfg
;
3416 ablk
->cbarg
= cbarg
;
3417 ablk
->busy
= BFA_TRUE
;
3419 m
= (struct bfi_ablk_h2i_query_s
*)ablk
->mb
.msg
;
3420 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_QUERY
,
3421 bfa_ioc_portid(ablk
->ioc
));
3422 bfa_dma_be_addr_set(m
->addr
, ablk
->dma_addr
.pa
);
3423 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3425 return BFA_STATUS_OK
;
3429 bfa_ablk_pf_create(struct bfa_ablk_s
*ablk
, u16
*pcifn
,
3430 u8 port
, enum bfi_pcifn_class personality
,
3431 u16 bw_min
, u16 bw_max
,
3432 bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3434 struct bfi_ablk_h2i_pf_req_s
*m
;
3436 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3437 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3438 return BFA_STATUS_IOC_FAILURE
;
3442 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3443 return BFA_STATUS_DEVBUSY
;
3446 ablk
->pcifn
= pcifn
;
3448 ablk
->cbarg
= cbarg
;
3449 ablk
->busy
= BFA_TRUE
;
3451 m
= (struct bfi_ablk_h2i_pf_req_s
*)ablk
->mb
.msg
;
3452 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_PF_CREATE
,
3453 bfa_ioc_portid(ablk
->ioc
));
3454 m
->pers
= cpu_to_be16((u16
)personality
);
3455 m
->bw_min
= cpu_to_be16(bw_min
);
3456 m
->bw_max
= cpu_to_be16(bw_max
);
3458 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3460 return BFA_STATUS_OK
;
3464 bfa_ablk_pf_delete(struct bfa_ablk_s
*ablk
, int pcifn
,
3465 bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3467 struct bfi_ablk_h2i_pf_req_s
*m
;
3469 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3470 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3471 return BFA_STATUS_IOC_FAILURE
;
3475 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3476 return BFA_STATUS_DEVBUSY
;
3480 ablk
->cbarg
= cbarg
;
3481 ablk
->busy
= BFA_TRUE
;
3483 m
= (struct bfi_ablk_h2i_pf_req_s
*)ablk
->mb
.msg
;
3484 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_PF_DELETE
,
3485 bfa_ioc_portid(ablk
->ioc
));
3486 m
->pcifn
= (u8
)pcifn
;
3487 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3489 return BFA_STATUS_OK
;
3493 bfa_ablk_adapter_config(struct bfa_ablk_s
*ablk
, enum bfa_mode_s mode
,
3494 int max_pf
, int max_vf
, bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3496 struct bfi_ablk_h2i_cfg_req_s
*m
;
3498 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3499 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3500 return BFA_STATUS_IOC_FAILURE
;
3504 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3505 return BFA_STATUS_DEVBUSY
;
3509 ablk
->cbarg
= cbarg
;
3510 ablk
->busy
= BFA_TRUE
;
3512 m
= (struct bfi_ablk_h2i_cfg_req_s
*)ablk
->mb
.msg
;
3513 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_ADPT_CONFIG
,
3514 bfa_ioc_portid(ablk
->ioc
));
3516 m
->max_pf
= (u8
)max_pf
;
3517 m
->max_vf
= (u8
)max_vf
;
3518 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3520 return BFA_STATUS_OK
;
3524 bfa_ablk_port_config(struct bfa_ablk_s
*ablk
, int port
, enum bfa_mode_s mode
,
3525 int max_pf
, int max_vf
, bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3527 struct bfi_ablk_h2i_cfg_req_s
*m
;
3529 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3530 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3531 return BFA_STATUS_IOC_FAILURE
;
3535 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3536 return BFA_STATUS_DEVBUSY
;
3540 ablk
->cbarg
= cbarg
;
3541 ablk
->busy
= BFA_TRUE
;
3543 m
= (struct bfi_ablk_h2i_cfg_req_s
*)ablk
->mb
.msg
;
3544 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_PORT_CONFIG
,
3545 bfa_ioc_portid(ablk
->ioc
));
3548 m
->max_pf
= (u8
)max_pf
;
3549 m
->max_vf
= (u8
)max_vf
;
3550 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3552 return BFA_STATUS_OK
;
3556 bfa_ablk_pf_update(struct bfa_ablk_s
*ablk
, int pcifn
, u16 bw_min
,
3557 u16 bw_max
, bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3559 struct bfi_ablk_h2i_pf_req_s
*m
;
3561 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3562 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3563 return BFA_STATUS_IOC_FAILURE
;
3567 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3568 return BFA_STATUS_DEVBUSY
;
3572 ablk
->cbarg
= cbarg
;
3573 ablk
->busy
= BFA_TRUE
;
3575 m
= (struct bfi_ablk_h2i_pf_req_s
*)ablk
->mb
.msg
;
3576 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_PF_UPDATE
,
3577 bfa_ioc_portid(ablk
->ioc
));
3578 m
->pcifn
= (u8
)pcifn
;
3579 m
->bw_min
= cpu_to_be16(bw_min
);
3580 m
->bw_max
= cpu_to_be16(bw_max
);
3581 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3583 return BFA_STATUS_OK
;
3587 bfa_ablk_optrom_en(struct bfa_ablk_s
*ablk
, bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3589 struct bfi_ablk_h2i_optrom_s
*m
;
3591 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3592 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3593 return BFA_STATUS_IOC_FAILURE
;
3597 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3598 return BFA_STATUS_DEVBUSY
;
3602 ablk
->cbarg
= cbarg
;
3603 ablk
->busy
= BFA_TRUE
;
3605 m
= (struct bfi_ablk_h2i_optrom_s
*)ablk
->mb
.msg
;
3606 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_OPTROM_ENABLE
,
3607 bfa_ioc_portid(ablk
->ioc
));
3608 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3610 return BFA_STATUS_OK
;
3614 bfa_ablk_optrom_dis(struct bfa_ablk_s
*ablk
, bfa_ablk_cbfn_t cbfn
, void *cbarg
)
3616 struct bfi_ablk_h2i_optrom_s
*m
;
3618 if (!bfa_ioc_is_operational(ablk
->ioc
)) {
3619 bfa_trc(ablk
->ioc
, BFA_STATUS_IOC_FAILURE
);
3620 return BFA_STATUS_IOC_FAILURE
;
3624 bfa_trc(ablk
->ioc
, BFA_STATUS_DEVBUSY
);
3625 return BFA_STATUS_DEVBUSY
;
3629 ablk
->cbarg
= cbarg
;
3630 ablk
->busy
= BFA_TRUE
;
3632 m
= (struct bfi_ablk_h2i_optrom_s
*)ablk
->mb
.msg
;
3633 bfi_h2i_set(m
->mh
, BFI_MC_ABLK
, BFI_ABLK_H2I_OPTROM_DISABLE
,
3634 bfa_ioc_portid(ablk
->ioc
));
3635 bfa_ioc_mbox_queue(ablk
->ioc
, &ablk
->mb
);
3637 return BFA_STATUS_OK
;
3641 * SFP module specific
3644 /* forward declarations */
3645 static void bfa_sfp_getdata_send(struct bfa_sfp_s
*sfp
);
3646 static void bfa_sfp_media_get(struct bfa_sfp_s
*sfp
);
3647 static bfa_status_t
bfa_sfp_speed_valid(struct bfa_sfp_s
*sfp
,
3648 enum bfa_port_speed portspeed
);
3651 bfa_cb_sfp_show(struct bfa_sfp_s
*sfp
)
3653 bfa_trc(sfp
, sfp
->lock
);
3655 sfp
->cbfn(sfp
->cbarg
, sfp
->status
);
3661 bfa_cb_sfp_state_query(struct bfa_sfp_s
*sfp
)
3663 bfa_trc(sfp
, sfp
->portspeed
);
3665 bfa_sfp_media_get(sfp
);
3666 if (sfp
->state_query_cbfn
)
3667 sfp
->state_query_cbfn(sfp
->state_query_cbarg
,
3672 if (sfp
->portspeed
) {
3673 sfp
->status
= bfa_sfp_speed_valid(sfp
, sfp
->portspeed
);
3674 if (sfp
->state_query_cbfn
)
3675 sfp
->state_query_cbfn(sfp
->state_query_cbarg
,
3677 sfp
->portspeed
= BFA_PORT_SPEED_UNKNOWN
;
3680 sfp
->state_query_lock
= 0;
3681 sfp
->state_query_cbfn
= NULL
;
3685 * IOC event handler.
3688 bfa_sfp_notify(void *sfp_arg
, enum bfa_ioc_event_e event
)
3690 struct bfa_sfp_s
*sfp
= sfp_arg
;
3692 bfa_trc(sfp
, event
);
3693 bfa_trc(sfp
, sfp
->lock
);
3694 bfa_trc(sfp
, sfp
->state_query_lock
);
3697 case BFA_IOC_E_DISABLED
:
3698 case BFA_IOC_E_FAILED
:
3700 sfp
->status
= BFA_STATUS_IOC_FAILURE
;
3701 bfa_cb_sfp_show(sfp
);
3704 if (sfp
->state_query_lock
) {
3705 sfp
->status
= BFA_STATUS_IOC_FAILURE
;
3706 bfa_cb_sfp_state_query(sfp
);
3716 * SFP's State Change Notification post to AEN
3719 bfa_sfp_scn_aen_post(struct bfa_sfp_s
*sfp
, struct bfi_sfp_scn_s
*rsp
)
3721 struct bfad_s
*bfad
= (struct bfad_s
*)sfp
->ioc
->bfa
->bfad
;
3722 struct bfa_aen_entry_s
*aen_entry
;
3723 enum bfa_port_aen_event aen_evt
= 0;
3725 bfa_trc(sfp
, (((u64
)rsp
->pomlvl
) << 16) | (((u64
)rsp
->sfpid
) << 8) |
3728 bfad_get_aen_entry(bfad
, aen_entry
);
3732 aen_entry
->aen_data
.port
.ioc_type
= bfa_ioc_get_type(sfp
->ioc
);
3733 aen_entry
->aen_data
.port
.pwwn
= sfp
->ioc
->attr
->pwwn
;
3734 aen_entry
->aen_data
.port
.mac
= bfa_ioc_get_mac(sfp
->ioc
);
3736 switch (rsp
->event
) {
3737 case BFA_SFP_SCN_INSERTED
:
3738 aen_evt
= BFA_PORT_AEN_SFP_INSERT
;
3740 case BFA_SFP_SCN_REMOVED
:
3741 aen_evt
= BFA_PORT_AEN_SFP_REMOVE
;
3743 case BFA_SFP_SCN_FAILED
:
3744 aen_evt
= BFA_PORT_AEN_SFP_ACCESS_ERROR
;
3746 case BFA_SFP_SCN_UNSUPPORT
:
3747 aen_evt
= BFA_PORT_AEN_SFP_UNSUPPORT
;
3749 case BFA_SFP_SCN_POM
:
3750 aen_evt
= BFA_PORT_AEN_SFP_POM
;
3751 aen_entry
->aen_data
.port
.level
= rsp
->pomlvl
;
3754 bfa_trc(sfp
, rsp
->event
);
3758 /* Send the AEN notification */
3759 bfad_im_post_vendor_event(aen_entry
, bfad
, ++sfp
->ioc
->ioc_aen_seq
,
3760 BFA_AEN_CAT_PORT
, aen_evt
);
3767 bfa_sfp_getdata_send(struct bfa_sfp_s
*sfp
)
3769 struct bfi_sfp_req_s
*req
= (struct bfi_sfp_req_s
*)sfp
->mbcmd
.msg
;
3771 bfa_trc(sfp
, req
->memtype
);
3773 /* build host command */
3774 bfi_h2i_set(req
->mh
, BFI_MC_SFP
, BFI_SFP_H2I_SHOW
,
3775 bfa_ioc_portid(sfp
->ioc
));
3778 bfa_ioc_mbox_queue(sfp
->ioc
, &sfp
->mbcmd
);
3782 * SFP is valid, read sfp data
3785 bfa_sfp_getdata(struct bfa_sfp_s
*sfp
, enum bfi_sfp_mem_e memtype
)
3787 struct bfi_sfp_req_s
*req
= (struct bfi_sfp_req_s
*)sfp
->mbcmd
.msg
;
3789 WARN_ON(sfp
->lock
!= 0);
3790 bfa_trc(sfp
, sfp
->state
);
3793 sfp
->memtype
= memtype
;
3794 req
->memtype
= memtype
;
3797 bfa_alen_set(&req
->alen
, sizeof(struct sfp_mem_s
), sfp
->dbuf_pa
);
3799 bfa_sfp_getdata_send(sfp
);
3806 bfa_sfp_scn(struct bfa_sfp_s
*sfp
, struct bfi_mbmsg_s
*msg
)
3808 struct bfi_sfp_scn_s
*rsp
= (struct bfi_sfp_scn_s
*) msg
;
3810 switch (rsp
->event
) {
3811 case BFA_SFP_SCN_INSERTED
:
3812 sfp
->state
= BFA_SFP_STATE_INSERTED
;
3813 sfp
->data_valid
= 0;
3814 bfa_sfp_scn_aen_post(sfp
, rsp
);
3816 case BFA_SFP_SCN_REMOVED
:
3817 sfp
->state
= BFA_SFP_STATE_REMOVED
;
3818 sfp
->data_valid
= 0;
3819 bfa_sfp_scn_aen_post(sfp
, rsp
);
3821 case BFA_SFP_SCN_FAILED
:
3822 sfp
->state
= BFA_SFP_STATE_FAILED
;
3823 sfp
->data_valid
= 0;
3824 bfa_sfp_scn_aen_post(sfp
, rsp
);
3826 case BFA_SFP_SCN_UNSUPPORT
:
3827 sfp
->state
= BFA_SFP_STATE_UNSUPPORT
;
3828 bfa_sfp_scn_aen_post(sfp
, rsp
);
3830 bfa_sfp_getdata(sfp
, BFI_SFP_MEM_ALL
);
3832 case BFA_SFP_SCN_POM
:
3833 bfa_sfp_scn_aen_post(sfp
, rsp
);
3835 case BFA_SFP_SCN_VALID
:
3836 sfp
->state
= BFA_SFP_STATE_VALID
;
3838 bfa_sfp_getdata(sfp
, BFI_SFP_MEM_ALL
);
3841 bfa_trc(sfp
, rsp
->event
);
3850 bfa_sfp_show_comp(struct bfa_sfp_s
*sfp
, struct bfi_mbmsg_s
*msg
)
3852 struct bfi_sfp_rsp_s
*rsp
= (struct bfi_sfp_rsp_s
*) msg
;
3856 * receiving response after ioc failure
3858 bfa_trc(sfp
, sfp
->lock
);
3862 bfa_trc(sfp
, rsp
->status
);
3863 if (rsp
->status
== BFA_STATUS_OK
) {
3864 sfp
->data_valid
= 1;
3865 if (sfp
->state
== BFA_SFP_STATE_VALID
)
3866 sfp
->status
= BFA_STATUS_OK
;
3867 else if (sfp
->state
== BFA_SFP_STATE_UNSUPPORT
)
3868 sfp
->status
= BFA_STATUS_SFP_UNSUPP
;
3870 bfa_trc(sfp
, sfp
->state
);
3872 sfp
->data_valid
= 0;
3873 sfp
->status
= rsp
->status
;
3874 /* sfpshow shouldn't change sfp state */
3877 bfa_trc(sfp
, sfp
->memtype
);
3878 if (sfp
->memtype
== BFI_SFP_MEM_DIAGEXT
) {
3879 bfa_trc(sfp
, sfp
->data_valid
);
3880 if (sfp
->data_valid
) {
3881 u32 size
= sizeof(struct sfp_mem_s
);
3882 u8
*des
= (u8
*)(sfp
->sfpmem
);
3883 memcpy(des
, sfp
->dbuf_kva
, size
);
3886 * Queue completion callback.
3888 bfa_cb_sfp_show(sfp
);
3892 bfa_trc(sfp
, sfp
->state_query_lock
);
3893 if (sfp
->state_query_lock
) {
3894 sfp
->state
= rsp
->state
;
3895 /* Complete callback */
3896 bfa_cb_sfp_state_query(sfp
);
3901 * SFP query fw sfp state
3904 bfa_sfp_state_query(struct bfa_sfp_s
*sfp
)
3906 struct bfi_sfp_req_s
*req
= (struct bfi_sfp_req_s
*)sfp
->mbcmd
.msg
;
3908 /* Should not be doing query if not in _INIT state */
3909 WARN_ON(sfp
->state
!= BFA_SFP_STATE_INIT
);
3910 WARN_ON(sfp
->state_query_lock
!= 0);
3911 bfa_trc(sfp
, sfp
->state
);
3913 sfp
->state_query_lock
= 1;
3917 bfa_sfp_getdata(sfp
, BFI_SFP_MEM_ALL
);
3921 bfa_sfp_media_get(struct bfa_sfp_s
*sfp
)
3923 enum bfa_defs_sfp_media_e
*media
= sfp
->media
;
3925 *media
= BFA_SFP_MEDIA_UNKNOWN
;
3927 if (sfp
->state
== BFA_SFP_STATE_UNSUPPORT
)
3928 *media
= BFA_SFP_MEDIA_UNSUPPORT
;
3929 else if (sfp
->state
== BFA_SFP_STATE_VALID
) {
3930 union sfp_xcvr_e10g_code_u e10g
;
3931 struct sfp_mem_s
*sfpmem
= (struct sfp_mem_s
*)sfp
->dbuf_kva
;
3932 u16 xmtr_tech
= (sfpmem
->srlid_base
.xcvr
[4] & 0x3) << 7 |
3933 (sfpmem
->srlid_base
.xcvr
[5] >> 1);
3935 e10g
.b
= sfpmem
->srlid_base
.xcvr
[0];
3936 bfa_trc(sfp
, e10g
.b
);
3937 bfa_trc(sfp
, xmtr_tech
);
3938 /* check fc transmitter tech */
3939 if ((xmtr_tech
& SFP_XMTR_TECH_CU
) ||
3940 (xmtr_tech
& SFP_XMTR_TECH_CP
) ||
3941 (xmtr_tech
& SFP_XMTR_TECH_CA
))
3942 *media
= BFA_SFP_MEDIA_CU
;
3943 else if ((xmtr_tech
& SFP_XMTR_TECH_EL_INTRA
) ||
3944 (xmtr_tech
& SFP_XMTR_TECH_EL_INTER
))
3945 *media
= BFA_SFP_MEDIA_EL
;
3946 else if ((xmtr_tech
& SFP_XMTR_TECH_LL
) ||
3947 (xmtr_tech
& SFP_XMTR_TECH_LC
))
3948 *media
= BFA_SFP_MEDIA_LW
;
3949 else if ((xmtr_tech
& SFP_XMTR_TECH_SL
) ||
3950 (xmtr_tech
& SFP_XMTR_TECH_SN
) ||
3951 (xmtr_tech
& SFP_XMTR_TECH_SA
))
3952 *media
= BFA_SFP_MEDIA_SW
;
3953 /* Check 10G Ethernet Compilance code */
3954 else if (e10g
.r
.e10g_sr
)
3955 *media
= BFA_SFP_MEDIA_SW
;
3956 else if (e10g
.r
.e10g_lrm
&& e10g
.r
.e10g_lr
)
3957 *media
= BFA_SFP_MEDIA_LW
;
3958 else if (e10g
.r
.e10g_unall
)
3959 *media
= BFA_SFP_MEDIA_UNKNOWN
;
3963 bfa_trc(sfp
, sfp
->state
);
3967 bfa_sfp_speed_valid(struct bfa_sfp_s
*sfp
, enum bfa_port_speed portspeed
)
3969 struct sfp_mem_s
*sfpmem
= (struct sfp_mem_s
*)sfp
->dbuf_kva
;
3970 struct sfp_xcvr_s
*xcvr
= (struct sfp_xcvr_s
*) sfpmem
->srlid_base
.xcvr
;
3971 union sfp_xcvr_fc3_code_u fc3
= xcvr
->fc3
;
3972 union sfp_xcvr_e10g_code_u e10g
= xcvr
->e10g
;
3974 if (portspeed
== BFA_PORT_SPEED_10GBPS
) {
3975 if (e10g
.r
.e10g_sr
|| e10g
.r
.e10g_lr
)
3976 return BFA_STATUS_OK
;
3978 bfa_trc(sfp
, e10g
.b
);
3979 return BFA_STATUS_UNSUPP_SPEED
;
3982 if (((portspeed
& BFA_PORT_SPEED_16GBPS
) && fc3
.r
.mb1600
) ||
3983 ((portspeed
& BFA_PORT_SPEED_8GBPS
) && fc3
.r
.mb800
) ||
3984 ((portspeed
& BFA_PORT_SPEED_4GBPS
) && fc3
.r
.mb400
) ||
3985 ((portspeed
& BFA_PORT_SPEED_2GBPS
) && fc3
.r
.mb200
) ||
3986 ((portspeed
& BFA_PORT_SPEED_1GBPS
) && fc3
.r
.mb100
))
3987 return BFA_STATUS_OK
;
3989 bfa_trc(sfp
, portspeed
);
3990 bfa_trc(sfp
, fc3
.b
);
3991 bfa_trc(sfp
, e10g
.b
);
3992 return BFA_STATUS_UNSUPP_SPEED
;
4000 bfa_sfp_intr(void *sfparg
, struct bfi_mbmsg_s
*msg
)
4002 struct bfa_sfp_s
*sfp
= sfparg
;
4004 switch (msg
->mh
.msg_id
) {
4005 case BFI_SFP_I2H_SHOW
:
4006 bfa_sfp_show_comp(sfp
, msg
);
4009 case BFI_SFP_I2H_SCN
:
4010 bfa_sfp_scn(sfp
, msg
);
4014 bfa_trc(sfp
, msg
->mh
.msg_id
);
4020 * Return DMA memory needed by sfp module.
4023 bfa_sfp_meminfo(void)
4025 return BFA_ROUNDUP(sizeof(struct sfp_mem_s
), BFA_DMA_ALIGN_SZ
);
4029 * Attach virtual and physical memory for SFP.
4032 bfa_sfp_attach(struct bfa_sfp_s
*sfp
, struct bfa_ioc_s
*ioc
, void *dev
,
4033 struct bfa_trc_mod_s
*trcmod
)
4037 sfp
->trcmod
= trcmod
;
4043 sfp
->data_valid
= 0;
4044 sfp
->state
= BFA_SFP_STATE_INIT
;
4045 sfp
->state_query_lock
= 0;
4046 sfp
->state_query_cbfn
= NULL
;
4047 sfp
->state_query_cbarg
= NULL
;
4049 sfp
->portspeed
= BFA_PORT_SPEED_UNKNOWN
;
4050 sfp
->is_elb
= BFA_FALSE
;
4052 bfa_ioc_mbox_regisr(sfp
->ioc
, BFI_MC_SFP
, bfa_sfp_intr
, sfp
);
4053 bfa_q_qe_init(&sfp
->ioc_notify
);
4054 bfa_ioc_notify_init(&sfp
->ioc_notify
, bfa_sfp_notify
, sfp
);
4055 list_add_tail(&sfp
->ioc_notify
.qe
, &sfp
->ioc
->notify_q
);
4059 * Claim Memory for SFP
4062 bfa_sfp_memclaim(struct bfa_sfp_s
*sfp
, u8
*dm_kva
, u64 dm_pa
)
4064 sfp
->dbuf_kva
= dm_kva
;
4065 sfp
->dbuf_pa
= dm_pa
;
4066 memset(sfp
->dbuf_kva
, 0, sizeof(struct sfp_mem_s
));
4068 dm_kva
+= BFA_ROUNDUP(sizeof(struct sfp_mem_s
), BFA_DMA_ALIGN_SZ
);
4069 dm_pa
+= BFA_ROUNDUP(sizeof(struct sfp_mem_s
), BFA_DMA_ALIGN_SZ
);
4073 * Show SFP eeprom content
4075 * @param[in] sfp - bfa sfp module
4077 * @param[out] sfpmem - sfp eeprom data
4081 bfa_sfp_show(struct bfa_sfp_s
*sfp
, struct sfp_mem_s
*sfpmem
,
4082 bfa_cb_sfp_t cbfn
, void *cbarg
)
4085 if (!bfa_ioc_is_operational(sfp
->ioc
)) {
4087 return BFA_STATUS_IOC_NON_OP
;
4092 return BFA_STATUS_DEVBUSY
;
4097 sfp
->sfpmem
= sfpmem
;
4099 bfa_sfp_getdata(sfp
, BFI_SFP_MEM_DIAGEXT
);
4100 return BFA_STATUS_OK
;
4104 * Return SFP Media type
4106 * @param[in] sfp - bfa sfp module
4108 * @param[out] media - port speed from user
4112 bfa_sfp_media(struct bfa_sfp_s
*sfp
, enum bfa_defs_sfp_media_e
*media
,
4113 bfa_cb_sfp_t cbfn
, void *cbarg
)
4115 if (!bfa_ioc_is_operational(sfp
->ioc
)) {
4117 return BFA_STATUS_IOC_NON_OP
;
4121 if (sfp
->state
== BFA_SFP_STATE_INIT
) {
4122 if (sfp
->state_query_lock
) {
4124 return BFA_STATUS_DEVBUSY
;
4126 sfp
->state_query_cbfn
= cbfn
;
4127 sfp
->state_query_cbarg
= cbarg
;
4128 bfa_sfp_state_query(sfp
);
4129 return BFA_STATUS_SFP_NOT_READY
;
4133 bfa_sfp_media_get(sfp
);
4134 return BFA_STATUS_OK
;
4138 * Check if user set port speed is allowed by the SFP
4140 * @param[in] sfp - bfa sfp module
4141 * @param[in] portspeed - port speed from user
4145 bfa_sfp_speed(struct bfa_sfp_s
*sfp
, enum bfa_port_speed portspeed
,
4146 bfa_cb_sfp_t cbfn
, void *cbarg
)
4148 WARN_ON(portspeed
== BFA_PORT_SPEED_UNKNOWN
);
4150 if (!bfa_ioc_is_operational(sfp
->ioc
))
4151 return BFA_STATUS_IOC_NON_OP
;
4153 /* For Mezz card, all speed is allowed */
4154 if (bfa_mfg_is_mezz(sfp
->ioc
->attr
->card_type
))
4155 return BFA_STATUS_OK
;
4157 /* Check SFP state */
4158 sfp
->portspeed
= portspeed
;
4159 if (sfp
->state
== BFA_SFP_STATE_INIT
) {
4160 if (sfp
->state_query_lock
) {
4162 return BFA_STATUS_DEVBUSY
;
4164 sfp
->state_query_cbfn
= cbfn
;
4165 sfp
->state_query_cbarg
= cbarg
;
4166 bfa_sfp_state_query(sfp
);
4167 return BFA_STATUS_SFP_NOT_READY
;
4171 if (sfp
->state
== BFA_SFP_STATE_REMOVED
||
4172 sfp
->state
== BFA_SFP_STATE_FAILED
) {
4173 bfa_trc(sfp
, sfp
->state
);
4174 return BFA_STATUS_NO_SFP_DEV
;
4177 if (sfp
->state
== BFA_SFP_STATE_INSERTED
) {
4178 bfa_trc(sfp
, sfp
->state
);
4179 return BFA_STATUS_DEVBUSY
; /* sfp is reading data */
4182 /* For eloopback, all speed is allowed */
4184 return BFA_STATUS_OK
;
4186 return bfa_sfp_speed_valid(sfp
, portspeed
);
4190 * Flash module specific
4194 * FLASH DMA buffer should be big enough to hold both MFG block and
4195 * asic block(64k) at the same time and also should be 2k aligned to
4196 * avoid write segement to cross sector boundary.
4198 #define BFA_FLASH_SEG_SZ 2048
4199 #define BFA_FLASH_DMA_BUF_SZ \
4200 BFA_ROUNDUP(0x010000 + sizeof(struct bfa_mfg_block_s), BFA_FLASH_SEG_SZ)
4203 bfa_flash_aen_audit_post(struct bfa_ioc_s
*ioc
, enum bfa_audit_aen_event event
,
4206 struct bfad_s
*bfad
= (struct bfad_s
*)ioc
->bfa
->bfad
;
4207 struct bfa_aen_entry_s
*aen_entry
;
4209 bfad_get_aen_entry(bfad
, aen_entry
);
4213 aen_entry
->aen_data
.audit
.pwwn
= ioc
->attr
->pwwn
;
4214 aen_entry
->aen_data
.audit
.partition_inst
= inst
;
4215 aen_entry
->aen_data
.audit
.partition_type
= type
;
4217 /* Send the AEN notification */
4218 bfad_im_post_vendor_event(aen_entry
, bfad
, ++ioc
->ioc_aen_seq
,
4219 BFA_AEN_CAT_AUDIT
, event
);
4223 bfa_flash_cb(struct bfa_flash_s
*flash
)
4227 flash
->cbfn(flash
->cbarg
, flash
->status
);
4231 bfa_flash_notify(void *cbarg
, enum bfa_ioc_event_e event
)
4233 struct bfa_flash_s
*flash
= cbarg
;
4235 bfa_trc(flash
, event
);
4237 case BFA_IOC_E_DISABLED
:
4238 case BFA_IOC_E_FAILED
:
4239 if (flash
->op_busy
) {
4240 flash
->status
= BFA_STATUS_IOC_FAILURE
;
4241 flash
->cbfn(flash
->cbarg
, flash
->status
);
4252 * Send flash attribute query request.
4254 * @param[in] cbarg - callback argument
4257 bfa_flash_query_send(void *cbarg
)
4259 struct bfa_flash_s
*flash
= cbarg
;
4260 struct bfi_flash_query_req_s
*msg
=
4261 (struct bfi_flash_query_req_s
*) flash
->mb
.msg
;
4263 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_QUERY_REQ
,
4264 bfa_ioc_portid(flash
->ioc
));
4265 bfa_alen_set(&msg
->alen
, sizeof(struct bfa_flash_attr_s
),
4267 bfa_ioc_mbox_queue(flash
->ioc
, &flash
->mb
);
4271 * Send flash write request.
4273 * @param[in] cbarg - callback argument
4276 bfa_flash_write_send(struct bfa_flash_s
*flash
)
4278 struct bfi_flash_write_req_s
*msg
=
4279 (struct bfi_flash_write_req_s
*) flash
->mb
.msg
;
4282 msg
->type
= be32_to_cpu(flash
->type
);
4283 msg
->instance
= flash
->instance
;
4284 msg
->offset
= be32_to_cpu(flash
->addr_off
+ flash
->offset
);
4285 len
= (flash
->residue
< BFA_FLASH_DMA_BUF_SZ
) ?
4286 flash
->residue
: BFA_FLASH_DMA_BUF_SZ
;
4287 msg
->length
= be32_to_cpu(len
);
4289 /* indicate if it's the last msg of the whole write operation */
4290 msg
->last
= (len
== flash
->residue
) ? 1 : 0;
4292 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_WRITE_REQ
,
4293 bfa_ioc_portid(flash
->ioc
));
4294 bfa_alen_set(&msg
->alen
, len
, flash
->dbuf_pa
);
4295 memcpy(flash
->dbuf_kva
, flash
->ubuf
+ flash
->offset
, len
);
4296 bfa_ioc_mbox_queue(flash
->ioc
, &flash
->mb
);
4298 flash
->residue
-= len
;
4299 flash
->offset
+= len
;
4303 * Send flash read request.
4305 * @param[in] cbarg - callback argument
4308 bfa_flash_read_send(void *cbarg
)
4310 struct bfa_flash_s
*flash
= cbarg
;
4311 struct bfi_flash_read_req_s
*msg
=
4312 (struct bfi_flash_read_req_s
*) flash
->mb
.msg
;
4315 msg
->type
= be32_to_cpu(flash
->type
);
4316 msg
->instance
= flash
->instance
;
4317 msg
->offset
= be32_to_cpu(flash
->addr_off
+ flash
->offset
);
4318 len
= (flash
->residue
< BFA_FLASH_DMA_BUF_SZ
) ?
4319 flash
->residue
: BFA_FLASH_DMA_BUF_SZ
;
4320 msg
->length
= be32_to_cpu(len
);
4321 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_READ_REQ
,
4322 bfa_ioc_portid(flash
->ioc
));
4323 bfa_alen_set(&msg
->alen
, len
, flash
->dbuf_pa
);
4324 bfa_ioc_mbox_queue(flash
->ioc
, &flash
->mb
);
4328 * Send flash erase request.
4330 * @param[in] cbarg - callback argument
4333 bfa_flash_erase_send(void *cbarg
)
4335 struct bfa_flash_s
*flash
= cbarg
;
4336 struct bfi_flash_erase_req_s
*msg
=
4337 (struct bfi_flash_erase_req_s
*) flash
->mb
.msg
;
4339 msg
->type
= be32_to_cpu(flash
->type
);
4340 msg
->instance
= flash
->instance
;
4341 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_ERASE_REQ
,
4342 bfa_ioc_portid(flash
->ioc
));
4343 bfa_ioc_mbox_queue(flash
->ioc
, &flash
->mb
);
4347 * Process flash response messages upon receiving interrupts.
4349 * @param[in] flasharg - flash structure
4350 * @param[in] msg - message structure
4353 bfa_flash_intr(void *flasharg
, struct bfi_mbmsg_s
*msg
)
4355 struct bfa_flash_s
*flash
= flasharg
;
4359 struct bfi_flash_query_rsp_s
*query
;
4360 struct bfi_flash_erase_rsp_s
*erase
;
4361 struct bfi_flash_write_rsp_s
*write
;
4362 struct bfi_flash_read_rsp_s
*read
;
4363 struct bfi_flash_event_s
*event
;
4364 struct bfi_mbmsg_s
*msg
;
4368 bfa_trc(flash
, msg
->mh
.msg_id
);
4370 if (!flash
->op_busy
&& msg
->mh
.msg_id
!= BFI_FLASH_I2H_EVENT
) {
4371 /* receiving response after ioc failure */
4372 bfa_trc(flash
, 0x9999);
4376 switch (msg
->mh
.msg_id
) {
4377 case BFI_FLASH_I2H_QUERY_RSP
:
4378 status
= be32_to_cpu(m
.query
->status
);
4379 bfa_trc(flash
, status
);
4380 if (status
== BFA_STATUS_OK
) {
4382 struct bfa_flash_attr_s
*attr
, *f
;
4384 attr
= (struct bfa_flash_attr_s
*) flash
->ubuf
;
4385 f
= (struct bfa_flash_attr_s
*) flash
->dbuf_kva
;
4386 attr
->status
= be32_to_cpu(f
->status
);
4387 attr
->npart
= be32_to_cpu(f
->npart
);
4388 bfa_trc(flash
, attr
->status
);
4389 bfa_trc(flash
, attr
->npart
);
4390 for (i
= 0; i
< attr
->npart
; i
++) {
4391 attr
->part
[i
].part_type
=
4392 be32_to_cpu(f
->part
[i
].part_type
);
4393 attr
->part
[i
].part_instance
=
4394 be32_to_cpu(f
->part
[i
].part_instance
);
4395 attr
->part
[i
].part_off
=
4396 be32_to_cpu(f
->part
[i
].part_off
);
4397 attr
->part
[i
].part_size
=
4398 be32_to_cpu(f
->part
[i
].part_size
);
4399 attr
->part
[i
].part_len
=
4400 be32_to_cpu(f
->part
[i
].part_len
);
4401 attr
->part
[i
].part_status
=
4402 be32_to_cpu(f
->part
[i
].part_status
);
4405 flash
->status
= status
;
4406 bfa_flash_cb(flash
);
4408 case BFI_FLASH_I2H_ERASE_RSP
:
4409 status
= be32_to_cpu(m
.erase
->status
);
4410 bfa_trc(flash
, status
);
4411 flash
->status
= status
;
4412 bfa_flash_cb(flash
);
4414 case BFI_FLASH_I2H_WRITE_RSP
:
4415 status
= be32_to_cpu(m
.write
->status
);
4416 bfa_trc(flash
, status
);
4417 if (status
!= BFA_STATUS_OK
|| flash
->residue
== 0) {
4418 flash
->status
= status
;
4419 bfa_flash_cb(flash
);
4421 bfa_trc(flash
, flash
->offset
);
4422 bfa_flash_write_send(flash
);
4425 case BFI_FLASH_I2H_READ_RSP
:
4426 status
= be32_to_cpu(m
.read
->status
);
4427 bfa_trc(flash
, status
);
4428 if (status
!= BFA_STATUS_OK
) {
4429 flash
->status
= status
;
4430 bfa_flash_cb(flash
);
4432 u32 len
= be32_to_cpu(m
.read
->length
);
4433 bfa_trc(flash
, flash
->offset
);
4434 bfa_trc(flash
, len
);
4435 memcpy(flash
->ubuf
+ flash
->offset
,
4436 flash
->dbuf_kva
, len
);
4437 flash
->residue
-= len
;
4438 flash
->offset
+= len
;
4439 if (flash
->residue
== 0) {
4440 flash
->status
= status
;
4441 bfa_flash_cb(flash
);
4443 bfa_flash_read_send(flash
);
4446 case BFI_FLASH_I2H_BOOT_VER_RSP
:
4448 case BFI_FLASH_I2H_EVENT
:
4449 status
= be32_to_cpu(m
.event
->status
);
4450 bfa_trc(flash
, status
);
4451 if (status
== BFA_STATUS_BAD_FWCFG
)
4452 bfa_ioc_aen_post(flash
->ioc
, BFA_IOC_AEN_FWCFG_ERROR
);
4453 else if (status
== BFA_STATUS_INVALID_VENDOR
) {
4455 param
= be32_to_cpu(m
.event
->param
);
4456 bfa_trc(flash
, param
);
4457 bfa_ioc_aen_post(flash
->ioc
,
4458 BFA_IOC_AEN_INVALID_VENDOR
);
4468 * Flash memory info API.
4470 * @param[in] mincfg - minimal cfg variable
4473 bfa_flash_meminfo(bfa_boolean_t mincfg
)
4475 /* min driver doesn't need flash */
4478 return BFA_ROUNDUP(BFA_FLASH_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
4484 * @param[in] flash - flash structure
4485 * @param[in] ioc - ioc structure
4486 * @param[in] dev - device structure
4487 * @param[in] trcmod - trace module
4488 * @param[in] logmod - log module
4491 bfa_flash_attach(struct bfa_flash_s
*flash
, struct bfa_ioc_s
*ioc
, void *dev
,
4492 struct bfa_trc_mod_s
*trcmod
, bfa_boolean_t mincfg
)
4495 flash
->trcmod
= trcmod
;
4497 flash
->cbarg
= NULL
;
4500 bfa_ioc_mbox_regisr(flash
->ioc
, BFI_MC_FLASH
, bfa_flash_intr
, flash
);
4501 bfa_q_qe_init(&flash
->ioc_notify
);
4502 bfa_ioc_notify_init(&flash
->ioc_notify
, bfa_flash_notify
, flash
);
4503 list_add_tail(&flash
->ioc_notify
.qe
, &flash
->ioc
->notify_q
);
4505 /* min driver doesn't need flash */
4507 flash
->dbuf_kva
= NULL
;
4513 * Claim memory for flash
4515 * @param[in] flash - flash structure
4516 * @param[in] dm_kva - pointer to virtual memory address
4517 * @param[in] dm_pa - physical memory address
4518 * @param[in] mincfg - minimal cfg variable
4521 bfa_flash_memclaim(struct bfa_flash_s
*flash
, u8
*dm_kva
, u64 dm_pa
,
4522 bfa_boolean_t mincfg
)
4527 flash
->dbuf_kva
= dm_kva
;
4528 flash
->dbuf_pa
= dm_pa
;
4529 memset(flash
->dbuf_kva
, 0, BFA_FLASH_DMA_BUF_SZ
);
4530 dm_kva
+= BFA_ROUNDUP(BFA_FLASH_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
4531 dm_pa
+= BFA_ROUNDUP(BFA_FLASH_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
4535 * Get flash attribute.
4537 * @param[in] flash - flash structure
4538 * @param[in] attr - flash attribute structure
4539 * @param[in] cbfn - callback function
4540 * @param[in] cbarg - callback argument
4545 bfa_flash_get_attr(struct bfa_flash_s
*flash
, struct bfa_flash_attr_s
*attr
,
4546 bfa_cb_flash_t cbfn
, void *cbarg
)
4548 bfa_trc(flash
, BFI_FLASH_H2I_QUERY_REQ
);
4550 if (!bfa_ioc_is_operational(flash
->ioc
))
4551 return BFA_STATUS_IOC_NON_OP
;
4553 if (flash
->op_busy
) {
4554 bfa_trc(flash
, flash
->op_busy
);
4555 return BFA_STATUS_DEVBUSY
;
4560 flash
->cbarg
= cbarg
;
4561 flash
->ubuf
= (u8
*) attr
;
4562 bfa_flash_query_send(flash
);
4564 return BFA_STATUS_OK
;
4568 * Erase flash partition.
4570 * @param[in] flash - flash structure
4571 * @param[in] type - flash partition type
4572 * @param[in] instance - flash partition instance
4573 * @param[in] cbfn - callback function
4574 * @param[in] cbarg - callback argument
4579 bfa_flash_erase_part(struct bfa_flash_s
*flash
, enum bfa_flash_part_type type
,
4580 u8 instance
, bfa_cb_flash_t cbfn
, void *cbarg
)
4582 bfa_trc(flash
, BFI_FLASH_H2I_ERASE_REQ
);
4583 bfa_trc(flash
, type
);
4584 bfa_trc(flash
, instance
);
4586 if (!bfa_ioc_is_operational(flash
->ioc
))
4587 return BFA_STATUS_IOC_NON_OP
;
4589 if (flash
->op_busy
) {
4590 bfa_trc(flash
, flash
->op_busy
);
4591 return BFA_STATUS_DEVBUSY
;
4596 flash
->cbarg
= cbarg
;
4598 flash
->instance
= instance
;
4600 bfa_flash_erase_send(flash
);
4601 bfa_flash_aen_audit_post(flash
->ioc
, BFA_AUDIT_AEN_FLASH_ERASE
,
4603 return BFA_STATUS_OK
;
4607 * Update flash partition.
4609 * @param[in] flash - flash structure
4610 * @param[in] type - flash partition type
4611 * @param[in] instance - flash partition instance
4612 * @param[in] buf - update data buffer
4613 * @param[in] len - data buffer length
4614 * @param[in] offset - offset relative to the partition starting address
4615 * @param[in] cbfn - callback function
4616 * @param[in] cbarg - callback argument
4621 bfa_flash_update_part(struct bfa_flash_s
*flash
, enum bfa_flash_part_type type
,
4622 u8 instance
, void *buf
, u32 len
, u32 offset
,
4623 bfa_cb_flash_t cbfn
, void *cbarg
)
4625 bfa_trc(flash
, BFI_FLASH_H2I_WRITE_REQ
);
4626 bfa_trc(flash
, type
);
4627 bfa_trc(flash
, instance
);
4628 bfa_trc(flash
, len
);
4629 bfa_trc(flash
, offset
);
4631 if (!bfa_ioc_is_operational(flash
->ioc
))
4632 return BFA_STATUS_IOC_NON_OP
;
4635 * 'len' must be in word (4-byte) boundary
4636 * 'offset' must be in sector (16kb) boundary
4638 if (!len
|| (len
& 0x03) || (offset
& 0x00003FFF))
4639 return BFA_STATUS_FLASH_BAD_LEN
;
4641 if (type
== BFA_FLASH_PART_MFG
)
4642 return BFA_STATUS_EINVAL
;
4644 if (flash
->op_busy
) {
4645 bfa_trc(flash
, flash
->op_busy
);
4646 return BFA_STATUS_DEVBUSY
;
4651 flash
->cbarg
= cbarg
;
4653 flash
->instance
= instance
;
4654 flash
->residue
= len
;
4656 flash
->addr_off
= offset
;
4659 bfa_flash_write_send(flash
);
4660 return BFA_STATUS_OK
;
4664 * Read flash partition.
4666 * @param[in] flash - flash structure
4667 * @param[in] type - flash partition type
4668 * @param[in] instance - flash partition instance
4669 * @param[in] buf - read data buffer
4670 * @param[in] len - data buffer length
4671 * @param[in] offset - offset relative to the partition starting address
4672 * @param[in] cbfn - callback function
4673 * @param[in] cbarg - callback argument
4678 bfa_flash_read_part(struct bfa_flash_s
*flash
, enum bfa_flash_part_type type
,
4679 u8 instance
, void *buf
, u32 len
, u32 offset
,
4680 bfa_cb_flash_t cbfn
, void *cbarg
)
4682 bfa_trc(flash
, BFI_FLASH_H2I_READ_REQ
);
4683 bfa_trc(flash
, type
);
4684 bfa_trc(flash
, instance
);
4685 bfa_trc(flash
, len
);
4686 bfa_trc(flash
, offset
);
4688 if (!bfa_ioc_is_operational(flash
->ioc
))
4689 return BFA_STATUS_IOC_NON_OP
;
4692 * 'len' must be in word (4-byte) boundary
4693 * 'offset' must be in sector (16kb) boundary
4695 if (!len
|| (len
& 0x03) || (offset
& 0x00003FFF))
4696 return BFA_STATUS_FLASH_BAD_LEN
;
4698 if (flash
->op_busy
) {
4699 bfa_trc(flash
, flash
->op_busy
);
4700 return BFA_STATUS_DEVBUSY
;
4705 flash
->cbarg
= cbarg
;
4707 flash
->instance
= instance
;
4708 flash
->residue
= len
;
4710 flash
->addr_off
= offset
;
4712 bfa_flash_read_send(flash
);
4714 return BFA_STATUS_OK
;
4718 * DIAG module specific
4721 #define BFA_DIAG_MEMTEST_TOV 50000 /* memtest timeout in msec */
4722 #define CT2_BFA_DIAG_MEMTEST_TOV (9*30*1000) /* 4.5 min */
4724 /* IOC event handler */
4726 bfa_diag_notify(void *diag_arg
, enum bfa_ioc_event_e event
)
4728 struct bfa_diag_s
*diag
= diag_arg
;
4730 bfa_trc(diag
, event
);
4731 bfa_trc(diag
, diag
->block
);
4732 bfa_trc(diag
, diag
->fwping
.lock
);
4733 bfa_trc(diag
, diag
->tsensor
.lock
);
4736 case BFA_IOC_E_DISABLED
:
4737 case BFA_IOC_E_FAILED
:
4738 if (diag
->fwping
.lock
) {
4739 diag
->fwping
.status
= BFA_STATUS_IOC_FAILURE
;
4740 diag
->fwping
.cbfn(diag
->fwping
.cbarg
,
4741 diag
->fwping
.status
);
4742 diag
->fwping
.lock
= 0;
4745 if (diag
->tsensor
.lock
) {
4746 diag
->tsensor
.status
= BFA_STATUS_IOC_FAILURE
;
4747 diag
->tsensor
.cbfn(diag
->tsensor
.cbarg
,
4748 diag
->tsensor
.status
);
4749 diag
->tsensor
.lock
= 0;
4753 if (diag
->timer_active
) {
4754 bfa_timer_stop(&diag
->timer
);
4755 diag
->timer_active
= 0;
4758 diag
->status
= BFA_STATUS_IOC_FAILURE
;
4759 diag
->cbfn(diag
->cbarg
, diag
->status
);
4770 bfa_diag_memtest_done(void *cbarg
)
4772 struct bfa_diag_s
*diag
= cbarg
;
4773 struct bfa_ioc_s
*ioc
= diag
->ioc
;
4774 struct bfa_diag_memtest_result
*res
= diag
->result
;
4775 u32 loff
= BFI_BOOT_MEMTEST_RES_ADDR
;
4776 u32 pgnum
, pgoff
, i
;
4778 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, loff
);
4779 pgoff
= PSS_SMEM_PGOFF(loff
);
4781 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
4783 for (i
= 0; i
< (sizeof(struct bfa_diag_memtest_result
) /
4784 sizeof(u32
)); i
++) {
4785 /* read test result from smem */
4786 *((u32
*) res
+ i
) =
4787 bfa_mem_read(ioc
->ioc_regs
.smem_page_start
, loff
);
4788 loff
+= sizeof(u32
);
4791 /* Reset IOC fwstates to BFI_IOC_UNINIT */
4792 bfa_ioc_reset_fwstate(ioc
);
4794 res
->status
= swab32(res
->status
);
4795 bfa_trc(diag
, res
->status
);
4797 if (res
->status
== BFI_BOOT_MEMTEST_RES_SIG
)
4798 diag
->status
= BFA_STATUS_OK
;
4800 diag
->status
= BFA_STATUS_MEMTEST_FAILED
;
4801 res
->addr
= swab32(res
->addr
);
4802 res
->exp
= swab32(res
->exp
);
4803 res
->act
= swab32(res
->act
);
4804 res
->err_status
= swab32(res
->err_status
);
4805 res
->err_status1
= swab32(res
->err_status1
);
4806 res
->err_addr
= swab32(res
->err_addr
);
4807 bfa_trc(diag
, res
->addr
);
4808 bfa_trc(diag
, res
->exp
);
4809 bfa_trc(diag
, res
->act
);
4810 bfa_trc(diag
, res
->err_status
);
4811 bfa_trc(diag
, res
->err_status1
);
4812 bfa_trc(diag
, res
->err_addr
);
4814 diag
->timer_active
= 0;
4815 diag
->cbfn(diag
->cbarg
, diag
->status
);
4824 * Perform DMA test directly
4827 diag_fwping_send(struct bfa_diag_s
*diag
)
4829 struct bfi_diag_fwping_req_s
*fwping_req
;
4832 bfa_trc(diag
, diag
->fwping
.dbuf_pa
);
4834 /* fill DMA area with pattern */
4835 for (i
= 0; i
< (BFI_DIAG_DMA_BUF_SZ
>> 2); i
++)
4836 *((u32
*)diag
->fwping
.dbuf_kva
+ i
) = diag
->fwping
.data
;
4839 fwping_req
= (struct bfi_diag_fwping_req_s
*)diag
->fwping
.mbcmd
.msg
;
4842 bfa_alen_set(&fwping_req
->alen
, BFI_DIAG_DMA_BUF_SZ
,
4843 diag
->fwping
.dbuf_pa
);
4844 /* Set up dma count */
4845 fwping_req
->count
= cpu_to_be32(diag
->fwping
.count
);
4846 /* Set up data pattern */
4847 fwping_req
->data
= diag
->fwping
.data
;
4849 /* build host command */
4850 bfi_h2i_set(fwping_req
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_FWPING
,
4851 bfa_ioc_portid(diag
->ioc
));
4854 bfa_ioc_mbox_queue(diag
->ioc
, &diag
->fwping
.mbcmd
);
4858 diag_fwping_comp(struct bfa_diag_s
*diag
,
4859 struct bfi_diag_fwping_rsp_s
*diag_rsp
)
4861 u32 rsp_data
= diag_rsp
->data
;
4862 u8 rsp_dma_status
= diag_rsp
->dma_status
;
4864 bfa_trc(diag
, rsp_data
);
4865 bfa_trc(diag
, rsp_dma_status
);
4867 if (rsp_dma_status
== BFA_STATUS_OK
) {
4869 pat
= (diag
->fwping
.count
& 0x1) ? ~(diag
->fwping
.data
) :
4871 /* Check mbox data */
4872 if (diag
->fwping
.data
!= rsp_data
) {
4873 bfa_trc(diag
, rsp_data
);
4874 diag
->fwping
.result
->dmastatus
=
4875 BFA_STATUS_DATACORRUPTED
;
4876 diag
->fwping
.status
= BFA_STATUS_DATACORRUPTED
;
4877 diag
->fwping
.cbfn(diag
->fwping
.cbarg
,
4878 diag
->fwping
.status
);
4879 diag
->fwping
.lock
= 0;
4882 /* Check dma pattern */
4883 for (i
= 0; i
< (BFI_DIAG_DMA_BUF_SZ
>> 2); i
++) {
4884 if (*((u32
*)diag
->fwping
.dbuf_kva
+ i
) != pat
) {
4888 *((u32
*)diag
->fwping
.dbuf_kva
+ i
));
4889 diag
->fwping
.result
->dmastatus
=
4890 BFA_STATUS_DATACORRUPTED
;
4891 diag
->fwping
.status
= BFA_STATUS_DATACORRUPTED
;
4892 diag
->fwping
.cbfn(diag
->fwping
.cbarg
,
4893 diag
->fwping
.status
);
4894 diag
->fwping
.lock
= 0;
4898 diag
->fwping
.result
->dmastatus
= BFA_STATUS_OK
;
4899 diag
->fwping
.status
= BFA_STATUS_OK
;
4900 diag
->fwping
.cbfn(diag
->fwping
.cbarg
, diag
->fwping
.status
);
4901 diag
->fwping
.lock
= 0;
4903 diag
->fwping
.status
= BFA_STATUS_HDMA_FAILED
;
4904 diag
->fwping
.cbfn(diag
->fwping
.cbarg
, diag
->fwping
.status
);
4905 diag
->fwping
.lock
= 0;
4910 * Temperature Sensor
4914 diag_tempsensor_send(struct bfa_diag_s
*diag
)
4916 struct bfi_diag_ts_req_s
*msg
;
4918 msg
= (struct bfi_diag_ts_req_s
*)diag
->tsensor
.mbcmd
.msg
;
4919 bfa_trc(diag
, msg
->temp
);
4920 /* build host command */
4921 bfi_h2i_set(msg
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_TEMPSENSOR
,
4922 bfa_ioc_portid(diag
->ioc
));
4924 bfa_ioc_mbox_queue(diag
->ioc
, &diag
->tsensor
.mbcmd
);
4928 diag_tempsensor_comp(struct bfa_diag_s
*diag
, bfi_diag_ts_rsp_t
*rsp
)
4930 if (!diag
->tsensor
.lock
) {
4931 /* receiving response after ioc failure */
4932 bfa_trc(diag
, diag
->tsensor
.lock
);
4937 * ASIC junction tempsensor is a reg read operation
4938 * it will always return OK
4940 diag
->tsensor
.temp
->temp
= be16_to_cpu(rsp
->temp
);
4941 diag
->tsensor
.temp
->ts_junc
= rsp
->ts_junc
;
4942 diag
->tsensor
.temp
->ts_brd
= rsp
->ts_brd
;
4945 /* tsensor.temp->status is brd_temp status */
4946 diag
->tsensor
.temp
->status
= rsp
->status
;
4947 if (rsp
->status
== BFA_STATUS_OK
) {
4948 diag
->tsensor
.temp
->brd_temp
=
4949 be16_to_cpu(rsp
->brd_temp
);
4951 diag
->tsensor
.temp
->brd_temp
= 0;
4954 bfa_trc(diag
, rsp
->status
);
4955 bfa_trc(diag
, rsp
->ts_junc
);
4956 bfa_trc(diag
, rsp
->temp
);
4957 bfa_trc(diag
, rsp
->ts_brd
);
4958 bfa_trc(diag
, rsp
->brd_temp
);
4960 /* tsensor status is always good bcos we always have junction temp */
4961 diag
->tsensor
.status
= BFA_STATUS_OK
;
4962 diag
->tsensor
.cbfn(diag
->tsensor
.cbarg
, diag
->tsensor
.status
);
4963 diag
->tsensor
.lock
= 0;
4970 diag_ledtest_send(struct bfa_diag_s
*diag
, struct bfa_diag_ledtest_s
*ledtest
)
4972 struct bfi_diag_ledtest_req_s
*msg
;
4974 msg
= (struct bfi_diag_ledtest_req_s
*)diag
->ledtest
.mbcmd
.msg
;
4975 /* build host command */
4976 bfi_h2i_set(msg
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_LEDTEST
,
4977 bfa_ioc_portid(diag
->ioc
));
4980 * convert the freq from N blinks per 10 sec to
4981 * crossbow ontime value. We do it here because division is need
4984 ledtest
->freq
= 500 / ledtest
->freq
;
4986 if (ledtest
->freq
== 0)
4989 bfa_trc(diag
, ledtest
->freq
);
4990 /* mcpy(&ledtest_req->req, ledtest, sizeof(bfa_diag_ledtest_t)); */
4991 msg
->cmd
= (u8
) ledtest
->cmd
;
4992 msg
->color
= (u8
) ledtest
->color
;
4993 msg
->portid
= bfa_ioc_portid(diag
->ioc
);
4994 msg
->led
= ledtest
->led
;
4995 msg
->freq
= cpu_to_be16(ledtest
->freq
);
4998 bfa_ioc_mbox_queue(diag
->ioc
, &diag
->ledtest
.mbcmd
);
5002 diag_ledtest_comp(struct bfa_diag_s
*diag
, struct bfi_diag_ledtest_rsp_s
*msg
)
5004 bfa_trc(diag
, diag
->ledtest
.lock
);
5005 diag
->ledtest
.lock
= BFA_FALSE
;
5006 /* no bfa_cb_queue is needed because driver is not waiting */
5013 diag_portbeacon_send(struct bfa_diag_s
*diag
, bfa_boolean_t beacon
, u32 sec
)
5015 struct bfi_diag_portbeacon_req_s
*msg
;
5017 msg
= (struct bfi_diag_portbeacon_req_s
*)diag
->beacon
.mbcmd
.msg
;
5018 /* build host command */
5019 bfi_h2i_set(msg
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_PORTBEACON
,
5020 bfa_ioc_portid(diag
->ioc
));
5021 msg
->beacon
= beacon
;
5022 msg
->period
= cpu_to_be32(sec
);
5024 bfa_ioc_mbox_queue(diag
->ioc
, &diag
->beacon
.mbcmd
);
5028 diag_portbeacon_comp(struct bfa_diag_s
*diag
)
5030 bfa_trc(diag
, diag
->beacon
.state
);
5031 diag
->beacon
.state
= BFA_FALSE
;
5032 if (diag
->cbfn_beacon
)
5033 diag
->cbfn_beacon(diag
->dev
, BFA_FALSE
, diag
->beacon
.link_e2e
);
5037 * Diag hmbox handler
5040 bfa_diag_intr(void *diagarg
, struct bfi_mbmsg_s
*msg
)
5042 struct bfa_diag_s
*diag
= diagarg
;
5044 switch (msg
->mh
.msg_id
) {
5045 case BFI_DIAG_I2H_PORTBEACON
:
5046 diag_portbeacon_comp(diag
);
5048 case BFI_DIAG_I2H_FWPING
:
5049 diag_fwping_comp(diag
, (struct bfi_diag_fwping_rsp_s
*) msg
);
5051 case BFI_DIAG_I2H_TEMPSENSOR
:
5052 diag_tempsensor_comp(diag
, (bfi_diag_ts_rsp_t
*) msg
);
5054 case BFI_DIAG_I2H_LEDTEST
:
5055 diag_ledtest_comp(diag
, (struct bfi_diag_ledtest_rsp_s
*) msg
);
5058 bfa_trc(diag
, msg
->mh
.msg_id
);
5066 * @param[in] *diag - diag data struct
5067 * @param[in] *memtest - mem test params input from upper layer,
5068 * @param[in] pattern - mem test pattern
5069 * @param[in] *result - mem test result
5070 * @param[in] cbfn - mem test callback functioin
5071 * @param[in] cbarg - callback functioin arg
5076 bfa_diag_memtest(struct bfa_diag_s
*diag
, struct bfa_diag_memtest_s
*memtest
,
5077 u32 pattern
, struct bfa_diag_memtest_result
*result
,
5078 bfa_cb_diag_t cbfn
, void *cbarg
)
5082 bfa_trc(diag
, pattern
);
5084 if (!bfa_ioc_adapter_is_disabled(diag
->ioc
))
5085 return BFA_STATUS_ADAPTER_ENABLED
;
5087 /* check to see if there is another destructive diag cmd running */
5089 bfa_trc(diag
, diag
->block
);
5090 return BFA_STATUS_DEVBUSY
;
5094 diag
->result
= result
;
5096 diag
->cbarg
= cbarg
;
5098 /* download memtest code and take LPU0 out of reset */
5099 bfa_ioc_boot(diag
->ioc
, BFI_FWBOOT_TYPE_MEMTEST
, BFI_FWBOOT_ENV_OS
);
5101 memtest_tov
= (bfa_ioc_asic_gen(diag
->ioc
) == BFI_ASIC_GEN_CT2
) ?
5102 CT2_BFA_DIAG_MEMTEST_TOV
: BFA_DIAG_MEMTEST_TOV
;
5103 bfa_timer_begin(diag
->ioc
->timer_mod
, &diag
->timer
,
5104 bfa_diag_memtest_done
, diag
, memtest_tov
);
5105 diag
->timer_active
= 1;
5106 return BFA_STATUS_OK
;
5110 * DIAG firmware ping command
5112 * @param[in] *diag - diag data struct
5113 * @param[in] cnt - dma loop count for testing PCIE
5114 * @param[in] data - data pattern to pass in fw
5115 * @param[in] *result - pt to bfa_diag_fwping_result_t data struct
5116 * @param[in] cbfn - callback function
5117 * @param[in] *cbarg - callback functioin arg
5122 bfa_diag_fwping(struct bfa_diag_s
*diag
, u32 cnt
, u32 data
,
5123 struct bfa_diag_results_fwping
*result
, bfa_cb_diag_t cbfn
,
5127 bfa_trc(diag
, data
);
5129 if (!bfa_ioc_is_operational(diag
->ioc
))
5130 return BFA_STATUS_IOC_NON_OP
;
5132 if (bfa_asic_id_ct2(bfa_ioc_devid((diag
->ioc
))) &&
5133 ((diag
->ioc
)->clscode
== BFI_PCIFN_CLASS_ETH
))
5134 return BFA_STATUS_CMD_NOTSUPP
;
5136 /* check to see if there is another destructive diag cmd running */
5137 if (diag
->block
|| diag
->fwping
.lock
) {
5138 bfa_trc(diag
, diag
->block
);
5139 bfa_trc(diag
, diag
->fwping
.lock
);
5140 return BFA_STATUS_DEVBUSY
;
5143 /* Initialization */
5144 diag
->fwping
.lock
= 1;
5145 diag
->fwping
.cbfn
= cbfn
;
5146 diag
->fwping
.cbarg
= cbarg
;
5147 diag
->fwping
.result
= result
;
5148 diag
->fwping
.data
= data
;
5149 diag
->fwping
.count
= cnt
;
5151 /* Init test results */
5152 diag
->fwping
.result
->data
= 0;
5153 diag
->fwping
.result
->status
= BFA_STATUS_OK
;
5155 /* kick off the first ping */
5156 diag_fwping_send(diag
);
5157 return BFA_STATUS_OK
;
5161 * Read Temperature Sensor
5163 * @param[in] *diag - diag data struct
5164 * @param[in] *result - pt to bfa_diag_temp_t data struct
5165 * @param[in] cbfn - callback function
5166 * @param[in] *cbarg - callback functioin arg
5171 bfa_diag_tsensor_query(struct bfa_diag_s
*diag
,
5172 struct bfa_diag_results_tempsensor_s
*result
,
5173 bfa_cb_diag_t cbfn
, void *cbarg
)
5175 /* check to see if there is a destructive diag cmd running */
5176 if (diag
->block
|| diag
->tsensor
.lock
) {
5177 bfa_trc(diag
, diag
->block
);
5178 bfa_trc(diag
, diag
->tsensor
.lock
);
5179 return BFA_STATUS_DEVBUSY
;
5182 if (!bfa_ioc_is_operational(diag
->ioc
))
5183 return BFA_STATUS_IOC_NON_OP
;
5185 /* Init diag mod params */
5186 diag
->tsensor
.lock
= 1;
5187 diag
->tsensor
.temp
= result
;
5188 diag
->tsensor
.cbfn
= cbfn
;
5189 diag
->tsensor
.cbarg
= cbarg
;
5190 diag
->tsensor
.status
= BFA_STATUS_OK
;
5192 /* Send msg to fw */
5193 diag_tempsensor_send(diag
);
5195 return BFA_STATUS_OK
;
5201 * @param[in] *diag - diag data struct
5202 * @param[in] *ledtest - pt to ledtest data structure
5207 bfa_diag_ledtest(struct bfa_diag_s
*diag
, struct bfa_diag_ledtest_s
*ledtest
)
5209 bfa_trc(diag
, ledtest
->cmd
);
5211 if (!bfa_ioc_is_operational(diag
->ioc
))
5212 return BFA_STATUS_IOC_NON_OP
;
5214 if (diag
->beacon
.state
)
5215 return BFA_STATUS_BEACON_ON
;
5217 if (diag
->ledtest
.lock
)
5218 return BFA_STATUS_LEDTEST_OP
;
5220 /* Send msg to fw */
5221 diag
->ledtest
.lock
= BFA_TRUE
;
5222 diag_ledtest_send(diag
, ledtest
);
5224 return BFA_STATUS_OK
;
5228 * Port beaconing command
5230 * @param[in] *diag - diag data struct
5231 * @param[in] beacon - port beaconing 1:ON 0:OFF
5232 * @param[in] link_e2e_beacon - link beaconing 1:ON 0:OFF
5233 * @param[in] sec - beaconing duration in seconds
5238 bfa_diag_beacon_port(struct bfa_diag_s
*diag
, bfa_boolean_t beacon
,
5239 bfa_boolean_t link_e2e_beacon
, uint32_t sec
)
5241 bfa_trc(diag
, beacon
);
5242 bfa_trc(diag
, link_e2e_beacon
);
5245 if (!bfa_ioc_is_operational(diag
->ioc
))
5246 return BFA_STATUS_IOC_NON_OP
;
5248 if (diag
->ledtest
.lock
)
5249 return BFA_STATUS_LEDTEST_OP
;
5251 if (diag
->beacon
.state
&& beacon
) /* beacon alread on */
5252 return BFA_STATUS_BEACON_ON
;
5254 diag
->beacon
.state
= beacon
;
5255 diag
->beacon
.link_e2e
= link_e2e_beacon
;
5256 if (diag
->cbfn_beacon
)
5257 diag
->cbfn_beacon(diag
->dev
, beacon
, link_e2e_beacon
);
5259 /* Send msg to fw */
5260 diag_portbeacon_send(diag
, beacon
, sec
);
5262 return BFA_STATUS_OK
;
5266 * Return DMA memory needed by diag module.
5269 bfa_diag_meminfo(void)
5271 return BFA_ROUNDUP(BFI_DIAG_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
5275 * Attach virtual and physical memory for Diag.
5278 bfa_diag_attach(struct bfa_diag_s
*diag
, struct bfa_ioc_s
*ioc
, void *dev
,
5279 bfa_cb_diag_beacon_t cbfn_beacon
, struct bfa_trc_mod_s
*trcmod
)
5283 diag
->trcmod
= trcmod
;
5288 diag
->result
= NULL
;
5289 diag
->cbfn_beacon
= cbfn_beacon
;
5291 bfa_ioc_mbox_regisr(diag
->ioc
, BFI_MC_DIAG
, bfa_diag_intr
, diag
);
5292 bfa_q_qe_init(&diag
->ioc_notify
);
5293 bfa_ioc_notify_init(&diag
->ioc_notify
, bfa_diag_notify
, diag
);
5294 list_add_tail(&diag
->ioc_notify
.qe
, &diag
->ioc
->notify_q
);
5298 bfa_diag_memclaim(struct bfa_diag_s
*diag
, u8
*dm_kva
, u64 dm_pa
)
5300 diag
->fwping
.dbuf_kva
= dm_kva
;
5301 diag
->fwping
.dbuf_pa
= dm_pa
;
5302 memset(diag
->fwping
.dbuf_kva
, 0, BFI_DIAG_DMA_BUF_SZ
);
5306 * PHY module specific
5308 #define BFA_PHY_DMA_BUF_SZ 0x02000 /* 8k dma buffer */
5309 #define BFA_PHY_LOCK_STATUS 0x018878 /* phy semaphore status reg */
5312 bfa_phy_ntoh32(u32
*obuf
, u32
*ibuf
, int sz
)
5316 for (i
= 0; i
< m
; i
++)
5317 obuf
[i
] = be32_to_cpu(ibuf
[i
]);
5320 static bfa_boolean_t
5321 bfa_phy_present(struct bfa_phy_s
*phy
)
5323 return (phy
->ioc
->attr
->card_type
== BFA_MFG_TYPE_LIGHTNING
);
5327 bfa_phy_notify(void *cbarg
, enum bfa_ioc_event_e event
)
5329 struct bfa_phy_s
*phy
= cbarg
;
5331 bfa_trc(phy
, event
);
5334 case BFA_IOC_E_DISABLED
:
5335 case BFA_IOC_E_FAILED
:
5337 phy
->status
= BFA_STATUS_IOC_FAILURE
;
5338 phy
->cbfn(phy
->cbarg
, phy
->status
);
5349 * Send phy attribute query request.
5351 * @param[in] cbarg - callback argument
5354 bfa_phy_query_send(void *cbarg
)
5356 struct bfa_phy_s
*phy
= cbarg
;
5357 struct bfi_phy_query_req_s
*msg
=
5358 (struct bfi_phy_query_req_s
*) phy
->mb
.msg
;
5360 msg
->instance
= phy
->instance
;
5361 bfi_h2i_set(msg
->mh
, BFI_MC_PHY
, BFI_PHY_H2I_QUERY_REQ
,
5362 bfa_ioc_portid(phy
->ioc
));
5363 bfa_alen_set(&msg
->alen
, sizeof(struct bfa_phy_attr_s
), phy
->dbuf_pa
);
5364 bfa_ioc_mbox_queue(phy
->ioc
, &phy
->mb
);
5368 * Send phy write request.
5370 * @param[in] cbarg - callback argument
5373 bfa_phy_write_send(void *cbarg
)
5375 struct bfa_phy_s
*phy
= cbarg
;
5376 struct bfi_phy_write_req_s
*msg
=
5377 (struct bfi_phy_write_req_s
*) phy
->mb
.msg
;
5382 msg
->instance
= phy
->instance
;
5383 msg
->offset
= cpu_to_be32(phy
->addr_off
+ phy
->offset
);
5384 len
= (phy
->residue
< BFA_PHY_DMA_BUF_SZ
) ?
5385 phy
->residue
: BFA_PHY_DMA_BUF_SZ
;
5386 msg
->length
= cpu_to_be32(len
);
5388 /* indicate if it's the last msg of the whole write operation */
5389 msg
->last
= (len
== phy
->residue
) ? 1 : 0;
5391 bfi_h2i_set(msg
->mh
, BFI_MC_PHY
, BFI_PHY_H2I_WRITE_REQ
,
5392 bfa_ioc_portid(phy
->ioc
));
5393 bfa_alen_set(&msg
->alen
, len
, phy
->dbuf_pa
);
5395 buf
= (u16
*) (phy
->ubuf
+ phy
->offset
);
5396 dbuf
= (u16
*)phy
->dbuf_kva
;
5398 for (i
= 0; i
< sz
; i
++)
5399 buf
[i
] = cpu_to_be16(dbuf
[i
]);
5401 bfa_ioc_mbox_queue(phy
->ioc
, &phy
->mb
);
5403 phy
->residue
-= len
;
5408 * Send phy read request.
5410 * @param[in] cbarg - callback argument
5413 bfa_phy_read_send(void *cbarg
)
5415 struct bfa_phy_s
*phy
= cbarg
;
5416 struct bfi_phy_read_req_s
*msg
=
5417 (struct bfi_phy_read_req_s
*) phy
->mb
.msg
;
5420 msg
->instance
= phy
->instance
;
5421 msg
->offset
= cpu_to_be32(phy
->addr_off
+ phy
->offset
);
5422 len
= (phy
->residue
< BFA_PHY_DMA_BUF_SZ
) ?
5423 phy
->residue
: BFA_PHY_DMA_BUF_SZ
;
5424 msg
->length
= cpu_to_be32(len
);
5425 bfi_h2i_set(msg
->mh
, BFI_MC_PHY
, BFI_PHY_H2I_READ_REQ
,
5426 bfa_ioc_portid(phy
->ioc
));
5427 bfa_alen_set(&msg
->alen
, len
, phy
->dbuf_pa
);
5428 bfa_ioc_mbox_queue(phy
->ioc
, &phy
->mb
);
5432 * Send phy stats request.
5434 * @param[in] cbarg - callback argument
5437 bfa_phy_stats_send(void *cbarg
)
5439 struct bfa_phy_s
*phy
= cbarg
;
5440 struct bfi_phy_stats_req_s
*msg
=
5441 (struct bfi_phy_stats_req_s
*) phy
->mb
.msg
;
5443 msg
->instance
= phy
->instance
;
5444 bfi_h2i_set(msg
->mh
, BFI_MC_PHY
, BFI_PHY_H2I_STATS_REQ
,
5445 bfa_ioc_portid(phy
->ioc
));
5446 bfa_alen_set(&msg
->alen
, sizeof(struct bfa_phy_stats_s
), phy
->dbuf_pa
);
5447 bfa_ioc_mbox_queue(phy
->ioc
, &phy
->mb
);
5451 * Flash memory info API.
5453 * @param[in] mincfg - minimal cfg variable
5456 bfa_phy_meminfo(bfa_boolean_t mincfg
)
5458 /* min driver doesn't need phy */
5462 return BFA_ROUNDUP(BFA_PHY_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
5468 * @param[in] phy - phy structure
5469 * @param[in] ioc - ioc structure
5470 * @param[in] dev - device structure
5471 * @param[in] trcmod - trace module
5472 * @param[in] logmod - log module
5475 bfa_phy_attach(struct bfa_phy_s
*phy
, struct bfa_ioc_s
*ioc
, void *dev
,
5476 struct bfa_trc_mod_s
*trcmod
, bfa_boolean_t mincfg
)
5479 phy
->trcmod
= trcmod
;
5484 bfa_ioc_mbox_regisr(phy
->ioc
, BFI_MC_PHY
, bfa_phy_intr
, phy
);
5485 bfa_q_qe_init(&phy
->ioc_notify
);
5486 bfa_ioc_notify_init(&phy
->ioc_notify
, bfa_phy_notify
, phy
);
5487 list_add_tail(&phy
->ioc_notify
.qe
, &phy
->ioc
->notify_q
);
5489 /* min driver doesn't need phy */
5491 phy
->dbuf_kva
= NULL
;
5497 * Claim memory for phy
5499 * @param[in] phy - phy structure
5500 * @param[in] dm_kva - pointer to virtual memory address
5501 * @param[in] dm_pa - physical memory address
5502 * @param[in] mincfg - minimal cfg variable
5505 bfa_phy_memclaim(struct bfa_phy_s
*phy
, u8
*dm_kva
, u64 dm_pa
,
5506 bfa_boolean_t mincfg
)
5511 phy
->dbuf_kva
= dm_kva
;
5512 phy
->dbuf_pa
= dm_pa
;
5513 memset(phy
->dbuf_kva
, 0, BFA_PHY_DMA_BUF_SZ
);
5514 dm_kva
+= BFA_ROUNDUP(BFA_PHY_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
5515 dm_pa
+= BFA_ROUNDUP(BFA_PHY_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
5519 bfa_phy_busy(struct bfa_ioc_s
*ioc
)
5523 rb
= bfa_ioc_bar0(ioc
);
5524 return readl(rb
+ BFA_PHY_LOCK_STATUS
);
5528 * Get phy attribute.
5530 * @param[in] phy - phy structure
5531 * @param[in] attr - phy attribute structure
5532 * @param[in] cbfn - callback function
5533 * @param[in] cbarg - callback argument
5538 bfa_phy_get_attr(struct bfa_phy_s
*phy
, u8 instance
,
5539 struct bfa_phy_attr_s
*attr
, bfa_cb_phy_t cbfn
, void *cbarg
)
5541 bfa_trc(phy
, BFI_PHY_H2I_QUERY_REQ
);
5542 bfa_trc(phy
, instance
);
5544 if (!bfa_phy_present(phy
))
5545 return BFA_STATUS_PHY_NOT_PRESENT
;
5547 if (!bfa_ioc_is_operational(phy
->ioc
))
5548 return BFA_STATUS_IOC_NON_OP
;
5550 if (phy
->op_busy
|| bfa_phy_busy(phy
->ioc
)) {
5551 bfa_trc(phy
, phy
->op_busy
);
5552 return BFA_STATUS_DEVBUSY
;
5558 phy
->instance
= instance
;
5559 phy
->ubuf
= (uint8_t *) attr
;
5560 bfa_phy_query_send(phy
);
5562 return BFA_STATUS_OK
;
5568 * @param[in] phy - phy structure
5569 * @param[in] instance - phy image instance
5570 * @param[in] stats - pointer to phy stats
5571 * @param[in] cbfn - callback function
5572 * @param[in] cbarg - callback argument
5577 bfa_phy_get_stats(struct bfa_phy_s
*phy
, u8 instance
,
5578 struct bfa_phy_stats_s
*stats
,
5579 bfa_cb_phy_t cbfn
, void *cbarg
)
5581 bfa_trc(phy
, BFI_PHY_H2I_STATS_REQ
);
5582 bfa_trc(phy
, instance
);
5584 if (!bfa_phy_present(phy
))
5585 return BFA_STATUS_PHY_NOT_PRESENT
;
5587 if (!bfa_ioc_is_operational(phy
->ioc
))
5588 return BFA_STATUS_IOC_NON_OP
;
5590 if (phy
->op_busy
|| bfa_phy_busy(phy
->ioc
)) {
5591 bfa_trc(phy
, phy
->op_busy
);
5592 return BFA_STATUS_DEVBUSY
;
5598 phy
->instance
= instance
;
5599 phy
->ubuf
= (u8
*) stats
;
5600 bfa_phy_stats_send(phy
);
5602 return BFA_STATUS_OK
;
5608 * @param[in] phy - phy structure
5609 * @param[in] instance - phy image instance
5610 * @param[in] buf - update data buffer
5611 * @param[in] len - data buffer length
5612 * @param[in] offset - offset relative to starting address
5613 * @param[in] cbfn - callback function
5614 * @param[in] cbarg - callback argument
5619 bfa_phy_update(struct bfa_phy_s
*phy
, u8 instance
,
5620 void *buf
, u32 len
, u32 offset
,
5621 bfa_cb_phy_t cbfn
, void *cbarg
)
5623 bfa_trc(phy
, BFI_PHY_H2I_WRITE_REQ
);
5624 bfa_trc(phy
, instance
);
5626 bfa_trc(phy
, offset
);
5628 if (!bfa_phy_present(phy
))
5629 return BFA_STATUS_PHY_NOT_PRESENT
;
5631 if (!bfa_ioc_is_operational(phy
->ioc
))
5632 return BFA_STATUS_IOC_NON_OP
;
5634 /* 'len' must be in word (4-byte) boundary */
5635 if (!len
|| (len
& 0x03))
5636 return BFA_STATUS_FAILED
;
5638 if (phy
->op_busy
|| bfa_phy_busy(phy
->ioc
)) {
5639 bfa_trc(phy
, phy
->op_busy
);
5640 return BFA_STATUS_DEVBUSY
;
5646 phy
->instance
= instance
;
5649 phy
->addr_off
= offset
;
5652 bfa_phy_write_send(phy
);
5653 return BFA_STATUS_OK
;
5659 * @param[in] phy - phy structure
5660 * @param[in] instance - phy image instance
5661 * @param[in] buf - read data buffer
5662 * @param[in] len - data buffer length
5663 * @param[in] offset - offset relative to starting address
5664 * @param[in] cbfn - callback function
5665 * @param[in] cbarg - callback argument
5670 bfa_phy_read(struct bfa_phy_s
*phy
, u8 instance
,
5671 void *buf
, u32 len
, u32 offset
,
5672 bfa_cb_phy_t cbfn
, void *cbarg
)
5674 bfa_trc(phy
, BFI_PHY_H2I_READ_REQ
);
5675 bfa_trc(phy
, instance
);
5677 bfa_trc(phy
, offset
);
5679 if (!bfa_phy_present(phy
))
5680 return BFA_STATUS_PHY_NOT_PRESENT
;
5682 if (!bfa_ioc_is_operational(phy
->ioc
))
5683 return BFA_STATUS_IOC_NON_OP
;
5685 /* 'len' must be in word (4-byte) boundary */
5686 if (!len
|| (len
& 0x03))
5687 return BFA_STATUS_FAILED
;
5689 if (phy
->op_busy
|| bfa_phy_busy(phy
->ioc
)) {
5690 bfa_trc(phy
, phy
->op_busy
);
5691 return BFA_STATUS_DEVBUSY
;
5697 phy
->instance
= instance
;
5700 phy
->addr_off
= offset
;
5702 bfa_phy_read_send(phy
);
5704 return BFA_STATUS_OK
;
5708 * Process phy response messages upon receiving interrupts.
5710 * @param[in] phyarg - phy structure
5711 * @param[in] msg - message structure
5714 bfa_phy_intr(void *phyarg
, struct bfi_mbmsg_s
*msg
)
5716 struct bfa_phy_s
*phy
= phyarg
;
5720 struct bfi_phy_query_rsp_s
*query
;
5721 struct bfi_phy_stats_rsp_s
*stats
;
5722 struct bfi_phy_write_rsp_s
*write
;
5723 struct bfi_phy_read_rsp_s
*read
;
5724 struct bfi_mbmsg_s
*msg
;
5728 bfa_trc(phy
, msg
->mh
.msg_id
);
5730 if (!phy
->op_busy
) {
5731 /* receiving response after ioc failure */
5732 bfa_trc(phy
, 0x9999);
5736 switch (msg
->mh
.msg_id
) {
5737 case BFI_PHY_I2H_QUERY_RSP
:
5738 status
= be32_to_cpu(m
.query
->status
);
5739 bfa_trc(phy
, status
);
5741 if (status
== BFA_STATUS_OK
) {
5742 struct bfa_phy_attr_s
*attr
=
5743 (struct bfa_phy_attr_s
*) phy
->ubuf
;
5744 bfa_phy_ntoh32((u32
*)attr
, (u32
*)phy
->dbuf_kva
,
5745 sizeof(struct bfa_phy_attr_s
));
5746 bfa_trc(phy
, attr
->status
);
5747 bfa_trc(phy
, attr
->length
);
5750 phy
->status
= status
;
5753 phy
->cbfn(phy
->cbarg
, phy
->status
);
5755 case BFI_PHY_I2H_STATS_RSP
:
5756 status
= be32_to_cpu(m
.stats
->status
);
5757 bfa_trc(phy
, status
);
5759 if (status
== BFA_STATUS_OK
) {
5760 struct bfa_phy_stats_s
*stats
=
5761 (struct bfa_phy_stats_s
*) phy
->ubuf
;
5762 bfa_phy_ntoh32((u32
*)stats
, (u32
*)phy
->dbuf_kva
,
5763 sizeof(struct bfa_phy_stats_s
));
5764 bfa_trc(phy
, stats
->status
);
5767 phy
->status
= status
;
5770 phy
->cbfn(phy
->cbarg
, phy
->status
);
5772 case BFI_PHY_I2H_WRITE_RSP
:
5773 status
= be32_to_cpu(m
.write
->status
);
5774 bfa_trc(phy
, status
);
5776 if (status
!= BFA_STATUS_OK
|| phy
->residue
== 0) {
5777 phy
->status
= status
;
5780 phy
->cbfn(phy
->cbarg
, phy
->status
);
5782 bfa_trc(phy
, phy
->offset
);
5783 bfa_phy_write_send(phy
);
5786 case BFI_PHY_I2H_READ_RSP
:
5787 status
= be32_to_cpu(m
.read
->status
);
5788 bfa_trc(phy
, status
);
5790 if (status
!= BFA_STATUS_OK
) {
5791 phy
->status
= status
;
5794 phy
->cbfn(phy
->cbarg
, phy
->status
);
5796 u32 len
= be32_to_cpu(m
.read
->length
);
5797 u16
*buf
= (u16
*)(phy
->ubuf
+ phy
->offset
);
5798 u16
*dbuf
= (u16
*)phy
->dbuf_kva
;
5799 int i
, sz
= len
>> 1;
5801 bfa_trc(phy
, phy
->offset
);
5804 for (i
= 0; i
< sz
; i
++)
5805 buf
[i
] = be16_to_cpu(dbuf
[i
]);
5807 phy
->residue
-= len
;
5810 if (phy
->residue
== 0) {
5811 phy
->status
= status
;
5814 phy
->cbfn(phy
->cbarg
, phy
->status
);
5816 bfa_phy_read_send(phy
);
5825 * DCONF module specific
5831 * DCONF state machine events
5833 enum bfa_dconf_event
{
5834 BFA_DCONF_SM_INIT
= 1, /* dconf Init */
5835 BFA_DCONF_SM_FLASH_COMP
= 2, /* read/write to flash */
5836 BFA_DCONF_SM_WR
= 3, /* binding change, map */
5837 BFA_DCONF_SM_TIMEOUT
= 4, /* Start timer */
5838 BFA_DCONF_SM_EXIT
= 5, /* exit dconf module */
5839 BFA_DCONF_SM_IOCDISABLE
= 6, /* IOC disable event */
5842 /* forward declaration of DCONF state machine */
5843 static void bfa_dconf_sm_uninit(struct bfa_dconf_mod_s
*dconf
,
5844 enum bfa_dconf_event event
);
5845 static void bfa_dconf_sm_flash_read(struct bfa_dconf_mod_s
*dconf
,
5846 enum bfa_dconf_event event
);
5847 static void bfa_dconf_sm_ready(struct bfa_dconf_mod_s
*dconf
,
5848 enum bfa_dconf_event event
);
5849 static void bfa_dconf_sm_dirty(struct bfa_dconf_mod_s
*dconf
,
5850 enum bfa_dconf_event event
);
5851 static void bfa_dconf_sm_sync(struct bfa_dconf_mod_s
*dconf
,
5852 enum bfa_dconf_event event
);
5853 static void bfa_dconf_sm_final_sync(struct bfa_dconf_mod_s
*dconf
,
5854 enum bfa_dconf_event event
);
5855 static void bfa_dconf_sm_iocdown_dirty(struct bfa_dconf_mod_s
*dconf
,
5856 enum bfa_dconf_event event
);
5858 static void bfa_dconf_cbfn(void *dconf
, bfa_status_t status
);
5859 static void bfa_dconf_timer(void *cbarg
);
5860 static bfa_status_t
bfa_dconf_flash_write(struct bfa_dconf_mod_s
*dconf
);
5861 static void bfa_dconf_init_cb(void *arg
, bfa_status_t status
);
5864 * Beginning state of dconf module. Waiting for an event to start.
5867 bfa_dconf_sm_uninit(struct bfa_dconf_mod_s
*dconf
, enum bfa_dconf_event event
)
5869 bfa_status_t bfa_status
;
5870 bfa_trc(dconf
->bfa
, event
);
5873 case BFA_DCONF_SM_INIT
:
5874 if (dconf
->min_cfg
) {
5875 bfa_trc(dconf
->bfa
, dconf
->min_cfg
);
5876 bfa_fsm_send_event(&dconf
->bfa
->iocfc
,
5877 IOCFC_E_DCONF_DONE
);
5880 bfa_sm_set_state(dconf
, bfa_dconf_sm_flash_read
);
5881 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
5882 bfa_dconf_timer
, dconf
, 2 * BFA_DCONF_UPDATE_TOV
);
5883 bfa_status
= bfa_flash_read_part(BFA_FLASH(dconf
->bfa
),
5884 BFA_FLASH_PART_DRV
, dconf
->instance
,
5886 sizeof(struct bfa_dconf_s
), 0,
5887 bfa_dconf_init_cb
, dconf
->bfa
);
5888 if (bfa_status
!= BFA_STATUS_OK
) {
5889 bfa_timer_stop(&dconf
->timer
);
5890 bfa_dconf_init_cb(dconf
->bfa
, BFA_STATUS_FAILED
);
5891 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
5895 case BFA_DCONF_SM_EXIT
:
5896 bfa_fsm_send_event(&dconf
->bfa
->iocfc
, IOCFC_E_DCONF_DONE
);
5897 case BFA_DCONF_SM_IOCDISABLE
:
5898 case BFA_DCONF_SM_WR
:
5899 case BFA_DCONF_SM_FLASH_COMP
:
5902 bfa_sm_fault(dconf
->bfa
, event
);
5907 * Read flash for dconf entries and make a call back to the driver once done.
5910 bfa_dconf_sm_flash_read(struct bfa_dconf_mod_s
*dconf
,
5911 enum bfa_dconf_event event
)
5913 bfa_trc(dconf
->bfa
, event
);
5916 case BFA_DCONF_SM_FLASH_COMP
:
5917 bfa_timer_stop(&dconf
->timer
);
5918 bfa_sm_set_state(dconf
, bfa_dconf_sm_ready
);
5920 case BFA_DCONF_SM_TIMEOUT
:
5921 bfa_sm_set_state(dconf
, bfa_dconf_sm_ready
);
5922 bfa_ioc_suspend(&dconf
->bfa
->ioc
);
5924 case BFA_DCONF_SM_EXIT
:
5925 bfa_timer_stop(&dconf
->timer
);
5926 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
5927 bfa_fsm_send_event(&dconf
->bfa
->iocfc
, IOCFC_E_DCONF_DONE
);
5929 case BFA_DCONF_SM_IOCDISABLE
:
5930 bfa_timer_stop(&dconf
->timer
);
5931 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
5934 bfa_sm_fault(dconf
->bfa
, event
);
5939 * DCONF Module is in ready state. Has completed the initialization.
5942 bfa_dconf_sm_ready(struct bfa_dconf_mod_s
*dconf
, enum bfa_dconf_event event
)
5944 bfa_trc(dconf
->bfa
, event
);
5947 case BFA_DCONF_SM_WR
:
5948 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
5949 bfa_dconf_timer
, dconf
, BFA_DCONF_UPDATE_TOV
);
5950 bfa_sm_set_state(dconf
, bfa_dconf_sm_dirty
);
5952 case BFA_DCONF_SM_EXIT
:
5953 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
5954 bfa_fsm_send_event(&dconf
->bfa
->iocfc
, IOCFC_E_DCONF_DONE
);
5956 case BFA_DCONF_SM_INIT
:
5957 case BFA_DCONF_SM_IOCDISABLE
:
5960 bfa_sm_fault(dconf
->bfa
, event
);
5965 * entries are dirty, write back to the flash.
5969 bfa_dconf_sm_dirty(struct bfa_dconf_mod_s
*dconf
, enum bfa_dconf_event event
)
5971 bfa_trc(dconf
->bfa
, event
);
5974 case BFA_DCONF_SM_TIMEOUT
:
5975 bfa_sm_set_state(dconf
, bfa_dconf_sm_sync
);
5976 bfa_dconf_flash_write(dconf
);
5978 case BFA_DCONF_SM_WR
:
5979 bfa_timer_stop(&dconf
->timer
);
5980 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
5981 bfa_dconf_timer
, dconf
, BFA_DCONF_UPDATE_TOV
);
5983 case BFA_DCONF_SM_EXIT
:
5984 bfa_timer_stop(&dconf
->timer
);
5985 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
5986 bfa_dconf_timer
, dconf
, BFA_DCONF_UPDATE_TOV
);
5987 bfa_sm_set_state(dconf
, bfa_dconf_sm_final_sync
);
5988 bfa_dconf_flash_write(dconf
);
5990 case BFA_DCONF_SM_FLASH_COMP
:
5992 case BFA_DCONF_SM_IOCDISABLE
:
5993 bfa_timer_stop(&dconf
->timer
);
5994 bfa_sm_set_state(dconf
, bfa_dconf_sm_iocdown_dirty
);
5997 bfa_sm_fault(dconf
->bfa
, event
);
6002 * Sync the dconf entries to the flash.
6005 bfa_dconf_sm_final_sync(struct bfa_dconf_mod_s
*dconf
,
6006 enum bfa_dconf_event event
)
6008 bfa_trc(dconf
->bfa
, event
);
6011 case BFA_DCONF_SM_IOCDISABLE
:
6012 case BFA_DCONF_SM_FLASH_COMP
:
6013 bfa_timer_stop(&dconf
->timer
);
6014 case BFA_DCONF_SM_TIMEOUT
:
6015 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
6016 bfa_fsm_send_event(&dconf
->bfa
->iocfc
, IOCFC_E_DCONF_DONE
);
6019 bfa_sm_fault(dconf
->bfa
, event
);
6024 bfa_dconf_sm_sync(struct bfa_dconf_mod_s
*dconf
, enum bfa_dconf_event event
)
6026 bfa_trc(dconf
->bfa
, event
);
6029 case BFA_DCONF_SM_FLASH_COMP
:
6030 bfa_sm_set_state(dconf
, bfa_dconf_sm_ready
);
6032 case BFA_DCONF_SM_WR
:
6033 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
6034 bfa_dconf_timer
, dconf
, BFA_DCONF_UPDATE_TOV
);
6035 bfa_sm_set_state(dconf
, bfa_dconf_sm_dirty
);
6037 case BFA_DCONF_SM_EXIT
:
6038 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
6039 bfa_dconf_timer
, dconf
, BFA_DCONF_UPDATE_TOV
);
6040 bfa_sm_set_state(dconf
, bfa_dconf_sm_final_sync
);
6042 case BFA_DCONF_SM_IOCDISABLE
:
6043 bfa_sm_set_state(dconf
, bfa_dconf_sm_iocdown_dirty
);
6046 bfa_sm_fault(dconf
->bfa
, event
);
6051 bfa_dconf_sm_iocdown_dirty(struct bfa_dconf_mod_s
*dconf
,
6052 enum bfa_dconf_event event
)
6054 bfa_trc(dconf
->bfa
, event
);
6057 case BFA_DCONF_SM_INIT
:
6058 bfa_timer_start(dconf
->bfa
, &dconf
->timer
,
6059 bfa_dconf_timer
, dconf
, BFA_DCONF_UPDATE_TOV
);
6060 bfa_sm_set_state(dconf
, bfa_dconf_sm_dirty
);
6062 case BFA_DCONF_SM_EXIT
:
6063 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
6064 bfa_fsm_send_event(&dconf
->bfa
->iocfc
, IOCFC_E_DCONF_DONE
);
6066 case BFA_DCONF_SM_IOCDISABLE
:
6069 bfa_sm_fault(dconf
->bfa
, event
);
6074 * Compute and return memory needed by DRV_CFG module.
6077 bfa_dconf_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*meminfo
,
6080 struct bfa_mem_kva_s
*dconf_kva
= BFA_MEM_DCONF_KVA(bfa
);
6082 if (cfg
->drvcfg
.min_cfg
)
6083 bfa_mem_kva_setup(meminfo
, dconf_kva
,
6084 sizeof(struct bfa_dconf_hdr_s
));
6086 bfa_mem_kva_setup(meminfo
, dconf_kva
,
6087 sizeof(struct bfa_dconf_s
));
6091 bfa_dconf_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
6092 struct bfa_pcidev_s
*pcidev
)
6094 struct bfa_dconf_mod_s
*dconf
= BFA_DCONF_MOD(bfa
);
6098 dconf
->instance
= bfa
->ioc
.port_id
;
6099 bfa_trc(bfa
, dconf
->instance
);
6101 dconf
->dconf
= (struct bfa_dconf_s
*) bfa_mem_kva_curp(dconf
);
6102 if (cfg
->drvcfg
.min_cfg
) {
6103 bfa_mem_kva_curp(dconf
) += sizeof(struct bfa_dconf_hdr_s
);
6104 dconf
->min_cfg
= BFA_TRUE
;
6106 dconf
->min_cfg
= BFA_FALSE
;
6107 bfa_mem_kva_curp(dconf
) += sizeof(struct bfa_dconf_s
);
6110 bfa_dconf_read_data_valid(bfa
) = BFA_FALSE
;
6111 bfa_sm_set_state(dconf
, bfa_dconf_sm_uninit
);
6115 bfa_dconf_init_cb(void *arg
, bfa_status_t status
)
6117 struct bfa_s
*bfa
= arg
;
6118 struct bfa_dconf_mod_s
*dconf
= BFA_DCONF_MOD(bfa
);
6120 if (status
== BFA_STATUS_OK
) {
6121 bfa_dconf_read_data_valid(bfa
) = BFA_TRUE
;
6122 if (dconf
->dconf
->hdr
.signature
!= BFI_DCONF_SIGNATURE
)
6123 dconf
->dconf
->hdr
.signature
= BFI_DCONF_SIGNATURE
;
6124 if (dconf
->dconf
->hdr
.version
!= BFI_DCONF_VERSION
)
6125 dconf
->dconf
->hdr
.version
= BFI_DCONF_VERSION
;
6127 bfa_sm_send_event(dconf
, BFA_DCONF_SM_FLASH_COMP
);
6128 bfa_fsm_send_event(&bfa
->iocfc
, IOCFC_E_DCONF_DONE
);
6132 bfa_dconf_modinit(struct bfa_s
*bfa
)
6134 struct bfa_dconf_mod_s
*dconf
= BFA_DCONF_MOD(bfa
);
6135 bfa_sm_send_event(dconf
, BFA_DCONF_SM_INIT
);
6138 bfa_dconf_start(struct bfa_s
*bfa
)
6143 bfa_dconf_stop(struct bfa_s
*bfa
)
6147 static void bfa_dconf_timer(void *cbarg
)
6149 struct bfa_dconf_mod_s
*dconf
= cbarg
;
6150 bfa_sm_send_event(dconf
, BFA_DCONF_SM_TIMEOUT
);
6153 bfa_dconf_iocdisable(struct bfa_s
*bfa
)
6155 struct bfa_dconf_mod_s
*dconf
= BFA_DCONF_MOD(bfa
);
6156 bfa_sm_send_event(dconf
, BFA_DCONF_SM_IOCDISABLE
);
6160 bfa_dconf_detach(struct bfa_s
*bfa
)
6165 bfa_dconf_flash_write(struct bfa_dconf_mod_s
*dconf
)
6167 bfa_status_t bfa_status
;
6168 bfa_trc(dconf
->bfa
, 0);
6170 bfa_status
= bfa_flash_update_part(BFA_FLASH(dconf
->bfa
),
6171 BFA_FLASH_PART_DRV
, dconf
->instance
,
6172 dconf
->dconf
, sizeof(struct bfa_dconf_s
), 0,
6173 bfa_dconf_cbfn
, dconf
);
6174 if (bfa_status
!= BFA_STATUS_OK
)
6175 WARN_ON(bfa_status
);
6176 bfa_trc(dconf
->bfa
, bfa_status
);
6182 bfa_dconf_update(struct bfa_s
*bfa
)
6184 struct bfa_dconf_mod_s
*dconf
= BFA_DCONF_MOD(bfa
);
6185 bfa_trc(dconf
->bfa
, 0);
6186 if (bfa_sm_cmp_state(dconf
, bfa_dconf_sm_iocdown_dirty
))
6187 return BFA_STATUS_FAILED
;
6189 if (dconf
->min_cfg
) {
6190 bfa_trc(dconf
->bfa
, dconf
->min_cfg
);
6191 return BFA_STATUS_FAILED
;
6194 bfa_sm_send_event(dconf
, BFA_DCONF_SM_WR
);
6195 return BFA_STATUS_OK
;
6199 bfa_dconf_cbfn(void *arg
, bfa_status_t status
)
6201 struct bfa_dconf_mod_s
*dconf
= arg
;
6203 bfa_sm_send_event(dconf
, BFA_DCONF_SM_FLASH_COMP
);
6207 bfa_dconf_modexit(struct bfa_s
*bfa
)
6209 struct bfa_dconf_mod_s
*dconf
= BFA_DCONF_MOD(bfa
);
6210 bfa_sm_send_event(dconf
, BFA_DCONF_SM_EXIT
);
6214 * FRU specific functions
6217 #define BFA_FRU_DMA_BUF_SZ 0x02000 /* 8k dma buffer */
6218 #define BFA_FRU_CHINOOK_MAX_SIZE 0x10000
6219 #define BFA_FRU_LIGHTNING_MAX_SIZE 0x200
6222 bfa_fru_notify(void *cbarg
, enum bfa_ioc_event_e event
)
6224 struct bfa_fru_s
*fru
= cbarg
;
6226 bfa_trc(fru
, event
);
6229 case BFA_IOC_E_DISABLED
:
6230 case BFA_IOC_E_FAILED
:
6232 fru
->status
= BFA_STATUS_IOC_FAILURE
;
6233 fru
->cbfn(fru
->cbarg
, fru
->status
);
6244 * Send fru write request.
6246 * @param[in] cbarg - callback argument
6249 bfa_fru_write_send(void *cbarg
, enum bfi_fru_h2i_msgs msg_type
)
6251 struct bfa_fru_s
*fru
= cbarg
;
6252 struct bfi_fru_write_req_s
*msg
=
6253 (struct bfi_fru_write_req_s
*) fru
->mb
.msg
;
6256 msg
->offset
= cpu_to_be32(fru
->addr_off
+ fru
->offset
);
6257 len
= (fru
->residue
< BFA_FRU_DMA_BUF_SZ
) ?
6258 fru
->residue
: BFA_FRU_DMA_BUF_SZ
;
6259 msg
->length
= cpu_to_be32(len
);
6262 * indicate if it's the last msg of the whole write operation
6264 msg
->last
= (len
== fru
->residue
) ? 1 : 0;
6266 msg
->trfr_cmpl
= (len
== fru
->residue
) ? fru
->trfr_cmpl
: 0;
6267 bfi_h2i_set(msg
->mh
, BFI_MC_FRU
, msg_type
, bfa_ioc_portid(fru
->ioc
));
6268 bfa_alen_set(&msg
->alen
, len
, fru
->dbuf_pa
);
6270 memcpy(fru
->dbuf_kva
, fru
->ubuf
+ fru
->offset
, len
);
6271 bfa_ioc_mbox_queue(fru
->ioc
, &fru
->mb
);
6273 fru
->residue
-= len
;
6278 * Send fru read request.
6280 * @param[in] cbarg - callback argument
6283 bfa_fru_read_send(void *cbarg
, enum bfi_fru_h2i_msgs msg_type
)
6285 struct bfa_fru_s
*fru
= cbarg
;
6286 struct bfi_fru_read_req_s
*msg
=
6287 (struct bfi_fru_read_req_s
*) fru
->mb
.msg
;
6290 msg
->offset
= cpu_to_be32(fru
->addr_off
+ fru
->offset
);
6291 len
= (fru
->residue
< BFA_FRU_DMA_BUF_SZ
) ?
6292 fru
->residue
: BFA_FRU_DMA_BUF_SZ
;
6293 msg
->length
= cpu_to_be32(len
);
6294 bfi_h2i_set(msg
->mh
, BFI_MC_FRU
, msg_type
, bfa_ioc_portid(fru
->ioc
));
6295 bfa_alen_set(&msg
->alen
, len
, fru
->dbuf_pa
);
6296 bfa_ioc_mbox_queue(fru
->ioc
, &fru
->mb
);
6300 * Flash memory info API.
6302 * @param[in] mincfg - minimal cfg variable
6305 bfa_fru_meminfo(bfa_boolean_t mincfg
)
6307 /* min driver doesn't need fru */
6311 return BFA_ROUNDUP(BFA_FRU_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
6317 * @param[in] fru - fru structure
6318 * @param[in] ioc - ioc structure
6319 * @param[in] dev - device structure
6320 * @param[in] trcmod - trace module
6321 * @param[in] logmod - log module
6324 bfa_fru_attach(struct bfa_fru_s
*fru
, struct bfa_ioc_s
*ioc
, void *dev
,
6325 struct bfa_trc_mod_s
*trcmod
, bfa_boolean_t mincfg
)
6328 fru
->trcmod
= trcmod
;
6333 bfa_ioc_mbox_regisr(fru
->ioc
, BFI_MC_FRU
, bfa_fru_intr
, fru
);
6334 bfa_q_qe_init(&fru
->ioc_notify
);
6335 bfa_ioc_notify_init(&fru
->ioc_notify
, bfa_fru_notify
, fru
);
6336 list_add_tail(&fru
->ioc_notify
.qe
, &fru
->ioc
->notify_q
);
6338 /* min driver doesn't need fru */
6340 fru
->dbuf_kva
= NULL
;
6346 * Claim memory for fru
6348 * @param[in] fru - fru structure
6349 * @param[in] dm_kva - pointer to virtual memory address
6350 * @param[in] dm_pa - frusical memory address
6351 * @param[in] mincfg - minimal cfg variable
6354 bfa_fru_memclaim(struct bfa_fru_s
*fru
, u8
*dm_kva
, u64 dm_pa
,
6355 bfa_boolean_t mincfg
)
6360 fru
->dbuf_kva
= dm_kva
;
6361 fru
->dbuf_pa
= dm_pa
;
6362 memset(fru
->dbuf_kva
, 0, BFA_FRU_DMA_BUF_SZ
);
6363 dm_kva
+= BFA_ROUNDUP(BFA_FRU_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
6364 dm_pa
+= BFA_ROUNDUP(BFA_FRU_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
6368 * Update fru vpd image.
6370 * @param[in] fru - fru structure
6371 * @param[in] buf - update data buffer
6372 * @param[in] len - data buffer length
6373 * @param[in] offset - offset relative to starting address
6374 * @param[in] cbfn - callback function
6375 * @param[in] cbarg - callback argument
6380 bfa_fruvpd_update(struct bfa_fru_s
*fru
, void *buf
, u32 len
, u32 offset
,
6381 bfa_cb_fru_t cbfn
, void *cbarg
, u8 trfr_cmpl
)
6383 bfa_trc(fru
, BFI_FRUVPD_H2I_WRITE_REQ
);
6385 bfa_trc(fru
, offset
);
6387 if (fru
->ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
&&
6388 fru
->ioc
->attr
->card_type
!= BFA_MFG_TYPE_CHINOOK2
)
6389 return BFA_STATUS_FRU_NOT_PRESENT
;
6391 if (fru
->ioc
->attr
->card_type
!= BFA_MFG_TYPE_CHINOOK
)
6392 return BFA_STATUS_CMD_NOTSUPP
;
6394 if (!bfa_ioc_is_operational(fru
->ioc
))
6395 return BFA_STATUS_IOC_NON_OP
;
6398 bfa_trc(fru
, fru
->op_busy
);
6399 return BFA_STATUS_DEVBUSY
;
6408 fru
->addr_off
= offset
;
6410 fru
->trfr_cmpl
= trfr_cmpl
;
6412 bfa_fru_write_send(fru
, BFI_FRUVPD_H2I_WRITE_REQ
);
6414 return BFA_STATUS_OK
;
6418 * Read fru vpd image.
6420 * @param[in] fru - fru structure
6421 * @param[in] buf - read data buffer
6422 * @param[in] len - data buffer length
6423 * @param[in] offset - offset relative to starting address
6424 * @param[in] cbfn - callback function
6425 * @param[in] cbarg - callback argument
6430 bfa_fruvpd_read(struct bfa_fru_s
*fru
, void *buf
, u32 len
, u32 offset
,
6431 bfa_cb_fru_t cbfn
, void *cbarg
)
6433 bfa_trc(fru
, BFI_FRUVPD_H2I_READ_REQ
);
6435 bfa_trc(fru
, offset
);
6437 if (fru
->ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
)
6438 return BFA_STATUS_FRU_NOT_PRESENT
;
6440 if (fru
->ioc
->attr
->card_type
!= BFA_MFG_TYPE_CHINOOK
&&
6441 fru
->ioc
->attr
->card_type
!= BFA_MFG_TYPE_CHINOOK2
)
6442 return BFA_STATUS_CMD_NOTSUPP
;
6444 if (!bfa_ioc_is_operational(fru
->ioc
))
6445 return BFA_STATUS_IOC_NON_OP
;
6448 bfa_trc(fru
, fru
->op_busy
);
6449 return BFA_STATUS_DEVBUSY
;
6458 fru
->addr_off
= offset
;
6460 bfa_fru_read_send(fru
, BFI_FRUVPD_H2I_READ_REQ
);
6462 return BFA_STATUS_OK
;
6466 * Get maximum size fru vpd image.
6468 * @param[in] fru - fru structure
6469 * @param[out] size - maximum size of fru vpd data
6474 bfa_fruvpd_get_max_size(struct bfa_fru_s
*fru
, u32
*max_size
)
6476 if (fru
->ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
)
6477 return BFA_STATUS_FRU_NOT_PRESENT
;
6479 if (!bfa_ioc_is_operational(fru
->ioc
))
6480 return BFA_STATUS_IOC_NON_OP
;
6482 if (fru
->ioc
->attr
->card_type
== BFA_MFG_TYPE_CHINOOK
||
6483 fru
->ioc
->attr
->card_type
== BFA_MFG_TYPE_CHINOOK2
)
6484 *max_size
= BFA_FRU_CHINOOK_MAX_SIZE
;
6486 return BFA_STATUS_CMD_NOTSUPP
;
6487 return BFA_STATUS_OK
;
6492 * @param[in] fru - fru structure
6493 * @param[in] buf - update data buffer
6494 * @param[in] len - data buffer length
6495 * @param[in] offset - offset relative to starting address
6496 * @param[in] cbfn - callback function
6497 * @param[in] cbarg - callback argument
6502 bfa_tfru_write(struct bfa_fru_s
*fru
, void *buf
, u32 len
, u32 offset
,
6503 bfa_cb_fru_t cbfn
, void *cbarg
)
6505 bfa_trc(fru
, BFI_TFRU_H2I_WRITE_REQ
);
6507 bfa_trc(fru
, offset
);
6508 bfa_trc(fru
, *((u8
*) buf
));
6510 if (fru
->ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
)
6511 return BFA_STATUS_FRU_NOT_PRESENT
;
6513 if (!bfa_ioc_is_operational(fru
->ioc
))
6514 return BFA_STATUS_IOC_NON_OP
;
6517 bfa_trc(fru
, fru
->op_busy
);
6518 return BFA_STATUS_DEVBUSY
;
6527 fru
->addr_off
= offset
;
6530 bfa_fru_write_send(fru
, BFI_TFRU_H2I_WRITE_REQ
);
6532 return BFA_STATUS_OK
;
6538 * @param[in] fru - fru structure
6539 * @param[in] buf - read data buffer
6540 * @param[in] len - data buffer length
6541 * @param[in] offset - offset relative to starting address
6542 * @param[in] cbfn - callback function
6543 * @param[in] cbarg - callback argument
6548 bfa_tfru_read(struct bfa_fru_s
*fru
, void *buf
, u32 len
, u32 offset
,
6549 bfa_cb_fru_t cbfn
, void *cbarg
)
6551 bfa_trc(fru
, BFI_TFRU_H2I_READ_REQ
);
6553 bfa_trc(fru
, offset
);
6555 if (fru
->ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
)
6556 return BFA_STATUS_FRU_NOT_PRESENT
;
6558 if (!bfa_ioc_is_operational(fru
->ioc
))
6559 return BFA_STATUS_IOC_NON_OP
;
6562 bfa_trc(fru
, fru
->op_busy
);
6563 return BFA_STATUS_DEVBUSY
;
6572 fru
->addr_off
= offset
;
6574 bfa_fru_read_send(fru
, BFI_TFRU_H2I_READ_REQ
);
6576 return BFA_STATUS_OK
;
6580 * Process fru response messages upon receiving interrupts.
6582 * @param[in] fruarg - fru structure
6583 * @param[in] msg - message structure
6586 bfa_fru_intr(void *fruarg
, struct bfi_mbmsg_s
*msg
)
6588 struct bfa_fru_s
*fru
= fruarg
;
6589 struct bfi_fru_rsp_s
*rsp
= (struct bfi_fru_rsp_s
*)msg
;
6592 bfa_trc(fru
, msg
->mh
.msg_id
);
6594 if (!fru
->op_busy
) {
6596 * receiving response after ioc failure
6598 bfa_trc(fru
, 0x9999);
6602 switch (msg
->mh
.msg_id
) {
6603 case BFI_FRUVPD_I2H_WRITE_RSP
:
6604 case BFI_TFRU_I2H_WRITE_RSP
:
6605 status
= be32_to_cpu(rsp
->status
);
6606 bfa_trc(fru
, status
);
6608 if (status
!= BFA_STATUS_OK
|| fru
->residue
== 0) {
6609 fru
->status
= status
;
6612 fru
->cbfn(fru
->cbarg
, fru
->status
);
6614 bfa_trc(fru
, fru
->offset
);
6615 if (msg
->mh
.msg_id
== BFI_FRUVPD_I2H_WRITE_RSP
)
6616 bfa_fru_write_send(fru
,
6617 BFI_FRUVPD_H2I_WRITE_REQ
);
6619 bfa_fru_write_send(fru
,
6620 BFI_TFRU_H2I_WRITE_REQ
);
6623 case BFI_FRUVPD_I2H_READ_RSP
:
6624 case BFI_TFRU_I2H_READ_RSP
:
6625 status
= be32_to_cpu(rsp
->status
);
6626 bfa_trc(fru
, status
);
6628 if (status
!= BFA_STATUS_OK
) {
6629 fru
->status
= status
;
6632 fru
->cbfn(fru
->cbarg
, fru
->status
);
6634 u32 len
= be32_to_cpu(rsp
->length
);
6636 bfa_trc(fru
, fru
->offset
);
6639 memcpy(fru
->ubuf
+ fru
->offset
, fru
->dbuf_kva
, len
);
6640 fru
->residue
-= len
;
6643 if (fru
->residue
== 0) {
6644 fru
->status
= status
;
6647 fru
->cbfn(fru
->cbarg
, fru
->status
);
6649 if (msg
->mh
.msg_id
== BFI_FRUVPD_I2H_READ_RSP
)
6650 bfa_fru_read_send(fru
,
6651 BFI_FRUVPD_H2I_READ_REQ
);
6653 bfa_fru_read_send(fru
,
6654 BFI_TFRU_H2I_READ_REQ
);
6664 * register definitions
6666 #define FLI_CMD_REG 0x0001d000
6667 #define FLI_RDDATA_REG 0x0001d010
6668 #define FLI_ADDR_REG 0x0001d004
6669 #define FLI_DEV_STATUS_REG 0x0001d014
6671 #define BFA_FLASH_FIFO_SIZE 128 /* fifo size */
6672 #define BFA_FLASH_CHECK_MAX 10000 /* max # of status check */
6673 #define BFA_FLASH_BLOCKING_OP_MAX 1000000 /* max # of blocking op check */
6674 #define BFA_FLASH_WIP_MASK 0x01 /* write in progress bit mask */
6676 enum bfa_flash_cmd
{
6677 BFA_FLASH_FAST_READ
= 0x0b, /* fast read */
6678 BFA_FLASH_READ_STATUS
= 0x05, /* read status */
6682 * @brief hardware error definition
6684 enum bfa_flash_err
{
6685 BFA_FLASH_NOT_PRESENT
= -1, /*!< flash not present */
6686 BFA_FLASH_UNINIT
= -2, /*!< flash not initialized */
6687 BFA_FLASH_BAD
= -3, /*!< flash bad */
6688 BFA_FLASH_BUSY
= -4, /*!< flash busy */
6689 BFA_FLASH_ERR_CMD_ACT
= -5, /*!< command active never cleared */
6690 BFA_FLASH_ERR_FIFO_CNT
= -6, /*!< fifo count never cleared */
6691 BFA_FLASH_ERR_WIP
= -7, /*!< write-in-progress never cleared */
6692 BFA_FLASH_ERR_TIMEOUT
= -8, /*!< fli timeout */
6693 BFA_FLASH_ERR_LEN
= -9, /*!< invalid length */
6697 * @brief flash command register data structure
6699 union bfa_flash_cmd_reg_u
{
6721 * @brief flash device status register data structure
6723 union bfa_flash_dev_status_reg_u
{
6747 * @brief flash address register data structure
6749 union bfa_flash_addr_reg_u
{
6763 * dg flash_raw_private Flash raw private functions
6766 bfa_flash_set_cmd(void __iomem
*pci_bar
, u8 wr_cnt
,
6767 u8 rd_cnt
, u8 ad_cnt
, u8 op
)
6769 union bfa_flash_cmd_reg_u cmd
;
6773 cmd
.r
.write_cnt
= wr_cnt
;
6774 cmd
.r
.read_cnt
= rd_cnt
;
6775 cmd
.r
.addr_cnt
= ad_cnt
;
6777 writel(cmd
.i
, (pci_bar
+ FLI_CMD_REG
));
6781 bfa_flash_set_addr(void __iomem
*pci_bar
, u32 address
)
6783 union bfa_flash_addr_reg_u addr
;
6785 addr
.r
.addr
= address
& 0x00ffffff;
6787 writel(addr
.i
, (pci_bar
+ FLI_ADDR_REG
));
6791 bfa_flash_cmd_act_check(void __iomem
*pci_bar
)
6793 union bfa_flash_cmd_reg_u cmd
;
6795 cmd
.i
= readl(pci_bar
+ FLI_CMD_REG
);
6798 return BFA_FLASH_ERR_CMD_ACT
;
6805 * Flush FLI data fifo.
6807 * @param[in] pci_bar - pci bar address
6808 * @param[in] dev_status - device status
6810 * Return 0 on success, negative error number on error.
6813 bfa_flash_fifo_flush(void __iomem
*pci_bar
)
6817 union bfa_flash_dev_status_reg_u dev_status
;
6819 dev_status
.i
= readl(pci_bar
+ FLI_DEV_STATUS_REG
);
6821 if (!dev_status
.r
.fifo_cnt
)
6824 /* fifo counter in terms of words */
6825 for (i
= 0; i
< dev_status
.r
.fifo_cnt
; i
++)
6826 t
= readl(pci_bar
+ FLI_RDDATA_REG
);
6829 * Check the device status. It may take some time.
6831 for (i
= 0; i
< BFA_FLASH_CHECK_MAX
; i
++) {
6832 dev_status
.i
= readl(pci_bar
+ FLI_DEV_STATUS_REG
);
6833 if (!dev_status
.r
.fifo_cnt
)
6837 if (dev_status
.r
.fifo_cnt
)
6838 return BFA_FLASH_ERR_FIFO_CNT
;
6845 * Read flash status.
6847 * @param[in] pci_bar - pci bar address
6849 * Return 0 on success, negative error number on error.
6852 bfa_flash_status_read(void __iomem
*pci_bar
)
6854 union bfa_flash_dev_status_reg_u dev_status
;
6859 status
= bfa_flash_fifo_flush(pci_bar
);
6863 bfa_flash_set_cmd(pci_bar
, 0, 4, 0, BFA_FLASH_READ_STATUS
);
6865 for (i
= 0; i
< BFA_FLASH_CHECK_MAX
; i
++) {
6866 status
= bfa_flash_cmd_act_check(pci_bar
);
6874 dev_status
.i
= readl(pci_bar
+ FLI_DEV_STATUS_REG
);
6875 if (!dev_status
.r
.fifo_cnt
)
6876 return BFA_FLASH_BUSY
;
6878 ret_status
= readl(pci_bar
+ FLI_RDDATA_REG
);
6881 status
= bfa_flash_fifo_flush(pci_bar
);
6890 * Start flash read operation.
6892 * @param[in] pci_bar - pci bar address
6893 * @param[in] offset - flash address offset
6894 * @param[in] len - read data length
6895 * @param[in] buf - read data buffer
6897 * Return 0 on success, negative error number on error.
6900 bfa_flash_read_start(void __iomem
*pci_bar
, u32 offset
, u32 len
,
6906 * len must be mutiple of 4 and not exceeding fifo size
6908 if (len
== 0 || len
> BFA_FLASH_FIFO_SIZE
|| (len
& 0x03) != 0)
6909 return BFA_FLASH_ERR_LEN
;
6914 status
= bfa_flash_status_read(pci_bar
);
6915 if (status
== BFA_FLASH_BUSY
)
6916 status
= bfa_flash_status_read(pci_bar
);
6922 * check if write-in-progress bit is cleared
6924 if (status
& BFA_FLASH_WIP_MASK
)
6925 return BFA_FLASH_ERR_WIP
;
6927 bfa_flash_set_addr(pci_bar
, offset
);
6929 bfa_flash_set_cmd(pci_bar
, 0, (u8
)len
, 4, BFA_FLASH_FAST_READ
);
6936 * Check flash read operation.
6938 * @param[in] pci_bar - pci bar address
6940 * Return flash device status, 1 if busy, 0 if not.
6943 bfa_flash_read_check(void __iomem
*pci_bar
)
6945 if (bfa_flash_cmd_act_check(pci_bar
))
6952 * End flash read operation.
6954 * @param[in] pci_bar - pci bar address
6955 * @param[in] len - read data length
6956 * @param[in] buf - read data buffer
6960 bfa_flash_read_end(void __iomem
*pci_bar
, u32 len
, char *buf
)
6966 * read data fifo up to 32 words
6968 for (i
= 0; i
< len
; i
+= 4) {
6969 u32 w
= readl(pci_bar
+ FLI_RDDATA_REG
);
6970 *((u32
*) (buf
+ i
)) = swab32(w
);
6973 bfa_flash_fifo_flush(pci_bar
);
6978 * Perform flash raw read.
6980 * @param[in] pci_bar - pci bar address
6981 * @param[in] offset - flash partition address offset
6982 * @param[in] buf - read data buffer
6983 * @param[in] len - read data length
6989 #define FLASH_BLOCKING_OP_MAX 500
6990 #define FLASH_SEM_LOCK_REG 0x18820
6993 bfa_raw_sem_get(void __iomem
*bar
)
6997 locked
= readl((bar
+ FLASH_SEM_LOCK_REG
));
7003 bfa_flash_sem_get(void __iomem
*bar
)
7005 u32 n
= FLASH_BLOCKING_OP_MAX
;
7007 while (!bfa_raw_sem_get(bar
)) {
7009 return BFA_STATUS_BADFLASH
;
7012 return BFA_STATUS_OK
;
7016 bfa_flash_sem_put(void __iomem
*bar
)
7018 writel(0, (bar
+ FLASH_SEM_LOCK_REG
));
7022 bfa_flash_raw_read(void __iomem
*pci_bar
, u32 offset
, char *buf
,
7027 u32 off
, l
, s
, residue
, fifo_sz
;
7031 fifo_sz
= BFA_FLASH_FIFO_SIZE
;
7032 status
= bfa_flash_sem_get(pci_bar
);
7033 if (status
!= BFA_STATUS_OK
)
7039 l
= (n
+ 1) * fifo_sz
- s
;
7043 status
= bfa_flash_read_start(pci_bar
, offset
+ off
, l
,
7046 bfa_flash_sem_put(pci_bar
);
7047 return BFA_STATUS_FAILED
;
7050 n
= BFA_FLASH_BLOCKING_OP_MAX
;
7051 while (bfa_flash_read_check(pci_bar
)) {
7053 bfa_flash_sem_put(pci_bar
);
7054 return BFA_STATUS_FAILED
;
7058 bfa_flash_read_end(pci_bar
, l
, &buf
[off
]);
7063 bfa_flash_sem_put(pci_bar
);
7065 return BFA_STATUS_OK
;