blob: ef43d68f67b30632b504962f1fd627799f16dd7f [file] [log] [blame]
Greg Rosed358aa92013-12-21 06:13:11 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
Jesse Brandeburgb8316072014-04-05 07:46:11 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Greg Rosed358aa92013-12-21 06:13:11 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Jesse Brandeburgb8316072014-04-05 07:46:11 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
Greg Rosed358aa92013-12-21 06:13:11 +000018 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27#ifndef _I40E_ADMINQ_H_
28#define _I40E_ADMINQ_H_
29
30#include "i40e_osdep.h"
Shannon Nelsonbf848f32014-11-13 08:23:22 +000031#include "i40e_status.h"
Greg Rosed358aa92013-12-21 06:13:11 +000032#include "i40e_adminq_cmd.h"
33
34#define I40E_ADMINQ_DESC(R, i) \
35 (&(((struct i40e_aq_desc *)((R).desc_buf.va))[i]))
36
37#define I40E_ADMINQ_DESC_ALIGNMENT 4096
38
39struct i40e_adminq_ring {
40 struct i40e_virt_mem dma_head; /* space for dma structures */
41 struct i40e_dma_mem desc_buf; /* descriptor ring memory */
42 struct i40e_virt_mem cmd_buf; /* command buffer memory */
43
44 union {
45 struct i40e_dma_mem *asq_bi;
46 struct i40e_dma_mem *arq_bi;
47 } r;
48
49 u16 count; /* Number of descriptors */
50 u16 rx_buf_len; /* Admin Receive Queue buffer length */
51
52 /* used for interrupt processing */
53 u16 next_to_use;
54 u16 next_to_clean;
55
56 /* used for queue tracking */
57 u32 head;
58 u32 tail;
59 u32 len;
Shannon Nelson87dc3462014-06-04 20:41:17 +000060 u32 bah;
61 u32 bal;
Greg Rosed358aa92013-12-21 06:13:11 +000062};
63
64/* ASQ transaction details */
65struct i40e_asq_cmd_details {
66 void *callback; /* cast from type I40E_ADMINQ_CALLBACK */
67 u64 cookie;
68 u16 flags_ena;
69 u16 flags_dis;
70 bool async;
71 bool postpone;
72};
73
74#define I40E_ADMINQ_DETAILS(R, i) \
75 (&(((struct i40e_asq_cmd_details *)((R).cmd_buf.va))[i]))
76
77/* ARQ event information */
78struct i40e_arq_event_info {
79 struct i40e_aq_desc desc;
Mitch Williams1001dc32014-11-11 20:02:19 +000080 u16 msg_len;
81 u16 buf_len;
Greg Rosed358aa92013-12-21 06:13:11 +000082 u8 *msg_buf;
83};
84
85/* Admin Queue information */
86struct i40e_adminq_info {
87 struct i40e_adminq_ring arq; /* receive queue */
88 struct i40e_adminq_ring asq; /* send queue */
Kamil Krawczyk09c4e562014-06-04 20:41:43 +000089 u32 asq_cmd_timeout; /* send queue cmd write back timeout*/
Greg Rosed358aa92013-12-21 06:13:11 +000090 u16 num_arq_entries; /* receive queue depth */
91 u16 num_asq_entries; /* send queue depth */
92 u16 arq_buf_size; /* receive queue buffer size */
93 u16 asq_buf_size; /* send queue buffer size */
94 u16 fw_maj_ver; /* firmware major version */
95 u16 fw_min_ver; /* firmware minor version */
Shannon Nelson7edf8102015-02-24 06:58:41 +000096 u32 fw_build; /* firmware build number */
Greg Rosed358aa92013-12-21 06:13:11 +000097 u16 api_maj_ver; /* api major version */
98 u16 api_min_ver; /* api minor version */
Shannon Nelsoncd552cb2014-07-09 07:46:09 +000099 bool nvm_release_on_done;
Greg Rosed358aa92013-12-21 06:13:11 +0000100
101 struct mutex asq_mutex; /* Send queue lock */
102 struct mutex arq_mutex; /* Receive queue lock */
103
104 /* last status values on send and receive queues */
105 enum i40e_admin_queue_err asq_last_status;
106 enum i40e_admin_queue_err arq_last_status;
107};
108
Shannon Nelsoncd552cb2014-07-09 07:46:09 +0000109/**
110 * i40e_aq_rc_to_posix - convert errors to user-land codes
111 * aq_rc: AdminQ error code to convert
112 **/
Shannon Nelsonbf848f32014-11-13 08:23:22 +0000113static inline int i40e_aq_rc_to_posix(u32 aq_ret, u16 aq_rc)
Shannon Nelsoncd552cb2014-07-09 07:46:09 +0000114{
115 int aq_to_posix[] = {
116 0, /* I40E_AQ_RC_OK */
117 -EPERM, /* I40E_AQ_RC_EPERM */
118 -ENOENT, /* I40E_AQ_RC_ENOENT */
119 -ESRCH, /* I40E_AQ_RC_ESRCH */
120 -EINTR, /* I40E_AQ_RC_EINTR */
121 -EIO, /* I40E_AQ_RC_EIO */
122 -ENXIO, /* I40E_AQ_RC_ENXIO */
123 -E2BIG, /* I40E_AQ_RC_E2BIG */
124 -EAGAIN, /* I40E_AQ_RC_EAGAIN */
125 -ENOMEM, /* I40E_AQ_RC_ENOMEM */
126 -EACCES, /* I40E_AQ_RC_EACCES */
127 -EFAULT, /* I40E_AQ_RC_EFAULT */
128 -EBUSY, /* I40E_AQ_RC_EBUSY */
129 -EEXIST, /* I40E_AQ_RC_EEXIST */
130 -EINVAL, /* I40E_AQ_RC_EINVAL */
131 -ENOTTY, /* I40E_AQ_RC_ENOTTY */
132 -ENOSPC, /* I40E_AQ_RC_ENOSPC */
133 -ENOSYS, /* I40E_AQ_RC_ENOSYS */
134 -ERANGE, /* I40E_AQ_RC_ERANGE */
135 -EPIPE, /* I40E_AQ_RC_EFLUSHED */
136 -ESPIPE, /* I40E_AQ_RC_BAD_ADDR */
137 -EROFS, /* I40E_AQ_RC_EMODE */
138 -EFBIG, /* I40E_AQ_RC_EFBIG */
139 };
140
Shannon Nelsonbf848f32014-11-13 08:23:22 +0000141 /* aq_rc is invalid if AQ timed out */
142 if (aq_ret == I40E_ERR_ADMIN_QUEUE_TIMEOUT)
143 return -EAGAIN;
144
Shannon Nelson43477d22014-11-13 08:23:16 +0000145 if (aq_rc >= ARRAY_SIZE(aq_to_posix))
146 return -ERANGE;
Shannon Nelsoncd552cb2014-07-09 07:46:09 +0000147 return aq_to_posix[aq_rc];
148}
149
Greg Rosed358aa92013-12-21 06:13:11 +0000150/* general information */
151#define I40E_AQ_LARGE_BUF 512
Kevin Scott83c5fe72014-12-11 07:06:36 +0000152#define I40E_ASQ_CMD_TIMEOUT 250 /* msecs */
Greg Rosed358aa92013-12-21 06:13:11 +0000153
154void i40evf_fill_default_direct_cmd_desc(struct i40e_aq_desc *desc,
155 u16 opcode);
156
157#endif /* _I40E_ADMINQ_H_ */