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