2 * Linux network driver for QLogic BR-series Converged Network Adapter.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License (GPL) Version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
14 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
15 * Copyright (c) 2014-2015 QLogic Corporation
20 #ifndef __BFA_MSGQ_H__
21 #define __BFA_MSGQ_H__
28 #define BFA_MSGQ_FREE_CNT(_q) \
29 (((_q)->consumer_index - (_q)->producer_index - 1) & ((_q)->depth - 1))
31 #define BFA_MSGQ_INDX_ADD(_q_indx, _qe_num, _q_depth) \
32 ((_q_indx) = (((_q_indx) + (_qe_num)) & ((_q_depth) - 1)))
34 #define BFA_MSGQ_CMDQ_NUM_ENTRY 128
35 #define BFA_MSGQ_CMDQ_SIZE \
36 (BFI_MSGQ_CMD_ENTRY_SIZE * BFA_MSGQ_CMDQ_NUM_ENTRY)
38 #define BFA_MSGQ_RSPQ_NUM_ENTRY 128
39 #define BFA_MSGQ_RSPQ_SIZE \
40 (BFI_MSGQ_RSP_ENTRY_SIZE * BFA_MSGQ_RSPQ_NUM_ENTRY)
42 #define bfa_msgq_cmd_set(_cmd, _cbfn, _cbarg, _msg_size, _msg_hdr) \
44 (_cmd)->cbfn = (_cbfn); \
45 (_cmd)->cbarg = (_cbarg); \
46 (_cmd)->msg_size = (_msg_size); \
47 (_cmd)->msg_hdr = (_msg_hdr); \
52 typedef void (*bfa_msgq_cmdcbfn_t
)(void *cbarg
, enum bfa_status status
);
54 struct bfa_msgq_cmd_entry
{
56 bfa_msgq_cmdcbfn_t cbfn
;
59 struct bfi_msgq_mhdr
*msg_hdr
;
62 enum bfa_msgq_cmdq_flags
{
63 BFA_MSGQ_CMDQ_F_DB_UPDATE
= 1,
66 struct bfa_msgq_cmdq
{
68 enum bfa_msgq_cmdq_flags flags
;
72 u16 depth
; /* FW Q depth is 16 bits */
74 struct bfa_mbox_cmd dbell_mb
;
79 struct bfa_mbox_cmd copy_mb
;
81 struct list_head pending_q
; /* pending command queue */
83 struct bfa_msgq
*msgq
;
86 enum bfa_msgq_rspq_flags
{
87 BFA_MSGQ_RSPQ_F_DB_UPDATE
= 1,
90 typedef void (*bfa_msgq_mcfunc_t
)(void *cbarg
, struct bfi_msgq_mhdr
*mhdr
);
92 struct bfa_msgq_rspq
{
94 enum bfa_msgq_rspq_flags flags
;
98 u16 depth
; /* FW Q depth is 16 bits */
100 struct bfa_mbox_cmd dbell_mb
;
104 bfa_msgq_mcfunc_t cbfn
;
106 } rsphdlr
[BFI_MC_MAX
];
108 struct bfa_msgq
*msgq
;
112 struct bfa_msgq_cmdq cmdq
;
113 struct bfa_msgq_rspq rspq
;
115 struct bfa_wc init_wc
;
116 struct bfa_mbox_cmd init_mb
;
118 struct bfa_ioc_notify ioc_notify
;
122 u32
bfa_msgq_meminfo(void);
123 void bfa_msgq_memclaim(struct bfa_msgq
*msgq
, u8
*kva
, u64 pa
);
124 void bfa_msgq_attach(struct bfa_msgq
*msgq
, struct bfa_ioc
*ioc
);
125 void bfa_msgq_regisr(struct bfa_msgq
*msgq
, enum bfi_mclass mc
,
126 bfa_msgq_mcfunc_t cbfn
, void *cbarg
);
127 void bfa_msgq_cmd_post(struct bfa_msgq
*msgq
,
128 struct bfa_msgq_cmd_entry
*cmd
);
129 void bfa_msgq_rsp_copy(struct bfa_msgq
*msgq
, u8
*buf
, size_t buf_len
);