1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
4 * Copyright (c) 2014- QLogic Corporation.
8 * Linux driver for QLogic BR-series Fibre Channel Host Bus Adapter.
15 #include "bfa_modules.h"
17 BFA_TRC_FILE(HAL
, FCXP
);
20 * LPS related definitions
22 #define BFA_LPS_MIN_LPORTS (1)
23 #define BFA_LPS_MAX_LPORTS (256)
26 * Maximum Vports supported per physical port or vf.
28 #define BFA_LPS_MAX_VPORTS_SUPP_CB 255
29 #define BFA_LPS_MAX_VPORTS_SUPP_CT 190
33 * FC PORT related definitions
36 * The port is considered disabled if corresponding physical port or IOC are
39 #define BFA_PORT_IS_DISABLED(bfa) \
40 ((bfa_fcport_is_disabled(bfa) == BFA_TRUE) || \
41 (bfa_ioc_is_disabled(&bfa->ioc) == BFA_TRUE))
44 * BFA port state machine events
46 enum bfa_fcport_sm_event
{
47 BFA_FCPORT_SM_START
= 1, /* start port state machine */
48 BFA_FCPORT_SM_STOP
= 2, /* stop port state machine */
49 BFA_FCPORT_SM_ENABLE
= 3, /* enable port */
50 BFA_FCPORT_SM_DISABLE
= 4, /* disable port state machine */
51 BFA_FCPORT_SM_FWRSP
= 5, /* firmware enable/disable rsp */
52 BFA_FCPORT_SM_LINKUP
= 6, /* firmware linkup event */
53 BFA_FCPORT_SM_LINKDOWN
= 7, /* firmware linkup down */
54 BFA_FCPORT_SM_QRESUME
= 8, /* CQ space available */
55 BFA_FCPORT_SM_HWFAIL
= 9, /* IOC h/w failure */
56 BFA_FCPORT_SM_DPORTENABLE
= 10, /* enable dport */
57 BFA_FCPORT_SM_DPORTDISABLE
= 11,/* disable dport */
58 BFA_FCPORT_SM_FAA_MISCONFIG
= 12, /* FAA misconfiguratin */
59 BFA_FCPORT_SM_DDPORTENABLE
= 13, /* enable ddport */
60 BFA_FCPORT_SM_DDPORTDISABLE
= 14, /* disable ddport */
64 * BFA port link notification state machine events
67 enum bfa_fcport_ln_sm_event
{
68 BFA_FCPORT_LN_SM_LINKUP
= 1, /* linkup event */
69 BFA_FCPORT_LN_SM_LINKDOWN
= 2, /* linkdown event */
70 BFA_FCPORT_LN_SM_NOTIFICATION
= 3 /* done notification */
74 * RPORT related definitions
76 #define bfa_rport_offline_cb(__rp) do { \
77 if ((__rp)->bfa->fcs) \
78 bfa_cb_rport_offline((__rp)->rport_drv); \
80 bfa_cb_queue((__rp)->bfa, &(__rp)->hcb_qe, \
81 __bfa_cb_rport_offline, (__rp)); \
85 #define bfa_rport_online_cb(__rp) do { \
86 if ((__rp)->bfa->fcs) \
87 bfa_cb_rport_online((__rp)->rport_drv); \
89 bfa_cb_queue((__rp)->bfa, &(__rp)->hcb_qe, \
90 __bfa_cb_rport_online, (__rp)); \
95 * forward declarations FCXP related functions
97 static void __bfa_fcxp_send_cbfn(void *cbarg
, bfa_boolean_t complete
);
98 static void hal_fcxp_rx_plog(struct bfa_s
*bfa
, struct bfa_fcxp_s
*fcxp
,
99 struct bfi_fcxp_send_rsp_s
*fcxp_rsp
);
100 static void hal_fcxp_tx_plog(struct bfa_s
*bfa
, u32 reqlen
,
101 struct bfa_fcxp_s
*fcxp
, struct fchs_s
*fchs
);
102 static void bfa_fcxp_qresume(void *cbarg
);
103 static void bfa_fcxp_queue(struct bfa_fcxp_s
*fcxp
,
104 struct bfi_fcxp_send_req_s
*send_req
);
107 * forward declarations for LPS functions
109 static void bfa_lps_login_rsp(struct bfa_s
*bfa
,
110 struct bfi_lps_login_rsp_s
*rsp
);
111 static void bfa_lps_no_res(struct bfa_lps_s
*first_lps
, u8 count
);
112 static void bfa_lps_logout_rsp(struct bfa_s
*bfa
,
113 struct bfi_lps_logout_rsp_s
*rsp
);
114 static void bfa_lps_reqq_resume(void *lps_arg
);
115 static void bfa_lps_free(struct bfa_lps_s
*lps
);
116 static void bfa_lps_send_login(struct bfa_lps_s
*lps
);
117 static void bfa_lps_send_logout(struct bfa_lps_s
*lps
);
118 static void bfa_lps_send_set_n2n_pid(struct bfa_lps_s
*lps
);
119 static void bfa_lps_login_comp(struct bfa_lps_s
*lps
);
120 static void bfa_lps_logout_comp(struct bfa_lps_s
*lps
);
121 static void bfa_lps_cvl_event(struct bfa_lps_s
*lps
);
124 * forward declaration for LPS state machine
126 static void bfa_lps_sm_init(struct bfa_lps_s
*lps
, enum bfa_lps_event event
);
127 static void bfa_lps_sm_login(struct bfa_lps_s
*lps
, enum bfa_lps_event event
);
128 static void bfa_lps_sm_loginwait(struct bfa_lps_s
*lps
, enum bfa_lps_event
130 static void bfa_lps_sm_online(struct bfa_lps_s
*lps
, enum bfa_lps_event event
);
131 static void bfa_lps_sm_online_n2n_pid_wait(struct bfa_lps_s
*lps
,
132 enum bfa_lps_event event
);
133 static void bfa_lps_sm_logout(struct bfa_lps_s
*lps
, enum bfa_lps_event event
);
134 static void bfa_lps_sm_logowait(struct bfa_lps_s
*lps
, enum bfa_lps_event
138 * forward declaration for FC Port functions
140 static bfa_boolean_t
bfa_fcport_send_enable(struct bfa_fcport_s
*fcport
);
141 static bfa_boolean_t
bfa_fcport_send_disable(struct bfa_fcport_s
*fcport
);
142 static void bfa_fcport_update_linkinfo(struct bfa_fcport_s
*fcport
);
143 static void bfa_fcport_reset_linkinfo(struct bfa_fcport_s
*fcport
);
144 static void bfa_fcport_set_wwns(struct bfa_fcport_s
*fcport
);
145 static void __bfa_cb_fcport_event(void *cbarg
, bfa_boolean_t complete
);
146 static void bfa_fcport_scn(struct bfa_fcport_s
*fcport
,
147 enum bfa_port_linkstate event
, bfa_boolean_t trunk
);
148 static void bfa_fcport_queue_cb(struct bfa_fcport_ln_s
*ln
,
149 enum bfa_port_linkstate event
);
150 static void __bfa_cb_fcport_stats_clr(void *cbarg
, bfa_boolean_t complete
);
151 static void bfa_fcport_stats_get_timeout(void *cbarg
);
152 static void bfa_fcport_stats_clr_timeout(void *cbarg
);
153 static void bfa_trunk_iocdisable(struct bfa_s
*bfa
);
156 * forward declaration for FC PORT state machine
158 static void bfa_fcport_sm_uninit(struct bfa_fcport_s
*fcport
,
159 enum bfa_fcport_sm_event event
);
160 static void bfa_fcport_sm_enabling_qwait(struct bfa_fcport_s
*fcport
,
161 enum bfa_fcport_sm_event event
);
162 static void bfa_fcport_sm_enabling(struct bfa_fcport_s
*fcport
,
163 enum bfa_fcport_sm_event event
);
164 static void bfa_fcport_sm_linkdown(struct bfa_fcport_s
*fcport
,
165 enum bfa_fcport_sm_event event
);
166 static void bfa_fcport_sm_linkup(struct bfa_fcport_s
*fcport
,
167 enum bfa_fcport_sm_event event
);
168 static void bfa_fcport_sm_disabling(struct bfa_fcport_s
*fcport
,
169 enum bfa_fcport_sm_event event
);
170 static void bfa_fcport_sm_disabling_qwait(struct bfa_fcport_s
*fcport
,
171 enum bfa_fcport_sm_event event
);
172 static void bfa_fcport_sm_toggling_qwait(struct bfa_fcport_s
*fcport
,
173 enum bfa_fcport_sm_event event
);
174 static void bfa_fcport_sm_disabled(struct bfa_fcport_s
*fcport
,
175 enum bfa_fcport_sm_event event
);
176 static void bfa_fcport_sm_stopped(struct bfa_fcport_s
*fcport
,
177 enum bfa_fcport_sm_event event
);
178 static void bfa_fcport_sm_iocdown(struct bfa_fcport_s
*fcport
,
179 enum bfa_fcport_sm_event event
);
180 static void bfa_fcport_sm_iocfail(struct bfa_fcport_s
*fcport
,
181 enum bfa_fcport_sm_event event
);
182 static void bfa_fcport_sm_dport(struct bfa_fcport_s
*fcport
,
183 enum bfa_fcport_sm_event event
);
184 static void bfa_fcport_sm_ddport(struct bfa_fcport_s
*fcport
,
185 enum bfa_fcport_sm_event event
);
186 static void bfa_fcport_sm_faa_misconfig(struct bfa_fcport_s
*fcport
,
187 enum bfa_fcport_sm_event event
);
189 static void bfa_fcport_ln_sm_dn(struct bfa_fcport_ln_s
*ln
,
190 enum bfa_fcport_ln_sm_event event
);
191 static void bfa_fcport_ln_sm_dn_nf(struct bfa_fcport_ln_s
*ln
,
192 enum bfa_fcport_ln_sm_event event
);
193 static void bfa_fcport_ln_sm_dn_up_nf(struct bfa_fcport_ln_s
*ln
,
194 enum bfa_fcport_ln_sm_event event
);
195 static void bfa_fcport_ln_sm_up(struct bfa_fcport_ln_s
*ln
,
196 enum bfa_fcport_ln_sm_event event
);
197 static void bfa_fcport_ln_sm_up_nf(struct bfa_fcport_ln_s
*ln
,
198 enum bfa_fcport_ln_sm_event event
);
199 static void bfa_fcport_ln_sm_up_dn_nf(struct bfa_fcport_ln_s
*ln
,
200 enum bfa_fcport_ln_sm_event event
);
201 static void bfa_fcport_ln_sm_up_dn_up_nf(struct bfa_fcport_ln_s
*ln
,
202 enum bfa_fcport_ln_sm_event event
);
204 static struct bfa_sm_table_s hal_port_sm_table
[] = {
205 {BFA_SM(bfa_fcport_sm_uninit
), BFA_PORT_ST_UNINIT
},
206 {BFA_SM(bfa_fcport_sm_enabling_qwait
), BFA_PORT_ST_ENABLING_QWAIT
},
207 {BFA_SM(bfa_fcport_sm_enabling
), BFA_PORT_ST_ENABLING
},
208 {BFA_SM(bfa_fcport_sm_linkdown
), BFA_PORT_ST_LINKDOWN
},
209 {BFA_SM(bfa_fcport_sm_linkup
), BFA_PORT_ST_LINKUP
},
210 {BFA_SM(bfa_fcport_sm_disabling_qwait
), BFA_PORT_ST_DISABLING_QWAIT
},
211 {BFA_SM(bfa_fcport_sm_toggling_qwait
), BFA_PORT_ST_TOGGLING_QWAIT
},
212 {BFA_SM(bfa_fcport_sm_disabling
), BFA_PORT_ST_DISABLING
},
213 {BFA_SM(bfa_fcport_sm_disabled
), BFA_PORT_ST_DISABLED
},
214 {BFA_SM(bfa_fcport_sm_stopped
), BFA_PORT_ST_STOPPED
},
215 {BFA_SM(bfa_fcport_sm_iocdown
), BFA_PORT_ST_IOCDOWN
},
216 {BFA_SM(bfa_fcport_sm_iocfail
), BFA_PORT_ST_IOCDOWN
},
217 {BFA_SM(bfa_fcport_sm_dport
), BFA_PORT_ST_DPORT
},
218 {BFA_SM(bfa_fcport_sm_ddport
), BFA_PORT_ST_DDPORT
},
219 {BFA_SM(bfa_fcport_sm_faa_misconfig
), BFA_PORT_ST_FAA_MISCONFIG
},
224 * forward declaration for RPORT related functions
226 static struct bfa_rport_s
*bfa_rport_alloc(struct bfa_rport_mod_s
*rp_mod
);
227 static void bfa_rport_free(struct bfa_rport_s
*rport
);
228 static bfa_boolean_t
bfa_rport_send_fwcreate(struct bfa_rport_s
*rp
);
229 static bfa_boolean_t
bfa_rport_send_fwdelete(struct bfa_rport_s
*rp
);
230 static bfa_boolean_t
bfa_rport_send_fwspeed(struct bfa_rport_s
*rp
);
231 static void __bfa_cb_rport_online(void *cbarg
,
232 bfa_boolean_t complete
);
233 static void __bfa_cb_rport_offline(void *cbarg
,
234 bfa_boolean_t complete
);
237 * forward declaration for RPORT state machine
239 static void bfa_rport_sm_uninit(struct bfa_rport_s
*rp
,
240 enum bfa_rport_event event
);
241 static void bfa_rport_sm_created(struct bfa_rport_s
*rp
,
242 enum bfa_rport_event event
);
243 static void bfa_rport_sm_fwcreate(struct bfa_rport_s
*rp
,
244 enum bfa_rport_event event
);
245 static void bfa_rport_sm_online(struct bfa_rport_s
*rp
,
246 enum bfa_rport_event event
);
247 static void bfa_rport_sm_fwdelete(struct bfa_rport_s
*rp
,
248 enum bfa_rport_event event
);
249 static void bfa_rport_sm_offline(struct bfa_rport_s
*rp
,
250 enum bfa_rport_event event
);
251 static void bfa_rport_sm_deleting(struct bfa_rport_s
*rp
,
252 enum bfa_rport_event event
);
253 static void bfa_rport_sm_offline_pending(struct bfa_rport_s
*rp
,
254 enum bfa_rport_event event
);
255 static void bfa_rport_sm_delete_pending(struct bfa_rport_s
*rp
,
256 enum bfa_rport_event event
);
257 static void bfa_rport_sm_iocdisable(struct bfa_rport_s
*rp
,
258 enum bfa_rport_event event
);
259 static void bfa_rport_sm_fwcreate_qfull(struct bfa_rport_s
*rp
,
260 enum bfa_rport_event event
);
261 static void bfa_rport_sm_fwdelete_qfull(struct bfa_rport_s
*rp
,
262 enum bfa_rport_event event
);
263 static void bfa_rport_sm_deleting_qfull(struct bfa_rport_s
*rp
,
264 enum bfa_rport_event event
);
267 * PLOG related definitions
270 plkd_validate_logrec(struct bfa_plog_rec_s
*pl_rec
)
272 if ((pl_rec
->log_type
!= BFA_PL_LOG_TYPE_INT
) &&
273 (pl_rec
->log_type
!= BFA_PL_LOG_TYPE_STRING
))
276 if ((pl_rec
->log_type
!= BFA_PL_LOG_TYPE_INT
) &&
277 (pl_rec
->log_num_ints
> BFA_PL_INT_LOG_SZ
))
284 bfa_plog_add(struct bfa_plog_s
*plog
, struct bfa_plog_rec_s
*pl_rec
)
287 struct bfa_plog_rec_s
*pl_recp
;
289 if (plog
->plog_enabled
== 0)
292 if (plkd_validate_logrec(pl_rec
)) {
299 pl_recp
= &(plog
->plog_recs
[tail
]);
301 memcpy(pl_recp
, pl_rec
, sizeof(struct bfa_plog_rec_s
));
303 pl_recp
->tv
= ktime_get_real_seconds();
304 BFA_PL_LOG_REC_INCR(plog
->tail
);
306 if (plog
->head
== plog
->tail
)
307 BFA_PL_LOG_REC_INCR(plog
->head
);
311 bfa_plog_init(struct bfa_plog_s
*plog
)
313 memset((char *)plog
, 0, sizeof(struct bfa_plog_s
));
315 memcpy(plog
->plog_sig
, BFA_PL_SIG_STR
, BFA_PL_SIG_LEN
);
316 plog
->head
= plog
->tail
= 0;
317 plog
->plog_enabled
= 1;
321 bfa_plog_str(struct bfa_plog_s
*plog
, enum bfa_plog_mid mid
,
322 enum bfa_plog_eid event
,
323 u16 misc
, char *log_str
)
325 struct bfa_plog_rec_s lp
;
327 if (plog
->plog_enabled
) {
328 memset(&lp
, 0, sizeof(struct bfa_plog_rec_s
));
331 lp
.log_type
= BFA_PL_LOG_TYPE_STRING
;
333 strlcpy(lp
.log_entry
.string_log
, log_str
,
334 BFA_PL_STRING_LOG_SZ
);
335 lp
.log_entry
.string_log
[BFA_PL_STRING_LOG_SZ
- 1] = '\0';
336 bfa_plog_add(plog
, &lp
);
341 bfa_plog_intarr(struct bfa_plog_s
*plog
, enum bfa_plog_mid mid
,
342 enum bfa_plog_eid event
,
343 u16 misc
, u32
*intarr
, u32 num_ints
)
345 struct bfa_plog_rec_s lp
;
348 if (num_ints
> BFA_PL_INT_LOG_SZ
)
349 num_ints
= BFA_PL_INT_LOG_SZ
;
351 if (plog
->plog_enabled
) {
352 memset(&lp
, 0, sizeof(struct bfa_plog_rec_s
));
355 lp
.log_type
= BFA_PL_LOG_TYPE_INT
;
358 for (i
= 0; i
< num_ints
; i
++)
359 lp
.log_entry
.int_log
[i
] = intarr
[i
];
361 lp
.log_num_ints
= (u8
) num_ints
;
363 bfa_plog_add(plog
, &lp
);
368 bfa_plog_fchdr(struct bfa_plog_s
*plog
, enum bfa_plog_mid mid
,
369 enum bfa_plog_eid event
,
370 u16 misc
, struct fchs_s
*fchdr
)
372 struct bfa_plog_rec_s lp
;
373 u32
*tmp_int
= (u32
*) fchdr
;
374 u32 ints
[BFA_PL_INT_LOG_SZ
];
376 if (plog
->plog_enabled
) {
377 memset(&lp
, 0, sizeof(struct bfa_plog_rec_s
));
379 ints
[0] = tmp_int
[0];
380 ints
[1] = tmp_int
[1];
381 ints
[2] = tmp_int
[4];
383 bfa_plog_intarr(plog
, mid
, event
, misc
, ints
, 3);
388 bfa_plog_fchdr_and_pl(struct bfa_plog_s
*plog
, enum bfa_plog_mid mid
,
389 enum bfa_plog_eid event
, u16 misc
, struct fchs_s
*fchdr
,
392 struct bfa_plog_rec_s lp
;
393 u32
*tmp_int
= (u32
*) fchdr
;
394 u32 ints
[BFA_PL_INT_LOG_SZ
];
396 if (plog
->plog_enabled
) {
397 memset(&lp
, 0, sizeof(struct bfa_plog_rec_s
));
399 ints
[0] = tmp_int
[0];
400 ints
[1] = tmp_int
[1];
401 ints
[2] = tmp_int
[4];
404 bfa_plog_intarr(plog
, mid
, event
, misc
, ints
, 4);
410 * fcxp_pvt BFA FCXP private functions
414 claim_fcxps_mem(struct bfa_fcxp_mod_s
*mod
)
417 struct bfa_fcxp_s
*fcxp
;
419 fcxp
= (struct bfa_fcxp_s
*) bfa_mem_kva_curp(mod
);
420 memset(fcxp
, 0, sizeof(struct bfa_fcxp_s
) * mod
->num_fcxps
);
422 INIT_LIST_HEAD(&mod
->fcxp_req_free_q
);
423 INIT_LIST_HEAD(&mod
->fcxp_rsp_free_q
);
424 INIT_LIST_HEAD(&mod
->fcxp_active_q
);
425 INIT_LIST_HEAD(&mod
->fcxp_req_unused_q
);
426 INIT_LIST_HEAD(&mod
->fcxp_rsp_unused_q
);
428 mod
->fcxp_list
= fcxp
;
430 for (i
= 0; i
< mod
->num_fcxps
; i
++) {
431 fcxp
->fcxp_mod
= mod
;
434 if (i
< (mod
->num_fcxps
/ 2)) {
435 list_add_tail(&fcxp
->qe
, &mod
->fcxp_req_free_q
);
436 fcxp
->req_rsp
= BFA_TRUE
;
438 list_add_tail(&fcxp
->qe
, &mod
->fcxp_rsp_free_q
);
439 fcxp
->req_rsp
= BFA_FALSE
;
442 bfa_reqq_winit(&fcxp
->reqq_wqe
, bfa_fcxp_qresume
, fcxp
);
443 fcxp
->reqq_waiting
= BFA_FALSE
;
448 bfa_mem_kva_curp(mod
) = (void *)fcxp
;
452 bfa_fcxp_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*minfo
,
455 struct bfa_fcxp_mod_s
*fcxp_mod
= BFA_FCXP_MOD(bfa
);
456 struct bfa_mem_kva_s
*fcxp_kva
= BFA_MEM_FCXP_KVA(bfa
);
457 struct bfa_mem_dma_s
*seg_ptr
;
458 u16 nsegs
, idx
, per_seg_fcxp
;
459 u16 num_fcxps
= cfg
->fwcfg
.num_fcxp_reqs
;
465 if (cfg
->drvcfg
.min_cfg
)
466 per_fcxp_sz
= 2 * BFA_FCXP_MAX_IBUF_SZ
;
468 per_fcxp_sz
= BFA_FCXP_MAX_IBUF_SZ
+ BFA_FCXP_MAX_LBUF_SZ
;
471 nsegs
= BFI_MEM_DMA_NSEGS(num_fcxps
, per_fcxp_sz
);
472 per_seg_fcxp
= BFI_MEM_NREQS_SEG(per_fcxp_sz
);
474 bfa_mem_dma_seg_iter(fcxp_mod
, seg_ptr
, nsegs
, idx
) {
475 if (num_fcxps
>= per_seg_fcxp
) {
476 num_fcxps
-= per_seg_fcxp
;
477 bfa_mem_dma_setup(minfo
, seg_ptr
,
478 per_seg_fcxp
* per_fcxp_sz
);
480 bfa_mem_dma_setup(minfo
, seg_ptr
,
481 num_fcxps
* per_fcxp_sz
);
485 bfa_mem_kva_setup(minfo
, fcxp_kva
,
486 cfg
->fwcfg
.num_fcxp_reqs
* sizeof(struct bfa_fcxp_s
));
490 bfa_fcxp_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
491 struct bfa_pcidev_s
*pcidev
)
493 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
496 mod
->num_fcxps
= cfg
->fwcfg
.num_fcxp_reqs
;
499 * Initialize FCXP request and response payload sizes.
501 mod
->req_pld_sz
= mod
->rsp_pld_sz
= BFA_FCXP_MAX_IBUF_SZ
;
502 if (!cfg
->drvcfg
.min_cfg
)
503 mod
->rsp_pld_sz
= BFA_FCXP_MAX_LBUF_SZ
;
505 INIT_LIST_HEAD(&mod
->req_wait_q
);
506 INIT_LIST_HEAD(&mod
->rsp_wait_q
);
508 claim_fcxps_mem(mod
);
512 bfa_fcxp_iocdisable(struct bfa_s
*bfa
)
514 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
515 struct bfa_fcxp_s
*fcxp
;
516 struct list_head
*qe
, *qen
;
518 /* Enqueue unused fcxp resources to free_q */
519 list_splice_tail_init(&mod
->fcxp_req_unused_q
, &mod
->fcxp_req_free_q
);
520 list_splice_tail_init(&mod
->fcxp_rsp_unused_q
, &mod
->fcxp_rsp_free_q
);
522 list_for_each_safe(qe
, qen
, &mod
->fcxp_active_q
) {
523 fcxp
= (struct bfa_fcxp_s
*) qe
;
524 if (fcxp
->caller
== NULL
) {
525 fcxp
->send_cbfn(fcxp
->caller
, fcxp
, fcxp
->send_cbarg
,
526 BFA_STATUS_IOC_FAILURE
, 0, 0, NULL
);
529 fcxp
->rsp_status
= BFA_STATUS_IOC_FAILURE
;
530 bfa_cb_queue(bfa
, &fcxp
->hcb_qe
,
531 __bfa_fcxp_send_cbfn
, fcxp
);
536 static struct bfa_fcxp_s
*
537 bfa_fcxp_get(struct bfa_fcxp_mod_s
*fm
, bfa_boolean_t req
)
539 struct bfa_fcxp_s
*fcxp
;
542 bfa_q_deq(&fm
->fcxp_req_free_q
, &fcxp
);
544 bfa_q_deq(&fm
->fcxp_rsp_free_q
, &fcxp
);
547 list_add_tail(&fcxp
->qe
, &fm
->fcxp_active_q
);
553 bfa_fcxp_init_reqrsp(struct bfa_fcxp_s
*fcxp
,
557 bfa_fcxp_get_sgaddr_t
*r_sga_cbfn
,
558 bfa_fcxp_get_sglen_t
*r_sglen_cbfn
,
559 struct list_head
*r_sgpg_q
,
561 bfa_fcxp_get_sgaddr_t sga_cbfn
,
562 bfa_fcxp_get_sglen_t sglen_cbfn
)
565 WARN_ON(bfa
== NULL
);
567 bfa_trc(bfa
, fcxp
->fcxp_tag
);
572 WARN_ON(*sga_cbfn
== NULL
);
573 WARN_ON(*sglen_cbfn
== NULL
);
576 *r_sga_cbfn
= sga_cbfn
;
577 *r_sglen_cbfn
= sglen_cbfn
;
582 * alloc required sgpgs
584 if (n_sgles
> BFI_SGE_INLINE
)
591 bfa_fcxp_init(struct bfa_fcxp_s
*fcxp
,
592 void *caller
, struct bfa_s
*bfa
, int nreq_sgles
,
593 int nrsp_sgles
, bfa_fcxp_get_sgaddr_t req_sga_cbfn
,
594 bfa_fcxp_get_sglen_t req_sglen_cbfn
,
595 bfa_fcxp_get_sgaddr_t rsp_sga_cbfn
,
596 bfa_fcxp_get_sglen_t rsp_sglen_cbfn
)
599 WARN_ON(bfa
== NULL
);
601 bfa_trc(bfa
, fcxp
->fcxp_tag
);
603 fcxp
->caller
= caller
;
605 bfa_fcxp_init_reqrsp(fcxp
, bfa
,
606 &fcxp
->use_ireqbuf
, &fcxp
->nreq_sgles
, &fcxp
->req_sga_cbfn
,
607 &fcxp
->req_sglen_cbfn
, &fcxp
->req_sgpg_q
,
608 nreq_sgles
, req_sga_cbfn
, req_sglen_cbfn
);
610 bfa_fcxp_init_reqrsp(fcxp
, bfa
,
611 &fcxp
->use_irspbuf
, &fcxp
->nrsp_sgles
, &fcxp
->rsp_sga_cbfn
,
612 &fcxp
->rsp_sglen_cbfn
, &fcxp
->rsp_sgpg_q
,
613 nrsp_sgles
, rsp_sga_cbfn
, rsp_sglen_cbfn
);
618 bfa_fcxp_put(struct bfa_fcxp_s
*fcxp
)
620 struct bfa_fcxp_mod_s
*mod
= fcxp
->fcxp_mod
;
621 struct bfa_fcxp_wqe_s
*wqe
;
624 bfa_q_deq(&mod
->req_wait_q
, &wqe
);
626 bfa_q_deq(&mod
->rsp_wait_q
, &wqe
);
629 bfa_trc(mod
->bfa
, fcxp
->fcxp_tag
);
631 bfa_fcxp_init(fcxp
, wqe
->caller
, wqe
->bfa
, wqe
->nreq_sgles
,
632 wqe
->nrsp_sgles
, wqe
->req_sga_cbfn
,
633 wqe
->req_sglen_cbfn
, wqe
->rsp_sga_cbfn
,
634 wqe
->rsp_sglen_cbfn
);
636 wqe
->alloc_cbfn(wqe
->alloc_cbarg
, fcxp
);
640 WARN_ON(!bfa_q_is_on_q(&mod
->fcxp_active_q
, fcxp
));
644 list_add_tail(&fcxp
->qe
, &mod
->fcxp_req_free_q
);
646 list_add_tail(&fcxp
->qe
, &mod
->fcxp_rsp_free_q
);
650 bfa_fcxp_null_comp(void *bfad_fcxp
, struct bfa_fcxp_s
*fcxp
, void *cbarg
,
651 bfa_status_t req_status
, u32 rsp_len
,
652 u32 resid_len
, struct fchs_s
*rsp_fchs
)
654 /* discarded fcxp completion */
658 __bfa_fcxp_send_cbfn(void *cbarg
, bfa_boolean_t complete
)
660 struct bfa_fcxp_s
*fcxp
= cbarg
;
663 fcxp
->send_cbfn(fcxp
->caller
, fcxp
, fcxp
->send_cbarg
,
664 fcxp
->rsp_status
, fcxp
->rsp_len
,
665 fcxp
->residue_len
, &fcxp
->rsp_fchs
);
672 hal_fcxp_send_comp(struct bfa_s
*bfa
, struct bfi_fcxp_send_rsp_s
*fcxp_rsp
)
674 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
675 struct bfa_fcxp_s
*fcxp
;
676 u16 fcxp_tag
= be16_to_cpu(fcxp_rsp
->fcxp_tag
);
678 bfa_trc(bfa
, fcxp_tag
);
680 fcxp_rsp
->rsp_len
= be32_to_cpu(fcxp_rsp
->rsp_len
);
683 * @todo f/w should not set residue to non-0 when everything
686 if (fcxp_rsp
->req_status
== BFA_STATUS_OK
)
687 fcxp_rsp
->residue_len
= 0;
689 fcxp_rsp
->residue_len
= be32_to_cpu(fcxp_rsp
->residue_len
);
691 fcxp
= BFA_FCXP_FROM_TAG(mod
, fcxp_tag
);
693 WARN_ON(fcxp
->send_cbfn
== NULL
);
695 hal_fcxp_rx_plog(mod
->bfa
, fcxp
, fcxp_rsp
);
697 if (fcxp
->send_cbfn
!= NULL
) {
698 bfa_trc(mod
->bfa
, (NULL
== fcxp
->caller
));
699 if (fcxp
->caller
== NULL
) {
700 fcxp
->send_cbfn(fcxp
->caller
, fcxp
, fcxp
->send_cbarg
,
701 fcxp_rsp
->req_status
, fcxp_rsp
->rsp_len
,
702 fcxp_rsp
->residue_len
, &fcxp_rsp
->fchs
);
704 * fcxp automatically freed on return from the callback
708 fcxp
->rsp_status
= fcxp_rsp
->req_status
;
709 fcxp
->rsp_len
= fcxp_rsp
->rsp_len
;
710 fcxp
->residue_len
= fcxp_rsp
->residue_len
;
711 fcxp
->rsp_fchs
= fcxp_rsp
->fchs
;
713 bfa_cb_queue(bfa
, &fcxp
->hcb_qe
,
714 __bfa_fcxp_send_cbfn
, fcxp
);
717 bfa_trc(bfa
, (NULL
== fcxp
->send_cbfn
));
722 hal_fcxp_tx_plog(struct bfa_s
*bfa
, u32 reqlen
, struct bfa_fcxp_s
*fcxp
,
729 if (fcxp
->use_ireqbuf
) {
731 *((u32
*) BFA_FCXP_REQ_PLD(fcxp
));
733 bfa_plog_fchdr_and_pl(bfa
->plog
, BFA_PL_MID_HAL_FCXP
,
735 reqlen
+ sizeof(struct fchs_s
), fchs
,
738 bfa_plog_fchdr(bfa
->plog
, BFA_PL_MID_HAL_FCXP
,
740 reqlen
+ sizeof(struct fchs_s
),
744 bfa_plog_fchdr(bfa
->plog
, BFA_PL_MID_HAL_FCXP
, BFA_PL_EID_TX
,
745 reqlen
+ sizeof(struct fchs_s
), fchs
);
750 hal_fcxp_rx_plog(struct bfa_s
*bfa
, struct bfa_fcxp_s
*fcxp
,
751 struct bfi_fcxp_send_rsp_s
*fcxp_rsp
)
753 if (fcxp_rsp
->rsp_len
> 0) {
754 if (fcxp
->use_irspbuf
) {
756 *((u32
*) BFA_FCXP_RSP_PLD(fcxp
));
758 bfa_plog_fchdr_and_pl(bfa
->plog
, BFA_PL_MID_HAL_FCXP
,
760 (u16
) fcxp_rsp
->rsp_len
,
761 &fcxp_rsp
->fchs
, pld_w0
);
763 bfa_plog_fchdr(bfa
->plog
, BFA_PL_MID_HAL_FCXP
,
765 (u16
) fcxp_rsp
->rsp_len
,
769 bfa_plog_fchdr(bfa
->plog
, BFA_PL_MID_HAL_FCXP
, BFA_PL_EID_RX
,
770 (u16
) fcxp_rsp
->rsp_len
, &fcxp_rsp
->fchs
);
775 * Handler to resume sending fcxp when space in available in cpe queue.
778 bfa_fcxp_qresume(void *cbarg
)
780 struct bfa_fcxp_s
*fcxp
= cbarg
;
781 struct bfa_s
*bfa
= fcxp
->fcxp_mod
->bfa
;
782 struct bfi_fcxp_send_req_s
*send_req
;
784 fcxp
->reqq_waiting
= BFA_FALSE
;
785 send_req
= bfa_reqq_next(bfa
, BFA_REQQ_FCXP
);
786 bfa_fcxp_queue(fcxp
, send_req
);
790 * Queue fcxp send request to foimrware.
793 bfa_fcxp_queue(struct bfa_fcxp_s
*fcxp
, struct bfi_fcxp_send_req_s
*send_req
)
795 struct bfa_s
*bfa
= fcxp
->fcxp_mod
->bfa
;
796 struct bfa_fcxp_req_info_s
*reqi
= &fcxp
->req_info
;
797 struct bfa_fcxp_rsp_info_s
*rspi
= &fcxp
->rsp_info
;
798 struct bfa_rport_s
*rport
= reqi
->bfa_rport
;
800 bfi_h2i_set(send_req
->mh
, BFI_MC_FCXP
, BFI_FCXP_H2I_SEND_REQ
,
803 send_req
->fcxp_tag
= cpu_to_be16(fcxp
->fcxp_tag
);
805 send_req
->rport_fw_hndl
= rport
->fw_handle
;
806 send_req
->max_frmsz
= cpu_to_be16(rport
->rport_info
.max_frmsz
);
807 if (send_req
->max_frmsz
== 0)
808 send_req
->max_frmsz
= cpu_to_be16(FC_MAX_PDUSZ
);
810 send_req
->rport_fw_hndl
= 0;
811 send_req
->max_frmsz
= cpu_to_be16(FC_MAX_PDUSZ
);
814 send_req
->vf_id
= cpu_to_be16(reqi
->vf_id
);
815 send_req
->lp_fwtag
= bfa_lps_get_fwtag(bfa
, reqi
->lp_tag
);
816 send_req
->class = reqi
->class;
817 send_req
->rsp_timeout
= rspi
->rsp_timeout
;
818 send_req
->cts
= reqi
->cts
;
819 send_req
->fchs
= reqi
->fchs
;
821 send_req
->req_len
= cpu_to_be32(reqi
->req_tot_len
);
822 send_req
->rsp_maxlen
= cpu_to_be32(rspi
->rsp_maxlen
);
827 if (fcxp
->use_ireqbuf
== 1) {
828 bfa_alen_set(&send_req
->req_alen
, reqi
->req_tot_len
,
829 BFA_FCXP_REQ_PLD_PA(fcxp
));
831 if (fcxp
->nreq_sgles
> 0) {
832 WARN_ON(fcxp
->nreq_sgles
!= 1);
833 bfa_alen_set(&send_req
->req_alen
, reqi
->req_tot_len
,
834 fcxp
->req_sga_cbfn(fcxp
->caller
, 0));
836 WARN_ON(reqi
->req_tot_len
!= 0);
837 bfa_alen_set(&send_req
->rsp_alen
, 0, 0);
844 if (fcxp
->use_irspbuf
== 1) {
845 WARN_ON(rspi
->rsp_maxlen
> BFA_FCXP_MAX_LBUF_SZ
);
847 bfa_alen_set(&send_req
->rsp_alen
, rspi
->rsp_maxlen
,
848 BFA_FCXP_RSP_PLD_PA(fcxp
));
850 if (fcxp
->nrsp_sgles
> 0) {
851 WARN_ON(fcxp
->nrsp_sgles
!= 1);
852 bfa_alen_set(&send_req
->rsp_alen
, rspi
->rsp_maxlen
,
853 fcxp
->rsp_sga_cbfn(fcxp
->caller
, 0));
856 WARN_ON(rspi
->rsp_maxlen
!= 0);
857 bfa_alen_set(&send_req
->rsp_alen
, 0, 0);
861 hal_fcxp_tx_plog(bfa
, reqi
->req_tot_len
, fcxp
, &reqi
->fchs
);
863 bfa_reqq_produce(bfa
, BFA_REQQ_FCXP
, send_req
->mh
);
865 bfa_trc(bfa
, bfa_reqq_pi(bfa
, BFA_REQQ_FCXP
));
866 bfa_trc(bfa
, bfa_reqq_ci(bfa
, BFA_REQQ_FCXP
));
870 * Allocate an FCXP instance to send a response or to send a request
871 * that has a response. Request/response buffers are allocated by caller.
873 * @param[in] bfa BFA bfa instance
874 * @param[in] nreq_sgles Number of SG elements required for request
875 * buffer. 0, if fcxp internal buffers are used.
876 * Use bfa_fcxp_get_reqbuf() to get the
877 * internal req buffer.
878 * @param[in] req_sgles SG elements describing request buffer. Will be
879 * copied in by BFA and hence can be freed on
880 * return from this function.
881 * @param[in] get_req_sga function ptr to be called to get a request SG
882 * Address (given the sge index).
883 * @param[in] get_req_sglen function ptr to be called to get a request SG
884 * len (given the sge index).
885 * @param[in] get_rsp_sga function ptr to be called to get a response SG
886 * Address (given the sge index).
887 * @param[in] get_rsp_sglen function ptr to be called to get a response SG
888 * len (given the sge index).
889 * @param[in] req Allocated FCXP is used to send req or rsp?
890 * request - BFA_TRUE, response - BFA_FALSE
892 * @return FCXP instance. NULL on failure.
895 bfa_fcxp_req_rsp_alloc(void *caller
, struct bfa_s
*bfa
, int nreq_sgles
,
896 int nrsp_sgles
, bfa_fcxp_get_sgaddr_t req_sga_cbfn
,
897 bfa_fcxp_get_sglen_t req_sglen_cbfn
,
898 bfa_fcxp_get_sgaddr_t rsp_sga_cbfn
,
899 bfa_fcxp_get_sglen_t rsp_sglen_cbfn
, bfa_boolean_t req
)
901 struct bfa_fcxp_s
*fcxp
= NULL
;
903 WARN_ON(bfa
== NULL
);
905 fcxp
= bfa_fcxp_get(BFA_FCXP_MOD(bfa
), req
);
909 bfa_trc(bfa
, fcxp
->fcxp_tag
);
911 bfa_fcxp_init(fcxp
, caller
, bfa
, nreq_sgles
, nrsp_sgles
, req_sga_cbfn
,
912 req_sglen_cbfn
, rsp_sga_cbfn
, rsp_sglen_cbfn
);
918 * Get the internal request buffer pointer
920 * @param[in] fcxp BFA fcxp pointer
922 * @return pointer to the internal request buffer
925 bfa_fcxp_get_reqbuf(struct bfa_fcxp_s
*fcxp
)
927 struct bfa_fcxp_mod_s
*mod
= fcxp
->fcxp_mod
;
930 WARN_ON(fcxp
->use_ireqbuf
!= 1);
931 reqbuf
= bfa_mem_get_dmabuf_kva(mod
, fcxp
->fcxp_tag
,
932 mod
->req_pld_sz
+ mod
->rsp_pld_sz
);
937 bfa_fcxp_get_reqbufsz(struct bfa_fcxp_s
*fcxp
)
939 struct bfa_fcxp_mod_s
*mod
= fcxp
->fcxp_mod
;
941 return mod
->req_pld_sz
;
945 * Get the internal response buffer pointer
947 * @param[in] fcxp BFA fcxp pointer
949 * @return pointer to the internal request buffer
952 bfa_fcxp_get_rspbuf(struct bfa_fcxp_s
*fcxp
)
954 struct bfa_fcxp_mod_s
*mod
= fcxp
->fcxp_mod
;
957 WARN_ON(fcxp
->use_irspbuf
!= 1);
959 fcxp_buf
= bfa_mem_get_dmabuf_kva(mod
, fcxp
->fcxp_tag
,
960 mod
->req_pld_sz
+ mod
->rsp_pld_sz
);
962 /* fcxp_buf = req_buf + rsp_buf :- add req_buf_sz to get to rsp_buf */
963 return ((u8
*) fcxp_buf
) + mod
->req_pld_sz
;
969 * @param[in] fcxp BFA fcxp pointer
974 bfa_fcxp_free(struct bfa_fcxp_s
*fcxp
)
976 struct bfa_fcxp_mod_s
*mod
= fcxp
->fcxp_mod
;
978 WARN_ON(fcxp
== NULL
);
979 bfa_trc(mod
->bfa
, fcxp
->fcxp_tag
);
984 * Send a FCXP request
986 * @param[in] fcxp BFA fcxp pointer
987 * @param[in] rport BFA rport pointer. Could be left NULL for WKA rports
988 * @param[in] vf_id virtual Fabric ID
989 * @param[in] lp_tag lport tag
990 * @param[in] cts use Continuous sequence
991 * @param[in] cos fc Class of Service
992 * @param[in] reqlen request length, does not include FCHS length
993 * @param[in] fchs fc Header Pointer. The header content will be copied
996 * @param[in] cbfn call back function to be called on receiving
998 * @param[in] cbarg arg for cbfn
999 * @param[in] rsp_timeout
1002 * @return bfa_status_t
1005 bfa_fcxp_send(struct bfa_fcxp_s
*fcxp
, struct bfa_rport_s
*rport
,
1006 u16 vf_id
, u8 lp_tag
, bfa_boolean_t cts
, enum fc_cos cos
,
1007 u32 reqlen
, struct fchs_s
*fchs
, bfa_cb_fcxp_send_t cbfn
,
1008 void *cbarg
, u32 rsp_maxlen
, u8 rsp_timeout
)
1010 struct bfa_s
*bfa
= fcxp
->fcxp_mod
->bfa
;
1011 struct bfa_fcxp_req_info_s
*reqi
= &fcxp
->req_info
;
1012 struct bfa_fcxp_rsp_info_s
*rspi
= &fcxp
->rsp_info
;
1013 struct bfi_fcxp_send_req_s
*send_req
;
1015 bfa_trc(bfa
, fcxp
->fcxp_tag
);
1018 * setup request/response info
1020 reqi
->bfa_rport
= rport
;
1021 reqi
->vf_id
= vf_id
;
1022 reqi
->lp_tag
= lp_tag
;
1024 rspi
->rsp_timeout
= rsp_timeout
;
1027 reqi
->req_tot_len
= reqlen
;
1028 rspi
->rsp_maxlen
= rsp_maxlen
;
1029 fcxp
->send_cbfn
= cbfn
? cbfn
: bfa_fcxp_null_comp
;
1030 fcxp
->send_cbarg
= cbarg
;
1033 * If no room in CPE queue, wait for space in request queue
1035 send_req
= bfa_reqq_next(bfa
, BFA_REQQ_FCXP
);
1037 bfa_trc(bfa
, fcxp
->fcxp_tag
);
1038 fcxp
->reqq_waiting
= BFA_TRUE
;
1039 bfa_reqq_wait(bfa
, BFA_REQQ_FCXP
, &fcxp
->reqq_wqe
);
1043 bfa_fcxp_queue(fcxp
, send_req
);
1049 * @param[in] fcxp BFA fcxp pointer
1054 bfa_fcxp_abort(struct bfa_fcxp_s
*fcxp
)
1056 bfa_trc(fcxp
->fcxp_mod
->bfa
, fcxp
->fcxp_tag
);
1058 return BFA_STATUS_OK
;
1062 bfa_fcxp_req_rsp_alloc_wait(struct bfa_s
*bfa
, struct bfa_fcxp_wqe_s
*wqe
,
1063 bfa_fcxp_alloc_cbfn_t alloc_cbfn
, void *alloc_cbarg
,
1064 void *caller
, int nreq_sgles
,
1065 int nrsp_sgles
, bfa_fcxp_get_sgaddr_t req_sga_cbfn
,
1066 bfa_fcxp_get_sglen_t req_sglen_cbfn
,
1067 bfa_fcxp_get_sgaddr_t rsp_sga_cbfn
,
1068 bfa_fcxp_get_sglen_t rsp_sglen_cbfn
, bfa_boolean_t req
)
1070 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
1073 WARN_ON(!list_empty(&mod
->fcxp_req_free_q
));
1075 WARN_ON(!list_empty(&mod
->fcxp_rsp_free_q
));
1077 wqe
->alloc_cbfn
= alloc_cbfn
;
1078 wqe
->alloc_cbarg
= alloc_cbarg
;
1079 wqe
->caller
= caller
;
1081 wqe
->nreq_sgles
= nreq_sgles
;
1082 wqe
->nrsp_sgles
= nrsp_sgles
;
1083 wqe
->req_sga_cbfn
= req_sga_cbfn
;
1084 wqe
->req_sglen_cbfn
= req_sglen_cbfn
;
1085 wqe
->rsp_sga_cbfn
= rsp_sga_cbfn
;
1086 wqe
->rsp_sglen_cbfn
= rsp_sglen_cbfn
;
1089 list_add_tail(&wqe
->qe
, &mod
->req_wait_q
);
1091 list_add_tail(&wqe
->qe
, &mod
->rsp_wait_q
);
1095 bfa_fcxp_walloc_cancel(struct bfa_s
*bfa
, struct bfa_fcxp_wqe_s
*wqe
)
1097 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
1099 WARN_ON(!bfa_q_is_on_q(&mod
->req_wait_q
, wqe
) ||
1100 !bfa_q_is_on_q(&mod
->rsp_wait_q
, wqe
));
1105 bfa_fcxp_discard(struct bfa_fcxp_s
*fcxp
)
1108 * If waiting for room in request queue, cancel reqq wait
1111 if (fcxp
->reqq_waiting
) {
1112 fcxp
->reqq_waiting
= BFA_FALSE
;
1113 bfa_reqq_wcancel(&fcxp
->reqq_wqe
);
1114 bfa_fcxp_free(fcxp
);
1118 fcxp
->send_cbfn
= bfa_fcxp_null_comp
;
1122 bfa_fcxp_isr(struct bfa_s
*bfa
, struct bfi_msg_s
*msg
)
1124 switch (msg
->mhdr
.msg_id
) {
1125 case BFI_FCXP_I2H_SEND_RSP
:
1126 hal_fcxp_send_comp(bfa
, (struct bfi_fcxp_send_rsp_s
*) msg
);
1130 bfa_trc(bfa
, msg
->mhdr
.msg_id
);
1136 bfa_fcxp_get_maxrsp(struct bfa_s
*bfa
)
1138 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
1140 return mod
->rsp_pld_sz
;
1144 bfa_fcxp_res_recfg(struct bfa_s
*bfa
, u16 num_fcxp_fw
)
1146 struct bfa_fcxp_mod_s
*mod
= BFA_FCXP_MOD(bfa
);
1147 struct list_head
*qe
;
1150 for (i
= 0; i
< (mod
->num_fcxps
- num_fcxp_fw
); i
++) {
1151 if (i
< ((mod
->num_fcxps
- num_fcxp_fw
) / 2)) {
1152 bfa_q_deq_tail(&mod
->fcxp_req_free_q
, &qe
);
1153 list_add_tail(qe
, &mod
->fcxp_req_unused_q
);
1155 bfa_q_deq_tail(&mod
->fcxp_rsp_free_q
, &qe
);
1156 list_add_tail(qe
, &mod
->fcxp_rsp_unused_q
);
1162 * BFA LPS state machine functions
1166 * Init state -- no login
1169 bfa_lps_sm_init(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1171 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1172 bfa_trc(lps
->bfa
, event
);
1175 case BFA_LPS_SM_LOGIN
:
1176 if (bfa_reqq_full(lps
->bfa
, lps
->reqq
)) {
1177 bfa_sm_set_state(lps
, bfa_lps_sm_loginwait
);
1178 bfa_reqq_wait(lps
->bfa
, lps
->reqq
, &lps
->wqe
);
1180 bfa_sm_set_state(lps
, bfa_lps_sm_login
);
1181 bfa_lps_send_login(lps
);
1185 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1186 BFA_PL_EID_LOGIN
, 0, "FDISC Request");
1188 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1189 BFA_PL_EID_LOGIN
, 0, "FLOGI Request");
1192 case BFA_LPS_SM_LOGOUT
:
1193 bfa_lps_logout_comp(lps
);
1196 case BFA_LPS_SM_DELETE
:
1200 case BFA_LPS_SM_RX_CVL
:
1201 case BFA_LPS_SM_OFFLINE
:
1204 case BFA_LPS_SM_FWRSP
:
1206 * Could happen when fabric detects loopback and discards
1207 * the lps request. Fw will eventually sent out the timeout
1211 case BFA_LPS_SM_SET_N2N_PID
:
1213 * When topology is set to loop, bfa_lps_set_n2n_pid() sends
1214 * this event. Ignore this event.
1219 bfa_sm_fault(lps
->bfa
, event
);
1224 * login is in progress -- awaiting response from firmware
1227 bfa_lps_sm_login(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1229 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1230 bfa_trc(lps
->bfa
, event
);
1233 case BFA_LPS_SM_FWRSP
:
1234 if (lps
->status
== BFA_STATUS_OK
) {
1235 bfa_sm_set_state(lps
, bfa_lps_sm_online
);
1237 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1238 BFA_PL_EID_LOGIN
, 0, "FDISC Accept");
1240 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1241 BFA_PL_EID_LOGIN
, 0, "FLOGI Accept");
1242 /* If N2N, send the assigned PID to FW */
1243 bfa_trc(lps
->bfa
, lps
->fport
);
1244 bfa_trc(lps
->bfa
, lps
->lp_pid
);
1246 if (!lps
->fport
&& lps
->lp_pid
)
1247 bfa_sm_send_event(lps
, BFA_LPS_SM_SET_N2N_PID
);
1249 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1251 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1252 BFA_PL_EID_LOGIN
, 0,
1253 "FDISC Fail (RJT or timeout)");
1255 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1256 BFA_PL_EID_LOGIN
, 0,
1257 "FLOGI Fail (RJT or timeout)");
1259 bfa_lps_login_comp(lps
);
1262 case BFA_LPS_SM_OFFLINE
:
1263 case BFA_LPS_SM_DELETE
:
1264 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1267 case BFA_LPS_SM_SET_N2N_PID
:
1268 bfa_trc(lps
->bfa
, lps
->fport
);
1269 bfa_trc(lps
->bfa
, lps
->lp_pid
);
1273 bfa_sm_fault(lps
->bfa
, event
);
1278 * login pending - awaiting space in request queue
1281 bfa_lps_sm_loginwait(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1283 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1284 bfa_trc(lps
->bfa
, event
);
1287 case BFA_LPS_SM_RESUME
:
1288 bfa_sm_set_state(lps
, bfa_lps_sm_login
);
1289 bfa_lps_send_login(lps
);
1292 case BFA_LPS_SM_OFFLINE
:
1293 case BFA_LPS_SM_DELETE
:
1294 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1295 bfa_reqq_wcancel(&lps
->wqe
);
1298 case BFA_LPS_SM_RX_CVL
:
1300 * Login was not even sent out; so when getting out
1301 * of this state, it will appear like a login retry
1302 * after Clear virtual link
1307 bfa_sm_fault(lps
->bfa
, event
);
1315 bfa_lps_sm_online(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1317 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1318 bfa_trc(lps
->bfa
, event
);
1321 case BFA_LPS_SM_LOGOUT
:
1322 if (bfa_reqq_full(lps
->bfa
, lps
->reqq
)) {
1323 bfa_sm_set_state(lps
, bfa_lps_sm_logowait
);
1324 bfa_reqq_wait(lps
->bfa
, lps
->reqq
, &lps
->wqe
);
1326 bfa_sm_set_state(lps
, bfa_lps_sm_logout
);
1327 bfa_lps_send_logout(lps
);
1329 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1330 BFA_PL_EID_LOGO
, 0, "Logout");
1333 case BFA_LPS_SM_RX_CVL
:
1334 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1336 /* Let the vport module know about this event */
1337 bfa_lps_cvl_event(lps
);
1338 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1339 BFA_PL_EID_FIP_FCF_CVL
, 0, "FCF Clear Virt. Link Rx");
1342 case BFA_LPS_SM_SET_N2N_PID
:
1343 if (bfa_reqq_full(lps
->bfa
, lps
->reqq
)) {
1344 bfa_sm_set_state(lps
, bfa_lps_sm_online_n2n_pid_wait
);
1345 bfa_reqq_wait(lps
->bfa
, lps
->reqq
, &lps
->wqe
);
1347 bfa_lps_send_set_n2n_pid(lps
);
1350 case BFA_LPS_SM_OFFLINE
:
1351 case BFA_LPS_SM_DELETE
:
1352 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1356 bfa_sm_fault(lps
->bfa
, event
);
1364 bfa_lps_sm_online_n2n_pid_wait(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1366 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1367 bfa_trc(lps
->bfa
, event
);
1370 case BFA_LPS_SM_RESUME
:
1371 bfa_sm_set_state(lps
, bfa_lps_sm_online
);
1372 bfa_lps_send_set_n2n_pid(lps
);
1375 case BFA_LPS_SM_LOGOUT
:
1376 bfa_sm_set_state(lps
, bfa_lps_sm_logowait
);
1377 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1378 BFA_PL_EID_LOGO
, 0, "Logout");
1381 case BFA_LPS_SM_RX_CVL
:
1382 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1383 bfa_reqq_wcancel(&lps
->wqe
);
1385 /* Let the vport module know about this event */
1386 bfa_lps_cvl_event(lps
);
1387 bfa_plog_str(lps
->bfa
->plog
, BFA_PL_MID_LPS
,
1388 BFA_PL_EID_FIP_FCF_CVL
, 0, "FCF Clear Virt. Link Rx");
1391 case BFA_LPS_SM_OFFLINE
:
1392 case BFA_LPS_SM_DELETE
:
1393 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1394 bfa_reqq_wcancel(&lps
->wqe
);
1398 bfa_sm_fault(lps
->bfa
, event
);
1403 * logout in progress - awaiting firmware response
1406 bfa_lps_sm_logout(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1408 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1409 bfa_trc(lps
->bfa
, event
);
1412 case BFA_LPS_SM_FWRSP
:
1413 case BFA_LPS_SM_OFFLINE
:
1414 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1415 bfa_lps_logout_comp(lps
);
1418 case BFA_LPS_SM_DELETE
:
1419 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1423 bfa_sm_fault(lps
->bfa
, event
);
1428 * logout pending -- awaiting space in request queue
1431 bfa_lps_sm_logowait(struct bfa_lps_s
*lps
, enum bfa_lps_event event
)
1433 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1434 bfa_trc(lps
->bfa
, event
);
1437 case BFA_LPS_SM_RESUME
:
1438 bfa_sm_set_state(lps
, bfa_lps_sm_logout
);
1439 bfa_lps_send_logout(lps
);
1442 case BFA_LPS_SM_OFFLINE
:
1443 case BFA_LPS_SM_DELETE
:
1444 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1445 bfa_reqq_wcancel(&lps
->wqe
);
1449 bfa_sm_fault(lps
->bfa
, event
);
1456 * lps_pvt BFA LPS private functions
1460 * return memory requirement
1463 bfa_lps_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*minfo
,
1466 struct bfa_mem_kva_s
*lps_kva
= BFA_MEM_LPS_KVA(bfa
);
1468 if (cfg
->drvcfg
.min_cfg
)
1469 bfa_mem_kva_setup(minfo
, lps_kva
,
1470 sizeof(struct bfa_lps_s
) * BFA_LPS_MIN_LPORTS
);
1472 bfa_mem_kva_setup(minfo
, lps_kva
,
1473 sizeof(struct bfa_lps_s
) * BFA_LPS_MAX_LPORTS
);
1477 * bfa module attach at initialization time
1480 bfa_lps_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
1481 struct bfa_pcidev_s
*pcidev
)
1483 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1484 struct bfa_lps_s
*lps
;
1487 mod
->num_lps
= BFA_LPS_MAX_LPORTS
;
1488 if (cfg
->drvcfg
.min_cfg
)
1489 mod
->num_lps
= BFA_LPS_MIN_LPORTS
;
1491 mod
->num_lps
= BFA_LPS_MAX_LPORTS
;
1492 mod
->lps_arr
= lps
= (struct bfa_lps_s
*) bfa_mem_kva_curp(mod
);
1494 bfa_mem_kva_curp(mod
) += mod
->num_lps
* sizeof(struct bfa_lps_s
);
1496 INIT_LIST_HEAD(&mod
->lps_free_q
);
1497 INIT_LIST_HEAD(&mod
->lps_active_q
);
1498 INIT_LIST_HEAD(&mod
->lps_login_q
);
1500 for (i
= 0; i
< mod
->num_lps
; i
++, lps
++) {
1502 lps
->bfa_tag
= (u8
) i
;
1503 lps
->reqq
= BFA_REQQ_LPS
;
1504 bfa_reqq_winit(&lps
->wqe
, bfa_lps_reqq_resume
, lps
);
1505 list_add_tail(&lps
->qe
, &mod
->lps_free_q
);
1510 * IOC in disabled state -- consider all lps offline
1513 bfa_lps_iocdisable(struct bfa_s
*bfa
)
1515 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1516 struct bfa_lps_s
*lps
;
1517 struct list_head
*qe
, *qen
;
1519 list_for_each_safe(qe
, qen
, &mod
->lps_active_q
) {
1520 lps
= (struct bfa_lps_s
*) qe
;
1521 bfa_sm_send_event(lps
, BFA_LPS_SM_OFFLINE
);
1523 list_for_each_safe(qe
, qen
, &mod
->lps_login_q
) {
1524 lps
= (struct bfa_lps_s
*) qe
;
1525 bfa_sm_send_event(lps
, BFA_LPS_SM_OFFLINE
);
1527 list_splice_tail_init(&mod
->lps_login_q
, &mod
->lps_active_q
);
1531 * Firmware login response
1534 bfa_lps_login_rsp(struct bfa_s
*bfa
, struct bfi_lps_login_rsp_s
*rsp
)
1536 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1537 struct bfa_lps_s
*lps
;
1539 WARN_ON(rsp
->bfa_tag
>= mod
->num_lps
);
1540 lps
= BFA_LPS_FROM_TAG(mod
, rsp
->bfa_tag
);
1542 lps
->status
= rsp
->status
;
1543 switch (rsp
->status
) {
1545 lps
->fw_tag
= rsp
->fw_tag
;
1546 lps
->fport
= rsp
->f_port
;
1548 lps
->lp_pid
= rsp
->lp_pid
;
1549 lps
->npiv_en
= rsp
->npiv_en
;
1550 lps
->pr_bbcred
= be16_to_cpu(rsp
->bb_credit
);
1551 lps
->pr_pwwn
= rsp
->port_name
;
1552 lps
->pr_nwwn
= rsp
->node_name
;
1553 lps
->auth_req
= rsp
->auth_req
;
1554 lps
->lp_mac
= rsp
->lp_mac
;
1555 lps
->brcd_switch
= rsp
->brcd_switch
;
1556 lps
->fcf_mac
= rsp
->fcf_mac
;
1560 case BFA_STATUS_FABRIC_RJT
:
1561 lps
->lsrjt_rsn
= rsp
->lsrjt_rsn
;
1562 lps
->lsrjt_expl
= rsp
->lsrjt_expl
;
1566 case BFA_STATUS_EPROTOCOL
:
1567 lps
->ext_status
= rsp
->ext_status
;
1571 case BFA_STATUS_VPORT_MAX
:
1572 if (rsp
->ext_status
)
1573 bfa_lps_no_res(lps
, rsp
->ext_status
);
1577 /* Nothing to do with other status */
1582 list_add_tail(&lps
->qe
, &mod
->lps_active_q
);
1583 bfa_sm_send_event(lps
, BFA_LPS_SM_FWRSP
);
1587 bfa_lps_no_res(struct bfa_lps_s
*first_lps
, u8 count
)
1589 struct bfa_s
*bfa
= first_lps
->bfa
;
1590 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1591 struct list_head
*qe
, *qe_next
;
1592 struct bfa_lps_s
*lps
;
1594 bfa_trc(bfa
, count
);
1596 qe
= bfa_q_next(first_lps
);
1598 while (count
&& qe
) {
1599 qe_next
= bfa_q_next(qe
);
1600 lps
= (struct bfa_lps_s
*)qe
;
1601 bfa_trc(bfa
, lps
->bfa_tag
);
1602 lps
->status
= first_lps
->status
;
1604 list_add_tail(&lps
->qe
, &mod
->lps_active_q
);
1605 bfa_sm_send_event(lps
, BFA_LPS_SM_FWRSP
);
1612 * Firmware logout response
1615 bfa_lps_logout_rsp(struct bfa_s
*bfa
, struct bfi_lps_logout_rsp_s
*rsp
)
1617 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1618 struct bfa_lps_s
*lps
;
1620 WARN_ON(rsp
->bfa_tag
>= mod
->num_lps
);
1621 lps
= BFA_LPS_FROM_TAG(mod
, rsp
->bfa_tag
);
1623 bfa_sm_send_event(lps
, BFA_LPS_SM_FWRSP
);
1627 * Firmware received a Clear virtual link request (for FCoE)
1630 bfa_lps_rx_cvl_event(struct bfa_s
*bfa
, struct bfi_lps_cvl_event_s
*cvl
)
1632 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1633 struct bfa_lps_s
*lps
;
1635 lps
= BFA_LPS_FROM_TAG(mod
, cvl
->bfa_tag
);
1637 bfa_sm_send_event(lps
, BFA_LPS_SM_RX_CVL
);
1641 * Space is available in request queue, resume queueing request to firmware.
1644 bfa_lps_reqq_resume(void *lps_arg
)
1646 struct bfa_lps_s
*lps
= lps_arg
;
1648 bfa_sm_send_event(lps
, BFA_LPS_SM_RESUME
);
1652 * lps is freed -- triggered by vport delete
1655 bfa_lps_free(struct bfa_lps_s
*lps
)
1657 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(lps
->bfa
);
1661 list_add_tail(&lps
->qe
, &mod
->lps_free_q
);
1665 * send login request to firmware
1668 bfa_lps_send_login(struct bfa_lps_s
*lps
)
1670 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(lps
->bfa
);
1671 struct bfi_lps_login_req_s
*m
;
1673 m
= bfa_reqq_next(lps
->bfa
, lps
->reqq
);
1676 bfi_h2i_set(m
->mh
, BFI_MC_LPS
, BFI_LPS_H2I_LOGIN_REQ
,
1677 bfa_fn_lpu(lps
->bfa
));
1679 m
->bfa_tag
= lps
->bfa_tag
;
1680 m
->alpa
= lps
->alpa
;
1681 m
->pdu_size
= cpu_to_be16(lps
->pdusz
);
1682 m
->pwwn
= lps
->pwwn
;
1683 m
->nwwn
= lps
->nwwn
;
1684 m
->fdisc
= lps
->fdisc
;
1685 m
->auth_en
= lps
->auth_en
;
1687 bfa_reqq_produce(lps
->bfa
, lps
->reqq
, m
->mh
);
1689 list_add_tail(&lps
->qe
, &mod
->lps_login_q
);
1693 * send logout request to firmware
1696 bfa_lps_send_logout(struct bfa_lps_s
*lps
)
1698 struct bfi_lps_logout_req_s
*m
;
1700 m
= bfa_reqq_next(lps
->bfa
, lps
->reqq
);
1703 bfi_h2i_set(m
->mh
, BFI_MC_LPS
, BFI_LPS_H2I_LOGOUT_REQ
,
1704 bfa_fn_lpu(lps
->bfa
));
1706 m
->fw_tag
= lps
->fw_tag
;
1707 m
->port_name
= lps
->pwwn
;
1708 bfa_reqq_produce(lps
->bfa
, lps
->reqq
, m
->mh
);
1712 * send n2n pid set request to firmware
1715 bfa_lps_send_set_n2n_pid(struct bfa_lps_s
*lps
)
1717 struct bfi_lps_n2n_pid_req_s
*m
;
1719 m
= bfa_reqq_next(lps
->bfa
, lps
->reqq
);
1722 bfi_h2i_set(m
->mh
, BFI_MC_LPS
, BFI_LPS_H2I_N2N_PID_REQ
,
1723 bfa_fn_lpu(lps
->bfa
));
1725 m
->fw_tag
= lps
->fw_tag
;
1726 m
->lp_pid
= lps
->lp_pid
;
1727 bfa_reqq_produce(lps
->bfa
, lps
->reqq
, m
->mh
);
1731 * Indirect login completion handler for non-fcs
1734 bfa_lps_login_comp_cb(void *arg
, bfa_boolean_t complete
)
1736 struct bfa_lps_s
*lps
= arg
;
1742 bfa_cb_lps_fdisc_comp(lps
->bfa
->bfad
, lps
->uarg
, lps
->status
);
1744 bfa_cb_lps_flogi_comp(lps
->bfa
->bfad
, lps
->uarg
, lps
->status
);
1748 * Login completion handler -- direct call for fcs, queue for others
1751 bfa_lps_login_comp(struct bfa_lps_s
*lps
)
1753 if (!lps
->bfa
->fcs
) {
1754 bfa_cb_queue(lps
->bfa
, &lps
->hcb_qe
, bfa_lps_login_comp_cb
,
1760 bfa_cb_lps_fdisc_comp(lps
->bfa
->bfad
, lps
->uarg
, lps
->status
);
1762 bfa_cb_lps_flogi_comp(lps
->bfa
->bfad
, lps
->uarg
, lps
->status
);
1766 * Indirect logout completion handler for non-fcs
1769 bfa_lps_logout_comp_cb(void *arg
, bfa_boolean_t complete
)
1771 struct bfa_lps_s
*lps
= arg
;
1777 bfa_cb_lps_fdisclogo_comp(lps
->bfa
->bfad
, lps
->uarg
);
1779 bfa_cb_lps_flogo_comp(lps
->bfa
->bfad
, lps
->uarg
);
1783 * Logout completion handler -- direct call for fcs, queue for others
1786 bfa_lps_logout_comp(struct bfa_lps_s
*lps
)
1788 if (!lps
->bfa
->fcs
) {
1789 bfa_cb_queue(lps
->bfa
, &lps
->hcb_qe
, bfa_lps_logout_comp_cb
,
1794 bfa_cb_lps_fdisclogo_comp(lps
->bfa
->bfad
, lps
->uarg
);
1798 * Clear virtual link completion handler for non-fcs
1801 bfa_lps_cvl_event_cb(void *arg
, bfa_boolean_t complete
)
1803 struct bfa_lps_s
*lps
= arg
;
1808 /* Clear virtual link to base port will result in link down */
1810 bfa_cb_lps_cvl_event(lps
->bfa
->bfad
, lps
->uarg
);
1814 * Received Clear virtual link event --direct call for fcs,
1818 bfa_lps_cvl_event(struct bfa_lps_s
*lps
)
1820 if (!lps
->bfa
->fcs
) {
1821 bfa_cb_queue(lps
->bfa
, &lps
->hcb_qe
, bfa_lps_cvl_event_cb
,
1826 /* Clear virtual link to base port will result in link down */
1828 bfa_cb_lps_cvl_event(lps
->bfa
->bfad
, lps
->uarg
);
1834 * lps_public BFA LPS public functions
1838 bfa_lps_get_max_vport(struct bfa_s
*bfa
)
1840 if (bfa_ioc_devid(&bfa
->ioc
) == BFA_PCI_DEVICE_ID_CT
)
1841 return BFA_LPS_MAX_VPORTS_SUPP_CT
;
1843 return BFA_LPS_MAX_VPORTS_SUPP_CB
;
1847 * Allocate a lport srvice tag.
1850 bfa_lps_alloc(struct bfa_s
*bfa
)
1852 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1853 struct bfa_lps_s
*lps
= NULL
;
1855 bfa_q_deq(&mod
->lps_free_q
, &lps
);
1860 list_add_tail(&lps
->qe
, &mod
->lps_active_q
);
1862 bfa_sm_set_state(lps
, bfa_lps_sm_init
);
1867 * Free lport service tag. This can be called anytime after an alloc.
1868 * No need to wait for any pending login/logout completions.
1871 bfa_lps_delete(struct bfa_lps_s
*lps
)
1873 bfa_sm_send_event(lps
, BFA_LPS_SM_DELETE
);
1877 * Initiate a lport login.
1880 bfa_lps_flogi(struct bfa_lps_s
*lps
, void *uarg
, u8 alpa
, u16 pdusz
,
1881 wwn_t pwwn
, wwn_t nwwn
, bfa_boolean_t auth_en
)
1888 lps
->fdisc
= BFA_FALSE
;
1889 lps
->auth_en
= auth_en
;
1890 bfa_sm_send_event(lps
, BFA_LPS_SM_LOGIN
);
1894 * Initiate a lport fdisc login.
1897 bfa_lps_fdisc(struct bfa_lps_s
*lps
, void *uarg
, u16 pdusz
, wwn_t pwwn
,
1905 lps
->fdisc
= BFA_TRUE
;
1906 lps
->auth_en
= BFA_FALSE
;
1907 bfa_sm_send_event(lps
, BFA_LPS_SM_LOGIN
);
1912 * Initiate a lport FDSIC logout.
1915 bfa_lps_fdisclogo(struct bfa_lps_s
*lps
)
1917 bfa_sm_send_event(lps
, BFA_LPS_SM_LOGOUT
);
1921 bfa_lps_get_fwtag(struct bfa_s
*bfa
, u8 lp_tag
)
1923 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1925 return BFA_LPS_FROM_TAG(mod
, lp_tag
)->fw_tag
;
1929 * Return lport services tag given the pid
1932 bfa_lps_get_tag_from_pid(struct bfa_s
*bfa
, u32 pid
)
1934 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1935 struct bfa_lps_s
*lps
;
1938 for (i
= 0, lps
= mod
->lps_arr
; i
< mod
->num_lps
; i
++, lps
++) {
1939 if (lps
->lp_pid
== pid
)
1940 return lps
->bfa_tag
;
1943 /* Return base port tag anyway */
1949 * return port id assigned to the base lport
1952 bfa_lps_get_base_pid(struct bfa_s
*bfa
)
1954 struct bfa_lps_mod_s
*mod
= BFA_LPS_MOD(bfa
);
1956 return BFA_LPS_FROM_TAG(mod
, 0)->lp_pid
;
1960 * Set PID in case of n2n (which is assigned during PLOGI)
1963 bfa_lps_set_n2n_pid(struct bfa_lps_s
*lps
, uint32_t n2n_pid
)
1965 bfa_trc(lps
->bfa
, lps
->bfa_tag
);
1966 bfa_trc(lps
->bfa
, n2n_pid
);
1968 lps
->lp_pid
= n2n_pid
;
1969 bfa_sm_send_event(lps
, BFA_LPS_SM_SET_N2N_PID
);
1973 * LPS firmware message class handler.
1976 bfa_lps_isr(struct bfa_s
*bfa
, struct bfi_msg_s
*m
)
1978 union bfi_lps_i2h_msg_u msg
;
1980 bfa_trc(bfa
, m
->mhdr
.msg_id
);
1983 switch (m
->mhdr
.msg_id
) {
1984 case BFI_LPS_I2H_LOGIN_RSP
:
1985 bfa_lps_login_rsp(bfa
, msg
.login_rsp
);
1988 case BFI_LPS_I2H_LOGOUT_RSP
:
1989 bfa_lps_logout_rsp(bfa
, msg
.logout_rsp
);
1992 case BFI_LPS_I2H_CVL_EVENT
:
1993 bfa_lps_rx_cvl_event(bfa
, msg
.cvl_event
);
1997 bfa_trc(bfa
, m
->mhdr
.msg_id
);
2003 bfa_fcport_aen_post(struct bfa_fcport_s
*fcport
, enum bfa_port_aen_event event
)
2005 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2006 struct bfa_aen_entry_s
*aen_entry
;
2008 bfad_get_aen_entry(bfad
, aen_entry
);
2012 aen_entry
->aen_data
.port
.ioc_type
= bfa_get_type(fcport
->bfa
);
2013 aen_entry
->aen_data
.port
.pwwn
= fcport
->pwwn
;
2015 /* Send the AEN notification */
2016 bfad_im_post_vendor_event(aen_entry
, bfad
, ++fcport
->bfa
->bfa_aen_seq
,
2017 BFA_AEN_CAT_PORT
, event
);
2021 * FC PORT state machine functions
2024 bfa_fcport_sm_uninit(struct bfa_fcport_s
*fcport
,
2025 enum bfa_fcport_sm_event event
)
2027 bfa_trc(fcport
->bfa
, event
);
2030 case BFA_FCPORT_SM_START
:
2032 * Start event after IOC is configured and BFA is started.
2034 fcport
->use_flash_cfg
= BFA_TRUE
;
2036 if (bfa_fcport_send_enable(fcport
)) {
2037 bfa_trc(fcport
->bfa
, BFA_TRUE
);
2038 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2040 bfa_trc(fcport
->bfa
, BFA_FALSE
);
2041 bfa_sm_set_state(fcport
,
2042 bfa_fcport_sm_enabling_qwait
);
2046 case BFA_FCPORT_SM_ENABLE
:
2048 * Port is persistently configured to be in enabled state. Do
2049 * not change state. Port enabling is done when START event is
2054 case BFA_FCPORT_SM_DISABLE
:
2056 * If a port is persistently configured to be disabled, the
2057 * first event will a port disable request.
2059 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabled
);
2062 case BFA_FCPORT_SM_HWFAIL
:
2063 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2067 bfa_sm_fault(fcport
->bfa
, event
);
2072 bfa_fcport_sm_enabling_qwait(struct bfa_fcport_s
*fcport
,
2073 enum bfa_fcport_sm_event event
)
2075 char pwwn_buf
[BFA_STRING_32
];
2076 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2077 bfa_trc(fcport
->bfa
, event
);
2080 case BFA_FCPORT_SM_QRESUME
:
2081 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2082 bfa_fcport_send_enable(fcport
);
2085 case BFA_FCPORT_SM_STOP
:
2086 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2087 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2090 case BFA_FCPORT_SM_ENABLE
:
2092 * Already enable is in progress.
2096 case BFA_FCPORT_SM_DISABLE
:
2098 * Just send disable request to firmware when room becomes
2099 * available in request queue.
2101 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabled
);
2102 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2103 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2104 BFA_PL_EID_PORT_DISABLE
, 0, "Port Disable");
2105 wwn2str(pwwn_buf
, fcport
->pwwn
);
2106 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2107 "Base port disabled: WWN = %s\n", pwwn_buf
);
2108 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISABLE
);
2111 case BFA_FCPORT_SM_LINKUP
:
2112 case BFA_FCPORT_SM_LINKDOWN
:
2114 * Possible to get link events when doing back-to-back
2119 case BFA_FCPORT_SM_HWFAIL
:
2120 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2121 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2124 case BFA_FCPORT_SM_FAA_MISCONFIG
:
2125 bfa_fcport_reset_linkinfo(fcport
);
2126 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2127 bfa_sm_set_state(fcport
, bfa_fcport_sm_faa_misconfig
);
2131 bfa_sm_fault(fcport
->bfa
, event
);
2136 bfa_fcport_sm_enabling(struct bfa_fcport_s
*fcport
,
2137 enum bfa_fcport_sm_event event
)
2139 char pwwn_buf
[BFA_STRING_32
];
2140 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2141 bfa_trc(fcport
->bfa
, event
);
2144 case BFA_FCPORT_SM_FWRSP
:
2145 case BFA_FCPORT_SM_LINKDOWN
:
2146 bfa_sm_set_state(fcport
, bfa_fcport_sm_linkdown
);
2149 case BFA_FCPORT_SM_LINKUP
:
2150 bfa_fcport_update_linkinfo(fcport
);
2151 bfa_sm_set_state(fcport
, bfa_fcport_sm_linkup
);
2153 WARN_ON(!fcport
->event_cbfn
);
2154 bfa_fcport_scn(fcport
, BFA_PORT_LINKUP
, BFA_FALSE
);
2157 case BFA_FCPORT_SM_ENABLE
:
2159 * Already being enabled.
2163 case BFA_FCPORT_SM_DISABLE
:
2164 if (bfa_fcport_send_disable(fcport
))
2165 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling
);
2167 bfa_sm_set_state(fcport
,
2168 bfa_fcport_sm_disabling_qwait
);
2170 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2171 BFA_PL_EID_PORT_DISABLE
, 0, "Port Disable");
2172 wwn2str(pwwn_buf
, fcport
->pwwn
);
2173 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2174 "Base port disabled: WWN = %s\n", pwwn_buf
);
2175 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISABLE
);
2178 case BFA_FCPORT_SM_STOP
:
2179 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2182 case BFA_FCPORT_SM_HWFAIL
:
2183 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2186 case BFA_FCPORT_SM_FAA_MISCONFIG
:
2187 bfa_fcport_reset_linkinfo(fcport
);
2188 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2189 bfa_sm_set_state(fcport
, bfa_fcport_sm_faa_misconfig
);
2193 bfa_sm_fault(fcport
->bfa
, event
);
2198 bfa_fcport_sm_linkdown(struct bfa_fcport_s
*fcport
,
2199 enum bfa_fcport_sm_event event
)
2201 struct bfi_fcport_event_s
*pevent
= fcport
->event_arg
.i2hmsg
.event
;
2202 char pwwn_buf
[BFA_STRING_32
];
2203 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2205 bfa_trc(fcport
->bfa
, event
);
2208 case BFA_FCPORT_SM_LINKUP
:
2209 bfa_fcport_update_linkinfo(fcport
);
2210 bfa_sm_set_state(fcport
, bfa_fcport_sm_linkup
);
2211 WARN_ON(!fcport
->event_cbfn
);
2212 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2213 BFA_PL_EID_PORT_ST_CHANGE
, 0, "Port Linkup");
2214 if (!bfa_ioc_get_fcmode(&fcport
->bfa
->ioc
)) {
2216 bfa_trc(fcport
->bfa
,
2217 pevent
->link_state
.attr
.vc_fcf
.fcf
.fipenabled
);
2218 bfa_trc(fcport
->bfa
,
2219 pevent
->link_state
.attr
.vc_fcf
.fcf
.fipfailed
);
2221 if (pevent
->link_state
.attr
.vc_fcf
.fcf
.fipfailed
)
2222 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2223 BFA_PL_EID_FIP_FCF_DISC
, 0,
2224 "FIP FCF Discovery Failed");
2226 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2227 BFA_PL_EID_FIP_FCF_DISC
, 0,
2228 "FIP FCF Discovered");
2231 bfa_fcport_scn(fcport
, BFA_PORT_LINKUP
, BFA_FALSE
);
2232 wwn2str(pwwn_buf
, fcport
->pwwn
);
2233 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2234 "Base port online: WWN = %s\n", pwwn_buf
);
2235 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_ONLINE
);
2237 /* If QoS is enabled and it is not online, send AEN */
2238 if (fcport
->cfg
.qos_enabled
&&
2239 fcport
->qos_attr
.state
!= BFA_QOS_ONLINE
)
2240 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_QOS_NEG
);
2243 case BFA_FCPORT_SM_LINKDOWN
:
2245 * Possible to get link down event.
2249 case BFA_FCPORT_SM_ENABLE
:
2255 case BFA_FCPORT_SM_DISABLE
:
2256 if (bfa_fcport_send_disable(fcport
))
2257 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling
);
2259 bfa_sm_set_state(fcport
,
2260 bfa_fcport_sm_disabling_qwait
);
2262 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2263 BFA_PL_EID_PORT_DISABLE
, 0, "Port Disable");
2264 wwn2str(pwwn_buf
, fcport
->pwwn
);
2265 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2266 "Base port disabled: WWN = %s\n", pwwn_buf
);
2267 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISABLE
);
2270 case BFA_FCPORT_SM_STOP
:
2271 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2274 case BFA_FCPORT_SM_HWFAIL
:
2275 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2278 case BFA_FCPORT_SM_FAA_MISCONFIG
:
2279 bfa_fcport_reset_linkinfo(fcport
);
2280 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2281 bfa_sm_set_state(fcport
, bfa_fcport_sm_faa_misconfig
);
2285 bfa_sm_fault(fcport
->bfa
, event
);
2290 bfa_fcport_sm_linkup(struct bfa_fcport_s
*fcport
,
2291 enum bfa_fcport_sm_event event
)
2293 char pwwn_buf
[BFA_STRING_32
];
2294 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2296 bfa_trc(fcport
->bfa
, event
);
2299 case BFA_FCPORT_SM_ENABLE
:
2305 case BFA_FCPORT_SM_DISABLE
:
2306 if (bfa_fcport_send_disable(fcport
))
2307 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling
);
2309 bfa_sm_set_state(fcport
,
2310 bfa_fcport_sm_disabling_qwait
);
2312 bfa_fcport_reset_linkinfo(fcport
);
2313 bfa_fcport_scn(fcport
, BFA_PORT_LINKDOWN
, BFA_FALSE
);
2314 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2315 BFA_PL_EID_PORT_DISABLE
, 0, "Port Disable");
2316 wwn2str(pwwn_buf
, fcport
->pwwn
);
2317 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2318 "Base port offline: WWN = %s\n", pwwn_buf
);
2319 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_OFFLINE
);
2320 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2321 "Base port disabled: WWN = %s\n", pwwn_buf
);
2322 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISABLE
);
2325 case BFA_FCPORT_SM_LINKDOWN
:
2326 bfa_sm_set_state(fcport
, bfa_fcport_sm_linkdown
);
2327 bfa_fcport_reset_linkinfo(fcport
);
2328 bfa_fcport_scn(fcport
, BFA_PORT_LINKDOWN
, BFA_FALSE
);
2329 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2330 BFA_PL_EID_PORT_ST_CHANGE
, 0, "Port Linkdown");
2331 wwn2str(pwwn_buf
, fcport
->pwwn
);
2332 if (BFA_PORT_IS_DISABLED(fcport
->bfa
)) {
2333 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2334 "Base port offline: WWN = %s\n", pwwn_buf
);
2335 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_OFFLINE
);
2337 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
2338 "Base port (WWN = %s) "
2339 "lost fabric connectivity\n", pwwn_buf
);
2340 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2344 case BFA_FCPORT_SM_STOP
:
2345 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2346 bfa_fcport_reset_linkinfo(fcport
);
2347 wwn2str(pwwn_buf
, fcport
->pwwn
);
2348 if (BFA_PORT_IS_DISABLED(fcport
->bfa
)) {
2349 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2350 "Base port offline: WWN = %s\n", pwwn_buf
);
2351 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_OFFLINE
);
2353 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
2354 "Base port (WWN = %s) "
2355 "lost fabric connectivity\n", pwwn_buf
);
2356 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2360 case BFA_FCPORT_SM_HWFAIL
:
2361 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2362 bfa_fcport_reset_linkinfo(fcport
);
2363 bfa_fcport_scn(fcport
, BFA_PORT_LINKDOWN
, BFA_FALSE
);
2364 wwn2str(pwwn_buf
, fcport
->pwwn
);
2365 if (BFA_PORT_IS_DISABLED(fcport
->bfa
)) {
2366 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2367 "Base port offline: WWN = %s\n", pwwn_buf
);
2368 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_OFFLINE
);
2370 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
2371 "Base port (WWN = %s) "
2372 "lost fabric connectivity\n", pwwn_buf
);
2373 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2377 case BFA_FCPORT_SM_FAA_MISCONFIG
:
2378 bfa_fcport_reset_linkinfo(fcport
);
2379 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2380 bfa_sm_set_state(fcport
, bfa_fcport_sm_faa_misconfig
);
2384 bfa_sm_fault(fcport
->bfa
, event
);
2389 bfa_fcport_sm_disabling_qwait(struct bfa_fcport_s
*fcport
,
2390 enum bfa_fcport_sm_event event
)
2392 bfa_trc(fcport
->bfa
, event
);
2395 case BFA_FCPORT_SM_QRESUME
:
2396 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling
);
2397 bfa_fcport_send_disable(fcport
);
2400 case BFA_FCPORT_SM_STOP
:
2401 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2402 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2405 case BFA_FCPORT_SM_ENABLE
:
2406 bfa_sm_set_state(fcport
, bfa_fcport_sm_toggling_qwait
);
2409 case BFA_FCPORT_SM_DISABLE
:
2411 * Already being disabled.
2415 case BFA_FCPORT_SM_LINKUP
:
2416 case BFA_FCPORT_SM_LINKDOWN
:
2418 * Possible to get link events when doing back-to-back
2423 case BFA_FCPORT_SM_HWFAIL
:
2424 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocfail
);
2425 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2428 case BFA_FCPORT_SM_FAA_MISCONFIG
:
2429 bfa_fcport_reset_linkinfo(fcport
);
2430 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISCONNECT
);
2431 bfa_sm_set_state(fcport
, bfa_fcport_sm_faa_misconfig
);
2435 bfa_sm_fault(fcport
->bfa
, event
);
2440 bfa_fcport_sm_toggling_qwait(struct bfa_fcport_s
*fcport
,
2441 enum bfa_fcport_sm_event event
)
2443 bfa_trc(fcport
->bfa
, event
);
2446 case BFA_FCPORT_SM_QRESUME
:
2447 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling
);
2448 bfa_fcport_send_disable(fcport
);
2449 if (bfa_fcport_send_enable(fcport
))
2450 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2452 bfa_sm_set_state(fcport
,
2453 bfa_fcport_sm_enabling_qwait
);
2456 case BFA_FCPORT_SM_STOP
:
2457 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2458 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2461 case BFA_FCPORT_SM_ENABLE
:
2464 case BFA_FCPORT_SM_DISABLE
:
2465 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling_qwait
);
2468 case BFA_FCPORT_SM_LINKUP
:
2469 case BFA_FCPORT_SM_LINKDOWN
:
2471 * Possible to get link events when doing back-to-back
2476 case BFA_FCPORT_SM_HWFAIL
:
2477 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocfail
);
2478 bfa_reqq_wcancel(&fcport
->reqq_wait
);
2482 bfa_sm_fault(fcport
->bfa
, event
);
2487 bfa_fcport_sm_disabling(struct bfa_fcport_s
*fcport
,
2488 enum bfa_fcport_sm_event event
)
2490 char pwwn_buf
[BFA_STRING_32
];
2491 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2492 bfa_trc(fcport
->bfa
, event
);
2495 case BFA_FCPORT_SM_FWRSP
:
2496 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabled
);
2499 case BFA_FCPORT_SM_DISABLE
:
2501 * Already being disabled.
2505 case BFA_FCPORT_SM_ENABLE
:
2506 if (bfa_fcport_send_enable(fcport
))
2507 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2509 bfa_sm_set_state(fcport
,
2510 bfa_fcport_sm_enabling_qwait
);
2512 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2513 BFA_PL_EID_PORT_ENABLE
, 0, "Port Enable");
2514 wwn2str(pwwn_buf
, fcport
->pwwn
);
2515 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2516 "Base port enabled: WWN = %s\n", pwwn_buf
);
2517 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_ENABLE
);
2520 case BFA_FCPORT_SM_STOP
:
2521 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2524 case BFA_FCPORT_SM_LINKUP
:
2525 case BFA_FCPORT_SM_LINKDOWN
:
2527 * Possible to get link events when doing back-to-back
2532 case BFA_FCPORT_SM_HWFAIL
:
2533 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocfail
);
2537 bfa_sm_fault(fcport
->bfa
, event
);
2542 bfa_fcport_sm_disabled(struct bfa_fcport_s
*fcport
,
2543 enum bfa_fcport_sm_event event
)
2545 char pwwn_buf
[BFA_STRING_32
];
2546 struct bfad_s
*bfad
= (struct bfad_s
*)fcport
->bfa
->bfad
;
2547 bfa_trc(fcport
->bfa
, event
);
2550 case BFA_FCPORT_SM_START
:
2552 * Ignore start event for a port that is disabled.
2556 case BFA_FCPORT_SM_STOP
:
2557 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2560 case BFA_FCPORT_SM_ENABLE
:
2561 if (bfa_fcport_send_enable(fcport
))
2562 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2564 bfa_sm_set_state(fcport
,
2565 bfa_fcport_sm_enabling_qwait
);
2567 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2568 BFA_PL_EID_PORT_ENABLE
, 0, "Port Enable");
2569 wwn2str(pwwn_buf
, fcport
->pwwn
);
2570 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
2571 "Base port enabled: WWN = %s\n", pwwn_buf
);
2572 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_ENABLE
);
2575 case BFA_FCPORT_SM_DISABLE
:
2581 case BFA_FCPORT_SM_HWFAIL
:
2582 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocfail
);
2585 case BFA_FCPORT_SM_DPORTENABLE
:
2586 bfa_sm_set_state(fcport
, bfa_fcport_sm_dport
);
2589 case BFA_FCPORT_SM_DDPORTENABLE
:
2590 bfa_sm_set_state(fcport
, bfa_fcport_sm_ddport
);
2594 bfa_sm_fault(fcport
->bfa
, event
);
2599 bfa_fcport_sm_stopped(struct bfa_fcport_s
*fcport
,
2600 enum bfa_fcport_sm_event event
)
2602 bfa_trc(fcport
->bfa
, event
);
2605 case BFA_FCPORT_SM_START
:
2606 if (bfa_fcport_send_enable(fcport
))
2607 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2609 bfa_sm_set_state(fcport
,
2610 bfa_fcport_sm_enabling_qwait
);
2615 * Ignore all other events.
2622 * Port is enabled. IOC is down/failed.
2625 bfa_fcport_sm_iocdown(struct bfa_fcport_s
*fcport
,
2626 enum bfa_fcport_sm_event event
)
2628 bfa_trc(fcport
->bfa
, event
);
2631 case BFA_FCPORT_SM_START
:
2632 if (bfa_fcport_send_enable(fcport
))
2633 bfa_sm_set_state(fcport
, bfa_fcport_sm_enabling
);
2635 bfa_sm_set_state(fcport
,
2636 bfa_fcport_sm_enabling_qwait
);
2641 * Ignore all events.
2648 * Port is disabled. IOC is down/failed.
2651 bfa_fcport_sm_iocfail(struct bfa_fcport_s
*fcport
,
2652 enum bfa_fcport_sm_event event
)
2654 bfa_trc(fcport
->bfa
, event
);
2657 case BFA_FCPORT_SM_START
:
2658 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabled
);
2661 case BFA_FCPORT_SM_ENABLE
:
2662 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2667 * Ignore all events.
2674 bfa_fcport_sm_dport(struct bfa_fcport_s
*fcport
, enum bfa_fcport_sm_event event
)
2676 bfa_trc(fcport
->bfa
, event
);
2679 case BFA_FCPORT_SM_DPORTENABLE
:
2680 case BFA_FCPORT_SM_DISABLE
:
2681 case BFA_FCPORT_SM_ENABLE
:
2682 case BFA_FCPORT_SM_START
:
2684 * Ignore event for a port that is dport
2688 case BFA_FCPORT_SM_STOP
:
2689 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2692 case BFA_FCPORT_SM_HWFAIL
:
2693 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocfail
);
2696 case BFA_FCPORT_SM_DPORTDISABLE
:
2697 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabled
);
2701 bfa_sm_fault(fcport
->bfa
, event
);
2706 bfa_fcport_sm_ddport(struct bfa_fcport_s
*fcport
,
2707 enum bfa_fcport_sm_event event
)
2709 bfa_trc(fcport
->bfa
, event
);
2712 case BFA_FCPORT_SM_DISABLE
:
2713 case BFA_FCPORT_SM_DDPORTDISABLE
:
2714 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabled
);
2717 case BFA_FCPORT_SM_DPORTENABLE
:
2718 case BFA_FCPORT_SM_DPORTDISABLE
:
2719 case BFA_FCPORT_SM_ENABLE
:
2720 case BFA_FCPORT_SM_START
:
2722 * Ignore event for a port that is ddport
2726 case BFA_FCPORT_SM_STOP
:
2727 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2730 case BFA_FCPORT_SM_HWFAIL
:
2731 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocfail
);
2735 bfa_sm_fault(fcport
->bfa
, event
);
2740 bfa_fcport_sm_faa_misconfig(struct bfa_fcport_s
*fcport
,
2741 enum bfa_fcport_sm_event event
)
2743 bfa_trc(fcport
->bfa
, event
);
2746 case BFA_FCPORT_SM_DPORTENABLE
:
2747 case BFA_FCPORT_SM_ENABLE
:
2748 case BFA_FCPORT_SM_START
:
2750 * Ignore event for a port as there is FAA misconfig
2754 case BFA_FCPORT_SM_DISABLE
:
2755 if (bfa_fcport_send_disable(fcport
))
2756 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling
);
2758 bfa_sm_set_state(fcport
, bfa_fcport_sm_disabling_qwait
);
2760 bfa_fcport_reset_linkinfo(fcport
);
2761 bfa_fcport_scn(fcport
, BFA_PORT_LINKDOWN
, BFA_FALSE
);
2762 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
2763 BFA_PL_EID_PORT_DISABLE
, 0, "Port Disable");
2764 bfa_fcport_aen_post(fcport
, BFA_PORT_AEN_DISABLE
);
2767 case BFA_FCPORT_SM_STOP
:
2768 bfa_sm_set_state(fcport
, bfa_fcport_sm_stopped
);
2771 case BFA_FCPORT_SM_HWFAIL
:
2772 bfa_fcport_reset_linkinfo(fcport
);
2773 bfa_fcport_scn(fcport
, BFA_PORT_LINKDOWN
, BFA_FALSE
);
2774 bfa_sm_set_state(fcport
, bfa_fcport_sm_iocdown
);
2778 bfa_sm_fault(fcport
->bfa
, event
);
2783 * Link state is down
2786 bfa_fcport_ln_sm_dn(struct bfa_fcport_ln_s
*ln
,
2787 enum bfa_fcport_ln_sm_event event
)
2789 bfa_trc(ln
->fcport
->bfa
, event
);
2792 case BFA_FCPORT_LN_SM_LINKUP
:
2793 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_up_nf
);
2794 bfa_fcport_queue_cb(ln
, BFA_PORT_LINKUP
);
2798 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2803 * Link state is waiting for down notification
2806 bfa_fcport_ln_sm_dn_nf(struct bfa_fcport_ln_s
*ln
,
2807 enum bfa_fcport_ln_sm_event event
)
2809 bfa_trc(ln
->fcport
->bfa
, event
);
2812 case BFA_FCPORT_LN_SM_LINKUP
:
2813 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn_up_nf
);
2816 case BFA_FCPORT_LN_SM_NOTIFICATION
:
2817 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn
);
2821 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2826 * Link state is waiting for down notification and there is a pending up
2829 bfa_fcport_ln_sm_dn_up_nf(struct bfa_fcport_ln_s
*ln
,
2830 enum bfa_fcport_ln_sm_event event
)
2832 bfa_trc(ln
->fcport
->bfa
, event
);
2835 case BFA_FCPORT_LN_SM_LINKDOWN
:
2836 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn_nf
);
2839 case BFA_FCPORT_LN_SM_NOTIFICATION
:
2840 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_up_nf
);
2841 bfa_fcport_queue_cb(ln
, BFA_PORT_LINKUP
);
2845 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2853 bfa_fcport_ln_sm_up(struct bfa_fcport_ln_s
*ln
,
2854 enum bfa_fcport_ln_sm_event event
)
2856 bfa_trc(ln
->fcport
->bfa
, event
);
2859 case BFA_FCPORT_LN_SM_LINKDOWN
:
2860 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn_nf
);
2861 bfa_fcport_queue_cb(ln
, BFA_PORT_LINKDOWN
);
2865 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2870 * Link state is waiting for up notification
2873 bfa_fcport_ln_sm_up_nf(struct bfa_fcport_ln_s
*ln
,
2874 enum bfa_fcport_ln_sm_event event
)
2876 bfa_trc(ln
->fcport
->bfa
, event
);
2879 case BFA_FCPORT_LN_SM_LINKDOWN
:
2880 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_up_dn_nf
);
2883 case BFA_FCPORT_LN_SM_NOTIFICATION
:
2884 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_up
);
2888 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2893 * Link state is waiting for up notification and there is a pending down
2896 bfa_fcport_ln_sm_up_dn_nf(struct bfa_fcport_ln_s
*ln
,
2897 enum bfa_fcport_ln_sm_event event
)
2899 bfa_trc(ln
->fcport
->bfa
, event
);
2902 case BFA_FCPORT_LN_SM_LINKUP
:
2903 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_up_dn_up_nf
);
2906 case BFA_FCPORT_LN_SM_NOTIFICATION
:
2907 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn_nf
);
2908 bfa_fcport_queue_cb(ln
, BFA_PORT_LINKDOWN
);
2912 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2917 * Link state is waiting for up notification and there are pending down and up
2920 bfa_fcport_ln_sm_up_dn_up_nf(struct bfa_fcport_ln_s
*ln
,
2921 enum bfa_fcport_ln_sm_event event
)
2923 bfa_trc(ln
->fcport
->bfa
, event
);
2926 case BFA_FCPORT_LN_SM_LINKDOWN
:
2927 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_up_dn_nf
);
2930 case BFA_FCPORT_LN_SM_NOTIFICATION
:
2931 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn_up_nf
);
2932 bfa_fcport_queue_cb(ln
, BFA_PORT_LINKDOWN
);
2936 bfa_sm_fault(ln
->fcport
->bfa
, event
);
2941 __bfa_cb_fcport_event(void *cbarg
, bfa_boolean_t complete
)
2943 struct bfa_fcport_ln_s
*ln
= cbarg
;
2946 ln
->fcport
->event_cbfn(ln
->fcport
->event_cbarg
, ln
->ln_event
);
2948 bfa_sm_send_event(ln
, BFA_FCPORT_LN_SM_NOTIFICATION
);
2952 * Send SCN notification to upper layers.
2953 * trunk - false if caller is fcport to ignore fcport event in trunked mode
2956 bfa_fcport_scn(struct bfa_fcport_s
*fcport
, enum bfa_port_linkstate event
,
2957 bfa_boolean_t trunk
)
2959 if (fcport
->cfg
.trunked
&& !trunk
)
2963 case BFA_PORT_LINKUP
:
2964 bfa_sm_send_event(&fcport
->ln
, BFA_FCPORT_LN_SM_LINKUP
);
2966 case BFA_PORT_LINKDOWN
:
2967 bfa_sm_send_event(&fcport
->ln
, BFA_FCPORT_LN_SM_LINKDOWN
);
2975 bfa_fcport_queue_cb(struct bfa_fcport_ln_s
*ln
, enum bfa_port_linkstate event
)
2977 struct bfa_fcport_s
*fcport
= ln
->fcport
;
2979 if (fcport
->bfa
->fcs
) {
2980 fcport
->event_cbfn(fcport
->event_cbarg
, event
);
2981 bfa_sm_send_event(ln
, BFA_FCPORT_LN_SM_NOTIFICATION
);
2983 ln
->ln_event
= event
;
2984 bfa_cb_queue(fcport
->bfa
, &ln
->ln_qe
,
2985 __bfa_cb_fcport_event
, ln
);
2989 #define FCPORT_STATS_DMA_SZ (BFA_ROUNDUP(sizeof(union bfa_fcport_stats_u), \
2993 bfa_fcport_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*minfo
,
2996 struct bfa_mem_dma_s
*fcport_dma
= BFA_MEM_FCPORT_DMA(bfa
);
2998 bfa_mem_dma_setup(minfo
, fcport_dma
, FCPORT_STATS_DMA_SZ
);
3002 bfa_fcport_qresume(void *cbarg
)
3004 struct bfa_fcport_s
*fcport
= cbarg
;
3006 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_QRESUME
);
3010 bfa_fcport_mem_claim(struct bfa_fcport_s
*fcport
)
3012 struct bfa_mem_dma_s
*fcport_dma
= &fcport
->fcport_dma
;
3014 fcport
->stats_kva
= bfa_mem_dma_virt(fcport_dma
);
3015 fcport
->stats_pa
= bfa_mem_dma_phys(fcport_dma
);
3016 fcport
->stats
= (union bfa_fcport_stats_u
*)
3017 bfa_mem_dma_virt(fcport_dma
);
3021 * Memory initialization.
3024 bfa_fcport_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
3025 struct bfa_pcidev_s
*pcidev
)
3027 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3028 struct bfa_port_cfg_s
*port_cfg
= &fcport
->cfg
;
3029 struct bfa_fcport_ln_s
*ln
= &fcport
->ln
;
3032 ln
->fcport
= fcport
;
3034 bfa_fcport_mem_claim(fcport
);
3036 bfa_sm_set_state(fcport
, bfa_fcport_sm_uninit
);
3037 bfa_sm_set_state(ln
, bfa_fcport_ln_sm_dn
);
3040 * initialize time stamp for stats reset
3042 fcport
->stats_reset_time
= ktime_get_seconds();
3043 fcport
->stats_dma_ready
= BFA_FALSE
;
3046 * initialize and set default configuration
3048 port_cfg
->topology
= BFA_PORT_TOPOLOGY_P2P
;
3049 port_cfg
->speed
= BFA_PORT_SPEED_AUTO
;
3050 port_cfg
->trunked
= BFA_FALSE
;
3051 port_cfg
->maxfrsize
= 0;
3053 port_cfg
->trl_def_speed
= BFA_PORT_SPEED_1GBPS
;
3054 port_cfg
->qos_bw
.high
= BFA_QOS_BW_HIGH
;
3055 port_cfg
->qos_bw
.med
= BFA_QOS_BW_MED
;
3056 port_cfg
->qos_bw
.low
= BFA_QOS_BW_LOW
;
3058 fcport
->fec_state
= BFA_FEC_OFFLINE
;
3060 INIT_LIST_HEAD(&fcport
->stats_pending_q
);
3061 INIT_LIST_HEAD(&fcport
->statsclr_pending_q
);
3063 bfa_reqq_winit(&fcport
->reqq_wait
, bfa_fcport_qresume
, fcport
);
3067 bfa_fcport_start(struct bfa_s
*bfa
)
3069 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_START
);
3073 * Called when IOC failure is detected.
3076 bfa_fcport_iocdisable(struct bfa_s
*bfa
)
3078 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3080 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_HWFAIL
);
3081 bfa_trunk_iocdisable(bfa
);
3085 * Update loop info in fcport for SCN online
3088 bfa_fcport_update_loop_info(struct bfa_fcport_s
*fcport
,
3089 struct bfa_fcport_loop_info_s
*loop_info
)
3091 fcport
->myalpa
= loop_info
->myalpa
;
3092 fcport
->alpabm_valid
=
3093 loop_info
->alpabm_val
;
3094 memcpy(fcport
->alpabm
.alpa_bm
,
3095 loop_info
->alpabm
.alpa_bm
,
3096 sizeof(struct fc_alpabm_s
));
3100 bfa_fcport_update_linkinfo(struct bfa_fcport_s
*fcport
)
3102 struct bfi_fcport_event_s
*pevent
= fcport
->event_arg
.i2hmsg
.event
;
3103 struct bfa_fcport_trunk_s
*trunk
= &fcport
->trunk
;
3105 fcport
->speed
= pevent
->link_state
.speed
;
3106 fcport
->topology
= pevent
->link_state
.topology
;
3108 if (fcport
->topology
== BFA_PORT_TOPOLOGY_LOOP
) {
3109 bfa_fcport_update_loop_info(fcport
,
3110 &pevent
->link_state
.attr
.loop_info
);
3115 fcport
->qos_attr
= pevent
->link_state
.qos_attr
;
3116 fcport
->qos_vc_attr
= pevent
->link_state
.attr
.vc_fcf
.qos_vc_attr
;
3118 if (fcport
->cfg
.bb_cr_enabled
)
3119 fcport
->bbcr_attr
= pevent
->link_state
.attr
.bbcr_attr
;
3121 fcport
->fec_state
= pevent
->link_state
.fec_state
;
3124 * update trunk state if applicable
3126 if (!fcport
->cfg
.trunked
)
3127 trunk
->attr
.state
= BFA_TRUNK_DISABLED
;
3129 /* update FCoE specific */
3131 be16_to_cpu(pevent
->link_state
.attr
.vc_fcf
.fcf
.vlan
);
3133 bfa_trc(fcport
->bfa
, fcport
->speed
);
3134 bfa_trc(fcport
->bfa
, fcport
->topology
);
3138 bfa_fcport_reset_linkinfo(struct bfa_fcport_s
*fcport
)
3140 fcport
->speed
= BFA_PORT_SPEED_UNKNOWN
;
3141 fcport
->topology
= BFA_PORT_TOPOLOGY_NONE
;
3142 fcport
->fec_state
= BFA_FEC_OFFLINE
;
3146 * Send port enable message to firmware.
3148 static bfa_boolean_t
3149 bfa_fcport_send_enable(struct bfa_fcport_s
*fcport
)
3151 struct bfi_fcport_enable_req_s
*m
;
3154 * Increment message tag before queue check, so that responses to old
3155 * requests are discarded.
3160 * check for room in queue to send request now
3162 m
= bfa_reqq_next(fcport
->bfa
, BFA_REQQ_PORT
);
3164 bfa_reqq_wait(fcport
->bfa
, BFA_REQQ_PORT
,
3165 &fcport
->reqq_wait
);
3169 bfi_h2i_set(m
->mh
, BFI_MC_FCPORT
, BFI_FCPORT_H2I_ENABLE_REQ
,
3170 bfa_fn_lpu(fcport
->bfa
));
3171 m
->nwwn
= fcport
->nwwn
;
3172 m
->pwwn
= fcport
->pwwn
;
3173 m
->port_cfg
= fcport
->cfg
;
3174 m
->msgtag
= fcport
->msgtag
;
3175 m
->port_cfg
.maxfrsize
= cpu_to_be16(fcport
->cfg
.maxfrsize
);
3176 m
->use_flash_cfg
= fcport
->use_flash_cfg
;
3177 bfa_dma_be_addr_set(m
->stats_dma_addr
, fcport
->stats_pa
);
3178 bfa_trc(fcport
->bfa
, m
->stats_dma_addr
.a32
.addr_lo
);
3179 bfa_trc(fcport
->bfa
, m
->stats_dma_addr
.a32
.addr_hi
);
3182 * queue I/O message to firmware
3184 bfa_reqq_produce(fcport
->bfa
, BFA_REQQ_PORT
, m
->mh
);
3189 * Send port disable message to firmware.
3191 static bfa_boolean_t
3192 bfa_fcport_send_disable(struct bfa_fcport_s
*fcport
)
3194 struct bfi_fcport_req_s
*m
;
3197 * Increment message tag before queue check, so that responses to old
3198 * requests are discarded.
3203 * check for room in queue to send request now
3205 m
= bfa_reqq_next(fcport
->bfa
, BFA_REQQ_PORT
);
3207 bfa_reqq_wait(fcport
->bfa
, BFA_REQQ_PORT
,
3208 &fcport
->reqq_wait
);
3212 bfi_h2i_set(m
->mh
, BFI_MC_FCPORT
, BFI_FCPORT_H2I_DISABLE_REQ
,
3213 bfa_fn_lpu(fcport
->bfa
));
3214 m
->msgtag
= fcport
->msgtag
;
3217 * queue I/O message to firmware
3219 bfa_reqq_produce(fcport
->bfa
, BFA_REQQ_PORT
, m
->mh
);
3225 bfa_fcport_set_wwns(struct bfa_fcport_s
*fcport
)
3227 fcport
->pwwn
= fcport
->bfa
->ioc
.attr
->pwwn
;
3228 fcport
->nwwn
= fcport
->bfa
->ioc
.attr
->nwwn
;
3230 bfa_trc(fcport
->bfa
, fcport
->pwwn
);
3231 bfa_trc(fcport
->bfa
, fcport
->nwwn
);
3235 bfa_fcport_qos_stats_swap(struct bfa_qos_stats_s
*d
,
3236 struct bfa_qos_stats_s
*s
)
3238 u32
*dip
= (u32
*) d
;
3239 __be32
*sip
= (__be32
*) s
;
3242 /* Now swap the 32 bit fields */
3243 for (i
= 0; i
< (sizeof(struct bfa_qos_stats_s
)/sizeof(u32
)); ++i
)
3244 dip
[i
] = be32_to_cpu(sip
[i
]);
3248 bfa_fcport_fcoe_stats_swap(struct bfa_fcoe_stats_s
*d
,
3249 struct bfa_fcoe_stats_s
*s
)
3251 u32
*dip
= (u32
*) d
;
3252 __be32
*sip
= (__be32
*) s
;
3255 for (i
= 0; i
< ((sizeof(struct bfa_fcoe_stats_s
))/sizeof(u32
));
3258 dip
[i
] = be32_to_cpu(sip
[i
]);
3259 dip
[i
+ 1] = be32_to_cpu(sip
[i
+ 1]);
3261 dip
[i
] = be32_to_cpu(sip
[i
+ 1]);
3262 dip
[i
+ 1] = be32_to_cpu(sip
[i
]);
3268 __bfa_cb_fcport_stats_get(void *cbarg
, bfa_boolean_t complete
)
3270 struct bfa_fcport_s
*fcport
= (struct bfa_fcport_s
*)cbarg
;
3271 struct bfa_cb_pending_q_s
*cb
;
3272 struct list_head
*qe
, *qen
;
3273 union bfa_fcport_stats_u
*ret
;
3276 time64_t time
= ktime_get_seconds();
3278 list_for_each_safe(qe
, qen
, &fcport
->stats_pending_q
) {
3279 bfa_q_deq(&fcport
->stats_pending_q
, &qe
);
3280 cb
= (struct bfa_cb_pending_q_s
*)qe
;
3281 if (fcport
->stats_status
== BFA_STATUS_OK
) {
3282 ret
= (union bfa_fcport_stats_u
*)cb
->data
;
3283 /* Swap FC QoS or FCoE stats */
3284 if (bfa_ioc_get_fcmode(&fcport
->bfa
->ioc
))
3285 bfa_fcport_qos_stats_swap(&ret
->fcqos
,
3286 &fcport
->stats
->fcqos
);
3288 bfa_fcport_fcoe_stats_swap(&ret
->fcoe
,
3289 &fcport
->stats
->fcoe
);
3290 ret
->fcoe
.secs_reset
=
3291 time
- fcport
->stats_reset_time
;
3294 bfa_cb_queue_status(fcport
->bfa
, &cb
->hcb_qe
,
3295 fcport
->stats_status
);
3297 fcport
->stats_status
= BFA_STATUS_OK
;
3299 INIT_LIST_HEAD(&fcport
->stats_pending_q
);
3300 fcport
->stats_status
= BFA_STATUS_OK
;
3305 bfa_fcport_stats_get_timeout(void *cbarg
)
3307 struct bfa_fcport_s
*fcport
= (struct bfa_fcport_s
*) cbarg
;
3309 bfa_trc(fcport
->bfa
, fcport
->stats_qfull
);
3311 if (fcport
->stats_qfull
) {
3312 bfa_reqq_wcancel(&fcport
->stats_reqq_wait
);
3313 fcport
->stats_qfull
= BFA_FALSE
;
3316 fcport
->stats_status
= BFA_STATUS_ETIMER
;
3317 __bfa_cb_fcport_stats_get(fcport
, BFA_TRUE
);
3321 bfa_fcport_send_stats_get(void *cbarg
)
3323 struct bfa_fcport_s
*fcport
= (struct bfa_fcport_s
*) cbarg
;
3324 struct bfi_fcport_req_s
*msg
;
3326 msg
= bfa_reqq_next(fcport
->bfa
, BFA_REQQ_PORT
);
3329 fcport
->stats_qfull
= BFA_TRUE
;
3330 bfa_reqq_winit(&fcport
->stats_reqq_wait
,
3331 bfa_fcport_send_stats_get
, fcport
);
3332 bfa_reqq_wait(fcport
->bfa
, BFA_REQQ_PORT
,
3333 &fcport
->stats_reqq_wait
);
3336 fcport
->stats_qfull
= BFA_FALSE
;
3338 memset(msg
, 0, sizeof(struct bfi_fcport_req_s
));
3339 bfi_h2i_set(msg
->mh
, BFI_MC_FCPORT
, BFI_FCPORT_H2I_STATS_GET_REQ
,
3340 bfa_fn_lpu(fcport
->bfa
));
3341 bfa_reqq_produce(fcport
->bfa
, BFA_REQQ_PORT
, msg
->mh
);
3345 __bfa_cb_fcport_stats_clr(void *cbarg
, bfa_boolean_t complete
)
3347 struct bfa_fcport_s
*fcport
= (struct bfa_fcport_s
*) cbarg
;
3348 struct bfa_cb_pending_q_s
*cb
;
3349 struct list_head
*qe
, *qen
;
3353 * re-initialize time stamp for stats reset
3355 fcport
->stats_reset_time
= ktime_get_seconds();
3356 list_for_each_safe(qe
, qen
, &fcport
->statsclr_pending_q
) {
3357 bfa_q_deq(&fcport
->statsclr_pending_q
, &qe
);
3358 cb
= (struct bfa_cb_pending_q_s
*)qe
;
3359 bfa_cb_queue_status(fcport
->bfa
, &cb
->hcb_qe
,
3360 fcport
->stats_status
);
3362 fcport
->stats_status
= BFA_STATUS_OK
;
3364 INIT_LIST_HEAD(&fcport
->statsclr_pending_q
);
3365 fcport
->stats_status
= BFA_STATUS_OK
;
3370 bfa_fcport_stats_clr_timeout(void *cbarg
)
3372 struct bfa_fcport_s
*fcport
= (struct bfa_fcport_s
*) cbarg
;
3374 bfa_trc(fcport
->bfa
, fcport
->stats_qfull
);
3376 if (fcport
->stats_qfull
) {
3377 bfa_reqq_wcancel(&fcport
->stats_reqq_wait
);
3378 fcport
->stats_qfull
= BFA_FALSE
;
3381 fcport
->stats_status
= BFA_STATUS_ETIMER
;
3382 __bfa_cb_fcport_stats_clr(fcport
, BFA_TRUE
);
3386 bfa_fcport_send_stats_clear(void *cbarg
)
3388 struct bfa_fcport_s
*fcport
= (struct bfa_fcport_s
*) cbarg
;
3389 struct bfi_fcport_req_s
*msg
;
3391 msg
= bfa_reqq_next(fcport
->bfa
, BFA_REQQ_PORT
);
3394 fcport
->stats_qfull
= BFA_TRUE
;
3395 bfa_reqq_winit(&fcport
->stats_reqq_wait
,
3396 bfa_fcport_send_stats_clear
, fcport
);
3397 bfa_reqq_wait(fcport
->bfa
, BFA_REQQ_PORT
,
3398 &fcport
->stats_reqq_wait
);
3401 fcport
->stats_qfull
= BFA_FALSE
;
3403 memset(msg
, 0, sizeof(struct bfi_fcport_req_s
));
3404 bfi_h2i_set(msg
->mh
, BFI_MC_FCPORT
, BFI_FCPORT_H2I_STATS_CLEAR_REQ
,
3405 bfa_fn_lpu(fcport
->bfa
));
3406 bfa_reqq_produce(fcport
->bfa
, BFA_REQQ_PORT
, msg
->mh
);
3410 * Handle trunk SCN event from firmware.
3413 bfa_trunk_scn(struct bfa_fcport_s
*fcport
, struct bfi_fcport_trunk_scn_s
*scn
)
3415 struct bfa_fcport_trunk_s
*trunk
= &fcport
->trunk
;
3416 struct bfi_fcport_trunk_link_s
*tlink
;
3417 struct bfa_trunk_link_attr_s
*lattr
;
3418 enum bfa_trunk_state state_prev
;
3422 bfa_trc(fcport
->bfa
, fcport
->cfg
.trunked
);
3423 WARN_ON(scn
->trunk_state
!= BFA_TRUNK_ONLINE
&&
3424 scn
->trunk_state
!= BFA_TRUNK_OFFLINE
);
3426 bfa_trc(fcport
->bfa
, trunk
->attr
.state
);
3427 bfa_trc(fcport
->bfa
, scn
->trunk_state
);
3428 bfa_trc(fcport
->bfa
, scn
->trunk_speed
);
3431 * Save off new state for trunk attribute query
3433 state_prev
= trunk
->attr
.state
;
3434 if (fcport
->cfg
.trunked
&& (trunk
->attr
.state
!= BFA_TRUNK_DISABLED
))
3435 trunk
->attr
.state
= scn
->trunk_state
;
3436 trunk
->attr
.speed
= scn
->trunk_speed
;
3437 for (i
= 0; i
< BFA_TRUNK_MAX_PORTS
; i
++) {
3438 lattr
= &trunk
->attr
.link_attr
[i
];
3439 tlink
= &scn
->tlink
[i
];
3441 lattr
->link_state
= tlink
->state
;
3442 lattr
->trunk_wwn
= tlink
->trunk_wwn
;
3443 lattr
->fctl
= tlink
->fctl
;
3444 lattr
->speed
= tlink
->speed
;
3445 lattr
->deskew
= be32_to_cpu(tlink
->deskew
);
3447 if (tlink
->state
== BFA_TRUNK_LINK_STATE_UP
) {
3448 fcport
->speed
= tlink
->speed
;
3449 fcport
->topology
= BFA_PORT_TOPOLOGY_P2P
;
3453 bfa_trc(fcport
->bfa
, lattr
->link_state
);
3454 bfa_trc(fcport
->bfa
, lattr
->trunk_wwn
);
3455 bfa_trc(fcport
->bfa
, lattr
->fctl
);
3456 bfa_trc(fcport
->bfa
, lattr
->speed
);
3457 bfa_trc(fcport
->bfa
, lattr
->deskew
);
3462 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
3463 BFA_PL_EID_TRUNK_SCN
, 0, "Trunk up(0,1)");
3466 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
3467 BFA_PL_EID_TRUNK_SCN
, 0, "Trunk up(-,1)");
3470 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
3471 BFA_PL_EID_TRUNK_SCN
, 0, "Trunk up(0,-)");
3474 bfa_plog_str(fcport
->bfa
->plog
, BFA_PL_MID_HAL
,
3475 BFA_PL_EID_TRUNK_SCN
, 0, "Trunk down");
3479 * Notify upper layers if trunk state changed.
3481 if ((state_prev
!= trunk
->attr
.state
) ||
3482 (scn
->trunk_state
== BFA_TRUNK_OFFLINE
)) {
3483 bfa_fcport_scn(fcport
, (scn
->trunk_state
== BFA_TRUNK_ONLINE
) ?
3484 BFA_PORT_LINKUP
: BFA_PORT_LINKDOWN
, BFA_TRUE
);
3489 bfa_trunk_iocdisable(struct bfa_s
*bfa
)
3491 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3495 * In trunked mode, notify upper layers that link is down
3497 if (fcport
->cfg
.trunked
) {
3498 if (fcport
->trunk
.attr
.state
== BFA_TRUNK_ONLINE
)
3499 bfa_fcport_scn(fcport
, BFA_PORT_LINKDOWN
, BFA_TRUE
);
3501 fcport
->trunk
.attr
.state
= BFA_TRUNK_OFFLINE
;
3502 fcport
->trunk
.attr
.speed
= BFA_PORT_SPEED_UNKNOWN
;
3503 for (i
= 0; i
< BFA_TRUNK_MAX_PORTS
; i
++) {
3504 fcport
->trunk
.attr
.link_attr
[i
].trunk_wwn
= 0;
3505 fcport
->trunk
.attr
.link_attr
[i
].fctl
=
3506 BFA_TRUNK_LINK_FCTL_NORMAL
;
3507 fcport
->trunk
.attr
.link_attr
[i
].link_state
=
3508 BFA_TRUNK_LINK_STATE_DN_LINKDN
;
3509 fcport
->trunk
.attr
.link_attr
[i
].speed
=
3510 BFA_PORT_SPEED_UNKNOWN
;
3511 fcport
->trunk
.attr
.link_attr
[i
].deskew
= 0;
3517 * Called to initialize port attributes
3520 bfa_fcport_init(struct bfa_s
*bfa
)
3522 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3525 * Initialize port attributes from IOC hardware data.
3527 bfa_fcport_set_wwns(fcport
);
3528 if (fcport
->cfg
.maxfrsize
== 0)
3529 fcport
->cfg
.maxfrsize
= bfa_ioc_maxfrsize(&bfa
->ioc
);
3530 fcport
->cfg
.rx_bbcredit
= bfa_ioc_rx_bbcredit(&bfa
->ioc
);
3531 fcport
->speed_sup
= bfa_ioc_speed_sup(&bfa
->ioc
);
3533 if (bfa_fcport_is_pbcdisabled(bfa
))
3534 bfa
->modules
.port
.pbc_disabled
= BFA_TRUE
;
3536 WARN_ON(!fcport
->cfg
.maxfrsize
);
3537 WARN_ON(!fcport
->cfg
.rx_bbcredit
);
3538 WARN_ON(!fcport
->speed_sup
);
3542 * Firmware message handler.
3545 bfa_fcport_isr(struct bfa_s
*bfa
, struct bfi_msg_s
*msg
)
3547 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3548 union bfi_fcport_i2h_msg_u i2hmsg
;
3551 fcport
->event_arg
.i2hmsg
= i2hmsg
;
3553 bfa_trc(bfa
, msg
->mhdr
.msg_id
);
3554 bfa_trc(bfa
, bfa_sm_to_state(hal_port_sm_table
, fcport
->sm
));
3556 switch (msg
->mhdr
.msg_id
) {
3557 case BFI_FCPORT_I2H_ENABLE_RSP
:
3558 if (fcport
->msgtag
== i2hmsg
.penable_rsp
->msgtag
) {
3560 fcport
->stats_dma_ready
= BFA_TRUE
;
3561 if (fcport
->use_flash_cfg
) {
3562 fcport
->cfg
= i2hmsg
.penable_rsp
->port_cfg
;
3563 fcport
->cfg
.maxfrsize
=
3564 cpu_to_be16(fcport
->cfg
.maxfrsize
);
3565 fcport
->cfg
.path_tov
=
3566 cpu_to_be16(fcport
->cfg
.path_tov
);
3567 fcport
->cfg
.q_depth
=
3568 cpu_to_be16(fcport
->cfg
.q_depth
);
3570 if (fcport
->cfg
.trunked
)
3571 fcport
->trunk
.attr
.state
=
3574 fcport
->trunk
.attr
.state
=
3576 fcport
->qos_attr
.qos_bw
=
3577 i2hmsg
.penable_rsp
->port_cfg
.qos_bw
;
3578 fcport
->use_flash_cfg
= BFA_FALSE
;
3581 if (fcport
->cfg
.qos_enabled
)
3582 fcport
->qos_attr
.state
= BFA_QOS_OFFLINE
;
3584 fcport
->qos_attr
.state
= BFA_QOS_DISABLED
;
3586 fcport
->qos_attr
.qos_bw_op
=
3587 i2hmsg
.penable_rsp
->port_cfg
.qos_bw
;
3589 if (fcport
->cfg
.bb_cr_enabled
)
3590 fcport
->bbcr_attr
.state
= BFA_BBCR_OFFLINE
;
3592 fcport
->bbcr_attr
.state
= BFA_BBCR_DISABLED
;
3594 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_FWRSP
);
3598 case BFI_FCPORT_I2H_DISABLE_RSP
:
3599 if (fcport
->msgtag
== i2hmsg
.penable_rsp
->msgtag
)
3600 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_FWRSP
);
3603 case BFI_FCPORT_I2H_EVENT
:
3604 if (fcport
->cfg
.bb_cr_enabled
)
3605 fcport
->bbcr_attr
.state
= BFA_BBCR_OFFLINE
;
3607 fcport
->bbcr_attr
.state
= BFA_BBCR_DISABLED
;
3609 if (i2hmsg
.event
->link_state
.linkstate
== BFA_PORT_LINKUP
)
3610 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_LINKUP
);
3612 if (i2hmsg
.event
->link_state
.linkstate_rsn
==
3613 BFA_PORT_LINKSTATE_RSN_FAA_MISCONFIG
)
3614 bfa_sm_send_event(fcport
,
3615 BFA_FCPORT_SM_FAA_MISCONFIG
);
3617 bfa_sm_send_event(fcport
,
3618 BFA_FCPORT_SM_LINKDOWN
);
3620 fcport
->qos_attr
.qos_bw_op
=
3621 i2hmsg
.event
->link_state
.qos_attr
.qos_bw_op
;
3624 case BFI_FCPORT_I2H_TRUNK_SCN
:
3625 bfa_trunk_scn(fcport
, i2hmsg
.trunk_scn
);
3628 case BFI_FCPORT_I2H_STATS_GET_RSP
:
3630 * check for timer pop before processing the rsp
3632 if (list_empty(&fcport
->stats_pending_q
) ||
3633 (fcport
->stats_status
== BFA_STATUS_ETIMER
))
3636 bfa_timer_stop(&fcport
->timer
);
3637 fcport
->stats_status
= i2hmsg
.pstatsget_rsp
->status
;
3638 __bfa_cb_fcport_stats_get(fcport
, BFA_TRUE
);
3641 case BFI_FCPORT_I2H_STATS_CLEAR_RSP
:
3643 * check for timer pop before processing the rsp
3645 if (list_empty(&fcport
->statsclr_pending_q
) ||
3646 (fcport
->stats_status
== BFA_STATUS_ETIMER
))
3649 bfa_timer_stop(&fcport
->timer
);
3650 fcport
->stats_status
= BFA_STATUS_OK
;
3651 __bfa_cb_fcport_stats_clr(fcport
, BFA_TRUE
);
3654 case BFI_FCPORT_I2H_ENABLE_AEN
:
3655 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_ENABLE
);
3658 case BFI_FCPORT_I2H_DISABLE_AEN
:
3659 bfa_sm_send_event(fcport
, BFA_FCPORT_SM_DISABLE
);
3669 * Registered callback for port events.
3672 bfa_fcport_event_register(struct bfa_s
*bfa
,
3673 void (*cbfn
) (void *cbarg
,
3674 enum bfa_port_linkstate event
),
3677 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3679 fcport
->event_cbfn
= cbfn
;
3680 fcport
->event_cbarg
= cbarg
;
3684 bfa_fcport_enable(struct bfa_s
*bfa
)
3686 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3688 if (bfa_fcport_is_pbcdisabled(bfa
))
3689 return BFA_STATUS_PBC
;
3691 if (bfa_ioc_is_disabled(&bfa
->ioc
))
3692 return BFA_STATUS_IOC_DISABLED
;
3694 if (fcport
->diag_busy
)
3695 return BFA_STATUS_DIAG_BUSY
;
3697 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_ENABLE
);
3698 return BFA_STATUS_OK
;
3702 bfa_fcport_disable(struct bfa_s
*bfa
)
3704 if (bfa_fcport_is_pbcdisabled(bfa
))
3705 return BFA_STATUS_PBC
;
3707 if (bfa_ioc_is_disabled(&bfa
->ioc
))
3708 return BFA_STATUS_IOC_DISABLED
;
3710 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_DISABLE
);
3711 return BFA_STATUS_OK
;
3714 /* If PBC is disabled on port, return error */
3716 bfa_fcport_is_pbcdisabled(struct bfa_s
*bfa
)
3718 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3719 struct bfa_iocfc_s
*iocfc
= &bfa
->iocfc
;
3720 struct bfi_iocfc_cfgrsp_s
*cfgrsp
= iocfc
->cfgrsp
;
3722 if (cfgrsp
->pbc_cfg
.port_enabled
== BFI_PBC_PORT_DISABLED
) {
3723 bfa_trc(bfa
, fcport
->pwwn
);
3724 return BFA_STATUS_PBC
;
3726 return BFA_STATUS_OK
;
3730 * Configure port speed.
3733 bfa_fcport_cfg_speed(struct bfa_s
*bfa
, enum bfa_port_speed speed
)
3735 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3737 bfa_trc(bfa
, speed
);
3739 if (fcport
->cfg
.trunked
== BFA_TRUE
)
3740 return BFA_STATUS_TRUNK_ENABLED
;
3741 if ((fcport
->cfg
.topology
== BFA_PORT_TOPOLOGY_LOOP
) &&
3742 (speed
== BFA_PORT_SPEED_16GBPS
))
3743 return BFA_STATUS_UNSUPP_SPEED
;
3744 if ((speed
!= BFA_PORT_SPEED_AUTO
) && (speed
> fcport
->speed_sup
)) {
3745 bfa_trc(bfa
, fcport
->speed_sup
);
3746 return BFA_STATUS_UNSUPP_SPEED
;
3749 /* Port speed entered needs to be checked */
3750 if (bfa_ioc_get_type(&fcport
->bfa
->ioc
) == BFA_IOC_TYPE_FC
) {
3751 /* For CT2, 1G is not supported */
3752 if ((speed
== BFA_PORT_SPEED_1GBPS
) &&
3753 (bfa_asic_id_ct2(bfa
->ioc
.pcidev
.device_id
)))
3754 return BFA_STATUS_UNSUPP_SPEED
;
3756 /* Already checked for Auto Speed and Max Speed supp */
3757 if (!(speed
== BFA_PORT_SPEED_1GBPS
||
3758 speed
== BFA_PORT_SPEED_2GBPS
||
3759 speed
== BFA_PORT_SPEED_4GBPS
||
3760 speed
== BFA_PORT_SPEED_8GBPS
||
3761 speed
== BFA_PORT_SPEED_16GBPS
||
3762 speed
== BFA_PORT_SPEED_AUTO
))
3763 return BFA_STATUS_UNSUPP_SPEED
;
3765 if (speed
!= BFA_PORT_SPEED_10GBPS
)
3766 return BFA_STATUS_UNSUPP_SPEED
;
3769 fcport
->cfg
.speed
= speed
;
3771 return BFA_STATUS_OK
;
3775 * Get current speed.
3778 bfa_fcport_get_speed(struct bfa_s
*bfa
)
3780 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3782 return fcport
->speed
;
3786 * Configure port topology.
3789 bfa_fcport_cfg_topology(struct bfa_s
*bfa
, enum bfa_port_topology topology
)
3791 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3793 bfa_trc(bfa
, topology
);
3794 bfa_trc(bfa
, fcport
->cfg
.topology
);
3797 case BFA_PORT_TOPOLOGY_P2P
:
3800 case BFA_PORT_TOPOLOGY_LOOP
:
3801 if ((bfa_fcport_is_qos_enabled(bfa
) != BFA_FALSE
) ||
3802 (fcport
->qos_attr
.state
!= BFA_QOS_DISABLED
))
3803 return BFA_STATUS_ERROR_QOS_ENABLED
;
3804 if (fcport
->cfg
.ratelimit
!= BFA_FALSE
)
3805 return BFA_STATUS_ERROR_TRL_ENABLED
;
3806 if ((bfa_fcport_is_trunk_enabled(bfa
) != BFA_FALSE
) ||
3807 (fcport
->trunk
.attr
.state
!= BFA_TRUNK_DISABLED
))
3808 return BFA_STATUS_ERROR_TRUNK_ENABLED
;
3809 if ((bfa_fcport_get_speed(bfa
) == BFA_PORT_SPEED_16GBPS
) ||
3810 (fcport
->cfg
.speed
== BFA_PORT_SPEED_16GBPS
))
3811 return BFA_STATUS_UNSUPP_SPEED
;
3812 if (bfa_mfg_is_mezz(bfa
->ioc
.attr
->card_type
))
3813 return BFA_STATUS_LOOP_UNSUPP_MEZZ
;
3814 if (bfa_fcport_is_dport(bfa
) != BFA_FALSE
)
3815 return BFA_STATUS_DPORT_ERR
;
3816 if (bfa_fcport_is_ddport(bfa
) != BFA_FALSE
)
3817 return BFA_STATUS_DPORT_ERR
;
3820 case BFA_PORT_TOPOLOGY_AUTO
:
3824 return BFA_STATUS_EINVAL
;
3827 fcport
->cfg
.topology
= topology
;
3828 return BFA_STATUS_OK
;
3832 * Get current topology.
3834 enum bfa_port_topology
3835 bfa_fcport_get_topology(struct bfa_s
*bfa
)
3837 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3839 return fcport
->topology
;
3843 * Get config topology.
3845 enum bfa_port_topology
3846 bfa_fcport_get_cfg_topology(struct bfa_s
*bfa
)
3848 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3850 return fcport
->cfg
.topology
;
3854 bfa_fcport_cfg_hardalpa(struct bfa_s
*bfa
, u8 alpa
)
3856 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3859 bfa_trc(bfa
, fcport
->cfg
.cfg_hardalpa
);
3860 bfa_trc(bfa
, fcport
->cfg
.hardalpa
);
3862 fcport
->cfg
.cfg_hardalpa
= BFA_TRUE
;
3863 fcport
->cfg
.hardalpa
= alpa
;
3865 return BFA_STATUS_OK
;
3869 bfa_fcport_clr_hardalpa(struct bfa_s
*bfa
)
3871 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3873 bfa_trc(bfa
, fcport
->cfg
.cfg_hardalpa
);
3874 bfa_trc(bfa
, fcport
->cfg
.hardalpa
);
3876 fcport
->cfg
.cfg_hardalpa
= BFA_FALSE
;
3877 return BFA_STATUS_OK
;
3881 bfa_fcport_get_hardalpa(struct bfa_s
*bfa
, u8
*alpa
)
3883 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3885 *alpa
= fcport
->cfg
.hardalpa
;
3886 return fcport
->cfg
.cfg_hardalpa
;
3890 bfa_fcport_get_myalpa(struct bfa_s
*bfa
)
3892 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3894 return fcport
->myalpa
;
3898 bfa_fcport_cfg_maxfrsize(struct bfa_s
*bfa
, u16 maxfrsize
)
3900 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3902 bfa_trc(bfa
, maxfrsize
);
3903 bfa_trc(bfa
, fcport
->cfg
.maxfrsize
);
3906 if ((maxfrsize
> FC_MAX_PDUSZ
) || (maxfrsize
< FC_MIN_PDUSZ
))
3907 return BFA_STATUS_INVLD_DFSZ
;
3909 /* power of 2, if not the max frame size of 2112 */
3910 if ((maxfrsize
!= FC_MAX_PDUSZ
) && (maxfrsize
& (maxfrsize
- 1)))
3911 return BFA_STATUS_INVLD_DFSZ
;
3913 fcport
->cfg
.maxfrsize
= maxfrsize
;
3914 return BFA_STATUS_OK
;
3918 bfa_fcport_get_maxfrsize(struct bfa_s
*bfa
)
3920 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3922 return fcport
->cfg
.maxfrsize
;
3926 bfa_fcport_get_rx_bbcredit(struct bfa_s
*bfa
)
3928 if (bfa_fcport_get_topology(bfa
) != BFA_PORT_TOPOLOGY_LOOP
)
3929 return (BFA_FCPORT_MOD(bfa
))->cfg
.rx_bbcredit
;
3936 bfa_fcport_set_tx_bbcredit(struct bfa_s
*bfa
, u16 tx_bbcredit
)
3938 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3940 fcport
->cfg
.tx_bbcredit
= (u8
)tx_bbcredit
;
3944 * Get port attributes.
3948 bfa_fcport_get_wwn(struct bfa_s
*bfa
, bfa_boolean_t node
)
3950 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3952 return fcport
->nwwn
;
3954 return fcport
->pwwn
;
3958 bfa_fcport_get_attr(struct bfa_s
*bfa
, struct bfa_port_attr_s
*attr
)
3960 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
3962 memset(attr
, 0, sizeof(struct bfa_port_attr_s
));
3964 attr
->nwwn
= fcport
->nwwn
;
3965 attr
->pwwn
= fcport
->pwwn
;
3967 attr
->factorypwwn
= bfa
->ioc
.attr
->mfg_pwwn
;
3968 attr
->factorynwwn
= bfa
->ioc
.attr
->mfg_nwwn
;
3970 memcpy(&attr
->pport_cfg
, &fcport
->cfg
,
3971 sizeof(struct bfa_port_cfg_s
));
3972 /* speed attributes */
3973 attr
->pport_cfg
.speed
= fcport
->cfg
.speed
;
3974 attr
->speed_supported
= fcport
->speed_sup
;
3975 attr
->speed
= fcport
->speed
;
3976 attr
->cos_supported
= FC_CLASS_3
;
3978 /* topology attributes */
3979 attr
->pport_cfg
.topology
= fcport
->cfg
.topology
;
3980 attr
->topology
= fcport
->topology
;
3981 attr
->pport_cfg
.trunked
= fcport
->cfg
.trunked
;
3983 /* beacon attributes */
3984 attr
->beacon
= fcport
->beacon
;
3985 attr
->link_e2e_beacon
= fcport
->link_e2e_beacon
;
3987 attr
->pport_cfg
.path_tov
= bfa_fcpim_path_tov_get(bfa
);
3988 attr
->pport_cfg
.q_depth
= bfa_fcpim_qdepth_get(bfa
);
3989 attr
->port_state
= bfa_sm_to_state(hal_port_sm_table
, fcport
->sm
);
3991 attr
->fec_state
= fcport
->fec_state
;
3993 /* PBC Disabled State */
3994 if (bfa_fcport_is_pbcdisabled(bfa
))
3995 attr
->port_state
= BFA_PORT_ST_PREBOOT_DISABLED
;
3997 if (bfa_ioc_is_disabled(&fcport
->bfa
->ioc
))
3998 attr
->port_state
= BFA_PORT_ST_IOCDIS
;
3999 else if (bfa_ioc_fw_mismatch(&fcport
->bfa
->ioc
))
4000 attr
->port_state
= BFA_PORT_ST_FWMISMATCH
;
4004 attr
->fcoe_vlan
= fcport
->fcoe_vlan
;
4007 #define BFA_FCPORT_STATS_TOV 1000
4010 * Fetch port statistics (FCQoS or FCoE).
4013 bfa_fcport_get_stats(struct bfa_s
*bfa
, struct bfa_cb_pending_q_s
*cb
)
4015 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4017 if (!bfa_iocfc_is_operational(bfa
) ||
4018 !fcport
->stats_dma_ready
)
4019 return BFA_STATUS_IOC_NON_OP
;
4021 if (!list_empty(&fcport
->statsclr_pending_q
))
4022 return BFA_STATUS_DEVBUSY
;
4024 if (list_empty(&fcport
->stats_pending_q
)) {
4025 list_add_tail(&cb
->hcb_qe
.qe
, &fcport
->stats_pending_q
);
4026 bfa_fcport_send_stats_get(fcport
);
4027 bfa_timer_start(bfa
, &fcport
->timer
,
4028 bfa_fcport_stats_get_timeout
,
4029 fcport
, BFA_FCPORT_STATS_TOV
);
4031 list_add_tail(&cb
->hcb_qe
.qe
, &fcport
->stats_pending_q
);
4033 return BFA_STATUS_OK
;
4037 * Reset port statistics (FCQoS or FCoE).
4040 bfa_fcport_clear_stats(struct bfa_s
*bfa
, struct bfa_cb_pending_q_s
*cb
)
4042 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4044 if (!bfa_iocfc_is_operational(bfa
) ||
4045 !fcport
->stats_dma_ready
)
4046 return BFA_STATUS_IOC_NON_OP
;
4048 if (!list_empty(&fcport
->stats_pending_q
))
4049 return BFA_STATUS_DEVBUSY
;
4051 if (list_empty(&fcport
->statsclr_pending_q
)) {
4052 list_add_tail(&cb
->hcb_qe
.qe
, &fcport
->statsclr_pending_q
);
4053 bfa_fcport_send_stats_clear(fcport
);
4054 bfa_timer_start(bfa
, &fcport
->timer
,
4055 bfa_fcport_stats_clr_timeout
,
4056 fcport
, BFA_FCPORT_STATS_TOV
);
4058 list_add_tail(&cb
->hcb_qe
.qe
, &fcport
->statsclr_pending_q
);
4060 return BFA_STATUS_OK
;
4064 * Fetch port attributes.
4067 bfa_fcport_is_disabled(struct bfa_s
*bfa
)
4069 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4071 return bfa_sm_to_state(hal_port_sm_table
, fcport
->sm
) ==
4072 BFA_PORT_ST_DISABLED
;
4077 bfa_fcport_is_dport(struct bfa_s
*bfa
)
4079 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4081 return (bfa_sm_to_state(hal_port_sm_table
, fcport
->sm
) ==
4086 bfa_fcport_is_ddport(struct bfa_s
*bfa
)
4088 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4090 return (bfa_sm_to_state(hal_port_sm_table
, fcport
->sm
) ==
4091 BFA_PORT_ST_DDPORT
);
4095 bfa_fcport_set_qos_bw(struct bfa_s
*bfa
, struct bfa_qos_bw_s
*qos_bw
)
4097 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4098 enum bfa_ioc_type_e ioc_type
= bfa_get_type(bfa
);
4100 bfa_trc(bfa
, ioc_type
);
4102 if ((qos_bw
->high
== 0) || (qos_bw
->med
== 0) || (qos_bw
->low
== 0))
4103 return BFA_STATUS_QOS_BW_INVALID
;
4105 if ((qos_bw
->high
+ qos_bw
->med
+ qos_bw
->low
) != 100)
4106 return BFA_STATUS_QOS_BW_INVALID
;
4108 if ((qos_bw
->med
> qos_bw
->high
) || (qos_bw
->low
> qos_bw
->med
) ||
4109 (qos_bw
->low
> qos_bw
->high
))
4110 return BFA_STATUS_QOS_BW_INVALID
;
4112 if ((ioc_type
== BFA_IOC_TYPE_FC
) &&
4113 (fcport
->cfg
.topology
!= BFA_PORT_TOPOLOGY_LOOP
))
4114 fcport
->cfg
.qos_bw
= *qos_bw
;
4116 return BFA_STATUS_OK
;
4120 bfa_fcport_is_ratelim(struct bfa_s
*bfa
)
4122 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4124 return fcport
->cfg
.ratelimit
? BFA_TRUE
: BFA_FALSE
;
4129 * Enable/Disable FAA feature in port config
4132 bfa_fcport_cfg_faa(struct bfa_s
*bfa
, u8 state
)
4134 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4136 bfa_trc(bfa
, state
);
4137 fcport
->cfg
.faa_state
= state
;
4141 * Get default minimum ratelim speed
4144 bfa_fcport_get_ratelim_speed(struct bfa_s
*bfa
)
4146 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4148 bfa_trc(bfa
, fcport
->cfg
.trl_def_speed
);
4149 return fcport
->cfg
.trl_def_speed
;
4154 bfa_fcport_beacon(void *dev
, bfa_boolean_t beacon
,
4155 bfa_boolean_t link_e2e_beacon
)
4157 struct bfa_s
*bfa
= dev
;
4158 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4160 bfa_trc(bfa
, beacon
);
4161 bfa_trc(bfa
, link_e2e_beacon
);
4162 bfa_trc(bfa
, fcport
->beacon
);
4163 bfa_trc(bfa
, fcport
->link_e2e_beacon
);
4165 fcport
->beacon
= beacon
;
4166 fcport
->link_e2e_beacon
= link_e2e_beacon
;
4170 bfa_fcport_is_linkup(struct bfa_s
*bfa
)
4172 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4174 return (!fcport
->cfg
.trunked
&&
4175 bfa_sm_cmp_state(fcport
, bfa_fcport_sm_linkup
)) ||
4176 (fcport
->cfg
.trunked
&&
4177 fcport
->trunk
.attr
.state
== BFA_TRUNK_ONLINE
);
4181 bfa_fcport_is_qos_enabled(struct bfa_s
*bfa
)
4183 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4185 return fcport
->cfg
.qos_enabled
;
4189 bfa_fcport_is_trunk_enabled(struct bfa_s
*bfa
)
4191 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4193 return fcport
->cfg
.trunked
;
4197 bfa_fcport_cfg_bbcr(struct bfa_s
*bfa
, bfa_boolean_t on_off
, u8 bb_scn
)
4199 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4201 bfa_trc(bfa
, on_off
);
4203 if (bfa_ioc_get_type(&fcport
->bfa
->ioc
) != BFA_IOC_TYPE_FC
)
4204 return BFA_STATUS_BBCR_FC_ONLY
;
4206 if (bfa_mfg_is_mezz(bfa
->ioc
.attr
->card_type
) &&
4207 (bfa
->ioc
.attr
->card_type
!= BFA_MFG_TYPE_CHINOOK
))
4208 return BFA_STATUS_CMD_NOTSUPP_MEZZ
;
4211 if (fcport
->cfg
.topology
== BFA_PORT_TOPOLOGY_LOOP
)
4212 return BFA_STATUS_TOPOLOGY_LOOP
;
4214 if (fcport
->cfg
.qos_enabled
)
4215 return BFA_STATUS_ERROR_QOS_ENABLED
;
4217 if (fcport
->cfg
.trunked
)
4218 return BFA_STATUS_TRUNK_ENABLED
;
4220 if ((fcport
->cfg
.speed
!= BFA_PORT_SPEED_AUTO
) &&
4221 (fcport
->cfg
.speed
< bfa_ioc_speed_sup(&bfa
->ioc
)))
4222 return BFA_STATUS_ERR_BBCR_SPEED_UNSUPPORT
;
4224 if (bfa_ioc_speed_sup(&bfa
->ioc
) < BFA_PORT_SPEED_8GBPS
)
4225 return BFA_STATUS_FEATURE_NOT_SUPPORTED
;
4227 if (fcport
->cfg
.bb_cr_enabled
) {
4228 if (bb_scn
!= fcport
->cfg
.bb_scn
)
4229 return BFA_STATUS_BBCR_CFG_NO_CHANGE
;
4231 return BFA_STATUS_NO_CHANGE
;
4234 if ((bb_scn
== 0) || (bb_scn
> BFA_BB_SCN_MAX
))
4235 bb_scn
= BFA_BB_SCN_DEF
;
4237 fcport
->cfg
.bb_cr_enabled
= on_off
;
4238 fcport
->cfg
.bb_scn
= bb_scn
;
4240 if (!fcport
->cfg
.bb_cr_enabled
)
4241 return BFA_STATUS_NO_CHANGE
;
4243 fcport
->cfg
.bb_cr_enabled
= on_off
;
4244 fcport
->cfg
.bb_scn
= 0;
4247 return BFA_STATUS_OK
;
4251 bfa_fcport_get_bbcr_attr(struct bfa_s
*bfa
,
4252 struct bfa_bbcr_attr_s
*bbcr_attr
)
4254 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(bfa
);
4256 if (bfa_ioc_get_type(&fcport
->bfa
->ioc
) != BFA_IOC_TYPE_FC
)
4257 return BFA_STATUS_BBCR_FC_ONLY
;
4259 if (fcport
->cfg
.topology
== BFA_PORT_TOPOLOGY_LOOP
)
4260 return BFA_STATUS_TOPOLOGY_LOOP
;
4262 *bbcr_attr
= fcport
->bbcr_attr
;
4264 return BFA_STATUS_OK
;
4268 bfa_fcport_dportenable(struct bfa_s
*bfa
)
4271 * Assume caller check for port is in disable state
4273 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_DPORTENABLE
);
4274 bfa_port_set_dportenabled(&bfa
->modules
.port
, BFA_TRUE
);
4278 bfa_fcport_dportdisable(struct bfa_s
*bfa
)
4281 * Assume caller check for port is in disable state
4283 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_DPORTDISABLE
);
4284 bfa_port_set_dportenabled(&bfa
->modules
.port
, BFA_FALSE
);
4288 bfa_fcport_ddportenable(struct bfa_s
*bfa
)
4291 * Assume caller check for port is in disable state
4293 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_DDPORTENABLE
);
4297 bfa_fcport_ddportdisable(struct bfa_s
*bfa
)
4300 * Assume caller check for port is in disable state
4302 bfa_sm_send_event(BFA_FCPORT_MOD(bfa
), BFA_FCPORT_SM_DDPORTDISABLE
);
4306 * Rport State machine functions
4309 * Beginning state, only online event expected.
4312 bfa_rport_sm_uninit(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4314 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4315 bfa_trc(rp
->bfa
, event
);
4318 case BFA_RPORT_SM_CREATE
:
4319 bfa_stats(rp
, sm_un_cr
);
4320 bfa_sm_set_state(rp
, bfa_rport_sm_created
);
4324 bfa_stats(rp
, sm_un_unexp
);
4325 bfa_sm_fault(rp
->bfa
, event
);
4330 bfa_rport_sm_created(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4332 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4333 bfa_trc(rp
->bfa
, event
);
4336 case BFA_RPORT_SM_ONLINE
:
4337 bfa_stats(rp
, sm_cr_on
);
4338 if (bfa_rport_send_fwcreate(rp
))
4339 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate
);
4341 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate_qfull
);
4344 case BFA_RPORT_SM_DELETE
:
4345 bfa_stats(rp
, sm_cr_del
);
4346 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4350 case BFA_RPORT_SM_HWFAIL
:
4351 bfa_stats(rp
, sm_cr_hwf
);
4352 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4356 bfa_stats(rp
, sm_cr_unexp
);
4357 bfa_sm_fault(rp
->bfa
, event
);
4362 * Waiting for rport create response from firmware.
4365 bfa_rport_sm_fwcreate(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4367 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4368 bfa_trc(rp
->bfa
, event
);
4371 case BFA_RPORT_SM_FWRSP
:
4372 bfa_stats(rp
, sm_fwc_rsp
);
4373 bfa_sm_set_state(rp
, bfa_rport_sm_online
);
4374 bfa_rport_online_cb(rp
);
4377 case BFA_RPORT_SM_DELETE
:
4378 bfa_stats(rp
, sm_fwc_del
);
4379 bfa_sm_set_state(rp
, bfa_rport_sm_delete_pending
);
4382 case BFA_RPORT_SM_OFFLINE
:
4383 bfa_stats(rp
, sm_fwc_off
);
4384 bfa_sm_set_state(rp
, bfa_rport_sm_offline_pending
);
4387 case BFA_RPORT_SM_HWFAIL
:
4388 bfa_stats(rp
, sm_fwc_hwf
);
4389 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4393 bfa_stats(rp
, sm_fwc_unexp
);
4394 bfa_sm_fault(rp
->bfa
, event
);
4399 * Request queue is full, awaiting queue resume to send create request.
4402 bfa_rport_sm_fwcreate_qfull(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4404 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4405 bfa_trc(rp
->bfa
, event
);
4408 case BFA_RPORT_SM_QRESUME
:
4409 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate
);
4410 bfa_rport_send_fwcreate(rp
);
4413 case BFA_RPORT_SM_DELETE
:
4414 bfa_stats(rp
, sm_fwc_del
);
4415 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4416 bfa_reqq_wcancel(&rp
->reqq_wait
);
4420 case BFA_RPORT_SM_OFFLINE
:
4421 bfa_stats(rp
, sm_fwc_off
);
4422 bfa_sm_set_state(rp
, bfa_rport_sm_offline
);
4423 bfa_reqq_wcancel(&rp
->reqq_wait
);
4424 bfa_rport_offline_cb(rp
);
4427 case BFA_RPORT_SM_HWFAIL
:
4428 bfa_stats(rp
, sm_fwc_hwf
);
4429 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4430 bfa_reqq_wcancel(&rp
->reqq_wait
);
4434 bfa_stats(rp
, sm_fwc_unexp
);
4435 bfa_sm_fault(rp
->bfa
, event
);
4440 * Online state - normal parking state.
4443 bfa_rport_sm_online(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4445 struct bfi_rport_qos_scn_s
*qos_scn
;
4447 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4448 bfa_trc(rp
->bfa
, event
);
4451 case BFA_RPORT_SM_OFFLINE
:
4452 bfa_stats(rp
, sm_on_off
);
4453 if (bfa_rport_send_fwdelete(rp
))
4454 bfa_sm_set_state(rp
, bfa_rport_sm_fwdelete
);
4456 bfa_sm_set_state(rp
, bfa_rport_sm_fwdelete_qfull
);
4459 case BFA_RPORT_SM_DELETE
:
4460 bfa_stats(rp
, sm_on_del
);
4461 if (bfa_rport_send_fwdelete(rp
))
4462 bfa_sm_set_state(rp
, bfa_rport_sm_deleting
);
4464 bfa_sm_set_state(rp
, bfa_rport_sm_deleting_qfull
);
4467 case BFA_RPORT_SM_HWFAIL
:
4468 bfa_stats(rp
, sm_on_hwf
);
4469 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4472 case BFA_RPORT_SM_SET_SPEED
:
4473 bfa_rport_send_fwspeed(rp
);
4476 case BFA_RPORT_SM_QOS_SCN
:
4477 qos_scn
= (struct bfi_rport_qos_scn_s
*) rp
->event_arg
.fw_msg
;
4478 rp
->qos_attr
= qos_scn
->new_qos_attr
;
4479 bfa_trc(rp
->bfa
, qos_scn
->old_qos_attr
.qos_flow_id
);
4480 bfa_trc(rp
->bfa
, qos_scn
->new_qos_attr
.qos_flow_id
);
4481 bfa_trc(rp
->bfa
, qos_scn
->old_qos_attr
.qos_priority
);
4482 bfa_trc(rp
->bfa
, qos_scn
->new_qos_attr
.qos_priority
);
4484 qos_scn
->old_qos_attr
.qos_flow_id
=
4485 be32_to_cpu(qos_scn
->old_qos_attr
.qos_flow_id
);
4486 qos_scn
->new_qos_attr
.qos_flow_id
=
4487 be32_to_cpu(qos_scn
->new_qos_attr
.qos_flow_id
);
4489 if (qos_scn
->old_qos_attr
.qos_flow_id
!=
4490 qos_scn
->new_qos_attr
.qos_flow_id
)
4491 bfa_cb_rport_qos_scn_flowid(rp
->rport_drv
,
4492 qos_scn
->old_qos_attr
,
4493 qos_scn
->new_qos_attr
);
4494 if (qos_scn
->old_qos_attr
.qos_priority
!=
4495 qos_scn
->new_qos_attr
.qos_priority
)
4496 bfa_cb_rport_qos_scn_prio(rp
->rport_drv
,
4497 qos_scn
->old_qos_attr
,
4498 qos_scn
->new_qos_attr
);
4502 bfa_stats(rp
, sm_on_unexp
);
4503 bfa_sm_fault(rp
->bfa
, event
);
4508 * Firmware rport is being deleted - awaiting f/w response.
4511 bfa_rport_sm_fwdelete(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4513 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4514 bfa_trc(rp
->bfa
, event
);
4517 case BFA_RPORT_SM_FWRSP
:
4518 bfa_stats(rp
, sm_fwd_rsp
);
4519 bfa_sm_set_state(rp
, bfa_rport_sm_offline
);
4520 bfa_rport_offline_cb(rp
);
4523 case BFA_RPORT_SM_DELETE
:
4524 bfa_stats(rp
, sm_fwd_del
);
4525 bfa_sm_set_state(rp
, bfa_rport_sm_deleting
);
4528 case BFA_RPORT_SM_HWFAIL
:
4529 bfa_stats(rp
, sm_fwd_hwf
);
4530 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4531 bfa_rport_offline_cb(rp
);
4535 bfa_stats(rp
, sm_fwd_unexp
);
4536 bfa_sm_fault(rp
->bfa
, event
);
4541 bfa_rport_sm_fwdelete_qfull(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4543 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4544 bfa_trc(rp
->bfa
, event
);
4547 case BFA_RPORT_SM_QRESUME
:
4548 bfa_sm_set_state(rp
, bfa_rport_sm_fwdelete
);
4549 bfa_rport_send_fwdelete(rp
);
4552 case BFA_RPORT_SM_DELETE
:
4553 bfa_stats(rp
, sm_fwd_del
);
4554 bfa_sm_set_state(rp
, bfa_rport_sm_deleting_qfull
);
4557 case BFA_RPORT_SM_HWFAIL
:
4558 bfa_stats(rp
, sm_fwd_hwf
);
4559 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4560 bfa_reqq_wcancel(&rp
->reqq_wait
);
4561 bfa_rport_offline_cb(rp
);
4565 bfa_stats(rp
, sm_fwd_unexp
);
4566 bfa_sm_fault(rp
->bfa
, event
);
4574 bfa_rport_sm_offline(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4576 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4577 bfa_trc(rp
->bfa
, event
);
4580 case BFA_RPORT_SM_DELETE
:
4581 bfa_stats(rp
, sm_off_del
);
4582 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4586 case BFA_RPORT_SM_ONLINE
:
4587 bfa_stats(rp
, sm_off_on
);
4588 if (bfa_rport_send_fwcreate(rp
))
4589 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate
);
4591 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate_qfull
);
4594 case BFA_RPORT_SM_HWFAIL
:
4595 bfa_stats(rp
, sm_off_hwf
);
4596 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4599 case BFA_RPORT_SM_OFFLINE
:
4600 bfa_rport_offline_cb(rp
);
4604 bfa_stats(rp
, sm_off_unexp
);
4605 bfa_sm_fault(rp
->bfa
, event
);
4610 * Rport is deleted, waiting for firmware response to delete.
4613 bfa_rport_sm_deleting(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4615 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4616 bfa_trc(rp
->bfa
, event
);
4619 case BFA_RPORT_SM_FWRSP
:
4620 bfa_stats(rp
, sm_del_fwrsp
);
4621 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4625 case BFA_RPORT_SM_HWFAIL
:
4626 bfa_stats(rp
, sm_del_hwf
);
4627 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4632 bfa_sm_fault(rp
->bfa
, event
);
4637 bfa_rport_sm_deleting_qfull(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4639 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4640 bfa_trc(rp
->bfa
, event
);
4643 case BFA_RPORT_SM_QRESUME
:
4644 bfa_stats(rp
, sm_del_fwrsp
);
4645 bfa_sm_set_state(rp
, bfa_rport_sm_deleting
);
4646 bfa_rport_send_fwdelete(rp
);
4649 case BFA_RPORT_SM_HWFAIL
:
4650 bfa_stats(rp
, sm_del_hwf
);
4651 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4652 bfa_reqq_wcancel(&rp
->reqq_wait
);
4657 bfa_sm_fault(rp
->bfa
, event
);
4662 * Waiting for rport create response from firmware. A delete is pending.
4665 bfa_rport_sm_delete_pending(struct bfa_rport_s
*rp
,
4666 enum bfa_rport_event event
)
4668 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4669 bfa_trc(rp
->bfa
, event
);
4672 case BFA_RPORT_SM_FWRSP
:
4673 bfa_stats(rp
, sm_delp_fwrsp
);
4674 if (bfa_rport_send_fwdelete(rp
))
4675 bfa_sm_set_state(rp
, bfa_rport_sm_deleting
);
4677 bfa_sm_set_state(rp
, bfa_rport_sm_deleting_qfull
);
4680 case BFA_RPORT_SM_HWFAIL
:
4681 bfa_stats(rp
, sm_delp_hwf
);
4682 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4687 bfa_stats(rp
, sm_delp_unexp
);
4688 bfa_sm_fault(rp
->bfa
, event
);
4693 * Waiting for rport create response from firmware. Rport offline is pending.
4696 bfa_rport_sm_offline_pending(struct bfa_rport_s
*rp
,
4697 enum bfa_rport_event event
)
4699 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4700 bfa_trc(rp
->bfa
, event
);
4703 case BFA_RPORT_SM_FWRSP
:
4704 bfa_stats(rp
, sm_offp_fwrsp
);
4705 if (bfa_rport_send_fwdelete(rp
))
4706 bfa_sm_set_state(rp
, bfa_rport_sm_fwdelete
);
4708 bfa_sm_set_state(rp
, bfa_rport_sm_fwdelete_qfull
);
4711 case BFA_RPORT_SM_DELETE
:
4712 bfa_stats(rp
, sm_offp_del
);
4713 bfa_sm_set_state(rp
, bfa_rport_sm_delete_pending
);
4716 case BFA_RPORT_SM_HWFAIL
:
4717 bfa_stats(rp
, sm_offp_hwf
);
4718 bfa_sm_set_state(rp
, bfa_rport_sm_iocdisable
);
4719 bfa_rport_offline_cb(rp
);
4723 bfa_stats(rp
, sm_offp_unexp
);
4724 bfa_sm_fault(rp
->bfa
, event
);
4732 bfa_rport_sm_iocdisable(struct bfa_rport_s
*rp
, enum bfa_rport_event event
)
4734 bfa_trc(rp
->bfa
, rp
->rport_tag
);
4735 bfa_trc(rp
->bfa
, event
);
4738 case BFA_RPORT_SM_OFFLINE
:
4739 bfa_stats(rp
, sm_iocd_off
);
4740 bfa_rport_offline_cb(rp
);
4743 case BFA_RPORT_SM_DELETE
:
4744 bfa_stats(rp
, sm_iocd_del
);
4745 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4749 case BFA_RPORT_SM_ONLINE
:
4750 bfa_stats(rp
, sm_iocd_on
);
4751 if (bfa_rport_send_fwcreate(rp
))
4752 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate
);
4754 bfa_sm_set_state(rp
, bfa_rport_sm_fwcreate_qfull
);
4757 case BFA_RPORT_SM_HWFAIL
:
4761 bfa_stats(rp
, sm_iocd_unexp
);
4762 bfa_sm_fault(rp
->bfa
, event
);
4769 * bfa_rport_private BFA rport private functions
4773 __bfa_cb_rport_online(void *cbarg
, bfa_boolean_t complete
)
4775 struct bfa_rport_s
*rp
= cbarg
;
4778 bfa_cb_rport_online(rp
->rport_drv
);
4782 __bfa_cb_rport_offline(void *cbarg
, bfa_boolean_t complete
)
4784 struct bfa_rport_s
*rp
= cbarg
;
4787 bfa_cb_rport_offline(rp
->rport_drv
);
4791 bfa_rport_qresume(void *cbarg
)
4793 struct bfa_rport_s
*rp
= cbarg
;
4795 bfa_sm_send_event(rp
, BFA_RPORT_SM_QRESUME
);
4799 bfa_rport_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*minfo
,
4802 struct bfa_mem_kva_s
*rport_kva
= BFA_MEM_RPORT_KVA(bfa
);
4804 if (cfg
->fwcfg
.num_rports
< BFA_RPORT_MIN
)
4805 cfg
->fwcfg
.num_rports
= BFA_RPORT_MIN
;
4808 bfa_mem_kva_setup(minfo
, rport_kva
,
4809 cfg
->fwcfg
.num_rports
* sizeof(struct bfa_rport_s
));
4813 bfa_rport_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
4814 struct bfa_pcidev_s
*pcidev
)
4816 struct bfa_rport_mod_s
*mod
= BFA_RPORT_MOD(bfa
);
4817 struct bfa_rport_s
*rp
;
4820 INIT_LIST_HEAD(&mod
->rp_free_q
);
4821 INIT_LIST_HEAD(&mod
->rp_active_q
);
4822 INIT_LIST_HEAD(&mod
->rp_unused_q
);
4824 rp
= (struct bfa_rport_s
*) bfa_mem_kva_curp(mod
);
4826 mod
->num_rports
= cfg
->fwcfg
.num_rports
;
4828 WARN_ON(!mod
->num_rports
||
4829 (mod
->num_rports
& (mod
->num_rports
- 1)));
4831 for (i
= 0; i
< mod
->num_rports
; i
++, rp
++) {
4832 memset(rp
, 0, sizeof(struct bfa_rport_s
));
4835 bfa_sm_set_state(rp
, bfa_rport_sm_uninit
);
4841 list_add_tail(&rp
->qe
, &mod
->rp_free_q
);
4843 bfa_reqq_winit(&rp
->reqq_wait
, bfa_rport_qresume
, rp
);
4849 bfa_mem_kva_curp(mod
) = (u8
*) rp
;
4853 bfa_rport_iocdisable(struct bfa_s
*bfa
)
4855 struct bfa_rport_mod_s
*mod
= BFA_RPORT_MOD(bfa
);
4856 struct bfa_rport_s
*rport
;
4857 struct list_head
*qe
, *qen
;
4859 /* Enqueue unused rport resources to free_q */
4860 list_splice_tail_init(&mod
->rp_unused_q
, &mod
->rp_free_q
);
4862 list_for_each_safe(qe
, qen
, &mod
->rp_active_q
) {
4863 rport
= (struct bfa_rport_s
*) qe
;
4864 bfa_sm_send_event(rport
, BFA_RPORT_SM_HWFAIL
);
4868 static struct bfa_rport_s
*
4869 bfa_rport_alloc(struct bfa_rport_mod_s
*mod
)
4871 struct bfa_rport_s
*rport
;
4873 bfa_q_deq(&mod
->rp_free_q
, &rport
);
4875 list_add_tail(&rport
->qe
, &mod
->rp_active_q
);
4881 bfa_rport_free(struct bfa_rport_s
*rport
)
4883 struct bfa_rport_mod_s
*mod
= BFA_RPORT_MOD(rport
->bfa
);
4885 WARN_ON(!bfa_q_is_on_q(&mod
->rp_active_q
, rport
));
4886 list_del(&rport
->qe
);
4887 list_add_tail(&rport
->qe
, &mod
->rp_free_q
);
4890 static bfa_boolean_t
4891 bfa_rport_send_fwcreate(struct bfa_rport_s
*rp
)
4893 struct bfi_rport_create_req_s
*m
;
4896 * check for room in queue to send request now
4898 m
= bfa_reqq_next(rp
->bfa
, BFA_REQQ_RPORT
);
4900 bfa_reqq_wait(rp
->bfa
, BFA_REQQ_RPORT
, &rp
->reqq_wait
);
4904 bfi_h2i_set(m
->mh
, BFI_MC_RPORT
, BFI_RPORT_H2I_CREATE_REQ
,
4905 bfa_fn_lpu(rp
->bfa
));
4906 m
->bfa_handle
= rp
->rport_tag
;
4907 m
->max_frmsz
= cpu_to_be16(rp
->rport_info
.max_frmsz
);
4908 m
->pid
= rp
->rport_info
.pid
;
4909 m
->lp_fwtag
= bfa_lps_get_fwtag(rp
->bfa
, (u8
)rp
->rport_info
.lp_tag
);
4910 m
->local_pid
= rp
->rport_info
.local_pid
;
4911 m
->fc_class
= rp
->rport_info
.fc_class
;
4912 m
->vf_en
= rp
->rport_info
.vf_en
;
4913 m
->vf_id
= rp
->rport_info
.vf_id
;
4914 m
->cisc
= rp
->rport_info
.cisc
;
4917 * queue I/O message to firmware
4919 bfa_reqq_produce(rp
->bfa
, BFA_REQQ_RPORT
, m
->mh
);
4923 static bfa_boolean_t
4924 bfa_rport_send_fwdelete(struct bfa_rport_s
*rp
)
4926 struct bfi_rport_delete_req_s
*m
;
4929 * check for room in queue to send request now
4931 m
= bfa_reqq_next(rp
->bfa
, BFA_REQQ_RPORT
);
4933 bfa_reqq_wait(rp
->bfa
, BFA_REQQ_RPORT
, &rp
->reqq_wait
);
4937 bfi_h2i_set(m
->mh
, BFI_MC_RPORT
, BFI_RPORT_H2I_DELETE_REQ
,
4938 bfa_fn_lpu(rp
->bfa
));
4939 m
->fw_handle
= rp
->fw_handle
;
4942 * queue I/O message to firmware
4944 bfa_reqq_produce(rp
->bfa
, BFA_REQQ_RPORT
, m
->mh
);
4948 static bfa_boolean_t
4949 bfa_rport_send_fwspeed(struct bfa_rport_s
*rp
)
4951 struct bfa_rport_speed_req_s
*m
;
4954 * check for room in queue to send request now
4956 m
= bfa_reqq_next(rp
->bfa
, BFA_REQQ_RPORT
);
4958 bfa_trc(rp
->bfa
, rp
->rport_info
.speed
);
4962 bfi_h2i_set(m
->mh
, BFI_MC_RPORT
, BFI_RPORT_H2I_SET_SPEED_REQ
,
4963 bfa_fn_lpu(rp
->bfa
));
4964 m
->fw_handle
= rp
->fw_handle
;
4965 m
->speed
= (u8
)rp
->rport_info
.speed
;
4968 * queue I/O message to firmware
4970 bfa_reqq_produce(rp
->bfa
, BFA_REQQ_RPORT
, m
->mh
);
4981 * Rport interrupt processing.
4984 bfa_rport_isr(struct bfa_s
*bfa
, struct bfi_msg_s
*m
)
4986 union bfi_rport_i2h_msg_u msg
;
4987 struct bfa_rport_s
*rp
;
4989 bfa_trc(bfa
, m
->mhdr
.msg_id
);
4993 switch (m
->mhdr
.msg_id
) {
4994 case BFI_RPORT_I2H_CREATE_RSP
:
4995 rp
= BFA_RPORT_FROM_TAG(bfa
, msg
.create_rsp
->bfa_handle
);
4996 rp
->fw_handle
= msg
.create_rsp
->fw_handle
;
4997 rp
->qos_attr
= msg
.create_rsp
->qos_attr
;
4998 bfa_rport_set_lunmask(bfa
, rp
);
4999 WARN_ON(msg
.create_rsp
->status
!= BFA_STATUS_OK
);
5000 bfa_sm_send_event(rp
, BFA_RPORT_SM_FWRSP
);
5003 case BFI_RPORT_I2H_DELETE_RSP
:
5004 rp
= BFA_RPORT_FROM_TAG(bfa
, msg
.delete_rsp
->bfa_handle
);
5005 WARN_ON(msg
.delete_rsp
->status
!= BFA_STATUS_OK
);
5006 bfa_rport_unset_lunmask(bfa
, rp
);
5007 bfa_sm_send_event(rp
, BFA_RPORT_SM_FWRSP
);
5010 case BFI_RPORT_I2H_QOS_SCN
:
5011 rp
= BFA_RPORT_FROM_TAG(bfa
, msg
.qos_scn_evt
->bfa_handle
);
5012 rp
->event_arg
.fw_msg
= msg
.qos_scn_evt
;
5013 bfa_sm_send_event(rp
, BFA_RPORT_SM_QOS_SCN
);
5016 case BFI_RPORT_I2H_LIP_SCN_ONLINE
:
5017 bfa_fcport_update_loop_info(BFA_FCPORT_MOD(bfa
),
5018 &msg
.lip_scn
->loop_info
);
5019 bfa_cb_rport_scn_online(bfa
);
5022 case BFI_RPORT_I2H_LIP_SCN_OFFLINE
:
5023 bfa_cb_rport_scn_offline(bfa
);
5026 case BFI_RPORT_I2H_NO_DEV
:
5027 rp
= BFA_RPORT_FROM_TAG(bfa
, msg
.lip_scn
->bfa_handle
);
5028 bfa_cb_rport_scn_no_dev(rp
->rport_drv
);
5032 bfa_trc(bfa
, m
->mhdr
.msg_id
);
5038 bfa_rport_res_recfg(struct bfa_s
*bfa
, u16 num_rport_fw
)
5040 struct bfa_rport_mod_s
*mod
= BFA_RPORT_MOD(bfa
);
5041 struct list_head
*qe
;
5044 for (i
= 0; i
< (mod
->num_rports
- num_rport_fw
); i
++) {
5045 bfa_q_deq_tail(&mod
->rp_free_q
, &qe
);
5046 list_add_tail(qe
, &mod
->rp_unused_q
);
5054 struct bfa_rport_s
*
5055 bfa_rport_create(struct bfa_s
*bfa
, void *rport_drv
)
5057 struct bfa_rport_s
*rp
;
5059 rp
= bfa_rport_alloc(BFA_RPORT_MOD(bfa
));
5065 rp
->rport_drv
= rport_drv
;
5066 memset(&rp
->stats
, 0, sizeof(rp
->stats
));
5068 WARN_ON(!bfa_sm_cmp_state(rp
, bfa_rport_sm_uninit
));
5069 bfa_sm_send_event(rp
, BFA_RPORT_SM_CREATE
);
5075 bfa_rport_online(struct bfa_rport_s
*rport
, struct bfa_rport_info_s
*rport_info
)
5077 WARN_ON(rport_info
->max_frmsz
== 0);
5080 * Some JBODs are seen to be not setting PDU size correctly in PLOGI
5081 * responses. Default to minimum size.
5083 if (rport_info
->max_frmsz
== 0) {
5084 bfa_trc(rport
->bfa
, rport
->rport_tag
);
5085 rport_info
->max_frmsz
= FC_MIN_PDUSZ
;
5088 rport
->rport_info
= *rport_info
;
5089 bfa_sm_send_event(rport
, BFA_RPORT_SM_ONLINE
);
5093 bfa_rport_speed(struct bfa_rport_s
*rport
, enum bfa_port_speed speed
)
5095 WARN_ON(speed
== 0);
5096 WARN_ON(speed
== BFA_PORT_SPEED_AUTO
);
5099 rport
->rport_info
.speed
= speed
;
5100 bfa_sm_send_event(rport
, BFA_RPORT_SM_SET_SPEED
);
5104 /* Set Rport LUN Mask */
5106 bfa_rport_set_lunmask(struct bfa_s
*bfa
, struct bfa_rport_s
*rp
)
5108 struct bfa_lps_mod_s
*lps_mod
= BFA_LPS_MOD(bfa
);
5109 wwn_t lp_wwn
, rp_wwn
;
5110 u8 lp_tag
= (u8
)rp
->rport_info
.lp_tag
;
5112 rp_wwn
= ((struct bfa_fcs_rport_s
*)rp
->rport_drv
)->pwwn
;
5113 lp_wwn
= (BFA_LPS_FROM_TAG(lps_mod
, rp
->rport_info
.lp_tag
))->pwwn
;
5115 BFA_LPS_FROM_TAG(lps_mod
, rp
->rport_info
.lp_tag
)->lun_mask
=
5116 rp
->lun_mask
= BFA_TRUE
;
5117 bfa_fcpim_lunmask_rp_update(bfa
, lp_wwn
, rp_wwn
, rp
->rport_tag
, lp_tag
);
5120 /* Unset Rport LUN mask */
5122 bfa_rport_unset_lunmask(struct bfa_s
*bfa
, struct bfa_rport_s
*rp
)
5124 struct bfa_lps_mod_s
*lps_mod
= BFA_LPS_MOD(bfa
);
5125 wwn_t lp_wwn
, rp_wwn
;
5127 rp_wwn
= ((struct bfa_fcs_rport_s
*)rp
->rport_drv
)->pwwn
;
5128 lp_wwn
= (BFA_LPS_FROM_TAG(lps_mod
, rp
->rport_info
.lp_tag
))->pwwn
;
5130 BFA_LPS_FROM_TAG(lps_mod
, rp
->rport_info
.lp_tag
)->lun_mask
=
5131 rp
->lun_mask
= BFA_FALSE
;
5132 bfa_fcpim_lunmask_rp_update(bfa
, lp_wwn
, rp_wwn
,
5133 BFA_RPORT_TAG_INVALID
, BFA_LP_TAG_INVALID
);
5137 * SGPG related functions
5141 * Compute and return memory needed by FCP(im) module.
5144 bfa_sgpg_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*minfo
,
5147 struct bfa_sgpg_mod_s
*sgpg_mod
= BFA_SGPG_MOD(bfa
);
5148 struct bfa_mem_kva_s
*sgpg_kva
= BFA_MEM_SGPG_KVA(bfa
);
5149 struct bfa_mem_dma_s
*seg_ptr
;
5150 u16 nsegs
, idx
, per_seg_sgpg
, num_sgpg
;
5151 u32 sgpg_sz
= sizeof(struct bfi_sgpg_s
);
5153 if (cfg
->drvcfg
.num_sgpgs
< BFA_SGPG_MIN
)
5154 cfg
->drvcfg
.num_sgpgs
= BFA_SGPG_MIN
;
5155 else if (cfg
->drvcfg
.num_sgpgs
> BFA_SGPG_MAX
)
5156 cfg
->drvcfg
.num_sgpgs
= BFA_SGPG_MAX
;
5158 num_sgpg
= cfg
->drvcfg
.num_sgpgs
;
5160 nsegs
= BFI_MEM_DMA_NSEGS(num_sgpg
, sgpg_sz
);
5161 per_seg_sgpg
= BFI_MEM_NREQS_SEG(sgpg_sz
);
5163 bfa_mem_dma_seg_iter(sgpg_mod
, seg_ptr
, nsegs
, idx
) {
5164 if (num_sgpg
>= per_seg_sgpg
) {
5165 num_sgpg
-= per_seg_sgpg
;
5166 bfa_mem_dma_setup(minfo
, seg_ptr
,
5167 per_seg_sgpg
* sgpg_sz
);
5169 bfa_mem_dma_setup(minfo
, seg_ptr
,
5170 num_sgpg
* sgpg_sz
);
5174 bfa_mem_kva_setup(minfo
, sgpg_kva
,
5175 cfg
->drvcfg
.num_sgpgs
* sizeof(struct bfa_sgpg_s
));
5179 bfa_sgpg_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
5180 struct bfa_pcidev_s
*pcidev
)
5182 struct bfa_sgpg_mod_s
*mod
= BFA_SGPG_MOD(bfa
);
5183 struct bfa_sgpg_s
*hsgpg
;
5184 struct bfi_sgpg_s
*sgpg
;
5186 struct bfa_mem_dma_s
*seg_ptr
;
5187 u32 sgpg_sz
= sizeof(struct bfi_sgpg_s
);
5188 u16 i
, idx
, nsegs
, per_seg_sgpg
, num_sgpg
;
5192 union bfi_addr_u addr
;
5193 } sgpg_pa
, sgpg_pa_tmp
;
5195 INIT_LIST_HEAD(&mod
->sgpg_q
);
5196 INIT_LIST_HEAD(&mod
->sgpg_wait_q
);
5198 bfa_trc(bfa
, cfg
->drvcfg
.num_sgpgs
);
5200 mod
->free_sgpgs
= mod
->num_sgpgs
= cfg
->drvcfg
.num_sgpgs
;
5202 num_sgpg
= cfg
->drvcfg
.num_sgpgs
;
5203 nsegs
= BFI_MEM_DMA_NSEGS(num_sgpg
, sgpg_sz
);
5205 /* dma/kva mem claim */
5206 hsgpg
= (struct bfa_sgpg_s
*) bfa_mem_kva_curp(mod
);
5208 bfa_mem_dma_seg_iter(mod
, seg_ptr
, nsegs
, idx
) {
5210 if (!bfa_mem_dma_virt(seg_ptr
))
5213 align_len
= BFA_SGPG_ROUNDUP(bfa_mem_dma_phys(seg_ptr
)) -
5214 bfa_mem_dma_phys(seg_ptr
);
5216 sgpg
= (struct bfi_sgpg_s
*)
5217 (((u8
*) bfa_mem_dma_virt(seg_ptr
)) + align_len
);
5218 sgpg_pa
.pa
= bfa_mem_dma_phys(seg_ptr
) + align_len
;
5219 WARN_ON(sgpg_pa
.pa
& (sgpg_sz
- 1));
5221 per_seg_sgpg
= (seg_ptr
->mem_len
- (u32
)align_len
) / sgpg_sz
;
5223 for (i
= 0; num_sgpg
> 0 && i
< per_seg_sgpg
; i
++, num_sgpg
--) {
5224 memset(hsgpg
, 0, sizeof(*hsgpg
));
5225 memset(sgpg
, 0, sizeof(*sgpg
));
5228 sgpg_pa_tmp
.pa
= bfa_sgaddr_le(sgpg_pa
.pa
);
5229 hsgpg
->sgpg_pa
= sgpg_pa_tmp
.addr
;
5230 list_add_tail(&hsgpg
->qe
, &mod
->sgpg_q
);
5234 sgpg_pa
.pa
+= sgpg_sz
;
5238 bfa_mem_kva_curp(mod
) = (u8
*) hsgpg
;
5242 bfa_sgpg_malloc(struct bfa_s
*bfa
, struct list_head
*sgpg_q
, int nsgpgs
)
5244 struct bfa_sgpg_mod_s
*mod
= BFA_SGPG_MOD(bfa
);
5245 struct bfa_sgpg_s
*hsgpg
;
5248 if (mod
->free_sgpgs
< nsgpgs
)
5249 return BFA_STATUS_ENOMEM
;
5251 for (i
= 0; i
< nsgpgs
; i
++) {
5252 bfa_q_deq(&mod
->sgpg_q
, &hsgpg
);
5254 list_add_tail(&hsgpg
->qe
, sgpg_q
);
5257 mod
->free_sgpgs
-= nsgpgs
;
5258 return BFA_STATUS_OK
;
5262 bfa_sgpg_mfree(struct bfa_s
*bfa
, struct list_head
*sgpg_q
, int nsgpg
)
5264 struct bfa_sgpg_mod_s
*mod
= BFA_SGPG_MOD(bfa
);
5265 struct bfa_sgpg_wqe_s
*wqe
;
5267 mod
->free_sgpgs
+= nsgpg
;
5268 WARN_ON(mod
->free_sgpgs
> mod
->num_sgpgs
);
5270 list_splice_tail_init(sgpg_q
, &mod
->sgpg_q
);
5272 if (list_empty(&mod
->sgpg_wait_q
))
5276 * satisfy as many waiting requests as possible
5279 wqe
= bfa_q_first(&mod
->sgpg_wait_q
);
5280 if (mod
->free_sgpgs
< wqe
->nsgpg
)
5281 nsgpg
= mod
->free_sgpgs
;
5284 bfa_sgpg_malloc(bfa
, &wqe
->sgpg_q
, nsgpg
);
5285 wqe
->nsgpg
-= nsgpg
;
5286 if (wqe
->nsgpg
== 0) {
5288 wqe
->cbfn(wqe
->cbarg
);
5290 } while (mod
->free_sgpgs
&& !list_empty(&mod
->sgpg_wait_q
));
5294 bfa_sgpg_wait(struct bfa_s
*bfa
, struct bfa_sgpg_wqe_s
*wqe
, int nsgpg
)
5296 struct bfa_sgpg_mod_s
*mod
= BFA_SGPG_MOD(bfa
);
5298 WARN_ON(nsgpg
<= 0);
5299 WARN_ON(nsgpg
<= mod
->free_sgpgs
);
5301 wqe
->nsgpg_total
= wqe
->nsgpg
= nsgpg
;
5304 * allocate any left to this one first
5306 if (mod
->free_sgpgs
) {
5308 * no one else is waiting for SGPG
5310 WARN_ON(!list_empty(&mod
->sgpg_wait_q
));
5311 list_splice_tail_init(&mod
->sgpg_q
, &wqe
->sgpg_q
);
5312 wqe
->nsgpg
-= mod
->free_sgpgs
;
5313 mod
->free_sgpgs
= 0;
5316 list_add_tail(&wqe
->qe
, &mod
->sgpg_wait_q
);
5320 bfa_sgpg_wcancel(struct bfa_s
*bfa
, struct bfa_sgpg_wqe_s
*wqe
)
5322 struct bfa_sgpg_mod_s
*mod
= BFA_SGPG_MOD(bfa
);
5324 WARN_ON(!bfa_q_is_on_q(&mod
->sgpg_wait_q
, wqe
));
5327 if (wqe
->nsgpg_total
!= wqe
->nsgpg
)
5328 bfa_sgpg_mfree(bfa
, &wqe
->sgpg_q
,
5329 wqe
->nsgpg_total
- wqe
->nsgpg
);
5333 bfa_sgpg_winit(struct bfa_sgpg_wqe_s
*wqe
, void (*cbfn
) (void *cbarg
),
5336 INIT_LIST_HEAD(&wqe
->sgpg_q
);
5342 * UF related functions
5345 *****************************************************************************
5346 * Internal functions
5347 *****************************************************************************
5350 __bfa_cb_uf_recv(void *cbarg
, bfa_boolean_t complete
)
5352 struct bfa_uf_s
*uf
= cbarg
;
5353 struct bfa_uf_mod_s
*ufm
= BFA_UF_MOD(uf
->bfa
);
5356 ufm
->ufrecv(ufm
->cbarg
, uf
);
5360 claim_uf_post_msgs(struct bfa_uf_mod_s
*ufm
)
5362 struct bfi_uf_buf_post_s
*uf_bp_msg
;
5366 ufm
->uf_buf_posts
= (struct bfi_uf_buf_post_s
*) bfa_mem_kva_curp(ufm
);
5367 uf_bp_msg
= ufm
->uf_buf_posts
;
5369 for (i
= 0, uf_bp_msg
= ufm
->uf_buf_posts
; i
< ufm
->num_ufs
;
5371 memset(uf_bp_msg
, 0, sizeof(struct bfi_uf_buf_post_s
));
5373 uf_bp_msg
->buf_tag
= i
;
5374 buf_len
= sizeof(struct bfa_uf_buf_s
);
5375 uf_bp_msg
->buf_len
= cpu_to_be16(buf_len
);
5376 bfi_h2i_set(uf_bp_msg
->mh
, BFI_MC_UF
, BFI_UF_H2I_BUF_POST
,
5377 bfa_fn_lpu(ufm
->bfa
));
5378 bfa_alen_set(&uf_bp_msg
->alen
, buf_len
, ufm_pbs_pa(ufm
, i
));
5382 * advance pointer beyond consumed memory
5384 bfa_mem_kva_curp(ufm
) = (u8
*) uf_bp_msg
;
5388 claim_ufs(struct bfa_uf_mod_s
*ufm
)
5391 struct bfa_uf_s
*uf
;
5394 * Claim block of memory for UF list
5396 ufm
->uf_list
= (struct bfa_uf_s
*) bfa_mem_kva_curp(ufm
);
5399 * Initialize UFs and queue it in UF free queue
5401 for (i
= 0, uf
= ufm
->uf_list
; i
< ufm
->num_ufs
; i
++, uf
++) {
5402 memset(uf
, 0, sizeof(struct bfa_uf_s
));
5405 uf
->pb_len
= BFA_PER_UF_DMA_SZ
;
5406 uf
->buf_kva
= bfa_mem_get_dmabuf_kva(ufm
, i
, BFA_PER_UF_DMA_SZ
);
5407 uf
->buf_pa
= ufm_pbs_pa(ufm
, i
);
5408 list_add_tail(&uf
->qe
, &ufm
->uf_free_q
);
5412 * advance memory pointer
5414 bfa_mem_kva_curp(ufm
) = (u8
*) uf
;
5418 uf_mem_claim(struct bfa_uf_mod_s
*ufm
)
5421 claim_uf_post_msgs(ufm
);
5425 bfa_uf_meminfo(struct bfa_iocfc_cfg_s
*cfg
, struct bfa_meminfo_s
*minfo
,
5428 struct bfa_uf_mod_s
*ufm
= BFA_UF_MOD(bfa
);
5429 struct bfa_mem_kva_s
*uf_kva
= BFA_MEM_UF_KVA(bfa
);
5430 u32 num_ufs
= cfg
->fwcfg
.num_uf_bufs
;
5431 struct bfa_mem_dma_s
*seg_ptr
;
5432 u16 nsegs
, idx
, per_seg_uf
= 0;
5434 nsegs
= BFI_MEM_DMA_NSEGS(num_ufs
, BFA_PER_UF_DMA_SZ
);
5435 per_seg_uf
= BFI_MEM_NREQS_SEG(BFA_PER_UF_DMA_SZ
);
5437 bfa_mem_dma_seg_iter(ufm
, seg_ptr
, nsegs
, idx
) {
5438 if (num_ufs
>= per_seg_uf
) {
5439 num_ufs
-= per_seg_uf
;
5440 bfa_mem_dma_setup(minfo
, seg_ptr
,
5441 per_seg_uf
* BFA_PER_UF_DMA_SZ
);
5443 bfa_mem_dma_setup(minfo
, seg_ptr
,
5444 num_ufs
* BFA_PER_UF_DMA_SZ
);
5448 bfa_mem_kva_setup(minfo
, uf_kva
, cfg
->fwcfg
.num_uf_bufs
*
5449 (sizeof(struct bfa_uf_s
) + sizeof(struct bfi_uf_buf_post_s
)));
5453 bfa_uf_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
5454 struct bfa_pcidev_s
*pcidev
)
5456 struct bfa_uf_mod_s
*ufm
= BFA_UF_MOD(bfa
);
5459 ufm
->num_ufs
= cfg
->fwcfg
.num_uf_bufs
;
5460 INIT_LIST_HEAD(&ufm
->uf_free_q
);
5461 INIT_LIST_HEAD(&ufm
->uf_posted_q
);
5462 INIT_LIST_HEAD(&ufm
->uf_unused_q
);
5467 static struct bfa_uf_s
*
5468 bfa_uf_get(struct bfa_uf_mod_s
*uf_mod
)
5470 struct bfa_uf_s
*uf
;
5472 bfa_q_deq(&uf_mod
->uf_free_q
, &uf
);
5477 bfa_uf_put(struct bfa_uf_mod_s
*uf_mod
, struct bfa_uf_s
*uf
)
5479 list_add_tail(&uf
->qe
, &uf_mod
->uf_free_q
);
5483 bfa_uf_post(struct bfa_uf_mod_s
*ufm
, struct bfa_uf_s
*uf
)
5485 struct bfi_uf_buf_post_s
*uf_post_msg
;
5487 uf_post_msg
= bfa_reqq_next(ufm
->bfa
, BFA_REQQ_FCXP
);
5489 return BFA_STATUS_FAILED
;
5491 memcpy(uf_post_msg
, &ufm
->uf_buf_posts
[uf
->uf_tag
],
5492 sizeof(struct bfi_uf_buf_post_s
));
5493 bfa_reqq_produce(ufm
->bfa
, BFA_REQQ_FCXP
, uf_post_msg
->mh
);
5495 bfa_trc(ufm
->bfa
, uf
->uf_tag
);
5497 list_add_tail(&uf
->qe
, &ufm
->uf_posted_q
);
5498 return BFA_STATUS_OK
;
5502 bfa_uf_post_all(struct bfa_uf_mod_s
*uf_mod
)
5504 struct bfa_uf_s
*uf
;
5506 while ((uf
= bfa_uf_get(uf_mod
)) != NULL
) {
5507 if (bfa_uf_post(uf_mod
, uf
) != BFA_STATUS_OK
)
5513 uf_recv(struct bfa_s
*bfa
, struct bfi_uf_frm_rcvd_s
*m
)
5515 struct bfa_uf_mod_s
*ufm
= BFA_UF_MOD(bfa
);
5516 u16 uf_tag
= m
->buf_tag
;
5517 struct bfa_uf_s
*uf
= &ufm
->uf_list
[uf_tag
];
5518 struct bfa_uf_buf_s
*uf_buf
;
5520 struct fchs_s
*fchs
;
5522 uf_buf
= (struct bfa_uf_buf_s
*)
5523 bfa_mem_get_dmabuf_kva(ufm
, uf_tag
, uf
->pb_len
);
5524 buf
= &uf_buf
->d
[0];
5526 m
->frm_len
= be16_to_cpu(m
->frm_len
);
5527 m
->xfr_len
= be16_to_cpu(m
->xfr_len
);
5529 fchs
= (struct fchs_s
*)uf_buf
;
5531 list_del(&uf
->qe
); /* dequeue from posted queue */
5534 uf
->data_len
= m
->xfr_len
;
5536 WARN_ON(uf
->data_len
< sizeof(struct fchs_s
));
5538 if (uf
->data_len
== sizeof(struct fchs_s
)) {
5539 bfa_plog_fchdr(bfa
->plog
, BFA_PL_MID_HAL_UF
, BFA_PL_EID_RX
,
5540 uf
->data_len
, (struct fchs_s
*)buf
);
5542 u32 pld_w0
= *((u32
*) (buf
+ sizeof(struct fchs_s
)));
5543 bfa_plog_fchdr_and_pl(bfa
->plog
, BFA_PL_MID_HAL_UF
,
5544 BFA_PL_EID_RX
, uf
->data_len
,
5545 (struct fchs_s
*)buf
, pld_w0
);
5549 __bfa_cb_uf_recv(uf
, BFA_TRUE
);
5551 bfa_cb_queue(bfa
, &uf
->hcb_qe
, __bfa_cb_uf_recv
, uf
);
5555 bfa_uf_iocdisable(struct bfa_s
*bfa
)
5557 struct bfa_uf_mod_s
*ufm
= BFA_UF_MOD(bfa
);
5558 struct bfa_uf_s
*uf
;
5559 struct list_head
*qe
, *qen
;
5561 /* Enqueue unused uf resources to free_q */
5562 list_splice_tail_init(&ufm
->uf_unused_q
, &ufm
->uf_free_q
);
5564 list_for_each_safe(qe
, qen
, &ufm
->uf_posted_q
) {
5565 uf
= (struct bfa_uf_s
*) qe
;
5567 bfa_uf_put(ufm
, uf
);
5572 bfa_uf_start(struct bfa_s
*bfa
)
5574 bfa_uf_post_all(BFA_UF_MOD(bfa
));
5578 * Register handler for all unsolicted receive frames.
5580 * @param[in] bfa BFA instance
5581 * @param[in] ufrecv receive handler function
5582 * @param[in] cbarg receive handler arg
5585 bfa_uf_recv_register(struct bfa_s
*bfa
, bfa_cb_uf_recv_t ufrecv
, void *cbarg
)
5587 struct bfa_uf_mod_s
*ufm
= BFA_UF_MOD(bfa
);
5589 ufm
->ufrecv
= ufrecv
;
5594 * Free an unsolicited frame back to BFA.
5596 * @param[in] uf unsolicited frame to be freed
5601 bfa_uf_free(struct bfa_uf_s
*uf
)
5603 bfa_uf_put(BFA_UF_MOD(uf
->bfa
), uf
);
5604 bfa_uf_post_all(BFA_UF_MOD(uf
->bfa
));
5610 * uf_pub BFA uf module public functions
5613 bfa_uf_isr(struct bfa_s
*bfa
, struct bfi_msg_s
*msg
)
5615 bfa_trc(bfa
, msg
->mhdr
.msg_id
);
5617 switch (msg
->mhdr
.msg_id
) {
5618 case BFI_UF_I2H_FRM_RCVD
:
5619 uf_recv(bfa
, (struct bfi_uf_frm_rcvd_s
*) msg
);
5623 bfa_trc(bfa
, msg
->mhdr
.msg_id
);
5629 bfa_uf_res_recfg(struct bfa_s
*bfa
, u16 num_uf_fw
)
5631 struct bfa_uf_mod_s
*mod
= BFA_UF_MOD(bfa
);
5632 struct list_head
*qe
;
5635 for (i
= 0; i
< (mod
->num_ufs
- num_uf_fw
); i
++) {
5636 bfa_q_deq_tail(&mod
->uf_free_q
, &qe
);
5637 list_add_tail(qe
, &mod
->uf_unused_q
);
5642 * Dport forward declaration
5645 enum bfa_dport_test_state_e
{
5646 BFA_DPORT_ST_DISABLED
= 0, /*!< dport is disabled */
5647 BFA_DPORT_ST_INP
= 1, /*!< test in progress */
5648 BFA_DPORT_ST_COMP
= 2, /*!< test complete successfully */
5649 BFA_DPORT_ST_NO_SFP
= 3, /*!< sfp is not present */
5650 BFA_DPORT_ST_NOTSTART
= 4, /*!< test not start dport is enabled */
5654 * BFA DPORT state machine events
5656 enum bfa_dport_sm_event
{
5657 BFA_DPORT_SM_ENABLE
= 1, /* dport enable event */
5658 BFA_DPORT_SM_DISABLE
= 2, /* dport disable event */
5659 BFA_DPORT_SM_FWRSP
= 3, /* fw enable/disable rsp */
5660 BFA_DPORT_SM_QRESUME
= 4, /* CQ space available */
5661 BFA_DPORT_SM_HWFAIL
= 5, /* IOC h/w failure */
5662 BFA_DPORT_SM_START
= 6, /* re-start dport test */
5663 BFA_DPORT_SM_REQFAIL
= 7, /* request failure */
5664 BFA_DPORT_SM_SCN
= 8, /* state change notify frm fw */
5667 static void bfa_dport_sm_disabled(struct bfa_dport_s
*dport
,
5668 enum bfa_dport_sm_event event
);
5669 static void bfa_dport_sm_enabling_qwait(struct bfa_dport_s
*dport
,
5670 enum bfa_dport_sm_event event
);
5671 static void bfa_dport_sm_enabling(struct bfa_dport_s
*dport
,
5672 enum bfa_dport_sm_event event
);
5673 static void bfa_dport_sm_enabled(struct bfa_dport_s
*dport
,
5674 enum bfa_dport_sm_event event
);
5675 static void bfa_dport_sm_disabling_qwait(struct bfa_dport_s
*dport
,
5676 enum bfa_dport_sm_event event
);
5677 static void bfa_dport_sm_disabling(struct bfa_dport_s
*dport
,
5678 enum bfa_dport_sm_event event
);
5679 static void bfa_dport_sm_starting_qwait(struct bfa_dport_s
*dport
,
5680 enum bfa_dport_sm_event event
);
5681 static void bfa_dport_sm_starting(struct bfa_dport_s
*dport
,
5682 enum bfa_dport_sm_event event
);
5683 static void bfa_dport_sm_dynamic_disabling(struct bfa_dport_s
*dport
,
5684 enum bfa_dport_sm_event event
);
5685 static void bfa_dport_sm_dynamic_disabling_qwait(struct bfa_dport_s
*dport
,
5686 enum bfa_dport_sm_event event
);
5687 static void bfa_dport_qresume(void *cbarg
);
5688 static void bfa_dport_req_comp(struct bfa_dport_s
*dport
,
5689 struct bfi_diag_dport_rsp_s
*msg
);
5690 static void bfa_dport_scn(struct bfa_dport_s
*dport
,
5691 struct bfi_diag_dport_scn_s
*msg
);
5696 #define BFA_DIAG_QTEST_TOV 1000 /* msec */
5699 * Set port status to busy
5702 bfa_fcdiag_set_busy_status(struct bfa_fcdiag_s
*fcdiag
)
5704 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(fcdiag
->bfa
);
5706 if (fcdiag
->lb
.lock
)
5707 fcport
->diag_busy
= BFA_TRUE
;
5709 fcport
->diag_busy
= BFA_FALSE
;
5713 bfa_fcdiag_attach(struct bfa_s
*bfa
, void *bfad
, struct bfa_iocfc_cfg_s
*cfg
,
5714 struct bfa_pcidev_s
*pcidev
)
5716 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
5717 struct bfa_dport_s
*dport
= &fcdiag
->dport
;
5720 fcdiag
->trcmod
= bfa
->trcmod
;
5721 /* The common DIAG attach bfa_diag_attach() will do all memory claim */
5723 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
5724 bfa_reqq_winit(&dport
->reqq_wait
, bfa_dport_qresume
, dport
);
5726 dport
->cbarg
= NULL
;
5727 dport
->test_state
= BFA_DPORT_ST_DISABLED
;
5728 memset(&dport
->result
, 0, sizeof(struct bfa_diag_dport_result_s
));
5732 bfa_fcdiag_iocdisable(struct bfa_s
*bfa
)
5734 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
5735 struct bfa_dport_s
*dport
= &fcdiag
->dport
;
5737 bfa_trc(fcdiag
, fcdiag
->lb
.lock
);
5738 if (fcdiag
->lb
.lock
) {
5739 fcdiag
->lb
.status
= BFA_STATUS_IOC_FAILURE
;
5740 fcdiag
->lb
.cbfn(fcdiag
->lb
.cbarg
, fcdiag
->lb
.status
);
5741 fcdiag
->lb
.lock
= 0;
5742 bfa_fcdiag_set_busy_status(fcdiag
);
5745 bfa_sm_send_event(dport
, BFA_DPORT_SM_HWFAIL
);
5749 bfa_fcdiag_queuetest_timeout(void *cbarg
)
5751 struct bfa_fcdiag_s
*fcdiag
= cbarg
;
5752 struct bfa_diag_qtest_result_s
*res
= fcdiag
->qtest
.result
;
5754 bfa_trc(fcdiag
, fcdiag
->qtest
.all
);
5755 bfa_trc(fcdiag
, fcdiag
->qtest
.count
);
5757 fcdiag
->qtest
.timer_active
= 0;
5759 res
->status
= BFA_STATUS_ETIMER
;
5760 res
->count
= QTEST_CNT_DEFAULT
- fcdiag
->qtest
.count
;
5761 if (fcdiag
->qtest
.all
)
5762 res
->queue
= fcdiag
->qtest
.all
;
5764 bfa_trc(fcdiag
, BFA_STATUS_ETIMER
);
5765 fcdiag
->qtest
.status
= BFA_STATUS_ETIMER
;
5766 fcdiag
->qtest
.cbfn(fcdiag
->qtest
.cbarg
, fcdiag
->qtest
.status
);
5767 fcdiag
->qtest
.lock
= 0;
5771 bfa_fcdiag_queuetest_send(struct bfa_fcdiag_s
*fcdiag
)
5774 struct bfi_diag_qtest_req_s
*req
;
5776 req
= bfa_reqq_next(fcdiag
->bfa
, fcdiag
->qtest
.queue
);
5778 return BFA_STATUS_DEVBUSY
;
5780 /* build host command */
5781 bfi_h2i_set(req
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_QTEST
,
5782 bfa_fn_lpu(fcdiag
->bfa
));
5784 for (i
= 0; i
< BFI_LMSG_PL_WSZ
; i
++)
5785 req
->data
[i
] = QTEST_PAT_DEFAULT
;
5787 bfa_trc(fcdiag
, fcdiag
->qtest
.queue
);
5788 /* ring door bell */
5789 bfa_reqq_produce(fcdiag
->bfa
, fcdiag
->qtest
.queue
, req
->mh
);
5790 return BFA_STATUS_OK
;
5794 bfa_fcdiag_queuetest_comp(struct bfa_fcdiag_s
*fcdiag
,
5795 bfi_diag_qtest_rsp_t
*rsp
)
5797 struct bfa_diag_qtest_result_s
*res
= fcdiag
->qtest
.result
;
5798 bfa_status_t status
= BFA_STATUS_OK
;
5801 /* Check timer, should still be active */
5802 if (!fcdiag
->qtest
.timer_active
) {
5803 bfa_trc(fcdiag
, fcdiag
->qtest
.timer_active
);
5808 fcdiag
->qtest
.count
--;
5811 for (i
= 0; i
< BFI_LMSG_PL_WSZ
; i
++) {
5812 if (rsp
->data
[i
] != ~(QTEST_PAT_DEFAULT
)) {
5813 res
->status
= BFA_STATUS_DATACORRUPTED
;
5818 if (res
->status
== BFA_STATUS_OK
) {
5819 if (fcdiag
->qtest
.count
> 0) {
5820 status
= bfa_fcdiag_queuetest_send(fcdiag
);
5821 if (status
== BFA_STATUS_OK
)
5824 res
->status
= status
;
5825 } else if (fcdiag
->qtest
.all
> 0 &&
5826 fcdiag
->qtest
.queue
< (BFI_IOC_MAX_CQS
- 1)) {
5827 fcdiag
->qtest
.count
= QTEST_CNT_DEFAULT
;
5828 fcdiag
->qtest
.queue
++;
5829 status
= bfa_fcdiag_queuetest_send(fcdiag
);
5830 if (status
== BFA_STATUS_OK
)
5833 res
->status
= status
;
5837 /* Stop timer when we comp all queue */
5838 if (fcdiag
->qtest
.timer_active
) {
5839 bfa_timer_stop(&fcdiag
->qtest
.timer
);
5840 fcdiag
->qtest
.timer_active
= 0;
5842 res
->queue
= fcdiag
->qtest
.queue
;
5843 res
->count
= QTEST_CNT_DEFAULT
- fcdiag
->qtest
.count
;
5844 bfa_trc(fcdiag
, res
->count
);
5845 bfa_trc(fcdiag
, res
->status
);
5846 fcdiag
->qtest
.status
= res
->status
;
5847 fcdiag
->qtest
.cbfn(fcdiag
->qtest
.cbarg
, fcdiag
->qtest
.status
);
5848 fcdiag
->qtest
.lock
= 0;
5852 bfa_fcdiag_loopback_comp(struct bfa_fcdiag_s
*fcdiag
,
5853 struct bfi_diag_lb_rsp_s
*rsp
)
5855 struct bfa_diag_loopback_result_s
*res
= fcdiag
->lb
.result
;
5857 res
->numtxmfrm
= be32_to_cpu(rsp
->res
.numtxmfrm
);
5858 res
->numosffrm
= be32_to_cpu(rsp
->res
.numosffrm
);
5859 res
->numrcvfrm
= be32_to_cpu(rsp
->res
.numrcvfrm
);
5860 res
->badfrminf
= be32_to_cpu(rsp
->res
.badfrminf
);
5861 res
->badfrmnum
= be32_to_cpu(rsp
->res
.badfrmnum
);
5862 res
->status
= rsp
->res
.status
;
5863 fcdiag
->lb
.status
= rsp
->res
.status
;
5864 bfa_trc(fcdiag
, fcdiag
->lb
.status
);
5865 fcdiag
->lb
.cbfn(fcdiag
->lb
.cbarg
, fcdiag
->lb
.status
);
5866 fcdiag
->lb
.lock
= 0;
5867 bfa_fcdiag_set_busy_status(fcdiag
);
5871 bfa_fcdiag_loopback_send(struct bfa_fcdiag_s
*fcdiag
,
5872 struct bfa_diag_loopback_s
*loopback
)
5874 struct bfi_diag_lb_req_s
*lb_req
;
5876 lb_req
= bfa_reqq_next(fcdiag
->bfa
, BFA_REQQ_DIAG
);
5878 return BFA_STATUS_DEVBUSY
;
5880 /* build host command */
5881 bfi_h2i_set(lb_req
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_LOOPBACK
,
5882 bfa_fn_lpu(fcdiag
->bfa
));
5884 lb_req
->lb_mode
= loopback
->lb_mode
;
5885 lb_req
->speed
= loopback
->speed
;
5886 lb_req
->loopcnt
= loopback
->loopcnt
;
5887 lb_req
->pattern
= loopback
->pattern
;
5889 /* ring door bell */
5890 bfa_reqq_produce(fcdiag
->bfa
, BFA_REQQ_DIAG
, lb_req
->mh
);
5892 bfa_trc(fcdiag
, loopback
->lb_mode
);
5893 bfa_trc(fcdiag
, loopback
->speed
);
5894 bfa_trc(fcdiag
, loopback
->loopcnt
);
5895 bfa_trc(fcdiag
, loopback
->pattern
);
5896 return BFA_STATUS_OK
;
5900 * cpe/rme intr handler
5903 bfa_fcdiag_intr(struct bfa_s
*bfa
, struct bfi_msg_s
*msg
)
5905 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
5907 switch (msg
->mhdr
.msg_id
) {
5908 case BFI_DIAG_I2H_LOOPBACK
:
5909 bfa_fcdiag_loopback_comp(fcdiag
,
5910 (struct bfi_diag_lb_rsp_s
*) msg
);
5912 case BFI_DIAG_I2H_QTEST
:
5913 bfa_fcdiag_queuetest_comp(fcdiag
, (bfi_diag_qtest_rsp_t
*)msg
);
5915 case BFI_DIAG_I2H_DPORT
:
5916 bfa_dport_req_comp(&fcdiag
->dport
,
5917 (struct bfi_diag_dport_rsp_s
*)msg
);
5919 case BFI_DIAG_I2H_DPORT_SCN
:
5920 bfa_dport_scn(&fcdiag
->dport
,
5921 (struct bfi_diag_dport_scn_s
*)msg
);
5924 bfa_trc(fcdiag
, msg
->mhdr
.msg_id
);
5932 * @param[in] *bfa - bfa data struct
5933 * @param[in] opmode - port operation mode
5934 * @param[in] speed - port speed
5935 * @param[in] lpcnt - loop count
5936 * @param[in] pat - pattern to build packet
5937 * @param[in] *result - pt to bfa_diag_loopback_result_t data struct
5938 * @param[in] cbfn - callback function
5939 * @param[in] cbarg - callback functioin arg
5944 bfa_fcdiag_loopback(struct bfa_s
*bfa
, enum bfa_port_opmode opmode
,
5945 enum bfa_port_speed speed
, u32 lpcnt
, u32 pat
,
5946 struct bfa_diag_loopback_result_s
*result
, bfa_cb_diag_t cbfn
,
5949 struct bfa_diag_loopback_s loopback
;
5950 struct bfa_port_attr_s attr
;
5951 bfa_status_t status
;
5952 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
5954 if (!bfa_iocfc_is_operational(bfa
))
5955 return BFA_STATUS_IOC_NON_OP
;
5957 /* if port is PBC disabled, return error */
5958 if (bfa_fcport_is_pbcdisabled(bfa
)) {
5959 bfa_trc(fcdiag
, BFA_STATUS_PBC
);
5960 return BFA_STATUS_PBC
;
5963 if (bfa_fcport_is_disabled(bfa
) == BFA_FALSE
) {
5964 bfa_trc(fcdiag
, opmode
);
5965 return BFA_STATUS_PORT_NOT_DISABLED
;
5969 * Check if input speed is supported by the port mode
5971 if (bfa_ioc_get_type(&bfa
->ioc
) == BFA_IOC_TYPE_FC
) {
5972 if (!(speed
== BFA_PORT_SPEED_1GBPS
||
5973 speed
== BFA_PORT_SPEED_2GBPS
||
5974 speed
== BFA_PORT_SPEED_4GBPS
||
5975 speed
== BFA_PORT_SPEED_8GBPS
||
5976 speed
== BFA_PORT_SPEED_16GBPS
||
5977 speed
== BFA_PORT_SPEED_AUTO
)) {
5978 bfa_trc(fcdiag
, speed
);
5979 return BFA_STATUS_UNSUPP_SPEED
;
5981 bfa_fcport_get_attr(bfa
, &attr
);
5982 bfa_trc(fcdiag
, attr
.speed_supported
);
5983 if (speed
> attr
.speed_supported
)
5984 return BFA_STATUS_UNSUPP_SPEED
;
5986 if (speed
!= BFA_PORT_SPEED_10GBPS
) {
5987 bfa_trc(fcdiag
, speed
);
5988 return BFA_STATUS_UNSUPP_SPEED
;
5993 * For CT2, 1G is not supported
5995 if ((speed
== BFA_PORT_SPEED_1GBPS
) &&
5996 (bfa_asic_id_ct2(bfa
->ioc
.pcidev
.device_id
))) {
5997 bfa_trc(fcdiag
, speed
);
5998 return BFA_STATUS_UNSUPP_SPEED
;
6001 /* For Mezz card, port speed entered needs to be checked */
6002 if (bfa_mfg_is_mezz(bfa
->ioc
.attr
->card_type
)) {
6003 if (bfa_ioc_get_type(&bfa
->ioc
) == BFA_IOC_TYPE_FC
) {
6004 if (!(speed
== BFA_PORT_SPEED_1GBPS
||
6005 speed
== BFA_PORT_SPEED_2GBPS
||
6006 speed
== BFA_PORT_SPEED_4GBPS
||
6007 speed
== BFA_PORT_SPEED_8GBPS
||
6008 speed
== BFA_PORT_SPEED_16GBPS
||
6009 speed
== BFA_PORT_SPEED_AUTO
))
6010 return BFA_STATUS_UNSUPP_SPEED
;
6012 if (speed
!= BFA_PORT_SPEED_10GBPS
)
6013 return BFA_STATUS_UNSUPP_SPEED
;
6016 /* check to see if fcport is dport */
6017 if (bfa_fcport_is_dport(bfa
)) {
6018 bfa_trc(fcdiag
, fcdiag
->lb
.lock
);
6019 return BFA_STATUS_DPORT_ENABLED
;
6021 /* check to see if there is another destructive diag cmd running */
6022 if (fcdiag
->lb
.lock
) {
6023 bfa_trc(fcdiag
, fcdiag
->lb
.lock
);
6024 return BFA_STATUS_DEVBUSY
;
6027 fcdiag
->lb
.lock
= 1;
6028 loopback
.lb_mode
= opmode
;
6029 loopback
.speed
= speed
;
6030 loopback
.loopcnt
= lpcnt
;
6031 loopback
.pattern
= pat
;
6032 fcdiag
->lb
.result
= result
;
6033 fcdiag
->lb
.cbfn
= cbfn
;
6034 fcdiag
->lb
.cbarg
= cbarg
;
6035 memset(result
, 0, sizeof(struct bfa_diag_loopback_result_s
));
6036 bfa_fcdiag_set_busy_status(fcdiag
);
6038 /* Send msg to fw */
6039 status
= bfa_fcdiag_loopback_send(fcdiag
, &loopback
);
6044 * DIAG queue test command
6046 * @param[in] *bfa - bfa data struct
6047 * @param[in] force - 1: don't do ioc op checking
6048 * @param[in] queue - queue no. to test
6049 * @param[in] *result - pt to bfa_diag_qtest_result_t data struct
6050 * @param[in] cbfn - callback function
6051 * @param[in] *cbarg - callback functioin arg
6056 bfa_fcdiag_queuetest(struct bfa_s
*bfa
, u32 force
, u32 queue
,
6057 struct bfa_diag_qtest_result_s
*result
, bfa_cb_diag_t cbfn
,
6060 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
6061 bfa_status_t status
;
6062 bfa_trc(fcdiag
, force
);
6063 bfa_trc(fcdiag
, queue
);
6065 if (!force
&& !bfa_iocfc_is_operational(bfa
))
6066 return BFA_STATUS_IOC_NON_OP
;
6068 /* check to see if there is another destructive diag cmd running */
6069 if (fcdiag
->qtest
.lock
) {
6070 bfa_trc(fcdiag
, fcdiag
->qtest
.lock
);
6071 return BFA_STATUS_DEVBUSY
;
6074 /* Initialization */
6075 fcdiag
->qtest
.lock
= 1;
6076 fcdiag
->qtest
.cbfn
= cbfn
;
6077 fcdiag
->qtest
.cbarg
= cbarg
;
6078 fcdiag
->qtest
.result
= result
;
6079 fcdiag
->qtest
.count
= QTEST_CNT_DEFAULT
;
6081 /* Init test results */
6082 fcdiag
->qtest
.result
->status
= BFA_STATUS_OK
;
6083 fcdiag
->qtest
.result
->count
= 0;
6086 if (queue
< BFI_IOC_MAX_CQS
) {
6087 fcdiag
->qtest
.result
->queue
= (u8
)queue
;
6088 fcdiag
->qtest
.queue
= (u8
)queue
;
6089 fcdiag
->qtest
.all
= 0;
6091 fcdiag
->qtest
.result
->queue
= 0;
6092 fcdiag
->qtest
.queue
= 0;
6093 fcdiag
->qtest
.all
= 1;
6095 status
= bfa_fcdiag_queuetest_send(fcdiag
);
6098 if (status
== BFA_STATUS_OK
) {
6099 bfa_timer_start(bfa
, &fcdiag
->qtest
.timer
,
6100 bfa_fcdiag_queuetest_timeout
, fcdiag
,
6101 BFA_DIAG_QTEST_TOV
);
6102 fcdiag
->qtest
.timer_active
= 1;
6108 * DIAG PLB is running
6110 * @param[in] *bfa - bfa data struct
6115 bfa_fcdiag_lb_is_running(struct bfa_s
*bfa
)
6117 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
6118 return fcdiag
->lb
.lock
? BFA_STATUS_DIAG_BUSY
: BFA_STATUS_OK
;
6124 #define bfa_dport_result_start(__dport, __mode) do { \
6125 (__dport)->result.start_time = ktime_get_real_seconds(); \
6126 (__dport)->result.status = DPORT_TEST_ST_INPRG; \
6127 (__dport)->result.mode = (__mode); \
6128 (__dport)->result.rp_pwwn = (__dport)->rp_pwwn; \
6129 (__dport)->result.rp_nwwn = (__dport)->rp_nwwn; \
6130 (__dport)->result.lpcnt = (__dport)->lpcnt; \
6133 static bfa_boolean_t
bfa_dport_send_req(struct bfa_dport_s
*dport
,
6134 enum bfi_dport_req req
);
6136 bfa_cb_fcdiag_dport(struct bfa_dport_s
*dport
, bfa_status_t bfa_status
)
6138 if (dport
->cbfn
!= NULL
) {
6139 dport
->cbfn(dport
->cbarg
, bfa_status
);
6141 dport
->cbarg
= NULL
;
6146 bfa_dport_sm_disabled(struct bfa_dport_s
*dport
, enum bfa_dport_sm_event event
)
6148 bfa_trc(dport
->bfa
, event
);
6151 case BFA_DPORT_SM_ENABLE
:
6152 bfa_fcport_dportenable(dport
->bfa
);
6153 if (bfa_dport_send_req(dport
, BFI_DPORT_ENABLE
))
6154 bfa_sm_set_state(dport
, bfa_dport_sm_enabling
);
6156 bfa_sm_set_state(dport
, bfa_dport_sm_enabling_qwait
);
6159 case BFA_DPORT_SM_DISABLE
:
6160 /* Already disabled */
6163 case BFA_DPORT_SM_HWFAIL
:
6167 case BFA_DPORT_SM_SCN
:
6168 if (dport
->i2hmsg
.scn
.state
== BFI_DPORT_SCN_DDPORT_ENABLE
) {
6169 bfa_fcport_ddportenable(dport
->bfa
);
6170 dport
->dynamic
= BFA_TRUE
;
6171 dport
->test_state
= BFA_DPORT_ST_NOTSTART
;
6172 bfa_sm_set_state(dport
, bfa_dport_sm_enabled
);
6174 bfa_trc(dport
->bfa
, dport
->i2hmsg
.scn
.state
);
6180 bfa_sm_fault(dport
->bfa
, event
);
6185 bfa_dport_sm_enabling_qwait(struct bfa_dport_s
*dport
,
6186 enum bfa_dport_sm_event event
)
6188 bfa_trc(dport
->bfa
, event
);
6191 case BFA_DPORT_SM_QRESUME
:
6192 bfa_sm_set_state(dport
, bfa_dport_sm_enabling
);
6193 bfa_dport_send_req(dport
, BFI_DPORT_ENABLE
);
6196 case BFA_DPORT_SM_HWFAIL
:
6197 bfa_reqq_wcancel(&dport
->reqq_wait
);
6198 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6199 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_FAILED
);
6203 bfa_sm_fault(dport
->bfa
, event
);
6208 bfa_dport_sm_enabling(struct bfa_dport_s
*dport
, enum bfa_dport_sm_event event
)
6210 bfa_trc(dport
->bfa
, event
);
6213 case BFA_DPORT_SM_FWRSP
:
6214 memset(&dport
->result
, 0,
6215 sizeof(struct bfa_diag_dport_result_s
));
6216 if (dport
->i2hmsg
.rsp
.status
== BFA_STATUS_DPORT_INV_SFP
) {
6217 dport
->test_state
= BFA_DPORT_ST_NO_SFP
;
6219 dport
->test_state
= BFA_DPORT_ST_INP
;
6220 bfa_dport_result_start(dport
, BFA_DPORT_OPMODE_AUTO
);
6222 bfa_sm_set_state(dport
, bfa_dport_sm_enabled
);
6225 case BFA_DPORT_SM_REQFAIL
:
6226 dport
->test_state
= BFA_DPORT_ST_DISABLED
;
6227 bfa_fcport_dportdisable(dport
->bfa
);
6228 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6231 case BFA_DPORT_SM_HWFAIL
:
6232 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6233 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_FAILED
);
6237 bfa_sm_fault(dport
->bfa
, event
);
6242 bfa_dport_sm_enabled(struct bfa_dport_s
*dport
, enum bfa_dport_sm_event event
)
6244 bfa_trc(dport
->bfa
, event
);
6247 case BFA_DPORT_SM_START
:
6248 if (bfa_dport_send_req(dport
, BFI_DPORT_START
))
6249 bfa_sm_set_state(dport
, bfa_dport_sm_starting
);
6251 bfa_sm_set_state(dport
, bfa_dport_sm_starting_qwait
);
6254 case BFA_DPORT_SM_DISABLE
:
6255 bfa_fcport_dportdisable(dport
->bfa
);
6256 if (bfa_dport_send_req(dport
, BFI_DPORT_DISABLE
))
6257 bfa_sm_set_state(dport
, bfa_dport_sm_disabling
);
6259 bfa_sm_set_state(dport
, bfa_dport_sm_disabling_qwait
);
6262 case BFA_DPORT_SM_HWFAIL
:
6263 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6266 case BFA_DPORT_SM_SCN
:
6267 switch (dport
->i2hmsg
.scn
.state
) {
6268 case BFI_DPORT_SCN_TESTCOMP
:
6269 dport
->test_state
= BFA_DPORT_ST_COMP
;
6272 case BFI_DPORT_SCN_TESTSTART
:
6273 dport
->test_state
= BFA_DPORT_ST_INP
;
6276 case BFI_DPORT_SCN_TESTSKIP
:
6277 case BFI_DPORT_SCN_SUBTESTSTART
:
6278 /* no state change */
6281 case BFI_DPORT_SCN_SFP_REMOVED
:
6282 dport
->test_state
= BFA_DPORT_ST_NO_SFP
;
6285 case BFI_DPORT_SCN_DDPORT_DISABLE
:
6286 bfa_fcport_ddportdisable(dport
->bfa
);
6288 if (bfa_dport_send_req(dport
, BFI_DPORT_DYN_DISABLE
))
6289 bfa_sm_set_state(dport
,
6290 bfa_dport_sm_dynamic_disabling
);
6292 bfa_sm_set_state(dport
,
6293 bfa_dport_sm_dynamic_disabling_qwait
);
6296 case BFI_DPORT_SCN_FCPORT_DISABLE
:
6297 bfa_fcport_ddportdisable(dport
->bfa
);
6299 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6300 dport
->dynamic
= BFA_FALSE
;
6304 bfa_trc(dport
->bfa
, dport
->i2hmsg
.scn
.state
);
6305 bfa_sm_fault(dport
->bfa
, event
);
6309 bfa_sm_fault(dport
->bfa
, event
);
6314 bfa_dport_sm_disabling_qwait(struct bfa_dport_s
*dport
,
6315 enum bfa_dport_sm_event event
)
6317 bfa_trc(dport
->bfa
, event
);
6320 case BFA_DPORT_SM_QRESUME
:
6321 bfa_sm_set_state(dport
, bfa_dport_sm_disabling
);
6322 bfa_dport_send_req(dport
, BFI_DPORT_DISABLE
);
6325 case BFA_DPORT_SM_HWFAIL
:
6326 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6327 bfa_reqq_wcancel(&dport
->reqq_wait
);
6328 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_OK
);
6331 case BFA_DPORT_SM_SCN
:
6336 bfa_sm_fault(dport
->bfa
, event
);
6341 bfa_dport_sm_disabling(struct bfa_dport_s
*dport
, enum bfa_dport_sm_event event
)
6343 bfa_trc(dport
->bfa
, event
);
6346 case BFA_DPORT_SM_FWRSP
:
6347 dport
->test_state
= BFA_DPORT_ST_DISABLED
;
6348 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6351 case BFA_DPORT_SM_HWFAIL
:
6352 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6353 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_OK
);
6356 case BFA_DPORT_SM_SCN
:
6357 /* no state change */
6361 bfa_sm_fault(dport
->bfa
, event
);
6366 bfa_dport_sm_starting_qwait(struct bfa_dport_s
*dport
,
6367 enum bfa_dport_sm_event event
)
6369 bfa_trc(dport
->bfa
, event
);
6372 case BFA_DPORT_SM_QRESUME
:
6373 bfa_sm_set_state(dport
, bfa_dport_sm_starting
);
6374 bfa_dport_send_req(dport
, BFI_DPORT_START
);
6377 case BFA_DPORT_SM_HWFAIL
:
6378 bfa_reqq_wcancel(&dport
->reqq_wait
);
6379 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6380 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_FAILED
);
6384 bfa_sm_fault(dport
->bfa
, event
);
6389 bfa_dport_sm_starting(struct bfa_dport_s
*dport
, enum bfa_dport_sm_event event
)
6391 bfa_trc(dport
->bfa
, event
);
6394 case BFA_DPORT_SM_FWRSP
:
6395 memset(&dport
->result
, 0,
6396 sizeof(struct bfa_diag_dport_result_s
));
6397 if (dport
->i2hmsg
.rsp
.status
== BFA_STATUS_DPORT_INV_SFP
) {
6398 dport
->test_state
= BFA_DPORT_ST_NO_SFP
;
6400 dport
->test_state
= BFA_DPORT_ST_INP
;
6401 bfa_dport_result_start(dport
, BFA_DPORT_OPMODE_MANU
);
6405 case BFA_DPORT_SM_REQFAIL
:
6406 bfa_sm_set_state(dport
, bfa_dport_sm_enabled
);
6409 case BFA_DPORT_SM_HWFAIL
:
6410 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6411 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_FAILED
);
6415 bfa_sm_fault(dport
->bfa
, event
);
6420 bfa_dport_sm_dynamic_disabling(struct bfa_dport_s
*dport
,
6421 enum bfa_dport_sm_event event
)
6423 bfa_trc(dport
->bfa
, event
);
6426 case BFA_DPORT_SM_SCN
:
6427 switch (dport
->i2hmsg
.scn
.state
) {
6428 case BFI_DPORT_SCN_DDPORT_DISABLED
:
6429 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6430 dport
->dynamic
= BFA_FALSE
;
6431 bfa_fcport_enable(dport
->bfa
);
6435 bfa_trc(dport
->bfa
, dport
->i2hmsg
.scn
.state
);
6436 bfa_sm_fault(dport
->bfa
, event
);
6441 case BFA_DPORT_SM_HWFAIL
:
6442 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6443 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_OK
);
6447 bfa_sm_fault(dport
->bfa
, event
);
6452 bfa_dport_sm_dynamic_disabling_qwait(struct bfa_dport_s
*dport
,
6453 enum bfa_dport_sm_event event
)
6455 bfa_trc(dport
->bfa
, event
);
6458 case BFA_DPORT_SM_QRESUME
:
6459 bfa_sm_set_state(dport
, bfa_dport_sm_dynamic_disabling
);
6460 bfa_dport_send_req(dport
, BFI_DPORT_DYN_DISABLE
);
6463 case BFA_DPORT_SM_HWFAIL
:
6464 bfa_sm_set_state(dport
, bfa_dport_sm_disabled
);
6465 bfa_reqq_wcancel(&dport
->reqq_wait
);
6466 bfa_cb_fcdiag_dport(dport
, BFA_STATUS_OK
);
6469 case BFA_DPORT_SM_SCN
:
6474 bfa_sm_fault(dport
->bfa
, event
);
6478 static bfa_boolean_t
6479 bfa_dport_send_req(struct bfa_dport_s
*dport
, enum bfi_dport_req req
)
6481 struct bfi_diag_dport_req_s
*m
;
6484 * check for room in queue to send request now
6486 m
= bfa_reqq_next(dport
->bfa
, BFA_REQQ_DIAG
);
6488 bfa_reqq_wait(dport
->bfa
, BFA_REQQ_PORT
, &dport
->reqq_wait
);
6492 bfi_h2i_set(m
->mh
, BFI_MC_DIAG
, BFI_DIAG_H2I_DPORT
,
6493 bfa_fn_lpu(dport
->bfa
));
6495 if ((req
== BFI_DPORT_ENABLE
) || (req
== BFI_DPORT_START
)) {
6496 m
->lpcnt
= cpu_to_be32(dport
->lpcnt
);
6497 m
->payload
= cpu_to_be32(dport
->payload
);
6501 * queue I/O message to firmware
6503 bfa_reqq_produce(dport
->bfa
, BFA_REQQ_DIAG
, m
->mh
);
6509 bfa_dport_qresume(void *cbarg
)
6511 struct bfa_dport_s
*dport
= cbarg
;
6513 bfa_sm_send_event(dport
, BFA_DPORT_SM_QRESUME
);
6517 bfa_dport_req_comp(struct bfa_dport_s
*dport
, struct bfi_diag_dport_rsp_s
*msg
)
6519 msg
->status
= cpu_to_be32(msg
->status
);
6520 dport
->i2hmsg
.rsp
.status
= msg
->status
;
6521 dport
->rp_pwwn
= msg
->pwwn
;
6522 dport
->rp_nwwn
= msg
->nwwn
;
6524 if ((msg
->status
== BFA_STATUS_OK
) ||
6525 (msg
->status
== BFA_STATUS_DPORT_NO_SFP
)) {
6526 bfa_trc(dport
->bfa
, msg
->status
);
6527 bfa_trc(dport
->bfa
, dport
->rp_pwwn
);
6528 bfa_trc(dport
->bfa
, dport
->rp_nwwn
);
6529 bfa_sm_send_event(dport
, BFA_DPORT_SM_FWRSP
);
6532 bfa_trc(dport
->bfa
, msg
->status
);
6533 bfa_sm_send_event(dport
, BFA_DPORT_SM_REQFAIL
);
6535 bfa_cb_fcdiag_dport(dport
, msg
->status
);
6538 static bfa_boolean_t
6539 bfa_dport_is_sending_req(struct bfa_dport_s
*dport
)
6541 if (bfa_sm_cmp_state(dport
, bfa_dport_sm_enabling
) ||
6542 bfa_sm_cmp_state(dport
, bfa_dport_sm_enabling_qwait
) ||
6543 bfa_sm_cmp_state(dport
, bfa_dport_sm_disabling
) ||
6544 bfa_sm_cmp_state(dport
, bfa_dport_sm_disabling_qwait
) ||
6545 bfa_sm_cmp_state(dport
, bfa_dport_sm_starting
) ||
6546 bfa_sm_cmp_state(dport
, bfa_dport_sm_starting_qwait
)) {
6554 bfa_dport_scn(struct bfa_dport_s
*dport
, struct bfi_diag_dport_scn_s
*msg
)
6557 uint8_t subtesttype
;
6559 bfa_trc(dport
->bfa
, msg
->state
);
6560 dport
->i2hmsg
.scn
.state
= msg
->state
;
6562 switch (dport
->i2hmsg
.scn
.state
) {
6563 case BFI_DPORT_SCN_TESTCOMP
:
6564 dport
->result
.end_time
= ktime_get_real_seconds();
6565 bfa_trc(dport
->bfa
, dport
->result
.end_time
);
6567 dport
->result
.status
= msg
->info
.testcomp
.status
;
6568 bfa_trc(dport
->bfa
, dport
->result
.status
);
6570 dport
->result
.roundtrip_latency
=
6571 cpu_to_be32(msg
->info
.testcomp
.latency
);
6572 dport
->result
.est_cable_distance
=
6573 cpu_to_be32(msg
->info
.testcomp
.distance
);
6574 dport
->result
.buffer_required
=
6575 be16_to_cpu(msg
->info
.testcomp
.numbuffer
);
6577 dport
->result
.frmsz
= be16_to_cpu(msg
->info
.testcomp
.frm_sz
);
6578 dport
->result
.speed
= msg
->info
.testcomp
.speed
;
6580 bfa_trc(dport
->bfa
, dport
->result
.roundtrip_latency
);
6581 bfa_trc(dport
->bfa
, dport
->result
.est_cable_distance
);
6582 bfa_trc(dport
->bfa
, dport
->result
.buffer_required
);
6583 bfa_trc(dport
->bfa
, dport
->result
.frmsz
);
6584 bfa_trc(dport
->bfa
, dport
->result
.speed
);
6586 for (i
= DPORT_TEST_ELOOP
; i
< DPORT_TEST_MAX
; i
++) {
6587 dport
->result
.subtest
[i
].status
=
6588 msg
->info
.testcomp
.subtest_status
[i
];
6589 bfa_trc(dport
->bfa
, dport
->result
.subtest
[i
].status
);
6593 case BFI_DPORT_SCN_TESTSKIP
:
6594 case BFI_DPORT_SCN_DDPORT_ENABLE
:
6595 memset(&dport
->result
, 0,
6596 sizeof(struct bfa_diag_dport_result_s
));
6599 case BFI_DPORT_SCN_TESTSTART
:
6600 memset(&dport
->result
, 0,
6601 sizeof(struct bfa_diag_dport_result_s
));
6602 dport
->rp_pwwn
= msg
->info
.teststart
.pwwn
;
6603 dport
->rp_nwwn
= msg
->info
.teststart
.nwwn
;
6604 dport
->lpcnt
= cpu_to_be32(msg
->info
.teststart
.numfrm
);
6605 bfa_dport_result_start(dport
, msg
->info
.teststart
.mode
);
6608 case BFI_DPORT_SCN_SUBTESTSTART
:
6609 subtesttype
= msg
->info
.teststart
.type
;
6610 dport
->result
.subtest
[subtesttype
].start_time
=
6611 ktime_get_real_seconds();
6612 dport
->result
.subtest
[subtesttype
].status
=
6613 DPORT_TEST_ST_INPRG
;
6615 bfa_trc(dport
->bfa
, subtesttype
);
6617 dport
->result
.subtest
[subtesttype
].start_time
);
6620 case BFI_DPORT_SCN_SFP_REMOVED
:
6621 case BFI_DPORT_SCN_DDPORT_DISABLED
:
6622 case BFI_DPORT_SCN_DDPORT_DISABLE
:
6623 case BFI_DPORT_SCN_FCPORT_DISABLE
:
6624 dport
->result
.status
= DPORT_TEST_ST_IDLE
;
6628 bfa_sm_fault(dport
->bfa
, msg
->state
);
6631 bfa_sm_send_event(dport
, BFA_DPORT_SM_SCN
);
6637 * @param[in] *bfa - bfa data struct
6640 bfa_dport_enable(struct bfa_s
*bfa
, u32 lpcnt
, u32 pat
,
6641 bfa_cb_diag_t cbfn
, void *cbarg
)
6643 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
6644 struct bfa_dport_s
*dport
= &fcdiag
->dport
;
6647 * Dport is not support in MEZZ card
6649 if (bfa_mfg_is_mezz(dport
->bfa
->ioc
.attr
->card_type
)) {
6650 bfa_trc(dport
->bfa
, BFA_STATUS_PBC
);
6651 return BFA_STATUS_CMD_NOTSUPP_MEZZ
;
6655 * Dport is supported in CT2 or above
6657 if (!(bfa_asic_id_ct2(dport
->bfa
->ioc
.pcidev
.device_id
))) {
6658 bfa_trc(dport
->bfa
, dport
->bfa
->ioc
.pcidev
.device_id
);
6659 return BFA_STATUS_FEATURE_NOT_SUPPORTED
;
6663 * Check to see if IOC is down
6665 if (!bfa_iocfc_is_operational(bfa
))
6666 return BFA_STATUS_IOC_NON_OP
;
6668 /* if port is PBC disabled, return error */
6669 if (bfa_fcport_is_pbcdisabled(bfa
)) {
6670 bfa_trc(dport
->bfa
, BFA_STATUS_PBC
);
6671 return BFA_STATUS_PBC
;
6675 * Check if port mode is FC port
6677 if (bfa_ioc_get_type(&bfa
->ioc
) != BFA_IOC_TYPE_FC
) {
6678 bfa_trc(dport
->bfa
, bfa_ioc_get_type(&bfa
->ioc
));
6679 return BFA_STATUS_CMD_NOTSUPP_CNA
;
6683 * Check if port is in LOOP mode
6685 if ((bfa_fcport_get_cfg_topology(bfa
) == BFA_PORT_TOPOLOGY_LOOP
) ||
6686 (bfa_fcport_get_topology(bfa
) == BFA_PORT_TOPOLOGY_LOOP
)) {
6687 bfa_trc(dport
->bfa
, 0);
6688 return BFA_STATUS_TOPOLOGY_LOOP
;
6692 * Check if port is TRUNK mode
6694 if (bfa_fcport_is_trunk_enabled(bfa
)) {
6695 bfa_trc(dport
->bfa
, 0);
6696 return BFA_STATUS_ERROR_TRUNK_ENABLED
;
6700 * Check if diag loopback is running
6702 if (bfa_fcdiag_lb_is_running(bfa
)) {
6703 bfa_trc(dport
->bfa
, 0);
6704 return BFA_STATUS_DIAG_BUSY
;
6708 * Check to see if port is disable or in dport state
6710 if ((bfa_fcport_is_disabled(bfa
) == BFA_FALSE
) &&
6711 (bfa_fcport_is_dport(bfa
) == BFA_FALSE
)) {
6712 bfa_trc(dport
->bfa
, 0);
6713 return BFA_STATUS_PORT_NOT_DISABLED
;
6717 * Check if dport is in dynamic mode
6720 return BFA_STATUS_DDPORT_ERR
;
6723 * Check if dport is busy
6725 if (bfa_dport_is_sending_req(dport
))
6726 return BFA_STATUS_DEVBUSY
;
6729 * Check if dport is already enabled
6731 if (bfa_sm_cmp_state(dport
, bfa_dport_sm_enabled
)) {
6732 bfa_trc(dport
->bfa
, 0);
6733 return BFA_STATUS_DPORT_ENABLED
;
6736 bfa_trc(dport
->bfa
, lpcnt
);
6737 bfa_trc(dport
->bfa
, pat
);
6738 dport
->lpcnt
= (lpcnt
) ? lpcnt
: DPORT_ENABLE_LOOPCNT_DEFAULT
;
6739 dport
->payload
= (pat
) ? pat
: LB_PATTERN_DEFAULT
;
6741 dport
->cbarg
= cbarg
;
6743 bfa_sm_send_event(dport
, BFA_DPORT_SM_ENABLE
);
6744 return BFA_STATUS_OK
;
6750 * @param[in] *bfa - bfa data struct
6753 bfa_dport_disable(struct bfa_s
*bfa
, bfa_cb_diag_t cbfn
, void *cbarg
)
6755 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
6756 struct bfa_dport_s
*dport
= &fcdiag
->dport
;
6758 if (bfa_ioc_is_disabled(&bfa
->ioc
))
6759 return BFA_STATUS_IOC_DISABLED
;
6761 /* if port is PBC disabled, return error */
6762 if (bfa_fcport_is_pbcdisabled(bfa
)) {
6763 bfa_trc(dport
->bfa
, BFA_STATUS_PBC
);
6764 return BFA_STATUS_PBC
;
6768 * Check if dport is in dynamic mode
6770 if (dport
->dynamic
) {
6771 return BFA_STATUS_DDPORT_ERR
;
6775 * Check to see if port is disable or in dport state
6777 if ((bfa_fcport_is_disabled(bfa
) == BFA_FALSE
) &&
6778 (bfa_fcport_is_dport(bfa
) == BFA_FALSE
)) {
6779 bfa_trc(dport
->bfa
, 0);
6780 return BFA_STATUS_PORT_NOT_DISABLED
;
6784 * Check if dport is busy
6786 if (bfa_dport_is_sending_req(dport
))
6787 return BFA_STATUS_DEVBUSY
;
6790 * Check if dport is already disabled
6792 if (bfa_sm_cmp_state(dport
, bfa_dport_sm_disabled
)) {
6793 bfa_trc(dport
->bfa
, 0);
6794 return BFA_STATUS_DPORT_DISABLED
;
6798 dport
->cbarg
= cbarg
;
6800 bfa_sm_send_event(dport
, BFA_DPORT_SM_DISABLE
);
6801 return BFA_STATUS_OK
;
6805 * Dport start -- restart dport test
6807 * @param[in] *bfa - bfa data struct
6810 bfa_dport_start(struct bfa_s
*bfa
, u32 lpcnt
, u32 pat
,
6811 bfa_cb_diag_t cbfn
, void *cbarg
)
6813 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
6814 struct bfa_dport_s
*dport
= &fcdiag
->dport
;
6817 * Check to see if IOC is down
6819 if (!bfa_iocfc_is_operational(bfa
))
6820 return BFA_STATUS_IOC_NON_OP
;
6823 * Check if dport is in dynamic mode
6826 return BFA_STATUS_DDPORT_ERR
;
6829 * Check if dport is busy
6831 if (bfa_dport_is_sending_req(dport
))
6832 return BFA_STATUS_DEVBUSY
;
6835 * Check if dport is in enabled state.
6836 * Test can only be restart when previous test has completed
6838 if (!bfa_sm_cmp_state(dport
, bfa_dport_sm_enabled
)) {
6839 bfa_trc(dport
->bfa
, 0);
6840 return BFA_STATUS_DPORT_DISABLED
;
6843 if (dport
->test_state
== BFA_DPORT_ST_NO_SFP
)
6844 return BFA_STATUS_DPORT_INV_SFP
;
6846 if (dport
->test_state
== BFA_DPORT_ST_INP
)
6847 return BFA_STATUS_DEVBUSY
;
6849 WARN_ON(dport
->test_state
!= BFA_DPORT_ST_COMP
);
6852 bfa_trc(dport
->bfa
, lpcnt
);
6853 bfa_trc(dport
->bfa
, pat
);
6855 dport
->lpcnt
= (lpcnt
) ? lpcnt
: DPORT_ENABLE_LOOPCNT_DEFAULT
;
6856 dport
->payload
= (pat
) ? pat
: LB_PATTERN_DEFAULT
;
6859 dport
->cbarg
= cbarg
;
6861 bfa_sm_send_event(dport
, BFA_DPORT_SM_START
);
6862 return BFA_STATUS_OK
;
6866 * Dport show -- return dport test result
6868 * @param[in] *bfa - bfa data struct
6871 bfa_dport_show(struct bfa_s
*bfa
, struct bfa_diag_dport_result_s
*result
)
6873 struct bfa_fcdiag_s
*fcdiag
= BFA_FCDIAG_MOD(bfa
);
6874 struct bfa_dport_s
*dport
= &fcdiag
->dport
;
6877 * Check to see if IOC is down
6879 if (!bfa_iocfc_is_operational(bfa
))
6880 return BFA_STATUS_IOC_NON_OP
;
6883 * Check if dport is busy
6885 if (bfa_dport_is_sending_req(dport
))
6886 return BFA_STATUS_DEVBUSY
;
6889 * Check if dport is in enabled state.
6891 if (!bfa_sm_cmp_state(dport
, bfa_dport_sm_enabled
)) {
6892 bfa_trc(dport
->bfa
, 0);
6893 return BFA_STATUS_DPORT_DISABLED
;
6898 * Check if there is SFP
6900 if (dport
->test_state
== BFA_DPORT_ST_NO_SFP
)
6901 return BFA_STATUS_DPORT_INV_SFP
;
6903 memcpy(result
, &dport
->result
, sizeof(struct bfa_diag_dport_result_s
));
6905 return BFA_STATUS_OK
;