1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018, Intel Corporation. */
4 #ifndef _ICE_CONTROLQ_H_
5 #define _ICE_CONTROLQ_H_
7 #include "ice_adminq_cmd.h"
9 /* Maximum buffer lengths for all control queue types */
10 #define ICE_AQ_MAX_BUF_LEN 4096
11 #define ICE_MBXQ_MAX_BUF_LEN 4096
12 #define ICE_SBQ_MAX_BUF_LEN 512
14 #define ICE_CTL_Q_DESC(R, i) \
15 (&(((struct ice_aq_desc *)((R).desc_buf.va))[i]))
17 #define ICE_CTL_Q_DESC_UNUSED(R) \
18 ((u16)((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
19 (R)->next_to_clean - (R)->next_to_use - 1))
21 /* Defines that help manage the driver vs FW API checks.
22 * Take a look at ice_aq_ver_check in ice_controlq.c for actual usage.
24 #define EXP_FW_API_VER_BRANCH 0x00
25 #define EXP_FW_API_VER_MAJOR 0x01
26 #define EXP_FW_API_VER_MINOR 0x05
28 /* Different control queue types: These are mainly for SW consumption. */
30 ICE_CTL_Q_UNKNOWN = 0,
36 /* Control Queue timeout settings - max delay 1s */
37 #define ICE_CTL_Q_SQ_CMD_TIMEOUT 10000 /* Count 10000 times */
38 #define ICE_CTL_Q_SQ_CMD_USEC 100 /* Check every 100usec */
39 #define ICE_CTL_Q_ADMIN_INIT_TIMEOUT 10 /* Count 10 times */
40 #define ICE_CTL_Q_ADMIN_INIT_MSEC 100 /* Check every 100msec */
42 struct ice_ctl_q_ring {
43 void *dma_head; /* Virtual address to DMA head */
44 struct ice_dma_mem desc_buf; /* descriptor ring memory */
45 void *cmd_buf; /* command buffer memory */
48 struct ice_dma_mem *sq_bi;
49 struct ice_dma_mem *rq_bi;
52 u16 count; /* Number of descriptors */
54 /* used for interrupt processing */
58 /* used for queue tracking */
70 /* sq transaction details */
72 struct ice_aq_desc *wb_desc;
75 #define ICE_CTL_Q_DETAILS(R, i) (&(((struct ice_sq_cd *)((R).cmd_buf))[i]))
77 /* rq event information */
78 struct ice_rq_event_info {
79 struct ice_aq_desc desc;
85 /* Control Queue information */
86 struct ice_ctl_q_info {
88 struct ice_ctl_q_ring rq; /* receive queue */
89 struct ice_ctl_q_ring sq; /* send queue */
90 u32 sq_cmd_timeout; /* send queue cmd write back timeout */
91 u16 num_rq_entries; /* receive queue depth */
92 u16 num_sq_entries; /* send queue depth */
93 u16 rq_buf_size; /* receive queue buffer size */
94 u16 sq_buf_size; /* send queue buffer size */
95 enum ice_aq_err sq_last_status; /* last status on send queue */
96 struct mutex sq_lock; /* Send queue lock */
97 struct mutex rq_lock; /* Receive queue lock */
100 #endif /* _ICE_CONTROLQ_H_ */