1 // SPDX-License-Identifier: GPL-2.0-only
3 * Linux network driver for QLogic BR-series Converged Network Adapter.
6 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
7 * Copyright (c) 2014-2015 QLogic Corporation
16 /* IOC local definitions */
18 /* Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details. */
20 #define bfa_ioc_firmware_lock(__ioc) \
21 ((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
22 #define bfa_ioc_firmware_unlock(__ioc) \
23 ((__ioc)->ioc_hwif->ioc_firmware_unlock(__ioc))
24 #define bfa_ioc_reg_init(__ioc) ((__ioc)->ioc_hwif->ioc_reg_init(__ioc))
25 #define bfa_ioc_map_port(__ioc) ((__ioc)->ioc_hwif->ioc_map_port(__ioc))
26 #define bfa_ioc_notify_fail(__ioc) \
27 ((__ioc)->ioc_hwif->ioc_notify_fail(__ioc))
28 #define bfa_ioc_sync_start(__ioc) \
29 ((__ioc)->ioc_hwif->ioc_sync_start(__ioc))
30 #define bfa_ioc_sync_join(__ioc) \
31 ((__ioc)->ioc_hwif->ioc_sync_join(__ioc))
32 #define bfa_ioc_sync_leave(__ioc) \
33 ((__ioc)->ioc_hwif->ioc_sync_leave(__ioc))
34 #define bfa_ioc_sync_ack(__ioc) \
35 ((__ioc)->ioc_hwif->ioc_sync_ack(__ioc))
36 #define bfa_ioc_sync_complete(__ioc) \
37 ((__ioc)->ioc_hwif->ioc_sync_complete(__ioc))
38 #define bfa_ioc_set_cur_ioc_fwstate(__ioc, __fwstate) \
39 ((__ioc)->ioc_hwif->ioc_set_fwstate(__ioc, __fwstate))
40 #define bfa_ioc_get_cur_ioc_fwstate(__ioc) \
41 ((__ioc)->ioc_hwif->ioc_get_fwstate(__ioc))
42 #define bfa_ioc_set_alt_ioc_fwstate(__ioc, __fwstate) \
43 ((__ioc)->ioc_hwif->ioc_set_alt_fwstate(__ioc, __fwstate))
45 static bool bfa_nw_auto_recover
= true;
48 * forward declarations
50 static void bfa_ioc_hw_sem_init(struct bfa_ioc
*ioc
);
51 static void bfa_ioc_hw_sem_get(struct bfa_ioc
*ioc
);
52 static void bfa_ioc_hw_sem_get_cancel(struct bfa_ioc
*ioc
);
53 static void bfa_ioc_hwinit(struct bfa_ioc
*ioc
, bool force
);
54 static void bfa_ioc_poll_fwinit(struct bfa_ioc
*ioc
);
55 static void bfa_ioc_send_enable(struct bfa_ioc
*ioc
);
56 static void bfa_ioc_send_disable(struct bfa_ioc
*ioc
);
57 static void bfa_ioc_send_getattr(struct bfa_ioc
*ioc
);
58 static void bfa_ioc_hb_monitor(struct bfa_ioc
*ioc
);
59 static void bfa_ioc_hb_stop(struct bfa_ioc
*ioc
);
60 static void bfa_ioc_reset(struct bfa_ioc
*ioc
, bool force
);
61 static void bfa_ioc_mbox_poll(struct bfa_ioc
*ioc
);
62 static void bfa_ioc_mbox_flush(struct bfa_ioc
*ioc
);
63 static void bfa_ioc_recover(struct bfa_ioc
*ioc
);
64 static void bfa_ioc_event_notify(struct bfa_ioc
*, enum bfa_ioc_event
);
65 static void bfa_ioc_disable_comp(struct bfa_ioc
*ioc
);
66 static void bfa_ioc_lpu_stop(struct bfa_ioc
*ioc
);
67 static void bfa_nw_ioc_debug_save_ftrc(struct bfa_ioc
*ioc
);
68 static void bfa_ioc_fail_notify(struct bfa_ioc
*ioc
);
69 static void bfa_ioc_pf_enabled(struct bfa_ioc
*ioc
);
70 static void bfa_ioc_pf_disabled(struct bfa_ioc
*ioc
);
71 static void bfa_ioc_pf_failed(struct bfa_ioc
*ioc
);
72 static void bfa_ioc_pf_hwfailed(struct bfa_ioc
*ioc
);
73 static void bfa_ioc_pf_fwmismatch(struct bfa_ioc
*ioc
);
74 static enum bfa_status
bfa_ioc_boot(struct bfa_ioc
*ioc
,
75 enum bfi_fwboot_type boot_type
, u32 boot_param
);
76 static u32
bfa_ioc_smem_pgnum(struct bfa_ioc
*ioc
, u32 fmaddr
);
77 static void bfa_ioc_get_adapter_serial_num(struct bfa_ioc
*ioc
,
79 static void bfa_ioc_get_adapter_fw_ver(struct bfa_ioc
*ioc
,
81 static void bfa_ioc_get_pci_chip_rev(struct bfa_ioc
*ioc
,
83 static void bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc
*ioc
,
85 static void bfa_ioc_get_adapter_manufacturer(struct bfa_ioc
*ioc
,
87 static void bfa_ioc_get_adapter_model(struct bfa_ioc
*ioc
, char *model
);
88 static u64
bfa_ioc_get_pwwn(struct bfa_ioc
*ioc
);
90 /* IOC state machine definitions/declarations */
92 IOC_E_RESET
= 1, /*!< IOC reset request */
93 IOC_E_ENABLE
= 2, /*!< IOC enable request */
94 IOC_E_DISABLE
= 3, /*!< IOC disable request */
95 IOC_E_DETACH
= 4, /*!< driver detach cleanup */
96 IOC_E_ENABLED
= 5, /*!< f/w enabled */
97 IOC_E_FWRSP_GETATTR
= 6, /*!< IOC get attribute response */
98 IOC_E_DISABLED
= 7, /*!< f/w disabled */
99 IOC_E_PFFAILED
= 8, /*!< failure notice by iocpf sm */
100 IOC_E_HBFAIL
= 9, /*!< heartbeat failure */
101 IOC_E_HWERROR
= 10, /*!< hardware error interrupt */
102 IOC_E_TIMEOUT
= 11, /*!< timeout */
103 IOC_E_HWFAILED
= 12, /*!< PCI mapping failure notice */
106 bfa_fsm_state_decl(bfa_ioc
, uninit
, struct bfa_ioc
, enum ioc_event
);
107 bfa_fsm_state_decl(bfa_ioc
, reset
, struct bfa_ioc
, enum ioc_event
);
108 bfa_fsm_state_decl(bfa_ioc
, enabling
, struct bfa_ioc
, enum ioc_event
);
109 bfa_fsm_state_decl(bfa_ioc
, getattr
, struct bfa_ioc
, enum ioc_event
);
110 bfa_fsm_state_decl(bfa_ioc
, op
, struct bfa_ioc
, enum ioc_event
);
111 bfa_fsm_state_decl(bfa_ioc
, fail_retry
, struct bfa_ioc
, enum ioc_event
);
112 bfa_fsm_state_decl(bfa_ioc
, fail
, struct bfa_ioc
, enum ioc_event
);
113 bfa_fsm_state_decl(bfa_ioc
, disabling
, struct bfa_ioc
, enum ioc_event
);
114 bfa_fsm_state_decl(bfa_ioc
, disabled
, struct bfa_ioc
, enum ioc_event
);
115 bfa_fsm_state_decl(bfa_ioc
, hwfail
, struct bfa_ioc
, enum ioc_event
);
117 static struct ioc_sm_table_s ioc_sm_table
[] = {
118 {BFA_SM(bfa_ioc_sm_uninit
), BFA_IOC_UNINIT
},
119 {BFA_SM(bfa_ioc_sm_reset
), BFA_IOC_RESET
},
120 {BFA_SM(bfa_ioc_sm_enabling
), BFA_IOC_ENABLING
},
121 {BFA_SM(bfa_ioc_sm_getattr
), BFA_IOC_GETATTR
},
122 {BFA_SM(bfa_ioc_sm_op
), BFA_IOC_OPERATIONAL
},
123 {BFA_SM(bfa_ioc_sm_fail_retry
), BFA_IOC_INITFAIL
},
124 {BFA_SM(bfa_ioc_sm_fail
), BFA_IOC_FAIL
},
125 {BFA_SM(bfa_ioc_sm_disabling
), BFA_IOC_DISABLING
},
126 {BFA_SM(bfa_ioc_sm_disabled
), BFA_IOC_DISABLED
},
127 {BFA_SM(bfa_ioc_sm_hwfail
), BFA_IOC_HWFAIL
},
131 * Forward declareations for iocpf state machine
133 static void bfa_iocpf_enable(struct bfa_ioc
*ioc
);
134 static void bfa_iocpf_disable(struct bfa_ioc
*ioc
);
135 static void bfa_iocpf_fail(struct bfa_ioc
*ioc
);
136 static void bfa_iocpf_initfail(struct bfa_ioc
*ioc
);
137 static void bfa_iocpf_getattrfail(struct bfa_ioc
*ioc
);
138 static void bfa_iocpf_stop(struct bfa_ioc
*ioc
);
140 /* IOCPF state machine events */
142 IOCPF_E_ENABLE
= 1, /*!< IOCPF enable request */
143 IOCPF_E_DISABLE
= 2, /*!< IOCPF disable request */
144 IOCPF_E_STOP
= 3, /*!< stop on driver detach */
145 IOCPF_E_FWREADY
= 4, /*!< f/w initialization done */
146 IOCPF_E_FWRSP_ENABLE
= 5, /*!< enable f/w response */
147 IOCPF_E_FWRSP_DISABLE
= 6, /*!< disable f/w response */
148 IOCPF_E_FAIL
= 7, /*!< failure notice by ioc sm */
149 IOCPF_E_INITFAIL
= 8, /*!< init fail notice by ioc sm */
150 IOCPF_E_GETATTRFAIL
= 9, /*!< init fail notice by ioc sm */
151 IOCPF_E_SEMLOCKED
= 10, /*!< h/w semaphore is locked */
152 IOCPF_E_TIMEOUT
= 11, /*!< f/w response timeout */
153 IOCPF_E_SEM_ERROR
= 12, /*!< h/w sem mapping error */
157 enum bfa_iocpf_state
{
158 BFA_IOCPF_RESET
= 1, /*!< IOC is in reset state */
159 BFA_IOCPF_SEMWAIT
= 2, /*!< Waiting for IOC h/w semaphore */
160 BFA_IOCPF_HWINIT
= 3, /*!< IOC h/w is being initialized */
161 BFA_IOCPF_READY
= 4, /*!< IOCPF is initialized */
162 BFA_IOCPF_INITFAIL
= 5, /*!< IOCPF failed */
163 BFA_IOCPF_FAIL
= 6, /*!< IOCPF failed */
164 BFA_IOCPF_DISABLING
= 7, /*!< IOCPF is being disabled */
165 BFA_IOCPF_DISABLED
= 8, /*!< IOCPF is disabled */
166 BFA_IOCPF_FWMISMATCH
= 9, /*!< IOC f/w different from drivers */
169 bfa_fsm_state_decl(bfa_iocpf
, reset
, struct bfa_iocpf
, enum iocpf_event
);
170 bfa_fsm_state_decl(bfa_iocpf
, fwcheck
, struct bfa_iocpf
, enum iocpf_event
);
171 bfa_fsm_state_decl(bfa_iocpf
, mismatch
, struct bfa_iocpf
, enum iocpf_event
);
172 bfa_fsm_state_decl(bfa_iocpf
, semwait
, struct bfa_iocpf
, enum iocpf_event
);
173 bfa_fsm_state_decl(bfa_iocpf
, hwinit
, struct bfa_iocpf
, enum iocpf_event
);
174 bfa_fsm_state_decl(bfa_iocpf
, enabling
, struct bfa_iocpf
, enum iocpf_event
);
175 bfa_fsm_state_decl(bfa_iocpf
, ready
, struct bfa_iocpf
, enum iocpf_event
);
176 bfa_fsm_state_decl(bfa_iocpf
, initfail_sync
, struct bfa_iocpf
,
178 bfa_fsm_state_decl(bfa_iocpf
, initfail
, struct bfa_iocpf
, enum iocpf_event
);
179 bfa_fsm_state_decl(bfa_iocpf
, fail_sync
, struct bfa_iocpf
, enum iocpf_event
);
180 bfa_fsm_state_decl(bfa_iocpf
, fail
, struct bfa_iocpf
, enum iocpf_event
);
181 bfa_fsm_state_decl(bfa_iocpf
, disabling
, struct bfa_iocpf
, enum iocpf_event
);
182 bfa_fsm_state_decl(bfa_iocpf
, disabling_sync
, struct bfa_iocpf
,
184 bfa_fsm_state_decl(bfa_iocpf
, disabled
, struct bfa_iocpf
, enum iocpf_event
);
186 static struct iocpf_sm_table_s iocpf_sm_table
[] = {
187 {BFA_SM(bfa_iocpf_sm_reset
), BFA_IOCPF_RESET
},
188 {BFA_SM(bfa_iocpf_sm_fwcheck
), BFA_IOCPF_FWMISMATCH
},
189 {BFA_SM(bfa_iocpf_sm_mismatch
), BFA_IOCPF_FWMISMATCH
},
190 {BFA_SM(bfa_iocpf_sm_semwait
), BFA_IOCPF_SEMWAIT
},
191 {BFA_SM(bfa_iocpf_sm_hwinit
), BFA_IOCPF_HWINIT
},
192 {BFA_SM(bfa_iocpf_sm_enabling
), BFA_IOCPF_HWINIT
},
193 {BFA_SM(bfa_iocpf_sm_ready
), BFA_IOCPF_READY
},
194 {BFA_SM(bfa_iocpf_sm_initfail_sync
), BFA_IOCPF_INITFAIL
},
195 {BFA_SM(bfa_iocpf_sm_initfail
), BFA_IOCPF_INITFAIL
},
196 {BFA_SM(bfa_iocpf_sm_fail_sync
), BFA_IOCPF_FAIL
},
197 {BFA_SM(bfa_iocpf_sm_fail
), BFA_IOCPF_FAIL
},
198 {BFA_SM(bfa_iocpf_sm_disabling
), BFA_IOCPF_DISABLING
},
199 {BFA_SM(bfa_iocpf_sm_disabling_sync
), BFA_IOCPF_DISABLING
},
200 {BFA_SM(bfa_iocpf_sm_disabled
), BFA_IOCPF_DISABLED
},
203 /* IOC State Machine */
205 /* Beginning state. IOC uninit state. */
207 bfa_ioc_sm_uninit_entry(struct bfa_ioc
*ioc
)
211 /* IOC is in uninit state. */
213 bfa_ioc_sm_uninit(struct bfa_ioc
*ioc
, enum ioc_event event
)
217 bfa_fsm_set_state(ioc
, bfa_ioc_sm_reset
);
225 /* Reset entry actions -- initialize state machine */
227 bfa_ioc_sm_reset_entry(struct bfa_ioc
*ioc
)
229 bfa_fsm_set_state(&ioc
->iocpf
, bfa_iocpf_sm_reset
);
232 /* IOC is in reset state. */
234 bfa_ioc_sm_reset(struct bfa_ioc
*ioc
, enum ioc_event event
)
238 bfa_fsm_set_state(ioc
, bfa_ioc_sm_enabling
);
242 bfa_ioc_disable_comp(ioc
);
246 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
255 bfa_ioc_sm_enabling_entry(struct bfa_ioc
*ioc
)
257 bfa_iocpf_enable(ioc
);
260 /* Host IOC function is being enabled, awaiting response from firmware.
261 * Semaphore is acquired.
264 bfa_ioc_sm_enabling(struct bfa_ioc
*ioc
, enum ioc_event event
)
268 bfa_fsm_set_state(ioc
, bfa_ioc_sm_getattr
);
274 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
275 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
276 if (event
!= IOC_E_PFFAILED
)
277 bfa_iocpf_initfail(ioc
);
281 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
282 bfa_fsm_set_state(ioc
, bfa_ioc_sm_hwfail
);
286 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
290 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
302 /* Semaphore should be acquired for version check. */
304 bfa_ioc_sm_getattr_entry(struct bfa_ioc
*ioc
)
306 mod_timer(&ioc
->ioc_timer
, jiffies
+
307 msecs_to_jiffies(BFA_IOC_TOV
));
308 bfa_ioc_send_getattr(ioc
);
311 /* IOC configuration in progress. Timer is active. */
313 bfa_ioc_sm_getattr(struct bfa_ioc
*ioc
, enum ioc_event event
)
316 case IOC_E_FWRSP_GETATTR
:
317 del_timer(&ioc
->ioc_timer
);
318 bfa_fsm_set_state(ioc
, bfa_ioc_sm_op
);
323 del_timer(&ioc
->ioc_timer
);
326 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
327 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
328 if (event
!= IOC_E_PFFAILED
)
329 bfa_iocpf_getattrfail(ioc
);
333 del_timer(&ioc
->ioc_timer
);
334 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
346 bfa_ioc_sm_op_entry(struct bfa_ioc
*ioc
)
348 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_OK
);
349 bfa_ioc_event_notify(ioc
, BFA_IOC_E_ENABLED
);
350 bfa_ioc_hb_monitor(ioc
);
354 bfa_ioc_sm_op(struct bfa_ioc
*ioc
, enum ioc_event event
)
361 bfa_ioc_hb_stop(ioc
);
362 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
367 bfa_ioc_hb_stop(ioc
);
371 if (ioc
->iocpf
.auto_recover
)
372 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail_retry
);
374 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
376 bfa_ioc_fail_notify(ioc
);
378 if (event
!= IOC_E_PFFAILED
)
388 bfa_ioc_sm_disabling_entry(struct bfa_ioc
*ioc
)
390 bfa_iocpf_disable(ioc
);
393 /* IOC is being disabled */
395 bfa_ioc_sm_disabling(struct bfa_ioc
*ioc
, enum ioc_event event
)
399 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabled
);
404 * No state change. Will move to disabled state
405 * after iocpf sm completes failure processing and
406 * moves to disabled state.
412 bfa_fsm_set_state(ioc
, bfa_ioc_sm_hwfail
);
413 bfa_ioc_disable_comp(ioc
);
421 /* IOC disable completion entry. */
423 bfa_ioc_sm_disabled_entry(struct bfa_ioc
*ioc
)
425 bfa_ioc_disable_comp(ioc
);
429 bfa_ioc_sm_disabled(struct bfa_ioc
*ioc
, enum ioc_event event
)
433 bfa_fsm_set_state(ioc
, bfa_ioc_sm_enabling
);
437 ioc
->cbfn
->disable_cbfn(ioc
->bfa
);
441 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
451 bfa_ioc_sm_fail_retry_entry(struct bfa_ioc
*ioc
)
455 /* Hardware initialization retry. */
457 bfa_ioc_sm_fail_retry(struct bfa_ioc
*ioc
, enum ioc_event event
)
461 bfa_fsm_set_state(ioc
, bfa_ioc_sm_getattr
);
467 * Initialization retry failed.
469 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
470 bfa_fsm_set_state(ioc
, bfa_ioc_sm_fail
);
471 if (event
!= IOC_E_PFFAILED
)
472 bfa_iocpf_initfail(ioc
);
476 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
477 bfa_fsm_set_state(ioc
, bfa_ioc_sm_hwfail
);
484 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
488 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
498 bfa_ioc_sm_fail_entry(struct bfa_ioc
*ioc
)
504 bfa_ioc_sm_fail(struct bfa_ioc
*ioc
, enum ioc_event event
)
508 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
512 bfa_fsm_set_state(ioc
, bfa_ioc_sm_disabling
);
516 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
521 /* HB failure notification, ignore. */
530 bfa_ioc_sm_hwfail_entry(struct bfa_ioc
*ioc
)
536 bfa_ioc_sm_hwfail(struct bfa_ioc
*ioc
, enum ioc_event event
)
541 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
545 ioc
->cbfn
->disable_cbfn(ioc
->bfa
);
549 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
557 /* IOCPF State Machine */
559 /* Reset entry actions -- initialize state machine */
561 bfa_iocpf_sm_reset_entry(struct bfa_iocpf
*iocpf
)
563 iocpf
->fw_mismatch_notified
= false;
564 iocpf
->auto_recover
= bfa_nw_auto_recover
;
567 /* Beginning state. IOC is in reset state. */
569 bfa_iocpf_sm_reset(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
573 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fwcheck
);
584 /* Semaphore should be acquired for version check. */
586 bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf
*iocpf
)
588 bfa_ioc_hw_sem_init(iocpf
->ioc
);
589 bfa_ioc_hw_sem_get(iocpf
->ioc
);
592 /* Awaiting h/w semaphore to continue with version check. */
594 bfa_iocpf_sm_fwcheck(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
596 struct bfa_ioc
*ioc
= iocpf
->ioc
;
599 case IOCPF_E_SEMLOCKED
:
600 if (bfa_ioc_firmware_lock(ioc
)) {
601 if (bfa_ioc_sync_start(ioc
)) {
602 bfa_ioc_sync_join(ioc
);
603 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_hwinit
);
605 bfa_ioc_firmware_unlock(ioc
);
606 bfa_nw_ioc_hw_sem_release(ioc
);
607 mod_timer(&ioc
->sem_timer
, jiffies
+
608 msecs_to_jiffies(BFA_IOC_HWSEM_TOV
));
611 bfa_nw_ioc_hw_sem_release(ioc
);
612 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_mismatch
);
616 case IOCPF_E_SEM_ERROR
:
617 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
618 bfa_ioc_pf_hwfailed(ioc
);
621 case IOCPF_E_DISABLE
:
622 bfa_ioc_hw_sem_get_cancel(ioc
);
623 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
624 bfa_ioc_pf_disabled(ioc
);
628 bfa_ioc_hw_sem_get_cancel(ioc
);
629 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
637 /* Notify enable completion callback */
639 bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf
*iocpf
)
641 /* Call only the first time sm enters fwmismatch state. */
642 if (!iocpf
->fw_mismatch_notified
)
643 bfa_ioc_pf_fwmismatch(iocpf
->ioc
);
645 iocpf
->fw_mismatch_notified
= true;
646 mod_timer(&(iocpf
->ioc
)->iocpf_timer
, jiffies
+
647 msecs_to_jiffies(BFA_IOC_TOV
));
650 /* Awaiting firmware version match. */
652 bfa_iocpf_sm_mismatch(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
654 struct bfa_ioc
*ioc
= iocpf
->ioc
;
657 case IOCPF_E_TIMEOUT
:
658 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fwcheck
);
661 case IOCPF_E_DISABLE
:
662 del_timer(&ioc
->iocpf_timer
);
663 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
664 bfa_ioc_pf_disabled(ioc
);
668 del_timer(&ioc
->iocpf_timer
);
669 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
677 /* Request for semaphore. */
679 bfa_iocpf_sm_semwait_entry(struct bfa_iocpf
*iocpf
)
681 bfa_ioc_hw_sem_get(iocpf
->ioc
);
684 /* Awaiting semaphore for h/w initialzation. */
686 bfa_iocpf_sm_semwait(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
688 struct bfa_ioc
*ioc
= iocpf
->ioc
;
691 case IOCPF_E_SEMLOCKED
:
692 if (bfa_ioc_sync_complete(ioc
)) {
693 bfa_ioc_sync_join(ioc
);
694 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_hwinit
);
696 bfa_nw_ioc_hw_sem_release(ioc
);
697 mod_timer(&ioc
->sem_timer
, jiffies
+
698 msecs_to_jiffies(BFA_IOC_HWSEM_TOV
));
702 case IOCPF_E_SEM_ERROR
:
703 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
704 bfa_ioc_pf_hwfailed(ioc
);
707 case IOCPF_E_DISABLE
:
708 bfa_ioc_hw_sem_get_cancel(ioc
);
709 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
718 bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf
*iocpf
)
720 iocpf
->poll_time
= 0;
721 bfa_ioc_reset(iocpf
->ioc
, false);
724 /* Hardware is being initialized. Interrupts are enabled.
725 * Holding hardware semaphore lock.
728 bfa_iocpf_sm_hwinit(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
730 struct bfa_ioc
*ioc
= iocpf
->ioc
;
733 case IOCPF_E_FWREADY
:
734 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_enabling
);
737 case IOCPF_E_TIMEOUT
:
738 bfa_nw_ioc_hw_sem_release(ioc
);
739 bfa_ioc_pf_failed(ioc
);
740 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail_sync
);
743 case IOCPF_E_DISABLE
:
744 del_timer(&ioc
->iocpf_timer
);
745 bfa_ioc_sync_leave(ioc
);
746 bfa_nw_ioc_hw_sem_release(ioc
);
747 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
756 bfa_iocpf_sm_enabling_entry(struct bfa_iocpf
*iocpf
)
758 mod_timer(&(iocpf
->ioc
)->iocpf_timer
, jiffies
+
759 msecs_to_jiffies(BFA_IOC_TOV
));
761 * Enable Interrupts before sending fw IOC ENABLE cmd.
763 iocpf
->ioc
->cbfn
->reset_cbfn(iocpf
->ioc
->bfa
);
764 bfa_ioc_send_enable(iocpf
->ioc
);
767 /* Host IOC function is being enabled, awaiting response from firmware.
768 * Semaphore is acquired.
771 bfa_iocpf_sm_enabling(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
773 struct bfa_ioc
*ioc
= iocpf
->ioc
;
776 case IOCPF_E_FWRSP_ENABLE
:
777 del_timer(&ioc
->iocpf_timer
);
778 bfa_nw_ioc_hw_sem_release(ioc
);
779 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_ready
);
782 case IOCPF_E_INITFAIL
:
783 del_timer(&ioc
->iocpf_timer
);
786 case IOCPF_E_TIMEOUT
:
787 bfa_nw_ioc_hw_sem_release(ioc
);
788 if (event
== IOCPF_E_TIMEOUT
)
789 bfa_ioc_pf_failed(ioc
);
790 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail_sync
);
793 case IOCPF_E_DISABLE
:
794 del_timer(&ioc
->iocpf_timer
);
795 bfa_nw_ioc_hw_sem_release(ioc
);
796 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling
);
805 bfa_iocpf_sm_ready_entry(struct bfa_iocpf
*iocpf
)
807 bfa_ioc_pf_enabled(iocpf
->ioc
);
811 bfa_iocpf_sm_ready(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
814 case IOCPF_E_DISABLE
:
815 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling
);
818 case IOCPF_E_GETATTRFAIL
:
819 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail_sync
);
823 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail_sync
);
832 bfa_iocpf_sm_disabling_entry(struct bfa_iocpf
*iocpf
)
834 mod_timer(&(iocpf
->ioc
)->iocpf_timer
, jiffies
+
835 msecs_to_jiffies(BFA_IOC_TOV
));
836 bfa_ioc_send_disable(iocpf
->ioc
);
839 /* IOC is being disabled */
841 bfa_iocpf_sm_disabling(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
843 struct bfa_ioc
*ioc
= iocpf
->ioc
;
846 case IOCPF_E_FWRSP_DISABLE
:
847 del_timer(&ioc
->iocpf_timer
);
848 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
852 del_timer(&ioc
->iocpf_timer
);
855 case IOCPF_E_TIMEOUT
:
856 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_FAIL
);
857 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
860 case IOCPF_E_FWRSP_ENABLE
:
869 bfa_iocpf_sm_disabling_sync_entry(struct bfa_iocpf
*iocpf
)
871 bfa_ioc_hw_sem_get(iocpf
->ioc
);
874 /* IOC hb ack request is being removed. */
876 bfa_iocpf_sm_disabling_sync(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
878 struct bfa_ioc
*ioc
= iocpf
->ioc
;
881 case IOCPF_E_SEMLOCKED
:
882 bfa_ioc_sync_leave(ioc
);
883 bfa_nw_ioc_hw_sem_release(ioc
);
884 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
887 case IOCPF_E_SEM_ERROR
:
888 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
889 bfa_ioc_pf_hwfailed(ioc
);
900 /* IOC disable completion entry. */
902 bfa_iocpf_sm_disabled_entry(struct bfa_iocpf
*iocpf
)
904 bfa_ioc_mbox_flush(iocpf
->ioc
);
905 bfa_ioc_pf_disabled(iocpf
->ioc
);
909 bfa_iocpf_sm_disabled(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
911 struct bfa_ioc
*ioc
= iocpf
->ioc
;
915 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_semwait
);
919 bfa_ioc_firmware_unlock(ioc
);
920 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
929 bfa_iocpf_sm_initfail_sync_entry(struct bfa_iocpf
*iocpf
)
931 bfa_nw_ioc_debug_save_ftrc(iocpf
->ioc
);
932 bfa_ioc_hw_sem_get(iocpf
->ioc
);
935 /* Hardware initialization failed. */
937 bfa_iocpf_sm_initfail_sync(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
939 struct bfa_ioc
*ioc
= iocpf
->ioc
;
942 case IOCPF_E_SEMLOCKED
:
943 bfa_ioc_notify_fail(ioc
);
944 bfa_ioc_sync_leave(ioc
);
945 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_FAIL
);
946 bfa_nw_ioc_hw_sem_release(ioc
);
947 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_initfail
);
950 case IOCPF_E_SEM_ERROR
:
951 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
952 bfa_ioc_pf_hwfailed(ioc
);
955 case IOCPF_E_DISABLE
:
956 bfa_ioc_hw_sem_get_cancel(ioc
);
957 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
961 bfa_ioc_hw_sem_get_cancel(ioc
);
962 bfa_ioc_firmware_unlock(ioc
);
963 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
975 bfa_iocpf_sm_initfail_entry(struct bfa_iocpf
*iocpf
)
979 /* Hardware initialization failed. */
981 bfa_iocpf_sm_initfail(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
983 struct bfa_ioc
*ioc
= iocpf
->ioc
;
986 case IOCPF_E_DISABLE
:
987 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
991 bfa_ioc_firmware_unlock(ioc
);
992 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_reset
);
1001 bfa_iocpf_sm_fail_sync_entry(struct bfa_iocpf
*iocpf
)
1004 * Mark IOC as failed in hardware and stop firmware.
1006 bfa_ioc_lpu_stop(iocpf
->ioc
);
1009 * Flush any queued up mailbox requests.
1011 bfa_ioc_mbox_flush(iocpf
->ioc
);
1012 bfa_ioc_hw_sem_get(iocpf
->ioc
);
1015 /* IOC is in failed state. */
1017 bfa_iocpf_sm_fail_sync(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
1019 struct bfa_ioc
*ioc
= iocpf
->ioc
;
1022 case IOCPF_E_SEMLOCKED
:
1023 bfa_ioc_sync_ack(ioc
);
1024 bfa_ioc_notify_fail(ioc
);
1025 if (!iocpf
->auto_recover
) {
1026 bfa_ioc_sync_leave(ioc
);
1027 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_FAIL
);
1028 bfa_nw_ioc_hw_sem_release(ioc
);
1029 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
1031 if (bfa_ioc_sync_complete(ioc
))
1032 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_hwinit
);
1034 bfa_nw_ioc_hw_sem_release(ioc
);
1035 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_semwait
);
1040 case IOCPF_E_SEM_ERROR
:
1041 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_fail
);
1042 bfa_ioc_pf_hwfailed(ioc
);
1045 case IOCPF_E_DISABLE
:
1046 bfa_ioc_hw_sem_get_cancel(ioc
);
1047 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabling_sync
);
1054 bfa_sm_fault(event
);
1059 bfa_iocpf_sm_fail_entry(struct bfa_iocpf
*iocpf
)
1063 /* IOC is in failed state. */
1065 bfa_iocpf_sm_fail(struct bfa_iocpf
*iocpf
, enum iocpf_event event
)
1068 case IOCPF_E_DISABLE
:
1069 bfa_fsm_set_state(iocpf
, bfa_iocpf_sm_disabled
);
1073 bfa_sm_fault(event
);
1077 /* BFA IOC private functions */
1079 /* Notify common modules registered for notification. */
1081 bfa_ioc_event_notify(struct bfa_ioc
*ioc
, enum bfa_ioc_event event
)
1083 struct bfa_ioc_notify
*notify
;
1085 list_for_each_entry(notify
, &ioc
->notify_q
, qe
)
1086 notify
->cbfn(notify
->cbarg
, event
);
1090 bfa_ioc_disable_comp(struct bfa_ioc
*ioc
)
1092 ioc
->cbfn
->disable_cbfn(ioc
->bfa
);
1093 bfa_ioc_event_notify(ioc
, BFA_IOC_E_DISABLED
);
1097 bfa_nw_ioc_sem_get(void __iomem
*sem_reg
)
1101 #define BFA_SEM_SPINCNT 3000
1103 r32
= readl(sem_reg
);
1105 while ((r32
& 1) && (cnt
< BFA_SEM_SPINCNT
)) {
1108 r32
= readl(sem_reg
);
1118 bfa_nw_ioc_sem_release(void __iomem
*sem_reg
)
1124 /* Clear fwver hdr */
1126 bfa_ioc_fwver_clear(struct bfa_ioc
*ioc
)
1128 u32 pgnum
, loff
= 0;
1131 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, loff
);
1132 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
1134 for (i
= 0; i
< (sizeof(struct bfi_ioc_image_hdr
) / sizeof(u32
)); i
++) {
1135 writel(0, ioc
->ioc_regs
.smem_page_start
+ loff
);
1136 loff
+= sizeof(u32
);
1142 bfa_ioc_hw_sem_init(struct bfa_ioc
*ioc
)
1144 struct bfi_ioc_image_hdr fwhdr
;
1147 /* Spin on init semaphore to serialize. */
1148 r32
= readl(ioc
->ioc_regs
.ioc_init_sem_reg
);
1151 r32
= readl(ioc
->ioc_regs
.ioc_init_sem_reg
);
1154 fwstate
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
1155 if (fwstate
== BFI_IOC_UNINIT
) {
1156 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
1160 bfa_nw_ioc_fwver_get(ioc
, &fwhdr
);
1162 if (swab32(fwhdr
.exec
) == BFI_FWBOOT_TYPE_NORMAL
) {
1163 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
1167 bfa_ioc_fwver_clear(ioc
);
1168 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_UNINIT
);
1169 bfa_ioc_set_alt_ioc_fwstate(ioc
, BFI_IOC_UNINIT
);
1172 * Try to lock and then unlock the semaphore.
1174 readl(ioc
->ioc_regs
.ioc_sem_reg
);
1175 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
1177 /* Unlock init semaphore */
1178 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
1182 bfa_ioc_hw_sem_get(struct bfa_ioc
*ioc
)
1187 * First read to the semaphore register will return 0, subsequent reads
1188 * will return 1. Semaphore is released by writing 1 to the register
1190 r32
= readl(ioc
->ioc_regs
.ioc_sem_reg
);
1192 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_SEM_ERROR
);
1196 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_SEMLOCKED
);
1200 mod_timer(&ioc
->sem_timer
, jiffies
+
1201 msecs_to_jiffies(BFA_IOC_HWSEM_TOV
));
1205 bfa_nw_ioc_hw_sem_release(struct bfa_ioc
*ioc
)
1207 writel(1, ioc
->ioc_regs
.ioc_sem_reg
);
1211 bfa_ioc_hw_sem_get_cancel(struct bfa_ioc
*ioc
)
1213 del_timer(&ioc
->sem_timer
);
1216 /* Initialize LPU local memory (aka secondary memory / SRAM) */
1218 bfa_ioc_lmem_init(struct bfa_ioc
*ioc
)
1222 #define PSS_LMEM_INIT_TIME 10000
1224 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1225 pss_ctl
&= ~__PSS_LMEM_RESET
;
1226 pss_ctl
|= __PSS_LMEM_INIT_EN
;
1229 * i2c workaround 12.5khz clock
1231 pss_ctl
|= __PSS_I2C_CLK_DIV(3UL);
1232 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1235 * wait for memory initialization to be complete
1239 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1241 } while (!(pss_ctl
& __PSS_LMEM_INIT_DONE
) && (i
< PSS_LMEM_INIT_TIME
));
1244 * If memory initialization is not successful, IOC timeout will catch
1247 BUG_ON(!(pss_ctl
& __PSS_LMEM_INIT_DONE
));
1249 pss_ctl
&= ~(__PSS_LMEM_INIT_DONE
| __PSS_LMEM_INIT_EN
);
1250 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1254 bfa_ioc_lpu_start(struct bfa_ioc
*ioc
)
1259 * Take processor out of reset.
1261 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1262 pss_ctl
&= ~__PSS_LPU0_RESET
;
1264 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1268 bfa_ioc_lpu_stop(struct bfa_ioc
*ioc
)
1273 * Put processors in reset.
1275 pss_ctl
= readl(ioc
->ioc_regs
.pss_ctl_reg
);
1276 pss_ctl
|= (__PSS_LPU0_RESET
| __PSS_LPU1_RESET
);
1278 writel(pss_ctl
, ioc
->ioc_regs
.pss_ctl_reg
);
1281 /* Get driver and firmware versions. */
1283 bfa_nw_ioc_fwver_get(struct bfa_ioc
*ioc
, struct bfi_ioc_image_hdr
*fwhdr
)
1288 u32
*fwsig
= (u32
*) fwhdr
;
1290 pgnum
= bfa_ioc_smem_pgnum(ioc
, loff
);
1291 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
1293 for (i
= 0; i
< (sizeof(struct bfi_ioc_image_hdr
) / sizeof(u32
));
1296 swab32(readl(loff
+ ioc
->ioc_regs
.smem_page_start
));
1297 loff
+= sizeof(u32
);
1302 bfa_ioc_fwver_md5_check(struct bfi_ioc_image_hdr
*fwhdr_1
,
1303 struct bfi_ioc_image_hdr
*fwhdr_2
)
1307 for (i
= 0; i
< BFI_IOC_MD5SUM_SZ
; i
++) {
1308 if (fwhdr_1
->md5sum
[i
] != fwhdr_2
->md5sum
[i
])
1315 /* Returns TRUE if major minor and maintenance are same.
1316 * If patch version are same, check for MD5 Checksum to be same.
1319 bfa_ioc_fw_ver_compatible(struct bfi_ioc_image_hdr
*drv_fwhdr
,
1320 struct bfi_ioc_image_hdr
*fwhdr_to_cmp
)
1322 if (drv_fwhdr
->signature
!= fwhdr_to_cmp
->signature
)
1324 if (drv_fwhdr
->fwver
.major
!= fwhdr_to_cmp
->fwver
.major
)
1326 if (drv_fwhdr
->fwver
.minor
!= fwhdr_to_cmp
->fwver
.minor
)
1328 if (drv_fwhdr
->fwver
.maint
!= fwhdr_to_cmp
->fwver
.maint
)
1330 if (drv_fwhdr
->fwver
.patch
== fwhdr_to_cmp
->fwver
.patch
&&
1331 drv_fwhdr
->fwver
.phase
== fwhdr_to_cmp
->fwver
.phase
&&
1332 drv_fwhdr
->fwver
.build
== fwhdr_to_cmp
->fwver
.build
)
1333 return bfa_ioc_fwver_md5_check(drv_fwhdr
, fwhdr_to_cmp
);
1339 bfa_ioc_flash_fwver_valid(struct bfi_ioc_image_hdr
*flash_fwhdr
)
1341 if (flash_fwhdr
->fwver
.major
== 0 || flash_fwhdr
->fwver
.major
== 0xFF)
1348 fwhdr_is_ga(struct bfi_ioc_image_hdr
*fwhdr
)
1350 if (fwhdr
->fwver
.phase
== 0 &&
1351 fwhdr
->fwver
.build
== 0)
1357 /* Returns TRUE if both are compatible and patch of fwhdr_to_cmp is better. */
1358 static enum bfi_ioc_img_ver_cmp
1359 bfa_ioc_fw_ver_patch_cmp(struct bfi_ioc_image_hdr
*base_fwhdr
,
1360 struct bfi_ioc_image_hdr
*fwhdr_to_cmp
)
1362 if (!bfa_ioc_fw_ver_compatible(base_fwhdr
, fwhdr_to_cmp
))
1363 return BFI_IOC_IMG_VER_INCOMP
;
1365 if (fwhdr_to_cmp
->fwver
.patch
> base_fwhdr
->fwver
.patch
)
1366 return BFI_IOC_IMG_VER_BETTER
;
1367 else if (fwhdr_to_cmp
->fwver
.patch
< base_fwhdr
->fwver
.patch
)
1368 return BFI_IOC_IMG_VER_OLD
;
1370 /* GA takes priority over internal builds of the same patch stream.
1371 * At this point major minor maint and patch numbers are same.
1373 if (fwhdr_is_ga(base_fwhdr
))
1374 if (fwhdr_is_ga(fwhdr_to_cmp
))
1375 return BFI_IOC_IMG_VER_SAME
;
1377 return BFI_IOC_IMG_VER_OLD
;
1379 if (fwhdr_is_ga(fwhdr_to_cmp
))
1380 return BFI_IOC_IMG_VER_BETTER
;
1382 if (fwhdr_to_cmp
->fwver
.phase
> base_fwhdr
->fwver
.phase
)
1383 return BFI_IOC_IMG_VER_BETTER
;
1384 else if (fwhdr_to_cmp
->fwver
.phase
< base_fwhdr
->fwver
.phase
)
1385 return BFI_IOC_IMG_VER_OLD
;
1387 if (fwhdr_to_cmp
->fwver
.build
> base_fwhdr
->fwver
.build
)
1388 return BFI_IOC_IMG_VER_BETTER
;
1389 else if (fwhdr_to_cmp
->fwver
.build
< base_fwhdr
->fwver
.build
)
1390 return BFI_IOC_IMG_VER_OLD
;
1392 /* All Version Numbers are equal.
1393 * Md5 check to be done as a part of compatibility check.
1395 return BFI_IOC_IMG_VER_SAME
;
1398 /* register definitions */
1399 #define FLI_CMD_REG 0x0001d000
1400 #define FLI_WRDATA_REG 0x0001d00c
1401 #define FLI_RDDATA_REG 0x0001d010
1402 #define FLI_ADDR_REG 0x0001d004
1403 #define FLI_DEV_STATUS_REG 0x0001d014
1405 #define BFA_FLASH_FIFO_SIZE 128 /* fifo size */
1406 #define BFA_FLASH_CHECK_MAX 10000 /* max # of status check */
1407 #define BFA_FLASH_BLOCKING_OP_MAX 1000000 /* max # of blocking op check */
1408 #define BFA_FLASH_WIP_MASK 0x01 /* write in progress bit mask */
1410 #define NFC_STATE_RUNNING 0x20000001
1411 #define NFC_STATE_PAUSED 0x00004560
1412 #define NFC_VER_VALID 0x147
1414 enum bfa_flash_cmd
{
1415 BFA_FLASH_FAST_READ
= 0x0b, /* fast read */
1416 BFA_FLASH_WRITE_ENABLE
= 0x06, /* write enable */
1417 BFA_FLASH_SECTOR_ERASE
= 0xd8, /* sector erase */
1418 BFA_FLASH_WRITE
= 0x02, /* write */
1419 BFA_FLASH_READ_STATUS
= 0x05, /* read status */
1422 /* hardware error definition */
1423 enum bfa_flash_err
{
1424 BFA_FLASH_NOT_PRESENT
= -1, /*!< flash not present */
1425 BFA_FLASH_UNINIT
= -2, /*!< flash not initialized */
1426 BFA_FLASH_BAD
= -3, /*!< flash bad */
1427 BFA_FLASH_BUSY
= -4, /*!< flash busy */
1428 BFA_FLASH_ERR_CMD_ACT
= -5, /*!< command active never cleared */
1429 BFA_FLASH_ERR_FIFO_CNT
= -6, /*!< fifo count never cleared */
1430 BFA_FLASH_ERR_WIP
= -7, /*!< write-in-progress never cleared */
1431 BFA_FLASH_ERR_TIMEOUT
= -8, /*!< fli timeout */
1432 BFA_FLASH_ERR_LEN
= -9, /*!< invalid length */
1435 /* flash command register data structure */
1436 union bfa_flash_cmd_reg
{
1457 /* flash device status register data structure */
1458 union bfa_flash_dev_status_reg
{
1481 /* flash address register data structure */
1482 union bfa_flash_addr_reg
{
1495 /* Flash raw private functions */
1497 bfa_flash_set_cmd(void __iomem
*pci_bar
, u8 wr_cnt
,
1498 u8 rd_cnt
, u8 ad_cnt
, u8 op
)
1500 union bfa_flash_cmd_reg cmd
;
1504 cmd
.r
.write_cnt
= wr_cnt
;
1505 cmd
.r
.read_cnt
= rd_cnt
;
1506 cmd
.r
.addr_cnt
= ad_cnt
;
1508 writel(cmd
.i
, (pci_bar
+ FLI_CMD_REG
));
1512 bfa_flash_set_addr(void __iomem
*pci_bar
, u32 address
)
1514 union bfa_flash_addr_reg addr
;
1516 addr
.r
.addr
= address
& 0x00ffffff;
1518 writel(addr
.i
, (pci_bar
+ FLI_ADDR_REG
));
1522 bfa_flash_cmd_act_check(void __iomem
*pci_bar
)
1524 union bfa_flash_cmd_reg cmd
;
1526 cmd
.i
= readl(pci_bar
+ FLI_CMD_REG
);
1529 return BFA_FLASH_ERR_CMD_ACT
;
1534 /* Flush FLI data fifo. */
1536 bfa_flash_fifo_flush(void __iomem
*pci_bar
)
1539 union bfa_flash_dev_status_reg dev_status
;
1541 dev_status
.i
= readl(pci_bar
+ FLI_DEV_STATUS_REG
);
1543 if (!dev_status
.r
.fifo_cnt
)
1546 /* fifo counter in terms of words */
1547 for (i
= 0; i
< dev_status
.r
.fifo_cnt
; i
++)
1548 readl(pci_bar
+ FLI_RDDATA_REG
);
1550 /* Check the device status. It may take some time. */
1551 for (i
= 0; i
< BFA_FLASH_CHECK_MAX
; i
++) {
1552 dev_status
.i
= readl(pci_bar
+ FLI_DEV_STATUS_REG
);
1553 if (!dev_status
.r
.fifo_cnt
)
1557 if (dev_status
.r
.fifo_cnt
)
1558 return BFA_FLASH_ERR_FIFO_CNT
;
1563 /* Read flash status. */
1565 bfa_flash_status_read(void __iomem
*pci_bar
)
1567 union bfa_flash_dev_status_reg dev_status
;
1572 status
= bfa_flash_fifo_flush(pci_bar
);
1576 bfa_flash_set_cmd(pci_bar
, 0, 4, 0, BFA_FLASH_READ_STATUS
);
1578 for (i
= 0; i
< BFA_FLASH_CHECK_MAX
; i
++) {
1579 status
= bfa_flash_cmd_act_check(pci_bar
);
1587 dev_status
.i
= readl(pci_bar
+ FLI_DEV_STATUS_REG
);
1588 if (!dev_status
.r
.fifo_cnt
)
1589 return BFA_FLASH_BUSY
;
1591 ret_status
= readl(pci_bar
+ FLI_RDDATA_REG
);
1594 status
= bfa_flash_fifo_flush(pci_bar
);
1601 /* Start flash read operation. */
1603 bfa_flash_read_start(void __iomem
*pci_bar
, u32 offset
, u32 len
,
1608 /* len must be mutiple of 4 and not exceeding fifo size */
1609 if (len
== 0 || len
> BFA_FLASH_FIFO_SIZE
|| (len
& 0x03) != 0)
1610 return BFA_FLASH_ERR_LEN
;
1613 status
= bfa_flash_status_read(pci_bar
);
1614 if (status
== BFA_FLASH_BUSY
)
1615 status
= bfa_flash_status_read(pci_bar
);
1620 /* check if write-in-progress bit is cleared */
1621 if (status
& BFA_FLASH_WIP_MASK
)
1622 return BFA_FLASH_ERR_WIP
;
1624 bfa_flash_set_addr(pci_bar
, offset
);
1626 bfa_flash_set_cmd(pci_bar
, 0, (u8
)len
, 4, BFA_FLASH_FAST_READ
);
1631 /* Check flash read operation. */
1633 bfa_flash_read_check(void __iomem
*pci_bar
)
1635 if (bfa_flash_cmd_act_check(pci_bar
))
1641 /* End flash read operation. */
1643 bfa_flash_read_end(void __iomem
*pci_bar
, u32 len
, char *buf
)
1647 /* read data fifo up to 32 words */
1648 for (i
= 0; i
< len
; i
+= 4) {
1649 u32 w
= readl(pci_bar
+ FLI_RDDATA_REG
);
1650 *((u32
*)(buf
+ i
)) = swab32(w
);
1653 bfa_flash_fifo_flush(pci_bar
);
1656 /* Perform flash raw read. */
1658 #define FLASH_BLOCKING_OP_MAX 500
1659 #define FLASH_SEM_LOCK_REG 0x18820
1662 bfa_raw_sem_get(void __iomem
*bar
)
1666 locked
= readl(bar
+ FLASH_SEM_LOCK_REG
);
1671 static enum bfa_status
1672 bfa_flash_sem_get(void __iomem
*bar
)
1674 u32 n
= FLASH_BLOCKING_OP_MAX
;
1676 while (!bfa_raw_sem_get(bar
)) {
1678 return BFA_STATUS_BADFLASH
;
1681 return BFA_STATUS_OK
;
1685 bfa_flash_sem_put(void __iomem
*bar
)
1687 writel(0, (bar
+ FLASH_SEM_LOCK_REG
));
1690 static enum bfa_status
1691 bfa_flash_raw_read(void __iomem
*pci_bar
, u32 offset
, char *buf
,
1696 u32 off
, l
, s
, residue
, fifo_sz
;
1700 fifo_sz
= BFA_FLASH_FIFO_SIZE
;
1701 status
= bfa_flash_sem_get(pci_bar
);
1702 if (status
!= BFA_STATUS_OK
)
1708 l
= (n
+ 1) * fifo_sz
- s
;
1712 status
= bfa_flash_read_start(pci_bar
, offset
+ off
, l
,
1715 bfa_flash_sem_put(pci_bar
);
1716 return BFA_STATUS_FAILED
;
1719 n
= BFA_FLASH_BLOCKING_OP_MAX
;
1720 while (bfa_flash_read_check(pci_bar
)) {
1722 bfa_flash_sem_put(pci_bar
);
1723 return BFA_STATUS_FAILED
;
1727 bfa_flash_read_end(pci_bar
, l
, &buf
[off
]);
1732 bfa_flash_sem_put(pci_bar
);
1734 return BFA_STATUS_OK
;
1737 #define BFA_FLASH_PART_FWIMG_ADDR 0x100000 /* fw image address */
1739 static enum bfa_status
1740 bfa_nw_ioc_flash_img_get_chnk(struct bfa_ioc
*ioc
, u32 off
,
1743 return bfa_flash_raw_read(ioc
->pcidev
.pci_bar_kva
,
1744 BFA_FLASH_PART_FWIMG_ADDR
+ (off
* sizeof(u32
)),
1745 (char *)fwimg
, BFI_FLASH_CHUNK_SZ
);
1748 static enum bfi_ioc_img_ver_cmp
1749 bfa_ioc_flash_fwver_cmp(struct bfa_ioc
*ioc
,
1750 struct bfi_ioc_image_hdr
*base_fwhdr
)
1752 struct bfi_ioc_image_hdr
*flash_fwhdr
;
1753 enum bfa_status status
;
1754 u32 fwimg
[BFI_FLASH_CHUNK_SZ_WORDS
];
1756 status
= bfa_nw_ioc_flash_img_get_chnk(ioc
, 0, fwimg
);
1757 if (status
!= BFA_STATUS_OK
)
1758 return BFI_IOC_IMG_VER_INCOMP
;
1760 flash_fwhdr
= (struct bfi_ioc_image_hdr
*)fwimg
;
1761 if (bfa_ioc_flash_fwver_valid(flash_fwhdr
))
1762 return bfa_ioc_fw_ver_patch_cmp(base_fwhdr
, flash_fwhdr
);
1764 return BFI_IOC_IMG_VER_INCOMP
;
1768 * Returns TRUE if driver is willing to work with current smem f/w version.
1771 bfa_nw_ioc_fwver_cmp(struct bfa_ioc
*ioc
, struct bfi_ioc_image_hdr
*fwhdr
)
1773 struct bfi_ioc_image_hdr
*drv_fwhdr
;
1774 enum bfi_ioc_img_ver_cmp smem_flash_cmp
, drv_smem_cmp
;
1776 drv_fwhdr
= (struct bfi_ioc_image_hdr
*)
1777 bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc
), 0);
1779 /* If smem is incompatible or old, driver should not work with it. */
1780 drv_smem_cmp
= bfa_ioc_fw_ver_patch_cmp(drv_fwhdr
, fwhdr
);
1781 if (drv_smem_cmp
== BFI_IOC_IMG_VER_INCOMP
||
1782 drv_smem_cmp
== BFI_IOC_IMG_VER_OLD
) {
1786 /* IF Flash has a better F/W than smem do not work with smem.
1787 * If smem f/w == flash f/w, as smem f/w not old | incmp, work with it.
1788 * If Flash is old or incomp work with smem iff smem f/w == drv f/w.
1790 smem_flash_cmp
= bfa_ioc_flash_fwver_cmp(ioc
, fwhdr
);
1792 if (smem_flash_cmp
== BFI_IOC_IMG_VER_BETTER
)
1794 else if (smem_flash_cmp
== BFI_IOC_IMG_VER_SAME
)
1797 return (drv_smem_cmp
== BFI_IOC_IMG_VER_SAME
) ?
1801 /* Return true if current running version is valid. Firmware signature and
1802 * execution context (driver/bios) must match.
1805 bfa_ioc_fwver_valid(struct bfa_ioc
*ioc
, u32 boot_env
)
1807 struct bfi_ioc_image_hdr fwhdr
;
1809 bfa_nw_ioc_fwver_get(ioc
, &fwhdr
);
1810 if (swab32(fwhdr
.bootenv
) != boot_env
)
1813 return bfa_nw_ioc_fwver_cmp(ioc
, &fwhdr
);
1816 /* Conditionally flush any pending message from firmware at start. */
1818 bfa_ioc_msgflush(struct bfa_ioc
*ioc
)
1822 r32
= readl(ioc
->ioc_regs
.lpu_mbox_cmd
);
1824 writel(1, ioc
->ioc_regs
.lpu_mbox_cmd
);
1828 bfa_ioc_hwinit(struct bfa_ioc
*ioc
, bool force
)
1830 enum bfi_ioc_state ioc_fwstate
;
1834 ioc_fwstate
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
1837 ioc_fwstate
= BFI_IOC_UNINIT
;
1839 boot_env
= BFI_FWBOOT_ENV_OS
;
1842 * check if firmware is valid
1844 fwvalid
= (ioc_fwstate
== BFI_IOC_UNINIT
) ?
1845 false : bfa_ioc_fwver_valid(ioc
, boot_env
);
1848 if (bfa_ioc_boot(ioc
, BFI_FWBOOT_TYPE_NORMAL
, boot_env
) ==
1850 bfa_ioc_poll_fwinit(ioc
);
1856 * If hardware initialization is in progress (initialized by other IOC),
1857 * just wait for an initialization completion interrupt.
1859 if (ioc_fwstate
== BFI_IOC_INITING
) {
1860 bfa_ioc_poll_fwinit(ioc
);
1865 * If IOC function is disabled and firmware version is same,
1866 * just re-enable IOC.
1868 if (ioc_fwstate
== BFI_IOC_DISABLED
|| ioc_fwstate
== BFI_IOC_OP
) {
1870 * When using MSI-X any pending firmware ready event should
1871 * be flushed. Otherwise MSI-X interrupts are not delivered.
1873 bfa_ioc_msgflush(ioc
);
1874 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FWREADY
);
1879 * Initialize the h/w for any other states.
1881 if (bfa_ioc_boot(ioc
, BFI_FWBOOT_TYPE_NORMAL
, boot_env
) ==
1883 bfa_ioc_poll_fwinit(ioc
);
1887 bfa_nw_ioc_timeout(struct bfa_ioc
*ioc
)
1889 bfa_fsm_send_event(ioc
, IOC_E_TIMEOUT
);
1893 bfa_ioc_mbox_send(struct bfa_ioc
*ioc
, void *ioc_msg
, int len
)
1895 u32
*msgp
= (u32
*) ioc_msg
;
1898 BUG_ON(!(len
<= BFI_IOC_MSGLEN_MAX
));
1901 * first write msg to mailbox registers
1903 for (i
= 0; i
< len
/ sizeof(u32
); i
++)
1904 writel(cpu_to_le32(msgp
[i
]),
1905 ioc
->ioc_regs
.hfn_mbox
+ i
* sizeof(u32
));
1907 for (; i
< BFI_IOC_MSGLEN_MAX
/ sizeof(u32
); i
++)
1908 writel(0, ioc
->ioc_regs
.hfn_mbox
+ i
* sizeof(u32
));
1911 * write 1 to mailbox CMD to trigger LPU event
1913 writel(1, ioc
->ioc_regs
.hfn_mbox_cmd
);
1914 (void) readl(ioc
->ioc_regs
.hfn_mbox_cmd
);
1918 bfa_ioc_send_enable(struct bfa_ioc
*ioc
)
1920 struct bfi_ioc_ctrl_req enable_req
;
1922 bfi_h2i_set(enable_req
.mh
, BFI_MC_IOC
, BFI_IOC_H2I_ENABLE_REQ
,
1923 bfa_ioc_portid(ioc
));
1924 enable_req
.clscode
= htons(ioc
->clscode
);
1925 enable_req
.rsvd
= htons(0);
1926 /* overflow in 2106 */
1927 enable_req
.tv_sec
= ntohl(ktime_get_real_seconds());
1928 bfa_ioc_mbox_send(ioc
, &enable_req
, sizeof(struct bfi_ioc_ctrl_req
));
1932 bfa_ioc_send_disable(struct bfa_ioc
*ioc
)
1934 struct bfi_ioc_ctrl_req disable_req
;
1936 bfi_h2i_set(disable_req
.mh
, BFI_MC_IOC
, BFI_IOC_H2I_DISABLE_REQ
,
1937 bfa_ioc_portid(ioc
));
1938 disable_req
.clscode
= htons(ioc
->clscode
);
1939 disable_req
.rsvd
= htons(0);
1940 /* overflow in 2106 */
1941 disable_req
.tv_sec
= ntohl(ktime_get_real_seconds());
1942 bfa_ioc_mbox_send(ioc
, &disable_req
, sizeof(struct bfi_ioc_ctrl_req
));
1946 bfa_ioc_send_getattr(struct bfa_ioc
*ioc
)
1948 struct bfi_ioc_getattr_req attr_req
;
1950 bfi_h2i_set(attr_req
.mh
, BFI_MC_IOC
, BFI_IOC_H2I_GETATTR_REQ
,
1951 bfa_ioc_portid(ioc
));
1952 bfa_dma_be_addr_set(attr_req
.attr_addr
, ioc
->attr_dma
.pa
);
1953 bfa_ioc_mbox_send(ioc
, &attr_req
, sizeof(attr_req
));
1957 bfa_nw_ioc_hb_check(struct bfa_ioc
*ioc
)
1961 hb_count
= readl(ioc
->ioc_regs
.heartbeat
);
1962 if (ioc
->hb_count
== hb_count
) {
1963 bfa_ioc_recover(ioc
);
1966 ioc
->hb_count
= hb_count
;
1969 bfa_ioc_mbox_poll(ioc
);
1970 mod_timer(&ioc
->hb_timer
, jiffies
+
1971 msecs_to_jiffies(BFA_IOC_HB_TOV
));
1975 bfa_ioc_hb_monitor(struct bfa_ioc
*ioc
)
1977 ioc
->hb_count
= readl(ioc
->ioc_regs
.heartbeat
);
1978 mod_timer(&ioc
->hb_timer
, jiffies
+
1979 msecs_to_jiffies(BFA_IOC_HB_TOV
));
1983 bfa_ioc_hb_stop(struct bfa_ioc
*ioc
)
1985 del_timer(&ioc
->hb_timer
);
1988 /* Initiate a full firmware download. */
1989 static enum bfa_status
1990 bfa_ioc_download_fw(struct bfa_ioc
*ioc
, u32 boot_type
,
2000 u32 fwimg_buf
[BFI_FLASH_CHUNK_SZ_WORDS
];
2001 enum bfa_status status
;
2003 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
2004 boot_type
== BFI_FWBOOT_TYPE_FLASH
) {
2005 fwimg_size
= BFI_FLASH_IMAGE_SZ
/sizeof(u32
);
2007 status
= bfa_nw_ioc_flash_img_get_chnk(ioc
,
2008 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
), fwimg_buf
);
2009 if (status
!= BFA_STATUS_OK
)
2014 fwimg_size
= bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc
));
2015 fwimg
= bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc
),
2016 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
));
2019 pgnum
= bfa_ioc_smem_pgnum(ioc
, loff
);
2021 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2023 for (i
= 0; i
< fwimg_size
; i
++) {
2024 if (BFA_IOC_FLASH_CHUNK_NO(i
) != chunkno
) {
2025 chunkno
= BFA_IOC_FLASH_CHUNK_NO(i
);
2026 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
2027 boot_type
== BFI_FWBOOT_TYPE_FLASH
) {
2028 status
= bfa_nw_ioc_flash_img_get_chnk(ioc
,
2029 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
),
2031 if (status
!= BFA_STATUS_OK
)
2036 fwimg
= bfa_cb_image_get_chunk(
2037 bfa_ioc_asic_gen(ioc
),
2038 BFA_IOC_FLASH_CHUNK_ADDR(chunkno
));
2045 writel(swab32(fwimg
[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i
)]),
2046 ioc
->ioc_regs
.smem_page_start
+ loff
);
2048 loff
+= sizeof(u32
);
2051 * handle page offset wrap around
2053 loff
= PSS_SMEM_PGOFF(loff
);
2057 ioc
->ioc_regs
.host_page_num_fn
);
2061 writel(bfa_ioc_smem_pgnum(ioc
, 0),
2062 ioc
->ioc_regs
.host_page_num_fn
);
2065 * Set boot type, env and device mode at the end.
2067 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
2068 boot_type
== BFI_FWBOOT_TYPE_FLASH
) {
2069 boot_type
= BFI_FWBOOT_TYPE_NORMAL
;
2071 asicmode
= BFI_FWBOOT_DEVMODE(ioc
->asic_gen
, ioc
->asic_mode
,
2072 ioc
->port0_mode
, ioc
->port1_mode
);
2073 writel(asicmode
, ((ioc
->ioc_regs
.smem_page_start
)
2074 + BFI_FWBOOT_DEVMODE_OFF
));
2075 writel(boot_type
, ((ioc
->ioc_regs
.smem_page_start
)
2076 + (BFI_FWBOOT_TYPE_OFF
)));
2077 writel(boot_env
, ((ioc
->ioc_regs
.smem_page_start
)
2078 + (BFI_FWBOOT_ENV_OFF
)));
2079 return BFA_STATUS_OK
;
2083 bfa_ioc_reset(struct bfa_ioc
*ioc
, bool force
)
2085 bfa_ioc_hwinit(ioc
, force
);
2088 /* BFA ioc enable reply by firmware */
2090 bfa_ioc_enable_reply(struct bfa_ioc
*ioc
, enum bfa_mode port_mode
,
2093 struct bfa_iocpf
*iocpf
= &ioc
->iocpf
;
2095 ioc
->port_mode
= ioc
->port_mode_cfg
= port_mode
;
2096 ioc
->ad_cap_bm
= cap_bm
;
2097 bfa_fsm_send_event(iocpf
, IOCPF_E_FWRSP_ENABLE
);
2100 /* Update BFA configuration from firmware configuration. */
2102 bfa_ioc_getattr_reply(struct bfa_ioc
*ioc
)
2104 struct bfi_ioc_attr
*attr
= ioc
->attr
;
2106 attr
->adapter_prop
= ntohl(attr
->adapter_prop
);
2107 attr
->card_type
= ntohl(attr
->card_type
);
2108 attr
->maxfrsize
= ntohs(attr
->maxfrsize
);
2110 bfa_fsm_send_event(ioc
, IOC_E_FWRSP_GETATTR
);
2113 /* Attach time initialization of mbox logic. */
2115 bfa_ioc_mbox_attach(struct bfa_ioc
*ioc
)
2117 struct bfa_ioc_mbox_mod
*mod
= &ioc
->mbox_mod
;
2120 INIT_LIST_HEAD(&mod
->cmd_q
);
2121 for (mc
= 0; mc
< BFI_MC_MAX
; mc
++) {
2122 mod
->mbhdlr
[mc
].cbfn
= NULL
;
2123 mod
->mbhdlr
[mc
].cbarg
= ioc
->bfa
;
2127 /* Mbox poll timer -- restarts any pending mailbox requests. */
2129 bfa_ioc_mbox_poll(struct bfa_ioc
*ioc
)
2131 struct bfa_ioc_mbox_mod
*mod
= &ioc
->mbox_mod
;
2132 struct bfa_mbox_cmd
*cmd
;
2133 bfa_mbox_cmd_cbfn_t cbfn
;
2138 * If no command pending, do nothing
2140 if (list_empty(&mod
->cmd_q
))
2144 * If previous command is not yet fetched by firmware, do nothing
2146 stat
= readl(ioc
->ioc_regs
.hfn_mbox_cmd
);
2151 * Enqueue command to firmware.
2153 cmd
= list_first_entry(&mod
->cmd_q
, struct bfa_mbox_cmd
, qe
);
2155 bfa_ioc_mbox_send(ioc
, cmd
->msg
, sizeof(cmd
->msg
));
2158 * Give a callback to the client, indicating that the command is sent
2168 /* Cleanup any pending requests. */
2170 bfa_ioc_mbox_flush(struct bfa_ioc
*ioc
)
2172 struct bfa_ioc_mbox_mod
*mod
= &ioc
->mbox_mod
;
2173 struct bfa_mbox_cmd
*cmd
;
2175 while (!list_empty(&mod
->cmd_q
)) {
2176 cmd
= list_first_entry(&mod
->cmd_q
, struct bfa_mbox_cmd
, qe
);
2182 * bfa_nw_ioc_smem_read - Read data from SMEM to host through PCI memmap
2184 * @ioc: memory for IOC
2185 * @tbuf: app memory to store data from smem
2186 * @soff: smem offset
2187 * @sz: size of smem in bytes
2190 bfa_nw_ioc_smem_read(struct bfa_ioc
*ioc
, void *tbuf
, u32 soff
, u32 sz
)
2192 u32 pgnum
, loff
, r32
;
2196 pgnum
= PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, soff
);
2197 loff
= PSS_SMEM_PGOFF(soff
);
2200 * Hold semaphore to serialize pll init and fwtrc.
2202 if (!bfa_nw_ioc_sem_get(ioc
->ioc_regs
.ioc_init_sem_reg
))
2205 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2207 len
= sz
/sizeof(u32
);
2208 for (i
= 0; i
< len
; i
++) {
2209 r32
= swab32(readl(loff
+ ioc
->ioc_regs
.smem_page_start
));
2210 buf
[i
] = be32_to_cpu(r32
);
2211 loff
+= sizeof(u32
);
2214 * handle page offset wrap around
2216 loff
= PSS_SMEM_PGOFF(loff
);
2219 writel(pgnum
, ioc
->ioc_regs
.host_page_num_fn
);
2223 writel(PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, 0),
2224 ioc
->ioc_regs
.host_page_num_fn
);
2229 readl(ioc
->ioc_regs
.ioc_init_sem_reg
);
2230 writel(1, ioc
->ioc_regs
.ioc_init_sem_reg
);
2234 /* Retrieve saved firmware trace from a prior IOC failure. */
2236 bfa_nw_ioc_debug_fwtrc(struct bfa_ioc
*ioc
, void *trcdata
, int *trclen
)
2238 u32 loff
= BFI_IOC_TRC_OFF
+ BNA_DBG_FWTRC_LEN
* ioc
->port_id
;
2239 int tlen
, status
= 0;
2242 if (tlen
> BNA_DBG_FWTRC_LEN
)
2243 tlen
= BNA_DBG_FWTRC_LEN
;
2245 status
= bfa_nw_ioc_smem_read(ioc
, trcdata
, loff
, tlen
);
2250 /* Save firmware trace if configured. */
2252 bfa_nw_ioc_debug_save_ftrc(struct bfa_ioc
*ioc
)
2256 if (ioc
->dbg_fwsave_once
) {
2257 ioc
->dbg_fwsave_once
= false;
2258 if (ioc
->dbg_fwsave_len
) {
2259 tlen
= ioc
->dbg_fwsave_len
;
2260 bfa_nw_ioc_debug_fwtrc(ioc
, ioc
->dbg_fwsave
, &tlen
);
2265 /* Retrieve saved firmware trace from a prior IOC failure. */
2267 bfa_nw_ioc_debug_fwsave(struct bfa_ioc
*ioc
, void *trcdata
, int *trclen
)
2271 if (ioc
->dbg_fwsave_len
== 0)
2272 return BFA_STATUS_ENOFSAVE
;
2275 if (tlen
> ioc
->dbg_fwsave_len
)
2276 tlen
= ioc
->dbg_fwsave_len
;
2278 memcpy(trcdata
, ioc
->dbg_fwsave
, tlen
);
2280 return BFA_STATUS_OK
;
2284 bfa_ioc_fail_notify(struct bfa_ioc
*ioc
)
2287 * Notify driver and common modules registered for notification.
2289 ioc
->cbfn
->hbfail_cbfn(ioc
->bfa
);
2290 bfa_ioc_event_notify(ioc
, BFA_IOC_E_FAILED
);
2291 bfa_nw_ioc_debug_save_ftrc(ioc
);
2294 /* IOCPF to IOC interface */
2296 bfa_ioc_pf_enabled(struct bfa_ioc
*ioc
)
2298 bfa_fsm_send_event(ioc
, IOC_E_ENABLED
);
2302 bfa_ioc_pf_disabled(struct bfa_ioc
*ioc
)
2304 bfa_fsm_send_event(ioc
, IOC_E_DISABLED
);
2308 bfa_ioc_pf_failed(struct bfa_ioc
*ioc
)
2310 bfa_fsm_send_event(ioc
, IOC_E_PFFAILED
);
2314 bfa_ioc_pf_hwfailed(struct bfa_ioc
*ioc
)
2316 bfa_fsm_send_event(ioc
, IOC_E_HWFAILED
);
2320 bfa_ioc_pf_fwmismatch(struct bfa_ioc
*ioc
)
2323 * Provide enable completion callback and AEN notification.
2325 ioc
->cbfn
->enable_cbfn(ioc
->bfa
, BFA_STATUS_IOC_FAILURE
);
2329 static enum bfa_status
2330 bfa_ioc_pll_init(struct bfa_ioc
*ioc
)
2333 * Hold semaphore so that nobody can access the chip during init.
2335 bfa_nw_ioc_sem_get(ioc
->ioc_regs
.ioc_init_sem_reg
);
2337 bfa_ioc_pll_init_asic(ioc
);
2339 ioc
->pllinit
= true;
2341 /* Initialize LMEM */
2342 bfa_ioc_lmem_init(ioc
);
2345 * release semaphore.
2347 bfa_nw_ioc_sem_release(ioc
->ioc_regs
.ioc_init_sem_reg
);
2349 return BFA_STATUS_OK
;
2352 /* Interface used by diag module to do firmware boot with memory test
2353 * as the entry vector.
2355 static enum bfa_status
2356 bfa_ioc_boot(struct bfa_ioc
*ioc
, enum bfi_fwboot_type boot_type
,
2359 struct bfi_ioc_image_hdr
*drv_fwhdr
;
2360 enum bfa_status status
;
2361 bfa_ioc_stats(ioc
, ioc_boots
);
2363 if (bfa_ioc_pll_init(ioc
) != BFA_STATUS_OK
)
2364 return BFA_STATUS_FAILED
;
2365 if (boot_env
== BFI_FWBOOT_ENV_OS
&&
2366 boot_type
== BFI_FWBOOT_TYPE_NORMAL
) {
2367 drv_fwhdr
= (struct bfi_ioc_image_hdr
*)
2368 bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc
), 0);
2369 /* Work with Flash iff flash f/w is better than driver f/w.
2370 * Otherwise push drivers firmware.
2372 if (bfa_ioc_flash_fwver_cmp(ioc
, drv_fwhdr
) ==
2373 BFI_IOC_IMG_VER_BETTER
)
2374 boot_type
= BFI_FWBOOT_TYPE_FLASH
;
2378 * Initialize IOC state of all functions on a chip reset.
2380 if (boot_type
== BFI_FWBOOT_TYPE_MEMTEST
) {
2381 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_MEMTEST
);
2382 bfa_ioc_set_alt_ioc_fwstate(ioc
, BFI_IOC_MEMTEST
);
2384 bfa_ioc_set_cur_ioc_fwstate(ioc
, BFI_IOC_INITING
);
2385 bfa_ioc_set_alt_ioc_fwstate(ioc
, BFI_IOC_INITING
);
2388 bfa_ioc_msgflush(ioc
);
2389 status
= bfa_ioc_download_fw(ioc
, boot_type
, boot_env
);
2390 if (status
== BFA_STATUS_OK
)
2391 bfa_ioc_lpu_start(ioc
);
2393 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_TIMEOUT
);
2398 /* Enable/disable IOC failure auto recovery. */
2400 bfa_nw_ioc_auto_recover(bool auto_recover
)
2402 bfa_nw_auto_recover
= auto_recover
;
2406 bfa_ioc_msgget(struct bfa_ioc
*ioc
, void *mbmsg
)
2412 r32
= readl(ioc
->ioc_regs
.lpu_mbox_cmd
);
2419 for (i
= 0; i
< (sizeof(union bfi_ioc_i2h_msg_u
) / sizeof(u32
));
2421 r32
= readl(ioc
->ioc_regs
.lpu_mbox
+
2423 msgp
[i
] = htonl(r32
);
2427 * turn off mailbox interrupt by clearing mailbox status
2429 writel(1, ioc
->ioc_regs
.lpu_mbox_cmd
);
2430 readl(ioc
->ioc_regs
.lpu_mbox_cmd
);
2436 bfa_ioc_isr(struct bfa_ioc
*ioc
, struct bfi_mbmsg
*m
)
2438 union bfi_ioc_i2h_msg_u
*msg
;
2439 struct bfa_iocpf
*iocpf
= &ioc
->iocpf
;
2441 msg
= (union bfi_ioc_i2h_msg_u
*) m
;
2443 bfa_ioc_stats(ioc
, ioc_isrs
);
2445 switch (msg
->mh
.msg_id
) {
2446 case BFI_IOC_I2H_HBEAT
:
2449 case BFI_IOC_I2H_ENABLE_REPLY
:
2450 bfa_ioc_enable_reply(ioc
,
2451 (enum bfa_mode
)msg
->fw_event
.port_mode
,
2452 msg
->fw_event
.cap_bm
);
2455 case BFI_IOC_I2H_DISABLE_REPLY
:
2456 bfa_fsm_send_event(iocpf
, IOCPF_E_FWRSP_DISABLE
);
2459 case BFI_IOC_I2H_GETATTR_REPLY
:
2460 bfa_ioc_getattr_reply(ioc
);
2469 * bfa_nw_ioc_attach - IOC attach time initialization and setup.
2471 * @ioc: memory for IOC
2472 * @bfa: driver instance structure
2473 * @cbfn: callback function
2476 bfa_nw_ioc_attach(struct bfa_ioc
*ioc
, void *bfa
, struct bfa_ioc_cbfn
*cbfn
)
2480 ioc
->fcmode
= false;
2481 ioc
->pllinit
= false;
2482 ioc
->dbg_fwsave_once
= true;
2483 ioc
->iocpf
.ioc
= ioc
;
2485 bfa_ioc_mbox_attach(ioc
);
2486 INIT_LIST_HEAD(&ioc
->notify_q
);
2488 bfa_fsm_set_state(ioc
, bfa_ioc_sm_uninit
);
2489 bfa_fsm_send_event(ioc
, IOC_E_RESET
);
2492 /* Driver detach time IOC cleanup. */
2494 bfa_nw_ioc_detach(struct bfa_ioc
*ioc
)
2496 bfa_fsm_send_event(ioc
, IOC_E_DETACH
);
2498 /* Done with detach, empty the notify_q. */
2499 INIT_LIST_HEAD(&ioc
->notify_q
);
2503 * bfa_nw_ioc_pci_init - Setup IOC PCI properties.
2505 * @ioc: memory for IOC
2506 * @pcidev: PCI device information for this IOC
2507 * @clscode: class code
2510 bfa_nw_ioc_pci_init(struct bfa_ioc
*ioc
, struct bfa_pcidev
*pcidev
,
2511 enum bfi_pcifn_class clscode
)
2513 ioc
->clscode
= clscode
;
2514 ioc
->pcidev
= *pcidev
;
2517 * Initialize IOC and device personality
2519 ioc
->port0_mode
= ioc
->port1_mode
= BFI_PORT_MODE_FC
;
2520 ioc
->asic_mode
= BFI_ASIC_MODE_FC
;
2522 switch (pcidev
->device_id
) {
2523 case PCI_DEVICE_ID_BROCADE_CT
:
2524 ioc
->asic_gen
= BFI_ASIC_GEN_CT
;
2525 ioc
->port0_mode
= ioc
->port1_mode
= BFI_PORT_MODE_ETH
;
2526 ioc
->asic_mode
= BFI_ASIC_MODE_ETH
;
2527 ioc
->port_mode
= ioc
->port_mode_cfg
= BFA_MODE_CNA
;
2528 ioc
->ad_cap_bm
= BFA_CM_CNA
;
2531 case BFA_PCI_DEVICE_ID_CT2
:
2532 ioc
->asic_gen
= BFI_ASIC_GEN_CT2
;
2533 if (clscode
== BFI_PCIFN_CLASS_FC
&&
2534 pcidev
->ssid
== BFA_PCI_CT2_SSID_FC
) {
2535 ioc
->asic_mode
= BFI_ASIC_MODE_FC16
;
2537 ioc
->port_mode
= ioc
->port_mode_cfg
= BFA_MODE_HBA
;
2538 ioc
->ad_cap_bm
= BFA_CM_HBA
;
2540 ioc
->port0_mode
= ioc
->port1_mode
= BFI_PORT_MODE_ETH
;
2541 ioc
->asic_mode
= BFI_ASIC_MODE_ETH
;
2542 if (pcidev
->ssid
== BFA_PCI_CT2_SSID_FCoE
) {
2544 ioc
->port_mode_cfg
= BFA_MODE_CNA
;
2545 ioc
->ad_cap_bm
= BFA_CM_CNA
;
2548 ioc
->port_mode_cfg
= BFA_MODE_NIC
;
2549 ioc
->ad_cap_bm
= BFA_CM_NIC
;
2559 * Set asic specific interfaces.
2561 if (ioc
->asic_gen
== BFI_ASIC_GEN_CT
)
2562 bfa_nw_ioc_set_ct_hwif(ioc
);
2564 WARN_ON(ioc
->asic_gen
!= BFI_ASIC_GEN_CT2
);
2565 bfa_nw_ioc_set_ct2_hwif(ioc
);
2566 bfa_nw_ioc_ct2_poweron(ioc
);
2569 bfa_ioc_map_port(ioc
);
2570 bfa_ioc_reg_init(ioc
);
2574 * bfa_nw_ioc_mem_claim - Initialize IOC dma memory
2576 * @ioc: memory for IOC
2577 * @dm_kva: kernel virtual address of IOC dma memory
2578 * @dm_pa: physical address of IOC dma memory
2581 bfa_nw_ioc_mem_claim(struct bfa_ioc
*ioc
, u8
*dm_kva
, u64 dm_pa
)
2584 * dma memory for firmware attribute
2586 ioc
->attr_dma
.kva
= dm_kva
;
2587 ioc
->attr_dma
.pa
= dm_pa
;
2588 ioc
->attr
= (struct bfi_ioc_attr
*) dm_kva
;
2591 /* Return size of dma memory required. */
2593 bfa_nw_ioc_meminfo(void)
2595 return roundup(sizeof(struct bfi_ioc_attr
), BFA_DMA_ALIGN_SZ
);
2599 bfa_nw_ioc_enable(struct bfa_ioc
*ioc
)
2601 bfa_ioc_stats(ioc
, ioc_enables
);
2602 ioc
->dbg_fwsave_once
= true;
2604 bfa_fsm_send_event(ioc
, IOC_E_ENABLE
);
2608 bfa_nw_ioc_disable(struct bfa_ioc
*ioc
)
2610 bfa_ioc_stats(ioc
, ioc_disables
);
2611 bfa_fsm_send_event(ioc
, IOC_E_DISABLE
);
2614 /* Initialize memory for saving firmware trace. */
2616 bfa_nw_ioc_debug_memclaim(struct bfa_ioc
*ioc
, void *dbg_fwsave
)
2618 ioc
->dbg_fwsave
= dbg_fwsave
;
2619 ioc
->dbg_fwsave_len
= ioc
->iocpf
.auto_recover
? BNA_DBG_FWTRC_LEN
: 0;
2623 bfa_ioc_smem_pgnum(struct bfa_ioc
*ioc
, u32 fmaddr
)
2625 return PSS_SMEM_PGNUM(ioc
->ioc_regs
.smem_pg0
, fmaddr
);
2628 /* Register mailbox message handler function, to be called by common modules */
2630 bfa_nw_ioc_mbox_regisr(struct bfa_ioc
*ioc
, enum bfi_mclass mc
,
2631 bfa_ioc_mbox_mcfunc_t cbfn
, void *cbarg
)
2633 struct bfa_ioc_mbox_mod
*mod
= &ioc
->mbox_mod
;
2635 mod
->mbhdlr
[mc
].cbfn
= cbfn
;
2636 mod
->mbhdlr
[mc
].cbarg
= cbarg
;
2640 * bfa_nw_ioc_mbox_queue - Queue a mailbox command request to firmware.
2642 * @ioc: IOC instance
2643 * @cmd: Mailbox command
2644 * @cbfn: callback function
2645 * @cbarg: arguments to callback
2647 * Waits if mailbox is busy. Responsibility of caller to serialize
2650 bfa_nw_ioc_mbox_queue(struct bfa_ioc
*ioc
, struct bfa_mbox_cmd
*cmd
,
2651 bfa_mbox_cmd_cbfn_t cbfn
, void *cbarg
)
2653 struct bfa_ioc_mbox_mod
*mod
= &ioc
->mbox_mod
;
2660 * If a previous command is pending, queue new command
2662 if (!list_empty(&mod
->cmd_q
)) {
2663 list_add_tail(&cmd
->qe
, &mod
->cmd_q
);
2668 * If mailbox is busy, queue command for poll timer
2670 stat
= readl(ioc
->ioc_regs
.hfn_mbox_cmd
);
2672 list_add_tail(&cmd
->qe
, &mod
->cmd_q
);
2677 * mailbox is free -- queue command to firmware
2679 bfa_ioc_mbox_send(ioc
, cmd
->msg
, sizeof(cmd
->msg
));
2684 /* Handle mailbox interrupts */
2686 bfa_nw_ioc_mbox_isr(struct bfa_ioc
*ioc
)
2688 struct bfa_ioc_mbox_mod
*mod
= &ioc
->mbox_mod
;
2692 if (bfa_ioc_msgget(ioc
, &m
)) {
2694 * Treat IOC message class as special.
2696 mc
= m
.mh
.msg_class
;
2697 if (mc
== BFI_MC_IOC
) {
2698 bfa_ioc_isr(ioc
, &m
);
2702 if ((mc
>= BFI_MC_MAX
) || (mod
->mbhdlr
[mc
].cbfn
== NULL
))
2705 mod
->mbhdlr
[mc
].cbfn(mod
->mbhdlr
[mc
].cbarg
, &m
);
2708 bfa_ioc_lpu_read_stat(ioc
);
2711 * Try to send pending mailbox commands
2713 bfa_ioc_mbox_poll(ioc
);
2717 bfa_nw_ioc_error_isr(struct bfa_ioc
*ioc
)
2719 bfa_ioc_stats(ioc
, ioc_hbfails
);
2720 bfa_ioc_stats_hb_count(ioc
, ioc
->hb_count
);
2721 bfa_fsm_send_event(ioc
, IOC_E_HWERROR
);
2724 /* return true if IOC is disabled */
2726 bfa_nw_ioc_is_disabled(struct bfa_ioc
*ioc
)
2728 return bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_disabling
) ||
2729 bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_disabled
);
2732 /* return true if IOC is operational */
2734 bfa_nw_ioc_is_operational(struct bfa_ioc
*ioc
)
2736 return bfa_fsm_cmp_state(ioc
, bfa_ioc_sm_op
);
2739 /* Add to IOC heartbeat failure notification queue. To be used by common
2740 * modules such as cee, port, diag.
2743 bfa_nw_ioc_notify_register(struct bfa_ioc
*ioc
,
2744 struct bfa_ioc_notify
*notify
)
2746 list_add_tail(¬ify
->qe
, &ioc
->notify_q
);
2749 #define BFA_MFG_NAME "QLogic"
2751 bfa_ioc_get_adapter_attr(struct bfa_ioc
*ioc
,
2752 struct bfa_adapter_attr
*ad_attr
)
2754 struct bfi_ioc_attr
*ioc_attr
;
2756 ioc_attr
= ioc
->attr
;
2758 bfa_ioc_get_adapter_serial_num(ioc
, ad_attr
->serial_num
);
2759 bfa_ioc_get_adapter_fw_ver(ioc
, ad_attr
->fw_ver
);
2760 bfa_ioc_get_adapter_optrom_ver(ioc
, ad_attr
->optrom_ver
);
2761 bfa_ioc_get_adapter_manufacturer(ioc
, ad_attr
->manufacturer
);
2762 memcpy(&ad_attr
->vpd
, &ioc_attr
->vpd
,
2763 sizeof(struct bfa_mfg_vpd
));
2765 ad_attr
->nports
= bfa_ioc_get_nports(ioc
);
2766 ad_attr
->max_speed
= bfa_ioc_speed_sup(ioc
);
2768 bfa_ioc_get_adapter_model(ioc
, ad_attr
->model
);
2769 /* For now, model descr uses same model string */
2770 bfa_ioc_get_adapter_model(ioc
, ad_attr
->model_descr
);
2772 ad_attr
->card_type
= ioc_attr
->card_type
;
2773 ad_attr
->is_mezz
= bfa_mfg_is_mezz(ioc_attr
->card_type
);
2775 if (BFI_ADAPTER_IS_SPECIAL(ioc_attr
->adapter_prop
))
2776 ad_attr
->prototype
= 1;
2778 ad_attr
->prototype
= 0;
2780 ad_attr
->pwwn
= bfa_ioc_get_pwwn(ioc
);
2781 bfa_nw_ioc_get_mac(ioc
, ad_attr
->mac
);
2783 ad_attr
->pcie_gen
= ioc_attr
->pcie_gen
;
2784 ad_attr
->pcie_lanes
= ioc_attr
->pcie_lanes
;
2785 ad_attr
->pcie_lanes_orig
= ioc_attr
->pcie_lanes_orig
;
2786 ad_attr
->asic_rev
= ioc_attr
->asic_rev
;
2788 bfa_ioc_get_pci_chip_rev(ioc
, ad_attr
->hw_ver
);
2791 static enum bfa_ioc_type
2792 bfa_ioc_get_type(struct bfa_ioc
*ioc
)
2794 if (ioc
->clscode
== BFI_PCIFN_CLASS_ETH
)
2795 return BFA_IOC_TYPE_LL
;
2797 BUG_ON(!(ioc
->clscode
== BFI_PCIFN_CLASS_FC
));
2799 return (ioc
->attr
->port_mode
== BFI_PORT_MODE_FC
)
2800 ? BFA_IOC_TYPE_FC
: BFA_IOC_TYPE_FCoE
;
2804 bfa_ioc_get_adapter_serial_num(struct bfa_ioc
*ioc
, char *serial_num
)
2807 (void *)ioc
->attr
->brcd_serialnum
,
2808 BFA_ADAPTER_SERIAL_NUM_LEN
);
2812 bfa_ioc_get_adapter_fw_ver(struct bfa_ioc
*ioc
, char *fw_ver
)
2814 memcpy(fw_ver
, ioc
->attr
->fw_version
, BFA_VERSION_LEN
);
2818 bfa_ioc_get_pci_chip_rev(struct bfa_ioc
*ioc
, char *chip_rev
)
2820 BUG_ON(!(chip_rev
));
2822 memset(chip_rev
, 0, BFA_IOC_CHIP_REV_LEN
);
2828 chip_rev
[4] = ioc
->attr
->asic_rev
;
2833 bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc
*ioc
, char *optrom_ver
)
2835 memcpy(optrom_ver
, ioc
->attr
->optrom_version
,
2840 bfa_ioc_get_adapter_manufacturer(struct bfa_ioc
*ioc
, char *manufacturer
)
2842 strscpy_pad(manufacturer
, BFA_MFG_NAME
, BFA_ADAPTER_MFG_NAME_LEN
);
2846 bfa_ioc_get_adapter_model(struct bfa_ioc
*ioc
, char *model
)
2848 struct bfi_ioc_attr
*ioc_attr
;
2851 memset(model
, 0, BFA_ADAPTER_MODEL_NAME_LEN
);
2853 ioc_attr
= ioc
->attr
;
2855 snprintf(model
, BFA_ADAPTER_MODEL_NAME_LEN
, "%s-%u",
2856 BFA_MFG_NAME
, ioc_attr
->card_type
);
2859 static enum bfa_ioc_state
2860 bfa_ioc_get_state(struct bfa_ioc
*ioc
)
2862 enum bfa_iocpf_state iocpf_st
;
2863 enum bfa_ioc_state ioc_st
= ioc_sm_to_state(ioc_sm_table
, ioc
->fsm
);
2865 if (ioc_st
== BFA_IOC_ENABLING
||
2866 ioc_st
== BFA_IOC_FAIL
|| ioc_st
== BFA_IOC_INITFAIL
) {
2868 iocpf_st
= iocpf_sm_to_state(iocpf_sm_table
, ioc
->iocpf
.fsm
);
2871 case BFA_IOCPF_SEMWAIT
:
2872 ioc_st
= BFA_IOC_SEMWAIT
;
2875 case BFA_IOCPF_HWINIT
:
2876 ioc_st
= BFA_IOC_HWINIT
;
2879 case BFA_IOCPF_FWMISMATCH
:
2880 ioc_st
= BFA_IOC_FWMISMATCH
;
2883 case BFA_IOCPF_FAIL
:
2884 ioc_st
= BFA_IOC_FAIL
;
2887 case BFA_IOCPF_INITFAIL
:
2888 ioc_st
= BFA_IOC_INITFAIL
;
2899 bfa_nw_ioc_get_attr(struct bfa_ioc
*ioc
, struct bfa_ioc_attr
*ioc_attr
)
2901 memset((void *)ioc_attr
, 0, sizeof(struct bfa_ioc_attr
));
2903 ioc_attr
->state
= bfa_ioc_get_state(ioc
);
2904 ioc_attr
->port_id
= bfa_ioc_portid(ioc
);
2905 ioc_attr
->port_mode
= ioc
->port_mode
;
2907 ioc_attr
->port_mode_cfg
= ioc
->port_mode_cfg
;
2908 ioc_attr
->cap_bm
= ioc
->ad_cap_bm
;
2910 ioc_attr
->ioc_type
= bfa_ioc_get_type(ioc
);
2912 bfa_ioc_get_adapter_attr(ioc
, &ioc_attr
->adapter_attr
);
2914 ioc_attr
->pci_attr
.device_id
= bfa_ioc_devid(ioc
);
2915 ioc_attr
->pci_attr
.pcifn
= bfa_ioc_pcifn(ioc
);
2916 ioc_attr
->def_fn
= bfa_ioc_is_default(ioc
);
2917 bfa_ioc_get_pci_chip_rev(ioc
, ioc_attr
->pci_attr
.chip_rev
);
2922 bfa_ioc_get_pwwn(struct bfa_ioc
*ioc
)
2924 return ioc
->attr
->pwwn
;
2928 bfa_nw_ioc_get_mac(struct bfa_ioc
*ioc
, u8
*mac
)
2930 ether_addr_copy(mac
, ioc
->attr
->mac
);
2933 /* Firmware failure detected. Start recovery actions. */
2935 bfa_ioc_recover(struct bfa_ioc
*ioc
)
2937 pr_crit("Heart Beat of IOC has failed\n");
2938 bfa_ioc_stats(ioc
, ioc_hbfails
);
2939 bfa_ioc_stats_hb_count(ioc
, ioc
->hb_count
);
2940 bfa_fsm_send_event(ioc
, IOC_E_HBFAIL
);
2943 /* BFA IOC PF private functions */
2946 bfa_iocpf_enable(struct bfa_ioc
*ioc
)
2948 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_ENABLE
);
2952 bfa_iocpf_disable(struct bfa_ioc
*ioc
)
2954 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_DISABLE
);
2958 bfa_iocpf_fail(struct bfa_ioc
*ioc
)
2960 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FAIL
);
2964 bfa_iocpf_initfail(struct bfa_ioc
*ioc
)
2966 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_INITFAIL
);
2970 bfa_iocpf_getattrfail(struct bfa_ioc
*ioc
)
2972 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_GETATTRFAIL
);
2976 bfa_iocpf_stop(struct bfa_ioc
*ioc
)
2978 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_STOP
);
2982 bfa_nw_iocpf_timeout(struct bfa_ioc
*ioc
)
2984 enum bfa_iocpf_state iocpf_st
;
2986 iocpf_st
= iocpf_sm_to_state(iocpf_sm_table
, ioc
->iocpf
.fsm
);
2988 if (iocpf_st
== BFA_IOCPF_HWINIT
)
2989 bfa_ioc_poll_fwinit(ioc
);
2991 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_TIMEOUT
);
2995 bfa_nw_iocpf_sem_timeout(struct bfa_ioc
*ioc
)
2997 bfa_ioc_hw_sem_get(ioc
);
3001 bfa_ioc_poll_fwinit(struct bfa_ioc
*ioc
)
3003 u32 fwstate
= bfa_ioc_get_cur_ioc_fwstate(ioc
);
3005 if (fwstate
== BFI_IOC_DISABLED
) {
3006 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_FWREADY
);
3010 if (ioc
->iocpf
.poll_time
>= BFA_IOC_TOV
) {
3011 bfa_fsm_send_event(&ioc
->iocpf
, IOCPF_E_TIMEOUT
);
3013 ioc
->iocpf
.poll_time
+= BFA_IOC_POLL_TOV
;
3014 mod_timer(&ioc
->iocpf_timer
, jiffies
+
3015 msecs_to_jiffies(BFA_IOC_POLL_TOV
));
3020 * Flash module specific
3024 * FLASH DMA buffer should be big enough to hold both MFG block and
3025 * asic block(64k) at the same time and also should be 2k aligned to
3026 * avoid write segement to cross sector boundary.
3028 #define BFA_FLASH_SEG_SZ 2048
3029 #define BFA_FLASH_DMA_BUF_SZ \
3030 roundup(0x010000 + sizeof(struct bfa_mfg_block), BFA_FLASH_SEG_SZ)
3033 bfa_flash_cb(struct bfa_flash
*flash
)
3037 flash
->cbfn(flash
->cbarg
, flash
->status
);
3041 bfa_flash_notify(void *cbarg
, enum bfa_ioc_event event
)
3043 struct bfa_flash
*flash
= cbarg
;
3046 case BFA_IOC_E_DISABLED
:
3047 case BFA_IOC_E_FAILED
:
3048 if (flash
->op_busy
) {
3049 flash
->status
= BFA_STATUS_IOC_FAILURE
;
3050 flash
->cbfn(flash
->cbarg
, flash
->status
);
3060 * Send flash write request.
3063 bfa_flash_write_send(struct bfa_flash
*flash
)
3065 struct bfi_flash_write_req
*msg
=
3066 (struct bfi_flash_write_req
*) flash
->mb
.msg
;
3069 msg
->type
= be32_to_cpu(flash
->type
);
3070 msg
->instance
= flash
->instance
;
3071 msg
->offset
= be32_to_cpu(flash
->addr_off
+ flash
->offset
);
3072 len
= (flash
->residue
< BFA_FLASH_DMA_BUF_SZ
) ?
3073 flash
->residue
: BFA_FLASH_DMA_BUF_SZ
;
3074 msg
->length
= be32_to_cpu(len
);
3076 /* indicate if it's the last msg of the whole write operation */
3077 msg
->last
= (len
== flash
->residue
) ? 1 : 0;
3079 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_WRITE_REQ
,
3080 bfa_ioc_portid(flash
->ioc
));
3081 bfa_alen_set(&msg
->alen
, len
, flash
->dbuf_pa
);
3082 memcpy(flash
->dbuf_kva
, flash
->ubuf
+ flash
->offset
, len
);
3083 bfa_nw_ioc_mbox_queue(flash
->ioc
, &flash
->mb
, NULL
, NULL
);
3085 flash
->residue
-= len
;
3086 flash
->offset
+= len
;
3090 * bfa_flash_read_send - Send flash read request.
3092 * @cbarg: callback argument
3095 bfa_flash_read_send(void *cbarg
)
3097 struct bfa_flash
*flash
= cbarg
;
3098 struct bfi_flash_read_req
*msg
=
3099 (struct bfi_flash_read_req
*) flash
->mb
.msg
;
3102 msg
->type
= be32_to_cpu(flash
->type
);
3103 msg
->instance
= flash
->instance
;
3104 msg
->offset
= be32_to_cpu(flash
->addr_off
+ flash
->offset
);
3105 len
= (flash
->residue
< BFA_FLASH_DMA_BUF_SZ
) ?
3106 flash
->residue
: BFA_FLASH_DMA_BUF_SZ
;
3107 msg
->length
= be32_to_cpu(len
);
3108 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_READ_REQ
,
3109 bfa_ioc_portid(flash
->ioc
));
3110 bfa_alen_set(&msg
->alen
, len
, flash
->dbuf_pa
);
3111 bfa_nw_ioc_mbox_queue(flash
->ioc
, &flash
->mb
, NULL
, NULL
);
3115 * bfa_flash_intr - Process flash response messages upon receiving interrupts.
3117 * @flasharg: flash structure
3118 * @msg: message structure
3121 bfa_flash_intr(void *flasharg
, struct bfi_mbmsg
*msg
)
3123 struct bfa_flash
*flash
= flasharg
;
3127 struct bfi_flash_query_rsp
*query
;
3128 struct bfi_flash_write_rsp
*write
;
3129 struct bfi_flash_read_rsp
*read
;
3130 struct bfi_mbmsg
*msg
;
3135 /* receiving response after ioc failure */
3136 if (!flash
->op_busy
&& msg
->mh
.msg_id
!= BFI_FLASH_I2H_EVENT
)
3139 switch (msg
->mh
.msg_id
) {
3140 case BFI_FLASH_I2H_QUERY_RSP
:
3141 status
= be32_to_cpu(m
.query
->status
);
3142 if (status
== BFA_STATUS_OK
) {
3144 struct bfa_flash_attr
*attr
, *f
;
3146 attr
= (struct bfa_flash_attr
*) flash
->ubuf
;
3147 f
= (struct bfa_flash_attr
*) flash
->dbuf_kva
;
3148 attr
->status
= be32_to_cpu(f
->status
);
3149 attr
->npart
= be32_to_cpu(f
->npart
);
3150 for (i
= 0; i
< attr
->npart
; i
++) {
3151 attr
->part
[i
].part_type
=
3152 be32_to_cpu(f
->part
[i
].part_type
);
3153 attr
->part
[i
].part_instance
=
3154 be32_to_cpu(f
->part
[i
].part_instance
);
3155 attr
->part
[i
].part_off
=
3156 be32_to_cpu(f
->part
[i
].part_off
);
3157 attr
->part
[i
].part_size
=
3158 be32_to_cpu(f
->part
[i
].part_size
);
3159 attr
->part
[i
].part_len
=
3160 be32_to_cpu(f
->part
[i
].part_len
);
3161 attr
->part
[i
].part_status
=
3162 be32_to_cpu(f
->part
[i
].part_status
);
3165 flash
->status
= status
;
3166 bfa_flash_cb(flash
);
3168 case BFI_FLASH_I2H_WRITE_RSP
:
3169 status
= be32_to_cpu(m
.write
->status
);
3170 if (status
!= BFA_STATUS_OK
|| flash
->residue
== 0) {
3171 flash
->status
= status
;
3172 bfa_flash_cb(flash
);
3174 bfa_flash_write_send(flash
);
3176 case BFI_FLASH_I2H_READ_RSP
:
3177 status
= be32_to_cpu(m
.read
->status
);
3178 if (status
!= BFA_STATUS_OK
) {
3179 flash
->status
= status
;
3180 bfa_flash_cb(flash
);
3182 u32 len
= be32_to_cpu(m
.read
->length
);
3183 memcpy(flash
->ubuf
+ flash
->offset
,
3184 flash
->dbuf_kva
, len
);
3185 flash
->residue
-= len
;
3186 flash
->offset
+= len
;
3187 if (flash
->residue
== 0) {
3188 flash
->status
= status
;
3189 bfa_flash_cb(flash
);
3191 bfa_flash_read_send(flash
);
3194 case BFI_FLASH_I2H_BOOT_VER_RSP
:
3195 case BFI_FLASH_I2H_EVENT
:
3203 * Flash memory info API.
3206 bfa_nw_flash_meminfo(void)
3208 return roundup(BFA_FLASH_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
3212 * bfa_nw_flash_attach - Flash attach API.
3214 * @flash: flash structure
3215 * @ioc: ioc structure
3216 * @dev: device structure
3219 bfa_nw_flash_attach(struct bfa_flash
*flash
, struct bfa_ioc
*ioc
, void *dev
)
3223 flash
->cbarg
= NULL
;
3226 bfa_nw_ioc_mbox_regisr(flash
->ioc
, BFI_MC_FLASH
, bfa_flash_intr
, flash
);
3227 bfa_ioc_notify_init(&flash
->ioc_notify
, bfa_flash_notify
, flash
);
3228 list_add_tail(&flash
->ioc_notify
.qe
, &flash
->ioc
->notify_q
);
3232 * bfa_nw_flash_memclaim - Claim memory for flash
3234 * @flash: flash structure
3235 * @dm_kva: pointer to virtual memory address
3236 * @dm_pa: physical memory address
3239 bfa_nw_flash_memclaim(struct bfa_flash
*flash
, u8
*dm_kva
, u64 dm_pa
)
3241 flash
->dbuf_kva
= dm_kva
;
3242 flash
->dbuf_pa
= dm_pa
;
3243 memset(flash
->dbuf_kva
, 0, BFA_FLASH_DMA_BUF_SZ
);
3244 dm_kva
+= roundup(BFA_FLASH_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
3245 dm_pa
+= roundup(BFA_FLASH_DMA_BUF_SZ
, BFA_DMA_ALIGN_SZ
);
3249 * bfa_nw_flash_get_attr - Get flash attribute.
3251 * @flash: flash structure
3252 * @attr: flash attribute structure
3253 * @cbfn: callback function
3254 * @cbarg: callback argument
3259 bfa_nw_flash_get_attr(struct bfa_flash
*flash
, struct bfa_flash_attr
*attr
,
3260 bfa_cb_flash cbfn
, void *cbarg
)
3262 struct bfi_flash_query_req
*msg
=
3263 (struct bfi_flash_query_req
*) flash
->mb
.msg
;
3265 if (!bfa_nw_ioc_is_operational(flash
->ioc
))
3266 return BFA_STATUS_IOC_NON_OP
;
3269 return BFA_STATUS_DEVBUSY
;
3273 flash
->cbarg
= cbarg
;
3274 flash
->ubuf
= (u8
*) attr
;
3276 bfi_h2i_set(msg
->mh
, BFI_MC_FLASH
, BFI_FLASH_H2I_QUERY_REQ
,
3277 bfa_ioc_portid(flash
->ioc
));
3278 bfa_alen_set(&msg
->alen
, sizeof(struct bfa_flash_attr
), flash
->dbuf_pa
);
3279 bfa_nw_ioc_mbox_queue(flash
->ioc
, &flash
->mb
, NULL
, NULL
);
3281 return BFA_STATUS_OK
;
3285 * bfa_nw_flash_update_part - Update flash partition.
3287 * @flash: flash structure
3288 * @type: flash partition type
3289 * @instance: flash partition instance
3290 * @buf: update data buffer
3291 * @len: data buffer length
3292 * @offset: offset relative to the partition starting address
3293 * @cbfn: callback function
3294 * @cbarg: callback argument
3299 bfa_nw_flash_update_part(struct bfa_flash
*flash
, u32 type
, u8 instance
,
3300 void *buf
, u32 len
, u32 offset
,
3301 bfa_cb_flash cbfn
, void *cbarg
)
3303 if (!bfa_nw_ioc_is_operational(flash
->ioc
))
3304 return BFA_STATUS_IOC_NON_OP
;
3307 * 'len' must be in word (4-byte) boundary
3309 if (!len
|| (len
& 0x03))
3310 return BFA_STATUS_FLASH_BAD_LEN
;
3312 if (type
== BFA_FLASH_PART_MFG
)
3313 return BFA_STATUS_EINVAL
;
3316 return BFA_STATUS_DEVBUSY
;
3320 flash
->cbarg
= cbarg
;
3322 flash
->instance
= instance
;
3323 flash
->residue
= len
;
3325 flash
->addr_off
= offset
;
3328 bfa_flash_write_send(flash
);
3330 return BFA_STATUS_OK
;
3334 * bfa_nw_flash_read_part - Read flash partition.
3336 * @flash: flash structure
3337 * @type: flash partition type
3338 * @instance: flash partition instance
3339 * @buf: read data buffer
3340 * @len: data buffer length
3341 * @offset: offset relative to the partition starting address
3342 * @cbfn: callback function
3343 * @cbarg: callback argument
3348 bfa_nw_flash_read_part(struct bfa_flash
*flash
, u32 type
, u8 instance
,
3349 void *buf
, u32 len
, u32 offset
,
3350 bfa_cb_flash cbfn
, void *cbarg
)
3352 if (!bfa_nw_ioc_is_operational(flash
->ioc
))
3353 return BFA_STATUS_IOC_NON_OP
;
3356 * 'len' must be in word (4-byte) boundary
3358 if (!len
|| (len
& 0x03))
3359 return BFA_STATUS_FLASH_BAD_LEN
;
3362 return BFA_STATUS_DEVBUSY
;
3366 flash
->cbarg
= cbarg
;
3368 flash
->instance
= instance
;
3369 flash
->residue
= len
;
3371 flash
->addr_off
= offset
;
3374 bfa_flash_read_send(flash
);
3376 return BFA_STATUS_OK
;