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.
12 * bfa_cs.h BFA common services
25 #define BFA_TRC_MAX (4 * 1024)
28 #define BFA_TRC_TS(_trcm) \
30 struct timespec64 ts; \
32 ktime_get_ts64(&ts); \
33 (ts.tv_sec*1000000+ts.tv_nsec / 1000); \
37 #define BFA_TRC_TS(_trcm) ((_trcm)->ticks++)
58 struct bfa_trc_mod_s
{
65 struct bfa_trc_s trc
[BFA_TRC_MAX
];
69 BFA_TRC_HAL
= 1, /* BFA modules */
70 BFA_TRC_FCS
= 2, /* BFA FCS modules */
71 BFA_TRC_LDRV
= 3, /* Linux driver modules */
72 BFA_TRC_CNA
= 4, /* Common modules */
74 #define BFA_TRC_MOD_SH 10
75 #define BFA_TRC_MOD(__mod) ((BFA_TRC_ ## __mod) << BFA_TRC_MOD_SH)
78 * Define a new tracing file (module). Module should match one defined above.
80 #define BFA_TRC_FILE(__mod, __submod) \
81 static int __trc_fileno = ((BFA_TRC_ ## __mod ## _ ## __submod) | \
85 #define bfa_trc32(_trcp, _data) \
86 __bfa_trc((_trcp)->trcmod, __trc_fileno, __LINE__, (u32)_data)
87 #define bfa_trc(_trcp, _data) \
88 __bfa_trc((_trcp)->trcmod, __trc_fileno, __LINE__, (u64)_data)
91 bfa_trc_init(struct bfa_trc_mod_s
*trcm
)
93 trcm
->head
= trcm
->tail
= trcm
->stopped
= 0;
94 trcm
->ntrc
= BFA_TRC_MAX
;
98 bfa_trc_stop(struct bfa_trc_mod_s
*trcm
)
104 __bfa_trc(struct bfa_trc_mod_s
*trcm
, int fileno
, int line
, u64 data
);
107 __bfa_trc32(struct bfa_trc_mod_s
*trcm
, int fileno
, int line
, u32 data
);
109 #define bfa_sm_fault(__mod, __event) do { \
110 bfa_trc(__mod, (((u32)0xDEAD << 16) | __event)); \
111 printk(KERN_ERR "Assertion failure: %s:%d: %d", \
112 __FILE__, __LINE__, (__event)); \
115 /* BFA queue definitions */
116 #define bfa_q_first(_q) ((void *)(((struct list_head *) (_q))->next))
117 #define bfa_q_next(_qe) (((struct list_head *) (_qe))->next)
118 #define bfa_q_prev(_qe) (((struct list_head *) (_qe))->prev)
121 * bfa_q_qe_init - to initialize a queue element
123 #define bfa_q_qe_init(_qe) { \
124 bfa_q_next(_qe) = (struct list_head *) NULL; \
125 bfa_q_prev(_qe) = (struct list_head *) NULL; \
129 * bfa_q_deq - dequeue an element from head of the queue
131 #define bfa_q_deq(_q, _qe) do { \
132 if (!list_empty(_q)) { \
133 (*((struct list_head **) (_qe))) = bfa_q_next(_q); \
134 bfa_q_prev(bfa_q_next(*((struct list_head **) _qe))) = \
135 (struct list_head *) (_q); \
136 bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe));\
138 *((struct list_head **) (_qe)) = (struct list_head *) NULL;\
143 * bfa_q_deq_tail - dequeue an element from tail of the queue
145 #define bfa_q_deq_tail(_q, _qe) { \
146 if (!list_empty(_q)) { \
147 *((struct list_head **) (_qe)) = bfa_q_prev(_q); \
148 bfa_q_next(bfa_q_prev(*((struct list_head **) _qe))) = \
149 (struct list_head *) (_q); \
150 bfa_q_prev(_q) = bfa_q_prev(*(struct list_head **) _qe);\
152 *((struct list_head **) (_qe)) = (struct list_head *) NULL;\
157 bfa_q_is_on_q_func(struct list_head
*q
, struct list_head
*qe
)
159 struct list_head
*tqe
;
165 tqe
= bfa_q_next(tqe
);
172 #define bfa_q_is_on_q(_q, _qe) \
173 bfa_q_is_on_q_func(_q, (struct list_head *)(_qe))
176 * @ BFA state machine interfaces
179 typedef void (*bfa_sm_t
)(void *sm
, int event
);
182 * oc - object class eg. bfa_ioc
183 * st - state, eg. reset
184 * otype - object type, eg. struct bfa_ioc_s
185 * etype - object type, eg. enum ioc_event
187 #define bfa_sm_state_decl(oc, st, otype, etype) \
188 static void oc ## _sm_ ## st(otype * fsm, etype event)
190 #define bfa_sm_set_state(_sm, _state) ((_sm)->sm = (bfa_sm_t)(_state))
191 #define bfa_sm_send_event(_sm, _event) ((_sm)->sm((_sm), (_event)))
192 #define bfa_sm_get_state(_sm) ((_sm)->sm)
193 #define bfa_sm_cmp_state(_sm, _state) ((_sm)->sm == (bfa_sm_t)(_state))
196 * For converting from state machine function to state encoding.
198 struct bfa_sm_table_s
{
199 bfa_sm_t sm
; /* state machine function */
200 int state
; /* state machine encoding */
201 char *name
; /* state name for display */
203 #define BFA_SM(_sm) ((bfa_sm_t)(_sm))
206 * State machine with entry actions.
208 typedef void (*bfa_fsm_t
)(void *fsm
, int event
);
211 * oc - object class eg. bfa_ioc
212 * st - state, eg. reset
213 * otype - object type, eg. struct bfa_ioc_s
214 * etype - object type, eg. enum ioc_event
216 #define bfa_fsm_state_decl(oc, st, otype, etype) \
217 static void oc ## _sm_ ## st(otype * fsm, etype event); \
218 static void oc ## _sm_ ## st ## _entry(otype * fsm)
220 #define bfa_fsm_set_state(_fsm, _state) do { \
221 (_fsm)->fsm = (bfa_fsm_t)(_state); \
222 _state ## _entry(_fsm); \
225 #define bfa_fsm_send_event(_fsm, _event) ((_fsm)->fsm((_fsm), (_event)))
226 #define bfa_fsm_get_state(_fsm) ((_fsm)->fsm)
227 #define bfa_fsm_cmp_state(_fsm, _state) \
228 ((_fsm)->fsm == (bfa_fsm_t)(_state))
231 bfa_sm_to_state(struct bfa_sm_table_s
*smt
, bfa_sm_t sm
)
235 while (smt
[i
].sm
&& smt
[i
].sm
!= sm
)
241 * @ Generic wait counter.
244 typedef void (*bfa_wc_resume_t
) (void *cbarg
);
247 bfa_wc_resume_t wc_resume
;
253 bfa_wc_up(struct bfa_wc_s
*wc
)
259 bfa_wc_down(struct bfa_wc_s
*wc
)
262 if (wc
->wc_count
== 0)
263 wc
->wc_resume(wc
->wc_cbarg
);
267 * Initialize a waiting counter.
270 bfa_wc_init(struct bfa_wc_s
*wc
, bfa_wc_resume_t wc_resume
, void *wc_cbarg
)
272 wc
->wc_resume
= wc_resume
;
273 wc
->wc_cbarg
= wc_cbarg
;
279 * Wait for counter to reach zero
282 bfa_wc_wait(struct bfa_wc_s
*wc
)
288 wwn2str(char *wwn_str
, u64 wwn
)
296 sprintf(wwn_str
, "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x", w
.byte
[0],
297 w
.byte
[1], w
.byte
[2], w
.byte
[3], w
.byte
[4], w
.byte
[5],
298 w
.byte
[6], w
.byte
[7]);
302 fcid2str(char *fcid_str
, u32 fcid
)
310 sprintf(fcid_str
, "%02x:%02x:%02x", f
.byte
[1], f
.byte
[2], f
.byte
[3]);
313 #define bfa_swap_3b(_x) \
314 ((((_x) & 0xff) << 16) | \
315 ((_x) & 0x00ff00) | \
316 (((_x) & 0xff0000) >> 16))
319 #define bfa_hton3b(_x) bfa_swap_3b(_x)
321 #define bfa_hton3b(_x) (_x)
324 #define bfa_ntoh3b(_x) bfa_hton3b(_x)
326 #endif /* __BFA_CS_H__ */