blob: d41719331976b5261addf7b03faa3b7773264f2f [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:
63 hw->mac.type = I40E_MAC_X722;
64 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +000065 default:
66 hw->mac.type = I40E_MAC_GENERIC;
67 break;
68 }
69 } else {
70 status = I40E_ERR_DEVICE_NOT_SUPPORTED;
71 }
72
73 hw_dbg(hw, "i40e_set_mac_type found mac: %d, returns: %d\n",
74 hw->mac.type, status);
75 return status;
76}
77
78/**
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040079 * i40e_aq_str - convert AQ err code to a string
80 * @hw: pointer to the HW structure
81 * @aq_err: the AQ error code to convert
82 **/
Jingjing Wu4e68adfe2015-09-28 14:12:31 -040083const char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040084{
85 switch (aq_err) {
86 case I40E_AQ_RC_OK:
87 return "OK";
88 case I40E_AQ_RC_EPERM:
89 return "I40E_AQ_RC_EPERM";
90 case I40E_AQ_RC_ENOENT:
91 return "I40E_AQ_RC_ENOENT";
92 case I40E_AQ_RC_ESRCH:
93 return "I40E_AQ_RC_ESRCH";
94 case I40E_AQ_RC_EINTR:
95 return "I40E_AQ_RC_EINTR";
96 case I40E_AQ_RC_EIO:
97 return "I40E_AQ_RC_EIO";
98 case I40E_AQ_RC_ENXIO:
99 return "I40E_AQ_RC_ENXIO";
100 case I40E_AQ_RC_E2BIG:
101 return "I40E_AQ_RC_E2BIG";
102 case I40E_AQ_RC_EAGAIN:
103 return "I40E_AQ_RC_EAGAIN";
104 case I40E_AQ_RC_ENOMEM:
105 return "I40E_AQ_RC_ENOMEM";
106 case I40E_AQ_RC_EACCES:
107 return "I40E_AQ_RC_EACCES";
108 case I40E_AQ_RC_EFAULT:
109 return "I40E_AQ_RC_EFAULT";
110 case I40E_AQ_RC_EBUSY:
111 return "I40E_AQ_RC_EBUSY";
112 case I40E_AQ_RC_EEXIST:
113 return "I40E_AQ_RC_EEXIST";
114 case I40E_AQ_RC_EINVAL:
115 return "I40E_AQ_RC_EINVAL";
116 case I40E_AQ_RC_ENOTTY:
117 return "I40E_AQ_RC_ENOTTY";
118 case I40E_AQ_RC_ENOSPC:
119 return "I40E_AQ_RC_ENOSPC";
120 case I40E_AQ_RC_ENOSYS:
121 return "I40E_AQ_RC_ENOSYS";
122 case I40E_AQ_RC_ERANGE:
123 return "I40E_AQ_RC_ERANGE";
124 case I40E_AQ_RC_EFLUSHED:
125 return "I40E_AQ_RC_EFLUSHED";
126 case I40E_AQ_RC_BAD_ADDR:
127 return "I40E_AQ_RC_BAD_ADDR";
128 case I40E_AQ_RC_EMODE:
129 return "I40E_AQ_RC_EMODE";
130 case I40E_AQ_RC_EFBIG:
131 return "I40E_AQ_RC_EFBIG";
132 }
133
134 snprintf(hw->err_str, sizeof(hw->err_str), "%d", aq_err);
135 return hw->err_str;
136}
137
138/**
139 * i40e_stat_str - convert status err code to a string
140 * @hw: pointer to the HW structure
141 * @stat_err: the status error code to convert
142 **/
Jingjing Wu4e68adfe2015-09-28 14:12:31 -0400143const char *i40e_stat_str(struct i40e_hw *hw, i40e_status stat_err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -0400144{
145 switch (stat_err) {
146 case 0:
147 return "OK";
148 case I40E_ERR_NVM:
149 return "I40E_ERR_NVM";
150 case I40E_ERR_NVM_CHECKSUM:
151 return "I40E_ERR_NVM_CHECKSUM";
152 case I40E_ERR_PHY:
153 return "I40E_ERR_PHY";
154 case I40E_ERR_CONFIG:
155 return "I40E_ERR_CONFIG";
156 case I40E_ERR_PARAM:
157 return "I40E_ERR_PARAM";
158 case I40E_ERR_MAC_TYPE:
159 return "I40E_ERR_MAC_TYPE";
160 case I40E_ERR_UNKNOWN_PHY:
161 return "I40E_ERR_UNKNOWN_PHY";
162 case I40E_ERR_LINK_SETUP:
163 return "I40E_ERR_LINK_SETUP";
164 case I40E_ERR_ADAPTER_STOPPED:
165 return "I40E_ERR_ADAPTER_STOPPED";
166 case I40E_ERR_INVALID_MAC_ADDR:
167 return "I40E_ERR_INVALID_MAC_ADDR";
168 case I40E_ERR_DEVICE_NOT_SUPPORTED:
169 return "I40E_ERR_DEVICE_NOT_SUPPORTED";
170 case I40E_ERR_MASTER_REQUESTS_PENDING:
171 return "I40E_ERR_MASTER_REQUESTS_PENDING";
172 case I40E_ERR_INVALID_LINK_SETTINGS:
173 return "I40E_ERR_INVALID_LINK_SETTINGS";
174 case I40E_ERR_AUTONEG_NOT_COMPLETE:
175 return "I40E_ERR_AUTONEG_NOT_COMPLETE";
176 case I40E_ERR_RESET_FAILED:
177 return "I40E_ERR_RESET_FAILED";
178 case I40E_ERR_SWFW_SYNC:
179 return "I40E_ERR_SWFW_SYNC";
180 case I40E_ERR_NO_AVAILABLE_VSI:
181 return "I40E_ERR_NO_AVAILABLE_VSI";
182 case I40E_ERR_NO_MEMORY:
183 return "I40E_ERR_NO_MEMORY";
184 case I40E_ERR_BAD_PTR:
185 return "I40E_ERR_BAD_PTR";
186 case I40E_ERR_RING_FULL:
187 return "I40E_ERR_RING_FULL";
188 case I40E_ERR_INVALID_PD_ID:
189 return "I40E_ERR_INVALID_PD_ID";
190 case I40E_ERR_INVALID_QP_ID:
191 return "I40E_ERR_INVALID_QP_ID";
192 case I40E_ERR_INVALID_CQ_ID:
193 return "I40E_ERR_INVALID_CQ_ID";
194 case I40E_ERR_INVALID_CEQ_ID:
195 return "I40E_ERR_INVALID_CEQ_ID";
196 case I40E_ERR_INVALID_AEQ_ID:
197 return "I40E_ERR_INVALID_AEQ_ID";
198 case I40E_ERR_INVALID_SIZE:
199 return "I40E_ERR_INVALID_SIZE";
200 case I40E_ERR_INVALID_ARP_INDEX:
201 return "I40E_ERR_INVALID_ARP_INDEX";
202 case I40E_ERR_INVALID_FPM_FUNC_ID:
203 return "I40E_ERR_INVALID_FPM_FUNC_ID";
204 case I40E_ERR_QP_INVALID_MSG_SIZE:
205 return "I40E_ERR_QP_INVALID_MSG_SIZE";
206 case I40E_ERR_QP_TOOMANY_WRS_POSTED:
207 return "I40E_ERR_QP_TOOMANY_WRS_POSTED";
208 case I40E_ERR_INVALID_FRAG_COUNT:
209 return "I40E_ERR_INVALID_FRAG_COUNT";
210 case I40E_ERR_QUEUE_EMPTY:
211 return "I40E_ERR_QUEUE_EMPTY";
212 case I40E_ERR_INVALID_ALIGNMENT:
213 return "I40E_ERR_INVALID_ALIGNMENT";
214 case I40E_ERR_FLUSHED_QUEUE:
215 return "I40E_ERR_FLUSHED_QUEUE";
216 case I40E_ERR_INVALID_PUSH_PAGE_INDEX:
217 return "I40E_ERR_INVALID_PUSH_PAGE_INDEX";
218 case I40E_ERR_INVALID_IMM_DATA_SIZE:
219 return "I40E_ERR_INVALID_IMM_DATA_SIZE";
220 case I40E_ERR_TIMEOUT:
221 return "I40E_ERR_TIMEOUT";
222 case I40E_ERR_OPCODE_MISMATCH:
223 return "I40E_ERR_OPCODE_MISMATCH";
224 case I40E_ERR_CQP_COMPL_ERROR:
225 return "I40E_ERR_CQP_COMPL_ERROR";
226 case I40E_ERR_INVALID_VF_ID:
227 return "I40E_ERR_INVALID_VF_ID";
228 case I40E_ERR_INVALID_HMCFN_ID:
229 return "I40E_ERR_INVALID_HMCFN_ID";
230 case I40E_ERR_BACKING_PAGE_ERROR:
231 return "I40E_ERR_BACKING_PAGE_ERROR";
232 case I40E_ERR_NO_PBLCHUNKS_AVAILABLE:
233 return "I40E_ERR_NO_PBLCHUNKS_AVAILABLE";
234 case I40E_ERR_INVALID_PBLE_INDEX:
235 return "I40E_ERR_INVALID_PBLE_INDEX";
236 case I40E_ERR_INVALID_SD_INDEX:
237 return "I40E_ERR_INVALID_SD_INDEX";
238 case I40E_ERR_INVALID_PAGE_DESC_INDEX:
239 return "I40E_ERR_INVALID_PAGE_DESC_INDEX";
240 case I40E_ERR_INVALID_SD_TYPE:
241 return "I40E_ERR_INVALID_SD_TYPE";
242 case I40E_ERR_MEMCPY_FAILED:
243 return "I40E_ERR_MEMCPY_FAILED";
244 case I40E_ERR_INVALID_HMC_OBJ_INDEX:
245 return "I40E_ERR_INVALID_HMC_OBJ_INDEX";
246 case I40E_ERR_INVALID_HMC_OBJ_COUNT:
247 return "I40E_ERR_INVALID_HMC_OBJ_COUNT";
248 case I40E_ERR_INVALID_SRQ_ARM_LIMIT:
249 return "I40E_ERR_INVALID_SRQ_ARM_LIMIT";
250 case I40E_ERR_SRQ_ENABLED:
251 return "I40E_ERR_SRQ_ENABLED";
252 case I40E_ERR_ADMIN_QUEUE_ERROR:
253 return "I40E_ERR_ADMIN_QUEUE_ERROR";
254 case I40E_ERR_ADMIN_QUEUE_TIMEOUT:
255 return "I40E_ERR_ADMIN_QUEUE_TIMEOUT";
256 case I40E_ERR_BUF_TOO_SHORT:
257 return "I40E_ERR_BUF_TOO_SHORT";
258 case I40E_ERR_ADMIN_QUEUE_FULL:
259 return "I40E_ERR_ADMIN_QUEUE_FULL";
260 case I40E_ERR_ADMIN_QUEUE_NO_WORK:
261 return "I40E_ERR_ADMIN_QUEUE_NO_WORK";
262 case I40E_ERR_BAD_IWARP_CQE:
263 return "I40E_ERR_BAD_IWARP_CQE";
264 case I40E_ERR_NVM_BLANK_MODE:
265 return "I40E_ERR_NVM_BLANK_MODE";
266 case I40E_ERR_NOT_IMPLEMENTED:
267 return "I40E_ERR_NOT_IMPLEMENTED";
268 case I40E_ERR_PE_DOORBELL_NOT_ENABLED:
269 return "I40E_ERR_PE_DOORBELL_NOT_ENABLED";
270 case I40E_ERR_DIAG_TEST_FAILED:
271 return "I40E_ERR_DIAG_TEST_FAILED";
272 case I40E_ERR_NOT_READY:
273 return "I40E_ERR_NOT_READY";
274 case I40E_NOT_SUPPORTED:
275 return "I40E_NOT_SUPPORTED";
276 case I40E_ERR_FIRMWARE_API_VERSION:
277 return "I40E_ERR_FIRMWARE_API_VERSION";
278 }
279
280 snprintf(hw->err_str, sizeof(hw->err_str), "%d", stat_err);
281 return hw->err_str;
282}
283
284/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000285 * i40e_debug_aq
286 * @hw: debug mask related to admin queue
Jeff Kirsher98d44382013-12-21 05:44:42 +0000287 * @mask: debug mask
288 * @desc: pointer to admin queue descriptor
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000289 * @buffer: pointer to command buffer
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000290 * @buf_len: max length of buffer
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000291 *
292 * Dumps debug log about adminq command with descriptor contents.
293 **/
294void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask, void *desc,
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000295 void *buffer, u16 buf_len)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000296{
297 struct i40e_aq_desc *aq_desc = (struct i40e_aq_desc *)desc;
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000298 u16 len = le16_to_cpu(aq_desc->datalen);
Shannon Nelson37a29732015-02-27 09:15:19 +0000299 u8 *buf = (u8 *)buffer;
300 u16 i = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000301
302 if ((!(mask & hw->debug_mask)) || (desc == NULL))
303 return;
304
305 i40e_debug(hw, mask,
306 "AQ CMD: opcode 0x%04X, flags 0x%04X, datalen 0x%04X, retval 0x%04X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000307 le16_to_cpu(aq_desc->opcode),
308 le16_to_cpu(aq_desc->flags),
309 le16_to_cpu(aq_desc->datalen),
310 le16_to_cpu(aq_desc->retval));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000311 i40e_debug(hw, mask, "\tcookie (h,l) 0x%08X 0x%08X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000312 le32_to_cpu(aq_desc->cookie_high),
313 le32_to_cpu(aq_desc->cookie_low));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000314 i40e_debug(hw, mask, "\tparam (0,1) 0x%08X 0x%08X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000315 le32_to_cpu(aq_desc->params.internal.param0),
316 le32_to_cpu(aq_desc->params.internal.param1));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000317 i40e_debug(hw, mask, "\taddr (h,l) 0x%08X 0x%08X\n",
Paul M Stillwell Jrf1abd7d2015-02-06 08:52:07 +0000318 le32_to_cpu(aq_desc->params.external.addr_high),
319 le32_to_cpu(aq_desc->params.external.addr_low));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000320
321 if ((buffer != NULL) && (aq_desc->datalen != 0)) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000322 i40e_debug(hw, mask, "AQ CMD Buffer:\n");
Shannon Nelsonf905dd62014-07-10 07:58:20 +0000323 if (buf_len < len)
324 len = buf_len;
Shannon Nelson37a29732015-02-27 09:15:19 +0000325 /* write the full 16-byte chunks */
326 for (i = 0; i < (len - 16); i += 16)
Andy Shevchenkoa3524e92015-10-02 12:18:16 +0300327 i40e_debug(hw, mask, "\t0x%04X %16ph\n", i, buf + i);
Shannon Nelson37a29732015-02-27 09:15:19 +0000328 /* write whatever's left over without overrunning the buffer */
Andy Shevchenkoa3524e92015-10-02 12:18:16 +0300329 if (i < len)
330 i40e_debug(hw, mask, "\t0x%04X %*ph\n",
331 i, len - i, buf + i);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000332 }
333}
334
335/**
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +0000336 * i40e_check_asq_alive
337 * @hw: pointer to the hw struct
338 *
339 * Returns true if Queue is enabled else false.
340 **/
341bool i40e_check_asq_alive(struct i40e_hw *hw)
342{
Kevin Scott8b833b42014-04-09 05:58:54 +0000343 if (hw->aq.asq.len)
344 return !!(rd32(hw, hw->aq.asq.len) &
345 I40E_PF_ATQLEN_ATQENABLE_MASK);
346 else
347 return false;
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +0000348}
349
350/**
351 * i40e_aq_queue_shutdown
352 * @hw: pointer to the hw struct
353 * @unloading: is the driver unloading itself
354 *
355 * Tell the Firmware that we're shutting down the AdminQ and whether
356 * or not the driver is unloading as well.
357 **/
358i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw,
359 bool unloading)
360{
361 struct i40e_aq_desc desc;
362 struct i40e_aqc_queue_shutdown *cmd =
363 (struct i40e_aqc_queue_shutdown *)&desc.params.raw;
364 i40e_status status;
365
366 i40e_fill_default_direct_cmd_desc(&desc,
367 i40e_aqc_opc_queue_shutdown);
368
369 if (unloading)
370 cmd->driver_unloading = cpu_to_le32(I40E_AQ_DRIVER_UNLOADING);
371 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
372
373 return status;
374}
375
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400376/**
377 * i40e_aq_get_set_rss_lut
378 * @hw: pointer to the hardware structure
379 * @vsi_id: vsi fw index
380 * @pf_lut: for PF table set true, for VSI table set false
381 * @lut: pointer to the lut buffer provided by the caller
382 * @lut_size: size of the lut buffer
383 * @set: set true to set the table, false to get the table
384 *
385 * Internal function to get or set RSS look up table
386 **/
387static i40e_status i40e_aq_get_set_rss_lut(struct i40e_hw *hw,
388 u16 vsi_id, bool pf_lut,
389 u8 *lut, u16 lut_size,
390 bool set)
391{
392 i40e_status status;
393 struct i40e_aq_desc desc;
394 struct i40e_aqc_get_set_rss_lut *cmd_resp =
395 (struct i40e_aqc_get_set_rss_lut *)&desc.params.raw;
396
397 if (set)
398 i40e_fill_default_direct_cmd_desc(&desc,
399 i40e_aqc_opc_set_rss_lut);
400 else
401 i40e_fill_default_direct_cmd_desc(&desc,
402 i40e_aqc_opc_get_rss_lut);
403
404 /* Indirect command */
405 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
406 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
407
408 cmd_resp->vsi_id =
409 cpu_to_le16((u16)((vsi_id <<
410 I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT) &
411 I40E_AQC_SET_RSS_LUT_VSI_ID_MASK));
412 cmd_resp->vsi_id |= cpu_to_le16((u16)I40E_AQC_SET_RSS_LUT_VSI_VALID);
413
414 if (pf_lut)
415 cmd_resp->flags |= cpu_to_le16((u16)
416 ((I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF <<
417 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT) &
418 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK));
419 else
420 cmd_resp->flags |= cpu_to_le16((u16)
421 ((I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI <<
422 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT) &
423 I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK));
424
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400425 status = i40e_asq_send_command(hw, &desc, lut, lut_size, NULL);
426
427 return status;
428}
429
430/**
431 * i40e_aq_get_rss_lut
432 * @hw: pointer to the hardware structure
433 * @vsi_id: vsi fw index
434 * @pf_lut: for PF table set true, for VSI table set false
435 * @lut: pointer to the lut buffer provided by the caller
436 * @lut_size: size of the lut buffer
437 *
438 * get the RSS lookup table, PF or VSI type
439 **/
440i40e_status i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 vsi_id,
441 bool pf_lut, u8 *lut, u16 lut_size)
442{
443 return i40e_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size,
444 false);
445}
446
447/**
448 * i40e_aq_set_rss_lut
449 * @hw: pointer to the hardware structure
450 * @vsi_id: vsi fw index
451 * @pf_lut: for PF table set true, for VSI table set false
452 * @lut: pointer to the lut buffer provided by the caller
453 * @lut_size: size of the lut buffer
454 *
455 * set the RSS lookup table, PF or VSI type
456 **/
457i40e_status i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 vsi_id,
458 bool pf_lut, u8 *lut, u16 lut_size)
459{
460 return i40e_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size, true);
461}
462
463/**
464 * i40e_aq_get_set_rss_key
465 * @hw: pointer to the hw struct
466 * @vsi_id: vsi fw index
467 * @key: pointer to key info struct
468 * @set: set true to set the key, false to get the key
469 *
470 * get the RSS key per VSI
471 **/
472static i40e_status i40e_aq_get_set_rss_key(struct i40e_hw *hw,
473 u16 vsi_id,
474 struct i40e_aqc_get_set_rss_key_data *key,
475 bool set)
476{
477 i40e_status status;
478 struct i40e_aq_desc desc;
479 struct i40e_aqc_get_set_rss_key *cmd_resp =
480 (struct i40e_aqc_get_set_rss_key *)&desc.params.raw;
481 u16 key_size = sizeof(struct i40e_aqc_get_set_rss_key_data);
482
483 if (set)
484 i40e_fill_default_direct_cmd_desc(&desc,
485 i40e_aqc_opc_set_rss_key);
486 else
487 i40e_fill_default_direct_cmd_desc(&desc,
488 i40e_aqc_opc_get_rss_key);
489
490 /* Indirect command */
491 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
492 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
493
494 cmd_resp->vsi_id =
495 cpu_to_le16((u16)((vsi_id <<
496 I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT) &
497 I40E_AQC_SET_RSS_KEY_VSI_ID_MASK));
498 cmd_resp->vsi_id |= cpu_to_le16((u16)I40E_AQC_SET_RSS_KEY_VSI_VALID);
Anjali Singhai Jaine50c8d62015-06-05 12:20:27 -0400499
500 status = i40e_asq_send_command(hw, &desc, key, key_size, NULL);
501
502 return status;
503}
504
505/**
506 * i40e_aq_get_rss_key
507 * @hw: pointer to the hw struct
508 * @vsi_id: vsi fw index
509 * @key: pointer to key info struct
510 *
511 **/
512i40e_status i40e_aq_get_rss_key(struct i40e_hw *hw,
513 u16 vsi_id,
514 struct i40e_aqc_get_set_rss_key_data *key)
515{
516 return i40e_aq_get_set_rss_key(hw, vsi_id, key, false);
517}
518
519/**
520 * i40e_aq_set_rss_key
521 * @hw: pointer to the hw struct
522 * @vsi_id: vsi fw index
523 * @key: pointer to key info struct
524 *
525 * set the RSS key per VSI
526 **/
527i40e_status i40e_aq_set_rss_key(struct i40e_hw *hw,
528 u16 vsi_id,
529 struct i40e_aqc_get_set_rss_key_data *key)
530{
531 return i40e_aq_get_set_rss_key(hw, vsi_id, key, true);
532}
533
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000534/* The i40e_ptype_lookup table is used to convert from the 8-bit ptype in the
535 * hardware to a bit-field that can be used by SW to more easily determine the
536 * packet type.
537 *
538 * Macros are used to shorten the table lines and make this table human
539 * readable.
540 *
541 * We store the PTYPE in the top byte of the bit field - this is just so that
542 * we can check that the table doesn't have a row missing, as the index into
543 * the table should be the PTYPE.
544 *
545 * Typical work flow:
546 *
547 * IF NOT i40e_ptype_lookup[ptype].known
548 * THEN
549 * Packet is unknown
550 * ELSE IF i40e_ptype_lookup[ptype].outer_ip == I40E_RX_PTYPE_OUTER_IP
551 * Use the rest of the fields to look at the tunnels, inner protocols, etc
552 * ELSE
553 * Use the enum i40e_rx_l2_ptype to decode the packet type
554 * ENDIF
555 */
556
557/* macro to make the table lines short */
558#define I40E_PTT(PTYPE, OUTER_IP, OUTER_IP_VER, OUTER_FRAG, T, TE, TEF, I, PL)\
559 { PTYPE, \
560 1, \
561 I40E_RX_PTYPE_OUTER_##OUTER_IP, \
562 I40E_RX_PTYPE_OUTER_##OUTER_IP_VER, \
563 I40E_RX_PTYPE_##OUTER_FRAG, \
564 I40E_RX_PTYPE_TUNNEL_##T, \
565 I40E_RX_PTYPE_TUNNEL_END_##TE, \
566 I40E_RX_PTYPE_##TEF, \
567 I40E_RX_PTYPE_INNER_PROT_##I, \
568 I40E_RX_PTYPE_PAYLOAD_LAYER_##PL }
569
570#define I40E_PTT_UNUSED_ENTRY(PTYPE) \
571 { PTYPE, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
572
573/* shorter macros makes the table fit but are terse */
574#define I40E_RX_PTYPE_NOF I40E_RX_PTYPE_NOT_FRAG
575#define I40E_RX_PTYPE_FRG I40E_RX_PTYPE_FRAG
576#define I40E_RX_PTYPE_INNER_PROT_TS I40E_RX_PTYPE_INNER_PROT_TIMESYNC
577
578/* Lookup table mapping the HW PTYPE to the bit field for decoding */
579struct i40e_rx_ptype_decoded i40e_ptype_lookup[] = {
580 /* L2 Packet types */
581 I40E_PTT_UNUSED_ENTRY(0),
582 I40E_PTT(1, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
583 I40E_PTT(2, L2, NONE, NOF, NONE, NONE, NOF, TS, PAY2),
584 I40E_PTT(3, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
585 I40E_PTT_UNUSED_ENTRY(4),
586 I40E_PTT_UNUSED_ENTRY(5),
587 I40E_PTT(6, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
588 I40E_PTT(7, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
589 I40E_PTT_UNUSED_ENTRY(8),
590 I40E_PTT_UNUSED_ENTRY(9),
591 I40E_PTT(10, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
592 I40E_PTT(11, L2, NONE, NOF, NONE, NONE, NOF, NONE, NONE),
593 I40E_PTT(12, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
594 I40E_PTT(13, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
595 I40E_PTT(14, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
596 I40E_PTT(15, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
597 I40E_PTT(16, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
598 I40E_PTT(17, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
599 I40E_PTT(18, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
600 I40E_PTT(19, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
601 I40E_PTT(20, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
602 I40E_PTT(21, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
603
604 /* Non Tunneled IPv4 */
605 I40E_PTT(22, IP, IPV4, FRG, NONE, NONE, NOF, NONE, PAY3),
606 I40E_PTT(23, IP, IPV4, NOF, NONE, NONE, NOF, NONE, PAY3),
607 I40E_PTT(24, IP, IPV4, NOF, NONE, NONE, NOF, UDP, PAY4),
608 I40E_PTT_UNUSED_ENTRY(25),
609 I40E_PTT(26, IP, IPV4, NOF, NONE, NONE, NOF, TCP, PAY4),
610 I40E_PTT(27, IP, IPV4, NOF, NONE, NONE, NOF, SCTP, PAY4),
611 I40E_PTT(28, IP, IPV4, NOF, NONE, NONE, NOF, ICMP, PAY4),
612
613 /* IPv4 --> IPv4 */
614 I40E_PTT(29, IP, IPV4, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
615 I40E_PTT(30, IP, IPV4, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
616 I40E_PTT(31, IP, IPV4, NOF, IP_IP, IPV4, NOF, UDP, PAY4),
617 I40E_PTT_UNUSED_ENTRY(32),
618 I40E_PTT(33, IP, IPV4, NOF, IP_IP, IPV4, NOF, TCP, PAY4),
619 I40E_PTT(34, IP, IPV4, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
620 I40E_PTT(35, IP, IPV4, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
621
622 /* IPv4 --> IPv6 */
623 I40E_PTT(36, IP, IPV4, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
624 I40E_PTT(37, IP, IPV4, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
625 I40E_PTT(38, IP, IPV4, NOF, IP_IP, IPV6, NOF, UDP, PAY4),
626 I40E_PTT_UNUSED_ENTRY(39),
627 I40E_PTT(40, IP, IPV4, NOF, IP_IP, IPV6, NOF, TCP, PAY4),
628 I40E_PTT(41, IP, IPV4, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
629 I40E_PTT(42, IP, IPV4, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
630
631 /* IPv4 --> GRE/NAT */
632 I40E_PTT(43, IP, IPV4, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
633
634 /* IPv4 --> GRE/NAT --> IPv4 */
635 I40E_PTT(44, IP, IPV4, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
636 I40E_PTT(45, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
637 I40E_PTT(46, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, UDP, PAY4),
638 I40E_PTT_UNUSED_ENTRY(47),
639 I40E_PTT(48, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, TCP, PAY4),
640 I40E_PTT(49, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
641 I40E_PTT(50, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
642
643 /* IPv4 --> GRE/NAT --> IPv6 */
644 I40E_PTT(51, IP, IPV4, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
645 I40E_PTT(52, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
646 I40E_PTT(53, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, UDP, PAY4),
647 I40E_PTT_UNUSED_ENTRY(54),
648 I40E_PTT(55, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, TCP, PAY4),
649 I40E_PTT(56, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
650 I40E_PTT(57, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
651
652 /* IPv4 --> GRE/NAT --> MAC */
653 I40E_PTT(58, IP, IPV4, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
654
655 /* IPv4 --> GRE/NAT --> MAC --> IPv4 */
656 I40E_PTT(59, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
657 I40E_PTT(60, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
658 I40E_PTT(61, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP, PAY4),
659 I40E_PTT_UNUSED_ENTRY(62),
660 I40E_PTT(63, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP, PAY4),
661 I40E_PTT(64, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
662 I40E_PTT(65, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
663
664 /* IPv4 --> GRE/NAT -> MAC --> IPv6 */
665 I40E_PTT(66, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
666 I40E_PTT(67, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
667 I40E_PTT(68, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP, PAY4),
668 I40E_PTT_UNUSED_ENTRY(69),
669 I40E_PTT(70, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP, PAY4),
670 I40E_PTT(71, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
671 I40E_PTT(72, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
672
673 /* IPv4 --> GRE/NAT --> MAC/VLAN */
674 I40E_PTT(73, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
675
676 /* IPv4 ---> GRE/NAT -> MAC/VLAN --> IPv4 */
677 I40E_PTT(74, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
678 I40E_PTT(75, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
679 I40E_PTT(76, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP, PAY4),
680 I40E_PTT_UNUSED_ENTRY(77),
681 I40E_PTT(78, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP, PAY4),
682 I40E_PTT(79, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
683 I40E_PTT(80, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
684
685 /* IPv4 -> GRE/NAT -> MAC/VLAN --> IPv6 */
686 I40E_PTT(81, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
687 I40E_PTT(82, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
688 I40E_PTT(83, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP, PAY4),
689 I40E_PTT_UNUSED_ENTRY(84),
690 I40E_PTT(85, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP, PAY4),
691 I40E_PTT(86, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
692 I40E_PTT(87, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
693
694 /* Non Tunneled IPv6 */
695 I40E_PTT(88, IP, IPV6, FRG, NONE, NONE, NOF, NONE, PAY3),
696 I40E_PTT(89, IP, IPV6, NOF, NONE, NONE, NOF, NONE, PAY3),
697 I40E_PTT(90, IP, IPV6, NOF, NONE, NONE, NOF, UDP, PAY3),
698 I40E_PTT_UNUSED_ENTRY(91),
699 I40E_PTT(92, IP, IPV6, NOF, NONE, NONE, NOF, TCP, PAY4),
700 I40E_PTT(93, IP, IPV6, NOF, NONE, NONE, NOF, SCTP, PAY4),
701 I40E_PTT(94, IP, IPV6, NOF, NONE, NONE, NOF, ICMP, PAY4),
702
703 /* IPv6 --> IPv4 */
704 I40E_PTT(95, IP, IPV6, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
705 I40E_PTT(96, IP, IPV6, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
706 I40E_PTT(97, IP, IPV6, NOF, IP_IP, IPV4, NOF, UDP, PAY4),
707 I40E_PTT_UNUSED_ENTRY(98),
708 I40E_PTT(99, IP, IPV6, NOF, IP_IP, IPV4, NOF, TCP, PAY4),
709 I40E_PTT(100, IP, IPV6, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
710 I40E_PTT(101, IP, IPV6, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
711
712 /* IPv6 --> IPv6 */
713 I40E_PTT(102, IP, IPV6, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
714 I40E_PTT(103, IP, IPV6, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
715 I40E_PTT(104, IP, IPV6, NOF, IP_IP, IPV6, NOF, UDP, PAY4),
716 I40E_PTT_UNUSED_ENTRY(105),
717 I40E_PTT(106, IP, IPV6, NOF, IP_IP, IPV6, NOF, TCP, PAY4),
718 I40E_PTT(107, IP, IPV6, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
719 I40E_PTT(108, IP, IPV6, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
720
721 /* IPv6 --> GRE/NAT */
722 I40E_PTT(109, IP, IPV6, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
723
724 /* IPv6 --> GRE/NAT -> IPv4 */
725 I40E_PTT(110, IP, IPV6, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
726 I40E_PTT(111, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
727 I40E_PTT(112, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, UDP, PAY4),
728 I40E_PTT_UNUSED_ENTRY(113),
729 I40E_PTT(114, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, TCP, PAY4),
730 I40E_PTT(115, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
731 I40E_PTT(116, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
732
733 /* IPv6 --> GRE/NAT -> IPv6 */
734 I40E_PTT(117, IP, IPV6, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
735 I40E_PTT(118, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
736 I40E_PTT(119, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, UDP, PAY4),
737 I40E_PTT_UNUSED_ENTRY(120),
738 I40E_PTT(121, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, TCP, PAY4),
739 I40E_PTT(122, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
740 I40E_PTT(123, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
741
742 /* IPv6 --> GRE/NAT -> MAC */
743 I40E_PTT(124, IP, IPV6, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
744
745 /* IPv6 --> GRE/NAT -> MAC -> IPv4 */
746 I40E_PTT(125, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
747 I40E_PTT(126, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
748 I40E_PTT(127, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP, PAY4),
749 I40E_PTT_UNUSED_ENTRY(128),
750 I40E_PTT(129, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP, PAY4),
751 I40E_PTT(130, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
752 I40E_PTT(131, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
753
754 /* IPv6 --> GRE/NAT -> MAC -> IPv6 */
755 I40E_PTT(132, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
756 I40E_PTT(133, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
757 I40E_PTT(134, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP, PAY4),
758 I40E_PTT_UNUSED_ENTRY(135),
759 I40E_PTT(136, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP, PAY4),
760 I40E_PTT(137, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
761 I40E_PTT(138, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
762
763 /* IPv6 --> GRE/NAT -> MAC/VLAN */
764 I40E_PTT(139, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
765
766 /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv4 */
767 I40E_PTT(140, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
768 I40E_PTT(141, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
769 I40E_PTT(142, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP, PAY4),
770 I40E_PTT_UNUSED_ENTRY(143),
771 I40E_PTT(144, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP, PAY4),
772 I40E_PTT(145, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
773 I40E_PTT(146, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
774
775 /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv6 */
776 I40E_PTT(147, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
777 I40E_PTT(148, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
778 I40E_PTT(149, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP, PAY4),
779 I40E_PTT_UNUSED_ENTRY(150),
780 I40E_PTT(151, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP, PAY4),
781 I40E_PTT(152, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
782 I40E_PTT(153, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
783
784 /* unused entries */
785 I40E_PTT_UNUSED_ENTRY(154),
786 I40E_PTT_UNUSED_ENTRY(155),
787 I40E_PTT_UNUSED_ENTRY(156),
788 I40E_PTT_UNUSED_ENTRY(157),
789 I40E_PTT_UNUSED_ENTRY(158),
790 I40E_PTT_UNUSED_ENTRY(159),
791
792 I40E_PTT_UNUSED_ENTRY(160),
793 I40E_PTT_UNUSED_ENTRY(161),
794 I40E_PTT_UNUSED_ENTRY(162),
795 I40E_PTT_UNUSED_ENTRY(163),
796 I40E_PTT_UNUSED_ENTRY(164),
797 I40E_PTT_UNUSED_ENTRY(165),
798 I40E_PTT_UNUSED_ENTRY(166),
799 I40E_PTT_UNUSED_ENTRY(167),
800 I40E_PTT_UNUSED_ENTRY(168),
801 I40E_PTT_UNUSED_ENTRY(169),
802
803 I40E_PTT_UNUSED_ENTRY(170),
804 I40E_PTT_UNUSED_ENTRY(171),
805 I40E_PTT_UNUSED_ENTRY(172),
806 I40E_PTT_UNUSED_ENTRY(173),
807 I40E_PTT_UNUSED_ENTRY(174),
808 I40E_PTT_UNUSED_ENTRY(175),
809 I40E_PTT_UNUSED_ENTRY(176),
810 I40E_PTT_UNUSED_ENTRY(177),
811 I40E_PTT_UNUSED_ENTRY(178),
812 I40E_PTT_UNUSED_ENTRY(179),
813
814 I40E_PTT_UNUSED_ENTRY(180),
815 I40E_PTT_UNUSED_ENTRY(181),
816 I40E_PTT_UNUSED_ENTRY(182),
817 I40E_PTT_UNUSED_ENTRY(183),
818 I40E_PTT_UNUSED_ENTRY(184),
819 I40E_PTT_UNUSED_ENTRY(185),
820 I40E_PTT_UNUSED_ENTRY(186),
821 I40E_PTT_UNUSED_ENTRY(187),
822 I40E_PTT_UNUSED_ENTRY(188),
823 I40E_PTT_UNUSED_ENTRY(189),
824
825 I40E_PTT_UNUSED_ENTRY(190),
826 I40E_PTT_UNUSED_ENTRY(191),
827 I40E_PTT_UNUSED_ENTRY(192),
828 I40E_PTT_UNUSED_ENTRY(193),
829 I40E_PTT_UNUSED_ENTRY(194),
830 I40E_PTT_UNUSED_ENTRY(195),
831 I40E_PTT_UNUSED_ENTRY(196),
832 I40E_PTT_UNUSED_ENTRY(197),
833 I40E_PTT_UNUSED_ENTRY(198),
834 I40E_PTT_UNUSED_ENTRY(199),
835
836 I40E_PTT_UNUSED_ENTRY(200),
837 I40E_PTT_UNUSED_ENTRY(201),
838 I40E_PTT_UNUSED_ENTRY(202),
839 I40E_PTT_UNUSED_ENTRY(203),
840 I40E_PTT_UNUSED_ENTRY(204),
841 I40E_PTT_UNUSED_ENTRY(205),
842 I40E_PTT_UNUSED_ENTRY(206),
843 I40E_PTT_UNUSED_ENTRY(207),
844 I40E_PTT_UNUSED_ENTRY(208),
845 I40E_PTT_UNUSED_ENTRY(209),
846
847 I40E_PTT_UNUSED_ENTRY(210),
848 I40E_PTT_UNUSED_ENTRY(211),
849 I40E_PTT_UNUSED_ENTRY(212),
850 I40E_PTT_UNUSED_ENTRY(213),
851 I40E_PTT_UNUSED_ENTRY(214),
852 I40E_PTT_UNUSED_ENTRY(215),
853 I40E_PTT_UNUSED_ENTRY(216),
854 I40E_PTT_UNUSED_ENTRY(217),
855 I40E_PTT_UNUSED_ENTRY(218),
856 I40E_PTT_UNUSED_ENTRY(219),
857
858 I40E_PTT_UNUSED_ENTRY(220),
859 I40E_PTT_UNUSED_ENTRY(221),
860 I40E_PTT_UNUSED_ENTRY(222),
861 I40E_PTT_UNUSED_ENTRY(223),
862 I40E_PTT_UNUSED_ENTRY(224),
863 I40E_PTT_UNUSED_ENTRY(225),
864 I40E_PTT_UNUSED_ENTRY(226),
865 I40E_PTT_UNUSED_ENTRY(227),
866 I40E_PTT_UNUSED_ENTRY(228),
867 I40E_PTT_UNUSED_ENTRY(229),
868
869 I40E_PTT_UNUSED_ENTRY(230),
870 I40E_PTT_UNUSED_ENTRY(231),
871 I40E_PTT_UNUSED_ENTRY(232),
872 I40E_PTT_UNUSED_ENTRY(233),
873 I40E_PTT_UNUSED_ENTRY(234),
874 I40E_PTT_UNUSED_ENTRY(235),
875 I40E_PTT_UNUSED_ENTRY(236),
876 I40E_PTT_UNUSED_ENTRY(237),
877 I40E_PTT_UNUSED_ENTRY(238),
878 I40E_PTT_UNUSED_ENTRY(239),
879
880 I40E_PTT_UNUSED_ENTRY(240),
881 I40E_PTT_UNUSED_ENTRY(241),
882 I40E_PTT_UNUSED_ENTRY(242),
883 I40E_PTT_UNUSED_ENTRY(243),
884 I40E_PTT_UNUSED_ENTRY(244),
885 I40E_PTT_UNUSED_ENTRY(245),
886 I40E_PTT_UNUSED_ENTRY(246),
887 I40E_PTT_UNUSED_ENTRY(247),
888 I40E_PTT_UNUSED_ENTRY(248),
889 I40E_PTT_UNUSED_ENTRY(249),
890
891 I40E_PTT_UNUSED_ENTRY(250),
892 I40E_PTT_UNUSED_ENTRY(251),
893 I40E_PTT_UNUSED_ENTRY(252),
894 I40E_PTT_UNUSED_ENTRY(253),
895 I40E_PTT_UNUSED_ENTRY(254),
896 I40E_PTT_UNUSED_ENTRY(255)
897};
898
Anjali Singhai Jaine1860d82013-11-28 06:39:45 +0000899/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000900 * i40e_init_shared_code - Initialize the shared code
901 * @hw: pointer to hardware structure
902 *
903 * This assigns the MAC type and PHY code and inits the NVM.
904 * Does not touch the hardware. This function must be called prior to any
905 * other function in the shared code. The i40e_hw structure should be
906 * memset to 0 prior to calling this function. The following fields in
907 * hw structure should be filled in prior to calling this function:
908 * hw_addr, back, device_id, vendor_id, subsystem_device_id,
909 * subsystem_vendor_id, and revision_id
910 **/
911i40e_status i40e_init_shared_code(struct i40e_hw *hw)
912{
913 i40e_status status = 0;
Shannon Nelson5fb11d72014-11-13 03:06:19 +0000914 u32 port, ari, func_rid;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000915
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000916 i40e_set_mac_type(hw);
917
918 switch (hw->mac.type) {
919 case I40E_MAC_XL710:
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -0400920 case I40E_MAC_X722:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000921 break;
922 default:
923 return I40E_ERR_DEVICE_NOT_SUPPORTED;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000924 }
925
Shannon Nelsonaf89d26c2013-12-11 08:17:14 +0000926 hw->phy.get_link_info = true;
927
Shannon Nelson5fb11d72014-11-13 03:06:19 +0000928 /* Determine port number and PF number*/
929 port = (rd32(hw, I40E_PFGEN_PORTNUM) & I40E_PFGEN_PORTNUM_PORT_NUM_MASK)
930 >> I40E_PFGEN_PORTNUM_PORT_NUM_SHIFT;
931 hw->port = (u8)port;
932 ari = (rd32(hw, I40E_GLPCI_CAPSUP) & I40E_GLPCI_CAPSUP_ARI_EN_MASK) >>
933 I40E_GLPCI_CAPSUP_ARI_EN_SHIFT;
934 func_rid = rd32(hw, I40E_PF_FUNC_RID);
935 if (ari)
936 hw->pf_id = (u8)(func_rid & 0xff);
Shannon Nelson5f9116a2013-12-11 08:17:13 +0000937 else
Shannon Nelson5fb11d72014-11-13 03:06:19 +0000938 hw->pf_id = (u8)(func_rid & 0x7);
Shannon Nelson5f9116a2013-12-11 08:17:13 +0000939
Anjali Singhai07f89be2015-09-24 15:26:32 -0700940 if (hw->mac.type == I40E_MAC_X722)
941 hw->flags |= I40E_HW_FLAG_AQ_SRCTL_ACCESS_ENABLE;
942
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000943 status = i40e_init_nvm(hw);
944 return status;
945}
946
947/**
948 * i40e_aq_mac_address_read - Retrieve the MAC addresses
949 * @hw: pointer to the hw struct
950 * @flags: a return indicator of what addresses were added to the addr store
951 * @addrs: the requestor's mac addr store
952 * @cmd_details: pointer to command details structure or NULL
953 **/
954static i40e_status i40e_aq_mac_address_read(struct i40e_hw *hw,
955 u16 *flags,
956 struct i40e_aqc_mac_address_read_data *addrs,
957 struct i40e_asq_cmd_details *cmd_details)
958{
959 struct i40e_aq_desc desc;
960 struct i40e_aqc_mac_address_read *cmd_data =
961 (struct i40e_aqc_mac_address_read *)&desc.params.raw;
962 i40e_status status;
963
964 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_mac_address_read);
965 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_BUF);
966
967 status = i40e_asq_send_command(hw, &desc, addrs,
968 sizeof(*addrs), cmd_details);
969 *flags = le16_to_cpu(cmd_data->command_flags);
970
971 return status;
972}
973
974/**
975 * i40e_aq_mac_address_write - Change the MAC addresses
976 * @hw: pointer to the hw struct
977 * @flags: indicates which MAC to be written
978 * @mac_addr: address to write
979 * @cmd_details: pointer to command details structure or NULL
980 **/
981i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
982 u16 flags, u8 *mac_addr,
983 struct i40e_asq_cmd_details *cmd_details)
984{
985 struct i40e_aq_desc desc;
986 struct i40e_aqc_mac_address_write *cmd_data =
987 (struct i40e_aqc_mac_address_write *)&desc.params.raw;
988 i40e_status status;
989
990 i40e_fill_default_direct_cmd_desc(&desc,
991 i40e_aqc_opc_mac_address_write);
992 cmd_data->command_flags = cpu_to_le16(flags);
Kamil Krawczyk55c29c32013-12-18 13:45:52 +0000993 cmd_data->mac_sah = cpu_to_le16((u16)mac_addr[0] << 8 | mac_addr[1]);
994 cmd_data->mac_sal = cpu_to_le32(((u32)mac_addr[2] << 24) |
995 ((u32)mac_addr[3] << 16) |
996 ((u32)mac_addr[4] << 8) |
997 mac_addr[5]);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +0000998
999 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1000
1001 return status;
1002}
1003
1004/**
1005 * i40e_get_mac_addr - get MAC address
1006 * @hw: pointer to the HW structure
1007 * @mac_addr: pointer to MAC address
1008 *
1009 * Reads the adapter's MAC address from register
1010 **/
1011i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1012{
1013 struct i40e_aqc_mac_address_read_data addrs;
1014 i40e_status status;
1015 u16 flags = 0;
1016
1017 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1018
1019 if (flags & I40E_AQC_LAN_ADDR_VALID)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001020 ether_addr_copy(mac_addr, addrs.pf_lan_mac);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001021
1022 return status;
1023}
1024
1025/**
Neerav Parikh1f224ad2014-02-12 01:45:31 +00001026 * i40e_get_port_mac_addr - get Port MAC address
1027 * @hw: pointer to the HW structure
1028 * @mac_addr: pointer to Port MAC address
1029 *
1030 * Reads the adapter's Port MAC address
1031 **/
1032i40e_status i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1033{
1034 struct i40e_aqc_mac_address_read_data addrs;
1035 i40e_status status;
1036 u16 flags = 0;
1037
1038 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1039 if (status)
1040 return status;
1041
1042 if (flags & I40E_AQC_PORT_ADDR_VALID)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001043 ether_addr_copy(mac_addr, addrs.port_mac);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00001044 else
1045 status = I40E_ERR_INVALID_MAC_ADDR;
1046
1047 return status;
1048}
1049
1050/**
Matt Jared351499ab2014-04-23 04:50:03 +00001051 * i40e_pre_tx_queue_cfg - pre tx queue configure
1052 * @hw: pointer to the HW structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001053 * @queue: target PF queue index
Matt Jared351499ab2014-04-23 04:50:03 +00001054 * @enable: state change request
1055 *
1056 * Handles hw requirement to indicate intention to enable
1057 * or disable target queue.
1058 **/
1059void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable)
1060{
Shannon Nelsondfb699f2014-05-22 06:32:28 +00001061 u32 abs_queue_idx = hw->func_caps.base_queue + queue;
Matt Jared351499ab2014-04-23 04:50:03 +00001062 u32 reg_block = 0;
Shannon Nelsondfb699f2014-05-22 06:32:28 +00001063 u32 reg_val;
Matt Jared351499ab2014-04-23 04:50:03 +00001064
Christopher Pau24a768c2014-06-04 20:41:59 +00001065 if (abs_queue_idx >= 128) {
Matt Jared351499ab2014-04-23 04:50:03 +00001066 reg_block = abs_queue_idx / 128;
Christopher Pau24a768c2014-06-04 20:41:59 +00001067 abs_queue_idx %= 128;
1068 }
Matt Jared351499ab2014-04-23 04:50:03 +00001069
1070 reg_val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1071 reg_val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1072 reg_val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1073
1074 if (enable)
1075 reg_val |= I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK;
1076 else
1077 reg_val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1078
1079 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), reg_val);
1080}
Vasu Dev38e00432014-08-01 13:27:03 -07001081#ifdef I40E_FCOE
1082
1083/**
1084 * i40e_get_san_mac_addr - get SAN MAC address
1085 * @hw: pointer to the HW structure
1086 * @mac_addr: pointer to SAN MAC address
1087 *
1088 * Reads the adapter's SAN MAC address from NVM
1089 **/
1090i40e_status i40e_get_san_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1091{
1092 struct i40e_aqc_mac_address_read_data addrs;
1093 i40e_status status;
1094 u16 flags = 0;
1095
1096 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1097 if (status)
1098 return status;
1099
1100 if (flags & I40E_AQC_SAN_ADDR_VALID)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001101 ether_addr_copy(mac_addr, addrs.pf_san_mac);
Vasu Dev38e00432014-08-01 13:27:03 -07001102 else
1103 status = I40E_ERR_INVALID_MAC_ADDR;
1104
1105 return status;
1106}
1107#endif
Matt Jared351499ab2014-04-23 04:50:03 +00001108
1109/**
Kamil Krawczyk18f680c2014-12-11 07:06:31 +00001110 * i40e_read_pba_string - Reads part number string from EEPROM
1111 * @hw: pointer to hardware structure
1112 * @pba_num: stores the part number string from the EEPROM
1113 * @pba_num_size: part number string buffer length
1114 *
1115 * Reads the part number string from the EEPROM.
1116 **/
1117i40e_status i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
1118 u32 pba_num_size)
1119{
1120 i40e_status status = 0;
1121 u16 pba_word = 0;
1122 u16 pba_size = 0;
1123 u16 pba_ptr = 0;
1124 u16 i = 0;
1125
1126 status = i40e_read_nvm_word(hw, I40E_SR_PBA_FLAGS, &pba_word);
1127 if (status || (pba_word != 0xFAFA)) {
1128 hw_dbg(hw, "Failed to read PBA flags or flag is invalid.\n");
1129 return status;
1130 }
1131
1132 status = i40e_read_nvm_word(hw, I40E_SR_PBA_BLOCK_PTR, &pba_ptr);
1133 if (status) {
1134 hw_dbg(hw, "Failed to read PBA Block pointer.\n");
1135 return status;
1136 }
1137
1138 status = i40e_read_nvm_word(hw, pba_ptr, &pba_size);
1139 if (status) {
1140 hw_dbg(hw, "Failed to read PBA Block size.\n");
1141 return status;
1142 }
1143
1144 /* Subtract one to get PBA word count (PBA Size word is included in
1145 * total size)
1146 */
1147 pba_size--;
1148 if (pba_num_size < (((u32)pba_size * 2) + 1)) {
1149 hw_dbg(hw, "Buffer to small for PBA data.\n");
1150 return I40E_ERR_PARAM;
1151 }
1152
1153 for (i = 0; i < pba_size; i++) {
1154 status = i40e_read_nvm_word(hw, (pba_ptr + 1) + i, &pba_word);
1155 if (status) {
1156 hw_dbg(hw, "Failed to read PBA Block word %d.\n", i);
1157 return status;
1158 }
1159
1160 pba_num[(i * 2)] = (pba_word >> 8) & 0xFF;
1161 pba_num[(i * 2) + 1] = pba_word & 0xFF;
1162 }
1163 pba_num[(pba_size * 2)] = '\0';
1164
1165 return status;
1166}
1167
1168/**
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001169 * i40e_get_media_type - Gets media type
1170 * @hw: pointer to the hardware structure
1171 **/
1172static enum i40e_media_type i40e_get_media_type(struct i40e_hw *hw)
1173{
1174 enum i40e_media_type media;
1175
1176 switch (hw->phy.link_info.phy_type) {
1177 case I40E_PHY_TYPE_10GBASE_SR:
1178 case I40E_PHY_TYPE_10GBASE_LR:
Catherine Sullivan124ed152014-07-12 07:28:12 +00001179 case I40E_PHY_TYPE_1000BASE_SX:
1180 case I40E_PHY_TYPE_1000BASE_LX:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001181 case I40E_PHY_TYPE_40GBASE_SR4:
1182 case I40E_PHY_TYPE_40GBASE_LR4:
1183 media = I40E_MEDIA_TYPE_FIBER;
1184 break;
1185 case I40E_PHY_TYPE_100BASE_TX:
1186 case I40E_PHY_TYPE_1000BASE_T:
1187 case I40E_PHY_TYPE_10GBASE_T:
1188 media = I40E_MEDIA_TYPE_BASET;
1189 break;
1190 case I40E_PHY_TYPE_10GBASE_CR1_CU:
1191 case I40E_PHY_TYPE_40GBASE_CR4_CU:
1192 case I40E_PHY_TYPE_10GBASE_CR1:
1193 case I40E_PHY_TYPE_40GBASE_CR4:
1194 case I40E_PHY_TYPE_10GBASE_SFPP_CU:
Catherine Sullivan180204c2015-02-26 16:14:58 +00001195 case I40E_PHY_TYPE_40GBASE_AOC:
1196 case I40E_PHY_TYPE_10GBASE_AOC:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001197 media = I40E_MEDIA_TYPE_DA;
1198 break;
1199 case I40E_PHY_TYPE_1000BASE_KX:
1200 case I40E_PHY_TYPE_10GBASE_KX4:
1201 case I40E_PHY_TYPE_10GBASE_KR:
1202 case I40E_PHY_TYPE_40GBASE_KR4:
Jesse Brandeburgae24b402015-03-27 00:12:09 -07001203 case I40E_PHY_TYPE_20GBASE_KR2:
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001204 media = I40E_MEDIA_TYPE_BACKPLANE;
1205 break;
1206 case I40E_PHY_TYPE_SGMII:
1207 case I40E_PHY_TYPE_XAUI:
1208 case I40E_PHY_TYPE_XFI:
1209 case I40E_PHY_TYPE_XLAUI:
1210 case I40E_PHY_TYPE_XLPPI:
1211 default:
1212 media = I40E_MEDIA_TYPE_UNKNOWN;
1213 break;
1214 }
1215
1216 return media;
1217}
1218
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001219#define I40E_PF_RESET_WAIT_COUNT_A0 200
Akeem G Abodunrin8af580d2015-03-27 00:12:10 -07001220#define I40E_PF_RESET_WAIT_COUNT 200
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001221/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001222 * i40e_pf_reset - Reset the PF
1223 * @hw: pointer to the hardware structure
1224 *
1225 * Assuming someone else has triggered a global reset,
1226 * assure the global reset is complete and then reset the PF
1227 **/
1228i40e_status i40e_pf_reset(struct i40e_hw *hw)
1229{
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001230 u32 cnt = 0;
Shannon Nelson42794bd2013-12-11 08:17:10 +00001231 u32 cnt1 = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001232 u32 reg = 0;
1233 u32 grst_del;
1234
1235 /* Poll for Global Reset steady state in case of recent GRST.
1236 * The grst delay value is in 100ms units, and we'll wait a
1237 * couple counts longer to be sure we don't just miss the end.
1238 */
Shannon Nelsonde78fc52015-02-21 06:41:47 +00001239 grst_del = (rd32(hw, I40E_GLGEN_RSTCTL) &
1240 I40E_GLGEN_RSTCTL_GRSTDEL_MASK) >>
1241 I40E_GLGEN_RSTCTL_GRSTDEL_SHIFT;
Paul M Stillwell Jr22e05bd2015-08-26 15:14:07 -04001242 for (cnt = 0; cnt < grst_del + 10; cnt++) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001243 reg = rd32(hw, I40E_GLGEN_RSTAT);
1244 if (!(reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK))
1245 break;
1246 msleep(100);
1247 }
1248 if (reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
1249 hw_dbg(hw, "Global reset polling failed to complete.\n");
1250 return I40E_ERR_RESET_FAILED;
1251 }
1252
Shannon Nelson42794bd2013-12-11 08:17:10 +00001253 /* Now Wait for the FW to be ready */
1254 for (cnt1 = 0; cnt1 < I40E_PF_RESET_WAIT_COUNT; cnt1++) {
1255 reg = rd32(hw, I40E_GLNVM_ULD);
1256 reg &= (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1257 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK);
1258 if (reg == (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1259 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK)) {
1260 hw_dbg(hw, "Core and Global modules ready %d\n", cnt1);
1261 break;
1262 }
1263 usleep_range(10000, 20000);
1264 }
1265 if (!(reg & (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1266 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))) {
1267 hw_dbg(hw, "wait for FW Reset complete timedout\n");
1268 hw_dbg(hw, "I40E_GLNVM_ULD = 0x%x\n", reg);
1269 return I40E_ERR_RESET_FAILED;
1270 }
1271
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001272 /* If there was a Global Reset in progress when we got here,
1273 * we don't need to do the PF Reset
1274 */
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001275 if (!cnt) {
1276 if (hw->revision_id == 0)
1277 cnt = I40E_PF_RESET_WAIT_COUNT_A0;
1278 else
1279 cnt = I40E_PF_RESET_WAIT_COUNT;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001280 reg = rd32(hw, I40E_PFGEN_CTRL);
1281 wr32(hw, I40E_PFGEN_CTRL,
1282 (reg | I40E_PFGEN_CTRL_PFSWR_MASK));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001283 for (; cnt; cnt--) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001284 reg = rd32(hw, I40E_PFGEN_CTRL);
1285 if (!(reg & I40E_PFGEN_CTRL_PFSWR_MASK))
1286 break;
1287 usleep_range(1000, 2000);
1288 }
1289 if (reg & I40E_PFGEN_CTRL_PFSWR_MASK) {
1290 hw_dbg(hw, "PF reset polling failed to complete.\n");
1291 return I40E_ERR_RESET_FAILED;
1292 }
1293 }
1294
1295 i40e_clear_pxe_mode(hw);
Shannon Nelson922680b2013-12-18 05:29:17 +00001296
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001297 return 0;
1298}
1299
1300/**
Shannon Nelson838d41d2014-06-04 20:41:27 +00001301 * i40e_clear_hw - clear out any left over hw state
1302 * @hw: pointer to the hw struct
1303 *
1304 * Clear queues and interrupts, typically called at init time,
1305 * but after the capabilities have been found so we know how many
1306 * queues and msix vectors have been allocated.
1307 **/
1308void i40e_clear_hw(struct i40e_hw *hw)
1309{
1310 u32 num_queues, base_queue;
1311 u32 num_pf_int;
1312 u32 num_vf_int;
1313 u32 num_vfs;
1314 u32 i, j;
1315 u32 val;
1316 u32 eol = 0x7ff;
1317
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001318 /* get number of interrupts, queues, and VFs */
Shannon Nelson838d41d2014-06-04 20:41:27 +00001319 val = rd32(hw, I40E_GLPCI_CNF2);
1320 num_pf_int = (val & I40E_GLPCI_CNF2_MSI_X_PF_N_MASK) >>
1321 I40E_GLPCI_CNF2_MSI_X_PF_N_SHIFT;
1322 num_vf_int = (val & I40E_GLPCI_CNF2_MSI_X_VF_N_MASK) >>
1323 I40E_GLPCI_CNF2_MSI_X_VF_N_SHIFT;
1324
1325 val = rd32(hw, I40E_PFLAN_QALLOC);
1326 base_queue = (val & I40E_PFLAN_QALLOC_FIRSTQ_MASK) >>
1327 I40E_PFLAN_QALLOC_FIRSTQ_SHIFT;
1328 j = (val & I40E_PFLAN_QALLOC_LASTQ_MASK) >>
1329 I40E_PFLAN_QALLOC_LASTQ_SHIFT;
1330 if (val & I40E_PFLAN_QALLOC_VALID_MASK)
1331 num_queues = (j - base_queue) + 1;
1332 else
1333 num_queues = 0;
1334
1335 val = rd32(hw, I40E_PF_VT_PFALLOC);
1336 i = (val & I40E_PF_VT_PFALLOC_FIRSTVF_MASK) >>
1337 I40E_PF_VT_PFALLOC_FIRSTVF_SHIFT;
1338 j = (val & I40E_PF_VT_PFALLOC_LASTVF_MASK) >>
1339 I40E_PF_VT_PFALLOC_LASTVF_SHIFT;
1340 if (val & I40E_PF_VT_PFALLOC_VALID_MASK)
1341 num_vfs = (j - i) + 1;
1342 else
1343 num_vfs = 0;
1344
1345 /* stop all the interrupts */
1346 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
1347 val = 0x3 << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
1348 for (i = 0; i < num_pf_int - 2; i++)
1349 wr32(hw, I40E_PFINT_DYN_CTLN(i), val);
1350
1351 /* Set the FIRSTQ_INDX field to 0x7FF in PFINT_LNKLSTx */
1352 val = eol << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1353 wr32(hw, I40E_PFINT_LNKLST0, val);
1354 for (i = 0; i < num_pf_int - 2; i++)
1355 wr32(hw, I40E_PFINT_LNKLSTN(i), val);
1356 val = eol << I40E_VPINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1357 for (i = 0; i < num_vfs; i++)
1358 wr32(hw, I40E_VPINT_LNKLST0(i), val);
1359 for (i = 0; i < num_vf_int - 2; i++)
1360 wr32(hw, I40E_VPINT_LNKLSTN(i), val);
1361
1362 /* warn the HW of the coming Tx disables */
1363 for (i = 0; i < num_queues; i++) {
1364 u32 abs_queue_idx = base_queue + i;
1365 u32 reg_block = 0;
1366
1367 if (abs_queue_idx >= 128) {
1368 reg_block = abs_queue_idx / 128;
1369 abs_queue_idx %= 128;
1370 }
1371
1372 val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1373 val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1374 val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1375 val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1376
1377 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), val);
1378 }
1379 udelay(400);
1380
1381 /* stop all the queues */
1382 for (i = 0; i < num_queues; i++) {
1383 wr32(hw, I40E_QINT_TQCTL(i), 0);
1384 wr32(hw, I40E_QTX_ENA(i), 0);
1385 wr32(hw, I40E_QINT_RQCTL(i), 0);
1386 wr32(hw, I40E_QRX_ENA(i), 0);
1387 }
1388
1389 /* short wait for all queue disables to settle */
1390 udelay(50);
1391}
1392
1393/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001394 * i40e_clear_pxe_mode - clear pxe operations mode
1395 * @hw: pointer to the hw struct
1396 *
1397 * Make sure all PXE mode settings are cleared, including things
1398 * like descriptor fetch/write-back mode.
1399 **/
1400void i40e_clear_pxe_mode(struct i40e_hw *hw)
1401{
1402 u32 reg;
1403
Shannon Nelsonc9b9b0a2014-04-09 05:59:05 +00001404 if (i40e_check_asq_alive(hw))
1405 i40e_aq_clear_pxe_mode(hw, NULL);
1406
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001407 /* Clear single descriptor fetch/write-back mode */
1408 reg = rd32(hw, I40E_GLLAN_RCTL_0);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001409
1410 if (hw->revision_id == 0) {
1411 /* As a work around clear PXE_MODE instead of setting it */
1412 wr32(hw, I40E_GLLAN_RCTL_0, (reg & (~I40E_GLLAN_RCTL_0_PXE_MODE_MASK)));
1413 } else {
1414 wr32(hw, I40E_GLLAN_RCTL_0, (reg | I40E_GLLAN_RCTL_0_PXE_MODE_MASK));
1415 }
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001416}
1417
1418/**
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001419 * i40e_led_is_mine - helper to find matching led
1420 * @hw: pointer to the hw struct
1421 * @idx: index into GPIO registers
1422 *
1423 * returns: 0 if no match, otherwise the value of the GPIO_CTL register
1424 */
1425static u32 i40e_led_is_mine(struct i40e_hw *hw, int idx)
1426{
1427 u32 gpio_val = 0;
1428 u32 port;
1429
1430 if (!hw->func_caps.led[idx])
1431 return 0;
1432
1433 gpio_val = rd32(hw, I40E_GLGEN_GPIO_CTL(idx));
1434 port = (gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_MASK) >>
1435 I40E_GLGEN_GPIO_CTL_PRT_NUM_SHIFT;
1436
1437 /* if PRT_NUM_NA is 1 then this LED is not port specific, OR
1438 * if it is not our port then ignore
1439 */
1440 if ((gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_NA_MASK) ||
1441 (port != hw->port))
1442 return 0;
1443
1444 return gpio_val;
1445}
1446
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001447#define I40E_COMBINED_ACTIVITY 0xA
1448#define I40E_FILTER_ACTIVITY 0xE
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001449#define I40E_LINK_ACTIVITY 0xC
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001450#define I40E_MAC_ACTIVITY 0xD
1451#define I40E_LED0 22
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001452
1453/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001454 * i40e_led_get - return current on/off mode
1455 * @hw: pointer to the hw struct
1456 *
1457 * The value returned is the 'mode' field as defined in the
1458 * GPIO register definitions: 0x0 = off, 0xf = on, and other
1459 * values are variations of possible behaviors relating to
1460 * blink, link, and wire.
1461 **/
1462u32 i40e_led_get(struct i40e_hw *hw)
1463{
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001464 u32 current_mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001465 u32 mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001466 int i;
1467
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001468 /* as per the documentation GPIO 22-29 are the LED
1469 * GPIO pins named LED0..LED7
1470 */
1471 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1472 u32 gpio_val = i40e_led_is_mine(hw, i);
1473
1474 if (!gpio_val)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001475 continue;
1476
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001477 /* ignore gpio LED src mode entries related to the activity
1478 * LEDs
1479 */
1480 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1481 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1482 switch (current_mode) {
1483 case I40E_COMBINED_ACTIVITY:
1484 case I40E_FILTER_ACTIVITY:
1485 case I40E_MAC_ACTIVITY:
1486 continue;
1487 default:
1488 break;
1489 }
1490
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001491 mode = (gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK) >>
1492 I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001493 break;
1494 }
1495
1496 return mode;
1497}
1498
1499/**
1500 * i40e_led_set - set new on/off mode
1501 * @hw: pointer to the hw struct
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001502 * @mode: 0=off, 0xf=on (else see manual for mode details)
1503 * @blink: true if the LED should blink when on, false if steady
1504 *
1505 * if this function is used to turn on the blink it should
1506 * be used to disable the blink when restoring the original state.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001507 **/
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001508void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001509{
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001510 u32 current_mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001511 int i;
1512
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001513 if (mode & 0xfffffff0)
1514 hw_dbg(hw, "invalid mode passed in %X\n", mode);
1515
1516 /* as per the documentation GPIO 22-29 are the LED
1517 * GPIO pins named LED0..LED7
1518 */
1519 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1520 u32 gpio_val = i40e_led_is_mine(hw, i);
1521
1522 if (!gpio_val)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001523 continue;
1524
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001525 /* ignore gpio LED src mode entries related to the activity
1526 * LEDs
1527 */
1528 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1529 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1530 switch (current_mode) {
1531 case I40E_COMBINED_ACTIVITY:
1532 case I40E_FILTER_ACTIVITY:
1533 case I40E_MAC_ACTIVITY:
1534 continue;
1535 default:
1536 break;
1537 }
1538
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001539 gpio_val &= ~I40E_GLGEN_GPIO_CTL_LED_MODE_MASK;
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001540 /* this & is a bit of paranoia, but serves as a range check */
1541 gpio_val |= ((mode << I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT) &
1542 I40E_GLGEN_GPIO_CTL_LED_MODE_MASK);
1543
1544 if (mode == I40E_LINK_ACTIVITY)
1545 blink = false;
1546
Matt Jared9be00d62015-01-24 09:58:28 +00001547 if (blink)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001548 gpio_val |= BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
Matt Jared9be00d62015-01-24 09:58:28 +00001549 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001550 gpio_val &= ~BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001551
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001552 wr32(hw, I40E_GLGEN_GPIO_CTL(i), gpio_val);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001553 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001554 }
1555}
1556
1557/* Admin command wrappers */
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001558
1559/**
Catherine Sullivan8109e122014-06-04 08:45:24 +00001560 * i40e_aq_get_phy_capabilities
1561 * @hw: pointer to the hw struct
1562 * @abilities: structure for PHY capabilities to be filled
1563 * @qualified_modules: report Qualified Modules
1564 * @report_init: report init capabilities (active are default)
1565 * @cmd_details: pointer to command details structure or NULL
1566 *
1567 * Returns the various PHY abilities supported on the Port.
1568 **/
1569i40e_status i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
1570 bool qualified_modules, bool report_init,
1571 struct i40e_aq_get_phy_abilities_resp *abilities,
1572 struct i40e_asq_cmd_details *cmd_details)
1573{
1574 struct i40e_aq_desc desc;
1575 i40e_status status;
1576 u16 abilities_size = sizeof(struct i40e_aq_get_phy_abilities_resp);
1577
1578 if (!abilities)
1579 return I40E_ERR_PARAM;
1580
1581 i40e_fill_default_direct_cmd_desc(&desc,
1582 i40e_aqc_opc_get_phy_abilities);
1583
1584 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1585 if (abilities_size > I40E_AQ_LARGE_BUF)
1586 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1587
1588 if (qualified_modules)
1589 desc.params.external.param0 |=
1590 cpu_to_le32(I40E_AQ_PHY_REPORT_QUALIFIED_MODULES);
1591
1592 if (report_init)
1593 desc.params.external.param0 |=
1594 cpu_to_le32(I40E_AQ_PHY_REPORT_INITIAL_VALUES);
1595
1596 status = i40e_asq_send_command(hw, &desc, abilities, abilities_size,
1597 cmd_details);
1598
1599 if (hw->aq.asq_last_status == I40E_AQ_RC_EIO)
1600 status = I40E_ERR_UNKNOWN_PHY;
1601
Kevin Scott3ac67d72015-09-03 17:18:58 -04001602 if (report_init)
1603 hw->phy.phy_types = le32_to_cpu(abilities->phy_type);
1604
Catherine Sullivan8109e122014-06-04 08:45:24 +00001605 return status;
1606}
1607
1608/**
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001609 * i40e_aq_set_phy_config
1610 * @hw: pointer to the hw struct
1611 * @config: structure with PHY configuration to be set
1612 * @cmd_details: pointer to command details structure or NULL
1613 *
1614 * Set the various PHY configuration parameters
1615 * supported on the Port.One or more of the Set PHY config parameters may be
1616 * ignored in an MFP mode as the PF may not have the privilege to set some
1617 * of the PHY Config parameters. This status will be indicated by the
1618 * command response.
1619 **/
1620enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
1621 struct i40e_aq_set_phy_config *config,
1622 struct i40e_asq_cmd_details *cmd_details)
1623{
1624 struct i40e_aq_desc desc;
1625 struct i40e_aq_set_phy_config *cmd =
1626 (struct i40e_aq_set_phy_config *)&desc.params.raw;
1627 enum i40e_status_code status;
1628
1629 if (!config)
1630 return I40E_ERR_PARAM;
1631
1632 i40e_fill_default_direct_cmd_desc(&desc,
1633 i40e_aqc_opc_set_phy_config);
1634
1635 *cmd = *config;
1636
1637 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1638
1639 return status;
1640}
1641
1642/**
1643 * i40e_set_fc
1644 * @hw: pointer to the hw struct
1645 *
1646 * Set the requested flow control mode using set_phy_config.
1647 **/
1648enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
1649 bool atomic_restart)
1650{
1651 enum i40e_fc_mode fc_mode = hw->fc.requested_mode;
1652 struct i40e_aq_get_phy_abilities_resp abilities;
1653 struct i40e_aq_set_phy_config config;
1654 enum i40e_status_code status;
1655 u8 pause_mask = 0x0;
1656
1657 *aq_failures = 0x0;
1658
1659 switch (fc_mode) {
1660 case I40E_FC_FULL:
1661 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1662 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1663 break;
1664 case I40E_FC_RX_PAUSE:
1665 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1666 break;
1667 case I40E_FC_TX_PAUSE:
1668 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1669 break;
1670 default:
1671 break;
1672 }
1673
1674 /* Get the current phy config */
1675 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities,
1676 NULL);
1677 if (status) {
1678 *aq_failures |= I40E_SET_FC_AQ_FAIL_GET;
1679 return status;
1680 }
1681
1682 memset(&config, 0, sizeof(struct i40e_aq_set_phy_config));
1683 /* clear the old pause settings */
1684 config.abilities = abilities.abilities & ~(I40E_AQ_PHY_FLAG_PAUSE_TX) &
1685 ~(I40E_AQ_PHY_FLAG_PAUSE_RX);
1686 /* set the new abilities */
1687 config.abilities |= pause_mask;
1688 /* If the abilities have changed, then set the new config */
1689 if (config.abilities != abilities.abilities) {
1690 /* Auto restart link so settings take effect */
1691 if (atomic_restart)
1692 config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK;
1693 /* Copy over all the old settings */
1694 config.phy_type = abilities.phy_type;
1695 config.link_speed = abilities.link_speed;
1696 config.eee_capability = abilities.eee_capability;
1697 config.eeer = abilities.eeer_val;
1698 config.low_power_ctrl = abilities.d3_lpan;
1699 status = i40e_aq_set_phy_config(hw, &config, NULL);
1700
1701 if (status)
1702 *aq_failures |= I40E_SET_FC_AQ_FAIL_SET;
1703 }
1704 /* Update the link info */
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001705 status = i40e_update_link_info(hw);
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001706 if (status) {
1707 /* Wait a little bit (on 40G cards it sometimes takes a really
1708 * long time for link to come back from the atomic reset)
1709 * and try once more
1710 */
1711 msleep(1000);
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001712 status = i40e_update_link_info(hw);
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001713 }
1714 if (status)
1715 *aq_failures |= I40E_SET_FC_AQ_FAIL_UPDATE;
1716
1717 return status;
1718}
1719
1720/**
Shannon Nelsonc9b9b0a2014-04-09 05:59:05 +00001721 * i40e_aq_clear_pxe_mode
1722 * @hw: pointer to the hw struct
1723 * @cmd_details: pointer to command details structure or NULL
1724 *
1725 * Tell the firmware that the driver is taking over from PXE
1726 **/
1727i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
1728 struct i40e_asq_cmd_details *cmd_details)
1729{
1730 i40e_status status;
1731 struct i40e_aq_desc desc;
1732 struct i40e_aqc_clear_pxe *cmd =
1733 (struct i40e_aqc_clear_pxe *)&desc.params.raw;
1734
1735 i40e_fill_default_direct_cmd_desc(&desc,
1736 i40e_aqc_opc_clear_pxe_mode);
1737
1738 cmd->rx_cnt = 0x2;
1739
1740 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1741
1742 wr32(hw, I40E_GLLAN_RCTL_0, 0x1);
1743
1744 return status;
1745}
1746
1747/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001748 * i40e_aq_set_link_restart_an
1749 * @hw: pointer to the hw struct
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001750 * @enable_link: if true: enable link, if false: disable link
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001751 * @cmd_details: pointer to command details structure or NULL
1752 *
1753 * Sets up the link and restarts the Auto-Negotiation over the link.
1754 **/
1755i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001756 bool enable_link,
1757 struct i40e_asq_cmd_details *cmd_details)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001758{
1759 struct i40e_aq_desc desc;
1760 struct i40e_aqc_set_link_restart_an *cmd =
1761 (struct i40e_aqc_set_link_restart_an *)&desc.params.raw;
1762 i40e_status status;
1763
1764 i40e_fill_default_direct_cmd_desc(&desc,
1765 i40e_aqc_opc_set_link_restart_an);
1766
1767 cmd->command = I40E_AQ_PHY_RESTART_AN;
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001768 if (enable_link)
1769 cmd->command |= I40E_AQ_PHY_LINK_ENABLE;
1770 else
1771 cmd->command &= ~I40E_AQ_PHY_LINK_ENABLE;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001772
1773 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1774
1775 return status;
1776}
1777
1778/**
1779 * i40e_aq_get_link_info
1780 * @hw: pointer to the hw struct
1781 * @enable_lse: enable/disable LinkStatusEvent reporting
1782 * @link: pointer to link status structure - optional
1783 * @cmd_details: pointer to command details structure or NULL
1784 *
1785 * Returns the link status of the adapter.
1786 **/
1787i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
1788 bool enable_lse, struct i40e_link_status *link,
1789 struct i40e_asq_cmd_details *cmd_details)
1790{
1791 struct i40e_aq_desc desc;
1792 struct i40e_aqc_get_link_status *resp =
1793 (struct i40e_aqc_get_link_status *)&desc.params.raw;
1794 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
1795 i40e_status status;
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001796 bool tx_pause, rx_pause;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001797 u16 command_flags;
1798
1799 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_link_status);
1800
1801 if (enable_lse)
1802 command_flags = I40E_AQ_LSE_ENABLE;
1803 else
1804 command_flags = I40E_AQ_LSE_DISABLE;
1805 resp->command_flags = cpu_to_le16(command_flags);
1806
1807 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1808
1809 if (status)
1810 goto aq_get_link_info_exit;
1811
1812 /* save off old link status information */
Mitch Williamsc36bd4a72013-12-18 13:46:04 +00001813 hw->phy.link_info_old = *hw_link_info;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001814
1815 /* update link status */
1816 hw_link_info->phy_type = (enum i40e_aq_phy_type)resp->phy_type;
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001817 hw->phy.media_type = i40e_get_media_type(hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001818 hw_link_info->link_speed = (enum i40e_aq_link_speed)resp->link_speed;
1819 hw_link_info->link_info = resp->link_info;
1820 hw_link_info->an_info = resp->an_info;
1821 hw_link_info->ext_info = resp->ext_info;
Kamil Krawczyk639dc372013-11-20 10:03:07 +00001822 hw_link_info->loopback = resp->loopback;
Neerav Parikh6bb3f232014-04-01 07:11:56 +00001823 hw_link_info->max_frame_size = le16_to_cpu(resp->max_frame_size);
1824 hw_link_info->pacing = resp->config & I40E_AQ_CONFIG_PACING_MASK;
1825
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001826 /* update fc info */
1827 tx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_TX);
1828 rx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_RX);
1829 if (tx_pause & rx_pause)
1830 hw->fc.current_mode = I40E_FC_FULL;
1831 else if (tx_pause)
1832 hw->fc.current_mode = I40E_FC_TX_PAUSE;
1833 else if (rx_pause)
1834 hw->fc.current_mode = I40E_FC_RX_PAUSE;
1835 else
1836 hw->fc.current_mode = I40E_FC_NONE;
1837
Neerav Parikh6bb3f232014-04-01 07:11:56 +00001838 if (resp->config & I40E_AQ_CONFIG_CRC_ENA)
1839 hw_link_info->crc_enable = true;
1840 else
1841 hw_link_info->crc_enable = false;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001842
1843 if (resp->command_flags & cpu_to_le16(I40E_AQ_LSE_ENABLE))
1844 hw_link_info->lse_enable = true;
1845 else
1846 hw_link_info->lse_enable = false;
1847
Catherine Sullivan088c4ee2015-02-26 16:14:12 +00001848 if ((hw->aq.fw_maj_ver < 4 || (hw->aq.fw_maj_ver == 4 &&
1849 hw->aq.fw_min_ver < 40)) && hw_link_info->phy_type == 0xE)
1850 hw_link_info->phy_type = I40E_PHY_TYPE_10GBASE_SFPP_CU;
1851
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001852 /* save link status information */
1853 if (link)
Jesse Brandeburgd7595a22013-09-13 08:23:22 +00001854 *link = *hw_link_info;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001855
1856 /* flag cleared so helper functions don't call AQ again */
1857 hw->phy.get_link_info = false;
1858
1859aq_get_link_info_exit:
1860 return status;
1861}
1862
1863/**
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00001864 * i40e_aq_set_phy_int_mask
1865 * @hw: pointer to the hw struct
1866 * @mask: interrupt mask to be set
1867 * @cmd_details: pointer to command details structure or NULL
1868 *
1869 * Set link interrupt mask.
1870 **/
1871i40e_status i40e_aq_set_phy_int_mask(struct i40e_hw *hw,
1872 u16 mask,
1873 struct i40e_asq_cmd_details *cmd_details)
1874{
1875 struct i40e_aq_desc desc;
1876 struct i40e_aqc_set_phy_int_mask *cmd =
1877 (struct i40e_aqc_set_phy_int_mask *)&desc.params.raw;
1878 i40e_status status;
1879
1880 i40e_fill_default_direct_cmd_desc(&desc,
1881 i40e_aqc_opc_set_phy_int_mask);
1882
1883 cmd->event_mask = cpu_to_le16(mask);
1884
1885 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1886
1887 return status;
1888}
1889
1890/**
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001891 * i40e_aq_set_phy_debug
1892 * @hw: pointer to the hw struct
1893 * @cmd_flags: debug command flags
1894 * @cmd_details: pointer to command details structure or NULL
1895 *
1896 * Reset the external PHY.
1897 **/
1898enum i40e_status_code i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
1899 struct i40e_asq_cmd_details *cmd_details)
1900{
1901 struct i40e_aq_desc desc;
1902 struct i40e_aqc_set_phy_debug *cmd =
1903 (struct i40e_aqc_set_phy_debug *)&desc.params.raw;
1904 enum i40e_status_code status;
1905
1906 i40e_fill_default_direct_cmd_desc(&desc,
1907 i40e_aqc_opc_set_phy_debug);
1908
1909 cmd->command_flags = cmd_flags;
1910
1911 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1912
1913 return status;
1914}
1915
1916/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001917 * i40e_aq_add_vsi
1918 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00001919 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001920 * @cmd_details: pointer to command details structure or NULL
1921 *
1922 * Add a VSI context to the hardware.
1923**/
1924i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
1925 struct i40e_vsi_context *vsi_ctx,
1926 struct i40e_asq_cmd_details *cmd_details)
1927{
1928 struct i40e_aq_desc desc;
1929 struct i40e_aqc_add_get_update_vsi *cmd =
1930 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
1931 struct i40e_aqc_add_get_update_vsi_completion *resp =
1932 (struct i40e_aqc_add_get_update_vsi_completion *)
1933 &desc.params.raw;
1934 i40e_status status;
1935
1936 i40e_fill_default_direct_cmd_desc(&desc,
1937 i40e_aqc_opc_add_vsi);
1938
1939 cmd->uplink_seid = cpu_to_le16(vsi_ctx->uplink_seid);
1940 cmd->connection_type = vsi_ctx->connection_type;
1941 cmd->vf_id = vsi_ctx->vf_num;
1942 cmd->vsi_flags = cpu_to_le16(vsi_ctx->flags);
1943
1944 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001945
1946 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
1947 sizeof(vsi_ctx->info), cmd_details);
1948
1949 if (status)
1950 goto aq_add_vsi_exit;
1951
1952 vsi_ctx->seid = le16_to_cpu(resp->seid);
1953 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
1954 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
1955 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
1956
1957aq_add_vsi_exit:
1958 return status;
1959}
1960
1961/**
1962 * i40e_aq_set_vsi_unicast_promiscuous
1963 * @hw: pointer to the hw struct
1964 * @seid: vsi number
1965 * @set: set unicast promiscuous enable/disable
1966 * @cmd_details: pointer to command details structure or NULL
1967 **/
1968i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
Mitch Williams885552a2013-12-21 05:44:41 +00001969 u16 seid, bool set,
1970 struct i40e_asq_cmd_details *cmd_details)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001971{
1972 struct i40e_aq_desc desc;
1973 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
1974 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
1975 i40e_status status;
1976 u16 flags = 0;
1977
1978 i40e_fill_default_direct_cmd_desc(&desc,
1979 i40e_aqc_opc_set_vsi_promiscuous_modes);
1980
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001981 if (set) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001982 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001983 if (((hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver >= 5)) ||
1984 (hw->aq.api_maj_ver > 1))
1985 flags |= I40E_AQC_SET_VSI_PROMISC_TX;
1986 }
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001987
1988 cmd->promiscuous_flags = cpu_to_le16(flags);
1989
1990 cmd->valid_flags = cpu_to_le16(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 cmd->valid_flags |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_TX);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001994
1995 cmd->seid = cpu_to_le16(seid);
1996 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1997
1998 return status;
1999}
2000
2001/**
2002 * i40e_aq_set_vsi_multicast_promiscuous
2003 * @hw: pointer to the hw struct
2004 * @seid: vsi number
2005 * @set: set multicast promiscuous enable/disable
2006 * @cmd_details: pointer to command details structure or NULL
2007 **/
2008i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
2009 u16 seid, bool set, struct i40e_asq_cmd_details *cmd_details)
2010{
2011 struct i40e_aq_desc desc;
2012 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2013 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2014 i40e_status status;
2015 u16 flags = 0;
2016
2017 i40e_fill_default_direct_cmd_desc(&desc,
2018 i40e_aqc_opc_set_vsi_promiscuous_modes);
2019
2020 if (set)
2021 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
2022
2023 cmd->promiscuous_flags = cpu_to_le16(flags);
2024
2025 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
2026
2027 cmd->seid = cpu_to_le16(seid);
2028 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2029
2030 return status;
2031}
2032
2033/**
2034 * i40e_aq_set_vsi_broadcast
2035 * @hw: pointer to the hw struct
2036 * @seid: vsi number
2037 * @set_filter: true to set filter, false to clear filter
2038 * @cmd_details: pointer to command details structure or NULL
2039 *
2040 * Set or clear the broadcast promiscuous flag (filter) for a given VSI.
2041 **/
2042i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
2043 u16 seid, bool set_filter,
2044 struct i40e_asq_cmd_details *cmd_details)
2045{
2046 struct i40e_aq_desc desc;
2047 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2048 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2049 i40e_status status;
2050
2051 i40e_fill_default_direct_cmd_desc(&desc,
2052 i40e_aqc_opc_set_vsi_promiscuous_modes);
2053
2054 if (set_filter)
2055 cmd->promiscuous_flags
2056 |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2057 else
2058 cmd->promiscuous_flags
2059 &= cpu_to_le16(~I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2060
2061 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2062 cmd->seid = cpu_to_le16(seid);
2063 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2064
2065 return status;
2066}
2067
2068/**
Kiran Patil7bd68752016-01-04 10:33:07 -08002069 * i40e_aq_set_vsi_vlan_promisc - control the VLAN promiscuous setting
2070 * @hw: pointer to the hw struct
2071 * @seid: vsi number
2072 * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2073 * @cmd_details: pointer to command details structure or NULL
2074 **/
2075i40e_status i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
2076 u16 seid, bool enable,
2077 struct i40e_asq_cmd_details *cmd_details)
2078{
2079 struct i40e_aq_desc desc;
2080 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2081 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2082 i40e_status status;
2083 u16 flags = 0;
2084
2085 i40e_fill_default_direct_cmd_desc(&desc,
2086 i40e_aqc_opc_set_vsi_promiscuous_modes);
2087 if (enable)
2088 flags |= I40E_AQC_SET_VSI_PROMISC_VLAN;
2089
2090 cmd->promiscuous_flags = cpu_to_le16(flags);
2091 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_VLAN);
2092 cmd->seid = cpu_to_le16(seid);
2093
2094 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2095
2096 return status;
2097}
2098
2099/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002100 * i40e_get_vsi_params - get VSI configuration info
2101 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00002102 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002103 * @cmd_details: pointer to command details structure or NULL
2104 **/
2105i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
2106 struct i40e_vsi_context *vsi_ctx,
2107 struct i40e_asq_cmd_details *cmd_details)
2108{
2109 struct i40e_aq_desc desc;
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002110 struct i40e_aqc_add_get_update_vsi *cmd =
2111 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002112 struct i40e_aqc_add_get_update_vsi_completion *resp =
2113 (struct i40e_aqc_add_get_update_vsi_completion *)
2114 &desc.params.raw;
2115 i40e_status status;
2116
2117 i40e_fill_default_direct_cmd_desc(&desc,
2118 i40e_aqc_opc_get_vsi_parameters);
2119
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002120 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002121
2122 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002123
2124 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2125 sizeof(vsi_ctx->info), NULL);
2126
2127 if (status)
2128 goto aq_get_vsi_params_exit;
2129
2130 vsi_ctx->seid = le16_to_cpu(resp->seid);
2131 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
2132 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
2133 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
2134
2135aq_get_vsi_params_exit:
2136 return status;
2137}
2138
2139/**
2140 * i40e_aq_update_vsi_params
2141 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00002142 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002143 * @cmd_details: pointer to command details structure or NULL
2144 *
2145 * Update a VSI context.
2146 **/
2147i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
2148 struct i40e_vsi_context *vsi_ctx,
2149 struct i40e_asq_cmd_details *cmd_details)
2150{
2151 struct i40e_aq_desc desc;
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002152 struct i40e_aqc_add_get_update_vsi *cmd =
2153 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002154 i40e_status status;
2155
2156 i40e_fill_default_direct_cmd_desc(&desc,
2157 i40e_aqc_opc_update_vsi_parameters);
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002158 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002159
2160 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002161
2162 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2163 sizeof(vsi_ctx->info), cmd_details);
2164
2165 return status;
2166}
2167
2168/**
2169 * i40e_aq_get_switch_config
2170 * @hw: pointer to the hardware structure
2171 * @buf: pointer to the result buffer
2172 * @buf_size: length of input buffer
2173 * @start_seid: seid to start for the report, 0 == beginning
2174 * @cmd_details: pointer to command details structure or NULL
2175 *
2176 * Fill the buf with switch configuration returned from AdminQ command
2177 **/
2178i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
2179 struct i40e_aqc_get_switch_config_resp *buf,
2180 u16 buf_size, u16 *start_seid,
2181 struct i40e_asq_cmd_details *cmd_details)
2182{
2183 struct i40e_aq_desc desc;
2184 struct i40e_aqc_switch_seid *scfg =
2185 (struct i40e_aqc_switch_seid *)&desc.params.raw;
2186 i40e_status status;
2187
2188 i40e_fill_default_direct_cmd_desc(&desc,
2189 i40e_aqc_opc_get_switch_config);
2190 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2191 if (buf_size > I40E_AQ_LARGE_BUF)
2192 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2193 scfg->seid = cpu_to_le16(*start_seid);
2194
2195 status = i40e_asq_send_command(hw, &desc, buf, buf_size, cmd_details);
2196 *start_seid = le16_to_cpu(scfg->seid);
2197
2198 return status;
2199}
2200
2201/**
2202 * i40e_aq_get_firmware_version
2203 * @hw: pointer to the hw struct
2204 * @fw_major_version: firmware major version
2205 * @fw_minor_version: firmware minor version
Shannon Nelson7edf8102015-02-24 06:58:41 +00002206 * @fw_build: firmware build number
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002207 * @api_major_version: major queue version
2208 * @api_minor_version: minor queue version
2209 * @cmd_details: pointer to command details structure or NULL
2210 *
2211 * Get the firmware version from the admin queue commands
2212 **/
2213i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
2214 u16 *fw_major_version, u16 *fw_minor_version,
Shannon Nelson7edf8102015-02-24 06:58:41 +00002215 u32 *fw_build,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002216 u16 *api_major_version, u16 *api_minor_version,
2217 struct i40e_asq_cmd_details *cmd_details)
2218{
2219 struct i40e_aq_desc desc;
2220 struct i40e_aqc_get_version *resp =
2221 (struct i40e_aqc_get_version *)&desc.params.raw;
2222 i40e_status status;
2223
2224 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_version);
2225
2226 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2227
2228 if (!status) {
Shannon Nelson7edf8102015-02-24 06:58:41 +00002229 if (fw_major_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002230 *fw_major_version = le16_to_cpu(resp->fw_major);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002231 if (fw_minor_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002232 *fw_minor_version = le16_to_cpu(resp->fw_minor);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002233 if (fw_build)
2234 *fw_build = le32_to_cpu(resp->fw_build);
2235 if (api_major_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002236 *api_major_version = le16_to_cpu(resp->api_major);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002237 if (api_minor_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002238 *api_minor_version = le16_to_cpu(resp->api_minor);
2239 }
2240
2241 return status;
2242}
2243
2244/**
2245 * i40e_aq_send_driver_version
2246 * @hw: pointer to the hw struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002247 * @dv: driver's major, minor version
2248 * @cmd_details: pointer to command details structure or NULL
2249 *
2250 * Send the driver version to the firmware
2251 **/
2252i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
2253 struct i40e_driver_version *dv,
2254 struct i40e_asq_cmd_details *cmd_details)
2255{
2256 struct i40e_aq_desc desc;
2257 struct i40e_aqc_driver_version *cmd =
2258 (struct i40e_aqc_driver_version *)&desc.params.raw;
2259 i40e_status status;
Kevin Scott9d2f98e2014-04-01 07:11:52 +00002260 u16 len;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002261
2262 if (dv == NULL)
2263 return I40E_ERR_PARAM;
2264
2265 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_driver_version);
2266
Kevin Scott3b38cd12015-02-06 08:52:18 +00002267 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002268 cmd->driver_major_ver = dv->major_version;
2269 cmd->driver_minor_ver = dv->minor_version;
2270 cmd->driver_build_ver = dv->build_version;
2271 cmd->driver_subbuild_ver = dv->subbuild_version;
Shannon Nelsond2466012014-04-01 07:11:45 +00002272
2273 len = 0;
2274 while (len < sizeof(dv->driver_string) &&
2275 (dv->driver_string[len] < 0x80) &&
2276 dv->driver_string[len])
2277 len++;
2278 status = i40e_asq_send_command(hw, &desc, dv->driver_string,
2279 len, cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002280
2281 return status;
2282}
2283
2284/**
2285 * i40e_get_link_status - get status of the HW network link
2286 * @hw: pointer to the hw struct
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002287 * @link_up: pointer to bool (true/false = linkup/linkdown)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002288 *
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002289 * Variable link_up true if link is up, false if link is down.
2290 * The variable link_up is invalid if returned value of status != 0
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002291 *
2292 * Side effect: LinkStatusEvent reporting becomes enabled
2293 **/
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002294i40e_status i40e_get_link_status(struct i40e_hw *hw, bool *link_up)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002295{
2296 i40e_status status = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002297
2298 if (hw->phy.get_link_info) {
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002299 status = i40e_update_link_info(hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002300
2301 if (status)
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002302 i40e_debug(hw, I40E_DEBUG_LINK, "get link failed: status %d\n",
2303 status);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002304 }
2305
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002306 *link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002307
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002308 return status;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002309}
2310
2311/**
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002312 * i40e_updatelink_status - update status of the HW network link
2313 * @hw: pointer to the hw struct
2314 **/
2315i40e_status i40e_update_link_info(struct i40e_hw *hw)
2316{
2317 struct i40e_aq_get_phy_abilities_resp abilities;
2318 i40e_status status = 0;
2319
2320 status = i40e_aq_get_link_info(hw, true, NULL, NULL);
2321 if (status)
2322 return status;
2323
Carolyn Wyborny8589af72015-09-28 14:16:56 -04002324 if (hw->phy.link_info.link_info & I40E_AQ_MEDIA_AVAILABLE) {
2325 status = i40e_aq_get_phy_capabilities(hw, false, false,
2326 &abilities, NULL);
2327 if (status)
2328 return status;
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002329
Carolyn Wyborny8589af72015-09-28 14:16:56 -04002330 memcpy(hw->phy.link_info.module_type, &abilities.module_type,
2331 sizeof(hw->phy.link_info.module_type));
2332 }
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002333
2334 return status;
2335}
2336
2337/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002338 * i40e_aq_add_veb - Insert a VEB between the VSI and the MAC
2339 * @hw: pointer to the hw struct
2340 * @uplink_seid: the MAC or other gizmo SEID
2341 * @downlink_seid: the VSI SEID
2342 * @enabled_tc: bitmap of TCs to be enabled
2343 * @default_port: true for default port VSI, false for control port
2344 * @veb_seid: pointer to where to put the resulting VEB SEID
Shannon Nelson8a187f42016-01-13 16:51:41 -08002345 * @enable_stats: true to turn on VEB stats
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002346 * @cmd_details: pointer to command details structure or NULL
2347 *
2348 * This asks the FW to add a VEB between the uplink and downlink
2349 * elements. If the uplink SEID is 0, this will be a floating VEB.
2350 **/
2351i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
2352 u16 downlink_seid, u8 enabled_tc,
Shannon Nelson8a187f42016-01-13 16:51:41 -08002353 bool default_port, u16 *veb_seid,
2354 bool enable_stats,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002355 struct i40e_asq_cmd_details *cmd_details)
2356{
2357 struct i40e_aq_desc desc;
2358 struct i40e_aqc_add_veb *cmd =
2359 (struct i40e_aqc_add_veb *)&desc.params.raw;
2360 struct i40e_aqc_add_veb_completion *resp =
2361 (struct i40e_aqc_add_veb_completion *)&desc.params.raw;
2362 i40e_status status;
2363 u16 veb_flags = 0;
2364
2365 /* SEIDs need to either both be set or both be 0 for floating VEB */
2366 if (!!uplink_seid != !!downlink_seid)
2367 return I40E_ERR_PARAM;
2368
2369 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_veb);
2370
2371 cmd->uplink_seid = cpu_to_le16(uplink_seid);
2372 cmd->downlink_seid = cpu_to_le16(downlink_seid);
2373 cmd->enable_tcs = enabled_tc;
2374 if (!uplink_seid)
2375 veb_flags |= I40E_AQC_ADD_VEB_FLOATING;
2376 if (default_port)
2377 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT;
2378 else
2379 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DATA;
Kevin Scotte1c51b952013-11-20 10:02:51 +00002380
Shannon Nelson8a187f42016-01-13 16:51:41 -08002381 /* reverse logic here: set the bitflag to disable the stats */
2382 if (!enable_stats)
2383 veb_flags |= I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS;
Kevin Scotte1c51b952013-11-20 10:02:51 +00002384
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002385 cmd->veb_flags = cpu_to_le16(veb_flags);
2386
2387 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2388
2389 if (!status && veb_seid)
2390 *veb_seid = le16_to_cpu(resp->veb_seid);
2391
2392 return status;
2393}
2394
2395/**
2396 * i40e_aq_get_veb_parameters - Retrieve VEB parameters
2397 * @hw: pointer to the hw struct
2398 * @veb_seid: the SEID of the VEB to query
2399 * @switch_id: the uplink switch id
Jeff Kirsher98d44382013-12-21 05:44:42 +00002400 * @floating: set to true if the VEB is floating
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002401 * @statistic_index: index of the stats counter block for this VEB
2402 * @vebs_used: number of VEB's used by function
Jeff Kirsher98d44382013-12-21 05:44:42 +00002403 * @vebs_free: total VEB's not reserved by any function
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002404 * @cmd_details: pointer to command details structure or NULL
2405 *
2406 * This retrieves the parameters for a particular VEB, specified by
2407 * uplink_seid, and returns them to the caller.
2408 **/
2409i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
2410 u16 veb_seid, u16 *switch_id,
2411 bool *floating, u16 *statistic_index,
2412 u16 *vebs_used, u16 *vebs_free,
2413 struct i40e_asq_cmd_details *cmd_details)
2414{
2415 struct i40e_aq_desc desc;
2416 struct i40e_aqc_get_veb_parameters_completion *cmd_resp =
2417 (struct i40e_aqc_get_veb_parameters_completion *)
2418 &desc.params.raw;
2419 i40e_status status;
2420
2421 if (veb_seid == 0)
2422 return I40E_ERR_PARAM;
2423
2424 i40e_fill_default_direct_cmd_desc(&desc,
2425 i40e_aqc_opc_get_veb_parameters);
2426 cmd_resp->seid = cpu_to_le16(veb_seid);
2427
2428 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2429 if (status)
2430 goto get_veb_exit;
2431
2432 if (switch_id)
2433 *switch_id = le16_to_cpu(cmd_resp->switch_id);
2434 if (statistic_index)
2435 *statistic_index = le16_to_cpu(cmd_resp->statistic_index);
2436 if (vebs_used)
2437 *vebs_used = le16_to_cpu(cmd_resp->vebs_used);
2438 if (vebs_free)
2439 *vebs_free = le16_to_cpu(cmd_resp->vebs_free);
2440 if (floating) {
2441 u16 flags = le16_to_cpu(cmd_resp->veb_flags);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002442
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002443 if (flags & I40E_AQC_ADD_VEB_FLOATING)
2444 *floating = true;
2445 else
2446 *floating = false;
2447 }
2448
2449get_veb_exit:
2450 return status;
2451}
2452
2453/**
2454 * i40e_aq_add_macvlan
2455 * @hw: pointer to the hw struct
2456 * @seid: VSI for the mac address
2457 * @mv_list: list of macvlans to be added
2458 * @count: length of the list
2459 * @cmd_details: pointer to command details structure or NULL
2460 *
2461 * Add MAC/VLAN addresses to the HW filtering
2462 **/
2463i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 seid,
2464 struct i40e_aqc_add_macvlan_element_data *mv_list,
2465 u16 count, struct i40e_asq_cmd_details *cmd_details)
2466{
2467 struct i40e_aq_desc desc;
2468 struct i40e_aqc_macvlan *cmd =
2469 (struct i40e_aqc_macvlan *)&desc.params.raw;
2470 i40e_status status;
2471 u16 buf_size;
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002472 int i;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002473
2474 if (count == 0 || !mv_list || !hw)
2475 return I40E_ERR_PARAM;
2476
Shannon Nelson1efc80e2015-02-27 09:18:30 +00002477 buf_size = count * sizeof(*mv_list);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002478
2479 /* prep the rest of the request */
2480 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_macvlan);
2481 cmd->num_addresses = cpu_to_le16(count);
2482 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
2483 cmd->seid[1] = 0;
2484 cmd->seid[2] = 0;
2485
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002486 for (i = 0; i < count; i++)
2487 if (is_multicast_ether_addr(mv_list[i].mac_addr))
2488 mv_list[i].flags |=
2489 cpu_to_le16(I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC);
2490
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002491 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2492 if (buf_size > I40E_AQ_LARGE_BUF)
2493 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2494
2495 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002496 cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002497
2498 return status;
2499}
2500
2501/**
2502 * i40e_aq_remove_macvlan
2503 * @hw: pointer to the hw struct
2504 * @seid: VSI for the mac address
2505 * @mv_list: list of macvlans to be removed
2506 * @count: length of the list
2507 * @cmd_details: pointer to command details structure or NULL
2508 *
2509 * Remove MAC/VLAN addresses from the HW filtering
2510 **/
2511i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 seid,
2512 struct i40e_aqc_remove_macvlan_element_data *mv_list,
2513 u16 count, struct i40e_asq_cmd_details *cmd_details)
2514{
2515 struct i40e_aq_desc desc;
2516 struct i40e_aqc_macvlan *cmd =
2517 (struct i40e_aqc_macvlan *)&desc.params.raw;
2518 i40e_status status;
2519 u16 buf_size;
2520
2521 if (count == 0 || !mv_list || !hw)
2522 return I40E_ERR_PARAM;
2523
Shannon Nelson1efc80e2015-02-27 09:18:30 +00002524 buf_size = count * sizeof(*mv_list);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002525
2526 /* prep the rest of the request */
2527 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_macvlan);
2528 cmd->num_addresses = cpu_to_le16(count);
2529 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
2530 cmd->seid[1] = 0;
2531 cmd->seid[2] = 0;
2532
2533 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2534 if (buf_size > I40E_AQ_LARGE_BUF)
2535 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2536
2537 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
2538 cmd_details);
2539
2540 return status;
2541}
2542
2543/**
Kiran Patil7bd68752016-01-04 10:33:07 -08002544 * i40e_mirrorrule_op - Internal helper function to add/delete mirror rule
2545 * @hw: pointer to the hw struct
2546 * @opcode: AQ opcode for add or delete mirror rule
2547 * @sw_seid: Switch SEID (to which rule refers)
2548 * @rule_type: Rule Type (ingress/egress/VLAN)
2549 * @id: Destination VSI SEID or Rule ID
2550 * @count: length of the list
2551 * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
2552 * @cmd_details: pointer to command details structure or NULL
2553 * @rule_id: Rule ID returned from FW
2554 * @rule_used: Number of rules used in internal switch
2555 * @rule_free: Number of rules free in internal switch
2556 *
2557 * Add/Delete a mirror rule to a specific switch. Mirror rules are supported for
2558 * VEBs/VEPA elements only
2559 **/
2560static i40e_status i40e_mirrorrule_op(struct i40e_hw *hw,
2561 u16 opcode, u16 sw_seid, u16 rule_type, u16 id,
2562 u16 count, __le16 *mr_list,
2563 struct i40e_asq_cmd_details *cmd_details,
2564 u16 *rule_id, u16 *rules_used, u16 *rules_free)
2565{
2566 struct i40e_aq_desc desc;
2567 struct i40e_aqc_add_delete_mirror_rule *cmd =
2568 (struct i40e_aqc_add_delete_mirror_rule *)&desc.params.raw;
2569 struct i40e_aqc_add_delete_mirror_rule_completion *resp =
2570 (struct i40e_aqc_add_delete_mirror_rule_completion *)&desc.params.raw;
2571 i40e_status status;
2572 u16 buf_size;
2573
2574 buf_size = count * sizeof(*mr_list);
2575
2576 /* prep the rest of the request */
2577 i40e_fill_default_direct_cmd_desc(&desc, opcode);
2578 cmd->seid = cpu_to_le16(sw_seid);
2579 cmd->rule_type = cpu_to_le16(rule_type &
2580 I40E_AQC_MIRROR_RULE_TYPE_MASK);
2581 cmd->num_entries = cpu_to_le16(count);
2582 /* Dest VSI for add, rule_id for delete */
2583 cmd->destination = cpu_to_le16(id);
2584 if (mr_list) {
2585 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
2586 I40E_AQ_FLAG_RD));
2587 if (buf_size > I40E_AQ_LARGE_BUF)
2588 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2589 }
2590
2591 status = i40e_asq_send_command(hw, &desc, mr_list, buf_size,
2592 cmd_details);
2593 if (!status ||
2594 hw->aq.asq_last_status == I40E_AQ_RC_ENOSPC) {
2595 if (rule_id)
2596 *rule_id = le16_to_cpu(resp->rule_id);
2597 if (rules_used)
2598 *rules_used = le16_to_cpu(resp->mirror_rules_used);
2599 if (rules_free)
2600 *rules_free = le16_to_cpu(resp->mirror_rules_free);
2601 }
2602 return status;
2603}
2604
2605/**
2606 * i40e_aq_add_mirrorrule - add a mirror rule
2607 * @hw: pointer to the hw struct
2608 * @sw_seid: Switch SEID (to which rule refers)
2609 * @rule_type: Rule Type (ingress/egress/VLAN)
2610 * @dest_vsi: SEID of VSI to which packets will be mirrored
2611 * @count: length of the list
2612 * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
2613 * @cmd_details: pointer to command details structure or NULL
2614 * @rule_id: Rule ID returned from FW
2615 * @rule_used: Number of rules used in internal switch
2616 * @rule_free: Number of rules free in internal switch
2617 *
2618 * Add mirror rule. Mirror rules are supported for VEBs or VEPA elements only
2619 **/
2620i40e_status i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
2621 u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
2622 struct i40e_asq_cmd_details *cmd_details,
2623 u16 *rule_id, u16 *rules_used, u16 *rules_free)
2624{
2625 if (!(rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS ||
2626 rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS)) {
2627 if (count == 0 || !mr_list)
2628 return I40E_ERR_PARAM;
2629 }
2630
2631 return i40e_mirrorrule_op(hw, i40e_aqc_opc_add_mirror_rule, sw_seid,
2632 rule_type, dest_vsi, count, mr_list,
2633 cmd_details, rule_id, rules_used, rules_free);
2634}
2635
2636/**
2637 * i40e_aq_delete_mirrorrule - delete a mirror rule
2638 * @hw: pointer to the hw struct
2639 * @sw_seid: Switch SEID (to which rule refers)
2640 * @rule_type: Rule Type (ingress/egress/VLAN)
2641 * @count: length of the list
2642 * @rule_id: Rule ID that is returned in the receive desc as part of
2643 * add_mirrorrule.
2644 * @mr_list: list of mirrored VLAN IDs to be removed
2645 * @cmd_details: pointer to command details structure or NULL
2646 * @rule_used: Number of rules used in internal switch
2647 * @rule_free: Number of rules free in internal switch
2648 *
2649 * Delete a mirror rule. Mirror rules are supported for VEBs/VEPA elements only
2650 **/
2651i40e_status i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
2652 u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
2653 struct i40e_asq_cmd_details *cmd_details,
2654 u16 *rules_used, u16 *rules_free)
2655{
2656 /* Rule ID has to be valid except rule_type: INGRESS VLAN mirroring */
2657 if (rule_type != I40E_AQC_MIRROR_RULE_TYPE_VLAN) {
2658 if (!rule_id)
2659 return I40E_ERR_PARAM;
2660 } else {
2661 /* count and mr_list shall be valid for rule_type INGRESS VLAN
2662 * mirroring. For other rule_type, count and rule_type should
2663 * not matter.
2664 */
2665 if (count == 0 || !mr_list)
2666 return I40E_ERR_PARAM;
2667 }
2668
2669 return i40e_mirrorrule_op(hw, i40e_aqc_opc_delete_mirror_rule, sw_seid,
2670 rule_type, rule_id, count, mr_list,
2671 cmd_details, NULL, rules_used, rules_free);
2672}
2673
2674/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002675 * i40e_aq_send_msg_to_vf
2676 * @hw: pointer to the hardware structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002677 * @vfid: VF id to send msg
Jeff Kirsher98d44382013-12-21 05:44:42 +00002678 * @v_opcode: opcodes for VF-PF communication
2679 * @v_retval: return error code
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002680 * @msg: pointer to the msg buffer
2681 * @msglen: msg length
2682 * @cmd_details: pointer to command details
2683 *
2684 * send msg to vf
2685 **/
2686i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
2687 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
2688 struct i40e_asq_cmd_details *cmd_details)
2689{
2690 struct i40e_aq_desc desc;
2691 struct i40e_aqc_pf_vf_message *cmd =
2692 (struct i40e_aqc_pf_vf_message *)&desc.params.raw;
2693 i40e_status status;
2694
2695 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_send_msg_to_vf);
2696 cmd->id = cpu_to_le32(vfid);
2697 desc.cookie_high = cpu_to_le32(v_opcode);
2698 desc.cookie_low = cpu_to_le32(v_retval);
2699 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_SI);
2700 if (msglen) {
2701 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
2702 I40E_AQ_FLAG_RD));
2703 if (msglen > I40E_AQ_LARGE_BUF)
2704 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2705 desc.datalen = cpu_to_le16(msglen);
2706 }
2707 status = i40e_asq_send_command(hw, &desc, msg, msglen, cmd_details);
2708
2709 return status;
2710}
2711
2712/**
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002713 * i40e_aq_debug_read_register
2714 * @hw: pointer to the hw struct
2715 * @reg_addr: register address
2716 * @reg_val: register value
2717 * @cmd_details: pointer to command details structure or NULL
2718 *
2719 * Read the register using the admin queue commands
2720 **/
2721i40e_status i40e_aq_debug_read_register(struct i40e_hw *hw,
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002722 u32 reg_addr, u64 *reg_val,
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002723 struct i40e_asq_cmd_details *cmd_details)
2724{
2725 struct i40e_aq_desc desc;
2726 struct i40e_aqc_debug_reg_read_write *cmd_resp =
2727 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
2728 i40e_status status;
2729
2730 if (reg_val == NULL)
2731 return I40E_ERR_PARAM;
2732
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002733 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_read_reg);
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002734
2735 cmd_resp->address = cpu_to_le32(reg_addr);
2736
2737 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2738
2739 if (!status) {
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002740 *reg_val = ((u64)le32_to_cpu(cmd_resp->value_high) << 32) |
2741 (u64)le32_to_cpu(cmd_resp->value_low);
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002742 }
2743
2744 return status;
2745}
2746
2747/**
Shannon Nelson53db45c2014-08-01 13:27:05 -07002748 * i40e_aq_debug_write_register
2749 * @hw: pointer to the hw struct
2750 * @reg_addr: register address
2751 * @reg_val: register value
2752 * @cmd_details: pointer to command details structure or NULL
2753 *
2754 * Write to a register using the admin queue commands
2755 **/
2756i40e_status i40e_aq_debug_write_register(struct i40e_hw *hw,
2757 u32 reg_addr, u64 reg_val,
2758 struct i40e_asq_cmd_details *cmd_details)
2759{
2760 struct i40e_aq_desc desc;
2761 struct i40e_aqc_debug_reg_read_write *cmd =
2762 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
2763 i40e_status status;
2764
2765 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_write_reg);
2766
2767 cmd->address = cpu_to_le32(reg_addr);
2768 cmd->value_high = cpu_to_le32((u32)(reg_val >> 32));
2769 cmd->value_low = cpu_to_le32((u32)(reg_val & 0xFFFFFFFF));
2770
2771 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2772
2773 return status;
2774}
2775
2776/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002777 * i40e_aq_set_hmc_resource_profile
2778 * @hw: pointer to the hw struct
2779 * @profile: type of profile the HMC is to be set as
2780 * @pe_vf_enabled_count: the number of PE enabled VFs the system has
2781 * @cmd_details: pointer to command details structure or NULL
2782 *
2783 * set the HMC profile of the device.
2784 **/
2785i40e_status i40e_aq_set_hmc_resource_profile(struct i40e_hw *hw,
2786 enum i40e_aq_hmc_profile profile,
2787 u8 pe_vf_enabled_count,
2788 struct i40e_asq_cmd_details *cmd_details)
2789{
2790 struct i40e_aq_desc desc;
2791 struct i40e_aq_get_set_hmc_resource_profile *cmd =
2792 (struct i40e_aq_get_set_hmc_resource_profile *)&desc.params.raw;
2793 i40e_status status;
2794
2795 i40e_fill_default_direct_cmd_desc(&desc,
2796 i40e_aqc_opc_set_hmc_resource_profile);
2797
2798 cmd->pm_profile = (u8)profile;
2799 cmd->pe_vf_enabled = pe_vf_enabled_count;
2800
2801 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2802
2803 return status;
2804}
2805
2806/**
2807 * i40e_aq_request_resource
2808 * @hw: pointer to the hw struct
2809 * @resource: resource id
2810 * @access: access type
2811 * @sdp_number: resource number
2812 * @timeout: the maximum time in ms that the driver may hold the resource
2813 * @cmd_details: pointer to command details structure or NULL
2814 *
2815 * requests common resource using the admin queue commands
2816 **/
2817i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
2818 enum i40e_aq_resources_ids resource,
2819 enum i40e_aq_resource_access_type access,
2820 u8 sdp_number, u64 *timeout,
2821 struct i40e_asq_cmd_details *cmd_details)
2822{
2823 struct i40e_aq_desc desc;
2824 struct i40e_aqc_request_resource *cmd_resp =
2825 (struct i40e_aqc_request_resource *)&desc.params.raw;
2826 i40e_status status;
2827
2828 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_request_resource);
2829
2830 cmd_resp->resource_id = cpu_to_le16(resource);
2831 cmd_resp->access_type = cpu_to_le16(access);
2832 cmd_resp->resource_number = cpu_to_le32(sdp_number);
2833
2834 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2835 /* The completion specifies the maximum time in ms that the driver
2836 * may hold the resource in the Timeout field.
2837 * If the resource is held by someone else, the command completes with
2838 * busy return value and the timeout field indicates the maximum time
2839 * the current owner of the resource has to free it.
2840 */
2841 if (!status || hw->aq.asq_last_status == I40E_AQ_RC_EBUSY)
2842 *timeout = le32_to_cpu(cmd_resp->timeout);
2843
2844 return status;
2845}
2846
2847/**
2848 * i40e_aq_release_resource
2849 * @hw: pointer to the hw struct
2850 * @resource: resource id
2851 * @sdp_number: resource number
2852 * @cmd_details: pointer to command details structure or NULL
2853 *
2854 * release common resource using the admin queue commands
2855 **/
2856i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
2857 enum i40e_aq_resources_ids resource,
2858 u8 sdp_number,
2859 struct i40e_asq_cmd_details *cmd_details)
2860{
2861 struct i40e_aq_desc desc;
2862 struct i40e_aqc_request_resource *cmd =
2863 (struct i40e_aqc_request_resource *)&desc.params.raw;
2864 i40e_status status;
2865
2866 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_release_resource);
2867
2868 cmd->resource_id = cpu_to_le16(resource);
2869 cmd->resource_number = cpu_to_le32(sdp_number);
2870
2871 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2872
2873 return status;
2874}
2875
2876/**
2877 * i40e_aq_read_nvm
2878 * @hw: pointer to the hw struct
2879 * @module_pointer: module pointer location in words from the NVM beginning
2880 * @offset: byte offset from the module beginning
2881 * @length: length of the section to be read (in bytes from the offset)
2882 * @data: command buffer (size [bytes] = length)
2883 * @last_command: tells if this is the last command in a series
2884 * @cmd_details: pointer to command details structure or NULL
2885 *
2886 * Read the NVM using the admin queue commands
2887 **/
2888i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
2889 u32 offset, u16 length, void *data,
2890 bool last_command,
2891 struct i40e_asq_cmd_details *cmd_details)
2892{
2893 struct i40e_aq_desc desc;
2894 struct i40e_aqc_nvm_update *cmd =
2895 (struct i40e_aqc_nvm_update *)&desc.params.raw;
2896 i40e_status status;
2897
2898 /* In offset the highest byte must be zeroed. */
2899 if (offset & 0xFF000000) {
2900 status = I40E_ERR_PARAM;
2901 goto i40e_aq_read_nvm_exit;
2902 }
2903
2904 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_read);
2905
2906 /* If this is the last command in a series, set the proper flag. */
2907 if (last_command)
2908 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
2909 cmd->module_pointer = module_pointer;
2910 cmd->offset = cpu_to_le32(offset);
2911 cmd->length = cpu_to_le16(length);
2912
2913 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2914 if (length > I40E_AQ_LARGE_BUF)
2915 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2916
2917 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
2918
2919i40e_aq_read_nvm_exit:
2920 return status;
2921}
2922
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00002923/**
2924 * i40e_aq_erase_nvm
2925 * @hw: pointer to the hw struct
2926 * @module_pointer: module pointer location in words from the NVM beginning
2927 * @offset: offset in the module (expressed in 4 KB from module's beginning)
2928 * @length: length of the section to be erased (expressed in 4 KB)
2929 * @last_command: tells if this is the last command in a series
2930 * @cmd_details: pointer to command details structure or NULL
2931 *
2932 * Erase the NVM sector using the admin queue commands
2933 **/
2934i40e_status i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
2935 u32 offset, u16 length, bool last_command,
2936 struct i40e_asq_cmd_details *cmd_details)
2937{
2938 struct i40e_aq_desc desc;
2939 struct i40e_aqc_nvm_update *cmd =
2940 (struct i40e_aqc_nvm_update *)&desc.params.raw;
2941 i40e_status status;
2942
2943 /* In offset the highest byte must be zeroed. */
2944 if (offset & 0xFF000000) {
2945 status = I40E_ERR_PARAM;
2946 goto i40e_aq_erase_nvm_exit;
2947 }
2948
2949 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_erase);
2950
2951 /* If this is the last command in a series, set the proper flag. */
2952 if (last_command)
2953 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
2954 cmd->module_pointer = module_pointer;
2955 cmd->offset = cpu_to_le32(offset);
2956 cmd->length = cpu_to_le16(length);
2957
2958 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2959
2960i40e_aq_erase_nvm_exit:
2961 return status;
2962}
2963
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002964/**
2965 * i40e_parse_discover_capabilities
2966 * @hw: pointer to the hw struct
2967 * @buff: pointer to a buffer containing device/function capability records
2968 * @cap_count: number of capability records in the list
2969 * @list_type_opc: type of capabilities list to parse
2970 *
2971 * Parse the device/function capabilities list.
2972 **/
2973static void i40e_parse_discover_capabilities(struct i40e_hw *hw, void *buff,
2974 u32 cap_count,
2975 enum i40e_admin_queue_opc list_type_opc)
2976{
2977 struct i40e_aqc_list_capabilities_element_resp *cap;
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002978 u32 valid_functions, num_functions;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002979 u32 number, logical_id, phys_id;
2980 struct i40e_hw_capabilities *p;
Pawel Orlowskic78b9532015-04-22 19:34:06 -04002981 u8 major_rev;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002982 u32 i = 0;
2983 u16 id;
2984
2985 cap = (struct i40e_aqc_list_capabilities_element_resp *) buff;
2986
2987 if (list_type_opc == i40e_aqc_opc_list_dev_capabilities)
Joe Perchesb58f2f72014-03-25 04:30:32 +00002988 p = &hw->dev_caps;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002989 else if (list_type_opc == i40e_aqc_opc_list_func_capabilities)
Joe Perchesb58f2f72014-03-25 04:30:32 +00002990 p = &hw->func_caps;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002991 else
2992 return;
2993
2994 for (i = 0; i < cap_count; i++, cap++) {
2995 id = le16_to_cpu(cap->id);
2996 number = le32_to_cpu(cap->number);
2997 logical_id = le32_to_cpu(cap->logical_id);
2998 phys_id = le32_to_cpu(cap->phys_id);
Pawel Orlowskic78b9532015-04-22 19:34:06 -04002999 major_rev = cap->major_rev;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003000
3001 switch (id) {
Shannon Nelson406e7342015-12-10 11:38:49 -08003002 case I40E_AQ_CAP_ID_SWITCH_MODE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003003 p->switch_mode = number;
3004 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003005 case I40E_AQ_CAP_ID_MNG_MODE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003006 p->management_mode = number;
3007 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003008 case I40E_AQ_CAP_ID_NPAR_ACTIVE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003009 p->npar_enable = number;
3010 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003011 case I40E_AQ_CAP_ID_OS2BMC_CAP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003012 p->os2bmc = number;
3013 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003014 case I40E_AQ_CAP_ID_FUNCTIONS_VALID:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003015 p->valid_functions = number;
3016 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003017 case I40E_AQ_CAP_ID_SRIOV:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003018 if (number == 1)
3019 p->sr_iov_1_1 = true;
3020 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003021 case I40E_AQ_CAP_ID_VF:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003022 p->num_vfs = number;
3023 p->vf_base_id = logical_id;
3024 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003025 case I40E_AQ_CAP_ID_VMDQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003026 if (number == 1)
3027 p->vmdq = true;
3028 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003029 case I40E_AQ_CAP_ID_8021QBG:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003030 if (number == 1)
3031 p->evb_802_1_qbg = true;
3032 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003033 case I40E_AQ_CAP_ID_8021QBR:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003034 if (number == 1)
3035 p->evb_802_1_qbh = true;
3036 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003037 case I40E_AQ_CAP_ID_VSI:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003038 p->num_vsis = number;
3039 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003040 case I40E_AQ_CAP_ID_DCB:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003041 if (number == 1) {
3042 p->dcb = true;
3043 p->enabled_tcmap = logical_id;
3044 p->maxtc = phys_id;
3045 }
3046 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003047 case I40E_AQ_CAP_ID_FCOE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003048 if (number == 1)
3049 p->fcoe = true;
3050 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003051 case I40E_AQ_CAP_ID_ISCSI:
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00003052 if (number == 1)
3053 p->iscsi = true;
3054 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003055 case I40E_AQ_CAP_ID_RSS:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003056 p->rss = true;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00003057 p->rss_table_size = number;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003058 p->rss_table_entry_width = logical_id;
3059 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003060 case I40E_AQ_CAP_ID_RXQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003061 p->num_rx_qp = number;
3062 p->base_queue = phys_id;
3063 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003064 case I40E_AQ_CAP_ID_TXQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003065 p->num_tx_qp = number;
3066 p->base_queue = phys_id;
3067 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003068 case I40E_AQ_CAP_ID_MSIX:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003069 p->num_msix_vectors = number;
3070 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003071 case I40E_AQ_CAP_ID_VF_MSIX:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003072 p->num_msix_vectors_vf = number;
3073 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003074 case I40E_AQ_CAP_ID_FLEX10:
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003075 if (major_rev == 1) {
3076 if (number == 1) {
3077 p->flex10_enable = true;
3078 p->flex10_capable = true;
3079 }
3080 } else {
3081 /* Capability revision >= 2 */
3082 if (number & 1)
3083 p->flex10_enable = true;
3084 if (number & 2)
3085 p->flex10_capable = true;
3086 }
3087 p->flex10_mode = logical_id;
3088 p->flex10_status = phys_id;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003089 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003090 case I40E_AQ_CAP_ID_CEM:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003091 if (number == 1)
3092 p->mgmt_cem = true;
3093 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003094 case I40E_AQ_CAP_ID_IWARP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003095 if (number == 1)
3096 p->iwarp = true;
3097 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003098 case I40E_AQ_CAP_ID_LED:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003099 if (phys_id < I40E_HW_CAP_MAX_GPIO)
3100 p->led[phys_id] = true;
3101 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003102 case I40E_AQ_CAP_ID_SDP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003103 if (phys_id < I40E_HW_CAP_MAX_GPIO)
3104 p->sdp[phys_id] = true;
3105 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003106 case I40E_AQ_CAP_ID_MDIO:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003107 if (number == 1) {
3108 p->mdio_port_num = phys_id;
3109 p->mdio_port_mode = logical_id;
3110 }
3111 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003112 case I40E_AQ_CAP_ID_1588:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003113 if (number == 1)
3114 p->ieee_1588 = true;
3115 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003116 case I40E_AQ_CAP_ID_FLOW_DIRECTOR:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003117 p->fd = true;
3118 p->fd_filters_guaranteed = number;
3119 p->fd_filters_best_effort = logical_id;
3120 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003121 case I40E_AQ_CAP_ID_WSR_PROT:
Kevin Scott73b23402015-04-07 19:45:38 -04003122 p->wr_csr_prot = (u64)number;
3123 p->wr_csr_prot |= (u64)logical_id << 32;
3124 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003125 default:
3126 break;
3127 }
3128 }
3129
Vasu Devf18ae102015-04-07 19:45:36 -04003130 if (p->fcoe)
3131 i40e_debug(hw, I40E_DEBUG_ALL, "device is FCoE capable\n");
3132
Vasu Dev566bb852014-04-09 05:59:06 +00003133 /* Software override ensuring FCoE is disabled if npar or mfp
3134 * mode because it is not supported in these modes.
3135 */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003136 if (p->npar_enable || p->flex10_enable)
Vasu Dev566bb852014-04-09 05:59:06 +00003137 p->fcoe = false;
3138
Shannon Nelson9fee9db2014-12-11 07:06:30 +00003139 /* count the enabled ports (aka the "not disabled" ports) */
3140 hw->num_ports = 0;
3141 for (i = 0; i < 4; i++) {
3142 u32 port_cfg_reg = I40E_PRTGEN_CNF + (4 * i);
3143 u64 port_cfg = 0;
3144
3145 /* use AQ read to get the physical register offset instead
3146 * of the port relative offset
3147 */
3148 i40e_aq_debug_read_register(hw, port_cfg_reg, &port_cfg, NULL);
3149 if (!(port_cfg & I40E_PRTGEN_CNF_PORT_DIS_MASK))
3150 hw->num_ports++;
3151 }
3152
3153 valid_functions = p->valid_functions;
3154 num_functions = 0;
3155 while (valid_functions) {
3156 if (valid_functions & 1)
3157 num_functions++;
3158 valid_functions >>= 1;
3159 }
3160
3161 /* partition id is 1-based, and functions are evenly spread
3162 * across the ports as partitions
3163 */
3164 hw->partition_id = (hw->pf_id / hw->num_ports) + 1;
3165 hw->num_partitions = num_functions / hw->num_ports;
3166
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003167 /* additional HW specific goodies that might
3168 * someday be HW version specific
3169 */
3170 p->rx_buf_chain_len = I40E_MAX_CHAINED_RX_BUFFERS;
3171}
3172
3173/**
3174 * i40e_aq_discover_capabilities
3175 * @hw: pointer to the hw struct
3176 * @buff: a virtual buffer to hold the capabilities
3177 * @buff_size: Size of the virtual buffer
3178 * @data_size: Size of the returned data, or buff size needed if AQ err==ENOMEM
3179 * @list_type_opc: capabilities type to discover - pass in the command opcode
3180 * @cmd_details: pointer to command details structure or NULL
3181 *
3182 * Get the device capabilities descriptions from the firmware
3183 **/
3184i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
3185 void *buff, u16 buff_size, u16 *data_size,
3186 enum i40e_admin_queue_opc list_type_opc,
3187 struct i40e_asq_cmd_details *cmd_details)
3188{
3189 struct i40e_aqc_list_capabilites *cmd;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003190 struct i40e_aq_desc desc;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08003191 i40e_status status = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003192
3193 cmd = (struct i40e_aqc_list_capabilites *)&desc.params.raw;
3194
3195 if (list_type_opc != i40e_aqc_opc_list_func_capabilities &&
3196 list_type_opc != i40e_aqc_opc_list_dev_capabilities) {
3197 status = I40E_ERR_PARAM;
3198 goto exit;
3199 }
3200
3201 i40e_fill_default_direct_cmd_desc(&desc, list_type_opc);
3202
3203 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3204 if (buff_size > I40E_AQ_LARGE_BUF)
3205 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3206
3207 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3208 *data_size = le16_to_cpu(desc.datalen);
3209
3210 if (status)
3211 goto exit;
3212
3213 i40e_parse_discover_capabilities(hw, buff, le32_to_cpu(cmd->count),
3214 list_type_opc);
3215
3216exit:
3217 return status;
3218}
3219
3220/**
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00003221 * i40e_aq_update_nvm
3222 * @hw: pointer to the hw struct
3223 * @module_pointer: module pointer location in words from the NVM beginning
3224 * @offset: byte offset from the module beginning
3225 * @length: length of the section to be written (in bytes from the offset)
3226 * @data: command buffer (size [bytes] = length)
3227 * @last_command: tells if this is the last command in a series
3228 * @cmd_details: pointer to command details structure or NULL
3229 *
3230 * Update the NVM using the admin queue commands
3231 **/
3232i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
3233 u32 offset, u16 length, void *data,
3234 bool last_command,
3235 struct i40e_asq_cmd_details *cmd_details)
3236{
3237 struct i40e_aq_desc desc;
3238 struct i40e_aqc_nvm_update *cmd =
3239 (struct i40e_aqc_nvm_update *)&desc.params.raw;
3240 i40e_status status;
3241
3242 /* In offset the highest byte must be zeroed. */
3243 if (offset & 0xFF000000) {
3244 status = I40E_ERR_PARAM;
3245 goto i40e_aq_update_nvm_exit;
3246 }
3247
3248 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_update);
3249
3250 /* If this is the last command in a series, set the proper flag. */
3251 if (last_command)
3252 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
3253 cmd->module_pointer = module_pointer;
3254 cmd->offset = cpu_to_le32(offset);
3255 cmd->length = cpu_to_le16(length);
3256
3257 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3258 if (length > I40E_AQ_LARGE_BUF)
3259 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3260
3261 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
3262
3263i40e_aq_update_nvm_exit:
3264 return status;
3265}
3266
3267/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003268 * i40e_aq_get_lldp_mib
3269 * @hw: pointer to the hw struct
3270 * @bridge_type: type of bridge requested
3271 * @mib_type: Local, Remote or both Local and Remote MIBs
3272 * @buff: pointer to a user supplied buffer to store the MIB block
3273 * @buff_size: size of the buffer (in bytes)
3274 * @local_len : length of the returned Local LLDP MIB
3275 * @remote_len: length of the returned Remote LLDP MIB
3276 * @cmd_details: pointer to command details structure or NULL
3277 *
3278 * Requests the complete LLDP MIB (entire packet).
3279 **/
3280i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
3281 u8 mib_type, void *buff, u16 buff_size,
3282 u16 *local_len, u16 *remote_len,
3283 struct i40e_asq_cmd_details *cmd_details)
3284{
3285 struct i40e_aq_desc desc;
3286 struct i40e_aqc_lldp_get_mib *cmd =
3287 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
3288 struct i40e_aqc_lldp_get_mib *resp =
3289 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
3290 i40e_status status;
3291
3292 if (buff_size == 0 || !buff)
3293 return I40E_ERR_PARAM;
3294
3295 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_get_mib);
3296 /* Indirect Command */
3297 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3298
3299 cmd->type = mib_type & I40E_AQ_LLDP_MIB_TYPE_MASK;
3300 cmd->type |= ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
3301 I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
3302
3303 desc.datalen = cpu_to_le16(buff_size);
3304
3305 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3306 if (buff_size > I40E_AQ_LARGE_BUF)
3307 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3308
3309 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3310 if (!status) {
3311 if (local_len != NULL)
3312 *local_len = le16_to_cpu(resp->local_len);
3313 if (remote_len != NULL)
3314 *remote_len = le16_to_cpu(resp->remote_len);
3315 }
3316
3317 return status;
3318}
3319
3320/**
3321 * i40e_aq_cfg_lldp_mib_change_event
3322 * @hw: pointer to the hw struct
3323 * @enable_update: Enable or Disable event posting
3324 * @cmd_details: pointer to command details structure or NULL
3325 *
3326 * Enable or Disable posting of an event on ARQ when LLDP MIB
3327 * associated with the interface changes
3328 **/
3329i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
3330 bool enable_update,
3331 struct i40e_asq_cmd_details *cmd_details)
3332{
3333 struct i40e_aq_desc desc;
3334 struct i40e_aqc_lldp_update_mib *cmd =
3335 (struct i40e_aqc_lldp_update_mib *)&desc.params.raw;
3336 i40e_status status;
3337
3338 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_update_mib);
3339
3340 if (!enable_update)
3341 cmd->command |= I40E_AQ_LLDP_MIB_UPDATE_DISABLE;
3342
3343 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3344
3345 return status;
3346}
3347
3348/**
3349 * i40e_aq_stop_lldp
3350 * @hw: pointer to the hw struct
3351 * @shutdown_agent: True if LLDP Agent needs to be Shutdown
3352 * @cmd_details: pointer to command details structure or NULL
3353 *
3354 * Stop or Shutdown the embedded LLDP Agent
3355 **/
3356i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
3357 struct i40e_asq_cmd_details *cmd_details)
3358{
3359 struct i40e_aq_desc desc;
3360 struct i40e_aqc_lldp_stop *cmd =
3361 (struct i40e_aqc_lldp_stop *)&desc.params.raw;
3362 i40e_status status;
3363
3364 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_stop);
3365
3366 if (shutdown_agent)
3367 cmd->command |= I40E_AQ_LLDP_AGENT_SHUTDOWN;
3368
3369 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3370
3371 return status;
3372}
3373
3374/**
3375 * i40e_aq_start_lldp
3376 * @hw: pointer to the hw struct
3377 * @cmd_details: pointer to command details structure or NULL
3378 *
3379 * Start the embedded LLDP Agent on all ports.
3380 **/
3381i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
3382 struct i40e_asq_cmd_details *cmd_details)
3383{
3384 struct i40e_aq_desc desc;
3385 struct i40e_aqc_lldp_start *cmd =
3386 (struct i40e_aqc_lldp_start *)&desc.params.raw;
3387 i40e_status status;
3388
3389 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_start);
3390
3391 cmd->command = I40E_AQ_LLDP_AGENT_START;
3392
3393 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3394
3395 return status;
3396}
3397
3398/**
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00003399 * i40e_aq_get_cee_dcb_config
3400 * @hw: pointer to the hw struct
3401 * @buff: response buffer that stores CEE operational configuration
3402 * @buff_size: size of the buffer passed
3403 * @cmd_details: pointer to command details structure or NULL
3404 *
3405 * Get CEE DCBX mode operational configuration from firmware
3406 **/
3407i40e_status i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
3408 void *buff, u16 buff_size,
3409 struct i40e_asq_cmd_details *cmd_details)
3410{
3411 struct i40e_aq_desc desc;
3412 i40e_status status;
3413
3414 if (buff_size == 0 || !buff)
3415 return I40E_ERR_PARAM;
3416
3417 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_cee_dcb_cfg);
3418
3419 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3420 status = i40e_asq_send_command(hw, &desc, (void *)buff, buff_size,
3421 cmd_details);
3422
3423 return status;
3424}
3425
3426/**
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003427 * i40e_aq_add_udp_tunnel
3428 * @hw: pointer to the hw struct
3429 * @udp_port: the UDP port to add
3430 * @header_len: length of the tunneling header length in DWords
3431 * @protocol_index: protocol index type
Jeff Kirsher98d44382013-12-21 05:44:42 +00003432 * @filter_index: pointer to filter index
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003433 * @cmd_details: pointer to command details structure or NULL
3434 **/
3435i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
Kevin Scottf4f94b92014-04-05 07:46:10 +00003436 u16 udp_port, u8 protocol_index,
3437 u8 *filter_index,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003438 struct i40e_asq_cmd_details *cmd_details)
3439{
3440 struct i40e_aq_desc desc;
3441 struct i40e_aqc_add_udp_tunnel *cmd =
3442 (struct i40e_aqc_add_udp_tunnel *)&desc.params.raw;
3443 struct i40e_aqc_del_udp_tunnel_completion *resp =
3444 (struct i40e_aqc_del_udp_tunnel_completion *)&desc.params.raw;
3445 i40e_status status;
3446
3447 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_udp_tunnel);
3448
3449 cmd->udp_port = cpu_to_le16(udp_port);
Shannon Nelson981b7542013-12-11 08:17:11 +00003450 cmd->protocol_type = protocol_index;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003451
3452 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3453
Shannon Nelson65d13462015-02-21 06:45:28 +00003454 if (!status && filter_index)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003455 *filter_index = resp->index;
3456
3457 return status;
3458}
3459
3460/**
3461 * i40e_aq_del_udp_tunnel
3462 * @hw: pointer to the hw struct
3463 * @index: filter index
3464 * @cmd_details: pointer to command details structure or NULL
3465 **/
3466i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
3467 struct i40e_asq_cmd_details *cmd_details)
3468{
3469 struct i40e_aq_desc desc;
3470 struct i40e_aqc_remove_udp_tunnel *cmd =
3471 (struct i40e_aqc_remove_udp_tunnel *)&desc.params.raw;
3472 i40e_status status;
3473
3474 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_del_udp_tunnel);
3475
3476 cmd->index = index;
3477
3478 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3479
3480 return status;
3481}
3482
3483/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003484 * i40e_aq_delete_element - Delete switch element
3485 * @hw: pointer to the hw struct
3486 * @seid: the SEID to delete from the switch
3487 * @cmd_details: pointer to command details structure or NULL
3488 *
3489 * This deletes a switch element from the switch.
3490 **/
3491i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
3492 struct i40e_asq_cmd_details *cmd_details)
3493{
3494 struct i40e_aq_desc desc;
3495 struct i40e_aqc_switch_seid *cmd =
3496 (struct i40e_aqc_switch_seid *)&desc.params.raw;
3497 i40e_status status;
3498
3499 if (seid == 0)
3500 return I40E_ERR_PARAM;
3501
3502 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_delete_element);
3503
3504 cmd->seid = cpu_to_le16(seid);
3505
3506 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3507
3508 return status;
3509}
3510
3511/**
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003512 * i40e_aq_dcb_updated - DCB Updated Command
3513 * @hw: pointer to the hw struct
3514 * @cmd_details: pointer to command details structure or NULL
3515 *
3516 * EMP will return when the shared RPB settings have been
3517 * recomputed and modified. The retval field in the descriptor
3518 * will be set to 0 when RPB is modified.
3519 **/
3520i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
3521 struct i40e_asq_cmd_details *cmd_details)
3522{
3523 struct i40e_aq_desc desc;
3524 i40e_status status;
3525
3526 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_dcb_updated);
3527
3528 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3529
3530 return status;
3531}
3532
3533/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003534 * i40e_aq_tx_sched_cmd - generic Tx scheduler AQ command handler
3535 * @hw: pointer to the hw struct
3536 * @seid: seid for the physical port/switching component/vsi
3537 * @buff: Indirect buffer to hold data parameters and response
3538 * @buff_size: Indirect buffer size
3539 * @opcode: Tx scheduler AQ command opcode
3540 * @cmd_details: pointer to command details structure or NULL
3541 *
3542 * Generic command handler for Tx scheduler AQ commands
3543 **/
3544static i40e_status i40e_aq_tx_sched_cmd(struct i40e_hw *hw, u16 seid,
3545 void *buff, u16 buff_size,
3546 enum i40e_admin_queue_opc opcode,
3547 struct i40e_asq_cmd_details *cmd_details)
3548{
3549 struct i40e_aq_desc desc;
3550 struct i40e_aqc_tx_sched_ind *cmd =
3551 (struct i40e_aqc_tx_sched_ind *)&desc.params.raw;
3552 i40e_status status;
3553 bool cmd_param_flag = false;
3554
3555 switch (opcode) {
3556 case i40e_aqc_opc_configure_vsi_ets_sla_bw_limit:
3557 case i40e_aqc_opc_configure_vsi_tc_bw:
3558 case i40e_aqc_opc_enable_switching_comp_ets:
3559 case i40e_aqc_opc_modify_switching_comp_ets:
3560 case i40e_aqc_opc_disable_switching_comp_ets:
3561 case i40e_aqc_opc_configure_switching_comp_ets_bw_limit:
3562 case i40e_aqc_opc_configure_switching_comp_bw_config:
3563 cmd_param_flag = true;
3564 break;
3565 case i40e_aqc_opc_query_vsi_bw_config:
3566 case i40e_aqc_opc_query_vsi_ets_sla_config:
3567 case i40e_aqc_opc_query_switching_comp_ets_config:
3568 case i40e_aqc_opc_query_port_ets_config:
3569 case i40e_aqc_opc_query_switching_comp_bw_config:
3570 cmd_param_flag = false;
3571 break;
3572 default:
3573 return I40E_ERR_PARAM;
3574 }
3575
3576 i40e_fill_default_direct_cmd_desc(&desc, opcode);
3577
3578 /* Indirect command */
3579 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3580 if (cmd_param_flag)
3581 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
3582 if (buff_size > I40E_AQ_LARGE_BUF)
3583 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3584
3585 desc.datalen = cpu_to_le16(buff_size);
3586
3587 cmd->vsi_seid = cpu_to_le16(seid);
3588
3589 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3590
3591 return status;
3592}
3593
3594/**
Mitch Williams6b192892014-03-06 09:02:29 +00003595 * i40e_aq_config_vsi_bw_limit - Configure VSI BW Limit
3596 * @hw: pointer to the hw struct
3597 * @seid: VSI seid
3598 * @credit: BW limit credits (0 = disabled)
3599 * @max_credit: Max BW limit credits
3600 * @cmd_details: pointer to command details structure or NULL
3601 **/
3602i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
3603 u16 seid, u16 credit, u8 max_credit,
3604 struct i40e_asq_cmd_details *cmd_details)
3605{
3606 struct i40e_aq_desc desc;
3607 struct i40e_aqc_configure_vsi_bw_limit *cmd =
3608 (struct i40e_aqc_configure_vsi_bw_limit *)&desc.params.raw;
3609 i40e_status status;
3610
3611 i40e_fill_default_direct_cmd_desc(&desc,
3612 i40e_aqc_opc_configure_vsi_bw_limit);
3613
3614 cmd->vsi_seid = cpu_to_le16(seid);
3615 cmd->credit = cpu_to_le16(credit);
3616 cmd->max_credit = max_credit;
3617
3618 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3619
3620 return status;
3621}
3622
3623/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003624 * i40e_aq_config_vsi_tc_bw - Config VSI BW Allocation per TC
3625 * @hw: pointer to the hw struct
3626 * @seid: VSI seid
3627 * @bw_data: Buffer holding enabled TCs, relative TC BW limit/credits
3628 * @cmd_details: pointer to command details structure or NULL
3629 **/
3630i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw,
3631 u16 seid,
3632 struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
3633 struct i40e_asq_cmd_details *cmd_details)
3634{
3635 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3636 i40e_aqc_opc_configure_vsi_tc_bw,
3637 cmd_details);
3638}
3639
3640/**
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003641 * i40e_aq_config_switch_comp_ets - Enable/Disable/Modify ETS on the port
3642 * @hw: pointer to the hw struct
3643 * @seid: seid of the switching component connected to Physical Port
3644 * @ets_data: Buffer holding ETS parameters
3645 * @cmd_details: pointer to command details structure or NULL
3646 **/
3647i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
3648 u16 seid,
3649 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
3650 enum i40e_admin_queue_opc opcode,
3651 struct i40e_asq_cmd_details *cmd_details)
3652{
3653 return i40e_aq_tx_sched_cmd(hw, seid, (void *)ets_data,
3654 sizeof(*ets_data), opcode, cmd_details);
3655}
3656
3657/**
3658 * i40e_aq_config_switch_comp_bw_config - Config Switch comp BW Alloc per TC
3659 * @hw: pointer to the hw struct
3660 * @seid: seid of the switching component
3661 * @bw_data: Buffer holding enabled TCs, relative/absolute TC BW limit/credits
3662 * @cmd_details: pointer to command details structure or NULL
3663 **/
3664i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
3665 u16 seid,
3666 struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
3667 struct i40e_asq_cmd_details *cmd_details)
3668{
3669 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3670 i40e_aqc_opc_configure_switching_comp_bw_config,
3671 cmd_details);
3672}
3673
3674/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003675 * i40e_aq_query_vsi_bw_config - Query VSI BW configuration
3676 * @hw: pointer to the hw struct
3677 * @seid: seid of the VSI
3678 * @bw_data: Buffer to hold VSI BW configuration
3679 * @cmd_details: pointer to command details structure or NULL
3680 **/
3681i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
3682 u16 seid,
3683 struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
3684 struct i40e_asq_cmd_details *cmd_details)
3685{
3686 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3687 i40e_aqc_opc_query_vsi_bw_config,
3688 cmd_details);
3689}
3690
3691/**
3692 * i40e_aq_query_vsi_ets_sla_config - Query VSI BW configuration per TC
3693 * @hw: pointer to the hw struct
3694 * @seid: seid of the VSI
3695 * @bw_data: Buffer to hold VSI BW configuration per TC
3696 * @cmd_details: pointer to command details structure or NULL
3697 **/
3698i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
3699 u16 seid,
3700 struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
3701 struct i40e_asq_cmd_details *cmd_details)
3702{
3703 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3704 i40e_aqc_opc_query_vsi_ets_sla_config,
3705 cmd_details);
3706}
3707
3708/**
3709 * i40e_aq_query_switch_comp_ets_config - Query Switch comp BW config per TC
3710 * @hw: pointer to the hw struct
3711 * @seid: seid of the switching component
3712 * @bw_data: Buffer to hold switching component's per TC BW config
3713 * @cmd_details: pointer to command details structure or NULL
3714 **/
3715i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
3716 u16 seid,
3717 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
3718 struct i40e_asq_cmd_details *cmd_details)
3719{
3720 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3721 i40e_aqc_opc_query_switching_comp_ets_config,
3722 cmd_details);
3723}
3724
3725/**
3726 * i40e_aq_query_port_ets_config - Query Physical Port ETS configuration
3727 * @hw: pointer to the hw struct
3728 * @seid: seid of the VSI or switching component connected to Physical Port
3729 * @bw_data: Buffer to hold current ETS configuration for the Physical Port
3730 * @cmd_details: pointer to command details structure or NULL
3731 **/
3732i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
3733 u16 seid,
3734 struct i40e_aqc_query_port_ets_config_resp *bw_data,
3735 struct i40e_asq_cmd_details *cmd_details)
3736{
3737 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3738 i40e_aqc_opc_query_port_ets_config,
3739 cmd_details);
3740}
3741
3742/**
3743 * i40e_aq_query_switch_comp_bw_config - Query Switch comp BW configuration
3744 * @hw: pointer to the hw struct
3745 * @seid: seid of the switching component
3746 * @bw_data: Buffer to hold switching component's BW configuration
3747 * @cmd_details: pointer to command details structure or NULL
3748 **/
3749i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
3750 u16 seid,
3751 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
3752 struct i40e_asq_cmd_details *cmd_details)
3753{
3754 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3755 i40e_aqc_opc_query_switching_comp_bw_config,
3756 cmd_details);
3757}
3758
3759/**
3760 * i40e_validate_filter_settings
3761 * @hw: pointer to the hardware structure
3762 * @settings: Filter control settings
3763 *
3764 * Check and validate the filter control settings passed.
3765 * The function checks for the valid filter/context sizes being
3766 * passed for FCoE and PE.
3767 *
3768 * Returns 0 if the values passed are valid and within
3769 * range else returns an error.
3770 **/
3771static i40e_status i40e_validate_filter_settings(struct i40e_hw *hw,
3772 struct i40e_filter_control_settings *settings)
3773{
3774 u32 fcoe_cntx_size, fcoe_filt_size;
3775 u32 pe_cntx_size, pe_filt_size;
Anjali Singhai Jain467d7292014-05-10 04:49:02 +00003776 u32 fcoe_fmax;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003777 u32 val;
3778
3779 /* Validate FCoE settings passed */
3780 switch (settings->fcoe_filt_num) {
3781 case I40E_HASH_FILTER_SIZE_1K:
3782 case I40E_HASH_FILTER_SIZE_2K:
3783 case I40E_HASH_FILTER_SIZE_4K:
3784 case I40E_HASH_FILTER_SIZE_8K:
3785 case I40E_HASH_FILTER_SIZE_16K:
3786 case I40E_HASH_FILTER_SIZE_32K:
3787 fcoe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
3788 fcoe_filt_size <<= (u32)settings->fcoe_filt_num;
3789 break;
3790 default:
3791 return I40E_ERR_PARAM;
3792 }
3793
3794 switch (settings->fcoe_cntx_num) {
3795 case I40E_DMA_CNTX_SIZE_512:
3796 case I40E_DMA_CNTX_SIZE_1K:
3797 case I40E_DMA_CNTX_SIZE_2K:
3798 case I40E_DMA_CNTX_SIZE_4K:
3799 fcoe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
3800 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num;
3801 break;
3802 default:
3803 return I40E_ERR_PARAM;
3804 }
3805
3806 /* Validate PE settings passed */
3807 switch (settings->pe_filt_num) {
3808 case I40E_HASH_FILTER_SIZE_1K:
3809 case I40E_HASH_FILTER_SIZE_2K:
3810 case I40E_HASH_FILTER_SIZE_4K:
3811 case I40E_HASH_FILTER_SIZE_8K:
3812 case I40E_HASH_FILTER_SIZE_16K:
3813 case I40E_HASH_FILTER_SIZE_32K:
3814 case I40E_HASH_FILTER_SIZE_64K:
3815 case I40E_HASH_FILTER_SIZE_128K:
3816 case I40E_HASH_FILTER_SIZE_256K:
3817 case I40E_HASH_FILTER_SIZE_512K:
3818 case I40E_HASH_FILTER_SIZE_1M:
3819 pe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
3820 pe_filt_size <<= (u32)settings->pe_filt_num;
3821 break;
3822 default:
3823 return I40E_ERR_PARAM;
3824 }
3825
3826 switch (settings->pe_cntx_num) {
3827 case I40E_DMA_CNTX_SIZE_512:
3828 case I40E_DMA_CNTX_SIZE_1K:
3829 case I40E_DMA_CNTX_SIZE_2K:
3830 case I40E_DMA_CNTX_SIZE_4K:
3831 case I40E_DMA_CNTX_SIZE_8K:
3832 case I40E_DMA_CNTX_SIZE_16K:
3833 case I40E_DMA_CNTX_SIZE_32K:
3834 case I40E_DMA_CNTX_SIZE_64K:
3835 case I40E_DMA_CNTX_SIZE_128K:
3836 case I40E_DMA_CNTX_SIZE_256K:
3837 pe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
3838 pe_cntx_size <<= (u32)settings->pe_cntx_num;
3839 break;
3840 default:
3841 return I40E_ERR_PARAM;
3842 }
3843
3844 /* FCHSIZE + FCDSIZE should not be greater than PMFCOEFMAX */
3845 val = rd32(hw, I40E_GLHMC_FCOEFMAX);
3846 fcoe_fmax = (val & I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_MASK)
3847 >> I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_SHIFT;
3848 if (fcoe_filt_size + fcoe_cntx_size > fcoe_fmax)
3849 return I40E_ERR_INVALID_SIZE;
3850
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003851 return 0;
3852}
3853
3854/**
3855 * i40e_set_filter_control
3856 * @hw: pointer to the hardware structure
3857 * @settings: Filter control settings
3858 *
3859 * Set the Queue Filters for PE/FCoE and enable filters required
3860 * for a single PF. It is expected that these settings are programmed
3861 * at the driver initialization time.
3862 **/
3863i40e_status i40e_set_filter_control(struct i40e_hw *hw,
3864 struct i40e_filter_control_settings *settings)
3865{
3866 i40e_status ret = 0;
3867 u32 hash_lut_size = 0;
3868 u32 val;
3869
3870 if (!settings)
3871 return I40E_ERR_PARAM;
3872
3873 /* Validate the input settings */
3874 ret = i40e_validate_filter_settings(hw, settings);
3875 if (ret)
3876 return ret;
3877
3878 /* Read the PF Queue Filter control register */
3879 val = rd32(hw, I40E_PFQF_CTL_0);
3880
3881 /* Program required PE hash buckets for the PF */
3882 val &= ~I40E_PFQF_CTL_0_PEHSIZE_MASK;
3883 val |= ((u32)settings->pe_filt_num << I40E_PFQF_CTL_0_PEHSIZE_SHIFT) &
3884 I40E_PFQF_CTL_0_PEHSIZE_MASK;
3885 /* Program required PE contexts for the PF */
3886 val &= ~I40E_PFQF_CTL_0_PEDSIZE_MASK;
3887 val |= ((u32)settings->pe_cntx_num << I40E_PFQF_CTL_0_PEDSIZE_SHIFT) &
3888 I40E_PFQF_CTL_0_PEDSIZE_MASK;
3889
3890 /* Program required FCoE hash buckets for the PF */
3891 val &= ~I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
3892 val |= ((u32)settings->fcoe_filt_num <<
3893 I40E_PFQF_CTL_0_PFFCHSIZE_SHIFT) &
3894 I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
3895 /* Program required FCoE DDP contexts for the PF */
3896 val &= ~I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
3897 val |= ((u32)settings->fcoe_cntx_num <<
3898 I40E_PFQF_CTL_0_PFFCDSIZE_SHIFT) &
3899 I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
3900
3901 /* Program Hash LUT size for the PF */
3902 val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
3903 if (settings->hash_lut_size == I40E_HASH_LUT_SIZE_512)
3904 hash_lut_size = 1;
3905 val |= (hash_lut_size << I40E_PFQF_CTL_0_HASHLUTSIZE_SHIFT) &
3906 I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
3907
3908 /* Enable FDIR, Ethertype and MACVLAN filters for PF and VFs */
3909 if (settings->enable_fdir)
3910 val |= I40E_PFQF_CTL_0_FD_ENA_MASK;
3911 if (settings->enable_ethtype)
3912 val |= I40E_PFQF_CTL_0_ETYPE_ENA_MASK;
3913 if (settings->enable_macvlan)
3914 val |= I40E_PFQF_CTL_0_MACVLAN_ENA_MASK;
3915
3916 wr32(hw, I40E_PFQF_CTL_0, val);
3917
3918 return 0;
3919}
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003920
3921/**
3922 * i40e_aq_add_rem_control_packet_filter - Add or Remove Control Packet Filter
3923 * @hw: pointer to the hw struct
3924 * @mac_addr: MAC address to use in the filter
3925 * @ethtype: Ethertype to use in the filter
3926 * @flags: Flags that needs to be applied to the filter
3927 * @vsi_seid: seid of the control VSI
3928 * @queue: VSI queue number to send the packet to
3929 * @is_add: Add control packet filter if True else remove
3930 * @stats: Structure to hold information on control filter counts
3931 * @cmd_details: pointer to command details structure or NULL
3932 *
3933 * This command will Add or Remove control packet filter for a control VSI.
3934 * In return it will update the total number of perfect filter count in
3935 * the stats member.
3936 **/
3937i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
3938 u8 *mac_addr, u16 ethtype, u16 flags,
3939 u16 vsi_seid, u16 queue, bool is_add,
3940 struct i40e_control_filter_stats *stats,
3941 struct i40e_asq_cmd_details *cmd_details)
3942{
3943 struct i40e_aq_desc desc;
3944 struct i40e_aqc_add_remove_control_packet_filter *cmd =
3945 (struct i40e_aqc_add_remove_control_packet_filter *)
3946 &desc.params.raw;
3947 struct i40e_aqc_add_remove_control_packet_filter_completion *resp =
3948 (struct i40e_aqc_add_remove_control_packet_filter_completion *)
3949 &desc.params.raw;
3950 i40e_status status;
3951
3952 if (vsi_seid == 0)
3953 return I40E_ERR_PARAM;
3954
3955 if (is_add) {
3956 i40e_fill_default_direct_cmd_desc(&desc,
3957 i40e_aqc_opc_add_control_packet_filter);
3958 cmd->queue = cpu_to_le16(queue);
3959 } else {
3960 i40e_fill_default_direct_cmd_desc(&desc,
3961 i40e_aqc_opc_remove_control_packet_filter);
3962 }
3963
3964 if (mac_addr)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003965 ether_addr_copy(cmd->mac, mac_addr);
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003966
3967 cmd->etype = cpu_to_le16(ethtype);
3968 cmd->flags = cpu_to_le16(flags);
3969 cmd->seid = cpu_to_le16(vsi_seid);
3970
3971 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3972
3973 if (!status && stats) {
3974 stats->mac_etype_used = le16_to_cpu(resp->mac_etype_used);
3975 stats->etype_used = le16_to_cpu(resp->etype_used);
3976 stats->mac_etype_free = le16_to_cpu(resp->mac_etype_free);
3977 stats->etype_free = le16_to_cpu(resp->etype_free);
3978 }
3979
3980 return status;
3981}
3982
Catherine Sullivand4dfb812013-11-28 06:39:21 +00003983/**
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04003984 * i40e_add_filter_to_drop_tx_flow_control_frames- filter to drop flow control
3985 * @hw: pointer to the hw struct
3986 * @seid: VSI seid to add ethertype filter from
3987 **/
3988#define I40E_FLOW_CONTROL_ETHTYPE 0x8808
3989void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
3990 u16 seid)
3991{
3992 u16 flag = I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC |
3993 I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP |
3994 I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX;
3995 u16 ethtype = I40E_FLOW_CONTROL_ETHTYPE;
3996 i40e_status status;
3997
3998 status = i40e_aq_add_rem_control_packet_filter(hw, NULL, ethtype, flag,
3999 seid, 0, true, NULL,
4000 NULL);
4001 if (status)
4002 hw_dbg(hw, "Ethtype Filter Add failed: Error pruning Tx flow control frames\n");
4003}
4004
4005/**
Greg Rosef4492db2015-02-06 08:52:12 +00004006 * i40e_aq_alternate_read
4007 * @hw: pointer to the hardware structure
4008 * @reg_addr0: address of first dword to be read
4009 * @reg_val0: pointer for data read from 'reg_addr0'
4010 * @reg_addr1: address of second dword to be read
4011 * @reg_val1: pointer for data read from 'reg_addr1'
4012 *
4013 * Read one or two dwords from alternate structure. Fields are indicated
4014 * by 'reg_addr0' and 'reg_addr1' register numbers. If 'reg_val1' pointer
4015 * is not passed then only register at 'reg_addr0' is read.
4016 *
4017 **/
Shannon Nelson37a29732015-02-27 09:15:19 +00004018static i40e_status i40e_aq_alternate_read(struct i40e_hw *hw,
4019 u32 reg_addr0, u32 *reg_val0,
4020 u32 reg_addr1, u32 *reg_val1)
Greg Rosef4492db2015-02-06 08:52:12 +00004021{
4022 struct i40e_aq_desc desc;
4023 struct i40e_aqc_alternate_write *cmd_resp =
4024 (struct i40e_aqc_alternate_write *)&desc.params.raw;
4025 i40e_status status;
4026
4027 if (!reg_val0)
4028 return I40E_ERR_PARAM;
4029
4030 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_alternate_read);
4031 cmd_resp->address0 = cpu_to_le32(reg_addr0);
4032 cmd_resp->address1 = cpu_to_le32(reg_addr1);
4033
4034 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
4035
4036 if (!status) {
4037 *reg_val0 = le32_to_cpu(cmd_resp->data0);
4038
4039 if (reg_val1)
4040 *reg_val1 = le32_to_cpu(cmd_resp->data1);
4041 }
4042
4043 return status;
4044}
4045
4046/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004047 * i40e_aq_resume_port_tx
4048 * @hw: pointer to the hardware structure
4049 * @cmd_details: pointer to command details structure or NULL
4050 *
4051 * Resume port's Tx traffic
4052 **/
4053i40e_status i40e_aq_resume_port_tx(struct i40e_hw *hw,
4054 struct i40e_asq_cmd_details *cmd_details)
4055{
4056 struct i40e_aq_desc desc;
4057 i40e_status status;
4058
4059 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_resume_port_tx);
4060
4061 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4062
4063 return status;
4064}
4065
4066/**
Catherine Sullivand4dfb812013-11-28 06:39:21 +00004067 * i40e_set_pci_config_data - store PCI bus info
4068 * @hw: pointer to hardware structure
4069 * @link_status: the link status word from PCI config space
4070 *
4071 * Stores the PCI bus info (speed, width, type) within the i40e_hw structure
4072 **/
4073void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status)
4074{
4075 hw->bus.type = i40e_bus_type_pci_express;
4076
4077 switch (link_status & PCI_EXP_LNKSTA_NLW) {
4078 case PCI_EXP_LNKSTA_NLW_X1:
4079 hw->bus.width = i40e_bus_width_pcie_x1;
4080 break;
4081 case PCI_EXP_LNKSTA_NLW_X2:
4082 hw->bus.width = i40e_bus_width_pcie_x2;
4083 break;
4084 case PCI_EXP_LNKSTA_NLW_X4:
4085 hw->bus.width = i40e_bus_width_pcie_x4;
4086 break;
4087 case PCI_EXP_LNKSTA_NLW_X8:
4088 hw->bus.width = i40e_bus_width_pcie_x8;
4089 break;
4090 default:
4091 hw->bus.width = i40e_bus_width_unknown;
4092 break;
4093 }
4094
4095 switch (link_status & PCI_EXP_LNKSTA_CLS) {
4096 case PCI_EXP_LNKSTA_CLS_2_5GB:
4097 hw->bus.speed = i40e_bus_speed_2500;
4098 break;
4099 case PCI_EXP_LNKSTA_CLS_5_0GB:
4100 hw->bus.speed = i40e_bus_speed_5000;
4101 break;
4102 case PCI_EXP_LNKSTA_CLS_8_0GB:
4103 hw->bus.speed = i40e_bus_speed_8000;
4104 break;
4105 default:
4106 hw->bus.speed = i40e_bus_speed_unknown;
4107 break;
4108 }
4109}
Greg Rosef4492db2015-02-06 08:52:12 +00004110
4111/**
Jesse Brandeburg3169c322015-04-07 19:45:37 -04004112 * i40e_aq_debug_dump
4113 * @hw: pointer to the hardware structure
4114 * @cluster_id: specific cluster to dump
4115 * @table_id: table id within cluster
4116 * @start_index: index of line in the block to read
4117 * @buff_size: dump buffer size
4118 * @buff: dump buffer
4119 * @ret_buff_size: actual buffer size returned
4120 * @ret_next_table: next block to read
4121 * @ret_next_index: next index to read
4122 *
4123 * Dump internal FW/HW data for debug purposes.
4124 *
4125 **/
4126i40e_status i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
4127 u8 table_id, u32 start_index, u16 buff_size,
4128 void *buff, u16 *ret_buff_size,
4129 u8 *ret_next_table, u32 *ret_next_index,
4130 struct i40e_asq_cmd_details *cmd_details)
4131{
4132 struct i40e_aq_desc desc;
4133 struct i40e_aqc_debug_dump_internals *cmd =
4134 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
4135 struct i40e_aqc_debug_dump_internals *resp =
4136 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
4137 i40e_status status;
4138
4139 if (buff_size == 0 || !buff)
4140 return I40E_ERR_PARAM;
4141
4142 i40e_fill_default_direct_cmd_desc(&desc,
4143 i40e_aqc_opc_debug_dump_internals);
4144 /* Indirect Command */
4145 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
4146 if (buff_size > I40E_AQ_LARGE_BUF)
4147 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
4148
4149 cmd->cluster_id = cluster_id;
4150 cmd->table_id = table_id;
4151 cmd->idx = cpu_to_le32(start_index);
4152
4153 desc.datalen = cpu_to_le16(buff_size);
4154
4155 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4156 if (!status) {
4157 if (ret_buff_size)
4158 *ret_buff_size = le16_to_cpu(desc.datalen);
4159 if (ret_next_table)
4160 *ret_next_table = resp->table_id;
4161 if (ret_next_index)
4162 *ret_next_index = le32_to_cpu(resp->idx);
4163 }
4164
4165 return status;
4166}
4167
4168/**
Greg Rosef4492db2015-02-06 08:52:12 +00004169 * i40e_read_bw_from_alt_ram
4170 * @hw: pointer to the hardware structure
4171 * @max_bw: pointer for max_bw read
4172 * @min_bw: pointer for min_bw read
4173 * @min_valid: pointer for bool that is true if min_bw is a valid value
4174 * @max_valid: pointer for bool that is true if max_bw is a valid value
4175 *
4176 * Read bw from the alternate ram for the given pf
4177 **/
4178i40e_status i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
4179 u32 *max_bw, u32 *min_bw,
4180 bool *min_valid, bool *max_valid)
4181{
4182 i40e_status status;
4183 u32 max_bw_addr, min_bw_addr;
4184
4185 /* Calculate the address of the min/max bw registers */
4186 max_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
4187 I40E_ALT_STRUCT_MAX_BW_OFFSET +
4188 (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
4189 min_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
4190 I40E_ALT_STRUCT_MIN_BW_OFFSET +
4191 (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
4192
4193 /* Read the bandwidths from alt ram */
4194 status = i40e_aq_alternate_read(hw, max_bw_addr, max_bw,
4195 min_bw_addr, min_bw);
4196
4197 if (*min_bw & I40E_ALT_BW_VALID_MASK)
4198 *min_valid = true;
4199 else
4200 *min_valid = false;
4201
4202 if (*max_bw & I40E_ALT_BW_VALID_MASK)
4203 *max_valid = true;
4204 else
4205 *max_valid = false;
4206
4207 return status;
4208}
4209
4210/**
4211 * i40e_aq_configure_partition_bw
4212 * @hw: pointer to the hardware structure
4213 * @bw_data: Buffer holding valid pfs and bw limits
4214 * @cmd_details: pointer to command details
4215 *
4216 * Configure partitions guaranteed/max bw
4217 **/
4218i40e_status i40e_aq_configure_partition_bw(struct i40e_hw *hw,
4219 struct i40e_aqc_configure_partition_bw_data *bw_data,
4220 struct i40e_asq_cmd_details *cmd_details)
4221{
4222 i40e_status status;
4223 struct i40e_aq_desc desc;
4224 u16 bwd_size = sizeof(*bw_data);
4225
4226 i40e_fill_default_direct_cmd_desc(&desc,
4227 i40e_aqc_opc_configure_partition_bw);
4228
4229 /* Indirect command */
4230 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
4231 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
4232
4233 if (bwd_size > I40E_AQ_LARGE_BUF)
4234 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
4235
4236 desc.datalen = cpu_to_le16(bwd_size);
4237
4238 status = i40e_asq_send_command(hw, &desc, bw_data, bwd_size,
4239 cmd_details);
4240
4241 return status;
4242}
Carolyn Wybornyfd077cd2016-02-17 16:12:11 -08004243
4244/**
4245 * i40e_read_phy_register
4246 * @hw: pointer to the HW structure
4247 * @page: registers page number
4248 * @reg: register address in the page
4249 * @phy_adr: PHY address on MDIO interface
4250 * @value: PHY register value
4251 *
4252 * Reads specified PHY register value
4253 **/
4254i40e_status i40e_read_phy_register(struct i40e_hw *hw,
4255 u8 page, u16 reg, u8 phy_addr,
4256 u16 *value)
4257{
4258 i40e_status status = I40E_ERR_TIMEOUT;
4259 u32 command = 0;
4260 u16 retry = 1000;
4261 u8 port_num = hw->func_caps.mdio_port_num;
4262
4263 command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
4264 (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4265 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4266 (I40E_MDIO_OPCODE_ADDRESS) |
4267 (I40E_MDIO_STCODE) |
4268 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4269 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4270 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4271 do {
4272 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4273 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4274 status = 0;
4275 break;
4276 }
4277 usleep_range(10, 20);
4278 retry--;
4279 } while (retry);
4280
4281 if (status) {
4282 i40e_debug(hw, I40E_DEBUG_PHY,
4283 "PHY: Can't write command to external PHY.\n");
4284 goto phy_read_end;
4285 }
4286
4287 command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4288 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4289 (I40E_MDIO_OPCODE_READ) |
4290 (I40E_MDIO_STCODE) |
4291 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4292 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4293 status = I40E_ERR_TIMEOUT;
4294 retry = 1000;
4295 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4296 do {
4297 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4298 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4299 status = 0;
4300 break;
4301 }
4302 usleep_range(10, 20);
4303 retry--;
4304 } while (retry);
4305
4306 if (!status) {
4307 command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
4308 *value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
4309 I40E_GLGEN_MSRWD_MDIRDDATA_SHIFT;
4310 } else {
4311 i40e_debug(hw, I40E_DEBUG_PHY,
4312 "PHY: Can't read register value from external PHY.\n");
4313 }
4314
4315phy_read_end:
4316 return status;
4317}
4318
4319/**
4320 * i40e_write_phy_register
4321 * @hw: pointer to the HW structure
4322 * @page: registers page number
4323 * @reg: register address in the page
4324 * @phy_adr: PHY address on MDIO interface
4325 * @value: PHY register value
4326 *
4327 * Writes value to specified PHY register
4328 **/
4329i40e_status i40e_write_phy_register(struct i40e_hw *hw,
4330 u8 page, u16 reg, u8 phy_addr,
4331 u16 value)
4332{
4333 i40e_status status = I40E_ERR_TIMEOUT;
4334 u32 command = 0;
4335 u16 retry = 1000;
4336 u8 port_num = hw->func_caps.mdio_port_num;
4337
4338 command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
4339 (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4340 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4341 (I40E_MDIO_OPCODE_ADDRESS) |
4342 (I40E_MDIO_STCODE) |
4343 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4344 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4345 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4346 do {
4347 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4348 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4349 status = 0;
4350 break;
4351 }
4352 usleep_range(10, 20);
4353 retry--;
4354 } while (retry);
4355 if (status) {
4356 i40e_debug(hw, I40E_DEBUG_PHY,
4357 "PHY: Can't write command to external PHY.\n");
4358 goto phy_write_end;
4359 }
4360
4361 command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
4362 wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
4363
4364 command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4365 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4366 (I40E_MDIO_OPCODE_WRITE) |
4367 (I40E_MDIO_STCODE) |
4368 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4369 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4370 status = I40E_ERR_TIMEOUT;
4371 retry = 1000;
4372 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4373 do {
4374 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4375 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4376 status = 0;
4377 break;
4378 }
4379 usleep_range(10, 20);
4380 retry--;
4381 } while (retry);
4382
4383phy_write_end:
4384 return status;
4385}
4386
4387/**
4388 * i40e_get_phy_address
4389 * @hw: pointer to the HW structure
4390 * @dev_num: PHY port num that address we want
4391 * @phy_addr: Returned PHY address
4392 *
4393 * Gets PHY address for current port
4394 **/
4395u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num)
4396{
4397 u8 port_num = hw->func_caps.mdio_port_num;
4398 u32 reg_val = rd32(hw, I40E_GLGEN_MDIO_I2C_SEL(port_num));
4399
4400 return (u8)(reg_val >> ((dev_num + 1) * 5)) & 0x1f;
4401}
4402
4403/**
4404 * i40e_blink_phy_led
4405 * @hw: pointer to the HW structure
4406 * @time: time how long led will blinks in secs
4407 * @interval: gap between LED on and off in msecs
4408 *
4409 * Blinks PHY link LED
4410 **/
4411i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
4412 u32 time, u32 interval)
4413{
4414 i40e_status status = 0;
4415 u32 i;
4416 u16 led_ctl;
4417 u16 gpio_led_port;
4418 u16 led_reg;
4419 u16 led_addr = I40E_PHY_LED_PROV_REG_1;
4420 u8 phy_addr = 0;
4421 u8 port_num;
4422
4423 i = rd32(hw, I40E_PFGEN_PORTNUM);
4424 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4425 phy_addr = i40e_get_phy_address(hw, port_num);
4426
4427 for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
4428 led_addr++) {
4429 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4430 led_addr, phy_addr, &led_reg);
4431 if (status)
4432 goto phy_blinking_end;
4433 led_ctl = led_reg;
4434 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
4435 led_reg = 0;
4436 status = i40e_write_phy_register(hw,
4437 I40E_PHY_COM_REG_PAGE,
4438 led_addr, phy_addr,
4439 led_reg);
4440 if (status)
4441 goto phy_blinking_end;
4442 break;
4443 }
4444 }
4445
4446 if (time > 0 && interval > 0) {
4447 for (i = 0; i < time * 1000; i += interval) {
4448 status = i40e_read_phy_register(hw,
4449 I40E_PHY_COM_REG_PAGE,
4450 led_addr, phy_addr,
4451 &led_reg);
4452 if (status)
4453 goto restore_config;
4454 if (led_reg & I40E_PHY_LED_MANUAL_ON)
4455 led_reg = 0;
4456 else
4457 led_reg = I40E_PHY_LED_MANUAL_ON;
4458 status = i40e_write_phy_register(hw,
4459 I40E_PHY_COM_REG_PAGE,
4460 led_addr, phy_addr,
4461 led_reg);
4462 if (status)
4463 goto restore_config;
4464 msleep(interval);
4465 }
4466 }
4467
4468restore_config:
4469 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4470 phy_addr, led_ctl);
4471
4472phy_blinking_end:
4473 return status;
4474}
4475
4476/**
4477 * i40e_led_get_phy - return current on/off mode
4478 * @hw: pointer to the hw struct
4479 * @led_addr: address of led register to use
4480 * @val: original value of register to use
4481 *
4482 **/
4483i40e_status i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
4484 u16 *val)
4485{
4486 i40e_status status = 0;
4487 u16 gpio_led_port;
4488 u8 phy_addr = 0;
4489 u16 reg_val;
4490 u16 temp_addr;
4491 u8 port_num;
4492 u32 i;
4493
4494 temp_addr = I40E_PHY_LED_PROV_REG_1;
4495 i = rd32(hw, I40E_PFGEN_PORTNUM);
4496 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4497 phy_addr = i40e_get_phy_address(hw, port_num);
4498
4499 for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
4500 temp_addr++) {
4501 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4502 temp_addr, phy_addr, &reg_val);
4503 if (status)
4504 return status;
4505 *val = reg_val;
4506 if (reg_val & I40E_PHY_LED_LINK_MODE_MASK) {
4507 *led_addr = temp_addr;
4508 break;
4509 }
4510 }
4511 return status;
4512}
4513
4514/**
4515 * i40e_led_set_phy
4516 * @hw: pointer to the HW structure
4517 * @on: true or false
4518 * @mode: original val plus bit for set or ignore
4519 * Set led's on or off when controlled by the PHY
4520 *
4521 **/
4522i40e_status i40e_led_set_phy(struct i40e_hw *hw, bool on,
4523 u16 led_addr, u32 mode)
4524{
4525 i40e_status status = 0;
4526 u16 led_ctl = 0;
4527 u16 led_reg = 0;
4528 u8 phy_addr = 0;
4529 u8 port_num;
4530 u32 i;
4531
4532 i = rd32(hw, I40E_PFGEN_PORTNUM);
4533 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4534 phy_addr = i40e_get_phy_address(hw, port_num);
4535
4536 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4537 phy_addr, &led_reg);
4538 if (status)
4539 return status;
4540 led_ctl = led_reg;
4541 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
4542 led_reg = 0;
4543 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4544 led_addr, phy_addr, led_reg);
4545 if (status)
4546 return status;
4547 }
4548 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4549 led_addr, phy_addr, &led_reg);
4550 if (status)
4551 goto restore_config;
4552 if (on)
4553 led_reg = I40E_PHY_LED_MANUAL_ON;
4554 else
4555 led_reg = 0;
4556 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4557 led_addr, phy_addr, led_reg);
4558 if (status)
4559 goto restore_config;
4560 if (mode & I40E_PHY_LED_MODE_ORIG) {
4561 led_ctl = (mode & I40E_PHY_LED_MODE_MASK);
4562 status = i40e_write_phy_register(hw,
4563 I40E_PHY_COM_REG_PAGE,
4564 led_addr, phy_addr, led_ctl);
4565 }
4566 return status;
4567restore_config:
4568 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4569 phy_addr, led_ctl);
4570 return status;
4571}