blob: 4739a9ca60d28e26503d60876bcf7700875bfbc6 [file] [log] [blame]
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Shannon Nelson67be6eb2016-01-13 16:51:40 -08004 * Copyright(c) 2013 - 2016 Intel Corporation.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +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 *
Greg Rosedc641b72013-12-18 13:45:51 +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/>.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000017 *
18 * 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#include "i40e_type.h"
28#include "i40e_adminq.h"
29#include "i40e_prototype.h"
30#include "i40e_virtchnl.h"
31
32/**
33 * i40e_set_mac_type - Sets MAC type
34 * @hw: pointer to the HW structure
35 *
36 * This function sets the mac type of the adapter based on the
37 * vendor ID and device ID stored in the hw structure.
38 **/
39static i40e_status i40e_set_mac_type(struct i40e_hw *hw)
40{
41 i40e_status status = 0;
42
43 if (hw->vendor_id == PCI_VENDOR_ID_INTEL) {
44 switch (hw->device_id) {
Shannon Nelsonab600852014-01-17 15:36:39 -080045 case I40E_DEV_ID_SFP_XL710:
Shannon Nelsonab600852014-01-17 15:36:39 -080046 case I40E_DEV_ID_QEMU:
Shannon Nelsonab600852014-01-17 15:36:39 -080047 case I40E_DEV_ID_KX_B:
48 case I40E_DEV_ID_KX_C:
Shannon Nelsonab600852014-01-17 15:36:39 -080049 case I40E_DEV_ID_QSFP_A:
50 case I40E_DEV_ID_QSFP_B:
51 case I40E_DEV_ID_QSFP_C:
Mitch Williams5960d332014-09-13 07:40:47 +000052 case I40E_DEV_ID_10G_BASE_T:
Shannon Nelsonbc5166b92015-08-26 15:14:10 -040053 case I40E_DEV_ID_10G_BASE_T4:
Jesse Brandeburgae24b402015-03-27 00:12:09 -070054 case I40E_DEV_ID_20G_KR2:
Shannon Nelson48a3b512015-07-23 16:54:39 -040055 case I40E_DEV_ID_20G_KR2_A:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000056 hw->mac.type = I40E_MAC_XL710;
57 break;
Anjali Singhai Jain35dae512015-12-22 14:25:03 -080058 case I40E_DEV_ID_KX_X722:
59 case I40E_DEV_ID_QSFP_X722:
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040060 case I40E_DEV_ID_SFP_X722:
61 case I40E_DEV_ID_1G_BASE_T_X722:
62 case I40E_DEV_ID_10G_BASE_T_X722:
Catherine Sullivand6bf58c2016-03-18 12:18:08 -070063 case I40E_DEV_ID_SFP_I_X722:
Kamil Krawczykbccf4742016-04-12 08:30:47 -070064 case I40E_DEV_ID_QSFP_I_X722:
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040065 hw->mac.type = I40E_MAC_X722;
66 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000067 default:
68 hw->mac.type = I40E_MAC_GENERIC;
69 break;
70 }
71 } else {
72 status = I40E_ERR_DEVICE_NOT_SUPPORTED;
73 }
74
75 hw_dbg(hw, "i40e_set_mac_type found mac: %d, returns: %d\n",
76 hw->mac.type, status);
77 return status;
78}
79
80/**
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040081 * i40e_aq_str - convert AQ err code to a string
82 * @hw: pointer to the HW structure
83 * @aq_err: the AQ error code to convert
84 **/
Jingjing Wu4e68adfe2015-09-28 14:12:31 -040085const char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040086{
87 switch (aq_err) {
88 case I40E_AQ_RC_OK:
89 return "OK";
90 case I40E_AQ_RC_EPERM:
91 return "I40E_AQ_RC_EPERM";
92 case I40E_AQ_RC_ENOENT:
93 return "I40E_AQ_RC_ENOENT";
94 case I40E_AQ_RC_ESRCH:
95 return "I40E_AQ_RC_ESRCH";
96 case I40E_AQ_RC_EINTR:
97 return "I40E_AQ_RC_EINTR";
98 case I40E_AQ_RC_EIO:
99 return "I40E_AQ_RC_EIO";
100 case I40E_AQ_RC_ENXIO:
101 return "I40E_AQ_RC_ENXIO";
102 case I40E_AQ_RC_E2BIG:
103 return "I40E_AQ_RC_E2BIG";
104 case I40E_AQ_RC_EAGAIN:
105 return "I40E_AQ_RC_EAGAIN";
106 case I40E_AQ_RC_ENOMEM:
107 return "I40E_AQ_RC_ENOMEM";
108 case I40E_AQ_RC_EACCES:
109 return "I40E_AQ_RC_EACCES";
110 case I40E_AQ_RC_EFAULT:
111 return "I40E_AQ_RC_EFAULT";
112 case I40E_AQ_RC_EBUSY:
113 return "I40E_AQ_RC_EBUSY";
114 case I40E_AQ_RC_EEXIST:
115 return "I40E_AQ_RC_EEXIST";
116 case I40E_AQ_RC_EINVAL:
117 return "I40E_AQ_RC_EINVAL";
118 case I40E_AQ_RC_ENOTTY:
119 return "I40E_AQ_RC_ENOTTY";
120 case I40E_AQ_RC_ENOSPC:
121 return "I40E_AQ_RC_ENOSPC";
122 case I40E_AQ_RC_ENOSYS:
123 return "I40E_AQ_RC_ENOSYS";
124 case I40E_AQ_RC_ERANGE:
125 return "I40E_AQ_RC_ERANGE";
126 case I40E_AQ_RC_EFLUSHED:
127 return "I40E_AQ_RC_EFLUSHED";
128 case I40E_AQ_RC_BAD_ADDR:
129 return "I40E_AQ_RC_BAD_ADDR";
130 case I40E_AQ_RC_EMODE:
131 return "I40E_AQ_RC_EMODE";
132 case I40E_AQ_RC_EFBIG:
133 return "I40E_AQ_RC_EFBIG";
134 }
135
136 snprintf(hw->err_str, sizeof(hw->err_str), "%d", aq_err);
137 return hw->err_str;
138}
139
140/**
141 * i40e_stat_str - convert status err code to a string
142 * @hw: pointer to the HW structure
143 * @stat_err: the status error code to convert
144 **/
Jingjing Wu4e68adfe2015-09-28 14:12:31 -0400145const char *i40e_stat_str(struct i40e_hw *hw, i40e_status stat_err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400146{
147 switch (stat_err) {
148 case 0:
149 return "OK";
150 case I40E_ERR_NVM:
151 return "I40E_ERR_NVM";
152 case I40E_ERR_NVM_CHECKSUM:
153 return "I40E_ERR_NVM_CHECKSUM";
154 case I40E_ERR_PHY:
155 return "I40E_ERR_PHY";
156 case I40E_ERR_CONFIG:
157 return "I40E_ERR_CONFIG";
158 case I40E_ERR_PARAM:
159 return "I40E_ERR_PARAM";
160 case I40E_ERR_MAC_TYPE:
161 return "I40E_ERR_MAC_TYPE";
162 case I40E_ERR_UNKNOWN_PHY:
163 return "I40E_ERR_UNKNOWN_PHY";
164 case I40E_ERR_LINK_SETUP:
165 return "I40E_ERR_LINK_SETUP";
166 case I40E_ERR_ADAPTER_STOPPED:
167 return "I40E_ERR_ADAPTER_STOPPED";
168 case I40E_ERR_INVALID_MAC_ADDR:
169 return "I40E_ERR_INVALID_MAC_ADDR";
170 case I40E_ERR_DEVICE_NOT_SUPPORTED:
171 return "I40E_ERR_DEVICE_NOT_SUPPORTED";
172 case I40E_ERR_MASTER_REQUESTS_PENDING:
173 return "I40E_ERR_MASTER_REQUESTS_PENDING";
174 case I40E_ERR_INVALID_LINK_SETTINGS:
175 return "I40E_ERR_INVALID_LINK_SETTINGS";
176 case I40E_ERR_AUTONEG_NOT_COMPLETE:
177 return "I40E_ERR_AUTONEG_NOT_COMPLETE";
178 case I40E_ERR_RESET_FAILED:
179 return "I40E_ERR_RESET_FAILED";
180 case I40E_ERR_SWFW_SYNC:
181 return "I40E_ERR_SWFW_SYNC";
182 case I40E_ERR_NO_AVAILABLE_VSI:
183 return "I40E_ERR_NO_AVAILABLE_VSI";
184 case I40E_ERR_NO_MEMORY:
185 return "I40E_ERR_NO_MEMORY";
186 case I40E_ERR_BAD_PTR:
187 return "I40E_ERR_BAD_PTR";
188 case I40E_ERR_RING_FULL:
189 return "I40E_ERR_RING_FULL";
190 case I40E_ERR_INVALID_PD_ID:
191 return "I40E_ERR_INVALID_PD_ID";
192 case I40E_ERR_INVALID_QP_ID:
193 return "I40E_ERR_INVALID_QP_ID";
194 case I40E_ERR_INVALID_CQ_ID:
195 return "I40E_ERR_INVALID_CQ_ID";
196 case I40E_ERR_INVALID_CEQ_ID:
197 return "I40E_ERR_INVALID_CEQ_ID";
198 case I40E_ERR_INVALID_AEQ_ID:
199 return "I40E_ERR_INVALID_AEQ_ID";
200 case I40E_ERR_INVALID_SIZE:
201 return "I40E_ERR_INVALID_SIZE";
202 case I40E_ERR_INVALID_ARP_INDEX:
203 return "I40E_ERR_INVALID_ARP_INDEX";
204 case I40E_ERR_INVALID_FPM_FUNC_ID:
205 return "I40E_ERR_INVALID_FPM_FUNC_ID";
206 case I40E_ERR_QP_INVALID_MSG_SIZE:
207 return "I40E_ERR_QP_INVALID_MSG_SIZE";
208 case I40E_ERR_QP_TOOMANY_WRS_POSTED:
209 return "I40E_ERR_QP_TOOMANY_WRS_POSTED";
210 case I40E_ERR_INVALID_FRAG_COUNT:
211 return "I40E_ERR_INVALID_FRAG_COUNT";
212 case I40E_ERR_QUEUE_EMPTY:
213 return "I40E_ERR_QUEUE_EMPTY";
214 case I40E_ERR_INVALID_ALIGNMENT:
215 return "I40E_ERR_INVALID_ALIGNMENT";
216 case I40E_ERR_FLUSHED_QUEUE:
217 return "I40E_ERR_FLUSHED_QUEUE";
218 case I40E_ERR_INVALID_PUSH_PAGE_INDEX:
219 return "I40E_ERR_INVALID_PUSH_PAGE_INDEX";
220 case I40E_ERR_INVALID_IMM_DATA_SIZE:
221 return "I40E_ERR_INVALID_IMM_DATA_SIZE";
222 case I40E_ERR_TIMEOUT:
223 return "I40E_ERR_TIMEOUT";
224 case I40E_ERR_OPCODE_MISMATCH:
225 return "I40E_ERR_OPCODE_MISMATCH";
226 case I40E_ERR_CQP_COMPL_ERROR:
227 return "I40E_ERR_CQP_COMPL_ERROR";
228 case I40E_ERR_INVALID_VF_ID:
229 return "I40E_ERR_INVALID_VF_ID";
230 case I40E_ERR_INVALID_HMCFN_ID:
231 return "I40E_ERR_INVALID_HMCFN_ID";
232 case I40E_ERR_BACKING_PAGE_ERROR:
233 return "I40E_ERR_BACKING_PAGE_ERROR";
234 case I40E_ERR_NO_PBLCHUNKS_AVAILABLE:
235 return "I40E_ERR_NO_PBLCHUNKS_AVAILABLE";
236 case I40E_ERR_INVALID_PBLE_INDEX:
237 return "I40E_ERR_INVALID_PBLE_INDEX";
238 case I40E_ERR_INVALID_SD_INDEX:
239 return "I40E_ERR_INVALID_SD_INDEX";
240 case I40E_ERR_INVALID_PAGE_DESC_INDEX:
241 return "I40E_ERR_INVALID_PAGE_DESC_INDEX";
242 case I40E_ERR_INVALID_SD_TYPE:
243 return "I40E_ERR_INVALID_SD_TYPE";
244 case I40E_ERR_MEMCPY_FAILED:
245 return "I40E_ERR_MEMCPY_FAILED";
246 case I40E_ERR_INVALID_HMC_OBJ_INDEX:
247 return "I40E_ERR_INVALID_HMC_OBJ_INDEX";
248 case I40E_ERR_INVALID_HMC_OBJ_COUNT:
249 return "I40E_ERR_INVALID_HMC_OBJ_COUNT";
250 case I40E_ERR_INVALID_SRQ_ARM_LIMIT:
251 return "I40E_ERR_INVALID_SRQ_ARM_LIMIT";
252 case I40E_ERR_SRQ_ENABLED:
253 return "I40E_ERR_SRQ_ENABLED";
254 case I40E_ERR_ADMIN_QUEUE_ERROR:
255 return "I40E_ERR_ADMIN_QUEUE_ERROR";
256 case I40E_ERR_ADMIN_QUEUE_TIMEOUT:
257 return "I40E_ERR_ADMIN_QUEUE_TIMEOUT";
258 case I40E_ERR_BUF_TOO_SHORT:
259 return "I40E_ERR_BUF_TOO_SHORT";
260 case I40E_ERR_ADMIN_QUEUE_FULL:
261 return "I40E_ERR_ADMIN_QUEUE_FULL";
262 case I40E_ERR_ADMIN_QUEUE_NO_WORK:
263 return "I40E_ERR_ADMIN_QUEUE_NO_WORK";
264 case I40E_ERR_BAD_IWARP_CQE:
265 return "I40E_ERR_BAD_IWARP_CQE";
266 case I40E_ERR_NVM_BLANK_MODE:
267 return "I40E_ERR_NVM_BLANK_MODE";
268 case I40E_ERR_NOT_IMPLEMENTED:
269 return "I40E_ERR_NOT_IMPLEMENTED";
270 case I40E_ERR_PE_DOORBELL_NOT_ENABLED:
271 return "I40E_ERR_PE_DOORBELL_NOT_ENABLED";
272 case I40E_ERR_DIAG_TEST_FAILED:
273 return "I40E_ERR_DIAG_TEST_FAILED";
274 case I40E_ERR_NOT_READY:
275 return "I40E_ERR_NOT_READY";
276 case I40E_NOT_SUPPORTED:
277 return "I40E_NOT_SUPPORTED";
278 case I40E_ERR_FIRMWARE_API_VERSION:
279 return "I40E_ERR_FIRMWARE_API_VERSION";
280 }
281
282 snprintf(hw->err_str, sizeof(hw->err_str), "%d", stat_err);
283 return hw->err_str;
284}
285
286/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000287 * i40e_debug_aq
288 * @hw: debug mask related to admin queue
Jeff Kirsher98d44382013-12-21 05:44:42 +0000289 * @mask: debug mask
290 * @desc: pointer to admin queue descriptor
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000291 * @buffer: pointer to command buffer
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000292 * @buf_len: max length of buffer
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000293 *
294 * Dumps debug log about adminq command with descriptor contents.
295 **/
296void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask, void *desc,
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000297 void *buffer, u16 buf_len)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000298{
299 struct i40e_aq_desc *aq_desc = (struct i40e_aq_desc *)desc;
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000300 u16 len = le16_to_cpu(aq_desc->datalen);
Shannon Nelson37a29732015-02-27 09:15:19 +0000301 u8 *buf = (u8 *)buffer;
302 u16 i = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000303
304 if ((!(mask & hw->debug_mask)) || (desc == NULL))
305 return;
306
307 i40e_debug(hw, mask,
308 "AQ CMD: opcode 0x%04X, flags 0x%04X, datalen 0x%04X, retval 0x%04X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000309 le16_to_cpu(aq_desc->opcode),
310 le16_to_cpu(aq_desc->flags),
311 le16_to_cpu(aq_desc->datalen),
312 le16_to_cpu(aq_desc->retval));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000313 i40e_debug(hw, mask, "\tcookie (h,l) 0x%08X 0x%08X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000314 le32_to_cpu(aq_desc->cookie_high),
315 le32_to_cpu(aq_desc->cookie_low));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000316 i40e_debug(hw, mask, "\tparam (0,1) 0x%08X 0x%08X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000317 le32_to_cpu(aq_desc->params.internal.param0),
318 le32_to_cpu(aq_desc->params.internal.param1));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000319 i40e_debug(hw, mask, "\taddr (h,l) 0x%08X 0x%08X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000320 le32_to_cpu(aq_desc->params.external.addr_high),
321 le32_to_cpu(aq_desc->params.external.addr_low));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000322
323 if ((buffer != NULL) && (aq_desc->datalen != 0)) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000324 i40e_debug(hw, mask, "AQ CMD Buffer:\n");
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000325 if (buf_len < len)
326 len = buf_len;
Shannon Nelson37a29732015-02-27 09:15:19 +0000327 /* write the full 16-byte chunks */
328 for (i = 0; i < (len - 16); i += 16)
Andy Shevchenkoa3524e92015-10-02 12:18:16 +0300329 i40e_debug(hw, mask, "\t0x%04X %16ph\n", i, buf + i);
Shannon Nelson37a29732015-02-27 09:15:19 +0000330 /* write whatever's left over without overrunning the buffer */
Andy Shevchenkoa3524e92015-10-02 12:18:16 +0300331 if (i < len)
332 i40e_debug(hw, mask, "\t0x%04X %*ph\n",
333 i, len - i, buf + i);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000334 }
335}
336
337/**
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +0000338 * i40e_check_asq_alive
339 * @hw: pointer to the hw struct
340 *
341 * Returns true if Queue is enabled else false.
342 **/
343bool i40e_check_asq_alive(struct i40e_hw *hw)
344{
Kevin Scott8b833b42014-04-09 05:58:54 +0000345 if (hw->aq.asq.len)
346 return !!(rd32(hw, hw->aq.asq.len) &
347 I40E_PF_ATQLEN_ATQENABLE_MASK);
348 else
349 return false;
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +0000350}
351
352/**
353 * i40e_aq_queue_shutdown
354 * @hw: pointer to the hw struct
355 * @unloading: is the driver unloading itself
356 *
357 * Tell the Firmware that we're shutting down the AdminQ and whether
358 * or not the driver is unloading as well.
359 **/
360i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw,
361 bool unloading)
362{
363 struct i40e_aq_desc desc;
364 struct i40e_aqc_queue_shutdown *cmd =
365 (struct i40e_aqc_queue_shutdown *)&desc.params.raw;
366 i40e_status status;
367
368 i40e_fill_default_direct_cmd_desc(&desc,
369 i40e_aqc_opc_queue_shutdown);
370
371 if (unloading)
372 cmd->driver_unloading = cpu_to_le32(I40E_AQ_DRIVER_UNLOADING);
373 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
374
375 return status;
376}
377
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400378/**
379 * i40e_aq_get_set_rss_lut
380 * @hw: pointer to the hardware structure
381 * @vsi_id: vsi fw index
382 * @pf_lut: for PF table set true, for VSI table set false
383 * @lut: pointer to the lut buffer provided by the caller
384 * @lut_size: size of the lut buffer
385 * @set: set true to set the table, false to get the table
386 *
387 * Internal function to get or set RSS look up table
388 **/
389static i40e_status i40e_aq_get_set_rss_lut(struct i40e_hw *hw,
390 u16 vsi_id, bool pf_lut,
391 u8 *lut, u16 lut_size,
392 bool set)
393{
394 i40e_status status;
395 struct i40e_aq_desc desc;
396 struct i40e_aqc_get_set_rss_lut *cmd_resp =
397 (struct i40e_aqc_get_set_rss_lut *)&desc.params.raw;
398
399 if (set)
400 i40e_fill_default_direct_cmd_desc(&desc,
401 i40e_aqc_opc_set_rss_lut);
402 else
403 i40e_fill_default_direct_cmd_desc(&desc,
404 i40e_aqc_opc_get_rss_lut);
405
406 /* Indirect command */
407 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
408 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
409
410 cmd_resp->vsi_id =
411 cpu_to_le16((u16)((vsi_id <<
412 I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT) &
413 I40E_AQC_SET_RSS_LUT_VSI_ID_MASK));
414 cmd_resp->vsi_id |= cpu_to_le16((u16)I40E_AQC_SET_RSS_LUT_VSI_VALID);
415
416 if (pf_lut)
417 cmd_resp->flags |= cpu_to_le16((u16)
418 ((I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF <<
419 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT) &
420 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK));
421 else
422 cmd_resp->flags |= cpu_to_le16((u16)
423 ((I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI <<
424 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT) &
425 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK));
426
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400427 status = i40e_asq_send_command(hw, &desc, lut, lut_size, NULL);
428
429 return status;
430}
431
432/**
433 * i40e_aq_get_rss_lut
434 * @hw: pointer to the hardware structure
435 * @vsi_id: vsi fw index
436 * @pf_lut: for PF table set true, for VSI table set false
437 * @lut: pointer to the lut buffer provided by the caller
438 * @lut_size: size of the lut buffer
439 *
440 * get the RSS lookup table, PF or VSI type
441 **/
442i40e_status i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 vsi_id,
443 bool pf_lut, u8 *lut, u16 lut_size)
444{
445 return i40e_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size,
446 false);
447}
448
449/**
450 * i40e_aq_set_rss_lut
451 * @hw: pointer to the hardware structure
452 * @vsi_id: vsi fw index
453 * @pf_lut: for PF table set true, for VSI table set false
454 * @lut: pointer to the lut buffer provided by the caller
455 * @lut_size: size of the lut buffer
456 *
457 * set the RSS lookup table, PF or VSI type
458 **/
459i40e_status i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 vsi_id,
460 bool pf_lut, u8 *lut, u16 lut_size)
461{
462 return i40e_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size, true);
463}
464
465/**
466 * i40e_aq_get_set_rss_key
467 * @hw: pointer to the hw struct
468 * @vsi_id: vsi fw index
469 * @key: pointer to key info struct
470 * @set: set true to set the key, false to get the key
471 *
472 * get the RSS key per VSI
473 **/
474static i40e_status i40e_aq_get_set_rss_key(struct i40e_hw *hw,
475 u16 vsi_id,
476 struct i40e_aqc_get_set_rss_key_data *key,
477 bool set)
478{
479 i40e_status status;
480 struct i40e_aq_desc desc;
481 struct i40e_aqc_get_set_rss_key *cmd_resp =
482 (struct i40e_aqc_get_set_rss_key *)&desc.params.raw;
483 u16 key_size = sizeof(struct i40e_aqc_get_set_rss_key_data);
484
485 if (set)
486 i40e_fill_default_direct_cmd_desc(&desc,
487 i40e_aqc_opc_set_rss_key);
488 else
489 i40e_fill_default_direct_cmd_desc(&desc,
490 i40e_aqc_opc_get_rss_key);
491
492 /* Indirect command */
493 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
494 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
495
496 cmd_resp->vsi_id =
497 cpu_to_le16((u16)((vsi_id <<
498 I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT) &
499 I40E_AQC_SET_RSS_KEY_VSI_ID_MASK));
500 cmd_resp->vsi_id |= cpu_to_le16((u16)I40E_AQC_SET_RSS_KEY_VSI_VALID);
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400501
502 status = i40e_asq_send_command(hw, &desc, key, key_size, NULL);
503
504 return status;
505}
506
507/**
508 * i40e_aq_get_rss_key
509 * @hw: pointer to the hw struct
510 * @vsi_id: vsi fw index
511 * @key: pointer to key info struct
512 *
513 **/
514i40e_status i40e_aq_get_rss_key(struct i40e_hw *hw,
515 u16 vsi_id,
516 struct i40e_aqc_get_set_rss_key_data *key)
517{
518 return i40e_aq_get_set_rss_key(hw, vsi_id, key, false);
519}
520
521/**
522 * i40e_aq_set_rss_key
523 * @hw: pointer to the hw struct
524 * @vsi_id: vsi fw index
525 * @key: pointer to key info struct
526 *
527 * set the RSS key per VSI
528 **/
529i40e_status i40e_aq_set_rss_key(struct i40e_hw *hw,
530 u16 vsi_id,
531 struct i40e_aqc_get_set_rss_key_data *key)
532{
533 return i40e_aq_get_set_rss_key(hw, vsi_id, key, true);
534}
535
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000536/* The i40e_ptype_lookup table is used to convert from the 8-bit ptype in the
537 * hardware to a bit-field that can be used by SW to more easily determine the
538 * packet type.
539 *
540 * Macros are used to shorten the table lines and make this table human
541 * readable.
542 *
543 * We store the PTYPE in the top byte of the bit field - this is just so that
544 * we can check that the table doesn't have a row missing, as the index into
545 * the table should be the PTYPE.
546 *
547 * Typical work flow:
548 *
549 * IF NOT i40e_ptype_lookup[ptype].known
550 * THEN
551 * Packet is unknown
552 * ELSE IF i40e_ptype_lookup[ptype].outer_ip == I40E_RX_PTYPE_OUTER_IP
553 * Use the rest of the fields to look at the tunnels, inner protocols, etc
554 * ELSE
555 * Use the enum i40e_rx_l2_ptype to decode the packet type
556 * ENDIF
557 */
558
559/* macro to make the table lines short */
560#define I40E_PTT(PTYPE, OUTER_IP, OUTER_IP_VER, OUTER_FRAG, T, TE, TEF, I, PL)\
561 { PTYPE, \
562 1, \
563 I40E_RX_PTYPE_OUTER_##OUTER_IP, \
564 I40E_RX_PTYPE_OUTER_##OUTER_IP_VER, \
565 I40E_RX_PTYPE_##OUTER_FRAG, \
566 I40E_RX_PTYPE_TUNNEL_##T, \
567 I40E_RX_PTYPE_TUNNEL_END_##TE, \
568 I40E_RX_PTYPE_##TEF, \
569 I40E_RX_PTYPE_INNER_PROT_##I, \
570 I40E_RX_PTYPE_PAYLOAD_LAYER_##PL }
571
572#define I40E_PTT_UNUSED_ENTRY(PTYPE) \
573 { PTYPE, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
574
575/* shorter macros makes the table fit but are terse */
576#define I40E_RX_PTYPE_NOF I40E_RX_PTYPE_NOT_FRAG
577#define I40E_RX_PTYPE_FRG I40E_RX_PTYPE_FRAG
578#define I40E_RX_PTYPE_INNER_PROT_TS I40E_RX_PTYPE_INNER_PROT_TIMESYNC
579
580/* Lookup table mapping the HW PTYPE to the bit field for decoding */
581struct i40e_rx_ptype_decoded i40e_ptype_lookup[] = {
582 /* L2 Packet types */
583 I40E_PTT_UNUSED_ENTRY(0),
584 I40E_PTT(1, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
585 I40E_PTT(2, L2, NONE, NOF, NONE, NONE, NOF, TS, PAY2),
586 I40E_PTT(3, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
587 I40E_PTT_UNUSED_ENTRY(4),
588 I40E_PTT_UNUSED_ENTRY(5),
589 I40E_PTT(6, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
590 I40E_PTT(7, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
591 I40E_PTT_UNUSED_ENTRY(8),
592 I40E_PTT_UNUSED_ENTRY(9),
593 I40E_PTT(10, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
594 I40E_PTT(11, L2, NONE, NOF, NONE, NONE, NOF, NONE, NONE),
595 I40E_PTT(12, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
596 I40E_PTT(13, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
597 I40E_PTT(14, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
598 I40E_PTT(15, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
599 I40E_PTT(16, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
600 I40E_PTT(17, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
601 I40E_PTT(18, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
602 I40E_PTT(19, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
603 I40E_PTT(20, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
604 I40E_PTT(21, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
605
606 /* Non Tunneled IPv4 */
607 I40E_PTT(22, IP, IPV4, FRG, NONE, NONE, NOF, NONE, PAY3),
608 I40E_PTT(23, IP, IPV4, NOF, NONE, NONE, NOF, NONE, PAY3),
609 I40E_PTT(24, IP, IPV4, NOF, NONE, NONE, NOF, UDP, PAY4),
610 I40E_PTT_UNUSED_ENTRY(25),
611 I40E_PTT(26, IP, IPV4, NOF, NONE, NONE, NOF, TCP, PAY4),
612 I40E_PTT(27, IP, IPV4, NOF, NONE, NONE, NOF, SCTP, PAY4),
613 I40E_PTT(28, IP, IPV4, NOF, NONE, NONE, NOF, ICMP, PAY4),
614
615 /* IPv4 --> IPv4 */
616 I40E_PTT(29, IP, IPV4, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
617 I40E_PTT(30, IP, IPV4, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
618 I40E_PTT(31, IP, IPV4, NOF, IP_IP, IPV4, NOF, UDP, PAY4),
619 I40E_PTT_UNUSED_ENTRY(32),
620 I40E_PTT(33, IP, IPV4, NOF, IP_IP, IPV4, NOF, TCP, PAY4),
621 I40E_PTT(34, IP, IPV4, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
622 I40E_PTT(35, IP, IPV4, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
623
624 /* IPv4 --> IPv6 */
625 I40E_PTT(36, IP, IPV4, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
626 I40E_PTT(37, IP, IPV4, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
627 I40E_PTT(38, IP, IPV4, NOF, IP_IP, IPV6, NOF, UDP, PAY4),
628 I40E_PTT_UNUSED_ENTRY(39),
629 I40E_PTT(40, IP, IPV4, NOF, IP_IP, IPV6, NOF, TCP, PAY4),
630 I40E_PTT(41, IP, IPV4, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
631 I40E_PTT(42, IP, IPV4, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
632
633 /* IPv4 --> GRE/NAT */
634 I40E_PTT(43, IP, IPV4, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
635
636 /* IPv4 --> GRE/NAT --> IPv4 */
637 I40E_PTT(44, IP, IPV4, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
638 I40E_PTT(45, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
639 I40E_PTT(46, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, UDP, PAY4),
640 I40E_PTT_UNUSED_ENTRY(47),
641 I40E_PTT(48, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, TCP, PAY4),
642 I40E_PTT(49, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
643 I40E_PTT(50, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
644
645 /* IPv4 --> GRE/NAT --> IPv6 */
646 I40E_PTT(51, IP, IPV4, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
647 I40E_PTT(52, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
648 I40E_PTT(53, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, UDP, PAY4),
649 I40E_PTT_UNUSED_ENTRY(54),
650 I40E_PTT(55, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, TCP, PAY4),
651 I40E_PTT(56, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
652 I40E_PTT(57, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
653
654 /* IPv4 --> GRE/NAT --> MAC */
655 I40E_PTT(58, IP, IPV4, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
656
657 /* IPv4 --> GRE/NAT --> MAC --> IPv4 */
658 I40E_PTT(59, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
659 I40E_PTT(60, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
660 I40E_PTT(61, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP, PAY4),
661 I40E_PTT_UNUSED_ENTRY(62),
662 I40E_PTT(63, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP, PAY4),
663 I40E_PTT(64, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
664 I40E_PTT(65, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
665
666 /* IPv4 --> GRE/NAT -> MAC --> IPv6 */
667 I40E_PTT(66, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
668 I40E_PTT(67, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
669 I40E_PTT(68, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP, PAY4),
670 I40E_PTT_UNUSED_ENTRY(69),
671 I40E_PTT(70, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP, PAY4),
672 I40E_PTT(71, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
673 I40E_PTT(72, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
674
675 /* IPv4 --> GRE/NAT --> MAC/VLAN */
676 I40E_PTT(73, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
677
678 /* IPv4 ---> GRE/NAT -> MAC/VLAN --> IPv4 */
679 I40E_PTT(74, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
680 I40E_PTT(75, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
681 I40E_PTT(76, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP, PAY4),
682 I40E_PTT_UNUSED_ENTRY(77),
683 I40E_PTT(78, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP, PAY4),
684 I40E_PTT(79, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
685 I40E_PTT(80, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
686
687 /* IPv4 -> GRE/NAT -> MAC/VLAN --> IPv6 */
688 I40E_PTT(81, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
689 I40E_PTT(82, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
690 I40E_PTT(83, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP, PAY4),
691 I40E_PTT_UNUSED_ENTRY(84),
692 I40E_PTT(85, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP, PAY4),
693 I40E_PTT(86, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
694 I40E_PTT(87, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
695
696 /* Non Tunneled IPv6 */
697 I40E_PTT(88, IP, IPV6, FRG, NONE, NONE, NOF, NONE, PAY3),
698 I40E_PTT(89, IP, IPV6, NOF, NONE, NONE, NOF, NONE, PAY3),
699 I40E_PTT(90, IP, IPV6, NOF, NONE, NONE, NOF, UDP, PAY3),
700 I40E_PTT_UNUSED_ENTRY(91),
701 I40E_PTT(92, IP, IPV6, NOF, NONE, NONE, NOF, TCP, PAY4),
702 I40E_PTT(93, IP, IPV6, NOF, NONE, NONE, NOF, SCTP, PAY4),
703 I40E_PTT(94, IP, IPV6, NOF, NONE, NONE, NOF, ICMP, PAY4),
704
705 /* IPv6 --> IPv4 */
706 I40E_PTT(95, IP, IPV6, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
707 I40E_PTT(96, IP, IPV6, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
708 I40E_PTT(97, IP, IPV6, NOF, IP_IP, IPV4, NOF, UDP, PAY4),
709 I40E_PTT_UNUSED_ENTRY(98),
710 I40E_PTT(99, IP, IPV6, NOF, IP_IP, IPV4, NOF, TCP, PAY4),
711 I40E_PTT(100, IP, IPV6, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
712 I40E_PTT(101, IP, IPV6, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
713
714 /* IPv6 --> IPv6 */
715 I40E_PTT(102, IP, IPV6, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
716 I40E_PTT(103, IP, IPV6, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
717 I40E_PTT(104, IP, IPV6, NOF, IP_IP, IPV6, NOF, UDP, PAY4),
718 I40E_PTT_UNUSED_ENTRY(105),
719 I40E_PTT(106, IP, IPV6, NOF, IP_IP, IPV6, NOF, TCP, PAY4),
720 I40E_PTT(107, IP, IPV6, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
721 I40E_PTT(108, IP, IPV6, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
722
723 /* IPv6 --> GRE/NAT */
724 I40E_PTT(109, IP, IPV6, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
725
726 /* IPv6 --> GRE/NAT -> IPv4 */
727 I40E_PTT(110, IP, IPV6, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
728 I40E_PTT(111, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
729 I40E_PTT(112, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, UDP, PAY4),
730 I40E_PTT_UNUSED_ENTRY(113),
731 I40E_PTT(114, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, TCP, PAY4),
732 I40E_PTT(115, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
733 I40E_PTT(116, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
734
735 /* IPv6 --> GRE/NAT -> IPv6 */
736 I40E_PTT(117, IP, IPV6, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
737 I40E_PTT(118, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
738 I40E_PTT(119, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, UDP, PAY4),
739 I40E_PTT_UNUSED_ENTRY(120),
740 I40E_PTT(121, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, TCP, PAY4),
741 I40E_PTT(122, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
742 I40E_PTT(123, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
743
744 /* IPv6 --> GRE/NAT -> MAC */
745 I40E_PTT(124, IP, IPV6, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
746
747 /* IPv6 --> GRE/NAT -> MAC -> IPv4 */
748 I40E_PTT(125, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
749 I40E_PTT(126, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
750 I40E_PTT(127, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP, PAY4),
751 I40E_PTT_UNUSED_ENTRY(128),
752 I40E_PTT(129, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP, PAY4),
753 I40E_PTT(130, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
754 I40E_PTT(131, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
755
756 /* IPv6 --> GRE/NAT -> MAC -> IPv6 */
757 I40E_PTT(132, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
758 I40E_PTT(133, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
759 I40E_PTT(134, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP, PAY4),
760 I40E_PTT_UNUSED_ENTRY(135),
761 I40E_PTT(136, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP, PAY4),
762 I40E_PTT(137, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
763 I40E_PTT(138, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
764
765 /* IPv6 --> GRE/NAT -> MAC/VLAN */
766 I40E_PTT(139, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
767
768 /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv4 */
769 I40E_PTT(140, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
770 I40E_PTT(141, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
771 I40E_PTT(142, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP, PAY4),
772 I40E_PTT_UNUSED_ENTRY(143),
773 I40E_PTT(144, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP, PAY4),
774 I40E_PTT(145, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
775 I40E_PTT(146, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
776
777 /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv6 */
778 I40E_PTT(147, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
779 I40E_PTT(148, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
780 I40E_PTT(149, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP, PAY4),
781 I40E_PTT_UNUSED_ENTRY(150),
782 I40E_PTT(151, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP, PAY4),
783 I40E_PTT(152, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
784 I40E_PTT(153, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
785
786 /* unused entries */
787 I40E_PTT_UNUSED_ENTRY(154),
788 I40E_PTT_UNUSED_ENTRY(155),
789 I40E_PTT_UNUSED_ENTRY(156),
790 I40E_PTT_UNUSED_ENTRY(157),
791 I40E_PTT_UNUSED_ENTRY(158),
792 I40E_PTT_UNUSED_ENTRY(159),
793
794 I40E_PTT_UNUSED_ENTRY(160),
795 I40E_PTT_UNUSED_ENTRY(161),
796 I40E_PTT_UNUSED_ENTRY(162),
797 I40E_PTT_UNUSED_ENTRY(163),
798 I40E_PTT_UNUSED_ENTRY(164),
799 I40E_PTT_UNUSED_ENTRY(165),
800 I40E_PTT_UNUSED_ENTRY(166),
801 I40E_PTT_UNUSED_ENTRY(167),
802 I40E_PTT_UNUSED_ENTRY(168),
803 I40E_PTT_UNUSED_ENTRY(169),
804
805 I40E_PTT_UNUSED_ENTRY(170),
806 I40E_PTT_UNUSED_ENTRY(171),
807 I40E_PTT_UNUSED_ENTRY(172),
808 I40E_PTT_UNUSED_ENTRY(173),
809 I40E_PTT_UNUSED_ENTRY(174),
810 I40E_PTT_UNUSED_ENTRY(175),
811 I40E_PTT_UNUSED_ENTRY(176),
812 I40E_PTT_UNUSED_ENTRY(177),
813 I40E_PTT_UNUSED_ENTRY(178),
814 I40E_PTT_UNUSED_ENTRY(179),
815
816 I40E_PTT_UNUSED_ENTRY(180),
817 I40E_PTT_UNUSED_ENTRY(181),
818 I40E_PTT_UNUSED_ENTRY(182),
819 I40E_PTT_UNUSED_ENTRY(183),
820 I40E_PTT_UNUSED_ENTRY(184),
821 I40E_PTT_UNUSED_ENTRY(185),
822 I40E_PTT_UNUSED_ENTRY(186),
823 I40E_PTT_UNUSED_ENTRY(187),
824 I40E_PTT_UNUSED_ENTRY(188),
825 I40E_PTT_UNUSED_ENTRY(189),
826
827 I40E_PTT_UNUSED_ENTRY(190),
828 I40E_PTT_UNUSED_ENTRY(191),
829 I40E_PTT_UNUSED_ENTRY(192),
830 I40E_PTT_UNUSED_ENTRY(193),
831 I40E_PTT_UNUSED_ENTRY(194),
832 I40E_PTT_UNUSED_ENTRY(195),
833 I40E_PTT_UNUSED_ENTRY(196),
834 I40E_PTT_UNUSED_ENTRY(197),
835 I40E_PTT_UNUSED_ENTRY(198),
836 I40E_PTT_UNUSED_ENTRY(199),
837
838 I40E_PTT_UNUSED_ENTRY(200),
839 I40E_PTT_UNUSED_ENTRY(201),
840 I40E_PTT_UNUSED_ENTRY(202),
841 I40E_PTT_UNUSED_ENTRY(203),
842 I40E_PTT_UNUSED_ENTRY(204),
843 I40E_PTT_UNUSED_ENTRY(205),
844 I40E_PTT_UNUSED_ENTRY(206),
845 I40E_PTT_UNUSED_ENTRY(207),
846 I40E_PTT_UNUSED_ENTRY(208),
847 I40E_PTT_UNUSED_ENTRY(209),
848
849 I40E_PTT_UNUSED_ENTRY(210),
850 I40E_PTT_UNUSED_ENTRY(211),
851 I40E_PTT_UNUSED_ENTRY(212),
852 I40E_PTT_UNUSED_ENTRY(213),
853 I40E_PTT_UNUSED_ENTRY(214),
854 I40E_PTT_UNUSED_ENTRY(215),
855 I40E_PTT_UNUSED_ENTRY(216),
856 I40E_PTT_UNUSED_ENTRY(217),
857 I40E_PTT_UNUSED_ENTRY(218),
858 I40E_PTT_UNUSED_ENTRY(219),
859
860 I40E_PTT_UNUSED_ENTRY(220),
861 I40E_PTT_UNUSED_ENTRY(221),
862 I40E_PTT_UNUSED_ENTRY(222),
863 I40E_PTT_UNUSED_ENTRY(223),
864 I40E_PTT_UNUSED_ENTRY(224),
865 I40E_PTT_UNUSED_ENTRY(225),
866 I40E_PTT_UNUSED_ENTRY(226),
867 I40E_PTT_UNUSED_ENTRY(227),
868 I40E_PTT_UNUSED_ENTRY(228),
869 I40E_PTT_UNUSED_ENTRY(229),
870
871 I40E_PTT_UNUSED_ENTRY(230),
872 I40E_PTT_UNUSED_ENTRY(231),
873 I40E_PTT_UNUSED_ENTRY(232),
874 I40E_PTT_UNUSED_ENTRY(233),
875 I40E_PTT_UNUSED_ENTRY(234),
876 I40E_PTT_UNUSED_ENTRY(235),
877 I40E_PTT_UNUSED_ENTRY(236),
878 I40E_PTT_UNUSED_ENTRY(237),
879 I40E_PTT_UNUSED_ENTRY(238),
880 I40E_PTT_UNUSED_ENTRY(239),
881
882 I40E_PTT_UNUSED_ENTRY(240),
883 I40E_PTT_UNUSED_ENTRY(241),
884 I40E_PTT_UNUSED_ENTRY(242),
885 I40E_PTT_UNUSED_ENTRY(243),
886 I40E_PTT_UNUSED_ENTRY(244),
887 I40E_PTT_UNUSED_ENTRY(245),
888 I40E_PTT_UNUSED_ENTRY(246),
889 I40E_PTT_UNUSED_ENTRY(247),
890 I40E_PTT_UNUSED_ENTRY(248),
891 I40E_PTT_UNUSED_ENTRY(249),
892
893 I40E_PTT_UNUSED_ENTRY(250),
894 I40E_PTT_UNUSED_ENTRY(251),
895 I40E_PTT_UNUSED_ENTRY(252),
896 I40E_PTT_UNUSED_ENTRY(253),
897 I40E_PTT_UNUSED_ENTRY(254),
898 I40E_PTT_UNUSED_ENTRY(255)
899};
900
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +0000901/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000902 * i40e_init_shared_code - Initialize the shared code
903 * @hw: pointer to hardware structure
904 *
905 * This assigns the MAC type and PHY code and inits the NVM.
906 * Does not touch the hardware. This function must be called prior to any
907 * other function in the shared code. The i40e_hw structure should be
908 * memset to 0 prior to calling this function. The following fields in
909 * hw structure should be filled in prior to calling this function:
910 * hw_addr, back, device_id, vendor_id, subsystem_device_id,
911 * subsystem_vendor_id, and revision_id
912 **/
913i40e_status i40e_init_shared_code(struct i40e_hw *hw)
914{
915 i40e_status status = 0;
Shannon Nelson5fb11d72014-11-13 03:06:19 +0000916 u32 port, ari, func_rid;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000917
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000918 i40e_set_mac_type(hw);
919
920 switch (hw->mac.type) {
921 case I40E_MAC_XL710:
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -0400922 case I40E_MAC_X722:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000923 break;
924 default:
925 return I40E_ERR_DEVICE_NOT_SUPPORTED;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000926 }
927
Shannon Nelsonaf89d26c2013-12-11 08:17:14 +0000928 hw->phy.get_link_info = true;
929
Shannon Nelson5fb11d72014-11-13 03:06:19 +0000930 /* Determine port number and PF number*/
931 port = (rd32(hw, I40E_PFGEN_PORTNUM) & I40E_PFGEN_PORTNUM_PORT_NUM_MASK)
932 >> I40E_PFGEN_PORTNUM_PORT_NUM_SHIFT;
933 hw->port = (u8)port;
934 ari = (rd32(hw, I40E_GLPCI_CAPSUP) & I40E_GLPCI_CAPSUP_ARI_EN_MASK) >>
935 I40E_GLPCI_CAPSUP_ARI_EN_SHIFT;
936 func_rid = rd32(hw, I40E_PF_FUNC_RID);
937 if (ari)
938 hw->pf_id = (u8)(func_rid & 0xff);
Shannon Nelson5f9116a2013-12-11 08:17:13 +0000939 else
Shannon Nelson5fb11d72014-11-13 03:06:19 +0000940 hw->pf_id = (u8)(func_rid & 0x7);
Shannon Nelson5f9116a2013-12-11 08:17:13 +0000941
Anjali Singhai07f89be2015-09-24 15:26:32 -0700942 if (hw->mac.type == I40E_MAC_X722)
943 hw->flags |= I40E_HW_FLAG_AQ_SRCTL_ACCESS_ENABLE;
944
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000945 status = i40e_init_nvm(hw);
946 return status;
947}
948
949/**
950 * i40e_aq_mac_address_read - Retrieve the MAC addresses
951 * @hw: pointer to the hw struct
952 * @flags: a return indicator of what addresses were added to the addr store
953 * @addrs: the requestor's mac addr store
954 * @cmd_details: pointer to command details structure or NULL
955 **/
956static i40e_status i40e_aq_mac_address_read(struct i40e_hw *hw,
957 u16 *flags,
958 struct i40e_aqc_mac_address_read_data *addrs,
959 struct i40e_asq_cmd_details *cmd_details)
960{
961 struct i40e_aq_desc desc;
962 struct i40e_aqc_mac_address_read *cmd_data =
963 (struct i40e_aqc_mac_address_read *)&desc.params.raw;
964 i40e_status status;
965
966 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_mac_address_read);
967 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_BUF);
968
969 status = i40e_asq_send_command(hw, &desc, addrs,
970 sizeof(*addrs), cmd_details);
971 *flags = le16_to_cpu(cmd_data->command_flags);
972
973 return status;
974}
975
976/**
977 * i40e_aq_mac_address_write - Change the MAC addresses
978 * @hw: pointer to the hw struct
979 * @flags: indicates which MAC to be written
980 * @mac_addr: address to write
981 * @cmd_details: pointer to command details structure or NULL
982 **/
983i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
984 u16 flags, u8 *mac_addr,
985 struct i40e_asq_cmd_details *cmd_details)
986{
987 struct i40e_aq_desc desc;
988 struct i40e_aqc_mac_address_write *cmd_data =
989 (struct i40e_aqc_mac_address_write *)&desc.params.raw;
990 i40e_status status;
991
992 i40e_fill_default_direct_cmd_desc(&desc,
993 i40e_aqc_opc_mac_address_write);
994 cmd_data->command_flags = cpu_to_le16(flags);
Kamil Krawczyk55c29c32013-12-18 13:45:52 +0000995 cmd_data->mac_sah = cpu_to_le16((u16)mac_addr[0] << 8 | mac_addr[1]);
996 cmd_data->mac_sal = cpu_to_le32(((u32)mac_addr[2] << 24) |
997 ((u32)mac_addr[3] << 16) |
998 ((u32)mac_addr[4] << 8) |
999 mac_addr[5]);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001000
1001 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1002
1003 return status;
1004}
1005
1006/**
1007 * i40e_get_mac_addr - get MAC address
1008 * @hw: pointer to the HW structure
1009 * @mac_addr: pointer to MAC address
1010 *
1011 * Reads the adapter's MAC address from register
1012 **/
1013i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1014{
1015 struct i40e_aqc_mac_address_read_data addrs;
1016 i40e_status status;
1017 u16 flags = 0;
1018
1019 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1020
1021 if (flags & I40E_AQC_LAN_ADDR_VALID)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001022 ether_addr_copy(mac_addr, addrs.pf_lan_mac);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001023
1024 return status;
1025}
1026
1027/**
Neerav Parikh1f224ad2014-02-12 01:45:31 +00001028 * i40e_get_port_mac_addr - get Port MAC address
1029 * @hw: pointer to the HW structure
1030 * @mac_addr: pointer to Port MAC address
1031 *
1032 * Reads the adapter's Port MAC address
1033 **/
1034i40e_status i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1035{
1036 struct i40e_aqc_mac_address_read_data addrs;
1037 i40e_status status;
1038 u16 flags = 0;
1039
1040 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1041 if (status)
1042 return status;
1043
1044 if (flags & I40E_AQC_PORT_ADDR_VALID)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001045 ether_addr_copy(mac_addr, addrs.port_mac);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00001046 else
1047 status = I40E_ERR_INVALID_MAC_ADDR;
1048
1049 return status;
1050}
1051
1052/**
Matt Jared351499ab2014-04-23 04:50:03 +00001053 * i40e_pre_tx_queue_cfg - pre tx queue configure
1054 * @hw: pointer to the HW structure
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001055 * @queue: target PF queue index
Matt Jared351499ab2014-04-23 04:50:03 +00001056 * @enable: state change request
1057 *
1058 * Handles hw requirement to indicate intention to enable
1059 * or disable target queue.
1060 **/
1061void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable)
1062{
Shannon Nelsondfb699f2014-05-22 06:32:28 +00001063 u32 abs_queue_idx = hw->func_caps.base_queue + queue;
Matt Jared351499ab2014-04-23 04:50:03 +00001064 u32 reg_block = 0;
Shannon Nelsondfb699f2014-05-22 06:32:28 +00001065 u32 reg_val;
Matt Jared351499ab2014-04-23 04:50:03 +00001066
Christopher Pau24a768c2014-06-04 20:41:59 +00001067 if (abs_queue_idx >= 128) {
Matt Jared351499ab2014-04-23 04:50:03 +00001068 reg_block = abs_queue_idx / 128;
Christopher Pau24a768c2014-06-04 20:41:59 +00001069 abs_queue_idx %= 128;
1070 }
Matt Jared351499ab2014-04-23 04:50:03 +00001071
1072 reg_val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1073 reg_val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1074 reg_val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1075
1076 if (enable)
1077 reg_val |= I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK;
1078 else
1079 reg_val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1080
1081 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), reg_val);
1082}
Vasu Dev38e00432014-08-01 13:27:03 -07001083#ifdef I40E_FCOE
1084
1085/**
1086 * i40e_get_san_mac_addr - get SAN MAC address
1087 * @hw: pointer to the HW structure
1088 * @mac_addr: pointer to SAN MAC address
1089 *
1090 * Reads the adapter's SAN MAC address from NVM
1091 **/
1092i40e_status i40e_get_san_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1093{
1094 struct i40e_aqc_mac_address_read_data addrs;
1095 i40e_status status;
1096 u16 flags = 0;
1097
1098 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1099 if (status)
1100 return status;
1101
1102 if (flags & I40E_AQC_SAN_ADDR_VALID)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001103 ether_addr_copy(mac_addr, addrs.pf_san_mac);
Vasu Dev38e00432014-08-01 13:27:03 -07001104 else
1105 status = I40E_ERR_INVALID_MAC_ADDR;
1106
1107 return status;
1108}
1109#endif
Matt Jared351499ab2014-04-23 04:50:03 +00001110
1111/**
Kamil Krawczyk18f680c2014-12-11 07:06:31 +00001112 * i40e_read_pba_string - Reads part number string from EEPROM
1113 * @hw: pointer to hardware structure
1114 * @pba_num: stores the part number string from the EEPROM
1115 * @pba_num_size: part number string buffer length
1116 *
1117 * Reads the part number string from the EEPROM.
1118 **/
1119i40e_status i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
1120 u32 pba_num_size)
1121{
1122 i40e_status status = 0;
1123 u16 pba_word = 0;
1124 u16 pba_size = 0;
1125 u16 pba_ptr = 0;
1126 u16 i = 0;
1127
1128 status = i40e_read_nvm_word(hw, I40E_SR_PBA_FLAGS, &pba_word);
1129 if (status || (pba_word != 0xFAFA)) {
1130 hw_dbg(hw, "Failed to read PBA flags or flag is invalid.\n");
1131 return status;
1132 }
1133
1134 status = i40e_read_nvm_word(hw, I40E_SR_PBA_BLOCK_PTR, &pba_ptr);
1135 if (status) {
1136 hw_dbg(hw, "Failed to read PBA Block pointer.\n");
1137 return status;
1138 }
1139
1140 status = i40e_read_nvm_word(hw, pba_ptr, &pba_size);
1141 if (status) {
1142 hw_dbg(hw, "Failed to read PBA Block size.\n");
1143 return status;
1144 }
1145
1146 /* Subtract one to get PBA word count (PBA Size word is included in
1147 * total size)
1148 */
1149 pba_size--;
1150 if (pba_num_size < (((u32)pba_size * 2) + 1)) {
1151 hw_dbg(hw, "Buffer to small for PBA data.\n");
1152 return I40E_ERR_PARAM;
1153 }
1154
1155 for (i = 0; i < pba_size; i++) {
1156 status = i40e_read_nvm_word(hw, (pba_ptr + 1) + i, &pba_word);
1157 if (status) {
1158 hw_dbg(hw, "Failed to read PBA Block word %d.\n", i);
1159 return status;
1160 }
1161
1162 pba_num[(i * 2)] = (pba_word >> 8) & 0xFF;
1163 pba_num[(i * 2) + 1] = pba_word & 0xFF;
1164 }
1165 pba_num[(pba_size * 2)] = '\0';
1166
1167 return status;
1168}
1169
1170/**
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001171 * i40e_get_media_type - Gets media type
1172 * @hw: pointer to the hardware structure
1173 **/
1174static enum i40e_media_type i40e_get_media_type(struct i40e_hw *hw)
1175{
1176 enum i40e_media_type media;
1177
1178 switch (hw->phy.link_info.phy_type) {
1179 case I40E_PHY_TYPE_10GBASE_SR:
1180 case I40E_PHY_TYPE_10GBASE_LR:
Catherine Sullivan124ed152014-07-12 07:28:12 +00001181 case I40E_PHY_TYPE_1000BASE_SX:
1182 case I40E_PHY_TYPE_1000BASE_LX:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001183 case I40E_PHY_TYPE_40GBASE_SR4:
1184 case I40E_PHY_TYPE_40GBASE_LR4:
1185 media = I40E_MEDIA_TYPE_FIBER;
1186 break;
1187 case I40E_PHY_TYPE_100BASE_TX:
1188 case I40E_PHY_TYPE_1000BASE_T:
1189 case I40E_PHY_TYPE_10GBASE_T:
1190 media = I40E_MEDIA_TYPE_BASET;
1191 break;
1192 case I40E_PHY_TYPE_10GBASE_CR1_CU:
1193 case I40E_PHY_TYPE_40GBASE_CR4_CU:
1194 case I40E_PHY_TYPE_10GBASE_CR1:
1195 case I40E_PHY_TYPE_40GBASE_CR4:
1196 case I40E_PHY_TYPE_10GBASE_SFPP_CU:
Catherine Sullivan180204c2015-02-26 16:14:58 +00001197 case I40E_PHY_TYPE_40GBASE_AOC:
1198 case I40E_PHY_TYPE_10GBASE_AOC:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001199 media = I40E_MEDIA_TYPE_DA;
1200 break;
1201 case I40E_PHY_TYPE_1000BASE_KX:
1202 case I40E_PHY_TYPE_10GBASE_KX4:
1203 case I40E_PHY_TYPE_10GBASE_KR:
1204 case I40E_PHY_TYPE_40GBASE_KR4:
Jesse Brandeburgae24b402015-03-27 00:12:09 -07001205 case I40E_PHY_TYPE_20GBASE_KR2:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001206 media = I40E_MEDIA_TYPE_BACKPLANE;
1207 break;
1208 case I40E_PHY_TYPE_SGMII:
1209 case I40E_PHY_TYPE_XAUI:
1210 case I40E_PHY_TYPE_XFI:
1211 case I40E_PHY_TYPE_XLAUI:
1212 case I40E_PHY_TYPE_XLPPI:
1213 default:
1214 media = I40E_MEDIA_TYPE_UNKNOWN;
1215 break;
1216 }
1217
1218 return media;
1219}
1220
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001221#define I40E_PF_RESET_WAIT_COUNT_A0 200
Akeem G Abodunrin8af580d2015-03-27 00:12:10 -07001222#define I40E_PF_RESET_WAIT_COUNT 200
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001223/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001224 * i40e_pf_reset - Reset the PF
1225 * @hw: pointer to the hardware structure
1226 *
1227 * Assuming someone else has triggered a global reset,
1228 * assure the global reset is complete and then reset the PF
1229 **/
1230i40e_status i40e_pf_reset(struct i40e_hw *hw)
1231{
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001232 u32 cnt = 0;
Shannon Nelson42794bd2013-12-11 08:17:10 +00001233 u32 cnt1 = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001234 u32 reg = 0;
1235 u32 grst_del;
1236
1237 /* Poll for Global Reset steady state in case of recent GRST.
1238 * The grst delay value is in 100ms units, and we'll wait a
1239 * couple counts longer to be sure we don't just miss the end.
1240 */
Shannon Nelsonde78fc52015-02-21 06:41:47 +00001241 grst_del = (rd32(hw, I40E_GLGEN_RSTCTL) &
1242 I40E_GLGEN_RSTCTL_GRSTDEL_MASK) >>
1243 I40E_GLGEN_RSTCTL_GRSTDEL_SHIFT;
Kevin Scott4d7cec02016-02-17 16:12:13 -08001244
1245 /* It can take upto 15 secs for GRST steady state.
1246 * Bump it to 16 secs max to be safe.
1247 */
1248 grst_del = grst_del * 20;
1249
1250 for (cnt = 0; cnt < grst_del; cnt++) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001251 reg = rd32(hw, I40E_GLGEN_RSTAT);
1252 if (!(reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK))
1253 break;
1254 msleep(100);
1255 }
1256 if (reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
1257 hw_dbg(hw, "Global reset polling failed to complete.\n");
1258 return I40E_ERR_RESET_FAILED;
1259 }
1260
Shannon Nelson42794bd2013-12-11 08:17:10 +00001261 /* Now Wait for the FW to be ready */
1262 for (cnt1 = 0; cnt1 < I40E_PF_RESET_WAIT_COUNT; cnt1++) {
1263 reg = rd32(hw, I40E_GLNVM_ULD);
1264 reg &= (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1265 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK);
1266 if (reg == (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1267 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK)) {
1268 hw_dbg(hw, "Core and Global modules ready %d\n", cnt1);
1269 break;
1270 }
1271 usleep_range(10000, 20000);
1272 }
1273 if (!(reg & (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1274 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))) {
1275 hw_dbg(hw, "wait for FW Reset complete timedout\n");
1276 hw_dbg(hw, "I40E_GLNVM_ULD = 0x%x\n", reg);
1277 return I40E_ERR_RESET_FAILED;
1278 }
1279
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001280 /* If there was a Global Reset in progress when we got here,
1281 * we don't need to do the PF Reset
1282 */
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001283 if (!cnt) {
1284 if (hw->revision_id == 0)
1285 cnt = I40E_PF_RESET_WAIT_COUNT_A0;
1286 else
1287 cnt = I40E_PF_RESET_WAIT_COUNT;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001288 reg = rd32(hw, I40E_PFGEN_CTRL);
1289 wr32(hw, I40E_PFGEN_CTRL,
1290 (reg | I40E_PFGEN_CTRL_PFSWR_MASK));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001291 for (; cnt; cnt--) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001292 reg = rd32(hw, I40E_PFGEN_CTRL);
1293 if (!(reg & I40E_PFGEN_CTRL_PFSWR_MASK))
1294 break;
1295 usleep_range(1000, 2000);
1296 }
1297 if (reg & I40E_PFGEN_CTRL_PFSWR_MASK) {
1298 hw_dbg(hw, "PF reset polling failed to complete.\n");
1299 return I40E_ERR_RESET_FAILED;
1300 }
1301 }
1302
1303 i40e_clear_pxe_mode(hw);
Shannon Nelson922680b2013-12-18 05:29:17 +00001304
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001305 return 0;
1306}
1307
1308/**
Shannon Nelson838d41d2014-06-04 20:41:27 +00001309 * i40e_clear_hw - clear out any left over hw state
1310 * @hw: pointer to the hw struct
1311 *
1312 * Clear queues and interrupts, typically called at init time,
1313 * but after the capabilities have been found so we know how many
1314 * queues and msix vectors have been allocated.
1315 **/
1316void i40e_clear_hw(struct i40e_hw *hw)
1317{
1318 u32 num_queues, base_queue;
1319 u32 num_pf_int;
1320 u32 num_vf_int;
1321 u32 num_vfs;
1322 u32 i, j;
1323 u32 val;
1324 u32 eol = 0x7ff;
1325
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001326 /* get number of interrupts, queues, and VFs */
Shannon Nelson838d41d2014-06-04 20:41:27 +00001327 val = rd32(hw, I40E_GLPCI_CNF2);
1328 num_pf_int = (val & I40E_GLPCI_CNF2_MSI_X_PF_N_MASK) >>
1329 I40E_GLPCI_CNF2_MSI_X_PF_N_SHIFT;
1330 num_vf_int = (val & I40E_GLPCI_CNF2_MSI_X_VF_N_MASK) >>
1331 I40E_GLPCI_CNF2_MSI_X_VF_N_SHIFT;
1332
Shannon Nelson272cdaf22016-02-17 16:12:21 -08001333 val = rd32(hw, I40E_PFLAN_QALLOC);
Shannon Nelson838d41d2014-06-04 20:41:27 +00001334 base_queue = (val & I40E_PFLAN_QALLOC_FIRSTQ_MASK) >>
1335 I40E_PFLAN_QALLOC_FIRSTQ_SHIFT;
1336 j = (val & I40E_PFLAN_QALLOC_LASTQ_MASK) >>
1337 I40E_PFLAN_QALLOC_LASTQ_SHIFT;
1338 if (val & I40E_PFLAN_QALLOC_VALID_MASK)
1339 num_queues = (j - base_queue) + 1;
1340 else
1341 num_queues = 0;
1342
1343 val = rd32(hw, I40E_PF_VT_PFALLOC);
1344 i = (val & I40E_PF_VT_PFALLOC_FIRSTVF_MASK) >>
1345 I40E_PF_VT_PFALLOC_FIRSTVF_SHIFT;
1346 j = (val & I40E_PF_VT_PFALLOC_LASTVF_MASK) >>
1347 I40E_PF_VT_PFALLOC_LASTVF_SHIFT;
1348 if (val & I40E_PF_VT_PFALLOC_VALID_MASK)
1349 num_vfs = (j - i) + 1;
1350 else
1351 num_vfs = 0;
1352
1353 /* stop all the interrupts */
1354 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
1355 val = 0x3 << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
1356 for (i = 0; i < num_pf_int - 2; i++)
1357 wr32(hw, I40E_PFINT_DYN_CTLN(i), val);
1358
1359 /* Set the FIRSTQ_INDX field to 0x7FF in PFINT_LNKLSTx */
1360 val = eol << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1361 wr32(hw, I40E_PFINT_LNKLST0, val);
1362 for (i = 0; i < num_pf_int - 2; i++)
1363 wr32(hw, I40E_PFINT_LNKLSTN(i), val);
1364 val = eol << I40E_VPINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1365 for (i = 0; i < num_vfs; i++)
1366 wr32(hw, I40E_VPINT_LNKLST0(i), val);
1367 for (i = 0; i < num_vf_int - 2; i++)
1368 wr32(hw, I40E_VPINT_LNKLSTN(i), val);
1369
1370 /* warn the HW of the coming Tx disables */
1371 for (i = 0; i < num_queues; i++) {
1372 u32 abs_queue_idx = base_queue + i;
1373 u32 reg_block = 0;
1374
1375 if (abs_queue_idx >= 128) {
1376 reg_block = abs_queue_idx / 128;
1377 abs_queue_idx %= 128;
1378 }
1379
1380 val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1381 val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1382 val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1383 val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1384
1385 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), val);
1386 }
1387 udelay(400);
1388
1389 /* stop all the queues */
1390 for (i = 0; i < num_queues; i++) {
1391 wr32(hw, I40E_QINT_TQCTL(i), 0);
1392 wr32(hw, I40E_QTX_ENA(i), 0);
1393 wr32(hw, I40E_QINT_RQCTL(i), 0);
1394 wr32(hw, I40E_QRX_ENA(i), 0);
1395 }
1396
1397 /* short wait for all queue disables to settle */
1398 udelay(50);
1399}
1400
1401/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001402 * i40e_clear_pxe_mode - clear pxe operations mode
1403 * @hw: pointer to the hw struct
1404 *
1405 * Make sure all PXE mode settings are cleared, including things
1406 * like descriptor fetch/write-back mode.
1407 **/
1408void i40e_clear_pxe_mode(struct i40e_hw *hw)
1409{
1410 u32 reg;
1411
Shannon Nelsonc9b9b0a2014-04-09 05:59:05 +00001412 if (i40e_check_asq_alive(hw))
1413 i40e_aq_clear_pxe_mode(hw, NULL);
1414
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001415 /* Clear single descriptor fetch/write-back mode */
1416 reg = rd32(hw, I40E_GLLAN_RCTL_0);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001417
1418 if (hw->revision_id == 0) {
1419 /* As a work around clear PXE_MODE instead of setting it */
1420 wr32(hw, I40E_GLLAN_RCTL_0, (reg & (~I40E_GLLAN_RCTL_0_PXE_MODE_MASK)));
1421 } else {
1422 wr32(hw, I40E_GLLAN_RCTL_0, (reg | I40E_GLLAN_RCTL_0_PXE_MODE_MASK));
1423 }
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001424}
1425
1426/**
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001427 * i40e_led_is_mine - helper to find matching led
1428 * @hw: pointer to the hw struct
1429 * @idx: index into GPIO registers
1430 *
1431 * returns: 0 if no match, otherwise the value of the GPIO_CTL register
1432 */
1433static u32 i40e_led_is_mine(struct i40e_hw *hw, int idx)
1434{
1435 u32 gpio_val = 0;
1436 u32 port;
1437
1438 if (!hw->func_caps.led[idx])
1439 return 0;
1440
1441 gpio_val = rd32(hw, I40E_GLGEN_GPIO_CTL(idx));
1442 port = (gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_MASK) >>
1443 I40E_GLGEN_GPIO_CTL_PRT_NUM_SHIFT;
1444
1445 /* if PRT_NUM_NA is 1 then this LED is not port specific, OR
1446 * if it is not our port then ignore
1447 */
1448 if ((gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_NA_MASK) ||
1449 (port != hw->port))
1450 return 0;
1451
1452 return gpio_val;
1453}
1454
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001455#define I40E_COMBINED_ACTIVITY 0xA
1456#define I40E_FILTER_ACTIVITY 0xE
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001457#define I40E_LINK_ACTIVITY 0xC
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001458#define I40E_MAC_ACTIVITY 0xD
1459#define I40E_LED0 22
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001460
1461/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001462 * i40e_led_get - return current on/off mode
1463 * @hw: pointer to the hw struct
1464 *
1465 * The value returned is the 'mode' field as defined in the
1466 * GPIO register definitions: 0x0 = off, 0xf = on, and other
1467 * values are variations of possible behaviors relating to
1468 * blink, link, and wire.
1469 **/
1470u32 i40e_led_get(struct i40e_hw *hw)
1471{
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001472 u32 current_mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001473 u32 mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001474 int i;
1475
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001476 /* as per the documentation GPIO 22-29 are the LED
1477 * GPIO pins named LED0..LED7
1478 */
1479 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1480 u32 gpio_val = i40e_led_is_mine(hw, i);
1481
1482 if (!gpio_val)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001483 continue;
1484
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001485 /* ignore gpio LED src mode entries related to the activity
1486 * LEDs
1487 */
1488 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1489 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1490 switch (current_mode) {
1491 case I40E_COMBINED_ACTIVITY:
1492 case I40E_FILTER_ACTIVITY:
1493 case I40E_MAC_ACTIVITY:
1494 continue;
1495 default:
1496 break;
1497 }
1498
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001499 mode = (gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK) >>
1500 I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001501 break;
1502 }
1503
1504 return mode;
1505}
1506
1507/**
1508 * i40e_led_set - set new on/off mode
1509 * @hw: pointer to the hw struct
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001510 * @mode: 0=off, 0xf=on (else see manual for mode details)
1511 * @blink: true if the LED should blink when on, false if steady
1512 *
1513 * if this function is used to turn on the blink it should
1514 * be used to disable the blink when restoring the original state.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001515 **/
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001516void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001517{
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001518 u32 current_mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001519 int i;
1520
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001521 if (mode & 0xfffffff0)
1522 hw_dbg(hw, "invalid mode passed in %X\n", mode);
1523
1524 /* as per the documentation GPIO 22-29 are the LED
1525 * GPIO pins named LED0..LED7
1526 */
1527 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1528 u32 gpio_val = i40e_led_is_mine(hw, i);
1529
1530 if (!gpio_val)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001531 continue;
1532
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001533 /* ignore gpio LED src mode entries related to the activity
1534 * LEDs
1535 */
1536 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1537 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1538 switch (current_mode) {
1539 case I40E_COMBINED_ACTIVITY:
1540 case I40E_FILTER_ACTIVITY:
1541 case I40E_MAC_ACTIVITY:
1542 continue;
1543 default:
1544 break;
1545 }
1546
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001547 gpio_val &= ~I40E_GLGEN_GPIO_CTL_LED_MODE_MASK;
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001548 /* this & is a bit of paranoia, but serves as a range check */
1549 gpio_val |= ((mode << I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT) &
1550 I40E_GLGEN_GPIO_CTL_LED_MODE_MASK);
1551
1552 if (mode == I40E_LINK_ACTIVITY)
1553 blink = false;
1554
Matt Jared9be00d62015-01-24 09:58:28 +00001555 if (blink)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001556 gpio_val |= BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
Matt Jared9be00d62015-01-24 09:58:28 +00001557 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001558 gpio_val &= ~BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001559
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001560 wr32(hw, I40E_GLGEN_GPIO_CTL(i), gpio_val);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001561 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001562 }
1563}
1564
1565/* Admin command wrappers */
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001566
1567/**
Catherine Sullivan8109e122014-06-04 08:45:24 +00001568 * i40e_aq_get_phy_capabilities
1569 * @hw: pointer to the hw struct
1570 * @abilities: structure for PHY capabilities to be filled
1571 * @qualified_modules: report Qualified Modules
1572 * @report_init: report init capabilities (active are default)
1573 * @cmd_details: pointer to command details structure or NULL
1574 *
1575 * Returns the various PHY abilities supported on the Port.
1576 **/
1577i40e_status i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
1578 bool qualified_modules, bool report_init,
1579 struct i40e_aq_get_phy_abilities_resp *abilities,
1580 struct i40e_asq_cmd_details *cmd_details)
1581{
1582 struct i40e_aq_desc desc;
1583 i40e_status status;
1584 u16 abilities_size = sizeof(struct i40e_aq_get_phy_abilities_resp);
1585
1586 if (!abilities)
1587 return I40E_ERR_PARAM;
1588
1589 i40e_fill_default_direct_cmd_desc(&desc,
1590 i40e_aqc_opc_get_phy_abilities);
1591
1592 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1593 if (abilities_size > I40E_AQ_LARGE_BUF)
1594 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1595
1596 if (qualified_modules)
1597 desc.params.external.param0 |=
1598 cpu_to_le32(I40E_AQ_PHY_REPORT_QUALIFIED_MODULES);
1599
1600 if (report_init)
1601 desc.params.external.param0 |=
1602 cpu_to_le32(I40E_AQ_PHY_REPORT_INITIAL_VALUES);
1603
1604 status = i40e_asq_send_command(hw, &desc, abilities, abilities_size,
1605 cmd_details);
1606
1607 if (hw->aq.asq_last_status == I40E_AQ_RC_EIO)
1608 status = I40E_ERR_UNKNOWN_PHY;
1609
Kevin Scott3ac67d72015-09-03 17:18:58 -04001610 if (report_init)
1611 hw->phy.phy_types = le32_to_cpu(abilities->phy_type);
1612
Catherine Sullivan8109e122014-06-04 08:45:24 +00001613 return status;
1614}
1615
1616/**
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001617 * i40e_aq_set_phy_config
1618 * @hw: pointer to the hw struct
1619 * @config: structure with PHY configuration to be set
1620 * @cmd_details: pointer to command details structure or NULL
1621 *
1622 * Set the various PHY configuration parameters
1623 * supported on the Port.One or more of the Set PHY config parameters may be
1624 * ignored in an MFP mode as the PF may not have the privilege to set some
1625 * of the PHY Config parameters. This status will be indicated by the
1626 * command response.
1627 **/
1628enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
1629 struct i40e_aq_set_phy_config *config,
1630 struct i40e_asq_cmd_details *cmd_details)
1631{
1632 struct i40e_aq_desc desc;
1633 struct i40e_aq_set_phy_config *cmd =
1634 (struct i40e_aq_set_phy_config *)&desc.params.raw;
1635 enum i40e_status_code status;
1636
1637 if (!config)
1638 return I40E_ERR_PARAM;
1639
1640 i40e_fill_default_direct_cmd_desc(&desc,
1641 i40e_aqc_opc_set_phy_config);
1642
1643 *cmd = *config;
1644
1645 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1646
1647 return status;
1648}
1649
1650/**
1651 * i40e_set_fc
1652 * @hw: pointer to the hw struct
1653 *
1654 * Set the requested flow control mode using set_phy_config.
1655 **/
1656enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
1657 bool atomic_restart)
1658{
1659 enum i40e_fc_mode fc_mode = hw->fc.requested_mode;
1660 struct i40e_aq_get_phy_abilities_resp abilities;
1661 struct i40e_aq_set_phy_config config;
1662 enum i40e_status_code status;
1663 u8 pause_mask = 0x0;
1664
1665 *aq_failures = 0x0;
1666
1667 switch (fc_mode) {
1668 case I40E_FC_FULL:
1669 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1670 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1671 break;
1672 case I40E_FC_RX_PAUSE:
1673 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1674 break;
1675 case I40E_FC_TX_PAUSE:
1676 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1677 break;
1678 default:
1679 break;
1680 }
1681
1682 /* Get the current phy config */
1683 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities,
1684 NULL);
1685 if (status) {
1686 *aq_failures |= I40E_SET_FC_AQ_FAIL_GET;
1687 return status;
1688 }
1689
1690 memset(&config, 0, sizeof(struct i40e_aq_set_phy_config));
1691 /* clear the old pause settings */
1692 config.abilities = abilities.abilities & ~(I40E_AQ_PHY_FLAG_PAUSE_TX) &
1693 ~(I40E_AQ_PHY_FLAG_PAUSE_RX);
1694 /* set the new abilities */
1695 config.abilities |= pause_mask;
1696 /* If the abilities have changed, then set the new config */
1697 if (config.abilities != abilities.abilities) {
1698 /* Auto restart link so settings take effect */
1699 if (atomic_restart)
1700 config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK;
1701 /* Copy over all the old settings */
1702 config.phy_type = abilities.phy_type;
1703 config.link_speed = abilities.link_speed;
1704 config.eee_capability = abilities.eee_capability;
1705 config.eeer = abilities.eeer_val;
1706 config.low_power_ctrl = abilities.d3_lpan;
1707 status = i40e_aq_set_phy_config(hw, &config, NULL);
1708
1709 if (status)
1710 *aq_failures |= I40E_SET_FC_AQ_FAIL_SET;
1711 }
1712 /* Update the link info */
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001713 status = i40e_update_link_info(hw);
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001714 if (status) {
1715 /* Wait a little bit (on 40G cards it sometimes takes a really
1716 * long time for link to come back from the atomic reset)
1717 * and try once more
1718 */
1719 msleep(1000);
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001720 status = i40e_update_link_info(hw);
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001721 }
1722 if (status)
1723 *aq_failures |= I40E_SET_FC_AQ_FAIL_UPDATE;
1724
1725 return status;
1726}
1727
1728/**
Shannon Nelsonc9b9b0a2014-04-09 05:59:05 +00001729 * i40e_aq_clear_pxe_mode
1730 * @hw: pointer to the hw struct
1731 * @cmd_details: pointer to command details structure or NULL
1732 *
1733 * Tell the firmware that the driver is taking over from PXE
1734 **/
1735i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
1736 struct i40e_asq_cmd_details *cmd_details)
1737{
1738 i40e_status status;
1739 struct i40e_aq_desc desc;
1740 struct i40e_aqc_clear_pxe *cmd =
1741 (struct i40e_aqc_clear_pxe *)&desc.params.raw;
1742
1743 i40e_fill_default_direct_cmd_desc(&desc,
1744 i40e_aqc_opc_clear_pxe_mode);
1745
1746 cmd->rx_cnt = 0x2;
1747
1748 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1749
1750 wr32(hw, I40E_GLLAN_RCTL_0, 0x1);
1751
1752 return status;
1753}
1754
1755/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001756 * i40e_aq_set_link_restart_an
1757 * @hw: pointer to the hw struct
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001758 * @enable_link: if true: enable link, if false: disable link
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001759 * @cmd_details: pointer to command details structure or NULL
1760 *
1761 * Sets up the link and restarts the Auto-Negotiation over the link.
1762 **/
1763i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001764 bool enable_link,
1765 struct i40e_asq_cmd_details *cmd_details)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001766{
1767 struct i40e_aq_desc desc;
1768 struct i40e_aqc_set_link_restart_an *cmd =
1769 (struct i40e_aqc_set_link_restart_an *)&desc.params.raw;
1770 i40e_status status;
1771
1772 i40e_fill_default_direct_cmd_desc(&desc,
1773 i40e_aqc_opc_set_link_restart_an);
1774
1775 cmd->command = I40E_AQ_PHY_RESTART_AN;
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001776 if (enable_link)
1777 cmd->command |= I40E_AQ_PHY_LINK_ENABLE;
1778 else
1779 cmd->command &= ~I40E_AQ_PHY_LINK_ENABLE;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001780
1781 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1782
1783 return status;
1784}
1785
1786/**
1787 * i40e_aq_get_link_info
1788 * @hw: pointer to the hw struct
1789 * @enable_lse: enable/disable LinkStatusEvent reporting
1790 * @link: pointer to link status structure - optional
1791 * @cmd_details: pointer to command details structure or NULL
1792 *
1793 * Returns the link status of the adapter.
1794 **/
1795i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
1796 bool enable_lse, struct i40e_link_status *link,
1797 struct i40e_asq_cmd_details *cmd_details)
1798{
1799 struct i40e_aq_desc desc;
1800 struct i40e_aqc_get_link_status *resp =
1801 (struct i40e_aqc_get_link_status *)&desc.params.raw;
1802 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
1803 i40e_status status;
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001804 bool tx_pause, rx_pause;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001805 u16 command_flags;
1806
1807 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_link_status);
1808
1809 if (enable_lse)
1810 command_flags = I40E_AQ_LSE_ENABLE;
1811 else
1812 command_flags = I40E_AQ_LSE_DISABLE;
1813 resp->command_flags = cpu_to_le16(command_flags);
1814
1815 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1816
1817 if (status)
1818 goto aq_get_link_info_exit;
1819
1820 /* save off old link status information */
Mitch Williamsc36bd4a72013-12-18 13:46:04 +00001821 hw->phy.link_info_old = *hw_link_info;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001822
1823 /* update link status */
1824 hw_link_info->phy_type = (enum i40e_aq_phy_type)resp->phy_type;
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001825 hw->phy.media_type = i40e_get_media_type(hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001826 hw_link_info->link_speed = (enum i40e_aq_link_speed)resp->link_speed;
1827 hw_link_info->link_info = resp->link_info;
1828 hw_link_info->an_info = resp->an_info;
1829 hw_link_info->ext_info = resp->ext_info;
Kamil Krawczyk639dc372013-11-20 10:03:07 +00001830 hw_link_info->loopback = resp->loopback;
Neerav Parikh6bb3f232014-04-01 07:11:56 +00001831 hw_link_info->max_frame_size = le16_to_cpu(resp->max_frame_size);
1832 hw_link_info->pacing = resp->config & I40E_AQ_CONFIG_PACING_MASK;
1833
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001834 /* update fc info */
1835 tx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_TX);
1836 rx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_RX);
1837 if (tx_pause & rx_pause)
1838 hw->fc.current_mode = I40E_FC_FULL;
1839 else if (tx_pause)
1840 hw->fc.current_mode = I40E_FC_TX_PAUSE;
1841 else if (rx_pause)
1842 hw->fc.current_mode = I40E_FC_RX_PAUSE;
1843 else
1844 hw->fc.current_mode = I40E_FC_NONE;
1845
Neerav Parikh6bb3f232014-04-01 07:11:56 +00001846 if (resp->config & I40E_AQ_CONFIG_CRC_ENA)
1847 hw_link_info->crc_enable = true;
1848 else
1849 hw_link_info->crc_enable = false;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001850
1851 if (resp->command_flags & cpu_to_le16(I40E_AQ_LSE_ENABLE))
1852 hw_link_info->lse_enable = true;
1853 else
1854 hw_link_info->lse_enable = false;
1855
Catherine Sullivan088c4ee2015-02-26 16:14:12 +00001856 if ((hw->aq.fw_maj_ver < 4 || (hw->aq.fw_maj_ver == 4 &&
1857 hw->aq.fw_min_ver < 40)) && hw_link_info->phy_type == 0xE)
1858 hw_link_info->phy_type = I40E_PHY_TYPE_10GBASE_SFPP_CU;
1859
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001860 /* save link status information */
1861 if (link)
Jesse Brandeburgd7595a22013-09-13 08:23:22 +00001862 *link = *hw_link_info;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001863
1864 /* flag cleared so helper functions don't call AQ again */
1865 hw->phy.get_link_info = false;
1866
1867aq_get_link_info_exit:
1868 return status;
1869}
1870
1871/**
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00001872 * i40e_aq_set_phy_int_mask
1873 * @hw: pointer to the hw struct
1874 * @mask: interrupt mask to be set
1875 * @cmd_details: pointer to command details structure or NULL
1876 *
1877 * Set link interrupt mask.
1878 **/
1879i40e_status i40e_aq_set_phy_int_mask(struct i40e_hw *hw,
1880 u16 mask,
1881 struct i40e_asq_cmd_details *cmd_details)
1882{
1883 struct i40e_aq_desc desc;
1884 struct i40e_aqc_set_phy_int_mask *cmd =
1885 (struct i40e_aqc_set_phy_int_mask *)&desc.params.raw;
1886 i40e_status status;
1887
1888 i40e_fill_default_direct_cmd_desc(&desc,
1889 i40e_aqc_opc_set_phy_int_mask);
1890
1891 cmd->event_mask = cpu_to_le16(mask);
1892
1893 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1894
1895 return status;
1896}
1897
1898/**
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001899 * i40e_aq_set_phy_debug
1900 * @hw: pointer to the hw struct
1901 * @cmd_flags: debug command flags
1902 * @cmd_details: pointer to command details structure or NULL
1903 *
1904 * Reset the external PHY.
1905 **/
Jesse Brandeburg61829022016-03-10 14:59:42 -08001906i40e_status i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
1907 struct i40e_asq_cmd_details *cmd_details)
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001908{
1909 struct i40e_aq_desc desc;
1910 struct i40e_aqc_set_phy_debug *cmd =
1911 (struct i40e_aqc_set_phy_debug *)&desc.params.raw;
Jesse Brandeburg61829022016-03-10 14:59:42 -08001912 i40e_status status;
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001913
1914 i40e_fill_default_direct_cmd_desc(&desc,
1915 i40e_aqc_opc_set_phy_debug);
1916
1917 cmd->command_flags = cmd_flags;
1918
1919 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1920
1921 return status;
1922}
1923
1924/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001925 * i40e_aq_add_vsi
1926 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00001927 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001928 * @cmd_details: pointer to command details structure or NULL
1929 *
1930 * Add a VSI context to the hardware.
1931**/
1932i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
1933 struct i40e_vsi_context *vsi_ctx,
1934 struct i40e_asq_cmd_details *cmd_details)
1935{
1936 struct i40e_aq_desc desc;
1937 struct i40e_aqc_add_get_update_vsi *cmd =
1938 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
1939 struct i40e_aqc_add_get_update_vsi_completion *resp =
1940 (struct i40e_aqc_add_get_update_vsi_completion *)
1941 &desc.params.raw;
1942 i40e_status status;
1943
1944 i40e_fill_default_direct_cmd_desc(&desc,
1945 i40e_aqc_opc_add_vsi);
1946
1947 cmd->uplink_seid = cpu_to_le16(vsi_ctx->uplink_seid);
1948 cmd->connection_type = vsi_ctx->connection_type;
1949 cmd->vf_id = vsi_ctx->vf_num;
1950 cmd->vsi_flags = cpu_to_le16(vsi_ctx->flags);
1951
1952 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001953
1954 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
1955 sizeof(vsi_ctx->info), cmd_details);
1956
1957 if (status)
1958 goto aq_add_vsi_exit;
1959
1960 vsi_ctx->seid = le16_to_cpu(resp->seid);
1961 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
1962 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
1963 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
1964
1965aq_add_vsi_exit:
1966 return status;
1967}
1968
1969/**
1970 * i40e_aq_set_vsi_unicast_promiscuous
1971 * @hw: pointer to the hw struct
1972 * @seid: vsi number
1973 * @set: set unicast promiscuous enable/disable
1974 * @cmd_details: pointer to command details structure or NULL
1975 **/
1976i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
Mitch Williams885552a2013-12-21 05:44:41 +00001977 u16 seid, bool set,
1978 struct i40e_asq_cmd_details *cmd_details)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001979{
1980 struct i40e_aq_desc desc;
1981 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
1982 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
1983 i40e_status status;
1984 u16 flags = 0;
1985
1986 i40e_fill_default_direct_cmd_desc(&desc,
1987 i40e_aqc_opc_set_vsi_promiscuous_modes);
1988
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001989 if (set) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001990 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001991 if (((hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver >= 5)) ||
1992 (hw->aq.api_maj_ver > 1))
1993 flags |= I40E_AQC_SET_VSI_PROMISC_TX;
1994 }
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001995
1996 cmd->promiscuous_flags = cpu_to_le16(flags);
1997
1998 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_UNICAST);
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001999 if (((hw->aq.api_maj_ver >= 1) && (hw->aq.api_min_ver >= 5)) ||
2000 (hw->aq.api_maj_ver > 1))
2001 cmd->valid_flags |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_TX);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002002
2003 cmd->seid = cpu_to_le16(seid);
2004 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2005
2006 return status;
2007}
2008
2009/**
2010 * i40e_aq_set_vsi_multicast_promiscuous
2011 * @hw: pointer to the hw struct
2012 * @seid: vsi number
2013 * @set: set multicast promiscuous enable/disable
2014 * @cmd_details: pointer to command details structure or NULL
2015 **/
2016i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
2017 u16 seid, bool set, struct i40e_asq_cmd_details *cmd_details)
2018{
2019 struct i40e_aq_desc desc;
2020 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2021 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2022 i40e_status status;
2023 u16 flags = 0;
2024
2025 i40e_fill_default_direct_cmd_desc(&desc,
2026 i40e_aqc_opc_set_vsi_promiscuous_modes);
2027
2028 if (set)
2029 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
2030
2031 cmd->promiscuous_flags = cpu_to_le16(flags);
2032
2033 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
2034
2035 cmd->seid = cpu_to_le16(seid);
2036 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2037
2038 return status;
2039}
2040
2041/**
Greg Rose6c41a762016-04-12 08:30:50 -07002042 * i40e_aq_set_vsi_mc_promisc_on_vlan
2043 * @hw: pointer to the hw struct
2044 * @seid: vsi number
2045 * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2046 * @vid: The VLAN tag filter - capture any multicast packet with this VLAN tag
2047 * @cmd_details: pointer to command details structure or NULL
2048 **/
2049enum i40e_status_code i40e_aq_set_vsi_mc_promisc_on_vlan(struct i40e_hw *hw,
2050 u16 seid, bool enable,
2051 u16 vid,
2052 struct i40e_asq_cmd_details *cmd_details)
2053{
2054 struct i40e_aq_desc desc;
2055 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2056 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2057 enum i40e_status_code status;
2058 u16 flags = 0;
2059
2060 i40e_fill_default_direct_cmd_desc(&desc,
2061 i40e_aqc_opc_set_vsi_promiscuous_modes);
2062
2063 if (enable)
2064 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
2065
2066 cmd->promiscuous_flags = cpu_to_le16(flags);
2067 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
2068 cmd->seid = cpu_to_le16(seid);
2069 cmd->vlan_tag = cpu_to_le16(vid | I40E_AQC_SET_VSI_VLAN_VALID);
2070
2071 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2072
2073 return status;
2074}
2075
2076/**
2077 * i40e_aq_set_vsi_uc_promisc_on_vlan
2078 * @hw: pointer to the hw struct
2079 * @seid: vsi number
2080 * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2081 * @vid: The VLAN tag filter - capture any unicast packet with this VLAN tag
2082 * @cmd_details: pointer to command details structure or NULL
2083 **/
2084enum i40e_status_code i40e_aq_set_vsi_uc_promisc_on_vlan(struct i40e_hw *hw,
2085 u16 seid, bool enable,
2086 u16 vid,
2087 struct i40e_asq_cmd_details *cmd_details)
2088{
2089 struct i40e_aq_desc desc;
2090 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2091 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2092 enum i40e_status_code status;
2093 u16 flags = 0;
2094
2095 i40e_fill_default_direct_cmd_desc(&desc,
2096 i40e_aqc_opc_set_vsi_promiscuous_modes);
2097
2098 if (enable)
2099 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
2100
2101 cmd->promiscuous_flags = cpu_to_le16(flags);
2102 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_UNICAST);
2103 cmd->seid = cpu_to_le16(seid);
2104 cmd->vlan_tag = cpu_to_le16(vid | I40E_AQC_SET_VSI_VLAN_VALID);
2105
2106 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2107
2108 return status;
2109}
2110
2111/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002112 * i40e_aq_set_vsi_broadcast
2113 * @hw: pointer to the hw struct
2114 * @seid: vsi number
2115 * @set_filter: true to set filter, false to clear filter
2116 * @cmd_details: pointer to command details structure or NULL
2117 *
2118 * Set or clear the broadcast promiscuous flag (filter) for a given VSI.
2119 **/
2120i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
2121 u16 seid, bool set_filter,
2122 struct i40e_asq_cmd_details *cmd_details)
2123{
2124 struct i40e_aq_desc desc;
2125 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2126 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2127 i40e_status status;
2128
2129 i40e_fill_default_direct_cmd_desc(&desc,
2130 i40e_aqc_opc_set_vsi_promiscuous_modes);
2131
2132 if (set_filter)
2133 cmd->promiscuous_flags
2134 |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2135 else
2136 cmd->promiscuous_flags
2137 &= cpu_to_le16(~I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2138
2139 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2140 cmd->seid = cpu_to_le16(seid);
2141 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2142
2143 return status;
2144}
2145
2146/**
Kiran Patil7bd68752016-01-04 10:33:07 -08002147 * i40e_aq_set_vsi_vlan_promisc - control the VLAN promiscuous setting
2148 * @hw: pointer to the hw struct
2149 * @seid: vsi number
2150 * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2151 * @cmd_details: pointer to command details structure or NULL
2152 **/
2153i40e_status i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
2154 u16 seid, bool enable,
2155 struct i40e_asq_cmd_details *cmd_details)
2156{
2157 struct i40e_aq_desc desc;
2158 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2159 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2160 i40e_status status;
2161 u16 flags = 0;
2162
2163 i40e_fill_default_direct_cmd_desc(&desc,
2164 i40e_aqc_opc_set_vsi_promiscuous_modes);
2165 if (enable)
2166 flags |= I40E_AQC_SET_VSI_PROMISC_VLAN;
2167
2168 cmd->promiscuous_flags = cpu_to_le16(flags);
2169 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_VLAN);
2170 cmd->seid = cpu_to_le16(seid);
2171
2172 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2173
2174 return status;
2175}
2176
2177/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002178 * i40e_get_vsi_params - get VSI configuration info
2179 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00002180 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002181 * @cmd_details: pointer to command details structure or NULL
2182 **/
2183i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
2184 struct i40e_vsi_context *vsi_ctx,
2185 struct i40e_asq_cmd_details *cmd_details)
2186{
2187 struct i40e_aq_desc desc;
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002188 struct i40e_aqc_add_get_update_vsi *cmd =
2189 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002190 struct i40e_aqc_add_get_update_vsi_completion *resp =
2191 (struct i40e_aqc_add_get_update_vsi_completion *)
2192 &desc.params.raw;
2193 i40e_status status;
2194
2195 i40e_fill_default_direct_cmd_desc(&desc,
2196 i40e_aqc_opc_get_vsi_parameters);
2197
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002198 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002199
2200 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002201
2202 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2203 sizeof(vsi_ctx->info), NULL);
2204
2205 if (status)
2206 goto aq_get_vsi_params_exit;
2207
2208 vsi_ctx->seid = le16_to_cpu(resp->seid);
2209 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
2210 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
2211 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
2212
2213aq_get_vsi_params_exit:
2214 return status;
2215}
2216
2217/**
2218 * i40e_aq_update_vsi_params
2219 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00002220 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002221 * @cmd_details: pointer to command details structure or NULL
2222 *
2223 * Update a VSI context.
2224 **/
2225i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
2226 struct i40e_vsi_context *vsi_ctx,
2227 struct i40e_asq_cmd_details *cmd_details)
2228{
2229 struct i40e_aq_desc desc;
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002230 struct i40e_aqc_add_get_update_vsi *cmd =
2231 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
Kevin Scottb6cacca2016-03-10 14:59:41 -08002232 struct i40e_aqc_add_get_update_vsi_completion *resp =
2233 (struct i40e_aqc_add_get_update_vsi_completion *)
2234 &desc.params.raw;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002235 i40e_status status;
2236
2237 i40e_fill_default_direct_cmd_desc(&desc,
2238 i40e_aqc_opc_update_vsi_parameters);
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002239 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002240
2241 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002242
2243 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2244 sizeof(vsi_ctx->info), cmd_details);
2245
Kevin Scottb6cacca2016-03-10 14:59:41 -08002246 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
2247 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
2248
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002249 return status;
2250}
2251
2252/**
2253 * i40e_aq_get_switch_config
2254 * @hw: pointer to the hardware structure
2255 * @buf: pointer to the result buffer
2256 * @buf_size: length of input buffer
2257 * @start_seid: seid to start for the report, 0 == beginning
2258 * @cmd_details: pointer to command details structure or NULL
2259 *
2260 * Fill the buf with switch configuration returned from AdminQ command
2261 **/
2262i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
2263 struct i40e_aqc_get_switch_config_resp *buf,
2264 u16 buf_size, u16 *start_seid,
2265 struct i40e_asq_cmd_details *cmd_details)
2266{
2267 struct i40e_aq_desc desc;
2268 struct i40e_aqc_switch_seid *scfg =
2269 (struct i40e_aqc_switch_seid *)&desc.params.raw;
2270 i40e_status status;
2271
2272 i40e_fill_default_direct_cmd_desc(&desc,
2273 i40e_aqc_opc_get_switch_config);
2274 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2275 if (buf_size > I40E_AQ_LARGE_BUF)
2276 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2277 scfg->seid = cpu_to_le16(*start_seid);
2278
2279 status = i40e_asq_send_command(hw, &desc, buf, buf_size, cmd_details);
2280 *start_seid = le16_to_cpu(scfg->seid);
2281
2282 return status;
2283}
2284
2285/**
Shannon Nelsonf3d58492016-05-03 15:13:11 -07002286 * i40e_aq_set_switch_config
2287 * @hw: pointer to the hardware structure
2288 * @flags: bit flag values to set
2289 * @valid_flags: which bit flags to set
2290 * @cmd_details: pointer to command details structure or NULL
2291 *
2292 * Set switch configuration bits
2293 **/
2294enum i40e_status_code i40e_aq_set_switch_config(struct i40e_hw *hw,
2295 u16 flags,
2296 u16 valid_flags,
2297 struct i40e_asq_cmd_details *cmd_details)
2298{
2299 struct i40e_aq_desc desc;
2300 struct i40e_aqc_set_switch_config *scfg =
2301 (struct i40e_aqc_set_switch_config *)&desc.params.raw;
2302 enum i40e_status_code status;
2303
2304 i40e_fill_default_direct_cmd_desc(&desc,
2305 i40e_aqc_opc_set_switch_config);
2306 scfg->flags = cpu_to_le16(flags);
2307 scfg->valid_flags = cpu_to_le16(valid_flags);
2308
2309 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2310
2311 return status;
2312}
2313
2314/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002315 * i40e_aq_get_firmware_version
2316 * @hw: pointer to the hw struct
2317 * @fw_major_version: firmware major version
2318 * @fw_minor_version: firmware minor version
Shannon Nelson7edf8102015-02-24 06:58:41 +00002319 * @fw_build: firmware build number
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002320 * @api_major_version: major queue version
2321 * @api_minor_version: minor queue version
2322 * @cmd_details: pointer to command details structure or NULL
2323 *
2324 * Get the firmware version from the admin queue commands
2325 **/
2326i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
2327 u16 *fw_major_version, u16 *fw_minor_version,
Shannon Nelson7edf8102015-02-24 06:58:41 +00002328 u32 *fw_build,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002329 u16 *api_major_version, u16 *api_minor_version,
2330 struct i40e_asq_cmd_details *cmd_details)
2331{
2332 struct i40e_aq_desc desc;
2333 struct i40e_aqc_get_version *resp =
2334 (struct i40e_aqc_get_version *)&desc.params.raw;
2335 i40e_status status;
2336
2337 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_version);
2338
2339 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2340
2341 if (!status) {
Shannon Nelson7edf8102015-02-24 06:58:41 +00002342 if (fw_major_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002343 *fw_major_version = le16_to_cpu(resp->fw_major);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002344 if (fw_minor_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002345 *fw_minor_version = le16_to_cpu(resp->fw_minor);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002346 if (fw_build)
2347 *fw_build = le32_to_cpu(resp->fw_build);
2348 if (api_major_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002349 *api_major_version = le16_to_cpu(resp->api_major);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002350 if (api_minor_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002351 *api_minor_version = le16_to_cpu(resp->api_minor);
2352 }
2353
2354 return status;
2355}
2356
2357/**
2358 * i40e_aq_send_driver_version
2359 * @hw: pointer to the hw struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002360 * @dv: driver's major, minor version
2361 * @cmd_details: pointer to command details structure or NULL
2362 *
2363 * Send the driver version to the firmware
2364 **/
2365i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
2366 struct i40e_driver_version *dv,
2367 struct i40e_asq_cmd_details *cmd_details)
2368{
2369 struct i40e_aq_desc desc;
2370 struct i40e_aqc_driver_version *cmd =
2371 (struct i40e_aqc_driver_version *)&desc.params.raw;
2372 i40e_status status;
Kevin Scott9d2f98e2014-04-01 07:11:52 +00002373 u16 len;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002374
2375 if (dv == NULL)
2376 return I40E_ERR_PARAM;
2377
2378 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_driver_version);
2379
Kevin Scott3b38cd12015-02-06 08:52:18 +00002380 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002381 cmd->driver_major_ver = dv->major_version;
2382 cmd->driver_minor_ver = dv->minor_version;
2383 cmd->driver_build_ver = dv->build_version;
2384 cmd->driver_subbuild_ver = dv->subbuild_version;
Shannon Nelsond2466012014-04-01 07:11:45 +00002385
2386 len = 0;
2387 while (len < sizeof(dv->driver_string) &&
2388 (dv->driver_string[len] < 0x80) &&
2389 dv->driver_string[len])
2390 len++;
2391 status = i40e_asq_send_command(hw, &desc, dv->driver_string,
2392 len, cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002393
2394 return status;
2395}
2396
2397/**
2398 * i40e_get_link_status - get status of the HW network link
2399 * @hw: pointer to the hw struct
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002400 * @link_up: pointer to bool (true/false = linkup/linkdown)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002401 *
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002402 * Variable link_up true if link is up, false if link is down.
2403 * The variable link_up is invalid if returned value of status != 0
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002404 *
2405 * Side effect: LinkStatusEvent reporting becomes enabled
2406 **/
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002407i40e_status i40e_get_link_status(struct i40e_hw *hw, bool *link_up)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002408{
2409 i40e_status status = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002410
2411 if (hw->phy.get_link_info) {
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002412 status = i40e_update_link_info(hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002413
2414 if (status)
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002415 i40e_debug(hw, I40E_DEBUG_LINK, "get link failed: status %d\n",
2416 status);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002417 }
2418
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002419 *link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002420
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002421 return status;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002422}
2423
2424/**
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002425 * i40e_updatelink_status - update status of the HW network link
2426 * @hw: pointer to the hw struct
2427 **/
2428i40e_status i40e_update_link_info(struct i40e_hw *hw)
2429{
2430 struct i40e_aq_get_phy_abilities_resp abilities;
2431 i40e_status status = 0;
2432
2433 status = i40e_aq_get_link_info(hw, true, NULL, NULL);
2434 if (status)
2435 return status;
2436
Carolyn Wyborny8589af72015-09-28 14:16:56 -04002437 if (hw->phy.link_info.link_info & I40E_AQ_MEDIA_AVAILABLE) {
2438 status = i40e_aq_get_phy_capabilities(hw, false, false,
2439 &abilities, NULL);
2440 if (status)
2441 return status;
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002442
Carolyn Wyborny8589af72015-09-28 14:16:56 -04002443 memcpy(hw->phy.link_info.module_type, &abilities.module_type,
2444 sizeof(hw->phy.link_info.module_type));
2445 }
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002446
2447 return status;
2448}
2449
2450/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002451 * i40e_aq_add_veb - Insert a VEB between the VSI and the MAC
2452 * @hw: pointer to the hw struct
2453 * @uplink_seid: the MAC or other gizmo SEID
2454 * @downlink_seid: the VSI SEID
2455 * @enabled_tc: bitmap of TCs to be enabled
2456 * @default_port: true for default port VSI, false for control port
2457 * @veb_seid: pointer to where to put the resulting VEB SEID
Shannon Nelson8a187f42016-01-13 16:51:41 -08002458 * @enable_stats: true to turn on VEB stats
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002459 * @cmd_details: pointer to command details structure or NULL
2460 *
2461 * This asks the FW to add a VEB between the uplink and downlink
2462 * elements. If the uplink SEID is 0, this will be a floating VEB.
2463 **/
2464i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
2465 u16 downlink_seid, u8 enabled_tc,
Shannon Nelson8a187f42016-01-13 16:51:41 -08002466 bool default_port, u16 *veb_seid,
2467 bool enable_stats,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002468 struct i40e_asq_cmd_details *cmd_details)
2469{
2470 struct i40e_aq_desc desc;
2471 struct i40e_aqc_add_veb *cmd =
2472 (struct i40e_aqc_add_veb *)&desc.params.raw;
2473 struct i40e_aqc_add_veb_completion *resp =
2474 (struct i40e_aqc_add_veb_completion *)&desc.params.raw;
2475 i40e_status status;
2476 u16 veb_flags = 0;
2477
2478 /* SEIDs need to either both be set or both be 0 for floating VEB */
2479 if (!!uplink_seid != !!downlink_seid)
2480 return I40E_ERR_PARAM;
2481
2482 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_veb);
2483
2484 cmd->uplink_seid = cpu_to_le16(uplink_seid);
2485 cmd->downlink_seid = cpu_to_le16(downlink_seid);
2486 cmd->enable_tcs = enabled_tc;
2487 if (!uplink_seid)
2488 veb_flags |= I40E_AQC_ADD_VEB_FLOATING;
2489 if (default_port)
2490 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT;
2491 else
2492 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DATA;
Kevin Scotte1c51b952013-11-20 10:02:51 +00002493
Shannon Nelson8a187f42016-01-13 16:51:41 -08002494 /* reverse logic here: set the bitflag to disable the stats */
2495 if (!enable_stats)
2496 veb_flags |= I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS;
Kevin Scotte1c51b952013-11-20 10:02:51 +00002497
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002498 cmd->veb_flags = cpu_to_le16(veb_flags);
2499
2500 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2501
2502 if (!status && veb_seid)
2503 *veb_seid = le16_to_cpu(resp->veb_seid);
2504
2505 return status;
2506}
2507
2508/**
2509 * i40e_aq_get_veb_parameters - Retrieve VEB parameters
2510 * @hw: pointer to the hw struct
2511 * @veb_seid: the SEID of the VEB to query
2512 * @switch_id: the uplink switch id
Jeff Kirsher98d44382013-12-21 05:44:42 +00002513 * @floating: set to true if the VEB is floating
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002514 * @statistic_index: index of the stats counter block for this VEB
2515 * @vebs_used: number of VEB's used by function
Jeff Kirsher98d44382013-12-21 05:44:42 +00002516 * @vebs_free: total VEB's not reserved by any function
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002517 * @cmd_details: pointer to command details structure or NULL
2518 *
2519 * This retrieves the parameters for a particular VEB, specified by
2520 * uplink_seid, and returns them to the caller.
2521 **/
2522i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
2523 u16 veb_seid, u16 *switch_id,
2524 bool *floating, u16 *statistic_index,
2525 u16 *vebs_used, u16 *vebs_free,
2526 struct i40e_asq_cmd_details *cmd_details)
2527{
2528 struct i40e_aq_desc desc;
2529 struct i40e_aqc_get_veb_parameters_completion *cmd_resp =
2530 (struct i40e_aqc_get_veb_parameters_completion *)
2531 &desc.params.raw;
2532 i40e_status status;
2533
2534 if (veb_seid == 0)
2535 return I40E_ERR_PARAM;
2536
2537 i40e_fill_default_direct_cmd_desc(&desc,
2538 i40e_aqc_opc_get_veb_parameters);
2539 cmd_resp->seid = cpu_to_le16(veb_seid);
2540
2541 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2542 if (status)
2543 goto get_veb_exit;
2544
2545 if (switch_id)
2546 *switch_id = le16_to_cpu(cmd_resp->switch_id);
2547 if (statistic_index)
2548 *statistic_index = le16_to_cpu(cmd_resp->statistic_index);
2549 if (vebs_used)
2550 *vebs_used = le16_to_cpu(cmd_resp->vebs_used);
2551 if (vebs_free)
2552 *vebs_free = le16_to_cpu(cmd_resp->vebs_free);
2553 if (floating) {
2554 u16 flags = le16_to_cpu(cmd_resp->veb_flags);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002555
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002556 if (flags & I40E_AQC_ADD_VEB_FLOATING)
2557 *floating = true;
2558 else
2559 *floating = false;
2560 }
2561
2562get_veb_exit:
2563 return status;
2564}
2565
2566/**
2567 * i40e_aq_add_macvlan
2568 * @hw: pointer to the hw struct
2569 * @seid: VSI for the mac address
2570 * @mv_list: list of macvlans to be added
2571 * @count: length of the list
2572 * @cmd_details: pointer to command details structure or NULL
2573 *
2574 * Add MAC/VLAN addresses to the HW filtering
2575 **/
2576i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 seid,
2577 struct i40e_aqc_add_macvlan_element_data *mv_list,
2578 u16 count, struct i40e_asq_cmd_details *cmd_details)
2579{
2580 struct i40e_aq_desc desc;
2581 struct i40e_aqc_macvlan *cmd =
2582 (struct i40e_aqc_macvlan *)&desc.params.raw;
2583 i40e_status status;
2584 u16 buf_size;
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002585 int i;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002586
2587 if (count == 0 || !mv_list || !hw)
2588 return I40E_ERR_PARAM;
2589
Shannon Nelson1efc80e2015-02-27 09:18:30 +00002590 buf_size = count * sizeof(*mv_list);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002591
2592 /* prep the rest of the request */
2593 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_macvlan);
2594 cmd->num_addresses = cpu_to_le16(count);
2595 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
2596 cmd->seid[1] = 0;
2597 cmd->seid[2] = 0;
2598
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002599 for (i = 0; i < count; i++)
2600 if (is_multicast_ether_addr(mv_list[i].mac_addr))
2601 mv_list[i].flags |=
2602 cpu_to_le16(I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC);
2603
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002604 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2605 if (buf_size > I40E_AQ_LARGE_BUF)
2606 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2607
2608 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002609 cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002610
2611 return status;
2612}
2613
2614/**
2615 * i40e_aq_remove_macvlan
2616 * @hw: pointer to the hw struct
2617 * @seid: VSI for the mac address
2618 * @mv_list: list of macvlans to be removed
2619 * @count: length of the list
2620 * @cmd_details: pointer to command details structure or NULL
2621 *
2622 * Remove MAC/VLAN addresses from the HW filtering
2623 **/
2624i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 seid,
2625 struct i40e_aqc_remove_macvlan_element_data *mv_list,
2626 u16 count, struct i40e_asq_cmd_details *cmd_details)
2627{
2628 struct i40e_aq_desc desc;
2629 struct i40e_aqc_macvlan *cmd =
2630 (struct i40e_aqc_macvlan *)&desc.params.raw;
2631 i40e_status status;
2632 u16 buf_size;
2633
2634 if (count == 0 || !mv_list || !hw)
2635 return I40E_ERR_PARAM;
2636
Shannon Nelson1efc80e2015-02-27 09:18:30 +00002637 buf_size = count * sizeof(*mv_list);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002638
2639 /* prep the rest of the request */
2640 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_macvlan);
2641 cmd->num_addresses = cpu_to_le16(count);
2642 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
2643 cmd->seid[1] = 0;
2644 cmd->seid[2] = 0;
2645
2646 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2647 if (buf_size > I40E_AQ_LARGE_BUF)
2648 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2649
2650 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
2651 cmd_details);
2652
2653 return status;
2654}
2655
2656/**
Kiran Patil7bd68752016-01-04 10:33:07 -08002657 * i40e_mirrorrule_op - Internal helper function to add/delete mirror rule
2658 * @hw: pointer to the hw struct
2659 * @opcode: AQ opcode for add or delete mirror rule
2660 * @sw_seid: Switch SEID (to which rule refers)
2661 * @rule_type: Rule Type (ingress/egress/VLAN)
2662 * @id: Destination VSI SEID or Rule ID
2663 * @count: length of the list
2664 * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
2665 * @cmd_details: pointer to command details structure or NULL
2666 * @rule_id: Rule ID returned from FW
2667 * @rule_used: Number of rules used in internal switch
2668 * @rule_free: Number of rules free in internal switch
2669 *
2670 * Add/Delete a mirror rule to a specific switch. Mirror rules are supported for
2671 * VEBs/VEPA elements only
2672 **/
2673static i40e_status i40e_mirrorrule_op(struct i40e_hw *hw,
2674 u16 opcode, u16 sw_seid, u16 rule_type, u16 id,
2675 u16 count, __le16 *mr_list,
2676 struct i40e_asq_cmd_details *cmd_details,
2677 u16 *rule_id, u16 *rules_used, u16 *rules_free)
2678{
2679 struct i40e_aq_desc desc;
2680 struct i40e_aqc_add_delete_mirror_rule *cmd =
2681 (struct i40e_aqc_add_delete_mirror_rule *)&desc.params.raw;
2682 struct i40e_aqc_add_delete_mirror_rule_completion *resp =
2683 (struct i40e_aqc_add_delete_mirror_rule_completion *)&desc.params.raw;
2684 i40e_status status;
2685 u16 buf_size;
2686
2687 buf_size = count * sizeof(*mr_list);
2688
2689 /* prep the rest of the request */
2690 i40e_fill_default_direct_cmd_desc(&desc, opcode);
2691 cmd->seid = cpu_to_le16(sw_seid);
2692 cmd->rule_type = cpu_to_le16(rule_type &
2693 I40E_AQC_MIRROR_RULE_TYPE_MASK);
2694 cmd->num_entries = cpu_to_le16(count);
2695 /* Dest VSI for add, rule_id for delete */
2696 cmd->destination = cpu_to_le16(id);
2697 if (mr_list) {
2698 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
2699 I40E_AQ_FLAG_RD));
2700 if (buf_size > I40E_AQ_LARGE_BUF)
2701 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2702 }
2703
2704 status = i40e_asq_send_command(hw, &desc, mr_list, buf_size,
2705 cmd_details);
2706 if (!status ||
2707 hw->aq.asq_last_status == I40E_AQ_RC_ENOSPC) {
2708 if (rule_id)
2709 *rule_id = le16_to_cpu(resp->rule_id);
2710 if (rules_used)
2711 *rules_used = le16_to_cpu(resp->mirror_rules_used);
2712 if (rules_free)
2713 *rules_free = le16_to_cpu(resp->mirror_rules_free);
2714 }
2715 return status;
2716}
2717
2718/**
2719 * i40e_aq_add_mirrorrule - add a mirror rule
2720 * @hw: pointer to the hw struct
2721 * @sw_seid: Switch SEID (to which rule refers)
2722 * @rule_type: Rule Type (ingress/egress/VLAN)
2723 * @dest_vsi: SEID of VSI to which packets will be mirrored
2724 * @count: length of the list
2725 * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
2726 * @cmd_details: pointer to command details structure or NULL
2727 * @rule_id: Rule ID returned from FW
2728 * @rule_used: Number of rules used in internal switch
2729 * @rule_free: Number of rules free in internal switch
2730 *
2731 * Add mirror rule. Mirror rules are supported for VEBs or VEPA elements only
2732 **/
2733i40e_status i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
2734 u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
2735 struct i40e_asq_cmd_details *cmd_details,
2736 u16 *rule_id, u16 *rules_used, u16 *rules_free)
2737{
2738 if (!(rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS ||
2739 rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS)) {
2740 if (count == 0 || !mr_list)
2741 return I40E_ERR_PARAM;
2742 }
2743
2744 return i40e_mirrorrule_op(hw, i40e_aqc_opc_add_mirror_rule, sw_seid,
2745 rule_type, dest_vsi, count, mr_list,
2746 cmd_details, rule_id, rules_used, rules_free);
2747}
2748
2749/**
2750 * i40e_aq_delete_mirrorrule - delete a mirror rule
2751 * @hw: pointer to the hw struct
2752 * @sw_seid: Switch SEID (to which rule refers)
2753 * @rule_type: Rule Type (ingress/egress/VLAN)
2754 * @count: length of the list
2755 * @rule_id: Rule ID that is returned in the receive desc as part of
2756 * add_mirrorrule.
2757 * @mr_list: list of mirrored VLAN IDs to be removed
2758 * @cmd_details: pointer to command details structure or NULL
2759 * @rule_used: Number of rules used in internal switch
2760 * @rule_free: Number of rules free in internal switch
2761 *
2762 * Delete a mirror rule. Mirror rules are supported for VEBs/VEPA elements only
2763 **/
2764i40e_status i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
2765 u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
2766 struct i40e_asq_cmd_details *cmd_details,
2767 u16 *rules_used, u16 *rules_free)
2768{
2769 /* Rule ID has to be valid except rule_type: INGRESS VLAN mirroring */
Greg Rosedb077272016-04-12 08:30:48 -07002770 if (rule_type == I40E_AQC_MIRROR_RULE_TYPE_VLAN) {
Kiran Patil7bd68752016-01-04 10:33:07 -08002771 /* count and mr_list shall be valid for rule_type INGRESS VLAN
2772 * mirroring. For other rule_type, count and rule_type should
2773 * not matter.
2774 */
2775 if (count == 0 || !mr_list)
2776 return I40E_ERR_PARAM;
2777 }
2778
2779 return i40e_mirrorrule_op(hw, i40e_aqc_opc_delete_mirror_rule, sw_seid,
2780 rule_type, rule_id, count, mr_list,
2781 cmd_details, NULL, rules_used, rules_free);
2782}
2783
2784/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002785 * i40e_aq_send_msg_to_vf
2786 * @hw: pointer to the hardware structure
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00002787 * @vfid: VF id to send msg
Jeff Kirsher98d44382013-12-21 05:44:42 +00002788 * @v_opcode: opcodes for VF-PF communication
2789 * @v_retval: return error code
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002790 * @msg: pointer to the msg buffer
2791 * @msglen: msg length
2792 * @cmd_details: pointer to command details
2793 *
2794 * send msg to vf
2795 **/
2796i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
2797 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
2798 struct i40e_asq_cmd_details *cmd_details)
2799{
2800 struct i40e_aq_desc desc;
2801 struct i40e_aqc_pf_vf_message *cmd =
2802 (struct i40e_aqc_pf_vf_message *)&desc.params.raw;
2803 i40e_status status;
2804
2805 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_send_msg_to_vf);
2806 cmd->id = cpu_to_le32(vfid);
2807 desc.cookie_high = cpu_to_le32(v_opcode);
2808 desc.cookie_low = cpu_to_le32(v_retval);
2809 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_SI);
2810 if (msglen) {
2811 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
2812 I40E_AQ_FLAG_RD));
2813 if (msglen > I40E_AQ_LARGE_BUF)
2814 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2815 desc.datalen = cpu_to_le16(msglen);
2816 }
2817 status = i40e_asq_send_command(hw, &desc, msg, msglen, cmd_details);
2818
2819 return status;
2820}
2821
2822/**
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002823 * i40e_aq_debug_read_register
2824 * @hw: pointer to the hw struct
2825 * @reg_addr: register address
2826 * @reg_val: register value
2827 * @cmd_details: pointer to command details structure or NULL
2828 *
2829 * Read the register using the admin queue commands
2830 **/
2831i40e_status i40e_aq_debug_read_register(struct i40e_hw *hw,
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002832 u32 reg_addr, u64 *reg_val,
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002833 struct i40e_asq_cmd_details *cmd_details)
2834{
2835 struct i40e_aq_desc desc;
2836 struct i40e_aqc_debug_reg_read_write *cmd_resp =
2837 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
2838 i40e_status status;
2839
2840 if (reg_val == NULL)
2841 return I40E_ERR_PARAM;
2842
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002843 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_read_reg);
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002844
2845 cmd_resp->address = cpu_to_le32(reg_addr);
2846
2847 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2848
2849 if (!status) {
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002850 *reg_val = ((u64)le32_to_cpu(cmd_resp->value_high) << 32) |
2851 (u64)le32_to_cpu(cmd_resp->value_low);
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002852 }
2853
2854 return status;
2855}
2856
2857/**
Shannon Nelson53db45c2014-08-01 13:27:05 -07002858 * i40e_aq_debug_write_register
2859 * @hw: pointer to the hw struct
2860 * @reg_addr: register address
2861 * @reg_val: register value
2862 * @cmd_details: pointer to command details structure or NULL
2863 *
2864 * Write to a register using the admin queue commands
2865 **/
2866i40e_status i40e_aq_debug_write_register(struct i40e_hw *hw,
2867 u32 reg_addr, u64 reg_val,
2868 struct i40e_asq_cmd_details *cmd_details)
2869{
2870 struct i40e_aq_desc desc;
2871 struct i40e_aqc_debug_reg_read_write *cmd =
2872 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
2873 i40e_status status;
2874
2875 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_write_reg);
2876
2877 cmd->address = cpu_to_le32(reg_addr);
2878 cmd->value_high = cpu_to_le32((u32)(reg_val >> 32));
2879 cmd->value_low = cpu_to_le32((u32)(reg_val & 0xFFFFFFFF));
2880
2881 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2882
2883 return status;
2884}
2885
2886/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002887 * i40e_aq_request_resource
2888 * @hw: pointer to the hw struct
2889 * @resource: resource id
2890 * @access: access type
2891 * @sdp_number: resource number
2892 * @timeout: the maximum time in ms that the driver may hold the resource
2893 * @cmd_details: pointer to command details structure or NULL
2894 *
2895 * requests common resource using the admin queue commands
2896 **/
2897i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
2898 enum i40e_aq_resources_ids resource,
2899 enum i40e_aq_resource_access_type access,
2900 u8 sdp_number, u64 *timeout,
2901 struct i40e_asq_cmd_details *cmd_details)
2902{
2903 struct i40e_aq_desc desc;
2904 struct i40e_aqc_request_resource *cmd_resp =
2905 (struct i40e_aqc_request_resource *)&desc.params.raw;
2906 i40e_status status;
2907
2908 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_request_resource);
2909
2910 cmd_resp->resource_id = cpu_to_le16(resource);
2911 cmd_resp->access_type = cpu_to_le16(access);
2912 cmd_resp->resource_number = cpu_to_le32(sdp_number);
2913
2914 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2915 /* The completion specifies the maximum time in ms that the driver
2916 * may hold the resource in the Timeout field.
2917 * If the resource is held by someone else, the command completes with
2918 * busy return value and the timeout field indicates the maximum time
2919 * the current owner of the resource has to free it.
2920 */
2921 if (!status || hw->aq.asq_last_status == I40E_AQ_RC_EBUSY)
2922 *timeout = le32_to_cpu(cmd_resp->timeout);
2923
2924 return status;
2925}
2926
2927/**
2928 * i40e_aq_release_resource
2929 * @hw: pointer to the hw struct
2930 * @resource: resource id
2931 * @sdp_number: resource number
2932 * @cmd_details: pointer to command details structure or NULL
2933 *
2934 * release common resource using the admin queue commands
2935 **/
2936i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
2937 enum i40e_aq_resources_ids resource,
2938 u8 sdp_number,
2939 struct i40e_asq_cmd_details *cmd_details)
2940{
2941 struct i40e_aq_desc desc;
2942 struct i40e_aqc_request_resource *cmd =
2943 (struct i40e_aqc_request_resource *)&desc.params.raw;
2944 i40e_status status;
2945
2946 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_release_resource);
2947
2948 cmd->resource_id = cpu_to_le16(resource);
2949 cmd->resource_number = cpu_to_le32(sdp_number);
2950
2951 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2952
2953 return status;
2954}
2955
2956/**
2957 * i40e_aq_read_nvm
2958 * @hw: pointer to the hw struct
2959 * @module_pointer: module pointer location in words from the NVM beginning
2960 * @offset: byte offset from the module beginning
2961 * @length: length of the section to be read (in bytes from the offset)
2962 * @data: command buffer (size [bytes] = length)
2963 * @last_command: tells if this is the last command in a series
2964 * @cmd_details: pointer to command details structure or NULL
2965 *
2966 * Read the NVM using the admin queue commands
2967 **/
2968i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
2969 u32 offset, u16 length, void *data,
2970 bool last_command,
2971 struct i40e_asq_cmd_details *cmd_details)
2972{
2973 struct i40e_aq_desc desc;
2974 struct i40e_aqc_nvm_update *cmd =
2975 (struct i40e_aqc_nvm_update *)&desc.params.raw;
2976 i40e_status status;
2977
2978 /* In offset the highest byte must be zeroed. */
2979 if (offset & 0xFF000000) {
2980 status = I40E_ERR_PARAM;
2981 goto i40e_aq_read_nvm_exit;
2982 }
2983
2984 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_read);
2985
2986 /* If this is the last command in a series, set the proper flag. */
2987 if (last_command)
2988 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
2989 cmd->module_pointer = module_pointer;
2990 cmd->offset = cpu_to_le32(offset);
2991 cmd->length = cpu_to_le16(length);
2992
2993 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2994 if (length > I40E_AQ_LARGE_BUF)
2995 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2996
2997 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
2998
2999i40e_aq_read_nvm_exit:
3000 return status;
3001}
3002
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00003003/**
3004 * i40e_aq_erase_nvm
3005 * @hw: pointer to the hw struct
3006 * @module_pointer: module pointer location in words from the NVM beginning
3007 * @offset: offset in the module (expressed in 4 KB from module's beginning)
3008 * @length: length of the section to be erased (expressed in 4 KB)
3009 * @last_command: tells if this is the last command in a series
3010 * @cmd_details: pointer to command details structure or NULL
3011 *
3012 * Erase the NVM sector using the admin queue commands
3013 **/
3014i40e_status i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
3015 u32 offset, u16 length, bool last_command,
3016 struct i40e_asq_cmd_details *cmd_details)
3017{
3018 struct i40e_aq_desc desc;
3019 struct i40e_aqc_nvm_update *cmd =
3020 (struct i40e_aqc_nvm_update *)&desc.params.raw;
3021 i40e_status status;
3022
3023 /* In offset the highest byte must be zeroed. */
3024 if (offset & 0xFF000000) {
3025 status = I40E_ERR_PARAM;
3026 goto i40e_aq_erase_nvm_exit;
3027 }
3028
3029 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_erase);
3030
3031 /* If this is the last command in a series, set the proper flag. */
3032 if (last_command)
3033 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
3034 cmd->module_pointer = module_pointer;
3035 cmd->offset = cpu_to_le32(offset);
3036 cmd->length = cpu_to_le16(length);
3037
3038 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3039
3040i40e_aq_erase_nvm_exit:
3041 return status;
3042}
3043
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003044/**
3045 * i40e_parse_discover_capabilities
3046 * @hw: pointer to the hw struct
3047 * @buff: pointer to a buffer containing device/function capability records
3048 * @cap_count: number of capability records in the list
3049 * @list_type_opc: type of capabilities list to parse
3050 *
3051 * Parse the device/function capabilities list.
3052 **/
3053static void i40e_parse_discover_capabilities(struct i40e_hw *hw, void *buff,
3054 u32 cap_count,
3055 enum i40e_admin_queue_opc list_type_opc)
3056{
3057 struct i40e_aqc_list_capabilities_element_resp *cap;
Shannon Nelson9fee9db2014-12-11 07:06:30 +00003058 u32 valid_functions, num_functions;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003059 u32 number, logical_id, phys_id;
3060 struct i40e_hw_capabilities *p;
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003061 u8 major_rev;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003062 u32 i = 0;
3063 u16 id;
3064
3065 cap = (struct i40e_aqc_list_capabilities_element_resp *) buff;
3066
3067 if (list_type_opc == i40e_aqc_opc_list_dev_capabilities)
Joe Perchesb58f2f72014-03-25 04:30:32 +00003068 p = &hw->dev_caps;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003069 else if (list_type_opc == i40e_aqc_opc_list_func_capabilities)
Joe Perchesb58f2f72014-03-25 04:30:32 +00003070 p = &hw->func_caps;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003071 else
3072 return;
3073
3074 for (i = 0; i < cap_count; i++, cap++) {
3075 id = le16_to_cpu(cap->id);
3076 number = le32_to_cpu(cap->number);
3077 logical_id = le32_to_cpu(cap->logical_id);
3078 phys_id = le32_to_cpu(cap->phys_id);
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003079 major_rev = cap->major_rev;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003080
3081 switch (id) {
Shannon Nelson406e7342015-12-10 11:38:49 -08003082 case I40E_AQ_CAP_ID_SWITCH_MODE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003083 p->switch_mode = number;
3084 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003085 case I40E_AQ_CAP_ID_MNG_MODE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003086 p->management_mode = number;
3087 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003088 case I40E_AQ_CAP_ID_NPAR_ACTIVE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003089 p->npar_enable = number;
3090 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003091 case I40E_AQ_CAP_ID_OS2BMC_CAP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003092 p->os2bmc = number;
3093 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003094 case I40E_AQ_CAP_ID_FUNCTIONS_VALID:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003095 p->valid_functions = number;
3096 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003097 case I40E_AQ_CAP_ID_SRIOV:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003098 if (number == 1)
3099 p->sr_iov_1_1 = true;
3100 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003101 case I40E_AQ_CAP_ID_VF:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003102 p->num_vfs = number;
3103 p->vf_base_id = logical_id;
3104 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003105 case I40E_AQ_CAP_ID_VMDQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003106 if (number == 1)
3107 p->vmdq = true;
3108 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003109 case I40E_AQ_CAP_ID_8021QBG:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003110 if (number == 1)
3111 p->evb_802_1_qbg = true;
3112 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003113 case I40E_AQ_CAP_ID_8021QBR:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003114 if (number == 1)
3115 p->evb_802_1_qbh = true;
3116 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003117 case I40E_AQ_CAP_ID_VSI:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003118 p->num_vsis = number;
3119 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003120 case I40E_AQ_CAP_ID_DCB:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003121 if (number == 1) {
3122 p->dcb = true;
3123 p->enabled_tcmap = logical_id;
3124 p->maxtc = phys_id;
3125 }
3126 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003127 case I40E_AQ_CAP_ID_FCOE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003128 if (number == 1)
3129 p->fcoe = true;
3130 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003131 case I40E_AQ_CAP_ID_ISCSI:
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00003132 if (number == 1)
3133 p->iscsi = true;
3134 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003135 case I40E_AQ_CAP_ID_RSS:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003136 p->rss = true;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00003137 p->rss_table_size = number;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003138 p->rss_table_entry_width = logical_id;
3139 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003140 case I40E_AQ_CAP_ID_RXQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003141 p->num_rx_qp = number;
3142 p->base_queue = phys_id;
3143 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003144 case I40E_AQ_CAP_ID_TXQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003145 p->num_tx_qp = number;
3146 p->base_queue = phys_id;
3147 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003148 case I40E_AQ_CAP_ID_MSIX:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003149 p->num_msix_vectors = number;
Deepthi Kavalur453e16e2016-04-01 03:56:01 -07003150 i40e_debug(hw, I40E_DEBUG_INIT,
3151 "HW Capability: MSIX vector count = %d\n",
3152 p->num_msix_vectors);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003153 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003154 case I40E_AQ_CAP_ID_VF_MSIX:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003155 p->num_msix_vectors_vf = number;
3156 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003157 case I40E_AQ_CAP_ID_FLEX10:
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003158 if (major_rev == 1) {
3159 if (number == 1) {
3160 p->flex10_enable = true;
3161 p->flex10_capable = true;
3162 }
3163 } else {
3164 /* Capability revision >= 2 */
3165 if (number & 1)
3166 p->flex10_enable = true;
3167 if (number & 2)
3168 p->flex10_capable = true;
3169 }
3170 p->flex10_mode = logical_id;
3171 p->flex10_status = phys_id;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003172 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003173 case I40E_AQ_CAP_ID_CEM:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003174 if (number == 1)
3175 p->mgmt_cem = true;
3176 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003177 case I40E_AQ_CAP_ID_IWARP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003178 if (number == 1)
3179 p->iwarp = true;
3180 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003181 case I40E_AQ_CAP_ID_LED:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003182 if (phys_id < I40E_HW_CAP_MAX_GPIO)
3183 p->led[phys_id] = true;
3184 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003185 case I40E_AQ_CAP_ID_SDP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003186 if (phys_id < I40E_HW_CAP_MAX_GPIO)
3187 p->sdp[phys_id] = true;
3188 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003189 case I40E_AQ_CAP_ID_MDIO:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003190 if (number == 1) {
3191 p->mdio_port_num = phys_id;
3192 p->mdio_port_mode = logical_id;
3193 }
3194 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003195 case I40E_AQ_CAP_ID_1588:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003196 if (number == 1)
3197 p->ieee_1588 = true;
3198 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003199 case I40E_AQ_CAP_ID_FLOW_DIRECTOR:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003200 p->fd = true;
3201 p->fd_filters_guaranteed = number;
3202 p->fd_filters_best_effort = logical_id;
3203 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003204 case I40E_AQ_CAP_ID_WSR_PROT:
Kevin Scott73b23402015-04-07 19:45:38 -04003205 p->wr_csr_prot = (u64)number;
3206 p->wr_csr_prot |= (u64)logical_id << 32;
3207 break;
Michal Kosiarz68a1c5a2016-04-12 08:30:46 -07003208 case I40E_AQ_CAP_ID_NVM_MGMT:
3209 if (number & I40E_NVM_MGMT_SEC_REV_DISABLED)
3210 p->sec_rev_disabled = true;
3211 if (number & I40E_NVM_MGMT_UPDATE_DISABLED)
3212 p->update_disabled = true;
3213 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003214 default:
3215 break;
3216 }
3217 }
3218
Vasu Devf18ae102015-04-07 19:45:36 -04003219 if (p->fcoe)
3220 i40e_debug(hw, I40E_DEBUG_ALL, "device is FCoE capable\n");
3221
Vasu Dev566bb852014-04-09 05:59:06 +00003222 /* Software override ensuring FCoE is disabled if npar or mfp
3223 * mode because it is not supported in these modes.
3224 */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003225 if (p->npar_enable || p->flex10_enable)
Vasu Dev566bb852014-04-09 05:59:06 +00003226 p->fcoe = false;
3227
Shannon Nelson9fee9db2014-12-11 07:06:30 +00003228 /* count the enabled ports (aka the "not disabled" ports) */
3229 hw->num_ports = 0;
3230 for (i = 0; i < 4; i++) {
3231 u32 port_cfg_reg = I40E_PRTGEN_CNF + (4 * i);
3232 u64 port_cfg = 0;
3233
3234 /* use AQ read to get the physical register offset instead
3235 * of the port relative offset
3236 */
3237 i40e_aq_debug_read_register(hw, port_cfg_reg, &port_cfg, NULL);
3238 if (!(port_cfg & I40E_PRTGEN_CNF_PORT_DIS_MASK))
3239 hw->num_ports++;
3240 }
3241
3242 valid_functions = p->valid_functions;
3243 num_functions = 0;
3244 while (valid_functions) {
3245 if (valid_functions & 1)
3246 num_functions++;
3247 valid_functions >>= 1;
3248 }
3249
3250 /* partition id is 1-based, and functions are evenly spread
3251 * across the ports as partitions
3252 */
3253 hw->partition_id = (hw->pf_id / hw->num_ports) + 1;
3254 hw->num_partitions = num_functions / hw->num_ports;
3255
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003256 /* additional HW specific goodies that might
3257 * someday be HW version specific
3258 */
3259 p->rx_buf_chain_len = I40E_MAX_CHAINED_RX_BUFFERS;
3260}
3261
3262/**
3263 * i40e_aq_discover_capabilities
3264 * @hw: pointer to the hw struct
3265 * @buff: a virtual buffer to hold the capabilities
3266 * @buff_size: Size of the virtual buffer
3267 * @data_size: Size of the returned data, or buff size needed if AQ err==ENOMEM
3268 * @list_type_opc: capabilities type to discover - pass in the command opcode
3269 * @cmd_details: pointer to command details structure or NULL
3270 *
3271 * Get the device capabilities descriptions from the firmware
3272 **/
3273i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
3274 void *buff, u16 buff_size, u16 *data_size,
3275 enum i40e_admin_queue_opc list_type_opc,
3276 struct i40e_asq_cmd_details *cmd_details)
3277{
3278 struct i40e_aqc_list_capabilites *cmd;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003279 struct i40e_aq_desc desc;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08003280 i40e_status status = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003281
3282 cmd = (struct i40e_aqc_list_capabilites *)&desc.params.raw;
3283
3284 if (list_type_opc != i40e_aqc_opc_list_func_capabilities &&
3285 list_type_opc != i40e_aqc_opc_list_dev_capabilities) {
3286 status = I40E_ERR_PARAM;
3287 goto exit;
3288 }
3289
3290 i40e_fill_default_direct_cmd_desc(&desc, list_type_opc);
3291
3292 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3293 if (buff_size > I40E_AQ_LARGE_BUF)
3294 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3295
3296 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3297 *data_size = le16_to_cpu(desc.datalen);
3298
3299 if (status)
3300 goto exit;
3301
3302 i40e_parse_discover_capabilities(hw, buff, le32_to_cpu(cmd->count),
3303 list_type_opc);
3304
3305exit:
3306 return status;
3307}
3308
3309/**
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00003310 * i40e_aq_update_nvm
3311 * @hw: pointer to the hw struct
3312 * @module_pointer: module pointer location in words from the NVM beginning
3313 * @offset: byte offset from the module beginning
3314 * @length: length of the section to be written (in bytes from the offset)
3315 * @data: command buffer (size [bytes] = length)
3316 * @last_command: tells if this is the last command in a series
3317 * @cmd_details: pointer to command details structure or NULL
3318 *
3319 * Update the NVM using the admin queue commands
3320 **/
3321i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
3322 u32 offset, u16 length, void *data,
3323 bool last_command,
3324 struct i40e_asq_cmd_details *cmd_details)
3325{
3326 struct i40e_aq_desc desc;
3327 struct i40e_aqc_nvm_update *cmd =
3328 (struct i40e_aqc_nvm_update *)&desc.params.raw;
3329 i40e_status status;
3330
3331 /* In offset the highest byte must be zeroed. */
3332 if (offset & 0xFF000000) {
3333 status = I40E_ERR_PARAM;
3334 goto i40e_aq_update_nvm_exit;
3335 }
3336
3337 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_update);
3338
3339 /* If this is the last command in a series, set the proper flag. */
3340 if (last_command)
3341 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
3342 cmd->module_pointer = module_pointer;
3343 cmd->offset = cpu_to_le32(offset);
3344 cmd->length = cpu_to_le16(length);
3345
3346 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3347 if (length > I40E_AQ_LARGE_BUF)
3348 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3349
3350 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
3351
3352i40e_aq_update_nvm_exit:
3353 return status;
3354}
3355
3356/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003357 * i40e_aq_get_lldp_mib
3358 * @hw: pointer to the hw struct
3359 * @bridge_type: type of bridge requested
3360 * @mib_type: Local, Remote or both Local and Remote MIBs
3361 * @buff: pointer to a user supplied buffer to store the MIB block
3362 * @buff_size: size of the buffer (in bytes)
3363 * @local_len : length of the returned Local LLDP MIB
3364 * @remote_len: length of the returned Remote LLDP MIB
3365 * @cmd_details: pointer to command details structure or NULL
3366 *
3367 * Requests the complete LLDP MIB (entire packet).
3368 **/
3369i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
3370 u8 mib_type, void *buff, u16 buff_size,
3371 u16 *local_len, u16 *remote_len,
3372 struct i40e_asq_cmd_details *cmd_details)
3373{
3374 struct i40e_aq_desc desc;
3375 struct i40e_aqc_lldp_get_mib *cmd =
3376 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
3377 struct i40e_aqc_lldp_get_mib *resp =
3378 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
3379 i40e_status status;
3380
3381 if (buff_size == 0 || !buff)
3382 return I40E_ERR_PARAM;
3383
3384 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_get_mib);
3385 /* Indirect Command */
3386 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3387
3388 cmd->type = mib_type & I40E_AQ_LLDP_MIB_TYPE_MASK;
3389 cmd->type |= ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
3390 I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
3391
3392 desc.datalen = cpu_to_le16(buff_size);
3393
3394 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3395 if (buff_size > I40E_AQ_LARGE_BUF)
3396 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3397
3398 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3399 if (!status) {
3400 if (local_len != NULL)
3401 *local_len = le16_to_cpu(resp->local_len);
3402 if (remote_len != NULL)
3403 *remote_len = le16_to_cpu(resp->remote_len);
3404 }
3405
3406 return status;
3407}
3408
3409/**
3410 * i40e_aq_cfg_lldp_mib_change_event
3411 * @hw: pointer to the hw struct
3412 * @enable_update: Enable or Disable event posting
3413 * @cmd_details: pointer to command details structure or NULL
3414 *
3415 * Enable or Disable posting of an event on ARQ when LLDP MIB
3416 * associated with the interface changes
3417 **/
3418i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
3419 bool enable_update,
3420 struct i40e_asq_cmd_details *cmd_details)
3421{
3422 struct i40e_aq_desc desc;
3423 struct i40e_aqc_lldp_update_mib *cmd =
3424 (struct i40e_aqc_lldp_update_mib *)&desc.params.raw;
3425 i40e_status status;
3426
3427 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_update_mib);
3428
3429 if (!enable_update)
3430 cmd->command |= I40E_AQ_LLDP_MIB_UPDATE_DISABLE;
3431
3432 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3433
3434 return status;
3435}
3436
3437/**
3438 * i40e_aq_stop_lldp
3439 * @hw: pointer to the hw struct
3440 * @shutdown_agent: True if LLDP Agent needs to be Shutdown
3441 * @cmd_details: pointer to command details structure or NULL
3442 *
3443 * Stop or Shutdown the embedded LLDP Agent
3444 **/
3445i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
3446 struct i40e_asq_cmd_details *cmd_details)
3447{
3448 struct i40e_aq_desc desc;
3449 struct i40e_aqc_lldp_stop *cmd =
3450 (struct i40e_aqc_lldp_stop *)&desc.params.raw;
3451 i40e_status status;
3452
3453 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_stop);
3454
3455 if (shutdown_agent)
3456 cmd->command |= I40E_AQ_LLDP_AGENT_SHUTDOWN;
3457
3458 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3459
3460 return status;
3461}
3462
3463/**
3464 * i40e_aq_start_lldp
3465 * @hw: pointer to the hw struct
3466 * @cmd_details: pointer to command details structure or NULL
3467 *
3468 * Start the embedded LLDP Agent on all ports.
3469 **/
3470i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
3471 struct i40e_asq_cmd_details *cmd_details)
3472{
3473 struct i40e_aq_desc desc;
3474 struct i40e_aqc_lldp_start *cmd =
3475 (struct i40e_aqc_lldp_start *)&desc.params.raw;
3476 i40e_status status;
3477
3478 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_start);
3479
3480 cmd->command = I40E_AQ_LLDP_AGENT_START;
3481
3482 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3483
3484 return status;
3485}
3486
3487/**
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00003488 * i40e_aq_get_cee_dcb_config
3489 * @hw: pointer to the hw struct
3490 * @buff: response buffer that stores CEE operational configuration
3491 * @buff_size: size of the buffer passed
3492 * @cmd_details: pointer to command details structure or NULL
3493 *
3494 * Get CEE DCBX mode operational configuration from firmware
3495 **/
3496i40e_status i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
3497 void *buff, u16 buff_size,
3498 struct i40e_asq_cmd_details *cmd_details)
3499{
3500 struct i40e_aq_desc desc;
3501 i40e_status status;
3502
3503 if (buff_size == 0 || !buff)
3504 return I40E_ERR_PARAM;
3505
3506 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_cee_dcb_cfg);
3507
3508 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3509 status = i40e_asq_send_command(hw, &desc, (void *)buff, buff_size,
3510 cmd_details);
3511
3512 return status;
3513}
3514
3515/**
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003516 * i40e_aq_add_udp_tunnel
3517 * @hw: pointer to the hw struct
3518 * @udp_port: the UDP port to add
3519 * @header_len: length of the tunneling header length in DWords
3520 * @protocol_index: protocol index type
Jeff Kirsher98d44382013-12-21 05:44:42 +00003521 * @filter_index: pointer to filter index
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003522 * @cmd_details: pointer to command details structure or NULL
3523 **/
3524i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
Kevin Scottf4f94b92014-04-05 07:46:10 +00003525 u16 udp_port, u8 protocol_index,
3526 u8 *filter_index,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003527 struct i40e_asq_cmd_details *cmd_details)
3528{
3529 struct i40e_aq_desc desc;
3530 struct i40e_aqc_add_udp_tunnel *cmd =
3531 (struct i40e_aqc_add_udp_tunnel *)&desc.params.raw;
3532 struct i40e_aqc_del_udp_tunnel_completion *resp =
3533 (struct i40e_aqc_del_udp_tunnel_completion *)&desc.params.raw;
3534 i40e_status status;
3535
3536 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_udp_tunnel);
3537
3538 cmd->udp_port = cpu_to_le16(udp_port);
Shannon Nelson981b7542013-12-11 08:17:11 +00003539 cmd->protocol_type = protocol_index;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003540
3541 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3542
Shannon Nelson65d13462015-02-21 06:45:28 +00003543 if (!status && filter_index)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003544 *filter_index = resp->index;
3545
3546 return status;
3547}
3548
3549/**
3550 * i40e_aq_del_udp_tunnel
3551 * @hw: pointer to the hw struct
3552 * @index: filter index
3553 * @cmd_details: pointer to command details structure or NULL
3554 **/
3555i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
3556 struct i40e_asq_cmd_details *cmd_details)
3557{
3558 struct i40e_aq_desc desc;
3559 struct i40e_aqc_remove_udp_tunnel *cmd =
3560 (struct i40e_aqc_remove_udp_tunnel *)&desc.params.raw;
3561 i40e_status status;
3562
3563 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_del_udp_tunnel);
3564
3565 cmd->index = index;
3566
3567 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3568
3569 return status;
3570}
3571
3572/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003573 * i40e_aq_delete_element - Delete switch element
3574 * @hw: pointer to the hw struct
3575 * @seid: the SEID to delete from the switch
3576 * @cmd_details: pointer to command details structure or NULL
3577 *
3578 * This deletes a switch element from the switch.
3579 **/
3580i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
3581 struct i40e_asq_cmd_details *cmd_details)
3582{
3583 struct i40e_aq_desc desc;
3584 struct i40e_aqc_switch_seid *cmd =
3585 (struct i40e_aqc_switch_seid *)&desc.params.raw;
3586 i40e_status status;
3587
3588 if (seid == 0)
3589 return I40E_ERR_PARAM;
3590
3591 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_delete_element);
3592
3593 cmd->seid = cpu_to_le16(seid);
3594
3595 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3596
3597 return status;
3598}
3599
3600/**
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003601 * i40e_aq_dcb_updated - DCB Updated Command
3602 * @hw: pointer to the hw struct
3603 * @cmd_details: pointer to command details structure or NULL
3604 *
3605 * EMP will return when the shared RPB settings have been
3606 * recomputed and modified. The retval field in the descriptor
3607 * will be set to 0 when RPB is modified.
3608 **/
3609i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
3610 struct i40e_asq_cmd_details *cmd_details)
3611{
3612 struct i40e_aq_desc desc;
3613 i40e_status status;
3614
3615 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_dcb_updated);
3616
3617 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3618
3619 return status;
3620}
3621
3622/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003623 * i40e_aq_tx_sched_cmd - generic Tx scheduler AQ command handler
3624 * @hw: pointer to the hw struct
3625 * @seid: seid for the physical port/switching component/vsi
3626 * @buff: Indirect buffer to hold data parameters and response
3627 * @buff_size: Indirect buffer size
3628 * @opcode: Tx scheduler AQ command opcode
3629 * @cmd_details: pointer to command details structure or NULL
3630 *
3631 * Generic command handler for Tx scheduler AQ commands
3632 **/
3633static i40e_status i40e_aq_tx_sched_cmd(struct i40e_hw *hw, u16 seid,
3634 void *buff, u16 buff_size,
3635 enum i40e_admin_queue_opc opcode,
3636 struct i40e_asq_cmd_details *cmd_details)
3637{
3638 struct i40e_aq_desc desc;
3639 struct i40e_aqc_tx_sched_ind *cmd =
3640 (struct i40e_aqc_tx_sched_ind *)&desc.params.raw;
3641 i40e_status status;
3642 bool cmd_param_flag = false;
3643
3644 switch (opcode) {
3645 case i40e_aqc_opc_configure_vsi_ets_sla_bw_limit:
3646 case i40e_aqc_opc_configure_vsi_tc_bw:
3647 case i40e_aqc_opc_enable_switching_comp_ets:
3648 case i40e_aqc_opc_modify_switching_comp_ets:
3649 case i40e_aqc_opc_disable_switching_comp_ets:
3650 case i40e_aqc_opc_configure_switching_comp_ets_bw_limit:
3651 case i40e_aqc_opc_configure_switching_comp_bw_config:
3652 cmd_param_flag = true;
3653 break;
3654 case i40e_aqc_opc_query_vsi_bw_config:
3655 case i40e_aqc_opc_query_vsi_ets_sla_config:
3656 case i40e_aqc_opc_query_switching_comp_ets_config:
3657 case i40e_aqc_opc_query_port_ets_config:
3658 case i40e_aqc_opc_query_switching_comp_bw_config:
3659 cmd_param_flag = false;
3660 break;
3661 default:
3662 return I40E_ERR_PARAM;
3663 }
3664
3665 i40e_fill_default_direct_cmd_desc(&desc, opcode);
3666
3667 /* Indirect command */
3668 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3669 if (cmd_param_flag)
3670 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
3671 if (buff_size > I40E_AQ_LARGE_BUF)
3672 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3673
3674 desc.datalen = cpu_to_le16(buff_size);
3675
3676 cmd->vsi_seid = cpu_to_le16(seid);
3677
3678 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3679
3680 return status;
3681}
3682
3683/**
Mitch Williams6b192892014-03-06 09:02:29 +00003684 * i40e_aq_config_vsi_bw_limit - Configure VSI BW Limit
3685 * @hw: pointer to the hw struct
3686 * @seid: VSI seid
3687 * @credit: BW limit credits (0 = disabled)
3688 * @max_credit: Max BW limit credits
3689 * @cmd_details: pointer to command details structure or NULL
3690 **/
3691i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
3692 u16 seid, u16 credit, u8 max_credit,
3693 struct i40e_asq_cmd_details *cmd_details)
3694{
3695 struct i40e_aq_desc desc;
3696 struct i40e_aqc_configure_vsi_bw_limit *cmd =
3697 (struct i40e_aqc_configure_vsi_bw_limit *)&desc.params.raw;
3698 i40e_status status;
3699
3700 i40e_fill_default_direct_cmd_desc(&desc,
3701 i40e_aqc_opc_configure_vsi_bw_limit);
3702
3703 cmd->vsi_seid = cpu_to_le16(seid);
3704 cmd->credit = cpu_to_le16(credit);
3705 cmd->max_credit = max_credit;
3706
3707 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3708
3709 return status;
3710}
3711
3712/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003713 * i40e_aq_config_vsi_tc_bw - Config VSI BW Allocation per TC
3714 * @hw: pointer to the hw struct
3715 * @seid: VSI seid
3716 * @bw_data: Buffer holding enabled TCs, relative TC BW limit/credits
3717 * @cmd_details: pointer to command details structure or NULL
3718 **/
3719i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw,
3720 u16 seid,
3721 struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
3722 struct i40e_asq_cmd_details *cmd_details)
3723{
3724 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3725 i40e_aqc_opc_configure_vsi_tc_bw,
3726 cmd_details);
3727}
3728
3729/**
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003730 * i40e_aq_config_switch_comp_ets - Enable/Disable/Modify ETS on the port
3731 * @hw: pointer to the hw struct
3732 * @seid: seid of the switching component connected to Physical Port
3733 * @ets_data: Buffer holding ETS parameters
3734 * @cmd_details: pointer to command details structure or NULL
3735 **/
3736i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
3737 u16 seid,
3738 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
3739 enum i40e_admin_queue_opc opcode,
3740 struct i40e_asq_cmd_details *cmd_details)
3741{
3742 return i40e_aq_tx_sched_cmd(hw, seid, (void *)ets_data,
3743 sizeof(*ets_data), opcode, cmd_details);
3744}
3745
3746/**
3747 * i40e_aq_config_switch_comp_bw_config - Config Switch comp BW Alloc per TC
3748 * @hw: pointer to the hw struct
3749 * @seid: seid of the switching component
3750 * @bw_data: Buffer holding enabled TCs, relative/absolute TC BW limit/credits
3751 * @cmd_details: pointer to command details structure or NULL
3752 **/
3753i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
3754 u16 seid,
3755 struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
3756 struct i40e_asq_cmd_details *cmd_details)
3757{
3758 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3759 i40e_aqc_opc_configure_switching_comp_bw_config,
3760 cmd_details);
3761}
3762
3763/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003764 * i40e_aq_query_vsi_bw_config - Query VSI BW configuration
3765 * @hw: pointer to the hw struct
3766 * @seid: seid of the VSI
3767 * @bw_data: Buffer to hold VSI BW configuration
3768 * @cmd_details: pointer to command details structure or NULL
3769 **/
3770i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
3771 u16 seid,
3772 struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
3773 struct i40e_asq_cmd_details *cmd_details)
3774{
3775 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3776 i40e_aqc_opc_query_vsi_bw_config,
3777 cmd_details);
3778}
3779
3780/**
3781 * i40e_aq_query_vsi_ets_sla_config - Query VSI BW configuration per TC
3782 * @hw: pointer to the hw struct
3783 * @seid: seid of the VSI
3784 * @bw_data: Buffer to hold VSI BW configuration per TC
3785 * @cmd_details: pointer to command details structure or NULL
3786 **/
3787i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
3788 u16 seid,
3789 struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
3790 struct i40e_asq_cmd_details *cmd_details)
3791{
3792 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3793 i40e_aqc_opc_query_vsi_ets_sla_config,
3794 cmd_details);
3795}
3796
3797/**
3798 * i40e_aq_query_switch_comp_ets_config - Query Switch comp BW config per TC
3799 * @hw: pointer to the hw struct
3800 * @seid: seid of the switching component
3801 * @bw_data: Buffer to hold switching component's per TC BW config
3802 * @cmd_details: pointer to command details structure or NULL
3803 **/
3804i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
3805 u16 seid,
3806 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
3807 struct i40e_asq_cmd_details *cmd_details)
3808{
3809 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3810 i40e_aqc_opc_query_switching_comp_ets_config,
3811 cmd_details);
3812}
3813
3814/**
3815 * i40e_aq_query_port_ets_config - Query Physical Port ETS configuration
3816 * @hw: pointer to the hw struct
3817 * @seid: seid of the VSI or switching component connected to Physical Port
3818 * @bw_data: Buffer to hold current ETS configuration for the Physical Port
3819 * @cmd_details: pointer to command details structure or NULL
3820 **/
3821i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
3822 u16 seid,
3823 struct i40e_aqc_query_port_ets_config_resp *bw_data,
3824 struct i40e_asq_cmd_details *cmd_details)
3825{
3826 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3827 i40e_aqc_opc_query_port_ets_config,
3828 cmd_details);
3829}
3830
3831/**
3832 * i40e_aq_query_switch_comp_bw_config - Query Switch comp BW configuration
3833 * @hw: pointer to the hw struct
3834 * @seid: seid of the switching component
3835 * @bw_data: Buffer to hold switching component's BW configuration
3836 * @cmd_details: pointer to command details structure or NULL
3837 **/
3838i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
3839 u16 seid,
3840 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
3841 struct i40e_asq_cmd_details *cmd_details)
3842{
3843 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3844 i40e_aqc_opc_query_switching_comp_bw_config,
3845 cmd_details);
3846}
3847
3848/**
3849 * i40e_validate_filter_settings
3850 * @hw: pointer to the hardware structure
3851 * @settings: Filter control settings
3852 *
3853 * Check and validate the filter control settings passed.
3854 * The function checks for the valid filter/context sizes being
3855 * passed for FCoE and PE.
3856 *
3857 * Returns 0 if the values passed are valid and within
3858 * range else returns an error.
3859 **/
3860static i40e_status i40e_validate_filter_settings(struct i40e_hw *hw,
3861 struct i40e_filter_control_settings *settings)
3862{
3863 u32 fcoe_cntx_size, fcoe_filt_size;
3864 u32 pe_cntx_size, pe_filt_size;
Anjali Singhai Jain467d7292014-05-10 04:49:02 +00003865 u32 fcoe_fmax;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003866 u32 val;
3867
3868 /* Validate FCoE settings passed */
3869 switch (settings->fcoe_filt_num) {
3870 case I40E_HASH_FILTER_SIZE_1K:
3871 case I40E_HASH_FILTER_SIZE_2K:
3872 case I40E_HASH_FILTER_SIZE_4K:
3873 case I40E_HASH_FILTER_SIZE_8K:
3874 case I40E_HASH_FILTER_SIZE_16K:
3875 case I40E_HASH_FILTER_SIZE_32K:
3876 fcoe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
3877 fcoe_filt_size <<= (u32)settings->fcoe_filt_num;
3878 break;
3879 default:
3880 return I40E_ERR_PARAM;
3881 }
3882
3883 switch (settings->fcoe_cntx_num) {
3884 case I40E_DMA_CNTX_SIZE_512:
3885 case I40E_DMA_CNTX_SIZE_1K:
3886 case I40E_DMA_CNTX_SIZE_2K:
3887 case I40E_DMA_CNTX_SIZE_4K:
3888 fcoe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
3889 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num;
3890 break;
3891 default:
3892 return I40E_ERR_PARAM;
3893 }
3894
3895 /* Validate PE settings passed */
3896 switch (settings->pe_filt_num) {
3897 case I40E_HASH_FILTER_SIZE_1K:
3898 case I40E_HASH_FILTER_SIZE_2K:
3899 case I40E_HASH_FILTER_SIZE_4K:
3900 case I40E_HASH_FILTER_SIZE_8K:
3901 case I40E_HASH_FILTER_SIZE_16K:
3902 case I40E_HASH_FILTER_SIZE_32K:
3903 case I40E_HASH_FILTER_SIZE_64K:
3904 case I40E_HASH_FILTER_SIZE_128K:
3905 case I40E_HASH_FILTER_SIZE_256K:
3906 case I40E_HASH_FILTER_SIZE_512K:
3907 case I40E_HASH_FILTER_SIZE_1M:
3908 pe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
3909 pe_filt_size <<= (u32)settings->pe_filt_num;
3910 break;
3911 default:
3912 return I40E_ERR_PARAM;
3913 }
3914
3915 switch (settings->pe_cntx_num) {
3916 case I40E_DMA_CNTX_SIZE_512:
3917 case I40E_DMA_CNTX_SIZE_1K:
3918 case I40E_DMA_CNTX_SIZE_2K:
3919 case I40E_DMA_CNTX_SIZE_4K:
3920 case I40E_DMA_CNTX_SIZE_8K:
3921 case I40E_DMA_CNTX_SIZE_16K:
3922 case I40E_DMA_CNTX_SIZE_32K:
3923 case I40E_DMA_CNTX_SIZE_64K:
3924 case I40E_DMA_CNTX_SIZE_128K:
3925 case I40E_DMA_CNTX_SIZE_256K:
3926 pe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
3927 pe_cntx_size <<= (u32)settings->pe_cntx_num;
3928 break;
3929 default:
3930 return I40E_ERR_PARAM;
3931 }
3932
3933 /* FCHSIZE + FCDSIZE should not be greater than PMFCOEFMAX */
3934 val = rd32(hw, I40E_GLHMC_FCOEFMAX);
3935 fcoe_fmax = (val & I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_MASK)
3936 >> I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_SHIFT;
3937 if (fcoe_filt_size + fcoe_cntx_size > fcoe_fmax)
3938 return I40E_ERR_INVALID_SIZE;
3939
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003940 return 0;
3941}
3942
3943/**
3944 * i40e_set_filter_control
3945 * @hw: pointer to the hardware structure
3946 * @settings: Filter control settings
3947 *
3948 * Set the Queue Filters for PE/FCoE and enable filters required
3949 * for a single PF. It is expected that these settings are programmed
3950 * at the driver initialization time.
3951 **/
3952i40e_status i40e_set_filter_control(struct i40e_hw *hw,
3953 struct i40e_filter_control_settings *settings)
3954{
3955 i40e_status ret = 0;
3956 u32 hash_lut_size = 0;
3957 u32 val;
3958
3959 if (!settings)
3960 return I40E_ERR_PARAM;
3961
3962 /* Validate the input settings */
3963 ret = i40e_validate_filter_settings(hw, settings);
3964 if (ret)
3965 return ret;
3966
3967 /* Read the PF Queue Filter control register */
Shannon Nelsonf6581372016-02-17 16:12:20 -08003968 val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003969
3970 /* Program required PE hash buckets for the PF */
3971 val &= ~I40E_PFQF_CTL_0_PEHSIZE_MASK;
3972 val |= ((u32)settings->pe_filt_num << I40E_PFQF_CTL_0_PEHSIZE_SHIFT) &
3973 I40E_PFQF_CTL_0_PEHSIZE_MASK;
3974 /* Program required PE contexts for the PF */
3975 val &= ~I40E_PFQF_CTL_0_PEDSIZE_MASK;
3976 val |= ((u32)settings->pe_cntx_num << I40E_PFQF_CTL_0_PEDSIZE_SHIFT) &
3977 I40E_PFQF_CTL_0_PEDSIZE_MASK;
3978
3979 /* Program required FCoE hash buckets for the PF */
3980 val &= ~I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
3981 val |= ((u32)settings->fcoe_filt_num <<
3982 I40E_PFQF_CTL_0_PFFCHSIZE_SHIFT) &
3983 I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
3984 /* Program required FCoE DDP contexts for the PF */
3985 val &= ~I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
3986 val |= ((u32)settings->fcoe_cntx_num <<
3987 I40E_PFQF_CTL_0_PFFCDSIZE_SHIFT) &
3988 I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
3989
3990 /* Program Hash LUT size for the PF */
3991 val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
3992 if (settings->hash_lut_size == I40E_HASH_LUT_SIZE_512)
3993 hash_lut_size = 1;
3994 val |= (hash_lut_size << I40E_PFQF_CTL_0_HASHLUTSIZE_SHIFT) &
3995 I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
3996
3997 /* Enable FDIR, Ethertype and MACVLAN filters for PF and VFs */
3998 if (settings->enable_fdir)
3999 val |= I40E_PFQF_CTL_0_FD_ENA_MASK;
4000 if (settings->enable_ethtype)
4001 val |= I40E_PFQF_CTL_0_ETYPE_ENA_MASK;
4002 if (settings->enable_macvlan)
4003 val |= I40E_PFQF_CTL_0_MACVLAN_ENA_MASK;
4004
Shannon Nelsonf6581372016-02-17 16:12:20 -08004005 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, val);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00004006
4007 return 0;
4008}
Neerav Parikhafb3ff02014-01-17 15:36:36 -08004009
4010/**
4011 * i40e_aq_add_rem_control_packet_filter - Add or Remove Control Packet Filter
4012 * @hw: pointer to the hw struct
4013 * @mac_addr: MAC address to use in the filter
4014 * @ethtype: Ethertype to use in the filter
4015 * @flags: Flags that needs to be applied to the filter
4016 * @vsi_seid: seid of the control VSI
4017 * @queue: VSI queue number to send the packet to
4018 * @is_add: Add control packet filter if True else remove
4019 * @stats: Structure to hold information on control filter counts
4020 * @cmd_details: pointer to command details structure or NULL
4021 *
4022 * This command will Add or Remove control packet filter for a control VSI.
4023 * In return it will update the total number of perfect filter count in
4024 * the stats member.
4025 **/
4026i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
4027 u8 *mac_addr, u16 ethtype, u16 flags,
4028 u16 vsi_seid, u16 queue, bool is_add,
4029 struct i40e_control_filter_stats *stats,
4030 struct i40e_asq_cmd_details *cmd_details)
4031{
4032 struct i40e_aq_desc desc;
4033 struct i40e_aqc_add_remove_control_packet_filter *cmd =
4034 (struct i40e_aqc_add_remove_control_packet_filter *)
4035 &desc.params.raw;
4036 struct i40e_aqc_add_remove_control_packet_filter_completion *resp =
4037 (struct i40e_aqc_add_remove_control_packet_filter_completion *)
4038 &desc.params.raw;
4039 i40e_status status;
4040
4041 if (vsi_seid == 0)
4042 return I40E_ERR_PARAM;
4043
4044 if (is_add) {
4045 i40e_fill_default_direct_cmd_desc(&desc,
4046 i40e_aqc_opc_add_control_packet_filter);
4047 cmd->queue = cpu_to_le16(queue);
4048 } else {
4049 i40e_fill_default_direct_cmd_desc(&desc,
4050 i40e_aqc_opc_remove_control_packet_filter);
4051 }
4052
4053 if (mac_addr)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004054 ether_addr_copy(cmd->mac, mac_addr);
Neerav Parikhafb3ff02014-01-17 15:36:36 -08004055
4056 cmd->etype = cpu_to_le16(ethtype);
4057 cmd->flags = cpu_to_le16(flags);
4058 cmd->seid = cpu_to_le16(vsi_seid);
4059
4060 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4061
4062 if (!status && stats) {
4063 stats->mac_etype_used = le16_to_cpu(resp->mac_etype_used);
4064 stats->etype_used = le16_to_cpu(resp->etype_used);
4065 stats->mac_etype_free = le16_to_cpu(resp->mac_etype_free);
4066 stats->etype_free = le16_to_cpu(resp->etype_free);
4067 }
4068
4069 return status;
4070}
4071
Catherine Sullivand4dfb812013-11-28 06:39:21 +00004072/**
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04004073 * i40e_add_filter_to_drop_tx_flow_control_frames- filter to drop flow control
4074 * @hw: pointer to the hw struct
4075 * @seid: VSI seid to add ethertype filter from
4076 **/
4077#define I40E_FLOW_CONTROL_ETHTYPE 0x8808
4078void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
4079 u16 seid)
4080{
4081 u16 flag = I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC |
4082 I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP |
4083 I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX;
4084 u16 ethtype = I40E_FLOW_CONTROL_ETHTYPE;
4085 i40e_status status;
4086
4087 status = i40e_aq_add_rem_control_packet_filter(hw, NULL, ethtype, flag,
4088 seid, 0, true, NULL,
4089 NULL);
4090 if (status)
4091 hw_dbg(hw, "Ethtype Filter Add failed: Error pruning Tx flow control frames\n");
4092}
4093
4094/**
Greg Rosef4492db2015-02-06 08:52:12 +00004095 * i40e_aq_alternate_read
4096 * @hw: pointer to the hardware structure
4097 * @reg_addr0: address of first dword to be read
4098 * @reg_val0: pointer for data read from 'reg_addr0'
4099 * @reg_addr1: address of second dword to be read
4100 * @reg_val1: pointer for data read from 'reg_addr1'
4101 *
4102 * Read one or two dwords from alternate structure. Fields are indicated
4103 * by 'reg_addr0' and 'reg_addr1' register numbers. If 'reg_val1' pointer
4104 * is not passed then only register at 'reg_addr0' is read.
4105 *
4106 **/
Shannon Nelson37a29732015-02-27 09:15:19 +00004107static i40e_status i40e_aq_alternate_read(struct i40e_hw *hw,
4108 u32 reg_addr0, u32 *reg_val0,
4109 u32 reg_addr1, u32 *reg_val1)
Greg Rosef4492db2015-02-06 08:52:12 +00004110{
4111 struct i40e_aq_desc desc;
4112 struct i40e_aqc_alternate_write *cmd_resp =
4113 (struct i40e_aqc_alternate_write *)&desc.params.raw;
4114 i40e_status status;
4115
4116 if (!reg_val0)
4117 return I40E_ERR_PARAM;
4118
4119 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_alternate_read);
4120 cmd_resp->address0 = cpu_to_le32(reg_addr0);
4121 cmd_resp->address1 = cpu_to_le32(reg_addr1);
4122
4123 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
4124
4125 if (!status) {
4126 *reg_val0 = le32_to_cpu(cmd_resp->data0);
4127
4128 if (reg_val1)
4129 *reg_val1 = le32_to_cpu(cmd_resp->data1);
4130 }
4131
4132 return status;
4133}
4134
4135/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004136 * i40e_aq_resume_port_tx
4137 * @hw: pointer to the hardware structure
4138 * @cmd_details: pointer to command details structure or NULL
4139 *
4140 * Resume port's Tx traffic
4141 **/
4142i40e_status i40e_aq_resume_port_tx(struct i40e_hw *hw,
4143 struct i40e_asq_cmd_details *cmd_details)
4144{
4145 struct i40e_aq_desc desc;
4146 i40e_status status;
4147
4148 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_resume_port_tx);
4149
4150 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4151
4152 return status;
4153}
4154
4155/**
Catherine Sullivand4dfb812013-11-28 06:39:21 +00004156 * i40e_set_pci_config_data - store PCI bus info
4157 * @hw: pointer to hardware structure
4158 * @link_status: the link status word from PCI config space
4159 *
4160 * Stores the PCI bus info (speed, width, type) within the i40e_hw structure
4161 **/
4162void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status)
4163{
4164 hw->bus.type = i40e_bus_type_pci_express;
4165
4166 switch (link_status & PCI_EXP_LNKSTA_NLW) {
4167 case PCI_EXP_LNKSTA_NLW_X1:
4168 hw->bus.width = i40e_bus_width_pcie_x1;
4169 break;
4170 case PCI_EXP_LNKSTA_NLW_X2:
4171 hw->bus.width = i40e_bus_width_pcie_x2;
4172 break;
4173 case PCI_EXP_LNKSTA_NLW_X4:
4174 hw->bus.width = i40e_bus_width_pcie_x4;
4175 break;
4176 case PCI_EXP_LNKSTA_NLW_X8:
4177 hw->bus.width = i40e_bus_width_pcie_x8;
4178 break;
4179 default:
4180 hw->bus.width = i40e_bus_width_unknown;
4181 break;
4182 }
4183
4184 switch (link_status & PCI_EXP_LNKSTA_CLS) {
4185 case PCI_EXP_LNKSTA_CLS_2_5GB:
4186 hw->bus.speed = i40e_bus_speed_2500;
4187 break;
4188 case PCI_EXP_LNKSTA_CLS_5_0GB:
4189 hw->bus.speed = i40e_bus_speed_5000;
4190 break;
4191 case PCI_EXP_LNKSTA_CLS_8_0GB:
4192 hw->bus.speed = i40e_bus_speed_8000;
4193 break;
4194 default:
4195 hw->bus.speed = i40e_bus_speed_unknown;
4196 break;
4197 }
4198}
Greg Rosef4492db2015-02-06 08:52:12 +00004199
4200/**
Jesse Brandeburg3169c322015-04-07 19:45:37 -04004201 * i40e_aq_debug_dump
4202 * @hw: pointer to the hardware structure
4203 * @cluster_id: specific cluster to dump
4204 * @table_id: table id within cluster
4205 * @start_index: index of line in the block to read
4206 * @buff_size: dump buffer size
4207 * @buff: dump buffer
4208 * @ret_buff_size: actual buffer size returned
4209 * @ret_next_table: next block to read
4210 * @ret_next_index: next index to read
4211 *
4212 * Dump internal FW/HW data for debug purposes.
4213 *
4214 **/
4215i40e_status i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
4216 u8 table_id, u32 start_index, u16 buff_size,
4217 void *buff, u16 *ret_buff_size,
4218 u8 *ret_next_table, u32 *ret_next_index,
4219 struct i40e_asq_cmd_details *cmd_details)
4220{
4221 struct i40e_aq_desc desc;
4222 struct i40e_aqc_debug_dump_internals *cmd =
4223 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
4224 struct i40e_aqc_debug_dump_internals *resp =
4225 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
4226 i40e_status status;
4227
4228 if (buff_size == 0 || !buff)
4229 return I40E_ERR_PARAM;
4230
4231 i40e_fill_default_direct_cmd_desc(&desc,
4232 i40e_aqc_opc_debug_dump_internals);
4233 /* Indirect Command */
4234 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
4235 if (buff_size > I40E_AQ_LARGE_BUF)
4236 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
4237
4238 cmd->cluster_id = cluster_id;
4239 cmd->table_id = table_id;
4240 cmd->idx = cpu_to_le32(start_index);
4241
4242 desc.datalen = cpu_to_le16(buff_size);
4243
4244 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4245 if (!status) {
4246 if (ret_buff_size)
4247 *ret_buff_size = le16_to_cpu(desc.datalen);
4248 if (ret_next_table)
4249 *ret_next_table = resp->table_id;
4250 if (ret_next_index)
4251 *ret_next_index = le32_to_cpu(resp->idx);
4252 }
4253
4254 return status;
4255}
4256
4257/**
Greg Rosef4492db2015-02-06 08:52:12 +00004258 * i40e_read_bw_from_alt_ram
4259 * @hw: pointer to the hardware structure
4260 * @max_bw: pointer for max_bw read
4261 * @min_bw: pointer for min_bw read
4262 * @min_valid: pointer for bool that is true if min_bw is a valid value
4263 * @max_valid: pointer for bool that is true if max_bw is a valid value
4264 *
4265 * Read bw from the alternate ram for the given pf
4266 **/
4267i40e_status i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
4268 u32 *max_bw, u32 *min_bw,
4269 bool *min_valid, bool *max_valid)
4270{
4271 i40e_status status;
4272 u32 max_bw_addr, min_bw_addr;
4273
4274 /* Calculate the address of the min/max bw registers */
4275 max_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
4276 I40E_ALT_STRUCT_MAX_BW_OFFSET +
4277 (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
4278 min_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
4279 I40E_ALT_STRUCT_MIN_BW_OFFSET +
4280 (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
4281
4282 /* Read the bandwidths from alt ram */
4283 status = i40e_aq_alternate_read(hw, max_bw_addr, max_bw,
4284 min_bw_addr, min_bw);
4285
4286 if (*min_bw & I40E_ALT_BW_VALID_MASK)
4287 *min_valid = true;
4288 else
4289 *min_valid = false;
4290
4291 if (*max_bw & I40E_ALT_BW_VALID_MASK)
4292 *max_valid = true;
4293 else
4294 *max_valid = false;
4295
4296 return status;
4297}
4298
4299/**
4300 * i40e_aq_configure_partition_bw
4301 * @hw: pointer to the hardware structure
4302 * @bw_data: Buffer holding valid pfs and bw limits
4303 * @cmd_details: pointer to command details
4304 *
4305 * Configure partitions guaranteed/max bw
4306 **/
4307i40e_status i40e_aq_configure_partition_bw(struct i40e_hw *hw,
4308 struct i40e_aqc_configure_partition_bw_data *bw_data,
4309 struct i40e_asq_cmd_details *cmd_details)
4310{
4311 i40e_status status;
4312 struct i40e_aq_desc desc;
4313 u16 bwd_size = sizeof(*bw_data);
4314
4315 i40e_fill_default_direct_cmd_desc(&desc,
4316 i40e_aqc_opc_configure_partition_bw);
4317
4318 /* Indirect command */
4319 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
4320 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
4321
4322 if (bwd_size > I40E_AQ_LARGE_BUF)
4323 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
4324
4325 desc.datalen = cpu_to_le16(bwd_size);
4326
4327 status = i40e_asq_send_command(hw, &desc, bw_data, bwd_size,
4328 cmd_details);
4329
4330 return status;
4331}
Carolyn Wybornyfd077cd2016-02-17 16:12:11 -08004332
4333/**
4334 * i40e_read_phy_register
4335 * @hw: pointer to the HW structure
4336 * @page: registers page number
4337 * @reg: register address in the page
4338 * @phy_adr: PHY address on MDIO interface
4339 * @value: PHY register value
4340 *
4341 * Reads specified PHY register value
4342 **/
4343i40e_status i40e_read_phy_register(struct i40e_hw *hw,
4344 u8 page, u16 reg, u8 phy_addr,
4345 u16 *value)
4346{
4347 i40e_status status = I40E_ERR_TIMEOUT;
4348 u32 command = 0;
4349 u16 retry = 1000;
4350 u8 port_num = hw->func_caps.mdio_port_num;
4351
4352 command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
4353 (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4354 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4355 (I40E_MDIO_OPCODE_ADDRESS) |
4356 (I40E_MDIO_STCODE) |
4357 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4358 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4359 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4360 do {
4361 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4362 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4363 status = 0;
4364 break;
4365 }
4366 usleep_range(10, 20);
4367 retry--;
4368 } while (retry);
4369
4370 if (status) {
4371 i40e_debug(hw, I40E_DEBUG_PHY,
4372 "PHY: Can't write command to external PHY.\n");
4373 goto phy_read_end;
4374 }
4375
4376 command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4377 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4378 (I40E_MDIO_OPCODE_READ) |
4379 (I40E_MDIO_STCODE) |
4380 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4381 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4382 status = I40E_ERR_TIMEOUT;
4383 retry = 1000;
4384 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4385 do {
4386 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4387 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4388 status = 0;
4389 break;
4390 }
4391 usleep_range(10, 20);
4392 retry--;
4393 } while (retry);
4394
4395 if (!status) {
4396 command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
4397 *value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
4398 I40E_GLGEN_MSRWD_MDIRDDATA_SHIFT;
4399 } else {
4400 i40e_debug(hw, I40E_DEBUG_PHY,
4401 "PHY: Can't read register value from external PHY.\n");
4402 }
4403
4404phy_read_end:
4405 return status;
4406}
4407
4408/**
4409 * i40e_write_phy_register
4410 * @hw: pointer to the HW structure
4411 * @page: registers page number
4412 * @reg: register address in the page
4413 * @phy_adr: PHY address on MDIO interface
4414 * @value: PHY register value
4415 *
4416 * Writes value to specified PHY register
4417 **/
4418i40e_status i40e_write_phy_register(struct i40e_hw *hw,
4419 u8 page, u16 reg, u8 phy_addr,
4420 u16 value)
4421{
4422 i40e_status status = I40E_ERR_TIMEOUT;
4423 u32 command = 0;
4424 u16 retry = 1000;
4425 u8 port_num = hw->func_caps.mdio_port_num;
4426
4427 command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
4428 (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4429 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4430 (I40E_MDIO_OPCODE_ADDRESS) |
4431 (I40E_MDIO_STCODE) |
4432 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4433 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4434 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4435 do {
4436 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4437 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4438 status = 0;
4439 break;
4440 }
4441 usleep_range(10, 20);
4442 retry--;
4443 } while (retry);
4444 if (status) {
4445 i40e_debug(hw, I40E_DEBUG_PHY,
4446 "PHY: Can't write command to external PHY.\n");
4447 goto phy_write_end;
4448 }
4449
4450 command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
4451 wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
4452
4453 command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4454 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4455 (I40E_MDIO_OPCODE_WRITE) |
4456 (I40E_MDIO_STCODE) |
4457 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4458 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4459 status = I40E_ERR_TIMEOUT;
4460 retry = 1000;
4461 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4462 do {
4463 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4464 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4465 status = 0;
4466 break;
4467 }
4468 usleep_range(10, 20);
4469 retry--;
4470 } while (retry);
4471
4472phy_write_end:
4473 return status;
4474}
4475
4476/**
4477 * i40e_get_phy_address
4478 * @hw: pointer to the HW structure
4479 * @dev_num: PHY port num that address we want
4480 * @phy_addr: Returned PHY address
4481 *
4482 * Gets PHY address for current port
4483 **/
4484u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num)
4485{
4486 u8 port_num = hw->func_caps.mdio_port_num;
4487 u32 reg_val = rd32(hw, I40E_GLGEN_MDIO_I2C_SEL(port_num));
4488
4489 return (u8)(reg_val >> ((dev_num + 1) * 5)) & 0x1f;
4490}
4491
4492/**
4493 * i40e_blink_phy_led
4494 * @hw: pointer to the HW structure
4495 * @time: time how long led will blinks in secs
4496 * @interval: gap between LED on and off in msecs
4497 *
4498 * Blinks PHY link LED
4499 **/
4500i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
4501 u32 time, u32 interval)
4502{
4503 i40e_status status = 0;
4504 u32 i;
4505 u16 led_ctl;
4506 u16 gpio_led_port;
4507 u16 led_reg;
4508 u16 led_addr = I40E_PHY_LED_PROV_REG_1;
4509 u8 phy_addr = 0;
4510 u8 port_num;
4511
4512 i = rd32(hw, I40E_PFGEN_PORTNUM);
4513 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4514 phy_addr = i40e_get_phy_address(hw, port_num);
4515
4516 for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
4517 led_addr++) {
4518 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4519 led_addr, phy_addr, &led_reg);
4520 if (status)
4521 goto phy_blinking_end;
4522 led_ctl = led_reg;
4523 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
4524 led_reg = 0;
4525 status = i40e_write_phy_register(hw,
4526 I40E_PHY_COM_REG_PAGE,
4527 led_addr, phy_addr,
4528 led_reg);
4529 if (status)
4530 goto phy_blinking_end;
4531 break;
4532 }
4533 }
4534
4535 if (time > 0 && interval > 0) {
4536 for (i = 0; i < time * 1000; i += interval) {
4537 status = i40e_read_phy_register(hw,
4538 I40E_PHY_COM_REG_PAGE,
4539 led_addr, phy_addr,
4540 &led_reg);
4541 if (status)
4542 goto restore_config;
4543 if (led_reg & I40E_PHY_LED_MANUAL_ON)
4544 led_reg = 0;
4545 else
4546 led_reg = I40E_PHY_LED_MANUAL_ON;
4547 status = i40e_write_phy_register(hw,
4548 I40E_PHY_COM_REG_PAGE,
4549 led_addr, phy_addr,
4550 led_reg);
4551 if (status)
4552 goto restore_config;
4553 msleep(interval);
4554 }
4555 }
4556
4557restore_config:
4558 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4559 phy_addr, led_ctl);
4560
4561phy_blinking_end:
4562 return status;
4563}
4564
4565/**
4566 * i40e_led_get_phy - return current on/off mode
4567 * @hw: pointer to the hw struct
4568 * @led_addr: address of led register to use
4569 * @val: original value of register to use
4570 *
4571 **/
4572i40e_status i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
4573 u16 *val)
4574{
4575 i40e_status status = 0;
4576 u16 gpio_led_port;
4577 u8 phy_addr = 0;
4578 u16 reg_val;
4579 u16 temp_addr;
4580 u8 port_num;
4581 u32 i;
4582
4583 temp_addr = I40E_PHY_LED_PROV_REG_1;
4584 i = rd32(hw, I40E_PFGEN_PORTNUM);
4585 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4586 phy_addr = i40e_get_phy_address(hw, port_num);
4587
4588 for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
4589 temp_addr++) {
4590 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4591 temp_addr, phy_addr, &reg_val);
4592 if (status)
4593 return status;
4594 *val = reg_val;
4595 if (reg_val & I40E_PHY_LED_LINK_MODE_MASK) {
4596 *led_addr = temp_addr;
4597 break;
4598 }
4599 }
4600 return status;
4601}
4602
4603/**
4604 * i40e_led_set_phy
4605 * @hw: pointer to the HW structure
4606 * @on: true or false
4607 * @mode: original val plus bit for set or ignore
4608 * Set led's on or off when controlled by the PHY
4609 *
4610 **/
4611i40e_status i40e_led_set_phy(struct i40e_hw *hw, bool on,
4612 u16 led_addr, u32 mode)
4613{
4614 i40e_status status = 0;
4615 u16 led_ctl = 0;
4616 u16 led_reg = 0;
4617 u8 phy_addr = 0;
4618 u8 port_num;
4619 u32 i;
4620
4621 i = rd32(hw, I40E_PFGEN_PORTNUM);
4622 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4623 phy_addr = i40e_get_phy_address(hw, port_num);
4624
4625 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4626 phy_addr, &led_reg);
4627 if (status)
4628 return status;
4629 led_ctl = led_reg;
4630 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
4631 led_reg = 0;
4632 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4633 led_addr, phy_addr, led_reg);
4634 if (status)
4635 return status;
4636 }
4637 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4638 led_addr, phy_addr, &led_reg);
4639 if (status)
4640 goto restore_config;
4641 if (on)
4642 led_reg = I40E_PHY_LED_MANUAL_ON;
4643 else
4644 led_reg = 0;
4645 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4646 led_addr, phy_addr, led_reg);
4647 if (status)
4648 goto restore_config;
4649 if (mode & I40E_PHY_LED_MODE_ORIG) {
4650 led_ctl = (mode & I40E_PHY_LED_MODE_MASK);
4651 status = i40e_write_phy_register(hw,
4652 I40E_PHY_COM_REG_PAGE,
4653 led_addr, phy_addr, led_ctl);
4654 }
4655 return status;
4656restore_config:
4657 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4658 phy_addr, led_ctl);
4659 return status;
4660}
Shannon Nelsonf6581372016-02-17 16:12:20 -08004661
4662/**
4663 * i40e_aq_rx_ctl_read_register - use FW to read from an Rx control register
4664 * @hw: pointer to the hw struct
4665 * @reg_addr: register address
4666 * @reg_val: ptr to register value
4667 * @cmd_details: pointer to command details structure or NULL
4668 *
4669 * Use the firmware to read the Rx control register,
4670 * especially useful if the Rx unit is under heavy pressure
4671 **/
4672i40e_status i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
4673 u32 reg_addr, u32 *reg_val,
4674 struct i40e_asq_cmd_details *cmd_details)
4675{
4676 struct i40e_aq_desc desc;
4677 struct i40e_aqc_rx_ctl_reg_read_write *cmd_resp =
4678 (struct i40e_aqc_rx_ctl_reg_read_write *)&desc.params.raw;
4679 i40e_status status;
4680
4681 if (!reg_val)
4682 return I40E_ERR_PARAM;
4683
4684 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_rx_ctl_reg_read);
4685
4686 cmd_resp->address = cpu_to_le32(reg_addr);
4687
4688 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4689
4690 if (status == 0)
4691 *reg_val = le32_to_cpu(cmd_resp->value);
4692
4693 return status;
4694}
4695
4696/**
4697 * i40e_read_rx_ctl - read from an Rx control register
4698 * @hw: pointer to the hw struct
4699 * @reg_addr: register address
4700 **/
4701u32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr)
4702{
4703 i40e_status status = 0;
4704 bool use_register;
4705 int retry = 5;
4706 u32 val = 0;
4707
4708 use_register = (hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver < 5);
4709 if (!use_register) {
4710do_retry:
4711 status = i40e_aq_rx_ctl_read_register(hw, reg_addr, &val, NULL);
4712 if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN && retry) {
4713 usleep_range(1000, 2000);
4714 retry--;
4715 goto do_retry;
4716 }
4717 }
4718
4719 /* if the AQ access failed, try the old-fashioned way */
4720 if (status || use_register)
4721 val = rd32(hw, reg_addr);
4722
4723 return val;
4724}
4725
4726/**
4727 * i40e_aq_rx_ctl_write_register
4728 * @hw: pointer to the hw struct
4729 * @reg_addr: register address
4730 * @reg_val: register value
4731 * @cmd_details: pointer to command details structure or NULL
4732 *
4733 * Use the firmware to write to an Rx control register,
4734 * especially useful if the Rx unit is under heavy pressure
4735 **/
4736i40e_status i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
4737 u32 reg_addr, u32 reg_val,
4738 struct i40e_asq_cmd_details *cmd_details)
4739{
4740 struct i40e_aq_desc desc;
4741 struct i40e_aqc_rx_ctl_reg_read_write *cmd =
4742 (struct i40e_aqc_rx_ctl_reg_read_write *)&desc.params.raw;
4743 i40e_status status;
4744
4745 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_rx_ctl_reg_write);
4746
4747 cmd->address = cpu_to_le32(reg_addr);
4748 cmd->value = cpu_to_le32(reg_val);
4749
4750 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4751
4752 return status;
4753}
4754
4755/**
4756 * i40e_write_rx_ctl - write to an Rx control register
4757 * @hw: pointer to the hw struct
4758 * @reg_addr: register address
4759 * @reg_val: register value
4760 **/
4761void i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val)
4762{
4763 i40e_status status = 0;
4764 bool use_register;
4765 int retry = 5;
4766
4767 use_register = (hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver < 5);
4768 if (!use_register) {
4769do_retry:
4770 status = i40e_aq_rx_ctl_write_register(hw, reg_addr,
4771 reg_val, NULL);
4772 if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN && retry) {
4773 usleep_range(1000, 2000);
4774 retry--;
4775 goto do_retry;
4776 }
4777 }
4778
4779 /* if the AQ access failed, try the old-fashioned way */
4780 if (status || use_register)
4781 wr32(hw, reg_addr, reg_val);
4782}