blob: b0fd6844bcd7b82752562f2e5d7e5d240e0b6228 [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 Kirsherb40c82e62015-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;
Kevin Scott4d7cec02016-02-17 16:12:13 -08001242
1243 /* It can take upto 15 secs for GRST steady state.
1244 * Bump it to 16 secs max to be safe.
1245 */
1246 grst_del = grst_del * 20;
1247
1248 for (cnt = 0; cnt < grst_del; cnt++) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001249 reg = rd32(hw, I40E_GLGEN_RSTAT);
1250 if (!(reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK))
1251 break;
1252 msleep(100);
1253 }
1254 if (reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
1255 hw_dbg(hw, "Global reset polling failed to complete.\n");
1256 return I40E_ERR_RESET_FAILED;
1257 }
1258
Shannon Nelson42794bd2013-12-11 08:17:10 +00001259 /* Now Wait for the FW to be ready */
1260 for (cnt1 = 0; cnt1 < I40E_PF_RESET_WAIT_COUNT; cnt1++) {
1261 reg = rd32(hw, I40E_GLNVM_ULD);
1262 reg &= (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1263 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK);
1264 if (reg == (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1265 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK)) {
1266 hw_dbg(hw, "Core and Global modules ready %d\n", cnt1);
1267 break;
1268 }
1269 usleep_range(10000, 20000);
1270 }
1271 if (!(reg & (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1272 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))) {
1273 hw_dbg(hw, "wait for FW Reset complete timedout\n");
1274 hw_dbg(hw, "I40E_GLNVM_ULD = 0x%x\n", reg);
1275 return I40E_ERR_RESET_FAILED;
1276 }
1277
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001278 /* If there was a Global Reset in progress when we got here,
1279 * we don't need to do the PF Reset
1280 */
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001281 if (!cnt) {
1282 if (hw->revision_id == 0)
1283 cnt = I40E_PF_RESET_WAIT_COUNT_A0;
1284 else
1285 cnt = I40E_PF_RESET_WAIT_COUNT;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001286 reg = rd32(hw, I40E_PFGEN_CTRL);
1287 wr32(hw, I40E_PFGEN_CTRL,
1288 (reg | I40E_PFGEN_CTRL_PFSWR_MASK));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001289 for (; cnt; cnt--) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001290 reg = rd32(hw, I40E_PFGEN_CTRL);
1291 if (!(reg & I40E_PFGEN_CTRL_PFSWR_MASK))
1292 break;
1293 usleep_range(1000, 2000);
1294 }
1295 if (reg & I40E_PFGEN_CTRL_PFSWR_MASK) {
1296 hw_dbg(hw, "PF reset polling failed to complete.\n");
1297 return I40E_ERR_RESET_FAILED;
1298 }
1299 }
1300
1301 i40e_clear_pxe_mode(hw);
Shannon Nelson922680b2013-12-18 05:29:17 +00001302
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001303 return 0;
1304}
1305
1306/**
Shannon Nelson838d41d2014-06-04 20:41:27 +00001307 * i40e_clear_hw - clear out any left over hw state
1308 * @hw: pointer to the hw struct
1309 *
1310 * Clear queues and interrupts, typically called at init time,
1311 * but after the capabilities have been found so we know how many
1312 * queues and msix vectors have been allocated.
1313 **/
1314void i40e_clear_hw(struct i40e_hw *hw)
1315{
1316 u32 num_queues, base_queue;
1317 u32 num_pf_int;
1318 u32 num_vf_int;
1319 u32 num_vfs;
1320 u32 i, j;
1321 u32 val;
1322 u32 eol = 0x7ff;
1323
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001324 /* get number of interrupts, queues, and VFs */
Shannon Nelson838d41d2014-06-04 20:41:27 +00001325 val = rd32(hw, I40E_GLPCI_CNF2);
1326 num_pf_int = (val & I40E_GLPCI_CNF2_MSI_X_PF_N_MASK) >>
1327 I40E_GLPCI_CNF2_MSI_X_PF_N_SHIFT;
1328 num_vf_int = (val & I40E_GLPCI_CNF2_MSI_X_VF_N_MASK) >>
1329 I40E_GLPCI_CNF2_MSI_X_VF_N_SHIFT;
1330
Shannon Nelson272cdaf22016-02-17 16:12:21 -08001331 val = rd32(hw, I40E_PFLAN_QALLOC);
Shannon Nelson838d41d2014-06-04 20:41:27 +00001332 base_queue = (val & I40E_PFLAN_QALLOC_FIRSTQ_MASK) >>
1333 I40E_PFLAN_QALLOC_FIRSTQ_SHIFT;
1334 j = (val & I40E_PFLAN_QALLOC_LASTQ_MASK) >>
1335 I40E_PFLAN_QALLOC_LASTQ_SHIFT;
1336 if (val & I40E_PFLAN_QALLOC_VALID_MASK)
1337 num_queues = (j - base_queue) + 1;
1338 else
1339 num_queues = 0;
1340
1341 val = rd32(hw, I40E_PF_VT_PFALLOC);
1342 i = (val & I40E_PF_VT_PFALLOC_FIRSTVF_MASK) >>
1343 I40E_PF_VT_PFALLOC_FIRSTVF_SHIFT;
1344 j = (val & I40E_PF_VT_PFALLOC_LASTVF_MASK) >>
1345 I40E_PF_VT_PFALLOC_LASTVF_SHIFT;
1346 if (val & I40E_PF_VT_PFALLOC_VALID_MASK)
1347 num_vfs = (j - i) + 1;
1348 else
1349 num_vfs = 0;
1350
1351 /* stop all the interrupts */
1352 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
1353 val = 0x3 << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
1354 for (i = 0; i < num_pf_int - 2; i++)
1355 wr32(hw, I40E_PFINT_DYN_CTLN(i), val);
1356
1357 /* Set the FIRSTQ_INDX field to 0x7FF in PFINT_LNKLSTx */
1358 val = eol << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1359 wr32(hw, I40E_PFINT_LNKLST0, val);
1360 for (i = 0; i < num_pf_int - 2; i++)
1361 wr32(hw, I40E_PFINT_LNKLSTN(i), val);
1362 val = eol << I40E_VPINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1363 for (i = 0; i < num_vfs; i++)
1364 wr32(hw, I40E_VPINT_LNKLST0(i), val);
1365 for (i = 0; i < num_vf_int - 2; i++)
1366 wr32(hw, I40E_VPINT_LNKLSTN(i), val);
1367
1368 /* warn the HW of the coming Tx disables */
1369 for (i = 0; i < num_queues; i++) {
1370 u32 abs_queue_idx = base_queue + i;
1371 u32 reg_block = 0;
1372
1373 if (abs_queue_idx >= 128) {
1374 reg_block = abs_queue_idx / 128;
1375 abs_queue_idx %= 128;
1376 }
1377
1378 val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1379 val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1380 val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1381 val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1382
1383 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), val);
1384 }
1385 udelay(400);
1386
1387 /* stop all the queues */
1388 for (i = 0; i < num_queues; i++) {
1389 wr32(hw, I40E_QINT_TQCTL(i), 0);
1390 wr32(hw, I40E_QTX_ENA(i), 0);
1391 wr32(hw, I40E_QINT_RQCTL(i), 0);
1392 wr32(hw, I40E_QRX_ENA(i), 0);
1393 }
1394
1395 /* short wait for all queue disables to settle */
1396 udelay(50);
1397}
1398
1399/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001400 * i40e_clear_pxe_mode - clear pxe operations mode
1401 * @hw: pointer to the hw struct
1402 *
1403 * Make sure all PXE mode settings are cleared, including things
1404 * like descriptor fetch/write-back mode.
1405 **/
1406void i40e_clear_pxe_mode(struct i40e_hw *hw)
1407{
1408 u32 reg;
1409
Shannon Nelsonc9b9b0a2014-04-09 05:59:05 +00001410 if (i40e_check_asq_alive(hw))
1411 i40e_aq_clear_pxe_mode(hw, NULL);
1412
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001413 /* Clear single descriptor fetch/write-back mode */
1414 reg = rd32(hw, I40E_GLLAN_RCTL_0);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00001415
1416 if (hw->revision_id == 0) {
1417 /* As a work around clear PXE_MODE instead of setting it */
1418 wr32(hw, I40E_GLLAN_RCTL_0, (reg & (~I40E_GLLAN_RCTL_0_PXE_MODE_MASK)));
1419 } else {
1420 wr32(hw, I40E_GLLAN_RCTL_0, (reg | I40E_GLLAN_RCTL_0_PXE_MODE_MASK));
1421 }
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001422}
1423
1424/**
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001425 * i40e_led_is_mine - helper to find matching led
1426 * @hw: pointer to the hw struct
1427 * @idx: index into GPIO registers
1428 *
1429 * returns: 0 if no match, otherwise the value of the GPIO_CTL register
1430 */
1431static u32 i40e_led_is_mine(struct i40e_hw *hw, int idx)
1432{
1433 u32 gpio_val = 0;
1434 u32 port;
1435
1436 if (!hw->func_caps.led[idx])
1437 return 0;
1438
1439 gpio_val = rd32(hw, I40E_GLGEN_GPIO_CTL(idx));
1440 port = (gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_MASK) >>
1441 I40E_GLGEN_GPIO_CTL_PRT_NUM_SHIFT;
1442
1443 /* if PRT_NUM_NA is 1 then this LED is not port specific, OR
1444 * if it is not our port then ignore
1445 */
1446 if ((gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_NA_MASK) ||
1447 (port != hw->port))
1448 return 0;
1449
1450 return gpio_val;
1451}
1452
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001453#define I40E_COMBINED_ACTIVITY 0xA
1454#define I40E_FILTER_ACTIVITY 0xE
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001455#define I40E_LINK_ACTIVITY 0xC
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001456#define I40E_MAC_ACTIVITY 0xD
1457#define I40E_LED0 22
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001458
1459/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001460 * i40e_led_get - return current on/off mode
1461 * @hw: pointer to the hw struct
1462 *
1463 * The value returned is the 'mode' field as defined in the
1464 * GPIO register definitions: 0x0 = off, 0xf = on, and other
1465 * values are variations of possible behaviors relating to
1466 * blink, link, and wire.
1467 **/
1468u32 i40e_led_get(struct i40e_hw *hw)
1469{
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001470 u32 current_mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001471 u32 mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001472 int i;
1473
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001474 /* as per the documentation GPIO 22-29 are the LED
1475 * GPIO pins named LED0..LED7
1476 */
1477 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1478 u32 gpio_val = i40e_led_is_mine(hw, i);
1479
1480 if (!gpio_val)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001481 continue;
1482
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001483 /* ignore gpio LED src mode entries related to the activity
1484 * LEDs
1485 */
1486 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1487 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1488 switch (current_mode) {
1489 case I40E_COMBINED_ACTIVITY:
1490 case I40E_FILTER_ACTIVITY:
1491 case I40E_MAC_ACTIVITY:
1492 continue;
1493 default:
1494 break;
1495 }
1496
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001497 mode = (gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK) >>
1498 I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001499 break;
1500 }
1501
1502 return mode;
1503}
1504
1505/**
1506 * i40e_led_set - set new on/off mode
1507 * @hw: pointer to the hw struct
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001508 * @mode: 0=off, 0xf=on (else see manual for mode details)
1509 * @blink: true if the LED should blink when on, false if steady
1510 *
1511 * if this function is used to turn on the blink it should
1512 * be used to disable the blink when restoring the original state.
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001513 **/
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001514void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001515{
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001516 u32 current_mode = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001517 int i;
1518
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001519 if (mode & 0xfffffff0)
1520 hw_dbg(hw, "invalid mode passed in %X\n", mode);
1521
1522 /* as per the documentation GPIO 22-29 are the LED
1523 * GPIO pins named LED0..LED7
1524 */
1525 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1526 u32 gpio_val = i40e_led_is_mine(hw, i);
1527
1528 if (!gpio_val)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001529 continue;
1530
Matt Jaredb84d5cd2015-02-26 16:11:30 +00001531 /* ignore gpio LED src mode entries related to the activity
1532 * LEDs
1533 */
1534 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1535 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1536 switch (current_mode) {
1537 case I40E_COMBINED_ACTIVITY:
1538 case I40E_FILTER_ACTIVITY:
1539 case I40E_MAC_ACTIVITY:
1540 continue;
1541 default:
1542 break;
1543 }
1544
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001545 gpio_val &= ~I40E_GLGEN_GPIO_CTL_LED_MODE_MASK;
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001546 /* this & is a bit of paranoia, but serves as a range check */
1547 gpio_val |= ((mode << I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT) &
1548 I40E_GLGEN_GPIO_CTL_LED_MODE_MASK);
1549
1550 if (mode == I40E_LINK_ACTIVITY)
1551 blink = false;
1552
Matt Jared9be00d62015-01-24 09:58:28 +00001553 if (blink)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001554 gpio_val |= BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
Matt Jared9be00d62015-01-24 09:58:28 +00001555 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001556 gpio_val &= ~BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001557
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001558 wr32(hw, I40E_GLGEN_GPIO_CTL(i), gpio_val);
Jesse Brandeburg0556a9e2013-11-28 06:39:33 +00001559 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001560 }
1561}
1562
1563/* Admin command wrappers */
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001564
1565/**
Catherine Sullivan8109e122014-06-04 08:45:24 +00001566 * i40e_aq_get_phy_capabilities
1567 * @hw: pointer to the hw struct
1568 * @abilities: structure for PHY capabilities to be filled
1569 * @qualified_modules: report Qualified Modules
1570 * @report_init: report init capabilities (active are default)
1571 * @cmd_details: pointer to command details structure or NULL
1572 *
1573 * Returns the various PHY abilities supported on the Port.
1574 **/
1575i40e_status i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
1576 bool qualified_modules, bool report_init,
1577 struct i40e_aq_get_phy_abilities_resp *abilities,
1578 struct i40e_asq_cmd_details *cmd_details)
1579{
1580 struct i40e_aq_desc desc;
1581 i40e_status status;
1582 u16 abilities_size = sizeof(struct i40e_aq_get_phy_abilities_resp);
1583
1584 if (!abilities)
1585 return I40E_ERR_PARAM;
1586
1587 i40e_fill_default_direct_cmd_desc(&desc,
1588 i40e_aqc_opc_get_phy_abilities);
1589
1590 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1591 if (abilities_size > I40E_AQ_LARGE_BUF)
1592 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1593
1594 if (qualified_modules)
1595 desc.params.external.param0 |=
1596 cpu_to_le32(I40E_AQ_PHY_REPORT_QUALIFIED_MODULES);
1597
1598 if (report_init)
1599 desc.params.external.param0 |=
1600 cpu_to_le32(I40E_AQ_PHY_REPORT_INITIAL_VALUES);
1601
1602 status = i40e_asq_send_command(hw, &desc, abilities, abilities_size,
1603 cmd_details);
1604
1605 if (hw->aq.asq_last_status == I40E_AQ_RC_EIO)
1606 status = I40E_ERR_UNKNOWN_PHY;
1607
Kevin Scott3ac67d72015-09-03 17:18:58 -04001608 if (report_init)
1609 hw->phy.phy_types = le32_to_cpu(abilities->phy_type);
1610
Catherine Sullivan8109e122014-06-04 08:45:24 +00001611 return status;
1612}
1613
1614/**
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001615 * i40e_aq_set_phy_config
1616 * @hw: pointer to the hw struct
1617 * @config: structure with PHY configuration to be set
1618 * @cmd_details: pointer to command details structure or NULL
1619 *
1620 * Set the various PHY configuration parameters
1621 * supported on the Port.One or more of the Set PHY config parameters may be
1622 * ignored in an MFP mode as the PF may not have the privilege to set some
1623 * of the PHY Config parameters. This status will be indicated by the
1624 * command response.
1625 **/
1626enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
1627 struct i40e_aq_set_phy_config *config,
1628 struct i40e_asq_cmd_details *cmd_details)
1629{
1630 struct i40e_aq_desc desc;
1631 struct i40e_aq_set_phy_config *cmd =
1632 (struct i40e_aq_set_phy_config *)&desc.params.raw;
1633 enum i40e_status_code status;
1634
1635 if (!config)
1636 return I40E_ERR_PARAM;
1637
1638 i40e_fill_default_direct_cmd_desc(&desc,
1639 i40e_aqc_opc_set_phy_config);
1640
1641 *cmd = *config;
1642
1643 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1644
1645 return status;
1646}
1647
1648/**
1649 * i40e_set_fc
1650 * @hw: pointer to the hw struct
1651 *
1652 * Set the requested flow control mode using set_phy_config.
1653 **/
1654enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
1655 bool atomic_restart)
1656{
1657 enum i40e_fc_mode fc_mode = hw->fc.requested_mode;
1658 struct i40e_aq_get_phy_abilities_resp abilities;
1659 struct i40e_aq_set_phy_config config;
1660 enum i40e_status_code status;
1661 u8 pause_mask = 0x0;
1662
1663 *aq_failures = 0x0;
1664
1665 switch (fc_mode) {
1666 case I40E_FC_FULL:
1667 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1668 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1669 break;
1670 case I40E_FC_RX_PAUSE:
1671 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1672 break;
1673 case I40E_FC_TX_PAUSE:
1674 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1675 break;
1676 default:
1677 break;
1678 }
1679
1680 /* Get the current phy config */
1681 status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities,
1682 NULL);
1683 if (status) {
1684 *aq_failures |= I40E_SET_FC_AQ_FAIL_GET;
1685 return status;
1686 }
1687
1688 memset(&config, 0, sizeof(struct i40e_aq_set_phy_config));
1689 /* clear the old pause settings */
1690 config.abilities = abilities.abilities & ~(I40E_AQ_PHY_FLAG_PAUSE_TX) &
1691 ~(I40E_AQ_PHY_FLAG_PAUSE_RX);
1692 /* set the new abilities */
1693 config.abilities |= pause_mask;
1694 /* If the abilities have changed, then set the new config */
1695 if (config.abilities != abilities.abilities) {
1696 /* Auto restart link so settings take effect */
1697 if (atomic_restart)
1698 config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK;
1699 /* Copy over all the old settings */
1700 config.phy_type = abilities.phy_type;
1701 config.link_speed = abilities.link_speed;
1702 config.eee_capability = abilities.eee_capability;
1703 config.eeer = abilities.eeer_val;
1704 config.low_power_ctrl = abilities.d3_lpan;
1705 status = i40e_aq_set_phy_config(hw, &config, NULL);
1706
1707 if (status)
1708 *aq_failures |= I40E_SET_FC_AQ_FAIL_SET;
1709 }
1710 /* Update the link info */
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001711 status = i40e_update_link_info(hw);
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001712 if (status) {
1713 /* Wait a little bit (on 40G cards it sometimes takes a really
1714 * long time for link to come back from the atomic reset)
1715 * and try once more
1716 */
1717 msleep(1000);
Catherine Sullivan0a862b42015-08-31 19:54:53 -04001718 status = i40e_update_link_info(hw);
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001719 }
1720 if (status)
1721 *aq_failures |= I40E_SET_FC_AQ_FAIL_UPDATE;
1722
1723 return status;
1724}
1725
1726/**
Shannon Nelsonc9b9b0a2014-04-09 05:59:05 +00001727 * i40e_aq_clear_pxe_mode
1728 * @hw: pointer to the hw struct
1729 * @cmd_details: pointer to command details structure or NULL
1730 *
1731 * Tell the firmware that the driver is taking over from PXE
1732 **/
1733i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
1734 struct i40e_asq_cmd_details *cmd_details)
1735{
1736 i40e_status status;
1737 struct i40e_aq_desc desc;
1738 struct i40e_aqc_clear_pxe *cmd =
1739 (struct i40e_aqc_clear_pxe *)&desc.params.raw;
1740
1741 i40e_fill_default_direct_cmd_desc(&desc,
1742 i40e_aqc_opc_clear_pxe_mode);
1743
1744 cmd->rx_cnt = 0x2;
1745
1746 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1747
1748 wr32(hw, I40E_GLLAN_RCTL_0, 0x1);
1749
1750 return status;
1751}
1752
1753/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001754 * i40e_aq_set_link_restart_an
1755 * @hw: pointer to the hw struct
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001756 * @enable_link: if true: enable link, if false: disable link
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001757 * @cmd_details: pointer to command details structure or NULL
1758 *
1759 * Sets up the link and restarts the Auto-Negotiation over the link.
1760 **/
1761i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001762 bool enable_link,
1763 struct i40e_asq_cmd_details *cmd_details)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001764{
1765 struct i40e_aq_desc desc;
1766 struct i40e_aqc_set_link_restart_an *cmd =
1767 (struct i40e_aqc_set_link_restart_an *)&desc.params.raw;
1768 i40e_status status;
1769
1770 i40e_fill_default_direct_cmd_desc(&desc,
1771 i40e_aqc_opc_set_link_restart_an);
1772
1773 cmd->command = I40E_AQ_PHY_RESTART_AN;
Catherine Sullivan1ac978a2014-06-04 01:23:20 +00001774 if (enable_link)
1775 cmd->command |= I40E_AQ_PHY_LINK_ENABLE;
1776 else
1777 cmd->command &= ~I40E_AQ_PHY_LINK_ENABLE;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001778
1779 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1780
1781 return status;
1782}
1783
1784/**
1785 * i40e_aq_get_link_info
1786 * @hw: pointer to the hw struct
1787 * @enable_lse: enable/disable LinkStatusEvent reporting
1788 * @link: pointer to link status structure - optional
1789 * @cmd_details: pointer to command details structure or NULL
1790 *
1791 * Returns the link status of the adapter.
1792 **/
1793i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
1794 bool enable_lse, struct i40e_link_status *link,
1795 struct i40e_asq_cmd_details *cmd_details)
1796{
1797 struct i40e_aq_desc desc;
1798 struct i40e_aqc_get_link_status *resp =
1799 (struct i40e_aqc_get_link_status *)&desc.params.raw;
1800 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
1801 i40e_status status;
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001802 bool tx_pause, rx_pause;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001803 u16 command_flags;
1804
1805 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_link_status);
1806
1807 if (enable_lse)
1808 command_flags = I40E_AQ_LSE_ENABLE;
1809 else
1810 command_flags = I40E_AQ_LSE_DISABLE;
1811 resp->command_flags = cpu_to_le16(command_flags);
1812
1813 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1814
1815 if (status)
1816 goto aq_get_link_info_exit;
1817
1818 /* save off old link status information */
Mitch Williamsc36bd4a72013-12-18 13:46:04 +00001819 hw->phy.link_info_old = *hw_link_info;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001820
1821 /* update link status */
1822 hw_link_info->phy_type = (enum i40e_aq_phy_type)resp->phy_type;
Jesse Brandeburgbe405eb2013-11-20 10:02:50 +00001823 hw->phy.media_type = i40e_get_media_type(hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001824 hw_link_info->link_speed = (enum i40e_aq_link_speed)resp->link_speed;
1825 hw_link_info->link_info = resp->link_info;
1826 hw_link_info->an_info = resp->an_info;
1827 hw_link_info->ext_info = resp->ext_info;
Kamil Krawczyk639dc372013-11-20 10:03:07 +00001828 hw_link_info->loopback = resp->loopback;
Neerav Parikh6bb3f232014-04-01 07:11:56 +00001829 hw_link_info->max_frame_size = le16_to_cpu(resp->max_frame_size);
1830 hw_link_info->pacing = resp->config & I40E_AQ_CONFIG_PACING_MASK;
1831
Catherine Sullivanc56999f2014-06-04 08:45:26 +00001832 /* update fc info */
1833 tx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_TX);
1834 rx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_RX);
1835 if (tx_pause & rx_pause)
1836 hw->fc.current_mode = I40E_FC_FULL;
1837 else if (tx_pause)
1838 hw->fc.current_mode = I40E_FC_TX_PAUSE;
1839 else if (rx_pause)
1840 hw->fc.current_mode = I40E_FC_RX_PAUSE;
1841 else
1842 hw->fc.current_mode = I40E_FC_NONE;
1843
Neerav Parikh6bb3f232014-04-01 07:11:56 +00001844 if (resp->config & I40E_AQ_CONFIG_CRC_ENA)
1845 hw_link_info->crc_enable = true;
1846 else
1847 hw_link_info->crc_enable = false;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001848
1849 if (resp->command_flags & cpu_to_le16(I40E_AQ_LSE_ENABLE))
1850 hw_link_info->lse_enable = true;
1851 else
1852 hw_link_info->lse_enable = false;
1853
Catherine Sullivan088c4ee2015-02-26 16:14:12 +00001854 if ((hw->aq.fw_maj_ver < 4 || (hw->aq.fw_maj_ver == 4 &&
1855 hw->aq.fw_min_ver < 40)) && hw_link_info->phy_type == 0xE)
1856 hw_link_info->phy_type = I40E_PHY_TYPE_10GBASE_SFPP_CU;
1857
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001858 /* save link status information */
1859 if (link)
Jesse Brandeburgd7595a22013-09-13 08:23:22 +00001860 *link = *hw_link_info;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001861
1862 /* flag cleared so helper functions don't call AQ again */
1863 hw->phy.get_link_info = false;
1864
1865aq_get_link_info_exit:
1866 return status;
1867}
1868
1869/**
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00001870 * i40e_aq_set_phy_int_mask
1871 * @hw: pointer to the hw struct
1872 * @mask: interrupt mask to be set
1873 * @cmd_details: pointer to command details structure or NULL
1874 *
1875 * Set link interrupt mask.
1876 **/
1877i40e_status i40e_aq_set_phy_int_mask(struct i40e_hw *hw,
1878 u16 mask,
1879 struct i40e_asq_cmd_details *cmd_details)
1880{
1881 struct i40e_aq_desc desc;
1882 struct i40e_aqc_set_phy_int_mask *cmd =
1883 (struct i40e_aqc_set_phy_int_mask *)&desc.params.raw;
1884 i40e_status status;
1885
1886 i40e_fill_default_direct_cmd_desc(&desc,
1887 i40e_aqc_opc_set_phy_int_mask);
1888
1889 cmd->event_mask = cpu_to_le16(mask);
1890
1891 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1892
1893 return status;
1894}
1895
1896/**
Carolyn Wyborny31b606d2016-02-17 16:12:12 -08001897 * i40e_aq_set_phy_debug
1898 * @hw: pointer to the hw struct
1899 * @cmd_flags: debug command flags
1900 * @cmd_details: pointer to command details structure or NULL
1901 *
1902 * Reset the external PHY.
1903 **/
1904enum i40e_status_code i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
1905 struct i40e_asq_cmd_details *cmd_details)
1906{
1907 struct i40e_aq_desc desc;
1908 struct i40e_aqc_set_phy_debug *cmd =
1909 (struct i40e_aqc_set_phy_debug *)&desc.params.raw;
1910 enum i40e_status_code status;
1911
1912 i40e_fill_default_direct_cmd_desc(&desc,
1913 i40e_aqc_opc_set_phy_debug);
1914
1915 cmd->command_flags = cmd_flags;
1916
1917 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1918
1919 return status;
1920}
1921
1922/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001923 * i40e_aq_add_vsi
1924 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00001925 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001926 * @cmd_details: pointer to command details structure or NULL
1927 *
1928 * Add a VSI context to the hardware.
1929**/
1930i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
1931 struct i40e_vsi_context *vsi_ctx,
1932 struct i40e_asq_cmd_details *cmd_details)
1933{
1934 struct i40e_aq_desc desc;
1935 struct i40e_aqc_add_get_update_vsi *cmd =
1936 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
1937 struct i40e_aqc_add_get_update_vsi_completion *resp =
1938 (struct i40e_aqc_add_get_update_vsi_completion *)
1939 &desc.params.raw;
1940 i40e_status status;
1941
1942 i40e_fill_default_direct_cmd_desc(&desc,
1943 i40e_aqc_opc_add_vsi);
1944
1945 cmd->uplink_seid = cpu_to_le16(vsi_ctx->uplink_seid);
1946 cmd->connection_type = vsi_ctx->connection_type;
1947 cmd->vf_id = vsi_ctx->vf_num;
1948 cmd->vsi_flags = cpu_to_le16(vsi_ctx->flags);
1949
1950 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001951
1952 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
1953 sizeof(vsi_ctx->info), cmd_details);
1954
1955 if (status)
1956 goto aq_add_vsi_exit;
1957
1958 vsi_ctx->seid = le16_to_cpu(resp->seid);
1959 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
1960 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
1961 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
1962
1963aq_add_vsi_exit:
1964 return status;
1965}
1966
1967/**
1968 * i40e_aq_set_vsi_unicast_promiscuous
1969 * @hw: pointer to the hw struct
1970 * @seid: vsi number
1971 * @set: set unicast promiscuous enable/disable
1972 * @cmd_details: pointer to command details structure or NULL
1973 **/
1974i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
Mitch Williams885552a2013-12-21 05:44:41 +00001975 u16 seid, bool set,
1976 struct i40e_asq_cmd_details *cmd_details)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001977{
1978 struct i40e_aq_desc desc;
1979 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
1980 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
1981 i40e_status status;
1982 u16 flags = 0;
1983
1984 i40e_fill_default_direct_cmd_desc(&desc,
1985 i40e_aqc_opc_set_vsi_promiscuous_modes);
1986
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001987 if (set) {
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001988 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001989 if (((hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver >= 5)) ||
1990 (hw->aq.api_maj_ver > 1))
1991 flags |= I40E_AQC_SET_VSI_PROMISC_TX;
1992 }
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00001993
1994 cmd->promiscuous_flags = cpu_to_le16(flags);
1995
1996 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_UNICAST);
Anjali Singhai Jain3b120082016-01-15 14:33:21 -08001997 if (((hw->aq.api_maj_ver >= 1) && (hw->aq.api_min_ver >= 5)) ||
1998 (hw->aq.api_maj_ver > 1))
1999 cmd->valid_flags |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_TX);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002000
2001 cmd->seid = cpu_to_le16(seid);
2002 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2003
2004 return status;
2005}
2006
2007/**
2008 * i40e_aq_set_vsi_multicast_promiscuous
2009 * @hw: pointer to the hw struct
2010 * @seid: vsi number
2011 * @set: set multicast promiscuous enable/disable
2012 * @cmd_details: pointer to command details structure or NULL
2013 **/
2014i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
2015 u16 seid, bool set, struct i40e_asq_cmd_details *cmd_details)
2016{
2017 struct i40e_aq_desc desc;
2018 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2019 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2020 i40e_status status;
2021 u16 flags = 0;
2022
2023 i40e_fill_default_direct_cmd_desc(&desc,
2024 i40e_aqc_opc_set_vsi_promiscuous_modes);
2025
2026 if (set)
2027 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
2028
2029 cmd->promiscuous_flags = cpu_to_le16(flags);
2030
2031 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
2032
2033 cmd->seid = cpu_to_le16(seid);
2034 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2035
2036 return status;
2037}
2038
2039/**
2040 * i40e_aq_set_vsi_broadcast
2041 * @hw: pointer to the hw struct
2042 * @seid: vsi number
2043 * @set_filter: true to set filter, false to clear filter
2044 * @cmd_details: pointer to command details structure or NULL
2045 *
2046 * Set or clear the broadcast promiscuous flag (filter) for a given VSI.
2047 **/
2048i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
2049 u16 seid, bool set_filter,
2050 struct i40e_asq_cmd_details *cmd_details)
2051{
2052 struct i40e_aq_desc desc;
2053 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2054 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2055 i40e_status status;
2056
2057 i40e_fill_default_direct_cmd_desc(&desc,
2058 i40e_aqc_opc_set_vsi_promiscuous_modes);
2059
2060 if (set_filter)
2061 cmd->promiscuous_flags
2062 |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2063 else
2064 cmd->promiscuous_flags
2065 &= cpu_to_le16(~I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2066
2067 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2068 cmd->seid = cpu_to_le16(seid);
2069 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2070
2071 return status;
2072}
2073
2074/**
Kiran Patil7bd68752016-01-04 10:33:07 -08002075 * i40e_aq_set_vsi_vlan_promisc - control the VLAN promiscuous setting
2076 * @hw: pointer to the hw struct
2077 * @seid: vsi number
2078 * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2079 * @cmd_details: pointer to command details structure or NULL
2080 **/
2081i40e_status i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
2082 u16 seid, bool enable,
2083 struct i40e_asq_cmd_details *cmd_details)
2084{
2085 struct i40e_aq_desc desc;
2086 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2087 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2088 i40e_status status;
2089 u16 flags = 0;
2090
2091 i40e_fill_default_direct_cmd_desc(&desc,
2092 i40e_aqc_opc_set_vsi_promiscuous_modes);
2093 if (enable)
2094 flags |= I40E_AQC_SET_VSI_PROMISC_VLAN;
2095
2096 cmd->promiscuous_flags = cpu_to_le16(flags);
2097 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_VLAN);
2098 cmd->seid = cpu_to_le16(seid);
2099
2100 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2101
2102 return status;
2103}
2104
2105/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002106 * i40e_get_vsi_params - get VSI configuration info
2107 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00002108 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002109 * @cmd_details: pointer to command details structure or NULL
2110 **/
2111i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
2112 struct i40e_vsi_context *vsi_ctx,
2113 struct i40e_asq_cmd_details *cmd_details)
2114{
2115 struct i40e_aq_desc desc;
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002116 struct i40e_aqc_add_get_update_vsi *cmd =
2117 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002118 struct i40e_aqc_add_get_update_vsi_completion *resp =
2119 (struct i40e_aqc_add_get_update_vsi_completion *)
2120 &desc.params.raw;
2121 i40e_status status;
2122
2123 i40e_fill_default_direct_cmd_desc(&desc,
2124 i40e_aqc_opc_get_vsi_parameters);
2125
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002126 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002127
2128 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002129
2130 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2131 sizeof(vsi_ctx->info), NULL);
2132
2133 if (status)
2134 goto aq_get_vsi_params_exit;
2135
2136 vsi_ctx->seid = le16_to_cpu(resp->seid);
2137 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
2138 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
2139 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
2140
2141aq_get_vsi_params_exit:
2142 return status;
2143}
2144
2145/**
2146 * i40e_aq_update_vsi_params
2147 * @hw: pointer to the hw struct
Jeff Kirsher98d44382013-12-21 05:44:42 +00002148 * @vsi_ctx: pointer to a vsi context struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002149 * @cmd_details: pointer to command details structure or NULL
2150 *
2151 * Update a VSI context.
2152 **/
2153i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
2154 struct i40e_vsi_context *vsi_ctx,
2155 struct i40e_asq_cmd_details *cmd_details)
2156{
2157 struct i40e_aq_desc desc;
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002158 struct i40e_aqc_add_get_update_vsi *cmd =
2159 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
Kevin Scottb6cacca2016-03-10 14:59:41 -08002160 struct i40e_aqc_add_get_update_vsi_completion *resp =
2161 (struct i40e_aqc_add_get_update_vsi_completion *)
2162 &desc.params.raw;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002163 i40e_status status;
2164
2165 i40e_fill_default_direct_cmd_desc(&desc,
2166 i40e_aqc_opc_update_vsi_parameters);
Shannon Nelsonf5ac8572013-11-28 06:39:43 +00002167 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002168
2169 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002170
2171 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2172 sizeof(vsi_ctx->info), cmd_details);
2173
Kevin Scottb6cacca2016-03-10 14:59:41 -08002174 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
2175 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
2176
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002177 return status;
2178}
2179
2180/**
2181 * i40e_aq_get_switch_config
2182 * @hw: pointer to the hardware structure
2183 * @buf: pointer to the result buffer
2184 * @buf_size: length of input buffer
2185 * @start_seid: seid to start for the report, 0 == beginning
2186 * @cmd_details: pointer to command details structure or NULL
2187 *
2188 * Fill the buf with switch configuration returned from AdminQ command
2189 **/
2190i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
2191 struct i40e_aqc_get_switch_config_resp *buf,
2192 u16 buf_size, u16 *start_seid,
2193 struct i40e_asq_cmd_details *cmd_details)
2194{
2195 struct i40e_aq_desc desc;
2196 struct i40e_aqc_switch_seid *scfg =
2197 (struct i40e_aqc_switch_seid *)&desc.params.raw;
2198 i40e_status status;
2199
2200 i40e_fill_default_direct_cmd_desc(&desc,
2201 i40e_aqc_opc_get_switch_config);
2202 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2203 if (buf_size > I40E_AQ_LARGE_BUF)
2204 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2205 scfg->seid = cpu_to_le16(*start_seid);
2206
2207 status = i40e_asq_send_command(hw, &desc, buf, buf_size, cmd_details);
2208 *start_seid = le16_to_cpu(scfg->seid);
2209
2210 return status;
2211}
2212
2213/**
2214 * i40e_aq_get_firmware_version
2215 * @hw: pointer to the hw struct
2216 * @fw_major_version: firmware major version
2217 * @fw_minor_version: firmware minor version
Shannon Nelson7edf8102015-02-24 06:58:41 +00002218 * @fw_build: firmware build number
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002219 * @api_major_version: major queue version
2220 * @api_minor_version: minor queue version
2221 * @cmd_details: pointer to command details structure or NULL
2222 *
2223 * Get the firmware version from the admin queue commands
2224 **/
2225i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
2226 u16 *fw_major_version, u16 *fw_minor_version,
Shannon Nelson7edf8102015-02-24 06:58:41 +00002227 u32 *fw_build,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002228 u16 *api_major_version, u16 *api_minor_version,
2229 struct i40e_asq_cmd_details *cmd_details)
2230{
2231 struct i40e_aq_desc desc;
2232 struct i40e_aqc_get_version *resp =
2233 (struct i40e_aqc_get_version *)&desc.params.raw;
2234 i40e_status status;
2235
2236 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_version);
2237
2238 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2239
2240 if (!status) {
Shannon Nelson7edf8102015-02-24 06:58:41 +00002241 if (fw_major_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002242 *fw_major_version = le16_to_cpu(resp->fw_major);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002243 if (fw_minor_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002244 *fw_minor_version = le16_to_cpu(resp->fw_minor);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002245 if (fw_build)
2246 *fw_build = le32_to_cpu(resp->fw_build);
2247 if (api_major_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002248 *api_major_version = le16_to_cpu(resp->api_major);
Shannon Nelson7edf8102015-02-24 06:58:41 +00002249 if (api_minor_version)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002250 *api_minor_version = le16_to_cpu(resp->api_minor);
2251 }
2252
2253 return status;
2254}
2255
2256/**
2257 * i40e_aq_send_driver_version
2258 * @hw: pointer to the hw struct
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002259 * @dv: driver's major, minor version
2260 * @cmd_details: pointer to command details structure or NULL
2261 *
2262 * Send the driver version to the firmware
2263 **/
2264i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
2265 struct i40e_driver_version *dv,
2266 struct i40e_asq_cmd_details *cmd_details)
2267{
2268 struct i40e_aq_desc desc;
2269 struct i40e_aqc_driver_version *cmd =
2270 (struct i40e_aqc_driver_version *)&desc.params.raw;
2271 i40e_status status;
Kevin Scott9d2f98e2014-04-01 07:11:52 +00002272 u16 len;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002273
2274 if (dv == NULL)
2275 return I40E_ERR_PARAM;
2276
2277 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_driver_version);
2278
Kevin Scott3b38cd12015-02-06 08:52:18 +00002279 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002280 cmd->driver_major_ver = dv->major_version;
2281 cmd->driver_minor_ver = dv->minor_version;
2282 cmd->driver_build_ver = dv->build_version;
2283 cmd->driver_subbuild_ver = dv->subbuild_version;
Shannon Nelsond2466012014-04-01 07:11:45 +00002284
2285 len = 0;
2286 while (len < sizeof(dv->driver_string) &&
2287 (dv->driver_string[len] < 0x80) &&
2288 dv->driver_string[len])
2289 len++;
2290 status = i40e_asq_send_command(hw, &desc, dv->driver_string,
2291 len, cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002292
2293 return status;
2294}
2295
2296/**
2297 * i40e_get_link_status - get status of the HW network link
2298 * @hw: pointer to the hw struct
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002299 * @link_up: pointer to bool (true/false = linkup/linkdown)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002300 *
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002301 * Variable link_up true if link is up, false if link is down.
2302 * The variable link_up is invalid if returned value of status != 0
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002303 *
2304 * Side effect: LinkStatusEvent reporting becomes enabled
2305 **/
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002306i40e_status i40e_get_link_status(struct i40e_hw *hw, bool *link_up)
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002307{
2308 i40e_status status = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002309
2310 if (hw->phy.get_link_info) {
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002311 status = i40e_update_link_info(hw);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002312
2313 if (status)
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002314 i40e_debug(hw, I40E_DEBUG_LINK, "get link failed: status %d\n",
2315 status);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002316 }
2317
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002318 *link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002319
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04002320 return status;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002321}
2322
2323/**
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002324 * i40e_updatelink_status - update status of the HW network link
2325 * @hw: pointer to the hw struct
2326 **/
2327i40e_status i40e_update_link_info(struct i40e_hw *hw)
2328{
2329 struct i40e_aq_get_phy_abilities_resp abilities;
2330 i40e_status status = 0;
2331
2332 status = i40e_aq_get_link_info(hw, true, NULL, NULL);
2333 if (status)
2334 return status;
2335
Carolyn Wyborny8589af72015-09-28 14:16:56 -04002336 if (hw->phy.link_info.link_info & I40E_AQ_MEDIA_AVAILABLE) {
2337 status = i40e_aq_get_phy_capabilities(hw, false, false,
2338 &abilities, NULL);
2339 if (status)
2340 return status;
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002341
Carolyn Wyborny8589af72015-09-28 14:16:56 -04002342 memcpy(hw->phy.link_info.module_type, &abilities.module_type,
2343 sizeof(hw->phy.link_info.module_type));
2344 }
Catherine Sullivan0a862b42015-08-31 19:54:53 -04002345
2346 return status;
2347}
2348
2349/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002350 * i40e_aq_add_veb - Insert a VEB between the VSI and the MAC
2351 * @hw: pointer to the hw struct
2352 * @uplink_seid: the MAC or other gizmo SEID
2353 * @downlink_seid: the VSI SEID
2354 * @enabled_tc: bitmap of TCs to be enabled
2355 * @default_port: true for default port VSI, false for control port
2356 * @veb_seid: pointer to where to put the resulting VEB SEID
Shannon Nelson8a187f42016-01-13 16:51:41 -08002357 * @enable_stats: true to turn on VEB stats
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002358 * @cmd_details: pointer to command details structure or NULL
2359 *
2360 * This asks the FW to add a VEB between the uplink and downlink
2361 * elements. If the uplink SEID is 0, this will be a floating VEB.
2362 **/
2363i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
2364 u16 downlink_seid, u8 enabled_tc,
Shannon Nelson8a187f42016-01-13 16:51:41 -08002365 bool default_port, u16 *veb_seid,
2366 bool enable_stats,
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002367 struct i40e_asq_cmd_details *cmd_details)
2368{
2369 struct i40e_aq_desc desc;
2370 struct i40e_aqc_add_veb *cmd =
2371 (struct i40e_aqc_add_veb *)&desc.params.raw;
2372 struct i40e_aqc_add_veb_completion *resp =
2373 (struct i40e_aqc_add_veb_completion *)&desc.params.raw;
2374 i40e_status status;
2375 u16 veb_flags = 0;
2376
2377 /* SEIDs need to either both be set or both be 0 for floating VEB */
2378 if (!!uplink_seid != !!downlink_seid)
2379 return I40E_ERR_PARAM;
2380
2381 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_veb);
2382
2383 cmd->uplink_seid = cpu_to_le16(uplink_seid);
2384 cmd->downlink_seid = cpu_to_le16(downlink_seid);
2385 cmd->enable_tcs = enabled_tc;
2386 if (!uplink_seid)
2387 veb_flags |= I40E_AQC_ADD_VEB_FLOATING;
2388 if (default_port)
2389 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT;
2390 else
2391 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DATA;
Kevin Scotte1c51b952013-11-20 10:02:51 +00002392
Shannon Nelson8a187f42016-01-13 16:51:41 -08002393 /* reverse logic here: set the bitflag to disable the stats */
2394 if (!enable_stats)
2395 veb_flags |= I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS;
Kevin Scotte1c51b952013-11-20 10:02:51 +00002396
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002397 cmd->veb_flags = cpu_to_le16(veb_flags);
2398
2399 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2400
2401 if (!status && veb_seid)
2402 *veb_seid = le16_to_cpu(resp->veb_seid);
2403
2404 return status;
2405}
2406
2407/**
2408 * i40e_aq_get_veb_parameters - Retrieve VEB parameters
2409 * @hw: pointer to the hw struct
2410 * @veb_seid: the SEID of the VEB to query
2411 * @switch_id: the uplink switch id
Jeff Kirsher98d44382013-12-21 05:44:42 +00002412 * @floating: set to true if the VEB is floating
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002413 * @statistic_index: index of the stats counter block for this VEB
2414 * @vebs_used: number of VEB's used by function
Jeff Kirsher98d44382013-12-21 05:44:42 +00002415 * @vebs_free: total VEB's not reserved by any function
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002416 * @cmd_details: pointer to command details structure or NULL
2417 *
2418 * This retrieves the parameters for a particular VEB, specified by
2419 * uplink_seid, and returns them to the caller.
2420 **/
2421i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
2422 u16 veb_seid, u16 *switch_id,
2423 bool *floating, u16 *statistic_index,
2424 u16 *vebs_used, u16 *vebs_free,
2425 struct i40e_asq_cmd_details *cmd_details)
2426{
2427 struct i40e_aq_desc desc;
2428 struct i40e_aqc_get_veb_parameters_completion *cmd_resp =
2429 (struct i40e_aqc_get_veb_parameters_completion *)
2430 &desc.params.raw;
2431 i40e_status status;
2432
2433 if (veb_seid == 0)
2434 return I40E_ERR_PARAM;
2435
2436 i40e_fill_default_direct_cmd_desc(&desc,
2437 i40e_aqc_opc_get_veb_parameters);
2438 cmd_resp->seid = cpu_to_le16(veb_seid);
2439
2440 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2441 if (status)
2442 goto get_veb_exit;
2443
2444 if (switch_id)
2445 *switch_id = le16_to_cpu(cmd_resp->switch_id);
2446 if (statistic_index)
2447 *statistic_index = le16_to_cpu(cmd_resp->statistic_index);
2448 if (vebs_used)
2449 *vebs_used = le16_to_cpu(cmd_resp->vebs_used);
2450 if (vebs_free)
2451 *vebs_free = le16_to_cpu(cmd_resp->vebs_free);
2452 if (floating) {
2453 u16 flags = le16_to_cpu(cmd_resp->veb_flags);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002454
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002455 if (flags & I40E_AQC_ADD_VEB_FLOATING)
2456 *floating = true;
2457 else
2458 *floating = false;
2459 }
2460
2461get_veb_exit:
2462 return status;
2463}
2464
2465/**
2466 * i40e_aq_add_macvlan
2467 * @hw: pointer to the hw struct
2468 * @seid: VSI for the mac address
2469 * @mv_list: list of macvlans to be added
2470 * @count: length of the list
2471 * @cmd_details: pointer to command details structure or NULL
2472 *
2473 * Add MAC/VLAN addresses to the HW filtering
2474 **/
2475i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 seid,
2476 struct i40e_aqc_add_macvlan_element_data *mv_list,
2477 u16 count, struct i40e_asq_cmd_details *cmd_details)
2478{
2479 struct i40e_aq_desc desc;
2480 struct i40e_aqc_macvlan *cmd =
2481 (struct i40e_aqc_macvlan *)&desc.params.raw;
2482 i40e_status status;
2483 u16 buf_size;
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002484 int i;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002485
2486 if (count == 0 || !mv_list || !hw)
2487 return I40E_ERR_PARAM;
2488
Shannon Nelson1efc80e2015-02-27 09:18:30 +00002489 buf_size = count * sizeof(*mv_list);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002490
2491 /* prep the rest of the request */
2492 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_macvlan);
2493 cmd->num_addresses = cpu_to_le16(count);
2494 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
2495 cmd->seid[1] = 0;
2496 cmd->seid[2] = 0;
2497
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002498 for (i = 0; i < count; i++)
2499 if (is_multicast_ether_addr(mv_list[i].mac_addr))
2500 mv_list[i].flags |=
2501 cpu_to_le16(I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC);
2502
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002503 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2504 if (buf_size > I40E_AQ_LARGE_BUF)
2505 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2506
2507 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
Shannon Nelson67be6eb2016-01-13 16:51:40 -08002508 cmd_details);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002509
2510 return status;
2511}
2512
2513/**
2514 * i40e_aq_remove_macvlan
2515 * @hw: pointer to the hw struct
2516 * @seid: VSI for the mac address
2517 * @mv_list: list of macvlans to be removed
2518 * @count: length of the list
2519 * @cmd_details: pointer to command details structure or NULL
2520 *
2521 * Remove MAC/VLAN addresses from the HW filtering
2522 **/
2523i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 seid,
2524 struct i40e_aqc_remove_macvlan_element_data *mv_list,
2525 u16 count, struct i40e_asq_cmd_details *cmd_details)
2526{
2527 struct i40e_aq_desc desc;
2528 struct i40e_aqc_macvlan *cmd =
2529 (struct i40e_aqc_macvlan *)&desc.params.raw;
2530 i40e_status status;
2531 u16 buf_size;
2532
2533 if (count == 0 || !mv_list || !hw)
2534 return I40E_ERR_PARAM;
2535
Shannon Nelson1efc80e2015-02-27 09:18:30 +00002536 buf_size = count * sizeof(*mv_list);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002537
2538 /* prep the rest of the request */
2539 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_macvlan);
2540 cmd->num_addresses = cpu_to_le16(count);
2541 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
2542 cmd->seid[1] = 0;
2543 cmd->seid[2] = 0;
2544
2545 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2546 if (buf_size > I40E_AQ_LARGE_BUF)
2547 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2548
2549 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
2550 cmd_details);
2551
2552 return status;
2553}
2554
2555/**
Kiran Patil7bd68752016-01-04 10:33:07 -08002556 * i40e_mirrorrule_op - Internal helper function to add/delete mirror rule
2557 * @hw: pointer to the hw struct
2558 * @opcode: AQ opcode for add or delete mirror rule
2559 * @sw_seid: Switch SEID (to which rule refers)
2560 * @rule_type: Rule Type (ingress/egress/VLAN)
2561 * @id: Destination VSI SEID or Rule ID
2562 * @count: length of the list
2563 * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
2564 * @cmd_details: pointer to command details structure or NULL
2565 * @rule_id: Rule ID returned from FW
2566 * @rule_used: Number of rules used in internal switch
2567 * @rule_free: Number of rules free in internal switch
2568 *
2569 * Add/Delete a mirror rule to a specific switch. Mirror rules are supported for
2570 * VEBs/VEPA elements only
2571 **/
2572static i40e_status i40e_mirrorrule_op(struct i40e_hw *hw,
2573 u16 opcode, u16 sw_seid, u16 rule_type, u16 id,
2574 u16 count, __le16 *mr_list,
2575 struct i40e_asq_cmd_details *cmd_details,
2576 u16 *rule_id, u16 *rules_used, u16 *rules_free)
2577{
2578 struct i40e_aq_desc desc;
2579 struct i40e_aqc_add_delete_mirror_rule *cmd =
2580 (struct i40e_aqc_add_delete_mirror_rule *)&desc.params.raw;
2581 struct i40e_aqc_add_delete_mirror_rule_completion *resp =
2582 (struct i40e_aqc_add_delete_mirror_rule_completion *)&desc.params.raw;
2583 i40e_status status;
2584 u16 buf_size;
2585
2586 buf_size = count * sizeof(*mr_list);
2587
2588 /* prep the rest of the request */
2589 i40e_fill_default_direct_cmd_desc(&desc, opcode);
2590 cmd->seid = cpu_to_le16(sw_seid);
2591 cmd->rule_type = cpu_to_le16(rule_type &
2592 I40E_AQC_MIRROR_RULE_TYPE_MASK);
2593 cmd->num_entries = cpu_to_le16(count);
2594 /* Dest VSI for add, rule_id for delete */
2595 cmd->destination = cpu_to_le16(id);
2596 if (mr_list) {
2597 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
2598 I40E_AQ_FLAG_RD));
2599 if (buf_size > I40E_AQ_LARGE_BUF)
2600 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2601 }
2602
2603 status = i40e_asq_send_command(hw, &desc, mr_list, buf_size,
2604 cmd_details);
2605 if (!status ||
2606 hw->aq.asq_last_status == I40E_AQ_RC_ENOSPC) {
2607 if (rule_id)
2608 *rule_id = le16_to_cpu(resp->rule_id);
2609 if (rules_used)
2610 *rules_used = le16_to_cpu(resp->mirror_rules_used);
2611 if (rules_free)
2612 *rules_free = le16_to_cpu(resp->mirror_rules_free);
2613 }
2614 return status;
2615}
2616
2617/**
2618 * i40e_aq_add_mirrorrule - add a mirror rule
2619 * @hw: pointer to the hw struct
2620 * @sw_seid: Switch SEID (to which rule refers)
2621 * @rule_type: Rule Type (ingress/egress/VLAN)
2622 * @dest_vsi: SEID of VSI to which packets will be mirrored
2623 * @count: length of the list
2624 * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
2625 * @cmd_details: pointer to command details structure or NULL
2626 * @rule_id: Rule ID returned from FW
2627 * @rule_used: Number of rules used in internal switch
2628 * @rule_free: Number of rules free in internal switch
2629 *
2630 * Add mirror rule. Mirror rules are supported for VEBs or VEPA elements only
2631 **/
2632i40e_status i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
2633 u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
2634 struct i40e_asq_cmd_details *cmd_details,
2635 u16 *rule_id, u16 *rules_used, u16 *rules_free)
2636{
2637 if (!(rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS ||
2638 rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS)) {
2639 if (count == 0 || !mr_list)
2640 return I40E_ERR_PARAM;
2641 }
2642
2643 return i40e_mirrorrule_op(hw, i40e_aqc_opc_add_mirror_rule, sw_seid,
2644 rule_type, dest_vsi, count, mr_list,
2645 cmd_details, rule_id, rules_used, rules_free);
2646}
2647
2648/**
2649 * i40e_aq_delete_mirrorrule - delete a mirror rule
2650 * @hw: pointer to the hw struct
2651 * @sw_seid: Switch SEID (to which rule refers)
2652 * @rule_type: Rule Type (ingress/egress/VLAN)
2653 * @count: length of the list
2654 * @rule_id: Rule ID that is returned in the receive desc as part of
2655 * add_mirrorrule.
2656 * @mr_list: list of mirrored VLAN IDs to be removed
2657 * @cmd_details: pointer to command details structure or NULL
2658 * @rule_used: Number of rules used in internal switch
2659 * @rule_free: Number of rules free in internal switch
2660 *
2661 * Delete a mirror rule. Mirror rules are supported for VEBs/VEPA elements only
2662 **/
2663i40e_status i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
2664 u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
2665 struct i40e_asq_cmd_details *cmd_details,
2666 u16 *rules_used, u16 *rules_free)
2667{
2668 /* Rule ID has to be valid except rule_type: INGRESS VLAN mirroring */
2669 if (rule_type != I40E_AQC_MIRROR_RULE_TYPE_VLAN) {
2670 if (!rule_id)
2671 return I40E_ERR_PARAM;
2672 } else {
2673 /* count and mr_list shall be valid for rule_type INGRESS VLAN
2674 * mirroring. For other rule_type, count and rule_type should
2675 * not matter.
2676 */
2677 if (count == 0 || !mr_list)
2678 return I40E_ERR_PARAM;
2679 }
2680
2681 return i40e_mirrorrule_op(hw, i40e_aqc_opc_delete_mirror_rule, sw_seid,
2682 rule_type, rule_id, count, mr_list,
2683 cmd_details, NULL, rules_used, rules_free);
2684}
2685
2686/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002687 * i40e_aq_send_msg_to_vf
2688 * @hw: pointer to the hardware structure
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00002689 * @vfid: VF id to send msg
Jeff Kirsher98d44382013-12-21 05:44:42 +00002690 * @v_opcode: opcodes for VF-PF communication
2691 * @v_retval: return error code
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002692 * @msg: pointer to the msg buffer
2693 * @msglen: msg length
2694 * @cmd_details: pointer to command details
2695 *
2696 * send msg to vf
2697 **/
2698i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
2699 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
2700 struct i40e_asq_cmd_details *cmd_details)
2701{
2702 struct i40e_aq_desc desc;
2703 struct i40e_aqc_pf_vf_message *cmd =
2704 (struct i40e_aqc_pf_vf_message *)&desc.params.raw;
2705 i40e_status status;
2706
2707 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_send_msg_to_vf);
2708 cmd->id = cpu_to_le32(vfid);
2709 desc.cookie_high = cpu_to_le32(v_opcode);
2710 desc.cookie_low = cpu_to_le32(v_retval);
2711 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_SI);
2712 if (msglen) {
2713 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
2714 I40E_AQ_FLAG_RD));
2715 if (msglen > I40E_AQ_LARGE_BUF)
2716 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2717 desc.datalen = cpu_to_le16(msglen);
2718 }
2719 status = i40e_asq_send_command(hw, &desc, msg, msglen, cmd_details);
2720
2721 return status;
2722}
2723
2724/**
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002725 * i40e_aq_debug_read_register
2726 * @hw: pointer to the hw struct
2727 * @reg_addr: register address
2728 * @reg_val: register value
2729 * @cmd_details: pointer to command details structure or NULL
2730 *
2731 * Read the register using the admin queue commands
2732 **/
2733i40e_status i40e_aq_debug_read_register(struct i40e_hw *hw,
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002734 u32 reg_addr, u64 *reg_val,
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002735 struct i40e_asq_cmd_details *cmd_details)
2736{
2737 struct i40e_aq_desc desc;
2738 struct i40e_aqc_debug_reg_read_write *cmd_resp =
2739 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
2740 i40e_status status;
2741
2742 if (reg_val == NULL)
2743 return I40E_ERR_PARAM;
2744
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002745 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_read_reg);
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002746
2747 cmd_resp->address = cpu_to_le32(reg_addr);
2748
2749 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2750
2751 if (!status) {
Jesse Brandeburg7b115dd2015-02-27 09:15:23 +00002752 *reg_val = ((u64)le32_to_cpu(cmd_resp->value_high) << 32) |
2753 (u64)le32_to_cpu(cmd_resp->value_low);
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002754 }
2755
2756 return status;
2757}
2758
2759/**
Shannon Nelson53db45c2014-08-01 13:27:05 -07002760 * i40e_aq_debug_write_register
2761 * @hw: pointer to the hw struct
2762 * @reg_addr: register address
2763 * @reg_val: register value
2764 * @cmd_details: pointer to command details structure or NULL
2765 *
2766 * Write to a register using the admin queue commands
2767 **/
2768i40e_status i40e_aq_debug_write_register(struct i40e_hw *hw,
2769 u32 reg_addr, u64 reg_val,
2770 struct i40e_asq_cmd_details *cmd_details)
2771{
2772 struct i40e_aq_desc desc;
2773 struct i40e_aqc_debug_reg_read_write *cmd =
2774 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
2775 i40e_status status;
2776
2777 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_write_reg);
2778
2779 cmd->address = cpu_to_le32(reg_addr);
2780 cmd->value_high = cpu_to_le32((u32)(reg_val >> 32));
2781 cmd->value_low = cpu_to_le32((u32)(reg_val & 0xFFFFFFFF));
2782
2783 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2784
2785 return status;
2786}
2787
2788/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002789 * i40e_aq_set_hmc_resource_profile
2790 * @hw: pointer to the hw struct
2791 * @profile: type of profile the HMC is to be set as
2792 * @pe_vf_enabled_count: the number of PE enabled VFs the system has
2793 * @cmd_details: pointer to command details structure or NULL
2794 *
2795 * set the HMC profile of the device.
2796 **/
2797i40e_status i40e_aq_set_hmc_resource_profile(struct i40e_hw *hw,
2798 enum i40e_aq_hmc_profile profile,
2799 u8 pe_vf_enabled_count,
2800 struct i40e_asq_cmd_details *cmd_details)
2801{
2802 struct i40e_aq_desc desc;
2803 struct i40e_aq_get_set_hmc_resource_profile *cmd =
2804 (struct i40e_aq_get_set_hmc_resource_profile *)&desc.params.raw;
2805 i40e_status status;
2806
2807 i40e_fill_default_direct_cmd_desc(&desc,
2808 i40e_aqc_opc_set_hmc_resource_profile);
2809
2810 cmd->pm_profile = (u8)profile;
2811 cmd->pe_vf_enabled = pe_vf_enabled_count;
2812
2813 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2814
2815 return status;
2816}
2817
2818/**
2819 * i40e_aq_request_resource
2820 * @hw: pointer to the hw struct
2821 * @resource: resource id
2822 * @access: access type
2823 * @sdp_number: resource number
2824 * @timeout: the maximum time in ms that the driver may hold the resource
2825 * @cmd_details: pointer to command details structure or NULL
2826 *
2827 * requests common resource using the admin queue commands
2828 **/
2829i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
2830 enum i40e_aq_resources_ids resource,
2831 enum i40e_aq_resource_access_type access,
2832 u8 sdp_number, u64 *timeout,
2833 struct i40e_asq_cmd_details *cmd_details)
2834{
2835 struct i40e_aq_desc desc;
2836 struct i40e_aqc_request_resource *cmd_resp =
2837 (struct i40e_aqc_request_resource *)&desc.params.raw;
2838 i40e_status status;
2839
2840 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_request_resource);
2841
2842 cmd_resp->resource_id = cpu_to_le16(resource);
2843 cmd_resp->access_type = cpu_to_le16(access);
2844 cmd_resp->resource_number = cpu_to_le32(sdp_number);
2845
2846 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2847 /* The completion specifies the maximum time in ms that the driver
2848 * may hold the resource in the Timeout field.
2849 * If the resource is held by someone else, the command completes with
2850 * busy return value and the timeout field indicates the maximum time
2851 * the current owner of the resource has to free it.
2852 */
2853 if (!status || hw->aq.asq_last_status == I40E_AQ_RC_EBUSY)
2854 *timeout = le32_to_cpu(cmd_resp->timeout);
2855
2856 return status;
2857}
2858
2859/**
2860 * i40e_aq_release_resource
2861 * @hw: pointer to the hw struct
2862 * @resource: resource id
2863 * @sdp_number: resource number
2864 * @cmd_details: pointer to command details structure or NULL
2865 *
2866 * release common resource using the admin queue commands
2867 **/
2868i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
2869 enum i40e_aq_resources_ids resource,
2870 u8 sdp_number,
2871 struct i40e_asq_cmd_details *cmd_details)
2872{
2873 struct i40e_aq_desc desc;
2874 struct i40e_aqc_request_resource *cmd =
2875 (struct i40e_aqc_request_resource *)&desc.params.raw;
2876 i40e_status status;
2877
2878 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_release_resource);
2879
2880 cmd->resource_id = cpu_to_le16(resource);
2881 cmd->resource_number = cpu_to_le32(sdp_number);
2882
2883 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2884
2885 return status;
2886}
2887
2888/**
2889 * i40e_aq_read_nvm
2890 * @hw: pointer to the hw struct
2891 * @module_pointer: module pointer location in words from the NVM beginning
2892 * @offset: byte offset from the module beginning
2893 * @length: length of the section to be read (in bytes from the offset)
2894 * @data: command buffer (size [bytes] = length)
2895 * @last_command: tells if this is the last command in a series
2896 * @cmd_details: pointer to command details structure or NULL
2897 *
2898 * Read the NVM using the admin queue commands
2899 **/
2900i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
2901 u32 offset, u16 length, void *data,
2902 bool last_command,
2903 struct i40e_asq_cmd_details *cmd_details)
2904{
2905 struct i40e_aq_desc desc;
2906 struct i40e_aqc_nvm_update *cmd =
2907 (struct i40e_aqc_nvm_update *)&desc.params.raw;
2908 i40e_status status;
2909
2910 /* In offset the highest byte must be zeroed. */
2911 if (offset & 0xFF000000) {
2912 status = I40E_ERR_PARAM;
2913 goto i40e_aq_read_nvm_exit;
2914 }
2915
2916 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_read);
2917
2918 /* If this is the last command in a series, set the proper flag. */
2919 if (last_command)
2920 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
2921 cmd->module_pointer = module_pointer;
2922 cmd->offset = cpu_to_le32(offset);
2923 cmd->length = cpu_to_le16(length);
2924
2925 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2926 if (length > I40E_AQ_LARGE_BUF)
2927 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2928
2929 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
2930
2931i40e_aq_read_nvm_exit:
2932 return status;
2933}
2934
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00002935/**
2936 * i40e_aq_erase_nvm
2937 * @hw: pointer to the hw struct
2938 * @module_pointer: module pointer location in words from the NVM beginning
2939 * @offset: offset in the module (expressed in 4 KB from module's beginning)
2940 * @length: length of the section to be erased (expressed in 4 KB)
2941 * @last_command: tells if this is the last command in a series
2942 * @cmd_details: pointer to command details structure or NULL
2943 *
2944 * Erase the NVM sector using the admin queue commands
2945 **/
2946i40e_status i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
2947 u32 offset, u16 length, bool last_command,
2948 struct i40e_asq_cmd_details *cmd_details)
2949{
2950 struct i40e_aq_desc desc;
2951 struct i40e_aqc_nvm_update *cmd =
2952 (struct i40e_aqc_nvm_update *)&desc.params.raw;
2953 i40e_status status;
2954
2955 /* In offset the highest byte must be zeroed. */
2956 if (offset & 0xFF000000) {
2957 status = I40E_ERR_PARAM;
2958 goto i40e_aq_erase_nvm_exit;
2959 }
2960
2961 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_erase);
2962
2963 /* If this is the last command in a series, set the proper flag. */
2964 if (last_command)
2965 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
2966 cmd->module_pointer = module_pointer;
2967 cmd->offset = cpu_to_le32(offset);
2968 cmd->length = cpu_to_le16(length);
2969
2970 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2971
2972i40e_aq_erase_nvm_exit:
2973 return status;
2974}
2975
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002976/**
2977 * i40e_parse_discover_capabilities
2978 * @hw: pointer to the hw struct
2979 * @buff: pointer to a buffer containing device/function capability records
2980 * @cap_count: number of capability records in the list
2981 * @list_type_opc: type of capabilities list to parse
2982 *
2983 * Parse the device/function capabilities list.
2984 **/
2985static void i40e_parse_discover_capabilities(struct i40e_hw *hw, void *buff,
2986 u32 cap_count,
2987 enum i40e_admin_queue_opc list_type_opc)
2988{
2989 struct i40e_aqc_list_capabilities_element_resp *cap;
Shannon Nelson9fee9db2014-12-11 07:06:30 +00002990 u32 valid_functions, num_functions;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002991 u32 number, logical_id, phys_id;
2992 struct i40e_hw_capabilities *p;
Pawel Orlowskic78b9532015-04-22 19:34:06 -04002993 u8 major_rev;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00002994 u32 i = 0;
2995 u16 id;
2996
2997 cap = (struct i40e_aqc_list_capabilities_element_resp *) buff;
2998
2999 if (list_type_opc == i40e_aqc_opc_list_dev_capabilities)
Joe Perchesb58f2f72014-03-25 04:30:32 +00003000 p = &hw->dev_caps;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003001 else if (list_type_opc == i40e_aqc_opc_list_func_capabilities)
Joe Perchesb58f2f72014-03-25 04:30:32 +00003002 p = &hw->func_caps;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003003 else
3004 return;
3005
3006 for (i = 0; i < cap_count; i++, cap++) {
3007 id = le16_to_cpu(cap->id);
3008 number = le32_to_cpu(cap->number);
3009 logical_id = le32_to_cpu(cap->logical_id);
3010 phys_id = le32_to_cpu(cap->phys_id);
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003011 major_rev = cap->major_rev;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003012
3013 switch (id) {
Shannon Nelson406e7342015-12-10 11:38:49 -08003014 case I40E_AQ_CAP_ID_SWITCH_MODE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003015 p->switch_mode = number;
3016 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003017 case I40E_AQ_CAP_ID_MNG_MODE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003018 p->management_mode = number;
3019 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003020 case I40E_AQ_CAP_ID_NPAR_ACTIVE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003021 p->npar_enable = number;
3022 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003023 case I40E_AQ_CAP_ID_OS2BMC_CAP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003024 p->os2bmc = number;
3025 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003026 case I40E_AQ_CAP_ID_FUNCTIONS_VALID:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003027 p->valid_functions = number;
3028 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003029 case I40E_AQ_CAP_ID_SRIOV:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003030 if (number == 1)
3031 p->sr_iov_1_1 = true;
3032 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003033 case I40E_AQ_CAP_ID_VF:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003034 p->num_vfs = number;
3035 p->vf_base_id = logical_id;
3036 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003037 case I40E_AQ_CAP_ID_VMDQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003038 if (number == 1)
3039 p->vmdq = true;
3040 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003041 case I40E_AQ_CAP_ID_8021QBG:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003042 if (number == 1)
3043 p->evb_802_1_qbg = true;
3044 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003045 case I40E_AQ_CAP_ID_8021QBR:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003046 if (number == 1)
3047 p->evb_802_1_qbh = true;
3048 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003049 case I40E_AQ_CAP_ID_VSI:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003050 p->num_vsis = number;
3051 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003052 case I40E_AQ_CAP_ID_DCB:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003053 if (number == 1) {
3054 p->dcb = true;
3055 p->enabled_tcmap = logical_id;
3056 p->maxtc = phys_id;
3057 }
3058 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003059 case I40E_AQ_CAP_ID_FCOE:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003060 if (number == 1)
3061 p->fcoe = true;
3062 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003063 case I40E_AQ_CAP_ID_ISCSI:
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00003064 if (number == 1)
3065 p->iscsi = true;
3066 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003067 case I40E_AQ_CAP_ID_RSS:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003068 p->rss = true;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00003069 p->rss_table_size = number;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003070 p->rss_table_entry_width = logical_id;
3071 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003072 case I40E_AQ_CAP_ID_RXQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003073 p->num_rx_qp = number;
3074 p->base_queue = phys_id;
3075 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003076 case I40E_AQ_CAP_ID_TXQ:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003077 p->num_tx_qp = number;
3078 p->base_queue = phys_id;
3079 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003080 case I40E_AQ_CAP_ID_MSIX:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003081 p->num_msix_vectors = number;
3082 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003083 case I40E_AQ_CAP_ID_VF_MSIX:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003084 p->num_msix_vectors_vf = number;
3085 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003086 case I40E_AQ_CAP_ID_FLEX10:
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003087 if (major_rev == 1) {
3088 if (number == 1) {
3089 p->flex10_enable = true;
3090 p->flex10_capable = true;
3091 }
3092 } else {
3093 /* Capability revision >= 2 */
3094 if (number & 1)
3095 p->flex10_enable = true;
3096 if (number & 2)
3097 p->flex10_capable = true;
3098 }
3099 p->flex10_mode = logical_id;
3100 p->flex10_status = phys_id;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003101 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003102 case I40E_AQ_CAP_ID_CEM:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003103 if (number == 1)
3104 p->mgmt_cem = true;
3105 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003106 case I40E_AQ_CAP_ID_IWARP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003107 if (number == 1)
3108 p->iwarp = true;
3109 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003110 case I40E_AQ_CAP_ID_LED:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003111 if (phys_id < I40E_HW_CAP_MAX_GPIO)
3112 p->led[phys_id] = true;
3113 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003114 case I40E_AQ_CAP_ID_SDP:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003115 if (phys_id < I40E_HW_CAP_MAX_GPIO)
3116 p->sdp[phys_id] = true;
3117 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003118 case I40E_AQ_CAP_ID_MDIO:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003119 if (number == 1) {
3120 p->mdio_port_num = phys_id;
3121 p->mdio_port_mode = logical_id;
3122 }
3123 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003124 case I40E_AQ_CAP_ID_1588:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003125 if (number == 1)
3126 p->ieee_1588 = true;
3127 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003128 case I40E_AQ_CAP_ID_FLOW_DIRECTOR:
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003129 p->fd = true;
3130 p->fd_filters_guaranteed = number;
3131 p->fd_filters_best_effort = logical_id;
3132 break;
Shannon Nelson406e7342015-12-10 11:38:49 -08003133 case I40E_AQ_CAP_ID_WSR_PROT:
Kevin Scott73b23402015-04-07 19:45:38 -04003134 p->wr_csr_prot = (u64)number;
3135 p->wr_csr_prot |= (u64)logical_id << 32;
3136 break;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003137 default:
3138 break;
3139 }
3140 }
3141
Vasu Devf18ae102015-04-07 19:45:36 -04003142 if (p->fcoe)
3143 i40e_debug(hw, I40E_DEBUG_ALL, "device is FCoE capable\n");
3144
Vasu Dev566bb852014-04-09 05:59:06 +00003145 /* Software override ensuring FCoE is disabled if npar or mfp
3146 * mode because it is not supported in these modes.
3147 */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04003148 if (p->npar_enable || p->flex10_enable)
Vasu Dev566bb852014-04-09 05:59:06 +00003149 p->fcoe = false;
3150
Shannon Nelson9fee9db2014-12-11 07:06:30 +00003151 /* count the enabled ports (aka the "not disabled" ports) */
3152 hw->num_ports = 0;
3153 for (i = 0; i < 4; i++) {
3154 u32 port_cfg_reg = I40E_PRTGEN_CNF + (4 * i);
3155 u64 port_cfg = 0;
3156
3157 /* use AQ read to get the physical register offset instead
3158 * of the port relative offset
3159 */
3160 i40e_aq_debug_read_register(hw, port_cfg_reg, &port_cfg, NULL);
3161 if (!(port_cfg & I40E_PRTGEN_CNF_PORT_DIS_MASK))
3162 hw->num_ports++;
3163 }
3164
3165 valid_functions = p->valid_functions;
3166 num_functions = 0;
3167 while (valid_functions) {
3168 if (valid_functions & 1)
3169 num_functions++;
3170 valid_functions >>= 1;
3171 }
3172
3173 /* partition id is 1-based, and functions are evenly spread
3174 * across the ports as partitions
3175 */
3176 hw->partition_id = (hw->pf_id / hw->num_ports) + 1;
3177 hw->num_partitions = num_functions / hw->num_ports;
3178
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003179 /* additional HW specific goodies that might
3180 * someday be HW version specific
3181 */
3182 p->rx_buf_chain_len = I40E_MAX_CHAINED_RX_BUFFERS;
3183}
3184
3185/**
3186 * i40e_aq_discover_capabilities
3187 * @hw: pointer to the hw struct
3188 * @buff: a virtual buffer to hold the capabilities
3189 * @buff_size: Size of the virtual buffer
3190 * @data_size: Size of the returned data, or buff size needed if AQ err==ENOMEM
3191 * @list_type_opc: capabilities type to discover - pass in the command opcode
3192 * @cmd_details: pointer to command details structure or NULL
3193 *
3194 * Get the device capabilities descriptions from the firmware
3195 **/
3196i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
3197 void *buff, u16 buff_size, u16 *data_size,
3198 enum i40e_admin_queue_opc list_type_opc,
3199 struct i40e_asq_cmd_details *cmd_details)
3200{
3201 struct i40e_aqc_list_capabilites *cmd;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003202 struct i40e_aq_desc desc;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08003203 i40e_status status = 0;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003204
3205 cmd = (struct i40e_aqc_list_capabilites *)&desc.params.raw;
3206
3207 if (list_type_opc != i40e_aqc_opc_list_func_capabilities &&
3208 list_type_opc != i40e_aqc_opc_list_dev_capabilities) {
3209 status = I40E_ERR_PARAM;
3210 goto exit;
3211 }
3212
3213 i40e_fill_default_direct_cmd_desc(&desc, list_type_opc);
3214
3215 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3216 if (buff_size > I40E_AQ_LARGE_BUF)
3217 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3218
3219 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3220 *data_size = le16_to_cpu(desc.datalen);
3221
3222 if (status)
3223 goto exit;
3224
3225 i40e_parse_discover_capabilities(hw, buff, le32_to_cpu(cmd->count),
3226 list_type_opc);
3227
3228exit:
3229 return status;
3230}
3231
3232/**
Shannon Nelsoncd552cb2014-07-09 07:46:09 +00003233 * i40e_aq_update_nvm
3234 * @hw: pointer to the hw struct
3235 * @module_pointer: module pointer location in words from the NVM beginning
3236 * @offset: byte offset from the module beginning
3237 * @length: length of the section to be written (in bytes from the offset)
3238 * @data: command buffer (size [bytes] = length)
3239 * @last_command: tells if this is the last command in a series
3240 * @cmd_details: pointer to command details structure or NULL
3241 *
3242 * Update the NVM using the admin queue commands
3243 **/
3244i40e_status i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
3245 u32 offset, u16 length, void *data,
3246 bool last_command,
3247 struct i40e_asq_cmd_details *cmd_details)
3248{
3249 struct i40e_aq_desc desc;
3250 struct i40e_aqc_nvm_update *cmd =
3251 (struct i40e_aqc_nvm_update *)&desc.params.raw;
3252 i40e_status status;
3253
3254 /* In offset the highest byte must be zeroed. */
3255 if (offset & 0xFF000000) {
3256 status = I40E_ERR_PARAM;
3257 goto i40e_aq_update_nvm_exit;
3258 }
3259
3260 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_update);
3261
3262 /* If this is the last command in a series, set the proper flag. */
3263 if (last_command)
3264 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
3265 cmd->module_pointer = module_pointer;
3266 cmd->offset = cpu_to_le32(offset);
3267 cmd->length = cpu_to_le16(length);
3268
3269 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3270 if (length > I40E_AQ_LARGE_BUF)
3271 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3272
3273 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
3274
3275i40e_aq_update_nvm_exit:
3276 return status;
3277}
3278
3279/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003280 * i40e_aq_get_lldp_mib
3281 * @hw: pointer to the hw struct
3282 * @bridge_type: type of bridge requested
3283 * @mib_type: Local, Remote or both Local and Remote MIBs
3284 * @buff: pointer to a user supplied buffer to store the MIB block
3285 * @buff_size: size of the buffer (in bytes)
3286 * @local_len : length of the returned Local LLDP MIB
3287 * @remote_len: length of the returned Remote LLDP MIB
3288 * @cmd_details: pointer to command details structure or NULL
3289 *
3290 * Requests the complete LLDP MIB (entire packet).
3291 **/
3292i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
3293 u8 mib_type, void *buff, u16 buff_size,
3294 u16 *local_len, u16 *remote_len,
3295 struct i40e_asq_cmd_details *cmd_details)
3296{
3297 struct i40e_aq_desc desc;
3298 struct i40e_aqc_lldp_get_mib *cmd =
3299 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
3300 struct i40e_aqc_lldp_get_mib *resp =
3301 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
3302 i40e_status status;
3303
3304 if (buff_size == 0 || !buff)
3305 return I40E_ERR_PARAM;
3306
3307 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_get_mib);
3308 /* Indirect Command */
3309 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3310
3311 cmd->type = mib_type & I40E_AQ_LLDP_MIB_TYPE_MASK;
3312 cmd->type |= ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
3313 I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
3314
3315 desc.datalen = cpu_to_le16(buff_size);
3316
3317 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3318 if (buff_size > I40E_AQ_LARGE_BUF)
3319 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3320
3321 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3322 if (!status) {
3323 if (local_len != NULL)
3324 *local_len = le16_to_cpu(resp->local_len);
3325 if (remote_len != NULL)
3326 *remote_len = le16_to_cpu(resp->remote_len);
3327 }
3328
3329 return status;
3330}
3331
3332/**
3333 * i40e_aq_cfg_lldp_mib_change_event
3334 * @hw: pointer to the hw struct
3335 * @enable_update: Enable or Disable event posting
3336 * @cmd_details: pointer to command details structure or NULL
3337 *
3338 * Enable or Disable posting of an event on ARQ when LLDP MIB
3339 * associated with the interface changes
3340 **/
3341i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
3342 bool enable_update,
3343 struct i40e_asq_cmd_details *cmd_details)
3344{
3345 struct i40e_aq_desc desc;
3346 struct i40e_aqc_lldp_update_mib *cmd =
3347 (struct i40e_aqc_lldp_update_mib *)&desc.params.raw;
3348 i40e_status status;
3349
3350 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_update_mib);
3351
3352 if (!enable_update)
3353 cmd->command |= I40E_AQ_LLDP_MIB_UPDATE_DISABLE;
3354
3355 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3356
3357 return status;
3358}
3359
3360/**
3361 * i40e_aq_stop_lldp
3362 * @hw: pointer to the hw struct
3363 * @shutdown_agent: True if LLDP Agent needs to be Shutdown
3364 * @cmd_details: pointer to command details structure or NULL
3365 *
3366 * Stop or Shutdown the embedded LLDP Agent
3367 **/
3368i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
3369 struct i40e_asq_cmd_details *cmd_details)
3370{
3371 struct i40e_aq_desc desc;
3372 struct i40e_aqc_lldp_stop *cmd =
3373 (struct i40e_aqc_lldp_stop *)&desc.params.raw;
3374 i40e_status status;
3375
3376 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_stop);
3377
3378 if (shutdown_agent)
3379 cmd->command |= I40E_AQ_LLDP_AGENT_SHUTDOWN;
3380
3381 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3382
3383 return status;
3384}
3385
3386/**
3387 * i40e_aq_start_lldp
3388 * @hw: pointer to the hw struct
3389 * @cmd_details: pointer to command details structure or NULL
3390 *
3391 * Start the embedded LLDP Agent on all ports.
3392 **/
3393i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
3394 struct i40e_asq_cmd_details *cmd_details)
3395{
3396 struct i40e_aq_desc desc;
3397 struct i40e_aqc_lldp_start *cmd =
3398 (struct i40e_aqc_lldp_start *)&desc.params.raw;
3399 i40e_status status;
3400
3401 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_start);
3402
3403 cmd->command = I40E_AQ_LLDP_AGENT_START;
3404
3405 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3406
3407 return status;
3408}
3409
3410/**
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00003411 * i40e_aq_get_cee_dcb_config
3412 * @hw: pointer to the hw struct
3413 * @buff: response buffer that stores CEE operational configuration
3414 * @buff_size: size of the buffer passed
3415 * @cmd_details: pointer to command details structure or NULL
3416 *
3417 * Get CEE DCBX mode operational configuration from firmware
3418 **/
3419i40e_status i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
3420 void *buff, u16 buff_size,
3421 struct i40e_asq_cmd_details *cmd_details)
3422{
3423 struct i40e_aq_desc desc;
3424 i40e_status status;
3425
3426 if (buff_size == 0 || !buff)
3427 return I40E_ERR_PARAM;
3428
3429 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_cee_dcb_cfg);
3430
3431 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3432 status = i40e_asq_send_command(hw, &desc, (void *)buff, buff_size,
3433 cmd_details);
3434
3435 return status;
3436}
3437
3438/**
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003439 * i40e_aq_add_udp_tunnel
3440 * @hw: pointer to the hw struct
3441 * @udp_port: the UDP port to add
3442 * @header_len: length of the tunneling header length in DWords
3443 * @protocol_index: protocol index type
Jeff Kirsher98d44382013-12-21 05:44:42 +00003444 * @filter_index: pointer to filter index
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003445 * @cmd_details: pointer to command details structure or NULL
3446 **/
3447i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
Kevin Scottf4f94b92014-04-05 07:46:10 +00003448 u16 udp_port, u8 protocol_index,
3449 u8 *filter_index,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003450 struct i40e_asq_cmd_details *cmd_details)
3451{
3452 struct i40e_aq_desc desc;
3453 struct i40e_aqc_add_udp_tunnel *cmd =
3454 (struct i40e_aqc_add_udp_tunnel *)&desc.params.raw;
3455 struct i40e_aqc_del_udp_tunnel_completion *resp =
3456 (struct i40e_aqc_del_udp_tunnel_completion *)&desc.params.raw;
3457 i40e_status status;
3458
3459 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_udp_tunnel);
3460
3461 cmd->udp_port = cpu_to_le16(udp_port);
Shannon Nelson981b7542013-12-11 08:17:11 +00003462 cmd->protocol_type = protocol_index;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003463
3464 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3465
Shannon Nelson65d13462015-02-21 06:45:28 +00003466 if (!status && filter_index)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00003467 *filter_index = resp->index;
3468
3469 return status;
3470}
3471
3472/**
3473 * i40e_aq_del_udp_tunnel
3474 * @hw: pointer to the hw struct
3475 * @index: filter index
3476 * @cmd_details: pointer to command details structure or NULL
3477 **/
3478i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
3479 struct i40e_asq_cmd_details *cmd_details)
3480{
3481 struct i40e_aq_desc desc;
3482 struct i40e_aqc_remove_udp_tunnel *cmd =
3483 (struct i40e_aqc_remove_udp_tunnel *)&desc.params.raw;
3484 i40e_status status;
3485
3486 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_del_udp_tunnel);
3487
3488 cmd->index = index;
3489
3490 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3491
3492 return status;
3493}
3494
3495/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003496 * i40e_aq_delete_element - Delete switch element
3497 * @hw: pointer to the hw struct
3498 * @seid: the SEID to delete from the switch
3499 * @cmd_details: pointer to command details structure or NULL
3500 *
3501 * This deletes a switch element from the switch.
3502 **/
3503i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
3504 struct i40e_asq_cmd_details *cmd_details)
3505{
3506 struct i40e_aq_desc desc;
3507 struct i40e_aqc_switch_seid *cmd =
3508 (struct i40e_aqc_switch_seid *)&desc.params.raw;
3509 i40e_status status;
3510
3511 if (seid == 0)
3512 return I40E_ERR_PARAM;
3513
3514 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_delete_element);
3515
3516 cmd->seid = cpu_to_le16(seid);
3517
3518 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3519
3520 return status;
3521}
3522
3523/**
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003524 * i40e_aq_dcb_updated - DCB Updated Command
3525 * @hw: pointer to the hw struct
3526 * @cmd_details: pointer to command details structure or NULL
3527 *
3528 * EMP will return when the shared RPB settings have been
3529 * recomputed and modified. The retval field in the descriptor
3530 * will be set to 0 when RPB is modified.
3531 **/
3532i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
3533 struct i40e_asq_cmd_details *cmd_details)
3534{
3535 struct i40e_aq_desc desc;
3536 i40e_status status;
3537
3538 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_dcb_updated);
3539
3540 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3541
3542 return status;
3543}
3544
3545/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003546 * i40e_aq_tx_sched_cmd - generic Tx scheduler AQ command handler
3547 * @hw: pointer to the hw struct
3548 * @seid: seid for the physical port/switching component/vsi
3549 * @buff: Indirect buffer to hold data parameters and response
3550 * @buff_size: Indirect buffer size
3551 * @opcode: Tx scheduler AQ command opcode
3552 * @cmd_details: pointer to command details structure or NULL
3553 *
3554 * Generic command handler for Tx scheduler AQ commands
3555 **/
3556static i40e_status i40e_aq_tx_sched_cmd(struct i40e_hw *hw, u16 seid,
3557 void *buff, u16 buff_size,
3558 enum i40e_admin_queue_opc opcode,
3559 struct i40e_asq_cmd_details *cmd_details)
3560{
3561 struct i40e_aq_desc desc;
3562 struct i40e_aqc_tx_sched_ind *cmd =
3563 (struct i40e_aqc_tx_sched_ind *)&desc.params.raw;
3564 i40e_status status;
3565 bool cmd_param_flag = false;
3566
3567 switch (opcode) {
3568 case i40e_aqc_opc_configure_vsi_ets_sla_bw_limit:
3569 case i40e_aqc_opc_configure_vsi_tc_bw:
3570 case i40e_aqc_opc_enable_switching_comp_ets:
3571 case i40e_aqc_opc_modify_switching_comp_ets:
3572 case i40e_aqc_opc_disable_switching_comp_ets:
3573 case i40e_aqc_opc_configure_switching_comp_ets_bw_limit:
3574 case i40e_aqc_opc_configure_switching_comp_bw_config:
3575 cmd_param_flag = true;
3576 break;
3577 case i40e_aqc_opc_query_vsi_bw_config:
3578 case i40e_aqc_opc_query_vsi_ets_sla_config:
3579 case i40e_aqc_opc_query_switching_comp_ets_config:
3580 case i40e_aqc_opc_query_port_ets_config:
3581 case i40e_aqc_opc_query_switching_comp_bw_config:
3582 cmd_param_flag = false;
3583 break;
3584 default:
3585 return I40E_ERR_PARAM;
3586 }
3587
3588 i40e_fill_default_direct_cmd_desc(&desc, opcode);
3589
3590 /* Indirect command */
3591 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
3592 if (cmd_param_flag)
3593 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
3594 if (buff_size > I40E_AQ_LARGE_BUF)
3595 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
3596
3597 desc.datalen = cpu_to_le16(buff_size);
3598
3599 cmd->vsi_seid = cpu_to_le16(seid);
3600
3601 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
3602
3603 return status;
3604}
3605
3606/**
Mitch Williams6b192892014-03-06 09:02:29 +00003607 * i40e_aq_config_vsi_bw_limit - Configure VSI BW Limit
3608 * @hw: pointer to the hw struct
3609 * @seid: VSI seid
3610 * @credit: BW limit credits (0 = disabled)
3611 * @max_credit: Max BW limit credits
3612 * @cmd_details: pointer to command details structure or NULL
3613 **/
3614i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
3615 u16 seid, u16 credit, u8 max_credit,
3616 struct i40e_asq_cmd_details *cmd_details)
3617{
3618 struct i40e_aq_desc desc;
3619 struct i40e_aqc_configure_vsi_bw_limit *cmd =
3620 (struct i40e_aqc_configure_vsi_bw_limit *)&desc.params.raw;
3621 i40e_status status;
3622
3623 i40e_fill_default_direct_cmd_desc(&desc,
3624 i40e_aqc_opc_configure_vsi_bw_limit);
3625
3626 cmd->vsi_seid = cpu_to_le16(seid);
3627 cmd->credit = cpu_to_le16(credit);
3628 cmd->max_credit = max_credit;
3629
3630 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3631
3632 return status;
3633}
3634
3635/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003636 * i40e_aq_config_vsi_tc_bw - Config VSI BW Allocation per TC
3637 * @hw: pointer to the hw struct
3638 * @seid: VSI seid
3639 * @bw_data: Buffer holding enabled TCs, relative TC BW limit/credits
3640 * @cmd_details: pointer to command details structure or NULL
3641 **/
3642i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw,
3643 u16 seid,
3644 struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
3645 struct i40e_asq_cmd_details *cmd_details)
3646{
3647 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3648 i40e_aqc_opc_configure_vsi_tc_bw,
3649 cmd_details);
3650}
3651
3652/**
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003653 * i40e_aq_config_switch_comp_ets - Enable/Disable/Modify ETS on the port
3654 * @hw: pointer to the hw struct
3655 * @seid: seid of the switching component connected to Physical Port
3656 * @ets_data: Buffer holding ETS parameters
3657 * @cmd_details: pointer to command details structure or NULL
3658 **/
3659i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
3660 u16 seid,
3661 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
3662 enum i40e_admin_queue_opc opcode,
3663 struct i40e_asq_cmd_details *cmd_details)
3664{
3665 return i40e_aq_tx_sched_cmd(hw, seid, (void *)ets_data,
3666 sizeof(*ets_data), opcode, cmd_details);
3667}
3668
3669/**
3670 * i40e_aq_config_switch_comp_bw_config - Config Switch comp BW Alloc per TC
3671 * @hw: pointer to the hw struct
3672 * @seid: seid of the switching component
3673 * @bw_data: Buffer holding enabled TCs, relative/absolute TC BW limit/credits
3674 * @cmd_details: pointer to command details structure or NULL
3675 **/
3676i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
3677 u16 seid,
3678 struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
3679 struct i40e_asq_cmd_details *cmd_details)
3680{
3681 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3682 i40e_aqc_opc_configure_switching_comp_bw_config,
3683 cmd_details);
3684}
3685
3686/**
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003687 * i40e_aq_query_vsi_bw_config - Query VSI BW configuration
3688 * @hw: pointer to the hw struct
3689 * @seid: seid of the VSI
3690 * @bw_data: Buffer to hold VSI BW configuration
3691 * @cmd_details: pointer to command details structure or NULL
3692 **/
3693i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
3694 u16 seid,
3695 struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
3696 struct i40e_asq_cmd_details *cmd_details)
3697{
3698 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3699 i40e_aqc_opc_query_vsi_bw_config,
3700 cmd_details);
3701}
3702
3703/**
3704 * i40e_aq_query_vsi_ets_sla_config - Query VSI BW configuration per TC
3705 * @hw: pointer to the hw struct
3706 * @seid: seid of the VSI
3707 * @bw_data: Buffer to hold VSI BW configuration per TC
3708 * @cmd_details: pointer to command details structure or NULL
3709 **/
3710i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
3711 u16 seid,
3712 struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
3713 struct i40e_asq_cmd_details *cmd_details)
3714{
3715 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3716 i40e_aqc_opc_query_vsi_ets_sla_config,
3717 cmd_details);
3718}
3719
3720/**
3721 * i40e_aq_query_switch_comp_ets_config - Query Switch comp BW config per TC
3722 * @hw: pointer to the hw struct
3723 * @seid: seid of the switching component
3724 * @bw_data: Buffer to hold switching component's per TC BW config
3725 * @cmd_details: pointer to command details structure or NULL
3726 **/
3727i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
3728 u16 seid,
3729 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
3730 struct i40e_asq_cmd_details *cmd_details)
3731{
3732 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3733 i40e_aqc_opc_query_switching_comp_ets_config,
3734 cmd_details);
3735}
3736
3737/**
3738 * i40e_aq_query_port_ets_config - Query Physical Port ETS configuration
3739 * @hw: pointer to the hw struct
3740 * @seid: seid of the VSI or switching component connected to Physical Port
3741 * @bw_data: Buffer to hold current ETS configuration for the Physical Port
3742 * @cmd_details: pointer to command details structure or NULL
3743 **/
3744i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
3745 u16 seid,
3746 struct i40e_aqc_query_port_ets_config_resp *bw_data,
3747 struct i40e_asq_cmd_details *cmd_details)
3748{
3749 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3750 i40e_aqc_opc_query_port_ets_config,
3751 cmd_details);
3752}
3753
3754/**
3755 * i40e_aq_query_switch_comp_bw_config - Query Switch comp BW configuration
3756 * @hw: pointer to the hw struct
3757 * @seid: seid of the switching component
3758 * @bw_data: Buffer to hold switching component's BW configuration
3759 * @cmd_details: pointer to command details structure or NULL
3760 **/
3761i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
3762 u16 seid,
3763 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
3764 struct i40e_asq_cmd_details *cmd_details)
3765{
3766 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
3767 i40e_aqc_opc_query_switching_comp_bw_config,
3768 cmd_details);
3769}
3770
3771/**
3772 * i40e_validate_filter_settings
3773 * @hw: pointer to the hardware structure
3774 * @settings: Filter control settings
3775 *
3776 * Check and validate the filter control settings passed.
3777 * The function checks for the valid filter/context sizes being
3778 * passed for FCoE and PE.
3779 *
3780 * Returns 0 if the values passed are valid and within
3781 * range else returns an error.
3782 **/
3783static i40e_status i40e_validate_filter_settings(struct i40e_hw *hw,
3784 struct i40e_filter_control_settings *settings)
3785{
3786 u32 fcoe_cntx_size, fcoe_filt_size;
3787 u32 pe_cntx_size, pe_filt_size;
Anjali Singhai Jain467d7292014-05-10 04:49:02 +00003788 u32 fcoe_fmax;
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003789 u32 val;
3790
3791 /* Validate FCoE settings passed */
3792 switch (settings->fcoe_filt_num) {
3793 case I40E_HASH_FILTER_SIZE_1K:
3794 case I40E_HASH_FILTER_SIZE_2K:
3795 case I40E_HASH_FILTER_SIZE_4K:
3796 case I40E_HASH_FILTER_SIZE_8K:
3797 case I40E_HASH_FILTER_SIZE_16K:
3798 case I40E_HASH_FILTER_SIZE_32K:
3799 fcoe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
3800 fcoe_filt_size <<= (u32)settings->fcoe_filt_num;
3801 break;
3802 default:
3803 return I40E_ERR_PARAM;
3804 }
3805
3806 switch (settings->fcoe_cntx_num) {
3807 case I40E_DMA_CNTX_SIZE_512:
3808 case I40E_DMA_CNTX_SIZE_1K:
3809 case I40E_DMA_CNTX_SIZE_2K:
3810 case I40E_DMA_CNTX_SIZE_4K:
3811 fcoe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
3812 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num;
3813 break;
3814 default:
3815 return I40E_ERR_PARAM;
3816 }
3817
3818 /* Validate PE settings passed */
3819 switch (settings->pe_filt_num) {
3820 case I40E_HASH_FILTER_SIZE_1K:
3821 case I40E_HASH_FILTER_SIZE_2K:
3822 case I40E_HASH_FILTER_SIZE_4K:
3823 case I40E_HASH_FILTER_SIZE_8K:
3824 case I40E_HASH_FILTER_SIZE_16K:
3825 case I40E_HASH_FILTER_SIZE_32K:
3826 case I40E_HASH_FILTER_SIZE_64K:
3827 case I40E_HASH_FILTER_SIZE_128K:
3828 case I40E_HASH_FILTER_SIZE_256K:
3829 case I40E_HASH_FILTER_SIZE_512K:
3830 case I40E_HASH_FILTER_SIZE_1M:
3831 pe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
3832 pe_filt_size <<= (u32)settings->pe_filt_num;
3833 break;
3834 default:
3835 return I40E_ERR_PARAM;
3836 }
3837
3838 switch (settings->pe_cntx_num) {
3839 case I40E_DMA_CNTX_SIZE_512:
3840 case I40E_DMA_CNTX_SIZE_1K:
3841 case I40E_DMA_CNTX_SIZE_2K:
3842 case I40E_DMA_CNTX_SIZE_4K:
3843 case I40E_DMA_CNTX_SIZE_8K:
3844 case I40E_DMA_CNTX_SIZE_16K:
3845 case I40E_DMA_CNTX_SIZE_32K:
3846 case I40E_DMA_CNTX_SIZE_64K:
3847 case I40E_DMA_CNTX_SIZE_128K:
3848 case I40E_DMA_CNTX_SIZE_256K:
3849 pe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
3850 pe_cntx_size <<= (u32)settings->pe_cntx_num;
3851 break;
3852 default:
3853 return I40E_ERR_PARAM;
3854 }
3855
3856 /* FCHSIZE + FCDSIZE should not be greater than PMFCOEFMAX */
3857 val = rd32(hw, I40E_GLHMC_FCOEFMAX);
3858 fcoe_fmax = (val & I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_MASK)
3859 >> I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_SHIFT;
3860 if (fcoe_filt_size + fcoe_cntx_size > fcoe_fmax)
3861 return I40E_ERR_INVALID_SIZE;
3862
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003863 return 0;
3864}
3865
3866/**
3867 * i40e_set_filter_control
3868 * @hw: pointer to the hardware structure
3869 * @settings: Filter control settings
3870 *
3871 * Set the Queue Filters for PE/FCoE and enable filters required
3872 * for a single PF. It is expected that these settings are programmed
3873 * at the driver initialization time.
3874 **/
3875i40e_status i40e_set_filter_control(struct i40e_hw *hw,
3876 struct i40e_filter_control_settings *settings)
3877{
3878 i40e_status ret = 0;
3879 u32 hash_lut_size = 0;
3880 u32 val;
3881
3882 if (!settings)
3883 return I40E_ERR_PARAM;
3884
3885 /* Validate the input settings */
3886 ret = i40e_validate_filter_settings(hw, settings);
3887 if (ret)
3888 return ret;
3889
3890 /* Read the PF Queue Filter control register */
Shannon Nelsonf6581372016-02-17 16:12:20 -08003891 val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003892
3893 /* Program required PE hash buckets for the PF */
3894 val &= ~I40E_PFQF_CTL_0_PEHSIZE_MASK;
3895 val |= ((u32)settings->pe_filt_num << I40E_PFQF_CTL_0_PEHSIZE_SHIFT) &
3896 I40E_PFQF_CTL_0_PEHSIZE_MASK;
3897 /* Program required PE contexts for the PF */
3898 val &= ~I40E_PFQF_CTL_0_PEDSIZE_MASK;
3899 val |= ((u32)settings->pe_cntx_num << I40E_PFQF_CTL_0_PEDSIZE_SHIFT) &
3900 I40E_PFQF_CTL_0_PEDSIZE_MASK;
3901
3902 /* Program required FCoE hash buckets for the PF */
3903 val &= ~I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
3904 val |= ((u32)settings->fcoe_filt_num <<
3905 I40E_PFQF_CTL_0_PFFCHSIZE_SHIFT) &
3906 I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
3907 /* Program required FCoE DDP contexts for the PF */
3908 val &= ~I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
3909 val |= ((u32)settings->fcoe_cntx_num <<
3910 I40E_PFQF_CTL_0_PFFCDSIZE_SHIFT) &
3911 I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
3912
3913 /* Program Hash LUT size for the PF */
3914 val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
3915 if (settings->hash_lut_size == I40E_HASH_LUT_SIZE_512)
3916 hash_lut_size = 1;
3917 val |= (hash_lut_size << I40E_PFQF_CTL_0_HASHLUTSIZE_SHIFT) &
3918 I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
3919
3920 /* Enable FDIR, Ethertype and MACVLAN filters for PF and VFs */
3921 if (settings->enable_fdir)
3922 val |= I40E_PFQF_CTL_0_FD_ENA_MASK;
3923 if (settings->enable_ethtype)
3924 val |= I40E_PFQF_CTL_0_ETYPE_ENA_MASK;
3925 if (settings->enable_macvlan)
3926 val |= I40E_PFQF_CTL_0_MACVLAN_ENA_MASK;
3927
Shannon Nelsonf6581372016-02-17 16:12:20 -08003928 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, val);
Jesse Brandeburg56a62fc2013-09-11 08:40:12 +00003929
3930 return 0;
3931}
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003932
3933/**
3934 * i40e_aq_add_rem_control_packet_filter - Add or Remove Control Packet Filter
3935 * @hw: pointer to the hw struct
3936 * @mac_addr: MAC address to use in the filter
3937 * @ethtype: Ethertype to use in the filter
3938 * @flags: Flags that needs to be applied to the filter
3939 * @vsi_seid: seid of the control VSI
3940 * @queue: VSI queue number to send the packet to
3941 * @is_add: Add control packet filter if True else remove
3942 * @stats: Structure to hold information on control filter counts
3943 * @cmd_details: pointer to command details structure or NULL
3944 *
3945 * This command will Add or Remove control packet filter for a control VSI.
3946 * In return it will update the total number of perfect filter count in
3947 * the stats member.
3948 **/
3949i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
3950 u8 *mac_addr, u16 ethtype, u16 flags,
3951 u16 vsi_seid, u16 queue, bool is_add,
3952 struct i40e_control_filter_stats *stats,
3953 struct i40e_asq_cmd_details *cmd_details)
3954{
3955 struct i40e_aq_desc desc;
3956 struct i40e_aqc_add_remove_control_packet_filter *cmd =
3957 (struct i40e_aqc_add_remove_control_packet_filter *)
3958 &desc.params.raw;
3959 struct i40e_aqc_add_remove_control_packet_filter_completion *resp =
3960 (struct i40e_aqc_add_remove_control_packet_filter_completion *)
3961 &desc.params.raw;
3962 i40e_status status;
3963
3964 if (vsi_seid == 0)
3965 return I40E_ERR_PARAM;
3966
3967 if (is_add) {
3968 i40e_fill_default_direct_cmd_desc(&desc,
3969 i40e_aqc_opc_add_control_packet_filter);
3970 cmd->queue = cpu_to_le16(queue);
3971 } else {
3972 i40e_fill_default_direct_cmd_desc(&desc,
3973 i40e_aqc_opc_remove_control_packet_filter);
3974 }
3975
3976 if (mac_addr)
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003977 ether_addr_copy(cmd->mac, mac_addr);
Neerav Parikhafb3ff02014-01-17 15:36:36 -08003978
3979 cmd->etype = cpu_to_le16(ethtype);
3980 cmd->flags = cpu_to_le16(flags);
3981 cmd->seid = cpu_to_le16(vsi_seid);
3982
3983 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3984
3985 if (!status && stats) {
3986 stats->mac_etype_used = le16_to_cpu(resp->mac_etype_used);
3987 stats->etype_used = le16_to_cpu(resp->etype_used);
3988 stats->mac_etype_free = le16_to_cpu(resp->mac_etype_free);
3989 stats->etype_free = le16_to_cpu(resp->etype_free);
3990 }
3991
3992 return status;
3993}
3994
Catherine Sullivand4dfb812013-11-28 06:39:21 +00003995/**
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04003996 * i40e_add_filter_to_drop_tx_flow_control_frames- filter to drop flow control
3997 * @hw: pointer to the hw struct
3998 * @seid: VSI seid to add ethertype filter from
3999 **/
4000#define I40E_FLOW_CONTROL_ETHTYPE 0x8808
4001void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
4002 u16 seid)
4003{
4004 u16 flag = I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC |
4005 I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP |
4006 I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX;
4007 u16 ethtype = I40E_FLOW_CONTROL_ETHTYPE;
4008 i40e_status status;
4009
4010 status = i40e_aq_add_rem_control_packet_filter(hw, NULL, ethtype, flag,
4011 seid, 0, true, NULL,
4012 NULL);
4013 if (status)
4014 hw_dbg(hw, "Ethtype Filter Add failed: Error pruning Tx flow control frames\n");
4015}
4016
4017/**
Greg Rosef4492db2015-02-06 08:52:12 +00004018 * i40e_aq_alternate_read
4019 * @hw: pointer to the hardware structure
4020 * @reg_addr0: address of first dword to be read
4021 * @reg_val0: pointer for data read from 'reg_addr0'
4022 * @reg_addr1: address of second dword to be read
4023 * @reg_val1: pointer for data read from 'reg_addr1'
4024 *
4025 * Read one or two dwords from alternate structure. Fields are indicated
4026 * by 'reg_addr0' and 'reg_addr1' register numbers. If 'reg_val1' pointer
4027 * is not passed then only register at 'reg_addr0' is read.
4028 *
4029 **/
Shannon Nelson37a29732015-02-27 09:15:19 +00004030static i40e_status i40e_aq_alternate_read(struct i40e_hw *hw,
4031 u32 reg_addr0, u32 *reg_val0,
4032 u32 reg_addr1, u32 *reg_val1)
Greg Rosef4492db2015-02-06 08:52:12 +00004033{
4034 struct i40e_aq_desc desc;
4035 struct i40e_aqc_alternate_write *cmd_resp =
4036 (struct i40e_aqc_alternate_write *)&desc.params.raw;
4037 i40e_status status;
4038
4039 if (!reg_val0)
4040 return I40E_ERR_PARAM;
4041
4042 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_alternate_read);
4043 cmd_resp->address0 = cpu_to_le32(reg_addr0);
4044 cmd_resp->address1 = cpu_to_le32(reg_addr1);
4045
4046 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
4047
4048 if (!status) {
4049 *reg_val0 = le32_to_cpu(cmd_resp->data0);
4050
4051 if (reg_val1)
4052 *reg_val1 = le32_to_cpu(cmd_resp->data1);
4053 }
4054
4055 return status;
4056}
4057
4058/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004059 * i40e_aq_resume_port_tx
4060 * @hw: pointer to the hardware structure
4061 * @cmd_details: pointer to command details structure or NULL
4062 *
4063 * Resume port's Tx traffic
4064 **/
4065i40e_status i40e_aq_resume_port_tx(struct i40e_hw *hw,
4066 struct i40e_asq_cmd_details *cmd_details)
4067{
4068 struct i40e_aq_desc desc;
4069 i40e_status status;
4070
4071 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_resume_port_tx);
4072
4073 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4074
4075 return status;
4076}
4077
4078/**
Catherine Sullivand4dfb812013-11-28 06:39:21 +00004079 * i40e_set_pci_config_data - store PCI bus info
4080 * @hw: pointer to hardware structure
4081 * @link_status: the link status word from PCI config space
4082 *
4083 * Stores the PCI bus info (speed, width, type) within the i40e_hw structure
4084 **/
4085void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status)
4086{
4087 hw->bus.type = i40e_bus_type_pci_express;
4088
4089 switch (link_status & PCI_EXP_LNKSTA_NLW) {
4090 case PCI_EXP_LNKSTA_NLW_X1:
4091 hw->bus.width = i40e_bus_width_pcie_x1;
4092 break;
4093 case PCI_EXP_LNKSTA_NLW_X2:
4094 hw->bus.width = i40e_bus_width_pcie_x2;
4095 break;
4096 case PCI_EXP_LNKSTA_NLW_X4:
4097 hw->bus.width = i40e_bus_width_pcie_x4;
4098 break;
4099 case PCI_EXP_LNKSTA_NLW_X8:
4100 hw->bus.width = i40e_bus_width_pcie_x8;
4101 break;
4102 default:
4103 hw->bus.width = i40e_bus_width_unknown;
4104 break;
4105 }
4106
4107 switch (link_status & PCI_EXP_LNKSTA_CLS) {
4108 case PCI_EXP_LNKSTA_CLS_2_5GB:
4109 hw->bus.speed = i40e_bus_speed_2500;
4110 break;
4111 case PCI_EXP_LNKSTA_CLS_5_0GB:
4112 hw->bus.speed = i40e_bus_speed_5000;
4113 break;
4114 case PCI_EXP_LNKSTA_CLS_8_0GB:
4115 hw->bus.speed = i40e_bus_speed_8000;
4116 break;
4117 default:
4118 hw->bus.speed = i40e_bus_speed_unknown;
4119 break;
4120 }
4121}
Greg Rosef4492db2015-02-06 08:52:12 +00004122
4123/**
Jesse Brandeburg3169c322015-04-07 19:45:37 -04004124 * i40e_aq_debug_dump
4125 * @hw: pointer to the hardware structure
4126 * @cluster_id: specific cluster to dump
4127 * @table_id: table id within cluster
4128 * @start_index: index of line in the block to read
4129 * @buff_size: dump buffer size
4130 * @buff: dump buffer
4131 * @ret_buff_size: actual buffer size returned
4132 * @ret_next_table: next block to read
4133 * @ret_next_index: next index to read
4134 *
4135 * Dump internal FW/HW data for debug purposes.
4136 *
4137 **/
4138i40e_status i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
4139 u8 table_id, u32 start_index, u16 buff_size,
4140 void *buff, u16 *ret_buff_size,
4141 u8 *ret_next_table, u32 *ret_next_index,
4142 struct i40e_asq_cmd_details *cmd_details)
4143{
4144 struct i40e_aq_desc desc;
4145 struct i40e_aqc_debug_dump_internals *cmd =
4146 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
4147 struct i40e_aqc_debug_dump_internals *resp =
4148 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
4149 i40e_status status;
4150
4151 if (buff_size == 0 || !buff)
4152 return I40E_ERR_PARAM;
4153
4154 i40e_fill_default_direct_cmd_desc(&desc,
4155 i40e_aqc_opc_debug_dump_internals);
4156 /* Indirect Command */
4157 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
4158 if (buff_size > I40E_AQ_LARGE_BUF)
4159 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
4160
4161 cmd->cluster_id = cluster_id;
4162 cmd->table_id = table_id;
4163 cmd->idx = cpu_to_le32(start_index);
4164
4165 desc.datalen = cpu_to_le16(buff_size);
4166
4167 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4168 if (!status) {
4169 if (ret_buff_size)
4170 *ret_buff_size = le16_to_cpu(desc.datalen);
4171 if (ret_next_table)
4172 *ret_next_table = resp->table_id;
4173 if (ret_next_index)
4174 *ret_next_index = le32_to_cpu(resp->idx);
4175 }
4176
4177 return status;
4178}
4179
4180/**
Greg Rosef4492db2015-02-06 08:52:12 +00004181 * i40e_read_bw_from_alt_ram
4182 * @hw: pointer to the hardware structure
4183 * @max_bw: pointer for max_bw read
4184 * @min_bw: pointer for min_bw read
4185 * @min_valid: pointer for bool that is true if min_bw is a valid value
4186 * @max_valid: pointer for bool that is true if max_bw is a valid value
4187 *
4188 * Read bw from the alternate ram for the given pf
4189 **/
4190i40e_status i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
4191 u32 *max_bw, u32 *min_bw,
4192 bool *min_valid, bool *max_valid)
4193{
4194 i40e_status status;
4195 u32 max_bw_addr, min_bw_addr;
4196
4197 /* Calculate the address of the min/max bw registers */
4198 max_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
4199 I40E_ALT_STRUCT_MAX_BW_OFFSET +
4200 (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
4201 min_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
4202 I40E_ALT_STRUCT_MIN_BW_OFFSET +
4203 (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
4204
4205 /* Read the bandwidths from alt ram */
4206 status = i40e_aq_alternate_read(hw, max_bw_addr, max_bw,
4207 min_bw_addr, min_bw);
4208
4209 if (*min_bw & I40E_ALT_BW_VALID_MASK)
4210 *min_valid = true;
4211 else
4212 *min_valid = false;
4213
4214 if (*max_bw & I40E_ALT_BW_VALID_MASK)
4215 *max_valid = true;
4216 else
4217 *max_valid = false;
4218
4219 return status;
4220}
4221
4222/**
4223 * i40e_aq_configure_partition_bw
4224 * @hw: pointer to the hardware structure
4225 * @bw_data: Buffer holding valid pfs and bw limits
4226 * @cmd_details: pointer to command details
4227 *
4228 * Configure partitions guaranteed/max bw
4229 **/
4230i40e_status i40e_aq_configure_partition_bw(struct i40e_hw *hw,
4231 struct i40e_aqc_configure_partition_bw_data *bw_data,
4232 struct i40e_asq_cmd_details *cmd_details)
4233{
4234 i40e_status status;
4235 struct i40e_aq_desc desc;
4236 u16 bwd_size = sizeof(*bw_data);
4237
4238 i40e_fill_default_direct_cmd_desc(&desc,
4239 i40e_aqc_opc_configure_partition_bw);
4240
4241 /* Indirect command */
4242 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
4243 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
4244
4245 if (bwd_size > I40E_AQ_LARGE_BUF)
4246 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
4247
4248 desc.datalen = cpu_to_le16(bwd_size);
4249
4250 status = i40e_asq_send_command(hw, &desc, bw_data, bwd_size,
4251 cmd_details);
4252
4253 return status;
4254}
Carolyn Wybornyfd077cd2016-02-17 16:12:11 -08004255
4256/**
4257 * i40e_read_phy_register
4258 * @hw: pointer to the HW structure
4259 * @page: registers page number
4260 * @reg: register address in the page
4261 * @phy_adr: PHY address on MDIO interface
4262 * @value: PHY register value
4263 *
4264 * Reads specified PHY register value
4265 **/
4266i40e_status i40e_read_phy_register(struct i40e_hw *hw,
4267 u8 page, u16 reg, u8 phy_addr,
4268 u16 *value)
4269{
4270 i40e_status status = I40E_ERR_TIMEOUT;
4271 u32 command = 0;
4272 u16 retry = 1000;
4273 u8 port_num = hw->func_caps.mdio_port_num;
4274
4275 command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
4276 (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4277 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4278 (I40E_MDIO_OPCODE_ADDRESS) |
4279 (I40E_MDIO_STCODE) |
4280 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4281 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4282 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4283 do {
4284 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4285 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4286 status = 0;
4287 break;
4288 }
4289 usleep_range(10, 20);
4290 retry--;
4291 } while (retry);
4292
4293 if (status) {
4294 i40e_debug(hw, I40E_DEBUG_PHY,
4295 "PHY: Can't write command to external PHY.\n");
4296 goto phy_read_end;
4297 }
4298
4299 command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4300 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4301 (I40E_MDIO_OPCODE_READ) |
4302 (I40E_MDIO_STCODE) |
4303 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4304 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4305 status = I40E_ERR_TIMEOUT;
4306 retry = 1000;
4307 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4308 do {
4309 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4310 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4311 status = 0;
4312 break;
4313 }
4314 usleep_range(10, 20);
4315 retry--;
4316 } while (retry);
4317
4318 if (!status) {
4319 command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
4320 *value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
4321 I40E_GLGEN_MSRWD_MDIRDDATA_SHIFT;
4322 } else {
4323 i40e_debug(hw, I40E_DEBUG_PHY,
4324 "PHY: Can't read register value from external PHY.\n");
4325 }
4326
4327phy_read_end:
4328 return status;
4329}
4330
4331/**
4332 * i40e_write_phy_register
4333 * @hw: pointer to the HW structure
4334 * @page: registers page number
4335 * @reg: register address in the page
4336 * @phy_adr: PHY address on MDIO interface
4337 * @value: PHY register value
4338 *
4339 * Writes value to specified PHY register
4340 **/
4341i40e_status i40e_write_phy_register(struct i40e_hw *hw,
4342 u8 page, u16 reg, u8 phy_addr,
4343 u16 value)
4344{
4345 i40e_status status = I40E_ERR_TIMEOUT;
4346 u32 command = 0;
4347 u16 retry = 1000;
4348 u8 port_num = hw->func_caps.mdio_port_num;
4349
4350 command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
4351 (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4352 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4353 (I40E_MDIO_OPCODE_ADDRESS) |
4354 (I40E_MDIO_STCODE) |
4355 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4356 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4357 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4358 do {
4359 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4360 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4361 status = 0;
4362 break;
4363 }
4364 usleep_range(10, 20);
4365 retry--;
4366 } while (retry);
4367 if (status) {
4368 i40e_debug(hw, I40E_DEBUG_PHY,
4369 "PHY: Can't write command to external PHY.\n");
4370 goto phy_write_end;
4371 }
4372
4373 command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
4374 wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
4375
4376 command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
4377 (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
4378 (I40E_MDIO_OPCODE_WRITE) |
4379 (I40E_MDIO_STCODE) |
4380 (I40E_GLGEN_MSCA_MDICMD_MASK) |
4381 (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
4382 status = I40E_ERR_TIMEOUT;
4383 retry = 1000;
4384 wr32(hw, I40E_GLGEN_MSCA(port_num), command);
4385 do {
4386 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
4387 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
4388 status = 0;
4389 break;
4390 }
4391 usleep_range(10, 20);
4392 retry--;
4393 } while (retry);
4394
4395phy_write_end:
4396 return status;
4397}
4398
4399/**
4400 * i40e_get_phy_address
4401 * @hw: pointer to the HW structure
4402 * @dev_num: PHY port num that address we want
4403 * @phy_addr: Returned PHY address
4404 *
4405 * Gets PHY address for current port
4406 **/
4407u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num)
4408{
4409 u8 port_num = hw->func_caps.mdio_port_num;
4410 u32 reg_val = rd32(hw, I40E_GLGEN_MDIO_I2C_SEL(port_num));
4411
4412 return (u8)(reg_val >> ((dev_num + 1) * 5)) & 0x1f;
4413}
4414
4415/**
4416 * i40e_blink_phy_led
4417 * @hw: pointer to the HW structure
4418 * @time: time how long led will blinks in secs
4419 * @interval: gap between LED on and off in msecs
4420 *
4421 * Blinks PHY link LED
4422 **/
4423i40e_status i40e_blink_phy_link_led(struct i40e_hw *hw,
4424 u32 time, u32 interval)
4425{
4426 i40e_status status = 0;
4427 u32 i;
4428 u16 led_ctl;
4429 u16 gpio_led_port;
4430 u16 led_reg;
4431 u16 led_addr = I40E_PHY_LED_PROV_REG_1;
4432 u8 phy_addr = 0;
4433 u8 port_num;
4434
4435 i = rd32(hw, I40E_PFGEN_PORTNUM);
4436 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4437 phy_addr = i40e_get_phy_address(hw, port_num);
4438
4439 for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
4440 led_addr++) {
4441 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4442 led_addr, phy_addr, &led_reg);
4443 if (status)
4444 goto phy_blinking_end;
4445 led_ctl = led_reg;
4446 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
4447 led_reg = 0;
4448 status = i40e_write_phy_register(hw,
4449 I40E_PHY_COM_REG_PAGE,
4450 led_addr, phy_addr,
4451 led_reg);
4452 if (status)
4453 goto phy_blinking_end;
4454 break;
4455 }
4456 }
4457
4458 if (time > 0 && interval > 0) {
4459 for (i = 0; i < time * 1000; i += interval) {
4460 status = i40e_read_phy_register(hw,
4461 I40E_PHY_COM_REG_PAGE,
4462 led_addr, phy_addr,
4463 &led_reg);
4464 if (status)
4465 goto restore_config;
4466 if (led_reg & I40E_PHY_LED_MANUAL_ON)
4467 led_reg = 0;
4468 else
4469 led_reg = I40E_PHY_LED_MANUAL_ON;
4470 status = i40e_write_phy_register(hw,
4471 I40E_PHY_COM_REG_PAGE,
4472 led_addr, phy_addr,
4473 led_reg);
4474 if (status)
4475 goto restore_config;
4476 msleep(interval);
4477 }
4478 }
4479
4480restore_config:
4481 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4482 phy_addr, led_ctl);
4483
4484phy_blinking_end:
4485 return status;
4486}
4487
4488/**
4489 * i40e_led_get_phy - return current on/off mode
4490 * @hw: pointer to the hw struct
4491 * @led_addr: address of led register to use
4492 * @val: original value of register to use
4493 *
4494 **/
4495i40e_status i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
4496 u16 *val)
4497{
4498 i40e_status status = 0;
4499 u16 gpio_led_port;
4500 u8 phy_addr = 0;
4501 u16 reg_val;
4502 u16 temp_addr;
4503 u8 port_num;
4504 u32 i;
4505
4506 temp_addr = I40E_PHY_LED_PROV_REG_1;
4507 i = rd32(hw, I40E_PFGEN_PORTNUM);
4508 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4509 phy_addr = i40e_get_phy_address(hw, port_num);
4510
4511 for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
4512 temp_addr++) {
4513 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4514 temp_addr, phy_addr, &reg_val);
4515 if (status)
4516 return status;
4517 *val = reg_val;
4518 if (reg_val & I40E_PHY_LED_LINK_MODE_MASK) {
4519 *led_addr = temp_addr;
4520 break;
4521 }
4522 }
4523 return status;
4524}
4525
4526/**
4527 * i40e_led_set_phy
4528 * @hw: pointer to the HW structure
4529 * @on: true or false
4530 * @mode: original val plus bit for set or ignore
4531 * Set led's on or off when controlled by the PHY
4532 *
4533 **/
4534i40e_status i40e_led_set_phy(struct i40e_hw *hw, bool on,
4535 u16 led_addr, u32 mode)
4536{
4537 i40e_status status = 0;
4538 u16 led_ctl = 0;
4539 u16 led_reg = 0;
4540 u8 phy_addr = 0;
4541 u8 port_num;
4542 u32 i;
4543
4544 i = rd32(hw, I40E_PFGEN_PORTNUM);
4545 port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
4546 phy_addr = i40e_get_phy_address(hw, port_num);
4547
4548 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4549 phy_addr, &led_reg);
4550 if (status)
4551 return status;
4552 led_ctl = led_reg;
4553 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
4554 led_reg = 0;
4555 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4556 led_addr, phy_addr, led_reg);
4557 if (status)
4558 return status;
4559 }
4560 status = i40e_read_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4561 led_addr, phy_addr, &led_reg);
4562 if (status)
4563 goto restore_config;
4564 if (on)
4565 led_reg = I40E_PHY_LED_MANUAL_ON;
4566 else
4567 led_reg = 0;
4568 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE,
4569 led_addr, phy_addr, led_reg);
4570 if (status)
4571 goto restore_config;
4572 if (mode & I40E_PHY_LED_MODE_ORIG) {
4573 led_ctl = (mode & I40E_PHY_LED_MODE_MASK);
4574 status = i40e_write_phy_register(hw,
4575 I40E_PHY_COM_REG_PAGE,
4576 led_addr, phy_addr, led_ctl);
4577 }
4578 return status;
4579restore_config:
4580 status = i40e_write_phy_register(hw, I40E_PHY_COM_REG_PAGE, led_addr,
4581 phy_addr, led_ctl);
4582 return status;
4583}
Shannon Nelsonf6581372016-02-17 16:12:20 -08004584
4585/**
4586 * i40e_aq_rx_ctl_read_register - use FW to read from an Rx control register
4587 * @hw: pointer to the hw struct
4588 * @reg_addr: register address
4589 * @reg_val: ptr to register value
4590 * @cmd_details: pointer to command details structure or NULL
4591 *
4592 * Use the firmware to read the Rx control register,
4593 * especially useful if the Rx unit is under heavy pressure
4594 **/
4595i40e_status i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
4596 u32 reg_addr, u32 *reg_val,
4597 struct i40e_asq_cmd_details *cmd_details)
4598{
4599 struct i40e_aq_desc desc;
4600 struct i40e_aqc_rx_ctl_reg_read_write *cmd_resp =
4601 (struct i40e_aqc_rx_ctl_reg_read_write *)&desc.params.raw;
4602 i40e_status status;
4603
4604 if (!reg_val)
4605 return I40E_ERR_PARAM;
4606
4607 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_rx_ctl_reg_read);
4608
4609 cmd_resp->address = cpu_to_le32(reg_addr);
4610
4611 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4612
4613 if (status == 0)
4614 *reg_val = le32_to_cpu(cmd_resp->value);
4615
4616 return status;
4617}
4618
4619/**
4620 * i40e_read_rx_ctl - read from an Rx control register
4621 * @hw: pointer to the hw struct
4622 * @reg_addr: register address
4623 **/
4624u32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr)
4625{
4626 i40e_status status = 0;
4627 bool use_register;
4628 int retry = 5;
4629 u32 val = 0;
4630
4631 use_register = (hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver < 5);
4632 if (!use_register) {
4633do_retry:
4634 status = i40e_aq_rx_ctl_read_register(hw, reg_addr, &val, NULL);
4635 if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN && retry) {
4636 usleep_range(1000, 2000);
4637 retry--;
4638 goto do_retry;
4639 }
4640 }
4641
4642 /* if the AQ access failed, try the old-fashioned way */
4643 if (status || use_register)
4644 val = rd32(hw, reg_addr);
4645
4646 return val;
4647}
4648
4649/**
4650 * i40e_aq_rx_ctl_write_register
4651 * @hw: pointer to the hw struct
4652 * @reg_addr: register address
4653 * @reg_val: register value
4654 * @cmd_details: pointer to command details structure or NULL
4655 *
4656 * Use the firmware to write to an Rx control register,
4657 * especially useful if the Rx unit is under heavy pressure
4658 **/
4659i40e_status i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
4660 u32 reg_addr, u32 reg_val,
4661 struct i40e_asq_cmd_details *cmd_details)
4662{
4663 struct i40e_aq_desc desc;
4664 struct i40e_aqc_rx_ctl_reg_read_write *cmd =
4665 (struct i40e_aqc_rx_ctl_reg_read_write *)&desc.params.raw;
4666 i40e_status status;
4667
4668 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_rx_ctl_reg_write);
4669
4670 cmd->address = cpu_to_le32(reg_addr);
4671 cmd->value = cpu_to_le32(reg_val);
4672
4673 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4674
4675 return status;
4676}
4677
4678/**
4679 * i40e_write_rx_ctl - write to an Rx control register
4680 * @hw: pointer to the hw struct
4681 * @reg_addr: register address
4682 * @reg_val: register value
4683 **/
4684void i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val)
4685{
4686 i40e_status status = 0;
4687 bool use_register;
4688 int retry = 5;
4689
4690 use_register = (hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver < 5);
4691 if (!use_register) {
4692do_retry:
4693 status = i40e_aq_rx_ctl_write_register(hw, reg_addr,
4694 reg_val, NULL);
4695 if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN && retry) {
4696 usleep_range(1000, 2000);
4697 retry--;
4698 goto do_retry;
4699 }
4700 }
4701
4702 /* if the AQ access failed, try the old-fashioned way */
4703 if (status || use_register)
4704 wr32(hw, reg_addr, reg_val);
4705}