1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include "bfa_ioc.h"
21#include "bfi_reg.h"
22#include "bfa_defs.h"
23
24
25
26
27
28#define bfa_ioc_firmware_lock(__ioc) \
29 ((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
30#define bfa_ioc_firmware_unlock(__ioc) \
31 ((__ioc)->ioc_hwif->ioc_firmware_unlock(__ioc))
32#define bfa_ioc_reg_init(__ioc) ((__ioc)->ioc_hwif->ioc_reg_init(__ioc))
33#define bfa_ioc_map_port(__ioc) ((__ioc)->ioc_hwif->ioc_map_port(__ioc))
34#define bfa_ioc_notify_fail(__ioc) \
35 ((__ioc)->ioc_hwif->ioc_notify_fail(__ioc))
36#define bfa_ioc_sync_start(__ioc) \
37 ((__ioc)->ioc_hwif->ioc_sync_start(__ioc))
38#define bfa_ioc_sync_join(__ioc) \
39 ((__ioc)->ioc_hwif->ioc_sync_join(__ioc))
40#define bfa_ioc_sync_leave(__ioc) \
41 ((__ioc)->ioc_hwif->ioc_sync_leave(__ioc))
42#define bfa_ioc_sync_ack(__ioc) \
43 ((__ioc)->ioc_hwif->ioc_sync_ack(__ioc))
44#define bfa_ioc_sync_complete(__ioc) \
45 ((__ioc)->ioc_hwif->ioc_sync_complete(__ioc))
46#define bfa_ioc_set_cur_ioc_fwstate(__ioc, __fwstate) \
47 ((__ioc)->ioc_hwif->ioc_set_fwstate(__ioc, __fwstate))
48#define bfa_ioc_get_cur_ioc_fwstate(__ioc) \
49 ((__ioc)->ioc_hwif->ioc_get_fwstate(__ioc))
50#define bfa_ioc_set_alt_ioc_fwstate(__ioc, __fwstate) \
51 ((__ioc)->ioc_hwif->ioc_set_alt_fwstate(__ioc, __fwstate))
52
53static bool bfa_nw_auto_recover = true;
54
55
56
57
58static void bfa_ioc_hw_sem_init(struct bfa_ioc *ioc);
59static void bfa_ioc_hw_sem_get(struct bfa_ioc *ioc);
60static void bfa_ioc_hw_sem_get_cancel(struct bfa_ioc *ioc);
61static void bfa_ioc_hwinit(struct bfa_ioc *ioc, bool force);
62static void bfa_ioc_poll_fwinit(struct bfa_ioc *ioc);
63static void bfa_ioc_send_enable(struct bfa_ioc *ioc);
64static void bfa_ioc_send_disable(struct bfa_ioc *ioc);
65static void bfa_ioc_send_getattr(struct bfa_ioc *ioc);
66static void bfa_ioc_hb_monitor(struct bfa_ioc *ioc);
67static void bfa_ioc_hb_stop(struct bfa_ioc *ioc);
68static void bfa_ioc_reset(struct bfa_ioc *ioc, bool force);
69static void bfa_ioc_mbox_poll(struct bfa_ioc *ioc);
70static void bfa_ioc_mbox_flush(struct bfa_ioc *ioc);
71static void bfa_ioc_recover(struct bfa_ioc *ioc);
72static void bfa_ioc_event_notify(struct bfa_ioc *, enum bfa_ioc_event);
73static void bfa_ioc_disable_comp(struct bfa_ioc *ioc);
74static void bfa_ioc_lpu_stop(struct bfa_ioc *ioc);
75static void bfa_nw_ioc_debug_save_ftrc(struct bfa_ioc *ioc);
76static void bfa_ioc_fail_notify(struct bfa_ioc *ioc);
77static void bfa_ioc_pf_enabled(struct bfa_ioc *ioc);
78static void bfa_ioc_pf_disabled(struct bfa_ioc *ioc);
79static void bfa_ioc_pf_failed(struct bfa_ioc *ioc);
80static void bfa_ioc_pf_hwfailed(struct bfa_ioc *ioc);
81static void bfa_ioc_pf_fwmismatch(struct bfa_ioc *ioc);
82static enum bfa_status bfa_ioc_boot(struct bfa_ioc *ioc,
83 enum bfi_fwboot_type boot_type, u32 boot_param);
84static u32 bfa_ioc_smem_pgnum(struct bfa_ioc *ioc, u32 fmaddr);
85static void bfa_ioc_get_adapter_serial_num(struct bfa_ioc *ioc,
86 char *serial_num);
87static void bfa_ioc_get_adapter_fw_ver(struct bfa_ioc *ioc,
88 char *fw_ver);
89static void bfa_ioc_get_pci_chip_rev(struct bfa_ioc *ioc,
90 char *chip_rev);
91static void bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc *ioc,
92 char *optrom_ver);
93static void bfa_ioc_get_adapter_manufacturer(struct bfa_ioc *ioc,
94 char *manufacturer);
95static void bfa_ioc_get_adapter_model(struct bfa_ioc *ioc, char *model);
96static u64 bfa_ioc_get_pwwn(struct bfa_ioc *ioc);
97
98
99enum ioc_event {
100 IOC_E_RESET = 1,
101 IOC_E_ENABLE = 2,
102 IOC_E_DISABLE = 3,
103 IOC_E_DETACH = 4,
104 IOC_E_ENABLED = 5,
105 IOC_E_FWRSP_GETATTR = 6,
106 IOC_E_DISABLED = 7,
107 IOC_E_PFFAILED = 8,
108 IOC_E_HBFAIL = 9,
109 IOC_E_HWERROR = 10,
110 IOC_E_TIMEOUT = 11,
111 IOC_E_HWFAILED = 12,
112};
113
114bfa_fsm_state_decl(bfa_ioc, uninit, struct bfa_ioc, enum ioc_event);
115bfa_fsm_state_decl(bfa_ioc, reset, struct bfa_ioc, enum ioc_event);
116bfa_fsm_state_decl(bfa_ioc, enabling, struct bfa_ioc, enum ioc_event);
117bfa_fsm_state_decl(bfa_ioc, getattr, struct bfa_ioc, enum ioc_event);
118bfa_fsm_state_decl(bfa_ioc, op, struct bfa_ioc, enum ioc_event);
119bfa_fsm_state_decl(bfa_ioc, fail_retry, struct bfa_ioc, enum ioc_event);
120bfa_fsm_state_decl(bfa_ioc, fail, struct bfa_ioc, enum ioc_event);
121bfa_fsm_state_decl(bfa_ioc, disabling, struct bfa_ioc, enum ioc_event);
122bfa_fsm_state_decl(bfa_ioc, disabled, struct bfa_ioc, enum ioc_event);
123bfa_fsm_state_decl(bfa_ioc, hwfail, struct bfa_ioc, enum ioc_event);
124
125static struct bfa_sm_table ioc_sm_table[] = {
126 {BFA_SM(bfa_ioc_sm_uninit), BFA_IOC_UNINIT},
127 {BFA_SM(bfa_ioc_sm_reset), BFA_IOC_RESET},
128 {BFA_SM(bfa_ioc_sm_enabling), BFA_IOC_ENABLING},
129 {BFA_SM(bfa_ioc_sm_getattr), BFA_IOC_GETATTR},
130 {BFA_SM(bfa_ioc_sm_op), BFA_IOC_OPERATIONAL},
131 {BFA_SM(bfa_ioc_sm_fail_retry), BFA_IOC_INITFAIL},
132 {BFA_SM(bfa_ioc_sm_fail), BFA_IOC_FAIL},
133 {BFA_SM(bfa_ioc_sm_disabling), BFA_IOC_DISABLING},
134 {BFA_SM(bfa_ioc_sm_disabled), BFA_IOC_DISABLED},
135 {BFA_SM(bfa_ioc_sm_hwfail), BFA_IOC_HWFAIL},
136};
137
138
139
140
141static void bfa_iocpf_enable(struct bfa_ioc *ioc);
142static void bfa_iocpf_disable(struct bfa_ioc *ioc);
143static void bfa_iocpf_fail(struct bfa_ioc *ioc);
144static void bfa_iocpf_initfail(struct bfa_ioc *ioc);
145static void bfa_iocpf_getattrfail(struct bfa_ioc *ioc);
146static void bfa_iocpf_stop(struct bfa_ioc *ioc);
147
148
149enum iocpf_event {
150 IOCPF_E_ENABLE = 1,
151 IOCPF_E_DISABLE = 2,
152 IOCPF_E_STOP = 3,
153 IOCPF_E_FWREADY = 4,
154 IOCPF_E_FWRSP_ENABLE = 5,
155 IOCPF_E_FWRSP_DISABLE = 6,
156 IOCPF_E_FAIL = 7,
157 IOCPF_E_INITFAIL = 8,
158 IOCPF_E_GETATTRFAIL = 9,
159 IOCPF_E_SEMLOCKED = 10,
160 IOCPF_E_TIMEOUT = 11,
161 IOCPF_E_SEM_ERROR = 12,
162};
163
164
165enum bfa_iocpf_state {
166 BFA_IOCPF_RESET = 1,
167 BFA_IOCPF_SEMWAIT = 2,
168 BFA_IOCPF_HWINIT = 3,
169 BFA_IOCPF_READY = 4,
170 BFA_IOCPF_INITFAIL = 5,
171 BFA_IOCPF_FAIL = 6,
172 BFA_IOCPF_DISABLING = 7,
173 BFA_IOCPF_DISABLED = 8,
174 BFA_IOCPF_FWMISMATCH = 9,
175};
176
177bfa_fsm_state_decl(bfa_iocpf, reset, struct bfa_iocpf, enum iocpf_event);
178bfa_fsm_state_decl(bfa_iocpf, fwcheck, struct bfa_iocpf, enum iocpf_event);
179bfa_fsm_state_decl(bfa_iocpf, mismatch, struct bfa_iocpf, enum iocpf_event);
180bfa_fsm_state_decl(bfa_iocpf, semwait, struct bfa_iocpf, enum iocpf_event);
181bfa_fsm_state_decl(bfa_iocpf, hwinit, struct bfa_iocpf, enum iocpf_event);
182bfa_fsm_state_decl(bfa_iocpf, enabling, struct bfa_iocpf, enum iocpf_event);
183bfa_fsm_state_decl(bfa_iocpf, ready, struct bfa_iocpf, enum iocpf_event);
184bfa_fsm_state_decl(bfa_iocpf, initfail_sync, struct bfa_iocpf,
185 enum iocpf_event);
186bfa_fsm_state_decl(bfa_iocpf, initfail, struct bfa_iocpf, enum iocpf_event);
187bfa_fsm_state_decl(bfa_iocpf, fail_sync, struct bfa_iocpf, enum iocpf_event);
188bfa_fsm_state_decl(bfa_iocpf, fail, struct bfa_iocpf, enum iocpf_event);
189bfa_fsm_state_decl(bfa_iocpf, disabling, struct bfa_iocpf, enum iocpf_event);
190bfa_fsm_state_decl(bfa_iocpf, disabling_sync, struct bfa_iocpf,
191 enum iocpf_event);
192bfa_fsm_state_decl(bfa_iocpf, disabled, struct bfa_iocpf, enum iocpf_event);
193
194static struct bfa_sm_table iocpf_sm_table[] = {
195 {BFA_SM(bfa_iocpf_sm_reset), BFA_IOCPF_RESET},
196 {BFA_SM(bfa_iocpf_sm_fwcheck), BFA_IOCPF_FWMISMATCH},
197 {BFA_SM(bfa_iocpf_sm_mismatch), BFA_IOCPF_FWMISMATCH},
198 {BFA_SM(bfa_iocpf_sm_semwait), BFA_IOCPF_SEMWAIT},
199 {BFA_SM(bfa_iocpf_sm_hwinit), BFA_IOCPF_HWINIT},
200 {BFA_SM(bfa_iocpf_sm_enabling), BFA_IOCPF_HWINIT},
201 {BFA_SM(bfa_iocpf_sm_ready), BFA_IOCPF_READY},
202 {BFA_SM(bfa_iocpf_sm_initfail_sync), BFA_IOCPF_INITFAIL},
203 {BFA_SM(bfa_iocpf_sm_initfail), BFA_IOCPF_INITFAIL},
204 {BFA_SM(bfa_iocpf_sm_fail_sync), BFA_IOCPF_FAIL},
205 {BFA_SM(bfa_iocpf_sm_fail), BFA_IOCPF_FAIL},
206 {BFA_SM(bfa_iocpf_sm_disabling), BFA_IOCPF_DISABLING},
207 {BFA_SM(bfa_iocpf_sm_disabling_sync), BFA_IOCPF_DISABLING},
208 {BFA_SM(bfa_iocpf_sm_disabled), BFA_IOCPF_DISABLED},
209};
210
211
212
213
214static void
215bfa_ioc_sm_uninit_entry(struct bfa_ioc *ioc)
216{
217}
218
219
220static void
221bfa_ioc_sm_uninit(struct bfa_ioc *ioc, enum ioc_event event)
222{
223 switch (event) {
224 case IOC_E_RESET:
225 bfa_fsm_set_state(ioc, bfa_ioc_sm_reset);
226 break;
227
228 default:
229 bfa_sm_fault(event);
230 }
231}
232
233
234static void
235bfa_ioc_sm_reset_entry(struct bfa_ioc *ioc)
236{
237 bfa_fsm_set_state(&ioc->iocpf, bfa_iocpf_sm_reset);
238}
239
240
241static void
242bfa_ioc_sm_reset(struct bfa_ioc *ioc, enum ioc_event event)
243{
244 switch (event) {
245 case IOC_E_ENABLE:
246 bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
247 break;
248
249 case IOC_E_DISABLE:
250 bfa_ioc_disable_comp(ioc);
251 break;
252
253 case IOC_E_DETACH:
254 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
255 break;
256
257 default:
258 bfa_sm_fault(event);
259 }
260}
261
262static void
263bfa_ioc_sm_enabling_entry(struct bfa_ioc *ioc)
264{
265 bfa_iocpf_enable(ioc);
266}
267
268
269
270
271static void
272bfa_ioc_sm_enabling(struct bfa_ioc *ioc, enum ioc_event event)
273{
274 switch (event) {
275 case IOC_E_ENABLED:
276 bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
277 break;
278
279 case IOC_E_PFFAILED:
280
281 case IOC_E_HWERROR:
282 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
283 bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
284 if (event != IOC_E_PFFAILED)
285 bfa_iocpf_initfail(ioc);
286 break;
287
288 case IOC_E_HWFAILED:
289 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
290 bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
291 break;
292
293 case IOC_E_DISABLE:
294 bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
295 break;
296
297 case IOC_E_DETACH:
298 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
299 bfa_iocpf_stop(ioc);
300 break;
301
302 case IOC_E_ENABLE:
303 break;
304
305 default:
306 bfa_sm_fault(event);
307 }
308}
309
310
311static void
312bfa_ioc_sm_getattr_entry(struct bfa_ioc *ioc)
313{
314 mod_timer(&ioc->ioc_timer, jiffies +
315 msecs_to_jiffies(BFA_IOC_TOV));
316 bfa_ioc_send_getattr(ioc);
317}
318
319
320static void
321bfa_ioc_sm_getattr(struct bfa_ioc *ioc, enum ioc_event event)
322{
323 switch (event) {
324 case IOC_E_FWRSP_GETATTR:
325 del_timer(&ioc->ioc_timer);
326 bfa_fsm_set_state(ioc, bfa_ioc_sm_op);
327 break;
328
329 case IOC_E_PFFAILED:
330 case IOC_E_HWERROR:
331 del_timer(&ioc->ioc_timer);
332
333 case IOC_E_TIMEOUT:
334 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
335 bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
336 if (event != IOC_E_PFFAILED)
337 bfa_iocpf_getattrfail(ioc);
338 break;
339
340 case IOC_E_DISABLE:
341 del_timer(&ioc->ioc_timer);
342 bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
343 break;
344
345 case IOC_E_ENABLE:
346 break;
347
348 default:
349 bfa_sm_fault(event);
350 }
351}
352
353static void
354bfa_ioc_sm_op_entry(struct bfa_ioc *ioc)
355{
356 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_OK);
357 bfa_ioc_event_notify(ioc, BFA_IOC_E_ENABLED);
358 bfa_ioc_hb_monitor(ioc);
359}
360
361static void
362bfa_ioc_sm_op(struct bfa_ioc *ioc, enum ioc_event event)
363{
364 switch (event) {
365 case IOC_E_ENABLE:
366 break;
367
368 case IOC_E_DISABLE:
369 bfa_ioc_hb_stop(ioc);
370 bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
371 break;
372
373 case IOC_E_PFFAILED:
374 case IOC_E_HWERROR:
375 bfa_ioc_hb_stop(ioc);
376
377 case IOC_E_HBFAIL:
378 if (ioc->iocpf.auto_recover)
379 bfa_fsm_set_state(ioc, bfa_ioc_sm_fail_retry);
380 else
381 bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
382
383 bfa_ioc_fail_notify(ioc);
384
385 if (event != IOC_E_PFFAILED)
386 bfa_iocpf_fail(ioc);
387 break;
388
389 default:
390 bfa_sm_fault(event);
391 }
392}
393
394static void
395bfa_ioc_sm_disabling_entry(struct bfa_ioc *ioc)
396{
397 bfa_iocpf_disable(ioc);
398}
399
400
401static void
402bfa_ioc_sm_disabling(struct bfa_ioc *ioc, enum ioc_event event)
403{
404 switch (event) {
405 case IOC_E_DISABLED:
406 bfa_fsm_set_state(ioc, bfa_ioc_sm_disabled);
407 break;
408
409 case IOC_E_HWERROR:
410
411
412
413
414
415 bfa_iocpf_fail(ioc);
416 break;
417
418 case IOC_E_HWFAILED:
419 bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
420 bfa_ioc_disable_comp(ioc);
421 break;
422
423 default:
424 bfa_sm_fault(event);
425 }
426}
427
428
429static void
430bfa_ioc_sm_disabled_entry(struct bfa_ioc *ioc)
431{
432 bfa_ioc_disable_comp(ioc);
433}
434
435static void
436bfa_ioc_sm_disabled(struct bfa_ioc *ioc, enum ioc_event event)
437{
438 switch (event) {
439 case IOC_E_ENABLE:
440 bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
441 break;
442
443 case IOC_E_DISABLE:
444 ioc->cbfn->disable_cbfn(ioc->bfa);
445 break;
446
447 case IOC_E_DETACH:
448 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
449 bfa_iocpf_stop(ioc);
450 break;
451
452 default:
453 bfa_sm_fault(event);
454 }
455}
456
457static void
458bfa_ioc_sm_fail_retry_entry(struct bfa_ioc *ioc)
459{
460}
461
462
463static void
464bfa_ioc_sm_fail_retry(struct bfa_ioc *ioc, enum ioc_event event)
465{
466 switch (event) {
467 case IOC_E_ENABLED:
468 bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
469 break;
470
471 case IOC_E_PFFAILED:
472 case IOC_E_HWERROR:
473
474
475
476 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
477 bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
478 if (event != IOC_E_PFFAILED)
479 bfa_iocpf_initfail(ioc);
480 break;
481
482 case IOC_E_HWFAILED:
483 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
484 bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
485 break;
486
487 case IOC_E_ENABLE:
488 break;
489
490 case IOC_E_DISABLE:
491 bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
492 break;
493
494 case IOC_E_DETACH:
495 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
496 bfa_iocpf_stop(ioc);
497 break;
498
499 default:
500 bfa_sm_fault(event);
501 }
502}
503
504static void
505bfa_ioc_sm_fail_entry(struct bfa_ioc *ioc)
506{
507}
508
509
510static void
511bfa_ioc_sm_fail(struct bfa_ioc *ioc, enum ioc_event event)
512{
513 switch (event) {
514 case IOC_E_ENABLE:
515 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
516 break;
517
518 case IOC_E_DISABLE:
519 bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
520 break;
521
522 case IOC_E_DETACH:
523 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
524 bfa_iocpf_stop(ioc);
525 break;
526
527 case IOC_E_HWERROR:
528
529 break;
530
531 default:
532 bfa_sm_fault(event);
533 }
534}
535
536static void
537bfa_ioc_sm_hwfail_entry(struct bfa_ioc *ioc)
538{
539}
540
541
542static void
543bfa_ioc_sm_hwfail(struct bfa_ioc *ioc, enum ioc_event event)
544{
545 switch (event) {
546
547 case IOC_E_ENABLE:
548 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
549 break;
550
551 case IOC_E_DISABLE:
552 ioc->cbfn->disable_cbfn(ioc->bfa);
553 break;
554
555 case IOC_E_DETACH:
556 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
557 break;
558
559 default:
560 bfa_sm_fault(event);
561 }
562}
563
564
565
566
567static void
568bfa_iocpf_sm_reset_entry(struct bfa_iocpf *iocpf)
569{
570 iocpf->fw_mismatch_notified = false;
571 iocpf->auto_recover = bfa_nw_auto_recover;
572}
573
574
575static void
576bfa_iocpf_sm_reset(struct bfa_iocpf *iocpf, enum iocpf_event event)
577{
578 switch (event) {
579 case IOCPF_E_ENABLE:
580 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
581 break;
582
583 case IOCPF_E_STOP:
584 break;
585
586 default:
587 bfa_sm_fault(event);
588 }
589}
590
591
592static void
593bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf *iocpf)
594{
595 bfa_ioc_hw_sem_init(iocpf->ioc);
596 bfa_ioc_hw_sem_get(iocpf->ioc);
597}
598
599
600static void
601bfa_iocpf_sm_fwcheck(struct bfa_iocpf *iocpf, enum iocpf_event event)
602{
603 struct bfa_ioc *ioc = iocpf->ioc;
604
605 switch (event) {
606 case IOCPF_E_SEMLOCKED:
607 if (bfa_ioc_firmware_lock(ioc)) {
608 if (bfa_ioc_sync_start(ioc)) {
609 bfa_ioc_sync_join(ioc);
610 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
611 } else {
612 bfa_ioc_firmware_unlock(ioc);
613 bfa_nw_ioc_hw_sem_release(ioc);
614 mod_timer(&ioc->sem_timer, jiffies +
615 msecs_to_jiffies(BFA_IOC_HWSEM_TOV));
616 }
617 } else {
618 bfa_nw_ioc_hw_sem_release(ioc);
619 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_mismatch);
620 }
621 break;
622
623 case IOCPF_E_SEM_ERROR:
624 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
625 bfa_ioc_pf_hwfailed(ioc);
626 break;
627
628 case IOCPF_E_DISABLE:
629 bfa_ioc_hw_sem_get_cancel(ioc);
630 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
631 bfa_ioc_pf_disabled(ioc);
632 break;
633
634 case IOCPF_E_STOP:
635 bfa_ioc_hw_sem_get_cancel(ioc);
636 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
637 break;
638
639 default:
640 bfa_sm_fault(event);
641 }
642}
643
644
645static void
646bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf *iocpf)
647{
648
649 if (!iocpf->fw_mismatch_notified)
650 bfa_ioc_pf_fwmismatch(iocpf->ioc);
651
652 iocpf->fw_mismatch_notified = true;
653 mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies +
654 msecs_to_jiffies(BFA_IOC_TOV));
655}
656
657
658static void
659bfa_iocpf_sm_mismatch(struct bfa_iocpf *iocpf, enum iocpf_event event)
660{
661 struct bfa_ioc *ioc = iocpf->ioc;
662
663 switch (event) {
664 case IOCPF_E_TIMEOUT:
665 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
666 break;
667
668 case IOCPF_E_DISABLE:
669 del_timer(&ioc->iocpf_timer);
670 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
671 bfa_ioc_pf_disabled(ioc);
672 break;
673
674 case IOCPF_E_STOP:
675 del_timer(&ioc->iocpf_timer);
676 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
677 break;
678
679 default:
680 bfa_sm_fault(event);
681 }
682}
683
684
685static void
686bfa_iocpf_sm_semwait_entry(struct bfa_iocpf *iocpf)
687{
688 bfa_ioc_hw_sem_get(iocpf->ioc);
689}
690
691
692static void
693bfa_iocpf_sm_semwait(struct bfa_iocpf *iocpf, enum iocpf_event event)
694{
695 struct bfa_ioc *ioc = iocpf->ioc;
696
697 switch (event) {
698 case IOCPF_E_SEMLOCKED:
699 if (bfa_ioc_sync_complete(ioc)) {
700 bfa_ioc_sync_join(ioc);
701 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
702 } else {
703 bfa_nw_ioc_hw_sem_release(ioc);
704 mod_timer(&ioc->sem_timer, jiffies +
705 msecs_to_jiffies(BFA_IOC_HWSEM_TOV));
706 }
707 break;
708
709 case IOCPF_E_SEM_ERROR:
710 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
711 bfa_ioc_pf_hwfailed(ioc);
712 break;
713
714 case IOCPF_E_DISABLE:
715 bfa_ioc_hw_sem_get_cancel(ioc);
716 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
717 break;
718
719 default:
720 bfa_sm_fault(event);
721 }
722}
723
724static void
725bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf *iocpf)
726{
727 iocpf->poll_time = 0;
728 bfa_ioc_reset(iocpf->ioc, false);
729}
730
731
732
733
734static void
735bfa_iocpf_sm_hwinit(struct bfa_iocpf *iocpf, enum iocpf_event event)
736{
737 struct bfa_ioc *ioc = iocpf->ioc;
738
739 switch (event) {
740 case IOCPF_E_FWREADY:
741 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_enabling);
742 break;
743
744 case IOCPF_E_TIMEOUT:
745 bfa_nw_ioc_hw_sem_release(ioc);
746 bfa_ioc_pf_failed(ioc);
747 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
748 break;
749
750 case IOCPF_E_DISABLE:
751 del_timer(&ioc->iocpf_timer);
752 bfa_ioc_sync_leave(ioc);
753 bfa_nw_ioc_hw_sem_release(ioc);
754 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
755 break;
756
757 default:
758 bfa_sm_fault(event);
759 }
760}
761
762static void
763bfa_iocpf_sm_enabling_entry(struct bfa_iocpf *iocpf)
764{
765 mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies +
766 msecs_to_jiffies(BFA_IOC_TOV));
767
768
769
770 iocpf->ioc->cbfn->reset_cbfn(iocpf->ioc->bfa);
771 bfa_ioc_send_enable(iocpf->ioc);
772}
773
774
775
776
777static void
778bfa_iocpf_sm_enabling(struct bfa_iocpf *iocpf, enum iocpf_event event)
779{
780 struct bfa_ioc *ioc = iocpf->ioc;
781
782 switch (event) {
783 case IOCPF_E_FWRSP_ENABLE:
784 del_timer(&ioc->iocpf_timer);
785 bfa_nw_ioc_hw_sem_release(ioc);
786 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_ready);
787 break;
788
789 case IOCPF_E_INITFAIL:
790 del_timer(&ioc->iocpf_timer);
791
792
793
794 case IOCPF_E_TIMEOUT:
795 bfa_nw_ioc_hw_sem_release(ioc);
796 if (event == IOCPF_E_TIMEOUT)
797 bfa_ioc_pf_failed(ioc);
798 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
799 break;
800
801 case IOCPF_E_DISABLE:
802 del_timer(&ioc->iocpf_timer);
803 bfa_nw_ioc_hw_sem_release(ioc);
804 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
805 break;
806
807 default:
808 bfa_sm_fault(event);
809 }
810}
811
812static void
813bfa_iocpf_sm_ready_entry(struct bfa_iocpf *iocpf)
814{
815 bfa_ioc_pf_enabled(iocpf->ioc);
816}
817
818static void
819bfa_iocpf_sm_ready(struct bfa_iocpf *iocpf, enum iocpf_event event)
820{
821 switch (event) {
822 case IOCPF_E_DISABLE:
823 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
824 break;
825
826 case IOCPF_E_GETATTRFAIL:
827 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
828 break;
829
830 case IOCPF_E_FAIL:
831 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail_sync);
832 break;
833
834 default:
835 bfa_sm_fault(event);
836 }
837}
838
839static void
840bfa_iocpf_sm_disabling_entry(struct bfa_iocpf *iocpf)
841{
842 mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies +
843 msecs_to_jiffies(BFA_IOC_TOV));
844 bfa_ioc_send_disable(iocpf->ioc);
845}
846
847
848static void
849bfa_iocpf_sm_disabling(struct bfa_iocpf *iocpf, enum iocpf_event event)
850{
851 struct bfa_ioc *ioc = iocpf->ioc;
852
853 switch (event) {
854 case IOCPF_E_FWRSP_DISABLE:
855 del_timer(&ioc->iocpf_timer);
856 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
857 break;
858
859 case IOCPF_E_FAIL:
860 del_timer(&ioc->iocpf_timer);
861
862
863
864
865 case IOCPF_E_TIMEOUT:
866 bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_FAIL);
867 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
868 break;
869
870 case IOCPF_E_FWRSP_ENABLE:
871 break;
872
873 default:
874 bfa_sm_fault(event);
875 }
876}
877
878static void
879bfa_iocpf_sm_disabling_sync_entry(struct bfa_iocpf *iocpf)
880{
881 bfa_ioc_hw_sem_get(iocpf->ioc);
882}
883
884
885static void
886bfa_iocpf_sm_disabling_sync(struct bfa_iocpf *iocpf, enum iocpf_event event)
887{
888 struct bfa_ioc *ioc = iocpf->ioc;
889
890 switch (event) {
891 case IOCPF_E_SEMLOCKED:
892 bfa_ioc_sync_leave(ioc);
893 bfa_nw_ioc_hw_sem_release(ioc);
894 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
895 break;
896
897 case IOCPF_E_SEM_ERROR:
898 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
899 bfa_ioc_pf_hwfailed(ioc);
900 break;
901
902 case IOCPF_E_FAIL:
903 break;
904
905 default:
906 bfa_sm_fault(event);
907 }
908}
909
910
911static void
912bfa_iocpf_sm_disabled_entry(struct bfa_iocpf *iocpf)
913{
914 bfa_ioc_mbox_flush(iocpf->ioc);
915 bfa_ioc_pf_disabled(iocpf->ioc);
916}
917
918static void
919bfa_iocpf_sm_disabled(struct bfa_iocpf *iocpf, enum iocpf_event event)
920{
921 struct bfa_ioc *ioc = iocpf->ioc;
922
923 switch (event) {
924 case IOCPF_E_ENABLE:
925 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
926 break;
927
928 case IOCPF_E_STOP:
929 bfa_ioc_firmware_unlock(ioc);
930 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
931 break;
932
933 default:
934 bfa_sm_fault(event);
935 }
936}
937
938static void
939bfa_iocpf_sm_initfail_sync_entry(struct bfa_iocpf *iocpf)
940{
941 bfa_nw_ioc_debug_save_ftrc(iocpf->ioc);
942 bfa_ioc_hw_sem_get(iocpf->ioc);
943}
944
945
946static void
947bfa_iocpf_sm_initfail_sync(struct bfa_iocpf *iocpf, enum iocpf_event event)
948{
949 struct bfa_ioc *ioc = iocpf->ioc;
950
951 switch (event) {
952 case IOCPF_E_SEMLOCKED:
953 bfa_ioc_notify_fail(ioc);
954 bfa_ioc_sync_leave(ioc);
955 bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_FAIL);
956 bfa_nw_ioc_hw_sem_release(ioc);
957 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
958 break;
959
960 case IOCPF_E_SEM_ERROR:
961 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
962 bfa_ioc_pf_hwfailed(ioc);
963 break;
964
965 case IOCPF_E_DISABLE:
966 bfa_ioc_hw_sem_get_cancel(ioc);
967 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
968 break;
969
970 case IOCPF_E_STOP:
971 bfa_ioc_hw_sem_get_cancel(ioc);
972 bfa_ioc_firmware_unlock(ioc);
973 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
974 break;
975
976 case IOCPF_E_FAIL:
977 break;
978
979 default:
980 bfa_sm_fault(event);
981 }
982}
983
984static void
985bfa_iocpf_sm_initfail_entry(struct bfa_iocpf *iocpf)
986{
987}
988
989
990static void
991bfa_iocpf_sm_initfail(struct bfa_iocpf *iocpf, enum iocpf_event event)
992{
993 struct bfa_ioc *ioc = iocpf->ioc;
994
995 switch (event) {
996 case IOCPF_E_DISABLE:
997 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
998 break;
999
1000 case IOCPF_E_STOP:
1001 bfa_ioc_firmware_unlock(ioc);
1002 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
1003 break;
1004
1005 default:
1006 bfa_sm_fault(event);
1007 }
1008}
1009
1010static void
1011bfa_iocpf_sm_fail_sync_entry(struct bfa_iocpf *iocpf)
1012{
1013
1014
1015
1016 bfa_ioc_lpu_stop(iocpf->ioc);
1017
1018
1019
1020
1021 bfa_ioc_mbox_flush(iocpf->ioc);
1022 bfa_ioc_hw_sem_get(iocpf->ioc);
1023}
1024
1025
1026static void
1027bfa_iocpf_sm_fail_sync(struct bfa_iocpf *iocpf, enum iocpf_event event)
1028{
1029 struct bfa_ioc *ioc = iocpf->ioc;
1030
1031 switch (event) {
1032 case IOCPF_E_SEMLOCKED:
1033 bfa_ioc_sync_ack(ioc);
1034 bfa_ioc_notify_fail(ioc);
1035 if (!iocpf->auto_recover) {
1036 bfa_ioc_sync_leave(ioc);
1037 bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_FAIL);
1038 bfa_nw_ioc_hw_sem_release(ioc);
1039 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
1040 } else {
1041 if (bfa_ioc_sync_complete(ioc))
1042 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
1043 else {
1044 bfa_nw_ioc_hw_sem_release(ioc);
1045 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
1046 }
1047 }
1048 break;
1049
1050 case IOCPF_E_SEM_ERROR:
1051 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
1052 bfa_ioc_pf_hwfailed(ioc);
1053 break;
1054
1055 case IOCPF_E_DISABLE:
1056 bfa_ioc_hw_sem_get_cancel(ioc);
1057 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
1058 break;
1059
1060 case IOCPF_E_FAIL:
1061 break;
1062
1063 default:
1064 bfa_sm_fault(event);
1065 }
1066}
1067
1068static void
1069bfa_iocpf_sm_fail_entry(struct bfa_iocpf *iocpf)
1070{
1071}
1072
1073
1074static void
1075bfa_iocpf_sm_fail(struct bfa_iocpf *iocpf, enum iocpf_event event)
1076{
1077 switch (event) {
1078 case IOCPF_E_DISABLE:
1079 bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
1080 break;
1081
1082 default:
1083 bfa_sm_fault(event);
1084 }
1085}
1086
1087
1088
1089
1090static void
1091bfa_ioc_event_notify(struct bfa_ioc *ioc, enum bfa_ioc_event event)
1092{
1093 struct bfa_ioc_notify *notify;
1094
1095 list_for_each_entry(notify, &ioc->notify_q, qe)
1096 notify->cbfn(notify->cbarg, event);
1097}
1098
1099static void
1100bfa_ioc_disable_comp(struct bfa_ioc *ioc)
1101{
1102 ioc->cbfn->disable_cbfn(ioc->bfa);
1103 bfa_ioc_event_notify(ioc, BFA_IOC_E_DISABLED);
1104}
1105
1106bool
1107bfa_nw_ioc_sem_get(void __iomem *sem_reg)
1108{
1109 u32 r32;
1110 int cnt = 0;
1111#define BFA_SEM_SPINCNT 3000
1112
1113 r32 = readl(sem_reg);
1114
1115 while ((r32 & 1) && (cnt < BFA_SEM_SPINCNT)) {
1116 cnt++;
1117 udelay(2);
1118 r32 = readl(sem_reg);
1119 }
1120
1121 if (!(r32 & 1))
1122 return true;
1123
1124 return false;
1125}
1126
1127void
1128bfa_nw_ioc_sem_release(void __iomem *sem_reg)
1129{
1130 readl(sem_reg);
1131 writel(1, sem_reg);
1132}
1133
1134
1135static void
1136bfa_ioc_fwver_clear(struct bfa_ioc *ioc)
1137{
1138 u32 pgnum, pgoff, loff = 0;
1139 int i;
1140
1141 pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, loff);
1142 pgoff = PSS_SMEM_PGOFF(loff);
1143 writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1144
1145 for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr) / sizeof(u32)); i++) {
1146 writel(0, ioc->ioc_regs.smem_page_start + loff);
1147 loff += sizeof(u32);
1148 }
1149}
1150
1151
1152static void
1153bfa_ioc_hw_sem_init(struct bfa_ioc *ioc)
1154{
1155 struct bfi_ioc_image_hdr fwhdr;
1156 u32 fwstate, r32;
1157
1158
1159 r32 = readl(ioc->ioc_regs.ioc_init_sem_reg);
1160 while (r32 & 0x1) {
1161 udelay(20);
1162 r32 = readl(ioc->ioc_regs.ioc_init_sem_reg);
1163 }
1164
1165 fwstate = bfa_ioc_get_cur_ioc_fwstate(ioc);
1166 if (fwstate == BFI_IOC_UNINIT) {
1167 writel(1, ioc->ioc_regs.ioc_init_sem_reg);
1168 return;
1169 }
1170
1171 bfa_nw_ioc_fwver_get(ioc, &fwhdr);
1172
1173 if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL) {
1174 writel(1, ioc->ioc_regs.ioc_init_sem_reg);
1175 return;
1176 }
1177
1178 bfa_ioc_fwver_clear(ioc);
1179 bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_UNINIT);
1180 bfa_ioc_set_alt_ioc_fwstate(ioc, BFI_IOC_UNINIT);
1181
1182
1183
1184
1185 readl(ioc->ioc_regs.ioc_sem_reg);
1186 writel(1, ioc->ioc_regs.ioc_sem_reg);
1187
1188
1189 writel(1, ioc->ioc_regs.ioc_init_sem_reg);
1190}
1191
1192static void
1193bfa_ioc_hw_sem_get(struct bfa_ioc *ioc)
1194{
1195 u32 r32;
1196
1197
1198
1199
1200
1201 r32 = readl(ioc->ioc_regs.ioc_sem_reg);
1202 if (r32 == ~0) {
1203 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEM_ERROR);
1204 return;
1205 }
1206 if (!(r32 & 1)) {
1207 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEMLOCKED);
1208 return;
1209 }
1210
1211 mod_timer(&ioc->sem_timer, jiffies +
1212 msecs_to_jiffies(BFA_IOC_HWSEM_TOV));
1213}
1214
1215void
1216bfa_nw_ioc_hw_sem_release(struct bfa_ioc *ioc)
1217{
1218 writel(1, ioc->ioc_regs.ioc_sem_reg);
1219}
1220
1221static void
1222bfa_ioc_hw_sem_get_cancel(struct bfa_ioc *ioc)
1223{
1224 del_timer(&ioc->sem_timer);
1225}
1226
1227
1228static void
1229bfa_ioc_lmem_init(struct bfa_ioc *ioc)
1230{
1231 u32 pss_ctl;
1232 int i;
1233#define PSS_LMEM_INIT_TIME 10000
1234
1235 pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1236 pss_ctl &= ~__PSS_LMEM_RESET;
1237 pss_ctl |= __PSS_LMEM_INIT_EN;
1238
1239
1240
1241
1242 pss_ctl |= __PSS_I2C_CLK_DIV(3UL);
1243 writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1244
1245
1246
1247
1248 i = 0;
1249 do {
1250 pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1251 i++;
1252 } while (!(pss_ctl & __PSS_LMEM_INIT_DONE) && (i < PSS_LMEM_INIT_TIME));
1253
1254
1255
1256
1257
1258 BUG_ON(!(pss_ctl & __PSS_LMEM_INIT_DONE));
1259
1260 pss_ctl &= ~(__PSS_LMEM_INIT_DONE | __PSS_LMEM_INIT_EN);
1261 writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1262}
1263
1264static void
1265bfa_ioc_lpu_start(struct bfa_ioc *ioc)
1266{
1267 u32 pss_ctl;
1268
1269
1270
1271
1272 pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1273 pss_ctl &= ~__PSS_LPU0_RESET;
1274
1275 writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1276}
1277
1278static void
1279bfa_ioc_lpu_stop(struct bfa_ioc *ioc)
1280{
1281 u32 pss_ctl;
1282
1283
1284
1285
1286 pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1287 pss_ctl |= (__PSS_LPU0_RESET | __PSS_LPU1_RESET);
1288
1289 writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1290}
1291
1292
1293void
1294bfa_nw_ioc_fwver_get(struct bfa_ioc *ioc, struct bfi_ioc_image_hdr *fwhdr)
1295{
1296 u32 pgnum;
1297 u32 loff = 0;
1298 int i;
1299 u32 *fwsig = (u32 *) fwhdr;
1300
1301 pgnum = bfa_ioc_smem_pgnum(ioc, loff);
1302 writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1303
1304 for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr) / sizeof(u32));
1305 i++) {
1306 fwsig[i] =
1307 swab32(readl(loff + ioc->ioc_regs.smem_page_start));
1308 loff += sizeof(u32);
1309 }
1310}
1311
1312static bool
1313bfa_ioc_fwver_md5_check(struct bfi_ioc_image_hdr *fwhdr_1,
1314 struct bfi_ioc_image_hdr *fwhdr_2)
1315{
1316 int i;
1317
1318 for (i = 0; i < BFI_IOC_MD5SUM_SZ; i++) {
1319 if (fwhdr_1->md5sum[i] != fwhdr_2->md5sum[i])
1320 return false;
1321 }
1322
1323 return true;
1324}
1325
1326
1327
1328
1329static bool
1330bfa_ioc_fw_ver_compatible(struct bfi_ioc_image_hdr *drv_fwhdr,
1331 struct bfi_ioc_image_hdr *fwhdr_to_cmp)
1332{
1333 if (drv_fwhdr->signature != fwhdr_to_cmp->signature)
1334 return false;
1335 if (drv_fwhdr->fwver.major != fwhdr_to_cmp->fwver.major)
1336 return false;
1337 if (drv_fwhdr->fwver.minor != fwhdr_to_cmp->fwver.minor)
1338 return false;
1339 if (drv_fwhdr->fwver.maint != fwhdr_to_cmp->fwver.maint)
1340 return false;
1341 if (drv_fwhdr->fwver.patch == fwhdr_to_cmp->fwver.patch &&
1342 drv_fwhdr->fwver.phase == fwhdr_to_cmp->fwver.phase &&
1343 drv_fwhdr->fwver.build == fwhdr_to_cmp->fwver.build)
1344 return bfa_ioc_fwver_md5_check(drv_fwhdr, fwhdr_to_cmp);
1345
1346 return true;
1347}
1348
1349static bool
1350bfa_ioc_flash_fwver_valid(struct bfi_ioc_image_hdr *flash_fwhdr)
1351{
1352 if (flash_fwhdr->fwver.major == 0 || flash_fwhdr->fwver.major == 0xFF)
1353 return false;
1354
1355 return true;
1356}
1357
1358static bool
1359fwhdr_is_ga(struct bfi_ioc_image_hdr *fwhdr)
1360{
1361 if (fwhdr->fwver.phase == 0 &&
1362 fwhdr->fwver.build == 0)
1363 return false;
1364
1365 return true;
1366}
1367
1368
1369static enum bfi_ioc_img_ver_cmp
1370bfa_ioc_fw_ver_patch_cmp(struct bfi_ioc_image_hdr *base_fwhdr,
1371 struct bfi_ioc_image_hdr *fwhdr_to_cmp)
1372{
1373 if (!bfa_ioc_fw_ver_compatible(base_fwhdr, fwhdr_to_cmp))
1374 return BFI_IOC_IMG_VER_INCOMP;
1375
1376 if (fwhdr_to_cmp->fwver.patch > base_fwhdr->fwver.patch)
1377 return BFI_IOC_IMG_VER_BETTER;
1378 else if (fwhdr_to_cmp->fwver.patch < base_fwhdr->fwver.patch)
1379 return BFI_IOC_IMG_VER_OLD;
1380
1381
1382
1383
1384 if (fwhdr_is_ga(base_fwhdr))
1385 if (fwhdr_is_ga(fwhdr_to_cmp))
1386 return BFI_IOC_IMG_VER_SAME;
1387 else
1388 return BFI_IOC_IMG_VER_OLD;
1389 else
1390 if (fwhdr_is_ga(fwhdr_to_cmp))
1391 return BFI_IOC_IMG_VER_BETTER;
1392
1393 if (fwhdr_to_cmp->fwver.phase > base_fwhdr->fwver.phase)
1394 return BFI_IOC_IMG_VER_BETTER;
1395 else if (fwhdr_to_cmp->fwver.phase < base_fwhdr->fwver.phase)
1396 return BFI_IOC_IMG_VER_OLD;
1397
1398 if (fwhdr_to_cmp->fwver.build > base_fwhdr->fwver.build)
1399 return BFI_IOC_IMG_VER_BETTER;
1400 else if (fwhdr_to_cmp->fwver.build < base_fwhdr->fwver.build)
1401 return BFI_IOC_IMG_VER_OLD;
1402
1403
1404
1405
1406 return BFI_IOC_IMG_VER_SAME;
1407}
1408
1409
1410#define FLI_CMD_REG 0x0001d000
1411#define FLI_WRDATA_REG 0x0001d00c
1412#define FLI_RDDATA_REG 0x0001d010
1413#define FLI_ADDR_REG 0x0001d004
1414#define FLI_DEV_STATUS_REG 0x0001d014
1415
1416#define BFA_FLASH_FIFO_SIZE 128
1417#define BFA_FLASH_CHECK_MAX 10000
1418#define BFA_FLASH_BLOCKING_OP_MAX 1000000
1419#define BFA_FLASH_WIP_MASK 0x01
1420
1421#define NFC_STATE_RUNNING 0x20000001
1422#define NFC_STATE_PAUSED 0x00004560
1423#define NFC_VER_VALID 0x147
1424
1425enum bfa_flash_cmd {
1426 BFA_FLASH_FAST_READ = 0x0b,
1427 BFA_FLASH_WRITE_ENABLE = 0x06,
1428 BFA_FLASH_SECTOR_ERASE = 0xd8,
1429 BFA_FLASH_WRITE = 0x02,
1430 BFA_FLASH_READ_STATUS = 0x05,
1431};
1432
1433
1434enum bfa_flash_err {
1435 BFA_FLASH_NOT_PRESENT = -1,
1436 BFA_FLASH_UNINIT = -2,
1437 BFA_FLASH_BAD = -3,
1438 BFA_FLASH_BUSY = -4,
1439 BFA_FLASH_ERR_CMD_ACT = -5,
1440 BFA_FLASH_ERR_FIFO_CNT = -6,
1441 BFA_FLASH_ERR_WIP = -7,
1442 BFA_FLASH_ERR_TIMEOUT = -8,
1443 BFA_FLASH_ERR_LEN = -9,
1444};
1445
1446
1447union bfa_flash_cmd_reg {
1448 struct {
1449#ifdef __BIG_ENDIAN
1450 u32 act:1;
1451 u32 rsv:1;
1452 u32 write_cnt:9;
1453 u32 read_cnt:9;
1454 u32 addr_cnt:4;
1455 u32 cmd:8;
1456#else
1457 u32 cmd:8;
1458 u32 addr_cnt:4;
1459 u32 read_cnt:9;
1460 u32 write_cnt:9;
1461 u32 rsv:1;
1462 u32 act:1;
1463#endif
1464 } r;
1465 u32 i;
1466};
1467
1468
1469union bfa_flash_dev_status_reg {
1470 struct {
1471#ifdef __BIG_ENDIAN
1472 u32 rsv:21;
1473 u32 fifo_cnt:6;
1474 u32 busy:1;
1475 u32 init_status:1;
1476 u32 present:1;
1477 u32 bad:1;
1478 u32 good:1;
1479#else
1480 u32 good:1;
1481 u32 bad:1;
1482 u32 present:1;
1483 u32 init_status:1;
1484 u32 busy:1;
1485 u32 fifo_cnt:6;
1486 u32 rsv:21;
1487#endif
1488 } r;
1489 u32 i;
1490};
1491
1492
1493union bfa_flash_addr_reg {
1494 struct {
1495#ifdef __BIG_ENDIAN
1496 u32 addr:24;
1497 u32 dummy:8;
1498#else
1499 u32 dummy:8;
1500 u32 addr:24;
1501#endif
1502 } r;
1503 u32 i;
1504};
1505
1506
1507static void
1508bfa_flash_set_cmd(void __iomem *pci_bar, u8 wr_cnt,
1509 u8 rd_cnt, u8 ad_cnt, u8 op)
1510{
1511 union bfa_flash_cmd_reg cmd;
1512
1513 cmd.i = 0;
1514 cmd.r.act = 1;
1515 cmd.r.write_cnt = wr_cnt;
1516 cmd.r.read_cnt = rd_cnt;
1517 cmd.r.addr_cnt = ad_cnt;
1518 cmd.r.cmd = op;
1519 writel(cmd.i, (pci_bar + FLI_CMD_REG));
1520}
1521
1522static void
1523bfa_flash_set_addr(void __iomem *pci_bar, u32 address)
1524{
1525 union bfa_flash_addr_reg addr;
1526
1527 addr.r.addr = address & 0x00ffffff;
1528 addr.r.dummy = 0;
1529 writel(addr.i, (pci_bar + FLI_ADDR_REG));
1530}
1531
1532static int
1533bfa_flash_cmd_act_check(void __iomem *pci_bar)
1534{
1535 union bfa_flash_cmd_reg cmd;
1536
1537 cmd.i = readl(pci_bar + FLI_CMD_REG);
1538
1539 if (cmd.r.act)
1540 return BFA_FLASH_ERR_CMD_ACT;
1541
1542 return 0;
1543}
1544
1545
1546static int
1547bfa_flash_fifo_flush(void __iomem *pci_bar)
1548{
1549 u32 i;
1550 u32 t;
1551 union bfa_flash_dev_status_reg dev_status;
1552
1553 dev_status.i = readl(pci_bar + FLI_DEV_STATUS_REG);
1554
1555 if (!dev_status.r.fifo_cnt)
1556 return 0;
1557
1558
1559 for (i = 0; i < dev_status.r.fifo_cnt; i++)
1560 t = readl(pci_bar + FLI_RDDATA_REG);
1561
1562
1563 for (i = 0; i < BFA_FLASH_CHECK_MAX; i++) {
1564 dev_status.i = readl(pci_bar + FLI_DEV_STATUS_REG);
1565 if (!dev_status.r.fifo_cnt)
1566 break;
1567 }
1568
1569 if (dev_status.r.fifo_cnt)
1570 return BFA_FLASH_ERR_FIFO_CNT;
1571
1572 return 0;
1573}
1574
1575
1576static int
1577bfa_flash_status_read(void __iomem *pci_bar)
1578{
1579 union bfa_flash_dev_status_reg dev_status;
1580 int status;
1581 u32 ret_status;
1582 int i;
1583
1584 status = bfa_flash_fifo_flush(pci_bar);
1585 if (status < 0)
1586 return status;
1587
1588 bfa_flash_set_cmd(pci_bar, 0, 4, 0, BFA_FLASH_READ_STATUS);
1589
1590 for (i = 0; i < BFA_FLASH_CHECK_MAX; i++) {
1591 status = bfa_flash_cmd_act_check(pci_bar);
1592 if (!status)
1593 break;
1594 }
1595
1596 if (status)
1597 return status;
1598
1599 dev_status.i = readl(pci_bar + FLI_DEV_STATUS_REG);
1600 if (!dev_status.r.fifo_cnt)
1601 return BFA_FLASH_BUSY;
1602
1603 ret_status = readl(pci_bar + FLI_RDDATA_REG);
1604 ret_status >>= 24;
1605
1606 status = bfa_flash_fifo_flush(pci_bar);
1607 if (status < 0)
1608 return status;
1609
1610 return ret_status;
1611}
1612
1613
1614static int
1615bfa_flash_read_start(void __iomem *pci_bar, u32 offset, u32 len,
1616 char *buf)
1617{
1618 int status;
1619
1620
1621 if (len == 0 || len > BFA_FLASH_FIFO_SIZE || (len & 0x03) != 0)
1622 return BFA_FLASH_ERR_LEN;
1623
1624
1625 status = bfa_flash_status_read(pci_bar);
1626 if (status == BFA_FLASH_BUSY)
1627 status = bfa_flash_status_read(pci_bar);
1628
1629 if (status < 0)
1630 return status;
1631
1632
1633 if (status & BFA_FLASH_WIP_MASK)
1634 return BFA_FLASH_ERR_WIP;
1635
1636 bfa_flash_set_addr(pci_bar, offset);
1637
1638 bfa_flash_set_cmd(pci_bar, 0, (u8)len, 4, BFA_FLASH_FAST_READ);
1639
1640 return 0;
1641}
1642
1643
1644static u32
1645bfa_flash_read_check(void __iomem *pci_bar)
1646{
1647 if (bfa_flash_cmd_act_check(pci_bar))
1648 return 1;
1649
1650 return 0;
1651}
1652
1653
1654static void
1655bfa_flash_read_end(void __iomem *pci_bar, u32 len, char *buf)
1656{
1657 u32 i;
1658
1659
1660 for (i = 0; i < len; i += 4) {
1661 u32 w = readl(pci_bar + FLI_RDDATA_REG);
1662 *((u32 *)(buf + i)) = swab32(w);
1663 }
1664
1665 bfa_flash_fifo_flush(pci_bar);
1666}
1667
1668
1669
1670#define FLASH_BLOCKING_OP_MAX 500
1671#define FLASH_SEM_LOCK_REG 0x18820
1672
1673static int
1674bfa_raw_sem_get(void __iomem *bar)
1675{
1676 int locked;
1677
1678 locked = readl(bar + FLASH_SEM_LOCK_REG);
1679
1680 return !locked;
1681}
1682
1683static enum bfa_status
1684bfa_flash_sem_get(void __iomem *bar)
1685{
1686 u32 n = FLASH_BLOCKING_OP_MAX;
1687
1688 while (!bfa_raw_sem_get(bar)) {
1689 if (--n <= 0)
1690 return BFA_STATUS_BADFLASH;
1691 mdelay(10);
1692 }
1693 return BFA_STATUS_OK;
1694}
1695
1696static void
1697bfa_flash_sem_put(void __iomem *bar)
1698{
1699 writel(0, (bar + FLASH_SEM_LOCK_REG));
1700}
1701
1702static enum bfa_status
1703bfa_flash_raw_read(void __iomem *pci_bar, u32 offset, char *buf,
1704 u32 len)
1705{
1706 u32 n;
1707 int status;
1708 u32 off, l, s, residue, fifo_sz;
1709
1710 residue = len;
1711 off = 0;
1712 fifo_sz = BFA_FLASH_FIFO_SIZE;
1713 status = bfa_flash_sem_get(pci_bar);
1714 if (status != BFA_STATUS_OK)
1715 return status;
1716
1717 while (residue) {
1718 s = offset + off;
1719 n = s / fifo_sz;
1720 l = (n + 1) * fifo_sz - s;
1721 if (l > residue)
1722 l = residue;
1723
1724 status = bfa_flash_read_start(pci_bar, offset + off, l,
1725 &buf[off]);
1726 if (status < 0) {
1727 bfa_flash_sem_put(pci_bar);
1728 return BFA_STATUS_FAILED;
1729 }
1730
1731 n = BFA_FLASH_BLOCKING_OP_MAX;
1732 while (bfa_flash_read_check(pci_bar)) {
1733 if (--n <= 0) {
1734 bfa_flash_sem_put(pci_bar);
1735 return BFA_STATUS_FAILED;
1736 }
1737 }
1738
1739 bfa_flash_read_end(pci_bar, l, &buf[off]);
1740
1741 residue -= l;
1742 off += l;
1743 }
1744 bfa_flash_sem_put(pci_bar);
1745
1746 return BFA_STATUS_OK;
1747}
1748
1749#define BFA_FLASH_PART_FWIMG_ADDR 0x100000
1750
1751static enum bfa_status
1752bfa_nw_ioc_flash_img_get_chnk(struct bfa_ioc *ioc, u32 off,
1753 u32 *fwimg)
1754{
1755 return bfa_flash_raw_read(ioc->pcidev.pci_bar_kva,
1756 BFA_FLASH_PART_FWIMG_ADDR + (off * sizeof(u32)),
1757 (char *)fwimg, BFI_FLASH_CHUNK_SZ);
1758}
1759
1760static enum bfi_ioc_img_ver_cmp
1761bfa_ioc_flash_fwver_cmp(struct bfa_ioc *ioc,
1762 struct bfi_ioc_image_hdr *base_fwhdr)
1763{
1764 struct bfi_ioc_image_hdr *flash_fwhdr;
1765 enum bfa_status status;
1766 u32 fwimg[BFI_FLASH_CHUNK_SZ_WORDS];
1767
1768 status = bfa_nw_ioc_flash_img_get_chnk(ioc, 0, fwimg);
1769 if (status != BFA_STATUS_OK)
1770 return BFI_IOC_IMG_VER_INCOMP;
1771
1772 flash_fwhdr = (struct bfi_ioc_image_hdr *)fwimg;
1773 if (bfa_ioc_flash_fwver_valid(flash_fwhdr))
1774 return bfa_ioc_fw_ver_patch_cmp(base_fwhdr, flash_fwhdr);
1775 else
1776 return BFI_IOC_IMG_VER_INCOMP;
1777}
1778
1779
1780
1781
1782bool
1783bfa_nw_ioc_fwver_cmp(struct bfa_ioc *ioc, struct bfi_ioc_image_hdr *fwhdr)
1784{
1785 struct bfi_ioc_image_hdr *drv_fwhdr;
1786 enum bfi_ioc_img_ver_cmp smem_flash_cmp, drv_smem_cmp;
1787
1788 drv_fwhdr = (struct bfi_ioc_image_hdr *)
1789 bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), 0);
1790
1791
1792 drv_smem_cmp = bfa_ioc_fw_ver_patch_cmp(drv_fwhdr, fwhdr);
1793 if (drv_smem_cmp == BFI_IOC_IMG_VER_INCOMP ||
1794 drv_smem_cmp == BFI_IOC_IMG_VER_OLD) {
1795 return false;
1796 }
1797
1798
1799
1800
1801
1802 smem_flash_cmp = bfa_ioc_flash_fwver_cmp(ioc, fwhdr);
1803
1804 if (smem_flash_cmp == BFI_IOC_IMG_VER_BETTER)
1805 return false;
1806 else if (smem_flash_cmp == BFI_IOC_IMG_VER_SAME)
1807 return true;
1808 else
1809 return (drv_smem_cmp == BFI_IOC_IMG_VER_SAME) ?
1810 true : false;
1811}
1812
1813
1814
1815
1816static bool
1817bfa_ioc_fwver_valid(struct bfa_ioc *ioc, u32 boot_env)
1818{
1819 struct bfi_ioc_image_hdr fwhdr;
1820
1821 bfa_nw_ioc_fwver_get(ioc, &fwhdr);
1822 if (swab32(fwhdr.bootenv) != boot_env)
1823 return false;
1824
1825 return bfa_nw_ioc_fwver_cmp(ioc, &fwhdr);
1826}
1827
1828
1829static void
1830bfa_ioc_msgflush(struct bfa_ioc *ioc)
1831{
1832 u32 r32;
1833
1834 r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
1835 if (r32)
1836 writel(1, ioc->ioc_regs.lpu_mbox_cmd);
1837}
1838
1839static void
1840bfa_ioc_hwinit(struct bfa_ioc *ioc, bool force)
1841{
1842 enum bfi_ioc_state ioc_fwstate;
1843 bool fwvalid;
1844 u32 boot_env;
1845
1846 ioc_fwstate = bfa_ioc_get_cur_ioc_fwstate(ioc);
1847
1848 if (force)
1849 ioc_fwstate = BFI_IOC_UNINIT;
1850
1851 boot_env = BFI_FWBOOT_ENV_OS;
1852
1853
1854
1855
1856 fwvalid = (ioc_fwstate == BFI_IOC_UNINIT) ?
1857 false : bfa_ioc_fwver_valid(ioc, boot_env);
1858
1859 if (!fwvalid) {
1860 if (bfa_ioc_boot(ioc, BFI_FWBOOT_TYPE_NORMAL, boot_env) ==
1861 BFA_STATUS_OK)
1862 bfa_ioc_poll_fwinit(ioc);
1863
1864 return;
1865 }
1866
1867
1868
1869
1870
1871 if (ioc_fwstate == BFI_IOC_INITING) {
1872 bfa_ioc_poll_fwinit(ioc);
1873 return;
1874 }
1875
1876
1877
1878
1879
1880 if (ioc_fwstate == BFI_IOC_DISABLED || ioc_fwstate == BFI_IOC_OP) {
1881
1882
1883
1884
1885 bfa_ioc_msgflush(ioc);
1886 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
1887 return;
1888 }
1889
1890
1891
1892
1893 if (bfa_ioc_boot(ioc, BFI_FWBOOT_TYPE_NORMAL, boot_env) ==
1894 BFA_STATUS_OK)
1895 bfa_ioc_poll_fwinit(ioc);
1896}
1897
1898void
1899bfa_nw_ioc_timeout(struct bfa_ioc *ioc)
1900{
1901 bfa_fsm_send_event(ioc, IOC_E_TIMEOUT);
1902}
1903
1904static void
1905bfa_ioc_mbox_send(struct bfa_ioc *ioc, void *ioc_msg, int len)
1906{
1907 u32 *msgp = (u32 *) ioc_msg;
1908 u32 i;
1909
1910 BUG_ON(!(len <= BFI_IOC_MSGLEN_MAX));
1911
1912
1913
1914
1915 for (i = 0; i < len / sizeof(u32); i++)
1916 writel(cpu_to_le32(msgp[i]),
1917 ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
1918
1919 for (; i < BFI_IOC_MSGLEN_MAX / sizeof(u32); i++)
1920 writel(0, ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
1921
1922
1923
1924
1925 writel(1, ioc->ioc_regs.hfn_mbox_cmd);
1926 (void) readl(ioc->ioc_regs.hfn_mbox_cmd);
1927}
1928
1929static void
1930bfa_ioc_send_enable(struct bfa_ioc *ioc)
1931{
1932 struct bfi_ioc_ctrl_req enable_req;
1933
1934 bfi_h2i_set(enable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_ENABLE_REQ,
1935 bfa_ioc_portid(ioc));
1936 enable_req.clscode = htons(ioc->clscode);
1937 enable_req.rsvd = htons(0);
1938
1939 enable_req.tv_sec = ntohl(ktime_get_real_seconds());
1940 bfa_ioc_mbox_send(ioc, &enable_req, sizeof(struct bfi_ioc_ctrl_req));
1941}
1942
1943static void
1944bfa_ioc_send_disable(struct bfa_ioc *ioc)
1945{
1946 struct bfi_ioc_ctrl_req disable_req;
1947
1948 bfi_h2i_set(disable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_DISABLE_REQ,
1949 bfa_ioc_portid(ioc));
1950 disable_req.clscode = htons(ioc->clscode);
1951 disable_req.rsvd = htons(0);
1952
1953 disable_req.tv_sec = ntohl(ktime_get_real_seconds());
1954 bfa_ioc_mbox_send(ioc, &disable_req, sizeof(struct bfi_ioc_ctrl_req));
1955}
1956
1957static void
1958bfa_ioc_send_getattr(struct bfa_ioc *ioc)
1959{
1960 struct bfi_ioc_getattr_req attr_req;
1961
1962 bfi_h2i_set(attr_req.mh, BFI_MC_IOC, BFI_IOC_H2I_GETATTR_REQ,
1963 bfa_ioc_portid(ioc));
1964 bfa_dma_be_addr_set(attr_req.attr_addr, ioc->attr_dma.pa);
1965 bfa_ioc_mbox_send(ioc, &attr_req, sizeof(attr_req));
1966}
1967
1968void
1969bfa_nw_ioc_hb_check(struct bfa_ioc *ioc)
1970{
1971 u32 hb_count;
1972
1973 hb_count = readl(ioc->ioc_regs.heartbeat);
1974 if (ioc->hb_count == hb_count) {
1975 bfa_ioc_recover(ioc);
1976 return;
1977 } else {
1978 ioc->hb_count = hb_count;
1979 }
1980
1981 bfa_ioc_mbox_poll(ioc);
1982 mod_timer(&ioc->hb_timer, jiffies +
1983 msecs_to_jiffies(BFA_IOC_HB_TOV));
1984}
1985
1986static void
1987bfa_ioc_hb_monitor(struct bfa_ioc *ioc)
1988{
1989 ioc->hb_count = readl(ioc->ioc_regs.heartbeat);
1990 mod_timer(&ioc->hb_timer, jiffies +
1991 msecs_to_jiffies(BFA_IOC_HB_TOV));
1992}
1993
1994static void
1995bfa_ioc_hb_stop(struct bfa_ioc *ioc)
1996{
1997 del_timer(&ioc->hb_timer);
1998}
1999
2000
2001static enum bfa_status
2002bfa_ioc_download_fw(struct bfa_ioc *ioc, u32 boot_type,
2003 u32 boot_env)
2004{
2005 u32 *fwimg;
2006 u32 pgnum;
2007 u32 loff = 0;
2008 u32 chunkno = 0;
2009 u32 i;
2010 u32 asicmode;
2011 u32 fwimg_size;
2012 u32 fwimg_buf[BFI_FLASH_CHUNK_SZ_WORDS];
2013 enum bfa_status status;
2014
2015 if (boot_env == BFI_FWBOOT_ENV_OS &&
2016 boot_type == BFI_FWBOOT_TYPE_FLASH) {
2017 fwimg_size = BFI_FLASH_IMAGE_SZ/sizeof(u32);
2018
2019 status = bfa_nw_ioc_flash_img_get_chnk(ioc,
2020 BFA_IOC_FLASH_CHUNK_ADDR(chunkno), fwimg_buf);
2021 if (status != BFA_STATUS_OK)
2022 return status;
2023
2024 fwimg = fwimg_buf;
2025 } else {
2026 fwimg_size = bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc));
2027 fwimg = bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc),
2028 BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
2029 }
2030
2031 pgnum = bfa_ioc_smem_pgnum(ioc, loff);
2032
2033 writel(pgnum, ioc->ioc_regs.host_page_num_fn);
2034
2035 for (i = 0; i < fwimg_size; i++) {
2036 if (BFA_IOC_FLASH_CHUNK_NO(i) != chunkno) {
2037 chunkno = BFA_IOC_FLASH_CHUNK_NO(i);
2038 if (boot_env == BFI_FWBOOT_ENV_OS &&
2039 boot_type == BFI_FWBOOT_TYPE_FLASH) {
2040 status = bfa_nw_ioc_flash_img_get_chnk(ioc,
2041 BFA_IOC_FLASH_CHUNK_ADDR(chunkno),
2042 fwimg_buf);
2043 if (status != BFA_STATUS_OK)
2044 return status;
2045
2046 fwimg = fwimg_buf;
2047 } else {
2048 fwimg = bfa_cb_image_get_chunk(
2049 bfa_ioc_asic_gen(ioc),
2050 BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
2051 }
2052 }
2053
2054
2055
2056
2057 writel(swab32(fwimg[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i)]),
2058 ioc->ioc_regs.smem_page_start + loff);
2059
2060 loff += sizeof(u32);
2061
2062
2063
2064
2065 loff = PSS_SMEM_PGOFF(loff);
2066 if (loff == 0) {
2067 pgnum++;
2068 writel(pgnum,
2069 ioc->ioc_regs.host_page_num_fn);
2070 }
2071 }
2072
2073 writel(bfa_ioc_smem_pgnum(ioc, 0),
2074 ioc->ioc_regs.host_page_num_fn);
2075
2076
2077
2078
2079 if (boot_env == BFI_FWBOOT_ENV_OS &&
2080 boot_type == BFI_FWBOOT_TYPE_FLASH) {
2081 boot_type = BFI_FWBOOT_TYPE_NORMAL;
2082 }
2083 asicmode = BFI_FWBOOT_DEVMODE(ioc->asic_gen, ioc->asic_mode,
2084 ioc->port0_mode, ioc->port1_mode);
2085 writel(asicmode, ((ioc->ioc_regs.smem_page_start)
2086 + BFI_FWBOOT_DEVMODE_OFF));
2087 writel(boot_type, ((ioc->ioc_regs.smem_page_start)
2088 + (BFI_FWBOOT_TYPE_OFF)));
2089 writel(boot_env, ((ioc->ioc_regs.smem_page_start)
2090 + (BFI_FWBOOT_ENV_OFF)));
2091 return BFA_STATUS_OK;
2092}
2093
2094static void
2095bfa_ioc_reset(struct bfa_ioc *ioc, bool force)
2096{
2097 bfa_ioc_hwinit(ioc, force);
2098}
2099
2100
2101static void
2102bfa_ioc_enable_reply(struct bfa_ioc *ioc, enum bfa_mode port_mode,
2103 u8 cap_bm)
2104{
2105 struct bfa_iocpf *iocpf = &ioc->iocpf;
2106
2107 ioc->port_mode = ioc->port_mode_cfg = port_mode;
2108 ioc->ad_cap_bm = cap_bm;
2109 bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_ENABLE);
2110}
2111
2112
2113static void
2114bfa_ioc_getattr_reply(struct bfa_ioc *ioc)
2115{
2116 struct bfi_ioc_attr *attr = ioc->attr;
2117
2118 attr->adapter_prop = ntohl(attr->adapter_prop);
2119 attr->card_type = ntohl(attr->card_type);
2120 attr->maxfrsize = ntohs(attr->maxfrsize);
2121
2122 bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR);
2123}
2124
2125
2126static void
2127bfa_ioc_mbox_attach(struct bfa_ioc *ioc)
2128{
2129 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
2130 int mc;
2131
2132 INIT_LIST_HEAD(&mod->cmd_q);
2133 for (mc = 0; mc < BFI_MC_MAX; mc++) {
2134 mod->mbhdlr[mc].cbfn = NULL;
2135 mod->mbhdlr[mc].cbarg = ioc->bfa;
2136 }
2137}
2138
2139
2140static void
2141bfa_ioc_mbox_poll(struct bfa_ioc *ioc)
2142{
2143 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
2144 struct bfa_mbox_cmd *cmd;
2145 bfa_mbox_cmd_cbfn_t cbfn;
2146 void *cbarg;
2147 u32 stat;
2148
2149
2150
2151
2152 if (list_empty(&mod->cmd_q))
2153 return;
2154
2155
2156
2157
2158 stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
2159 if (stat)
2160 return;
2161
2162
2163
2164
2165 cmd = list_first_entry(&mod->cmd_q, struct bfa_mbox_cmd, qe);
2166 list_del(&cmd->qe);
2167 bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
2168
2169
2170
2171
2172 if (cmd->cbfn) {
2173 cbfn = cmd->cbfn;
2174 cbarg = cmd->cbarg;
2175 cmd->cbfn = NULL;
2176 cbfn(cbarg);
2177 }
2178}
2179
2180
2181static void
2182bfa_ioc_mbox_flush(struct bfa_ioc *ioc)
2183{
2184 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
2185 struct bfa_mbox_cmd *cmd;
2186
2187 while (!list_empty(&mod->cmd_q)) {
2188 cmd = list_first_entry(&mod->cmd_q, struct bfa_mbox_cmd, qe);
2189 list_del(&cmd->qe);
2190 }
2191}
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201static int
2202bfa_nw_ioc_smem_read(struct bfa_ioc *ioc, void *tbuf, u32 soff, u32 sz)
2203{
2204 u32 pgnum, loff, r32;
2205 int i, len;
2206 u32 *buf = tbuf;
2207
2208 pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, soff);
2209 loff = PSS_SMEM_PGOFF(soff);
2210
2211
2212
2213
2214 if (!bfa_nw_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg))
2215 return 1;
2216
2217 writel(pgnum, ioc->ioc_regs.host_page_num_fn);
2218
2219 len = sz/sizeof(u32);
2220 for (i = 0; i < len; i++) {
2221 r32 = swab32(readl(loff + ioc->ioc_regs.smem_page_start));
2222 buf[i] = be32_to_cpu(r32);
2223 loff += sizeof(u32);
2224
2225
2226
2227
2228 loff = PSS_SMEM_PGOFF(loff);
2229 if (loff == 0) {
2230 pgnum++;
2231 writel(pgnum, ioc->ioc_regs.host_page_num_fn);
2232 }
2233 }
2234
2235 writel(PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, 0),
2236 ioc->ioc_regs.host_page_num_fn);
2237
2238
2239
2240
2241 readl(ioc->ioc_regs.ioc_init_sem_reg);
2242 writel(1, ioc->ioc_regs.ioc_init_sem_reg);
2243 return 0;
2244}
2245
2246
2247int
2248bfa_nw_ioc_debug_fwtrc(struct bfa_ioc *ioc, void *trcdata, int *trclen)
2249{
2250 u32 loff = BFI_IOC_TRC_OFF + BNA_DBG_FWTRC_LEN * ioc->port_id;
2251 int tlen, status = 0;
2252
2253 tlen = *trclen;
2254 if (tlen > BNA_DBG_FWTRC_LEN)
2255 tlen = BNA_DBG_FWTRC_LEN;
2256
2257 status = bfa_nw_ioc_smem_read(ioc, trcdata, loff, tlen);
2258 *trclen = tlen;
2259 return status;
2260}
2261
2262
2263static void
2264bfa_nw_ioc_debug_save_ftrc(struct bfa_ioc *ioc)
2265{
2266 int tlen;
2267
2268 if (ioc->dbg_fwsave_once) {
2269 ioc->dbg_fwsave_once = false;
2270 if (ioc->dbg_fwsave_len) {
2271 tlen = ioc->dbg_fwsave_len;
2272 bfa_nw_ioc_debug_fwtrc(ioc, ioc->dbg_fwsave, &tlen);
2273 }
2274 }
2275}
2276
2277
2278int
2279bfa_nw_ioc_debug_fwsave(struct bfa_ioc *ioc, void *trcdata, int *trclen)
2280{
2281 int tlen;
2282
2283 if (ioc->dbg_fwsave_len == 0)
2284 return BFA_STATUS_ENOFSAVE;
2285
2286 tlen = *trclen;
2287 if (tlen > ioc->dbg_fwsave_len)
2288 tlen = ioc->dbg_fwsave_len;
2289
2290 memcpy(trcdata, ioc->dbg_fwsave, tlen);
2291 *trclen = tlen;
2292 return BFA_STATUS_OK;
2293}
2294
2295static void
2296bfa_ioc_fail_notify(struct bfa_ioc *ioc)
2297{
2298
2299
2300
2301 ioc->cbfn->hbfail_cbfn(ioc->bfa);
2302 bfa_ioc_event_notify(ioc, BFA_IOC_E_FAILED);
2303 bfa_nw_ioc_debug_save_ftrc(ioc);
2304}
2305
2306
2307static void
2308bfa_ioc_pf_enabled(struct bfa_ioc *ioc)
2309{
2310 bfa_fsm_send_event(ioc, IOC_E_ENABLED);
2311}
2312
2313static void
2314bfa_ioc_pf_disabled(struct bfa_ioc *ioc)
2315{
2316 bfa_fsm_send_event(ioc, IOC_E_DISABLED);
2317}
2318
2319static void
2320bfa_ioc_pf_failed(struct bfa_ioc *ioc)
2321{
2322 bfa_fsm_send_event(ioc, IOC_E_PFFAILED);
2323}
2324
2325static void
2326bfa_ioc_pf_hwfailed(struct bfa_ioc *ioc)
2327{
2328 bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
2329}
2330
2331static void
2332bfa_ioc_pf_fwmismatch(struct bfa_ioc *ioc)
2333{
2334
2335
2336
2337 ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
2338}
2339
2340
2341static enum bfa_status
2342bfa_ioc_pll_init(struct bfa_ioc *ioc)
2343{
2344
2345
2346
2347 bfa_nw_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg);
2348
2349 bfa_ioc_pll_init_asic(ioc);
2350
2351 ioc->pllinit = true;
2352
2353
2354 bfa_ioc_lmem_init(ioc);
2355
2356
2357
2358
2359 bfa_nw_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);
2360
2361 return BFA_STATUS_OK;
2362}
2363
2364
2365
2366
2367static enum bfa_status
2368bfa_ioc_boot(struct bfa_ioc *ioc, enum bfi_fwboot_type boot_type,
2369 u32 boot_env)
2370{
2371 struct bfi_ioc_image_hdr *drv_fwhdr;
2372 enum bfa_status status;
2373 bfa_ioc_stats(ioc, ioc_boots);
2374
2375 if (bfa_ioc_pll_init(ioc) != BFA_STATUS_OK)
2376 return BFA_STATUS_FAILED;
2377 if (boot_env == BFI_FWBOOT_ENV_OS &&
2378 boot_type == BFI_FWBOOT_TYPE_NORMAL) {
2379 drv_fwhdr = (struct bfi_ioc_image_hdr *)
2380 bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), 0);
2381
2382
2383
2384 if (bfa_ioc_flash_fwver_cmp(ioc, drv_fwhdr) ==
2385 BFI_IOC_IMG_VER_BETTER)
2386 boot_type = BFI_FWBOOT_TYPE_FLASH;
2387 }
2388
2389
2390
2391
2392 if (boot_type == BFI_FWBOOT_TYPE_MEMTEST) {
2393 bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_MEMTEST);
2394 bfa_ioc_set_alt_ioc_fwstate(ioc, BFI_IOC_MEMTEST);
2395 } else {
2396 bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_INITING);
2397 bfa_ioc_set_alt_ioc_fwstate(ioc, BFI_IOC_INITING);
2398 }
2399
2400 bfa_ioc_msgflush(ioc);
2401 status = bfa_ioc_download_fw(ioc, boot_type, boot_env);
2402 if (status == BFA_STATUS_OK)
2403 bfa_ioc_lpu_start(ioc);
2404 else
2405 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
2406
2407 return status;
2408}
2409
2410
2411void
2412bfa_nw_ioc_auto_recover(bool auto_recover)
2413{
2414 bfa_nw_auto_recover = auto_recover;
2415}
2416
2417static bool
2418bfa_ioc_msgget(struct bfa_ioc *ioc, void *mbmsg)
2419{
2420 u32 *msgp = mbmsg;
2421 u32 r32;
2422 int i;
2423
2424 r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
2425 if ((r32 & 1) == 0)
2426 return false;
2427
2428
2429
2430
2431 for (i = 0; i < (sizeof(union bfi_ioc_i2h_msg_u) / sizeof(u32));
2432 i++) {
2433 r32 = readl(ioc->ioc_regs.lpu_mbox +
2434 i * sizeof(u32));
2435 msgp[i] = htonl(r32);
2436 }
2437
2438
2439
2440
2441 writel(1, ioc->ioc_regs.lpu_mbox_cmd);
2442 readl(ioc->ioc_regs.lpu_mbox_cmd);
2443
2444 return true;
2445}
2446
2447static void
2448bfa_ioc_isr(struct bfa_ioc *ioc, struct bfi_mbmsg *m)
2449{
2450 union bfi_ioc_i2h_msg_u *msg;
2451 struct bfa_iocpf *iocpf = &ioc->iocpf;
2452
2453 msg = (union bfi_ioc_i2h_msg_u *) m;
2454
2455 bfa_ioc_stats(ioc, ioc_isrs);
2456
2457 switch (msg->mh.msg_id) {
2458 case BFI_IOC_I2H_HBEAT:
2459 break;
2460
2461 case BFI_IOC_I2H_ENABLE_REPLY:
2462 bfa_ioc_enable_reply(ioc,
2463 (enum bfa_mode)msg->fw_event.port_mode,
2464 msg->fw_event.cap_bm);
2465 break;
2466
2467 case BFI_IOC_I2H_DISABLE_REPLY:
2468 bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_DISABLE);
2469 break;
2470
2471 case BFI_IOC_I2H_GETATTR_REPLY:
2472 bfa_ioc_getattr_reply(ioc);
2473 break;
2474
2475 default:
2476 BUG_ON(1);
2477 }
2478}
2479
2480
2481
2482
2483
2484
2485
2486void
2487bfa_nw_ioc_attach(struct bfa_ioc *ioc, void *bfa, struct bfa_ioc_cbfn *cbfn)
2488{
2489 ioc->bfa = bfa;
2490 ioc->cbfn = cbfn;
2491 ioc->fcmode = false;
2492 ioc->pllinit = false;
2493 ioc->dbg_fwsave_once = true;
2494 ioc->iocpf.ioc = ioc;
2495
2496 bfa_ioc_mbox_attach(ioc);
2497 INIT_LIST_HEAD(&ioc->notify_q);
2498
2499 bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
2500 bfa_fsm_send_event(ioc, IOC_E_RESET);
2501}
2502
2503
2504void
2505bfa_nw_ioc_detach(struct bfa_ioc *ioc)
2506{
2507 bfa_fsm_send_event(ioc, IOC_E_DETACH);
2508
2509
2510 INIT_LIST_HEAD(&ioc->notify_q);
2511}
2512
2513
2514
2515
2516
2517
2518void
2519bfa_nw_ioc_pci_init(struct bfa_ioc *ioc, struct bfa_pcidev *pcidev,
2520 enum bfi_pcifn_class clscode)
2521{
2522 ioc->clscode = clscode;
2523 ioc->pcidev = *pcidev;
2524
2525
2526
2527
2528 ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_FC;
2529 ioc->asic_mode = BFI_ASIC_MODE_FC;
2530
2531 switch (pcidev->device_id) {
2532 case PCI_DEVICE_ID_BROCADE_CT:
2533 ioc->asic_gen = BFI_ASIC_GEN_CT;
2534 ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_ETH;
2535 ioc->asic_mode = BFI_ASIC_MODE_ETH;
2536 ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_CNA;
2537 ioc->ad_cap_bm = BFA_CM_CNA;
2538 break;
2539
2540 case BFA_PCI_DEVICE_ID_CT2:
2541 ioc->asic_gen = BFI_ASIC_GEN_CT2;
2542 if (clscode == BFI_PCIFN_CLASS_FC &&
2543 pcidev->ssid == BFA_PCI_CT2_SSID_FC) {
2544 ioc->asic_mode = BFI_ASIC_MODE_FC16;
2545 ioc->fcmode = true;
2546 ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_HBA;
2547 ioc->ad_cap_bm = BFA_CM_HBA;
2548 } else {
2549 ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_ETH;
2550 ioc->asic_mode = BFI_ASIC_MODE_ETH;
2551 if (pcidev->ssid == BFA_PCI_CT2_SSID_FCoE) {
2552 ioc->port_mode =
2553 ioc->port_mode_cfg = BFA_MODE_CNA;
2554 ioc->ad_cap_bm = BFA_CM_CNA;
2555 } else {
2556 ioc->port_mode =
2557 ioc->port_mode_cfg = BFA_MODE_NIC;
2558 ioc->ad_cap_bm = BFA_CM_NIC;
2559 }
2560 }
2561 break;
2562
2563 default:
2564 BUG_ON(1);
2565 }
2566
2567
2568
2569
2570 if (ioc->asic_gen == BFI_ASIC_GEN_CT)
2571 bfa_nw_ioc_set_ct_hwif(ioc);
2572 else {
2573 WARN_ON(ioc->asic_gen != BFI_ASIC_GEN_CT2);
2574 bfa_nw_ioc_set_ct2_hwif(ioc);
2575 bfa_nw_ioc_ct2_poweron(ioc);
2576 }
2577
2578 bfa_ioc_map_port(ioc);
2579 bfa_ioc_reg_init(ioc);
2580}
2581
2582
2583
2584
2585
2586
2587
2588void
2589bfa_nw_ioc_mem_claim(struct bfa_ioc *ioc, u8 *dm_kva, u64 dm_pa)
2590{
2591
2592
2593
2594 ioc->attr_dma.kva = dm_kva;
2595 ioc->attr_dma.pa = dm_pa;
2596 ioc->attr = (struct bfi_ioc_attr *) dm_kva;
2597}
2598
2599
2600u32
2601bfa_nw_ioc_meminfo(void)
2602{
2603 return roundup(sizeof(struct bfi_ioc_attr), BFA_DMA_ALIGN_SZ);
2604}
2605
2606void
2607bfa_nw_ioc_enable(struct bfa_ioc *ioc)
2608{
2609 bfa_ioc_stats(ioc, ioc_enables);
2610 ioc->dbg_fwsave_once = true;
2611
2612 bfa_fsm_send_event(ioc, IOC_E_ENABLE);
2613}
2614
2615void
2616bfa_nw_ioc_disable(struct bfa_ioc *ioc)
2617{
2618 bfa_ioc_stats(ioc, ioc_disables);
2619 bfa_fsm_send_event(ioc, IOC_E_DISABLE);
2620}
2621
2622
2623void
2624bfa_nw_ioc_debug_memclaim(struct bfa_ioc *ioc, void *dbg_fwsave)
2625{
2626 ioc->dbg_fwsave = dbg_fwsave;
2627 ioc->dbg_fwsave_len = ioc->iocpf.auto_recover ? BNA_DBG_FWTRC_LEN : 0;
2628}
2629
2630static u32
2631bfa_ioc_smem_pgnum(struct bfa_ioc *ioc, u32 fmaddr)
2632{
2633 return PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, fmaddr);
2634}
2635
2636
2637void
2638bfa_nw_ioc_mbox_regisr(struct bfa_ioc *ioc, enum bfi_mclass mc,
2639 bfa_ioc_mbox_mcfunc_t cbfn, void *cbarg)
2640{
2641 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
2642
2643 mod->mbhdlr[mc].cbfn = cbfn;
2644 mod->mbhdlr[mc].cbarg = cbarg;
2645}
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655bool
2656bfa_nw_ioc_mbox_queue(struct bfa_ioc *ioc, struct bfa_mbox_cmd *cmd,
2657 bfa_mbox_cmd_cbfn_t cbfn, void *cbarg)
2658{
2659 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
2660 u32 stat;
2661
2662 cmd->cbfn = cbfn;
2663 cmd->cbarg = cbarg;
2664
2665
2666
2667
2668 if (!list_empty(&mod->cmd_q)) {
2669 list_add_tail(&cmd->qe, &mod->cmd_q);
2670 return true;
2671 }
2672
2673
2674
2675
2676 stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
2677 if (stat) {
2678 list_add_tail(&cmd->qe, &mod->cmd_q);
2679 return true;
2680 }
2681
2682
2683
2684
2685 bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
2686
2687 return false;
2688}
2689
2690
2691void
2692bfa_nw_ioc_mbox_isr(struct bfa_ioc *ioc)
2693{
2694 struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
2695 struct bfi_mbmsg m;
2696 int mc;
2697
2698 if (bfa_ioc_msgget(ioc, &m)) {
2699
2700
2701
2702 mc = m.mh.msg_class;
2703 if (mc == BFI_MC_IOC) {
2704 bfa_ioc_isr(ioc, &m);
2705 return;
2706 }
2707
2708 if ((mc >= BFI_MC_MAX) || (mod->mbhdlr[mc].cbfn == NULL))
2709 return;
2710
2711 mod->mbhdlr[mc].cbfn(mod->mbhdlr[mc].cbarg, &m);
2712 }
2713
2714 bfa_ioc_lpu_read_stat(ioc);
2715
2716
2717
2718
2719 bfa_ioc_mbox_poll(ioc);
2720}
2721
2722void
2723bfa_nw_ioc_error_isr(struct bfa_ioc *ioc)
2724{
2725 bfa_ioc_stats(ioc, ioc_hbfails);
2726 bfa_ioc_stats_hb_count(ioc, ioc->hb_count);
2727 bfa_fsm_send_event(ioc, IOC_E_HWERROR);
2728}
2729
2730
2731bool
2732bfa_nw_ioc_is_disabled(struct bfa_ioc *ioc)
2733{
2734 return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabling) ||
2735 bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled);
2736}
2737
2738
2739bool
2740bfa_nw_ioc_is_operational(struct bfa_ioc *ioc)
2741{
2742 return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_op);
2743}
2744
2745
2746
2747
2748void
2749bfa_nw_ioc_notify_register(struct bfa_ioc *ioc,
2750 struct bfa_ioc_notify *notify)
2751{
2752 list_add_tail(¬ify->qe, &ioc->notify_q);
2753}
2754
2755#define BFA_MFG_NAME "QLogic"
2756static void
2757bfa_ioc_get_adapter_attr(struct bfa_ioc *ioc,
2758 struct bfa_adapter_attr *ad_attr)
2759{
2760 struct bfi_ioc_attr *ioc_attr;
2761
2762 ioc_attr = ioc->attr;
2763
2764 bfa_ioc_get_adapter_serial_num(ioc, ad_attr->serial_num);
2765 bfa_ioc_get_adapter_fw_ver(ioc, ad_attr->fw_ver);
2766 bfa_ioc_get_adapter_optrom_ver(ioc, ad_attr->optrom_ver);
2767 bfa_ioc_get_adapter_manufacturer(ioc, ad_attr->manufacturer);
2768 memcpy(&ad_attr->vpd, &ioc_attr->vpd,
2769 sizeof(struct bfa_mfg_vpd));
2770
2771 ad_attr->nports = bfa_ioc_get_nports(ioc);
2772 ad_attr->max_speed = bfa_ioc_speed_sup(ioc);
2773
2774 bfa_ioc_get_adapter_model(ioc, ad_attr->model);
2775
2776 bfa_ioc_get_adapter_model(ioc, ad_attr->model_descr);
2777
2778 ad_attr->card_type = ioc_attr->card_type;
2779 ad_attr->is_mezz = bfa_mfg_is_mezz(ioc_attr->card_type);
2780
2781 if (BFI_ADAPTER_IS_SPECIAL(ioc_attr->adapter_prop))
2782 ad_attr->prototype = 1;
2783 else
2784 ad_attr->prototype = 0;
2785
2786 ad_attr->pwwn = bfa_ioc_get_pwwn(ioc);
2787 bfa_nw_ioc_get_mac(ioc, ad_attr->mac);
2788
2789 ad_attr->pcie_gen = ioc_attr->pcie_gen;
2790 ad_attr->pcie_lanes = ioc_attr->pcie_lanes;
2791 ad_attr->pcie_lanes_orig = ioc_attr->pcie_lanes_orig;
2792 ad_attr->asic_rev = ioc_attr->asic_rev;
2793
2794 bfa_ioc_get_pci_chip_rev(ioc, ad_attr->hw_ver);
2795}
2796
2797static enum bfa_ioc_type
2798bfa_ioc_get_type(struct bfa_ioc *ioc)
2799{
2800 if (ioc->clscode == BFI_PCIFN_CLASS_ETH)
2801 return BFA_IOC_TYPE_LL;
2802
2803 BUG_ON(!(ioc->clscode == BFI_PCIFN_CLASS_FC));
2804
2805 return (ioc->attr->port_mode == BFI_PORT_MODE_FC)
2806 ? BFA_IOC_TYPE_FC : BFA_IOC_TYPE_FCoE;
2807}
2808
2809static void
2810bfa_ioc_get_adapter_serial_num(struct bfa_ioc *ioc, char *serial_num)
2811{
2812 memcpy(serial_num,
2813 (void *)ioc->attr->brcd_serialnum,
2814 BFA_ADAPTER_SERIAL_NUM_LEN);
2815}
2816
2817static void
2818bfa_ioc_get_adapter_fw_ver(struct bfa_ioc *ioc, char *fw_ver)
2819{
2820 memcpy(fw_ver, ioc->attr->fw_version, BFA_VERSION_LEN);
2821}
2822
2823static void
2824bfa_ioc_get_pci_chip_rev(struct bfa_ioc *ioc, char *chip_rev)
2825{
2826 BUG_ON(!(chip_rev));
2827
2828 memset(chip_rev, 0, BFA_IOC_CHIP_REV_LEN);
2829
2830 chip_rev[0] = 'R';
2831 chip_rev[1] = 'e';
2832 chip_rev[2] = 'v';
2833 chip_rev[3] = '-';
2834 chip_rev[4] = ioc->attr->asic_rev;
2835 chip_rev[5] = '\0';
2836}
2837
2838static void
2839bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc *ioc, char *optrom_ver)
2840{
2841 memcpy(optrom_ver, ioc->attr->optrom_version,
2842 BFA_VERSION_LEN);
2843}
2844
2845static void
2846bfa_ioc_get_adapter_manufacturer(struct bfa_ioc *ioc, char *manufacturer)
2847{
2848 strncpy(manufacturer, BFA_MFG_NAME, BFA_ADAPTER_MFG_NAME_LEN);
2849}
2850
2851static void
2852bfa_ioc_get_adapter_model(struct bfa_ioc *ioc, char *model)
2853{
2854 struct bfi_ioc_attr *ioc_attr;
2855
2856 BUG_ON(!(model));
2857 memset(model, 0, BFA_ADAPTER_MODEL_NAME_LEN);
2858
2859 ioc_attr = ioc->attr;
2860
2861 snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN, "%s-%u",
2862 BFA_MFG_NAME, ioc_attr->card_type);
2863}
2864
2865static enum bfa_ioc_state
2866bfa_ioc_get_state(struct bfa_ioc *ioc)
2867{
2868 enum bfa_iocpf_state iocpf_st;
2869 enum bfa_ioc_state ioc_st = bfa_sm_to_state(ioc_sm_table, ioc->fsm);
2870
2871 if (ioc_st == BFA_IOC_ENABLING ||
2872 ioc_st == BFA_IOC_FAIL || ioc_st == BFA_IOC_INITFAIL) {
2873
2874 iocpf_st = bfa_sm_to_state(iocpf_sm_table, ioc->iocpf.fsm);
2875
2876 switch (iocpf_st) {
2877 case BFA_IOCPF_SEMWAIT:
2878 ioc_st = BFA_IOC_SEMWAIT;
2879 break;
2880
2881 case BFA_IOCPF_HWINIT:
2882 ioc_st = BFA_IOC_HWINIT;
2883 break;
2884
2885 case BFA_IOCPF_FWMISMATCH:
2886 ioc_st = BFA_IOC_FWMISMATCH;
2887 break;
2888
2889 case BFA_IOCPF_FAIL:
2890 ioc_st = BFA_IOC_FAIL;
2891 break;
2892
2893 case BFA_IOCPF_INITFAIL:
2894 ioc_st = BFA_IOC_INITFAIL;
2895 break;
2896
2897 default:
2898 break;
2899 }
2900 }
2901 return ioc_st;
2902}
2903
2904void
2905bfa_nw_ioc_get_attr(struct bfa_ioc *ioc, struct bfa_ioc_attr *ioc_attr)
2906{
2907 memset((void *)ioc_attr, 0, sizeof(struct bfa_ioc_attr));
2908
2909 ioc_attr->state = bfa_ioc_get_state(ioc);
2910 ioc_attr->port_id = bfa_ioc_portid(ioc);
2911 ioc_attr->port_mode = ioc->port_mode;
2912
2913 ioc_attr->port_mode_cfg = ioc->port_mode_cfg;
2914 ioc_attr->cap_bm = ioc->ad_cap_bm;
2915
2916 ioc_attr->ioc_type = bfa_ioc_get_type(ioc);
2917
2918 bfa_ioc_get_adapter_attr(ioc, &ioc_attr->adapter_attr);
2919
2920 ioc_attr->pci_attr.device_id = bfa_ioc_devid(ioc);
2921 ioc_attr->pci_attr.pcifn = bfa_ioc_pcifn(ioc);
2922 ioc_attr->def_fn = bfa_ioc_is_default(ioc);
2923 bfa_ioc_get_pci_chip_rev(ioc, ioc_attr->pci_attr.chip_rev);
2924}
2925
2926
2927static u64
2928bfa_ioc_get_pwwn(struct bfa_ioc *ioc)
2929{
2930 return ioc->attr->pwwn;
2931}
2932
2933void
2934bfa_nw_ioc_get_mac(struct bfa_ioc *ioc, u8 *mac)
2935{
2936 ether_addr_copy(mac, ioc->attr->mac);
2937}
2938
2939
2940static void
2941bfa_ioc_recover(struct bfa_ioc *ioc)
2942{
2943 pr_crit("Heart Beat of IOC has failed\n");
2944 bfa_ioc_stats(ioc, ioc_hbfails);
2945 bfa_ioc_stats_hb_count(ioc, ioc->hb_count);
2946 bfa_fsm_send_event(ioc, IOC_E_HBFAIL);
2947}
2948
2949
2950
2951static void
2952bfa_iocpf_enable(struct bfa_ioc *ioc)
2953{
2954 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_ENABLE);
2955}
2956
2957static void
2958bfa_iocpf_disable(struct bfa_ioc *ioc)
2959{
2960 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_DISABLE);
2961}
2962
2963static void
2964bfa_iocpf_fail(struct bfa_ioc *ioc)
2965{
2966 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FAIL);
2967}
2968
2969static void
2970bfa_iocpf_initfail(struct bfa_ioc *ioc)
2971{
2972 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_INITFAIL);
2973}
2974
2975static void
2976bfa_iocpf_getattrfail(struct bfa_ioc *ioc)
2977{
2978 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_GETATTRFAIL);
2979}
2980
2981static void
2982bfa_iocpf_stop(struct bfa_ioc *ioc)
2983{
2984 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
2985}
2986
2987void
2988bfa_nw_iocpf_timeout(struct bfa_ioc *ioc)
2989{
2990 enum bfa_iocpf_state iocpf_st;
2991
2992 iocpf_st = bfa_sm_to_state(iocpf_sm_table, ioc->iocpf.fsm);
2993
2994 if (iocpf_st == BFA_IOCPF_HWINIT)
2995 bfa_ioc_poll_fwinit(ioc);
2996 else
2997 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
2998}
2999
3000void
3001bfa_nw_iocpf_sem_timeout(struct bfa_ioc *ioc)
3002{
3003 bfa_ioc_hw_sem_get(ioc);
3004}
3005
3006static void
3007bfa_ioc_poll_fwinit(struct bfa_ioc *ioc)
3008{
3009 u32 fwstate = bfa_ioc_get_cur_ioc_fwstate(ioc);
3010
3011 if (fwstate == BFI_IOC_DISABLED) {
3012 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
3013 return;
3014 }
3015
3016 if (ioc->iocpf.poll_time >= BFA_IOC_TOV) {
3017 bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
3018 } else {
3019 ioc->iocpf.poll_time += BFA_IOC_POLL_TOV;
3020 mod_timer(&ioc->iocpf_timer, jiffies +
3021 msecs_to_jiffies(BFA_IOC_POLL_TOV));
3022 }
3023}
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034#define BFA_FLASH_SEG_SZ 2048
3035#define BFA_FLASH_DMA_BUF_SZ \
3036 roundup(0x010000 + sizeof(struct bfa_mfg_block), BFA_FLASH_SEG_SZ)
3037
3038static void
3039bfa_flash_cb(struct bfa_flash *flash)
3040{
3041 flash->op_busy = 0;
3042 if (flash->cbfn)
3043 flash->cbfn(flash->cbarg, flash->status);
3044}
3045
3046static void
3047bfa_flash_notify(void *cbarg, enum bfa_ioc_event event)
3048{
3049 struct bfa_flash *flash = cbarg;
3050
3051 switch (event) {
3052 case BFA_IOC_E_DISABLED:
3053 case BFA_IOC_E_FAILED:
3054 if (flash->op_busy) {
3055 flash->status = BFA_STATUS_IOC_FAILURE;
3056 flash->cbfn(flash->cbarg, flash->status);
3057 flash->op_busy = 0;
3058 }
3059 break;
3060 default:
3061 break;
3062 }
3063}
3064
3065
3066
3067
3068static void
3069bfa_flash_write_send(struct bfa_flash *flash)
3070{
3071 struct bfi_flash_write_req *msg =
3072 (struct bfi_flash_write_req *) flash->mb.msg;
3073 u32 len;
3074
3075 msg->type = be32_to_cpu(flash->type);
3076 msg->instance = flash->instance;
3077 msg->offset = be32_to_cpu(flash->addr_off + flash->offset);
3078 len = (flash->residue < BFA_FLASH_DMA_BUF_SZ) ?
3079 flash->residue : BFA_FLASH_DMA_BUF_SZ;
3080 msg->length = be32_to_cpu(len);
3081
3082
3083 msg->last = (len == flash->residue) ? 1 : 0;
3084
3085 bfi_h2i_set(msg->mh, BFI_MC_FLASH, BFI_FLASH_H2I_WRITE_REQ,
3086 bfa_ioc_portid(flash->ioc));
3087 bfa_alen_set(&msg->alen, len, flash->dbuf_pa);
3088 memcpy(flash->dbuf_kva, flash->ubuf + flash->offset, len);
3089 bfa_nw_ioc_mbox_queue(flash->ioc, &flash->mb, NULL, NULL);
3090
3091 flash->residue -= len;
3092 flash->offset += len;
3093}
3094
3095
3096
3097
3098
3099
3100static void
3101bfa_flash_read_send(void *cbarg)
3102{
3103 struct bfa_flash *flash = cbarg;
3104 struct bfi_flash_read_req *msg =
3105 (struct bfi_flash_read_req *) flash->mb.msg;
3106 u32 len;
3107
3108 msg->type = be32_to_cpu(flash->type);
3109 msg->instance = flash->instance;
3110 msg->offset = be32_to_cpu(flash->addr_off + flash->offset);
3111 len = (flash->residue < BFA_FLASH_DMA_BUF_SZ) ?
3112 flash->residue : BFA_FLASH_DMA_BUF_SZ;
3113 msg->length = be32_to_cpu(len);
3114 bfi_h2i_set(msg->mh, BFI_MC_FLASH, BFI_FLASH_H2I_READ_REQ,
3115 bfa_ioc_portid(flash->ioc));
3116 bfa_alen_set(&msg->alen, len, flash->dbuf_pa);
3117 bfa_nw_ioc_mbox_queue(flash->ioc, &flash->mb, NULL, NULL);
3118}
3119
3120
3121
3122
3123
3124
3125
3126static void
3127bfa_flash_intr(void *flasharg, struct bfi_mbmsg *msg)
3128{
3129 struct bfa_flash *flash = flasharg;
3130 u32 status;
3131
3132 union {
3133 struct bfi_flash_query_rsp *query;
3134 struct bfi_flash_write_rsp *write;
3135 struct bfi_flash_read_rsp *read;
3136 struct bfi_mbmsg *msg;
3137 } m;
3138
3139 m.msg = msg;
3140
3141
3142 if (!flash->op_busy && msg->mh.msg_id != BFI_FLASH_I2H_EVENT)
3143 return;
3144
3145 switch (msg->mh.msg_id) {
3146 case BFI_FLASH_I2H_QUERY_RSP:
3147 status = be32_to_cpu(m.query->status);
3148 if (status == BFA_STATUS_OK) {
3149 u32 i;
3150 struct bfa_flash_attr *attr, *f;
3151
3152 attr = (struct bfa_flash_attr *) flash->ubuf;
3153 f = (struct bfa_flash_attr *) flash->dbuf_kva;
3154 attr->status = be32_to_cpu(f->status);
3155 attr->npart = be32_to_cpu(f->npart);
3156 for (i = 0; i < attr->npart; i++) {
3157 attr->part[i].part_type =
3158 be32_to_cpu(f->part[i].part_type);
3159 attr->part[i].part_instance =
3160 be32_to_cpu(f->part[i].part_instance);
3161 attr->part[i].part_off =
3162 be32_to_cpu(f->part[i].part_off);
3163 attr->part[i].part_size =
3164 be32_to_cpu(f->part[i].part_size);
3165 attr->part[i].part_len =
3166 be32_to_cpu(f->part[i].part_len);
3167 attr->part[i].part_status =
3168 be32_to_cpu(f->part[i].part_status);
3169 }
3170 }
3171 flash->status = status;
3172 bfa_flash_cb(flash);
3173 break;
3174 case BFI_FLASH_I2H_WRITE_RSP:
3175 status = be32_to_cpu(m.write->status);
3176 if (status != BFA_STATUS_OK || flash->residue == 0) {
3177 flash->status = status;
3178 bfa_flash_cb(flash);
3179 } else
3180 bfa_flash_write_send(flash);
3181 break;
3182 case BFI_FLASH_I2H_READ_RSP:
3183 status = be32_to_cpu(m.read->status);
3184 if (status != BFA_STATUS_OK) {
3185 flash->status = status;
3186 bfa_flash_cb(flash);
3187 } else {
3188 u32 len = be32_to_cpu(m.read->length);
3189 memcpy(flash->ubuf + flash->offset,
3190 flash->dbuf_kva, len);
3191 flash->residue -= len;
3192 flash->offset += len;
3193 if (flash->residue == 0) {
3194 flash->status = status;
3195 bfa_flash_cb(flash);
3196 } else
3197 bfa_flash_read_send(flash);
3198 }
3199 break;
3200 case BFI_FLASH_I2H_BOOT_VER_RSP:
3201 case BFI_FLASH_I2H_EVENT:
3202 break;
3203 default:
3204 WARN_ON(1);
3205 }
3206}
3207
3208
3209
3210
3211u32
3212bfa_nw_flash_meminfo(void)
3213{
3214 return roundup(BFA_FLASH_DMA_BUF_SZ, BFA_DMA_ALIGN_SZ);
3215}
3216
3217
3218
3219
3220
3221
3222
3223
3224void
3225bfa_nw_flash_attach(struct bfa_flash *flash, struct bfa_ioc *ioc, void *dev)
3226{
3227 flash->ioc = ioc;
3228 flash->cbfn = NULL;
3229 flash->cbarg = NULL;
3230 flash->op_busy = 0;
3231
3232 bfa_nw_ioc_mbox_regisr(flash->ioc, BFI_MC_FLASH, bfa_flash_intr, flash);
3233 bfa_ioc_notify_init(&flash->ioc_notify, bfa_flash_notify, flash);
3234 list_add_tail(&flash->ioc_notify.qe, &flash->ioc->notify_q);
3235}
3236
3237
3238
3239
3240
3241
3242
3243
3244void
3245bfa_nw_flash_memclaim(struct bfa_flash *flash, u8 *dm_kva, u64 dm_pa)
3246{
3247 flash->dbuf_kva = dm_kva;
3248 flash->dbuf_pa = dm_pa;
3249 memset(flash->dbuf_kva, 0, BFA_FLASH_DMA_BUF_SZ);
3250 dm_kva += roundup(BFA_FLASH_DMA_BUF_SZ, BFA_DMA_ALIGN_SZ);
3251 dm_pa += roundup(BFA_FLASH_DMA_BUF_SZ, BFA_DMA_ALIGN_SZ);
3252}
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264enum bfa_status
3265bfa_nw_flash_get_attr(struct bfa_flash *flash, struct bfa_flash_attr *attr,
3266 bfa_cb_flash cbfn, void *cbarg)
3267{
3268 struct bfi_flash_query_req *msg =
3269 (struct bfi_flash_query_req *) flash->mb.msg;
3270
3271 if (!bfa_nw_ioc_is_operational(flash->ioc))
3272 return BFA_STATUS_IOC_NON_OP;
3273
3274 if (flash->op_busy)
3275 return BFA_STATUS_DEVBUSY;
3276
3277 flash->op_busy = 1;
3278 flash->cbfn = cbfn;
3279 flash->cbarg = cbarg;
3280 flash->ubuf = (u8 *) attr;
3281
3282 bfi_h2i_set(msg->mh, BFI_MC_FLASH, BFI_FLASH_H2I_QUERY_REQ,
3283 bfa_ioc_portid(flash->ioc));
3284 bfa_alen_set(&msg->alen, sizeof(struct bfa_flash_attr), flash->dbuf_pa);
3285 bfa_nw_ioc_mbox_queue(flash->ioc, &flash->mb, NULL, NULL);
3286
3287 return BFA_STATUS_OK;
3288}
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304enum bfa_status
3305bfa_nw_flash_update_part(struct bfa_flash *flash, u32 type, u8 instance,
3306 void *buf, u32 len, u32 offset,
3307 bfa_cb_flash cbfn, void *cbarg)
3308{
3309 if (!bfa_nw_ioc_is_operational(flash->ioc))
3310 return BFA_STATUS_IOC_NON_OP;
3311
3312
3313
3314
3315 if (!len || (len & 0x03))
3316 return BFA_STATUS_FLASH_BAD_LEN;
3317
3318 if (type == BFA_FLASH_PART_MFG)
3319 return BFA_STATUS_EINVAL;
3320
3321 if (flash->op_busy)
3322 return BFA_STATUS_DEVBUSY;
3323
3324 flash->op_busy = 1;
3325 flash->cbfn = cbfn;
3326 flash->cbarg = cbarg;
3327 flash->type = type;
3328 flash->instance = instance;
3329 flash->residue = len;
3330 flash->offset = 0;
3331 flash->addr_off = offset;
3332 flash->ubuf = buf;
3333
3334 bfa_flash_write_send(flash);
3335
3336 return BFA_STATUS_OK;
3337}
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353enum bfa_status
3354bfa_nw_flash_read_part(struct bfa_flash *flash, u32 type, u8 instance,
3355 void *buf, u32 len, u32 offset,
3356 bfa_cb_flash cbfn, void *cbarg)
3357{
3358 if (!bfa_nw_ioc_is_operational(flash->ioc))
3359 return BFA_STATUS_IOC_NON_OP;
3360
3361
3362
3363
3364 if (!len || (len & 0x03))
3365 return BFA_STATUS_FLASH_BAD_LEN;
3366
3367 if (flash->op_busy)
3368 return BFA_STATUS_DEVBUSY;
3369
3370 flash->op_busy = 1;
3371 flash->cbfn = cbfn;
3372 flash->cbarg = cbarg;
3373 flash->type = type;
3374 flash->instance = instance;
3375 flash->residue = len;
3376 flash->offset = 0;
3377 flash->addr_off = offset;
3378 flash->ubuf = buf;
3379
3380 bfa_flash_read_send(flash);
3381
3382 return BFA_STATUS_OK;
3383}
3384