i40e_adminq.h revision 292100
1/******************************************************************************
2
3  Copyright (c) 2013-2015, Intel Corporation
4  All rights reserved.
5
6  Redistribution and use in source and binary forms, with or without
7  modification, are permitted provided that the following conditions are met:
8
9   1. Redistributions of source code must retain the above copyright notice,
10      this list of conditions and the following disclaimer.
11
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15
16   3. Neither the name of the Intel Corporation nor the names of its
17      contributors may be used to endorse or promote products derived from
18      this software without specific prior written permission.
19
20  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  POSSIBILITY OF SUCH DAMAGE.
31
32******************************************************************************/
33/*$FreeBSD: stable/10/sys/dev/ixl/i40e_adminq.h 292100 2015-12-11 13:08:38Z smh $*/
34
35#ifndef _I40E_ADMINQ_H_
36#define _I40E_ADMINQ_H_
37
38#include "i40e_osdep.h"
39#include "i40e_status.h"
40#include "i40e_adminq_cmd.h"
41
42#define I40E_ADMINQ_DESC(R, i)   \
43	(&(((struct i40e_aq_desc *)((R).desc_buf.va))[i]))
44
45#define I40E_ADMINQ_DESC_ALIGNMENT 4096
46
47struct i40e_adminq_ring {
48	struct i40e_virt_mem dma_head;	/* space for dma structures */
49	struct i40e_dma_mem desc_buf;	/* descriptor ring memory */
50	struct i40e_virt_mem cmd_buf;	/* command buffer memory */
51
52	union {
53		struct i40e_dma_mem *asq_bi;
54		struct i40e_dma_mem *arq_bi;
55	} r;
56
57	u16 count;		/* Number of descriptors */
58	u16 rx_buf_len;		/* Admin Receive Queue buffer length */
59
60	/* used for interrupt processing */
61	u16 next_to_use;
62	u16 next_to_clean;
63
64	/* used for queue tracking */
65	u32 head;
66	u32 tail;
67	u32 len;
68	u32 bah;
69	u32 bal;
70};
71
72/* ASQ transaction details */
73struct i40e_asq_cmd_details {
74	void *callback; /* cast from type I40E_ADMINQ_CALLBACK */
75	u64 cookie;
76	u16 flags_ena;
77	u16 flags_dis;
78	bool async;
79	bool postpone;
80	struct i40e_aq_desc *wb_desc;
81};
82
83#define I40E_ADMINQ_DETAILS(R, i)   \
84	(&(((struct i40e_asq_cmd_details *)((R).cmd_buf.va))[i]))
85
86/* ARQ event information */
87struct i40e_arq_event_info {
88	struct i40e_aq_desc desc;
89	u16 msg_len;
90	u16 buf_len;
91	u8 *msg_buf;
92};
93
94/* Admin Queue information */
95struct i40e_adminq_info {
96	struct i40e_adminq_ring arq;    /* receive queue */
97	struct i40e_adminq_ring asq;    /* send queue */
98	u32 asq_cmd_timeout;            /* send queue cmd write back timeout*/
99	u16 num_arq_entries;            /* receive queue depth */
100	u16 num_asq_entries;            /* send queue depth */
101	u16 arq_buf_size;               /* receive queue buffer size */
102	u16 asq_buf_size;               /* send queue buffer size */
103	u16 fw_maj_ver;                 /* firmware major version */
104	u16 fw_min_ver;                 /* firmware minor version */
105	u32 fw_build;                   /* firmware build number */
106	u16 api_maj_ver;                /* api major version */
107	u16 api_min_ver;                /* api minor version */
108	bool nvm_release_on_done;
109
110	struct i40e_spinlock asq_spinlock; /* Send queue spinlock */
111	struct i40e_spinlock arq_spinlock; /* Receive queue spinlock */
112
113	/* last status values on send and receive queues */
114	enum i40e_admin_queue_err asq_last_status;
115	enum i40e_admin_queue_err arq_last_status;
116};
117
118/* general information */
119#define I40E_AQ_LARGE_BUF		512
120#define I40E_ASQ_CMD_TIMEOUT		250  /* msecs */
121
122void i40e_fill_default_direct_cmd_desc(struct i40e_aq_desc *desc,
123				       u16 opcode);
124
125#endif /* _I40E_ADMINQ_H_ */
126