net/i40e/base: replace license text with SPDX tag
[dpdk.git] / drivers / net / i40e / base / i40e_common.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2018
3  */
4
5 #include "i40e_type.h"
6 #include "i40e_adminq.h"
7 #include "i40e_prototype.h"
8 #include "virtchnl.h"
9
10 /**
11  * i40e_set_mac_type - Sets MAC type
12  * @hw: pointer to the HW structure
13  *
14  * This function sets the mac type of the adapter based on the
15  * vendor ID and device ID stored in the hw structure.
16  **/
17 #if defined(INTEGRATED_VF) || defined(VF_DRIVER)
18 enum i40e_status_code i40e_set_mac_type(struct i40e_hw *hw)
19 #else
20 STATIC enum i40e_status_code i40e_set_mac_type(struct i40e_hw *hw)
21 #endif
22 {
23         enum i40e_status_code status = I40E_SUCCESS;
24
25         DEBUGFUNC("i40e_set_mac_type\n");
26
27         if (hw->vendor_id == I40E_INTEL_VENDOR_ID) {
28                 switch (hw->device_id) {
29                 case I40E_DEV_ID_SFP_XL710:
30                 case I40E_DEV_ID_QEMU:
31                 case I40E_DEV_ID_KX_B:
32                 case I40E_DEV_ID_KX_C:
33                 case I40E_DEV_ID_QSFP_A:
34                 case I40E_DEV_ID_QSFP_B:
35                 case I40E_DEV_ID_QSFP_C:
36                 case I40E_DEV_ID_10G_BASE_T:
37                 case I40E_DEV_ID_10G_BASE_T4:
38                 case I40E_DEV_ID_20G_KR2:
39                 case I40E_DEV_ID_20G_KR2_A:
40                 case I40E_DEV_ID_25G_B:
41                 case I40E_DEV_ID_25G_SFP28:
42                         hw->mac.type = I40E_MAC_XL710;
43                         break;
44 #ifdef X722_A0_SUPPORT
45                 case I40E_DEV_ID_X722_A0:
46 #endif
47                 case I40E_DEV_ID_KX_X722:
48                 case I40E_DEV_ID_QSFP_X722:
49                 case I40E_DEV_ID_SFP_X722:
50                 case I40E_DEV_ID_1G_BASE_T_X722:
51                 case I40E_DEV_ID_10G_BASE_T_X722:
52                 case I40E_DEV_ID_SFP_I_X722:
53                         hw->mac.type = I40E_MAC_X722;
54                         break;
55 #if defined(INTEGRATED_VF) || defined(VF_DRIVER)
56                 case I40E_DEV_ID_X722_VF:
57 #ifdef X722_A0_SUPPORT
58                 case I40E_DEV_ID_X722_A0_VF:
59 #endif
60                         hw->mac.type = I40E_MAC_X722_VF;
61                         break;
62 #endif /* INTEGRATED_VF || VF_DRIVER */
63 #if defined(INTEGRATED_VF) || defined(VF_DRIVER)
64                 case I40E_DEV_ID_VF:
65                 case I40E_DEV_ID_VF_HV:
66                 case I40E_DEV_ID_ADAPTIVE_VF:
67                         hw->mac.type = I40E_MAC_VF;
68                         break;
69 #endif
70                 default:
71                         hw->mac.type = I40E_MAC_GENERIC;
72                         break;
73                 }
74         } else {
75                 status = I40E_ERR_DEVICE_NOT_SUPPORTED;
76         }
77
78         DEBUGOUT2("i40e_set_mac_type found mac: %d, returns: %d\n",
79                   hw->mac.type, status);
80         return status;
81 }
82
83 /**
84  * i40e_aq_str - convert AQ err code to a string
85  * @hw: pointer to the HW structure
86  * @aq_err: the AQ error code to convert
87  **/
88 const char *i40e_aq_str(struct i40e_hw *hw, enum i40e_admin_queue_err aq_err)
89 {
90         switch (aq_err) {
91         case I40E_AQ_RC_OK:
92                 return "OK";
93         case I40E_AQ_RC_EPERM:
94                 return "I40E_AQ_RC_EPERM";
95         case I40E_AQ_RC_ENOENT:
96                 return "I40E_AQ_RC_ENOENT";
97         case I40E_AQ_RC_ESRCH:
98                 return "I40E_AQ_RC_ESRCH";
99         case I40E_AQ_RC_EINTR:
100                 return "I40E_AQ_RC_EINTR";
101         case I40E_AQ_RC_EIO:
102                 return "I40E_AQ_RC_EIO";
103         case I40E_AQ_RC_ENXIO:
104                 return "I40E_AQ_RC_ENXIO";
105         case I40E_AQ_RC_E2BIG:
106                 return "I40E_AQ_RC_E2BIG";
107         case I40E_AQ_RC_EAGAIN:
108                 return "I40E_AQ_RC_EAGAIN";
109         case I40E_AQ_RC_ENOMEM:
110                 return "I40E_AQ_RC_ENOMEM";
111         case I40E_AQ_RC_EACCES:
112                 return "I40E_AQ_RC_EACCES";
113         case I40E_AQ_RC_EFAULT:
114                 return "I40E_AQ_RC_EFAULT";
115         case I40E_AQ_RC_EBUSY:
116                 return "I40E_AQ_RC_EBUSY";
117         case I40E_AQ_RC_EEXIST:
118                 return "I40E_AQ_RC_EEXIST";
119         case I40E_AQ_RC_EINVAL:
120                 return "I40E_AQ_RC_EINVAL";
121         case I40E_AQ_RC_ENOTTY:
122                 return "I40E_AQ_RC_ENOTTY";
123         case I40E_AQ_RC_ENOSPC:
124                 return "I40E_AQ_RC_ENOSPC";
125         case I40E_AQ_RC_ENOSYS:
126                 return "I40E_AQ_RC_ENOSYS";
127         case I40E_AQ_RC_ERANGE:
128                 return "I40E_AQ_RC_ERANGE";
129         case I40E_AQ_RC_EFLUSHED:
130                 return "I40E_AQ_RC_EFLUSHED";
131         case I40E_AQ_RC_BAD_ADDR:
132                 return "I40E_AQ_RC_BAD_ADDR";
133         case I40E_AQ_RC_EMODE:
134                 return "I40E_AQ_RC_EMODE";
135         case I40E_AQ_RC_EFBIG:
136                 return "I40E_AQ_RC_EFBIG";
137         }
138
139         snprintf(hw->err_str, sizeof(hw->err_str), "%d", aq_err);
140         return hw->err_str;
141 }
142
143 /**
144  * i40e_stat_str - convert status err code to a string
145  * @hw: pointer to the HW structure
146  * @stat_err: the status error code to convert
147  **/
148 const char *i40e_stat_str(struct i40e_hw *hw, enum i40e_status_code stat_err)
149 {
150         switch (stat_err) {
151         case I40E_SUCCESS:
152                 return "OK";
153         case I40E_ERR_NVM:
154                 return "I40E_ERR_NVM";
155         case I40E_ERR_NVM_CHECKSUM:
156                 return "I40E_ERR_NVM_CHECKSUM";
157         case I40E_ERR_PHY:
158                 return "I40E_ERR_PHY";
159         case I40E_ERR_CONFIG:
160                 return "I40E_ERR_CONFIG";
161         case I40E_ERR_PARAM:
162                 return "I40E_ERR_PARAM";
163         case I40E_ERR_MAC_TYPE:
164                 return "I40E_ERR_MAC_TYPE";
165         case I40E_ERR_UNKNOWN_PHY:
166                 return "I40E_ERR_UNKNOWN_PHY";
167         case I40E_ERR_LINK_SETUP:
168                 return "I40E_ERR_LINK_SETUP";
169         case I40E_ERR_ADAPTER_STOPPED:
170                 return "I40E_ERR_ADAPTER_STOPPED";
171         case I40E_ERR_INVALID_MAC_ADDR:
172                 return "I40E_ERR_INVALID_MAC_ADDR";
173         case I40E_ERR_DEVICE_NOT_SUPPORTED:
174                 return "I40E_ERR_DEVICE_NOT_SUPPORTED";
175         case I40E_ERR_MASTER_REQUESTS_PENDING:
176                 return "I40E_ERR_MASTER_REQUESTS_PENDING";
177         case I40E_ERR_INVALID_LINK_SETTINGS:
178                 return "I40E_ERR_INVALID_LINK_SETTINGS";
179         case I40E_ERR_AUTONEG_NOT_COMPLETE:
180                 return "I40E_ERR_AUTONEG_NOT_COMPLETE";
181         case I40E_ERR_RESET_FAILED:
182                 return "I40E_ERR_RESET_FAILED";
183         case I40E_ERR_SWFW_SYNC:
184                 return "I40E_ERR_SWFW_SYNC";
185         case I40E_ERR_NO_AVAILABLE_VSI:
186                 return "I40E_ERR_NO_AVAILABLE_VSI";
187         case I40E_ERR_NO_MEMORY:
188                 return "I40E_ERR_NO_MEMORY";
189         case I40E_ERR_BAD_PTR:
190                 return "I40E_ERR_BAD_PTR";
191         case I40E_ERR_RING_FULL:
192                 return "I40E_ERR_RING_FULL";
193         case I40E_ERR_INVALID_PD_ID:
194                 return "I40E_ERR_INVALID_PD_ID";
195         case I40E_ERR_INVALID_QP_ID:
196                 return "I40E_ERR_INVALID_QP_ID";
197         case I40E_ERR_INVALID_CQ_ID:
198                 return "I40E_ERR_INVALID_CQ_ID";
199         case I40E_ERR_INVALID_CEQ_ID:
200                 return "I40E_ERR_INVALID_CEQ_ID";
201         case I40E_ERR_INVALID_AEQ_ID:
202                 return "I40E_ERR_INVALID_AEQ_ID";
203         case I40E_ERR_INVALID_SIZE:
204                 return "I40E_ERR_INVALID_SIZE";
205         case I40E_ERR_INVALID_ARP_INDEX:
206                 return "I40E_ERR_INVALID_ARP_INDEX";
207         case I40E_ERR_INVALID_FPM_FUNC_ID:
208                 return "I40E_ERR_INVALID_FPM_FUNC_ID";
209         case I40E_ERR_QP_INVALID_MSG_SIZE:
210                 return "I40E_ERR_QP_INVALID_MSG_SIZE";
211         case I40E_ERR_QP_TOOMANY_WRS_POSTED:
212                 return "I40E_ERR_QP_TOOMANY_WRS_POSTED";
213         case I40E_ERR_INVALID_FRAG_COUNT:
214                 return "I40E_ERR_INVALID_FRAG_COUNT";
215         case I40E_ERR_QUEUE_EMPTY:
216                 return "I40E_ERR_QUEUE_EMPTY";
217         case I40E_ERR_INVALID_ALIGNMENT:
218                 return "I40E_ERR_INVALID_ALIGNMENT";
219         case I40E_ERR_FLUSHED_QUEUE:
220                 return "I40E_ERR_FLUSHED_QUEUE";
221         case I40E_ERR_INVALID_PUSH_PAGE_INDEX:
222                 return "I40E_ERR_INVALID_PUSH_PAGE_INDEX";
223         case I40E_ERR_INVALID_IMM_DATA_SIZE:
224                 return "I40E_ERR_INVALID_IMM_DATA_SIZE";
225         case I40E_ERR_TIMEOUT:
226                 return "I40E_ERR_TIMEOUT";
227         case I40E_ERR_OPCODE_MISMATCH:
228                 return "I40E_ERR_OPCODE_MISMATCH";
229         case I40E_ERR_CQP_COMPL_ERROR:
230                 return "I40E_ERR_CQP_COMPL_ERROR";
231         case I40E_ERR_INVALID_VF_ID:
232                 return "I40E_ERR_INVALID_VF_ID";
233         case I40E_ERR_INVALID_HMCFN_ID:
234                 return "I40E_ERR_INVALID_HMCFN_ID";
235         case I40E_ERR_BACKING_PAGE_ERROR:
236                 return "I40E_ERR_BACKING_PAGE_ERROR";
237         case I40E_ERR_NO_PBLCHUNKS_AVAILABLE:
238                 return "I40E_ERR_NO_PBLCHUNKS_AVAILABLE";
239         case I40E_ERR_INVALID_PBLE_INDEX:
240                 return "I40E_ERR_INVALID_PBLE_INDEX";
241         case I40E_ERR_INVALID_SD_INDEX:
242                 return "I40E_ERR_INVALID_SD_INDEX";
243         case I40E_ERR_INVALID_PAGE_DESC_INDEX:
244                 return "I40E_ERR_INVALID_PAGE_DESC_INDEX";
245         case I40E_ERR_INVALID_SD_TYPE:
246                 return "I40E_ERR_INVALID_SD_TYPE";
247         case I40E_ERR_MEMCPY_FAILED:
248                 return "I40E_ERR_MEMCPY_FAILED";
249         case I40E_ERR_INVALID_HMC_OBJ_INDEX:
250                 return "I40E_ERR_INVALID_HMC_OBJ_INDEX";
251         case I40E_ERR_INVALID_HMC_OBJ_COUNT:
252                 return "I40E_ERR_INVALID_HMC_OBJ_COUNT";
253         case I40E_ERR_INVALID_SRQ_ARM_LIMIT:
254                 return "I40E_ERR_INVALID_SRQ_ARM_LIMIT";
255         case I40E_ERR_SRQ_ENABLED:
256                 return "I40E_ERR_SRQ_ENABLED";
257         case I40E_ERR_ADMIN_QUEUE_ERROR:
258                 return "I40E_ERR_ADMIN_QUEUE_ERROR";
259         case I40E_ERR_ADMIN_QUEUE_TIMEOUT:
260                 return "I40E_ERR_ADMIN_QUEUE_TIMEOUT";
261         case I40E_ERR_BUF_TOO_SHORT:
262                 return "I40E_ERR_BUF_TOO_SHORT";
263         case I40E_ERR_ADMIN_QUEUE_FULL:
264                 return "I40E_ERR_ADMIN_QUEUE_FULL";
265         case I40E_ERR_ADMIN_QUEUE_NO_WORK:
266                 return "I40E_ERR_ADMIN_QUEUE_NO_WORK";
267         case I40E_ERR_BAD_IWARP_CQE:
268                 return "I40E_ERR_BAD_IWARP_CQE";
269         case I40E_ERR_NVM_BLANK_MODE:
270                 return "I40E_ERR_NVM_BLANK_MODE";
271         case I40E_ERR_NOT_IMPLEMENTED:
272                 return "I40E_ERR_NOT_IMPLEMENTED";
273         case I40E_ERR_PE_DOORBELL_NOT_ENABLED:
274                 return "I40E_ERR_PE_DOORBELL_NOT_ENABLED";
275         case I40E_ERR_DIAG_TEST_FAILED:
276                 return "I40E_ERR_DIAG_TEST_FAILED";
277         case I40E_ERR_NOT_READY:
278                 return "I40E_ERR_NOT_READY";
279         case I40E_NOT_SUPPORTED:
280                 return "I40E_NOT_SUPPORTED";
281         case I40E_ERR_FIRMWARE_API_VERSION:
282                 return "I40E_ERR_FIRMWARE_API_VERSION";
283         case I40E_ERR_ADMIN_QUEUE_CRITICAL_ERROR:
284                 return "I40E_ERR_ADMIN_QUEUE_CRITICAL_ERROR";
285         }
286
287         snprintf(hw->err_str, sizeof(hw->err_str), "%d", stat_err);
288         return hw->err_str;
289 }
290
291 /**
292  * i40e_debug_aq
293  * @hw: debug mask related to admin queue
294  * @mask: debug mask
295  * @desc: pointer to admin queue descriptor
296  * @buffer: pointer to command buffer
297  * @buf_len: max length of buffer
298  *
299  * Dumps debug log about adminq command with descriptor contents.
300  **/
301 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask, void *desc,
302                    void *buffer, u16 buf_len)
303 {
304         struct i40e_aq_desc *aq_desc = (struct i40e_aq_desc *)desc;
305         u8 *buf = (u8 *)buffer;
306         u16 len;
307         u16 i = 0;
308
309         if ((!(mask & hw->debug_mask)) || (desc == NULL))
310                 return;
311
312         len = LE16_TO_CPU(aq_desc->datalen);
313
314         i40e_debug(hw, mask,
315                    "AQ CMD: opcode 0x%04X, flags 0x%04X, datalen 0x%04X, retval 0x%04X\n",
316                    LE16_TO_CPU(aq_desc->opcode),
317                    LE16_TO_CPU(aq_desc->flags),
318                    LE16_TO_CPU(aq_desc->datalen),
319                    LE16_TO_CPU(aq_desc->retval));
320         i40e_debug(hw, mask, "\tcookie (h,l) 0x%08X 0x%08X\n",
321                    LE32_TO_CPU(aq_desc->cookie_high),
322                    LE32_TO_CPU(aq_desc->cookie_low));
323         i40e_debug(hw, mask, "\tparam (0,1)  0x%08X 0x%08X\n",
324                    LE32_TO_CPU(aq_desc->params.internal.param0),
325                    LE32_TO_CPU(aq_desc->params.internal.param1));
326         i40e_debug(hw, mask, "\taddr (h,l)   0x%08X 0x%08X\n",
327                    LE32_TO_CPU(aq_desc->params.external.addr_high),
328                    LE32_TO_CPU(aq_desc->params.external.addr_low));
329
330         if ((buffer != NULL) && (aq_desc->datalen != 0)) {
331                 i40e_debug(hw, mask, "AQ CMD Buffer:\n");
332                 if (buf_len < len)
333                         len = buf_len;
334                 /* write the full 16-byte chunks */
335                 for (i = 0; i < (len - 16); i += 16)
336                         i40e_debug(hw, mask,
337                                    "\t0x%04X  %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n",
338                                    i, buf[i], buf[i+1], buf[i+2], buf[i+3],
339                                    buf[i+4], buf[i+5], buf[i+6], buf[i+7],
340                                    buf[i+8], buf[i+9], buf[i+10], buf[i+11],
341                                    buf[i+12], buf[i+13], buf[i+14], buf[i+15]);
342                 /* the most we could have left is 16 bytes, pad with zeros */
343                 if (i < len) {
344                         char d_buf[16];
345                         int j, i_sav;
346
347                         i_sav = i;
348                         memset(d_buf, 0, sizeof(d_buf));
349                         for (j = 0; i < len; j++, i++)
350                                 d_buf[j] = buf[i];
351                         i40e_debug(hw, mask,
352                                    "\t0x%04X  %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n",
353                                    i_sav, d_buf[0], d_buf[1], d_buf[2], d_buf[3],
354                                    d_buf[4], d_buf[5], d_buf[6], d_buf[7],
355                                    d_buf[8], d_buf[9], d_buf[10], d_buf[11],
356                                    d_buf[12], d_buf[13], d_buf[14], d_buf[15]);
357                 }
358         }
359 }
360
361 /**
362  * i40e_check_asq_alive
363  * @hw: pointer to the hw struct
364  *
365  * Returns true if Queue is enabled else false.
366  **/
367 bool i40e_check_asq_alive(struct i40e_hw *hw)
368 {
369         if (hw->aq.asq.len)
370 #ifdef PF_DRIVER
371 #ifdef INTEGRATED_VF
372                 if (!i40e_is_vf(hw))
373                         return !!(rd32(hw, hw->aq.asq.len) &
374                                 I40E_PF_ATQLEN_ATQENABLE_MASK);
375 #else
376                 return !!(rd32(hw, hw->aq.asq.len) &
377                         I40E_PF_ATQLEN_ATQENABLE_MASK);
378 #endif /* INTEGRATED_VF */
379 #endif /* PF_DRIVER */
380 #ifdef VF_DRIVER
381 #ifdef INTEGRATED_VF
382                 if (i40e_is_vf(hw))
383                         return !!(rd32(hw, hw->aq.asq.len) &
384                                 I40E_VF_ATQLEN1_ATQENABLE_MASK);
385 #else
386                 return !!(rd32(hw, hw->aq.asq.len) &
387                         I40E_VF_ATQLEN1_ATQENABLE_MASK);
388 #endif /* INTEGRATED_VF */
389 #endif /* VF_DRIVER */
390         return false;
391 }
392
393 /**
394  * i40e_aq_queue_shutdown
395  * @hw: pointer to the hw struct
396  * @unloading: is the driver unloading itself
397  *
398  * Tell the Firmware that we're shutting down the AdminQ and whether
399  * or not the driver is unloading as well.
400  **/
401 enum i40e_status_code i40e_aq_queue_shutdown(struct i40e_hw *hw,
402                                              bool unloading)
403 {
404         struct i40e_aq_desc desc;
405         struct i40e_aqc_queue_shutdown *cmd =
406                 (struct i40e_aqc_queue_shutdown *)&desc.params.raw;
407         enum i40e_status_code status;
408
409         i40e_fill_default_direct_cmd_desc(&desc,
410                                           i40e_aqc_opc_queue_shutdown);
411
412         if (unloading)
413                 cmd->driver_unloading = CPU_TO_LE32(I40E_AQ_DRIVER_UNLOADING);
414         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
415
416         return status;
417 }
418
419 /**
420  * i40e_aq_get_set_rss_lut
421  * @hw: pointer to the hardware structure
422  * @vsi_id: vsi fw index
423  * @pf_lut: for PF table set true, for VSI table set false
424  * @lut: pointer to the lut buffer provided by the caller
425  * @lut_size: size of the lut buffer
426  * @set: set true to set the table, false to get the table
427  *
428  * Internal function to get or set RSS look up table
429  **/
430 STATIC enum i40e_status_code i40e_aq_get_set_rss_lut(struct i40e_hw *hw,
431                                                      u16 vsi_id, bool pf_lut,
432                                                      u8 *lut, u16 lut_size,
433                                                      bool set)
434 {
435         enum i40e_status_code status;
436         struct i40e_aq_desc desc;
437         struct i40e_aqc_get_set_rss_lut *cmd_resp =
438                    (struct i40e_aqc_get_set_rss_lut *)&desc.params.raw;
439
440         if (set)
441                 i40e_fill_default_direct_cmd_desc(&desc,
442                                                   i40e_aqc_opc_set_rss_lut);
443         else
444                 i40e_fill_default_direct_cmd_desc(&desc,
445                                                   i40e_aqc_opc_get_rss_lut);
446
447         /* Indirect command */
448         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
449         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
450
451         cmd_resp->vsi_id =
452                         CPU_TO_LE16((u16)((vsi_id <<
453                                           I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT) &
454                                           I40E_AQC_SET_RSS_LUT_VSI_ID_MASK));
455         cmd_resp->vsi_id |= CPU_TO_LE16((u16)I40E_AQC_SET_RSS_LUT_VSI_VALID);
456
457         if (pf_lut)
458                 cmd_resp->flags |= CPU_TO_LE16((u16)
459                                         ((I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF <<
460                                         I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT) &
461                                         I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK));
462         else
463                 cmd_resp->flags |= CPU_TO_LE16((u16)
464                                         ((I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI <<
465                                         I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT) &
466                                         I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK));
467
468         status = i40e_asq_send_command(hw, &desc, lut, lut_size, NULL);
469
470         return status;
471 }
472
473 /**
474  * i40e_aq_get_rss_lut
475  * @hw: pointer to the hardware structure
476  * @vsi_id: vsi fw index
477  * @pf_lut: for PF table set true, for VSI table set false
478  * @lut: pointer to the lut buffer provided by the caller
479  * @lut_size: size of the lut buffer
480  *
481  * get the RSS lookup table, PF or VSI type
482  **/
483 enum i40e_status_code i40e_aq_get_rss_lut(struct i40e_hw *hw, u16 vsi_id,
484                                           bool pf_lut, u8 *lut, u16 lut_size)
485 {
486         return i40e_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size,
487                                        false);
488 }
489
490 /**
491  * i40e_aq_set_rss_lut
492  * @hw: pointer to the hardware structure
493  * @vsi_id: vsi fw index
494  * @pf_lut: for PF table set true, for VSI table set false
495  * @lut: pointer to the lut buffer provided by the caller
496  * @lut_size: size of the lut buffer
497  *
498  * set the RSS lookup table, PF or VSI type
499  **/
500 enum i40e_status_code i40e_aq_set_rss_lut(struct i40e_hw *hw, u16 vsi_id,
501                                           bool pf_lut, u8 *lut, u16 lut_size)
502 {
503         return i40e_aq_get_set_rss_lut(hw, vsi_id, pf_lut, lut, lut_size, true);
504 }
505
506 /**
507  * i40e_aq_get_set_rss_key
508  * @hw: pointer to the hw struct
509  * @vsi_id: vsi fw index
510  * @key: pointer to key info struct
511  * @set: set true to set the key, false to get the key
512  *
513  * get the RSS key per VSI
514  **/
515 STATIC enum i40e_status_code i40e_aq_get_set_rss_key(struct i40e_hw *hw,
516                                       u16 vsi_id,
517                                       struct i40e_aqc_get_set_rss_key_data *key,
518                                       bool set)
519 {
520         enum i40e_status_code status;
521         struct i40e_aq_desc desc;
522         struct i40e_aqc_get_set_rss_key *cmd_resp =
523                         (struct i40e_aqc_get_set_rss_key *)&desc.params.raw;
524         u16 key_size = sizeof(struct i40e_aqc_get_set_rss_key_data);
525
526         if (set)
527                 i40e_fill_default_direct_cmd_desc(&desc,
528                                                   i40e_aqc_opc_set_rss_key);
529         else
530                 i40e_fill_default_direct_cmd_desc(&desc,
531                                                   i40e_aqc_opc_get_rss_key);
532
533         /* Indirect command */
534         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
535         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
536
537         cmd_resp->vsi_id =
538                         CPU_TO_LE16((u16)((vsi_id <<
539                                           I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT) &
540                                           I40E_AQC_SET_RSS_KEY_VSI_ID_MASK));
541         cmd_resp->vsi_id |= CPU_TO_LE16((u16)I40E_AQC_SET_RSS_KEY_VSI_VALID);
542
543         status = i40e_asq_send_command(hw, &desc, key, key_size, NULL);
544
545         return status;
546 }
547
548 /**
549  * i40e_aq_get_rss_key
550  * @hw: pointer to the hw struct
551  * @vsi_id: vsi fw index
552  * @key: pointer to key info struct
553  *
554  **/
555 enum i40e_status_code i40e_aq_get_rss_key(struct i40e_hw *hw,
556                                       u16 vsi_id,
557                                       struct i40e_aqc_get_set_rss_key_data *key)
558 {
559         return i40e_aq_get_set_rss_key(hw, vsi_id, key, false);
560 }
561
562 /**
563  * i40e_aq_set_rss_key
564  * @hw: pointer to the hw struct
565  * @vsi_id: vsi fw index
566  * @key: pointer to key info struct
567  *
568  * set the RSS key per VSI
569  **/
570 enum i40e_status_code i40e_aq_set_rss_key(struct i40e_hw *hw,
571                                       u16 vsi_id,
572                                       struct i40e_aqc_get_set_rss_key_data *key)
573 {
574         return i40e_aq_get_set_rss_key(hw, vsi_id, key, true);
575 }
576
577 /* The i40e_ptype_lookup table is used to convert from the 8-bit ptype in the
578  * hardware to a bit-field that can be used by SW to more easily determine the
579  * packet type.
580  *
581  * Macros are used to shorten the table lines and make this table human
582  * readable.
583  *
584  * We store the PTYPE in the top byte of the bit field - this is just so that
585  * we can check that the table doesn't have a row missing, as the index into
586  * the table should be the PTYPE.
587  *
588  * Typical work flow:
589  *
590  * IF NOT i40e_ptype_lookup[ptype].known
591  * THEN
592  *      Packet is unknown
593  * ELSE IF i40e_ptype_lookup[ptype].outer_ip == I40E_RX_PTYPE_OUTER_IP
594  *      Use the rest of the fields to look at the tunnels, inner protocols, etc
595  * ELSE
596  *      Use the enum i40e_rx_l2_ptype to decode the packet type
597  * ENDIF
598  */
599
600 /* macro to make the table lines short */
601 #define I40E_PTT(PTYPE, OUTER_IP, OUTER_IP_VER, OUTER_FRAG, T, TE, TEF, I, PL)\
602         {       PTYPE, \
603                 1, \
604                 I40E_RX_PTYPE_OUTER_##OUTER_IP, \
605                 I40E_RX_PTYPE_OUTER_##OUTER_IP_VER, \
606                 I40E_RX_PTYPE_##OUTER_FRAG, \
607                 I40E_RX_PTYPE_TUNNEL_##T, \
608                 I40E_RX_PTYPE_TUNNEL_END_##TE, \
609                 I40E_RX_PTYPE_##TEF, \
610                 I40E_RX_PTYPE_INNER_PROT_##I, \
611                 I40E_RX_PTYPE_PAYLOAD_LAYER_##PL }
612
613 #define I40E_PTT_UNUSED_ENTRY(PTYPE) \
614                 { PTYPE, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
615
616 /* shorter macros makes the table fit but are terse */
617 #define I40E_RX_PTYPE_NOF               I40E_RX_PTYPE_NOT_FRAG
618 #define I40E_RX_PTYPE_FRG               I40E_RX_PTYPE_FRAG
619 #define I40E_RX_PTYPE_INNER_PROT_TS     I40E_RX_PTYPE_INNER_PROT_TIMESYNC
620
621 /* Lookup table mapping the HW PTYPE to the bit field for decoding */
622 struct i40e_rx_ptype_decoded i40e_ptype_lookup[] = {
623         /* L2 Packet types */
624         I40E_PTT_UNUSED_ENTRY(0),
625         I40E_PTT(1,  L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
626         I40E_PTT(2,  L2, NONE, NOF, NONE, NONE, NOF, TS,   PAY2),
627         I40E_PTT(3,  L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
628         I40E_PTT_UNUSED_ENTRY(4),
629         I40E_PTT_UNUSED_ENTRY(5),
630         I40E_PTT(6,  L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
631         I40E_PTT(7,  L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
632         I40E_PTT_UNUSED_ENTRY(8),
633         I40E_PTT_UNUSED_ENTRY(9),
634         I40E_PTT(10, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
635         I40E_PTT(11, L2, NONE, NOF, NONE, NONE, NOF, NONE, NONE),
636         I40E_PTT(12, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
637         I40E_PTT(13, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
638         I40E_PTT(14, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
639         I40E_PTT(15, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
640         I40E_PTT(16, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
641         I40E_PTT(17, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
642         I40E_PTT(18, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
643         I40E_PTT(19, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
644         I40E_PTT(20, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
645         I40E_PTT(21, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
646
647         /* Non Tunneled IPv4 */
648         I40E_PTT(22, IP, IPV4, FRG, NONE, NONE, NOF, NONE, PAY3),
649         I40E_PTT(23, IP, IPV4, NOF, NONE, NONE, NOF, NONE, PAY3),
650         I40E_PTT(24, IP, IPV4, NOF, NONE, NONE, NOF, UDP,  PAY4),
651         I40E_PTT_UNUSED_ENTRY(25),
652         I40E_PTT(26, IP, IPV4, NOF, NONE, NONE, NOF, TCP,  PAY4),
653         I40E_PTT(27, IP, IPV4, NOF, NONE, NONE, NOF, SCTP, PAY4),
654         I40E_PTT(28, IP, IPV4, NOF, NONE, NONE, NOF, ICMP, PAY4),
655
656         /* IPv4 --> IPv4 */
657         I40E_PTT(29, IP, IPV4, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
658         I40E_PTT(30, IP, IPV4, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
659         I40E_PTT(31, IP, IPV4, NOF, IP_IP, IPV4, NOF, UDP,  PAY4),
660         I40E_PTT_UNUSED_ENTRY(32),
661         I40E_PTT(33, IP, IPV4, NOF, IP_IP, IPV4, NOF, TCP,  PAY4),
662         I40E_PTT(34, IP, IPV4, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
663         I40E_PTT(35, IP, IPV4, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
664
665         /* IPv4 --> IPv6 */
666         I40E_PTT(36, IP, IPV4, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
667         I40E_PTT(37, IP, IPV4, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
668         I40E_PTT(38, IP, IPV4, NOF, IP_IP, IPV6, NOF, UDP,  PAY4),
669         I40E_PTT_UNUSED_ENTRY(39),
670         I40E_PTT(40, IP, IPV4, NOF, IP_IP, IPV6, NOF, TCP,  PAY4),
671         I40E_PTT(41, IP, IPV4, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
672         I40E_PTT(42, IP, IPV4, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
673
674         /* IPv4 --> GRE/NAT */
675         I40E_PTT(43, IP, IPV4, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
676
677         /* IPv4 --> GRE/NAT --> IPv4 */
678         I40E_PTT(44, IP, IPV4, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
679         I40E_PTT(45, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
680         I40E_PTT(46, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, UDP,  PAY4),
681         I40E_PTT_UNUSED_ENTRY(47),
682         I40E_PTT(48, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, TCP,  PAY4),
683         I40E_PTT(49, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
684         I40E_PTT(50, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
685
686         /* IPv4 --> GRE/NAT --> IPv6 */
687         I40E_PTT(51, IP, IPV4, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
688         I40E_PTT(52, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
689         I40E_PTT(53, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, UDP,  PAY4),
690         I40E_PTT_UNUSED_ENTRY(54),
691         I40E_PTT(55, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, TCP,  PAY4),
692         I40E_PTT(56, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
693         I40E_PTT(57, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
694
695         /* IPv4 --> GRE/NAT --> MAC */
696         I40E_PTT(58, IP, IPV4, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
697
698         /* IPv4 --> GRE/NAT --> MAC --> IPv4 */
699         I40E_PTT(59, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
700         I40E_PTT(60, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
701         I40E_PTT(61, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP,  PAY4),
702         I40E_PTT_UNUSED_ENTRY(62),
703         I40E_PTT(63, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP,  PAY4),
704         I40E_PTT(64, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
705         I40E_PTT(65, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
706
707         /* IPv4 --> GRE/NAT -> MAC --> IPv6 */
708         I40E_PTT(66, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
709         I40E_PTT(67, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
710         I40E_PTT(68, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP,  PAY4),
711         I40E_PTT_UNUSED_ENTRY(69),
712         I40E_PTT(70, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP,  PAY4),
713         I40E_PTT(71, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
714         I40E_PTT(72, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
715
716         /* IPv4 --> GRE/NAT --> MAC/VLAN */
717         I40E_PTT(73, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
718
719         /* IPv4 ---> GRE/NAT -> MAC/VLAN --> IPv4 */
720         I40E_PTT(74, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
721         I40E_PTT(75, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
722         I40E_PTT(76, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP,  PAY4),
723         I40E_PTT_UNUSED_ENTRY(77),
724         I40E_PTT(78, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP,  PAY4),
725         I40E_PTT(79, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
726         I40E_PTT(80, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
727
728         /* IPv4 -> GRE/NAT -> MAC/VLAN --> IPv6 */
729         I40E_PTT(81, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
730         I40E_PTT(82, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
731         I40E_PTT(83, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP,  PAY4),
732         I40E_PTT_UNUSED_ENTRY(84),
733         I40E_PTT(85, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP,  PAY4),
734         I40E_PTT(86, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
735         I40E_PTT(87, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
736
737         /* Non Tunneled IPv6 */
738         I40E_PTT(88, IP, IPV6, FRG, NONE, NONE, NOF, NONE, PAY3),
739         I40E_PTT(89, IP, IPV6, NOF, NONE, NONE, NOF, NONE, PAY3),
740         I40E_PTT(90, IP, IPV6, NOF, NONE, NONE, NOF, UDP,  PAY4),
741         I40E_PTT_UNUSED_ENTRY(91),
742         I40E_PTT(92, IP, IPV6, NOF, NONE, NONE, NOF, TCP,  PAY4),
743         I40E_PTT(93, IP, IPV6, NOF, NONE, NONE, NOF, SCTP, PAY4),
744         I40E_PTT(94, IP, IPV6, NOF, NONE, NONE, NOF, ICMP, PAY4),
745
746         /* IPv6 --> IPv4 */
747         I40E_PTT(95,  IP, IPV6, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
748         I40E_PTT(96,  IP, IPV6, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
749         I40E_PTT(97,  IP, IPV6, NOF, IP_IP, IPV4, NOF, UDP,  PAY4),
750         I40E_PTT_UNUSED_ENTRY(98),
751         I40E_PTT(99,  IP, IPV6, NOF, IP_IP, IPV4, NOF, TCP,  PAY4),
752         I40E_PTT(100, IP, IPV6, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
753         I40E_PTT(101, IP, IPV6, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
754
755         /* IPv6 --> IPv6 */
756         I40E_PTT(102, IP, IPV6, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
757         I40E_PTT(103, IP, IPV6, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
758         I40E_PTT(104, IP, IPV6, NOF, IP_IP, IPV6, NOF, UDP,  PAY4),
759         I40E_PTT_UNUSED_ENTRY(105),
760         I40E_PTT(106, IP, IPV6, NOF, IP_IP, IPV6, NOF, TCP,  PAY4),
761         I40E_PTT(107, IP, IPV6, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
762         I40E_PTT(108, IP, IPV6, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
763
764         /* IPv6 --> GRE/NAT */
765         I40E_PTT(109, IP, IPV6, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
766
767         /* IPv6 --> GRE/NAT -> IPv4 */
768         I40E_PTT(110, IP, IPV6, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
769         I40E_PTT(111, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
770         I40E_PTT(112, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, UDP,  PAY4),
771         I40E_PTT_UNUSED_ENTRY(113),
772         I40E_PTT(114, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, TCP,  PAY4),
773         I40E_PTT(115, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
774         I40E_PTT(116, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
775
776         /* IPv6 --> GRE/NAT -> IPv6 */
777         I40E_PTT(117, IP, IPV6, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
778         I40E_PTT(118, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
779         I40E_PTT(119, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, UDP,  PAY4),
780         I40E_PTT_UNUSED_ENTRY(120),
781         I40E_PTT(121, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, TCP,  PAY4),
782         I40E_PTT(122, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
783         I40E_PTT(123, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
784
785         /* IPv6 --> GRE/NAT -> MAC */
786         I40E_PTT(124, IP, IPV6, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
787
788         /* IPv6 --> GRE/NAT -> MAC -> IPv4 */
789         I40E_PTT(125, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
790         I40E_PTT(126, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
791         I40E_PTT(127, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP,  PAY4),
792         I40E_PTT_UNUSED_ENTRY(128),
793         I40E_PTT(129, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP,  PAY4),
794         I40E_PTT(130, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
795         I40E_PTT(131, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
796
797         /* IPv6 --> GRE/NAT -> MAC -> IPv6 */
798         I40E_PTT(132, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
799         I40E_PTT(133, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
800         I40E_PTT(134, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP,  PAY4),
801         I40E_PTT_UNUSED_ENTRY(135),
802         I40E_PTT(136, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP,  PAY4),
803         I40E_PTT(137, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
804         I40E_PTT(138, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
805
806         /* IPv6 --> GRE/NAT -> MAC/VLAN */
807         I40E_PTT(139, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
808
809         /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv4 */
810         I40E_PTT(140, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
811         I40E_PTT(141, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
812         I40E_PTT(142, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP,  PAY4),
813         I40E_PTT_UNUSED_ENTRY(143),
814         I40E_PTT(144, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP,  PAY4),
815         I40E_PTT(145, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
816         I40E_PTT(146, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
817
818         /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv6 */
819         I40E_PTT(147, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
820         I40E_PTT(148, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
821         I40E_PTT(149, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP,  PAY4),
822         I40E_PTT_UNUSED_ENTRY(150),
823         I40E_PTT(151, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP,  PAY4),
824         I40E_PTT(152, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
825         I40E_PTT(153, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
826
827         /* unused entries */
828         I40E_PTT_UNUSED_ENTRY(154),
829         I40E_PTT_UNUSED_ENTRY(155),
830         I40E_PTT_UNUSED_ENTRY(156),
831         I40E_PTT_UNUSED_ENTRY(157),
832         I40E_PTT_UNUSED_ENTRY(158),
833         I40E_PTT_UNUSED_ENTRY(159),
834
835         I40E_PTT_UNUSED_ENTRY(160),
836         I40E_PTT_UNUSED_ENTRY(161),
837         I40E_PTT_UNUSED_ENTRY(162),
838         I40E_PTT_UNUSED_ENTRY(163),
839         I40E_PTT_UNUSED_ENTRY(164),
840         I40E_PTT_UNUSED_ENTRY(165),
841         I40E_PTT_UNUSED_ENTRY(166),
842         I40E_PTT_UNUSED_ENTRY(167),
843         I40E_PTT_UNUSED_ENTRY(168),
844         I40E_PTT_UNUSED_ENTRY(169),
845
846         I40E_PTT_UNUSED_ENTRY(170),
847         I40E_PTT_UNUSED_ENTRY(171),
848         I40E_PTT_UNUSED_ENTRY(172),
849         I40E_PTT_UNUSED_ENTRY(173),
850         I40E_PTT_UNUSED_ENTRY(174),
851         I40E_PTT_UNUSED_ENTRY(175),
852         I40E_PTT_UNUSED_ENTRY(176),
853         I40E_PTT_UNUSED_ENTRY(177),
854         I40E_PTT_UNUSED_ENTRY(178),
855         I40E_PTT_UNUSED_ENTRY(179),
856
857         I40E_PTT_UNUSED_ENTRY(180),
858         I40E_PTT_UNUSED_ENTRY(181),
859         I40E_PTT_UNUSED_ENTRY(182),
860         I40E_PTT_UNUSED_ENTRY(183),
861         I40E_PTT_UNUSED_ENTRY(184),
862         I40E_PTT_UNUSED_ENTRY(185),
863         I40E_PTT_UNUSED_ENTRY(186),
864         I40E_PTT_UNUSED_ENTRY(187),
865         I40E_PTT_UNUSED_ENTRY(188),
866         I40E_PTT_UNUSED_ENTRY(189),
867
868         I40E_PTT_UNUSED_ENTRY(190),
869         I40E_PTT_UNUSED_ENTRY(191),
870         I40E_PTT_UNUSED_ENTRY(192),
871         I40E_PTT_UNUSED_ENTRY(193),
872         I40E_PTT_UNUSED_ENTRY(194),
873         I40E_PTT_UNUSED_ENTRY(195),
874         I40E_PTT_UNUSED_ENTRY(196),
875         I40E_PTT_UNUSED_ENTRY(197),
876         I40E_PTT_UNUSED_ENTRY(198),
877         I40E_PTT_UNUSED_ENTRY(199),
878
879         I40E_PTT_UNUSED_ENTRY(200),
880         I40E_PTT_UNUSED_ENTRY(201),
881         I40E_PTT_UNUSED_ENTRY(202),
882         I40E_PTT_UNUSED_ENTRY(203),
883         I40E_PTT_UNUSED_ENTRY(204),
884         I40E_PTT_UNUSED_ENTRY(205),
885         I40E_PTT_UNUSED_ENTRY(206),
886         I40E_PTT_UNUSED_ENTRY(207),
887         I40E_PTT_UNUSED_ENTRY(208),
888         I40E_PTT_UNUSED_ENTRY(209),
889
890         I40E_PTT_UNUSED_ENTRY(210),
891         I40E_PTT_UNUSED_ENTRY(211),
892         I40E_PTT_UNUSED_ENTRY(212),
893         I40E_PTT_UNUSED_ENTRY(213),
894         I40E_PTT_UNUSED_ENTRY(214),
895         I40E_PTT_UNUSED_ENTRY(215),
896         I40E_PTT_UNUSED_ENTRY(216),
897         I40E_PTT_UNUSED_ENTRY(217),
898         I40E_PTT_UNUSED_ENTRY(218),
899         I40E_PTT_UNUSED_ENTRY(219),
900
901         I40E_PTT_UNUSED_ENTRY(220),
902         I40E_PTT_UNUSED_ENTRY(221),
903         I40E_PTT_UNUSED_ENTRY(222),
904         I40E_PTT_UNUSED_ENTRY(223),
905         I40E_PTT_UNUSED_ENTRY(224),
906         I40E_PTT_UNUSED_ENTRY(225),
907         I40E_PTT_UNUSED_ENTRY(226),
908         I40E_PTT_UNUSED_ENTRY(227),
909         I40E_PTT_UNUSED_ENTRY(228),
910         I40E_PTT_UNUSED_ENTRY(229),
911
912         I40E_PTT_UNUSED_ENTRY(230),
913         I40E_PTT_UNUSED_ENTRY(231),
914         I40E_PTT_UNUSED_ENTRY(232),
915         I40E_PTT_UNUSED_ENTRY(233),
916         I40E_PTT_UNUSED_ENTRY(234),
917         I40E_PTT_UNUSED_ENTRY(235),
918         I40E_PTT_UNUSED_ENTRY(236),
919         I40E_PTT_UNUSED_ENTRY(237),
920         I40E_PTT_UNUSED_ENTRY(238),
921         I40E_PTT_UNUSED_ENTRY(239),
922
923         I40E_PTT_UNUSED_ENTRY(240),
924         I40E_PTT_UNUSED_ENTRY(241),
925         I40E_PTT_UNUSED_ENTRY(242),
926         I40E_PTT_UNUSED_ENTRY(243),
927         I40E_PTT_UNUSED_ENTRY(244),
928         I40E_PTT_UNUSED_ENTRY(245),
929         I40E_PTT_UNUSED_ENTRY(246),
930         I40E_PTT_UNUSED_ENTRY(247),
931         I40E_PTT_UNUSED_ENTRY(248),
932         I40E_PTT_UNUSED_ENTRY(249),
933
934         I40E_PTT_UNUSED_ENTRY(250),
935         I40E_PTT_UNUSED_ENTRY(251),
936         I40E_PTT_UNUSED_ENTRY(252),
937         I40E_PTT_UNUSED_ENTRY(253),
938         I40E_PTT_UNUSED_ENTRY(254),
939         I40E_PTT_UNUSED_ENTRY(255)
940 };
941
942
943 /**
944  * i40e_validate_mac_addr - Validate unicast MAC address
945  * @mac_addr: pointer to MAC address
946  *
947  * Tests a MAC address to ensure it is a valid Individual Address
948  **/
949 enum i40e_status_code i40e_validate_mac_addr(u8 *mac_addr)
950 {
951         enum i40e_status_code status = I40E_SUCCESS;
952
953         DEBUGFUNC("i40e_validate_mac_addr");
954
955         /* Broadcast addresses ARE multicast addresses
956          * Make sure it is not a multicast address
957          * Reject the zero address
958          */
959         if (I40E_IS_MULTICAST(mac_addr) ||
960             (mac_addr[0] == 0 && mac_addr[1] == 0 && mac_addr[2] == 0 &&
961               mac_addr[3] == 0 && mac_addr[4] == 0 && mac_addr[5] == 0))
962                 status = I40E_ERR_INVALID_MAC_ADDR;
963
964         return status;
965 }
966 #ifdef PF_DRIVER
967
968 /**
969  * i40e_init_shared_code - Initialize the shared code
970  * @hw: pointer to hardware structure
971  *
972  * This assigns the MAC type and PHY code and inits the NVM.
973  * Does not touch the hardware. This function must be called prior to any
974  * other function in the shared code. The i40e_hw structure should be
975  * memset to 0 prior to calling this function.  The following fields in
976  * hw structure should be filled in prior to calling this function:
977  * hw_addr, back, device_id, vendor_id, subsystem_device_id,
978  * subsystem_vendor_id, and revision_id
979  **/
980 enum i40e_status_code i40e_init_shared_code(struct i40e_hw *hw)
981 {
982         enum i40e_status_code status = I40E_SUCCESS;
983         u32 port, ari, func_rid;
984
985         DEBUGFUNC("i40e_init_shared_code");
986
987         i40e_set_mac_type(hw);
988
989         switch (hw->mac.type) {
990         case I40E_MAC_XL710:
991         case I40E_MAC_X722:
992                 break;
993         default:
994                 return I40E_ERR_DEVICE_NOT_SUPPORTED;
995         }
996
997         hw->phy.get_link_info = true;
998
999         /* Determine port number and PF number*/
1000         port = (rd32(hw, I40E_PFGEN_PORTNUM) & I40E_PFGEN_PORTNUM_PORT_NUM_MASK)
1001                                            >> I40E_PFGEN_PORTNUM_PORT_NUM_SHIFT;
1002         hw->port = (u8)port;
1003         ari = (rd32(hw, I40E_GLPCI_CAPSUP) & I40E_GLPCI_CAPSUP_ARI_EN_MASK) >>
1004                                                  I40E_GLPCI_CAPSUP_ARI_EN_SHIFT;
1005         func_rid = rd32(hw, I40E_PF_FUNC_RID);
1006         if (ari)
1007                 hw->pf_id = (u8)(func_rid & 0xff);
1008         else
1009                 hw->pf_id = (u8)(func_rid & 0x7);
1010
1011         if (hw->mac.type == I40E_MAC_X722)
1012                 hw->flags |= I40E_HW_FLAG_AQ_SRCTL_ACCESS_ENABLE |
1013                              I40E_HW_FLAG_NVM_READ_REQUIRES_LOCK;
1014
1015         status = i40e_init_nvm(hw);
1016         return status;
1017 }
1018
1019 /**
1020  * i40e_aq_mac_address_read - Retrieve the MAC addresses
1021  * @hw: pointer to the hw struct
1022  * @flags: a return indicator of what addresses were added to the addr store
1023  * @addrs: the requestor's mac addr store
1024  * @cmd_details: pointer to command details structure or NULL
1025  **/
1026 STATIC enum i40e_status_code i40e_aq_mac_address_read(struct i40e_hw *hw,
1027                                    u16 *flags,
1028                                    struct i40e_aqc_mac_address_read_data *addrs,
1029                                    struct i40e_asq_cmd_details *cmd_details)
1030 {
1031         struct i40e_aq_desc desc;
1032         struct i40e_aqc_mac_address_read *cmd_data =
1033                 (struct i40e_aqc_mac_address_read *)&desc.params.raw;
1034         enum i40e_status_code status;
1035
1036         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_mac_address_read);
1037         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_BUF);
1038
1039         status = i40e_asq_send_command(hw, &desc, addrs,
1040                                        sizeof(*addrs), cmd_details);
1041         *flags = LE16_TO_CPU(cmd_data->command_flags);
1042
1043         return status;
1044 }
1045
1046 /**
1047  * i40e_aq_mac_address_write - Change the MAC addresses
1048  * @hw: pointer to the hw struct
1049  * @flags: indicates which MAC to be written
1050  * @mac_addr: address to write
1051  * @cmd_details: pointer to command details structure or NULL
1052  **/
1053 enum i40e_status_code i40e_aq_mac_address_write(struct i40e_hw *hw,
1054                                     u16 flags, u8 *mac_addr,
1055                                     struct i40e_asq_cmd_details *cmd_details)
1056 {
1057         struct i40e_aq_desc desc;
1058         struct i40e_aqc_mac_address_write *cmd_data =
1059                 (struct i40e_aqc_mac_address_write *)&desc.params.raw;
1060         enum i40e_status_code status;
1061
1062         i40e_fill_default_direct_cmd_desc(&desc,
1063                                           i40e_aqc_opc_mac_address_write);
1064         cmd_data->command_flags = CPU_TO_LE16(flags);
1065         cmd_data->mac_sah = CPU_TO_LE16((u16)mac_addr[0] << 8 | mac_addr[1]);
1066         cmd_data->mac_sal = CPU_TO_LE32(((u32)mac_addr[2] << 24) |
1067                                         ((u32)mac_addr[3] << 16) |
1068                                         ((u32)mac_addr[4] << 8) |
1069                                         mac_addr[5]);
1070
1071         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1072
1073         return status;
1074 }
1075
1076 /**
1077  * i40e_get_mac_addr - get MAC address
1078  * @hw: pointer to the HW structure
1079  * @mac_addr: pointer to MAC address
1080  *
1081  * Reads the adapter's MAC address from register
1082  **/
1083 enum i40e_status_code i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1084 {
1085         struct i40e_aqc_mac_address_read_data addrs;
1086         enum i40e_status_code status;
1087         u16 flags = 0;
1088
1089         status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1090
1091         if (flags & I40E_AQC_LAN_ADDR_VALID)
1092                 i40e_memcpy(mac_addr, &addrs.pf_lan_mac, sizeof(addrs.pf_lan_mac),
1093                         I40E_NONDMA_TO_NONDMA);
1094
1095         return status;
1096 }
1097
1098 /**
1099  * i40e_get_port_mac_addr - get Port MAC address
1100  * @hw: pointer to the HW structure
1101  * @mac_addr: pointer to Port MAC address
1102  *
1103  * Reads the adapter's Port MAC address
1104  **/
1105 enum i40e_status_code i40e_get_port_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
1106 {
1107         struct i40e_aqc_mac_address_read_data addrs;
1108         enum i40e_status_code status;
1109         u16 flags = 0;
1110
1111         status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1112         if (status)
1113                 return status;
1114
1115         if (flags & I40E_AQC_PORT_ADDR_VALID)
1116                 i40e_memcpy(mac_addr, &addrs.port_mac, sizeof(addrs.port_mac),
1117                         I40E_NONDMA_TO_NONDMA);
1118         else
1119                 status = I40E_ERR_INVALID_MAC_ADDR;
1120
1121         return status;
1122 }
1123
1124 /**
1125  * i40e_pre_tx_queue_cfg - pre tx queue configure
1126  * @hw: pointer to the HW structure
1127  * @queue: target pf queue index
1128  * @enable: state change request
1129  *
1130  * Handles hw requirement to indicate intention to enable
1131  * or disable target queue.
1132  **/
1133 void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable)
1134 {
1135         u32 abs_queue_idx = hw->func_caps.base_queue + queue;
1136         u32 reg_block = 0;
1137         u32 reg_val;
1138
1139         if (abs_queue_idx >= 128) {
1140                 reg_block = abs_queue_idx / 128;
1141                 abs_queue_idx %= 128;
1142         }
1143
1144         reg_val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1145         reg_val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1146         reg_val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1147
1148         if (enable)
1149                 reg_val |= I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK;
1150         else
1151                 reg_val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1152
1153         wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), reg_val);
1154 }
1155
1156 /**
1157  * i40e_get_san_mac_addr - get SAN MAC address
1158  * @hw: pointer to the HW structure
1159  * @mac_addr: pointer to SAN MAC address
1160  *
1161  * Reads the adapter's SAN MAC address from NVM
1162  **/
1163 enum i40e_status_code i40e_get_san_mac_addr(struct i40e_hw *hw,
1164                                             u8 *mac_addr)
1165 {
1166         struct i40e_aqc_mac_address_read_data addrs;
1167         enum i40e_status_code status;
1168         u16 flags = 0;
1169
1170         status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
1171         if (status)
1172                 return status;
1173
1174         if (flags & I40E_AQC_SAN_ADDR_VALID)
1175                 i40e_memcpy(mac_addr, &addrs.pf_san_mac, sizeof(addrs.pf_san_mac),
1176                         I40E_NONDMA_TO_NONDMA);
1177         else
1178                 status = I40E_ERR_INVALID_MAC_ADDR;
1179
1180         return status;
1181 }
1182
1183 /**
1184  *  i40e_read_pba_string - Reads part number string from EEPROM
1185  *  @hw: pointer to hardware structure
1186  *  @pba_num: stores the part number string from the EEPROM
1187  *  @pba_num_size: part number string buffer length
1188  *
1189  *  Reads the part number string from the EEPROM.
1190  **/
1191 enum i40e_status_code i40e_read_pba_string(struct i40e_hw *hw, u8 *pba_num,
1192                                             u32 pba_num_size)
1193 {
1194         enum i40e_status_code status = I40E_SUCCESS;
1195         u16 pba_word = 0;
1196         u16 pba_size = 0;
1197         u16 pba_ptr = 0;
1198         u16 i = 0;
1199
1200         status = i40e_read_nvm_word(hw, I40E_SR_PBA_FLAGS, &pba_word);
1201         if ((status != I40E_SUCCESS) || (pba_word != 0xFAFA)) {
1202                 DEBUGOUT("Failed to read PBA flags or flag is invalid.\n");
1203                 return status;
1204         }
1205
1206         status = i40e_read_nvm_word(hw, I40E_SR_PBA_BLOCK_PTR, &pba_ptr);
1207         if (status != I40E_SUCCESS) {
1208                 DEBUGOUT("Failed to read PBA Block pointer.\n");
1209                 return status;
1210         }
1211
1212         status = i40e_read_nvm_word(hw, pba_ptr, &pba_size);
1213         if (status != I40E_SUCCESS) {
1214                 DEBUGOUT("Failed to read PBA Block size.\n");
1215                 return status;
1216         }
1217
1218         /* Subtract one to get PBA word count (PBA Size word is included in
1219          * total size)
1220          */
1221         pba_size--;
1222         if (pba_num_size < (((u32)pba_size * 2) + 1)) {
1223                 DEBUGOUT("Buffer to small for PBA data.\n");
1224                 return I40E_ERR_PARAM;
1225         }
1226
1227         for (i = 0; i < pba_size; i++) {
1228                 status = i40e_read_nvm_word(hw, (pba_ptr + 1) + i, &pba_word);
1229                 if (status != I40E_SUCCESS) {
1230                         DEBUGOUT1("Failed to read PBA Block word %d.\n", i);
1231                         return status;
1232                 }
1233
1234                 pba_num[(i * 2)] = (pba_word >> 8) & 0xFF;
1235                 pba_num[(i * 2) + 1] = pba_word & 0xFF;
1236         }
1237         pba_num[(pba_size * 2)] = '\0';
1238
1239         return status;
1240 }
1241
1242 /**
1243  * i40e_get_media_type - Gets media type
1244  * @hw: pointer to the hardware structure
1245  **/
1246 STATIC enum i40e_media_type i40e_get_media_type(struct i40e_hw *hw)
1247 {
1248         enum i40e_media_type media;
1249
1250         switch (hw->phy.link_info.phy_type) {
1251         case I40E_PHY_TYPE_10GBASE_SR:
1252         case I40E_PHY_TYPE_10GBASE_LR:
1253         case I40E_PHY_TYPE_1000BASE_SX:
1254         case I40E_PHY_TYPE_1000BASE_LX:
1255         case I40E_PHY_TYPE_40GBASE_SR4:
1256         case I40E_PHY_TYPE_40GBASE_LR4:
1257         case I40E_PHY_TYPE_25GBASE_LR:
1258         case I40E_PHY_TYPE_25GBASE_SR:
1259                 media = I40E_MEDIA_TYPE_FIBER;
1260                 break;
1261         case I40E_PHY_TYPE_100BASE_TX:
1262         case I40E_PHY_TYPE_1000BASE_T:
1263         case I40E_PHY_TYPE_10GBASE_T:
1264                 media = I40E_MEDIA_TYPE_BASET;
1265                 break;
1266         case I40E_PHY_TYPE_10GBASE_CR1_CU:
1267         case I40E_PHY_TYPE_40GBASE_CR4_CU:
1268         case I40E_PHY_TYPE_10GBASE_CR1:
1269         case I40E_PHY_TYPE_40GBASE_CR4:
1270         case I40E_PHY_TYPE_10GBASE_SFPP_CU:
1271         case I40E_PHY_TYPE_40GBASE_AOC:
1272         case I40E_PHY_TYPE_10GBASE_AOC:
1273         case I40E_PHY_TYPE_25GBASE_CR:
1274         case I40E_PHY_TYPE_25GBASE_AOC:
1275         case I40E_PHY_TYPE_25GBASE_ACC:
1276                 media = I40E_MEDIA_TYPE_DA;
1277                 break;
1278         case I40E_PHY_TYPE_1000BASE_KX:
1279         case I40E_PHY_TYPE_10GBASE_KX4:
1280         case I40E_PHY_TYPE_10GBASE_KR:
1281         case I40E_PHY_TYPE_40GBASE_KR4:
1282         case I40E_PHY_TYPE_20GBASE_KR2:
1283         case I40E_PHY_TYPE_25GBASE_KR:
1284                 media = I40E_MEDIA_TYPE_BACKPLANE;
1285                 break;
1286         case I40E_PHY_TYPE_SGMII:
1287         case I40E_PHY_TYPE_XAUI:
1288         case I40E_PHY_TYPE_XFI:
1289         case I40E_PHY_TYPE_XLAUI:
1290         case I40E_PHY_TYPE_XLPPI:
1291         default:
1292                 media = I40E_MEDIA_TYPE_UNKNOWN;
1293                 break;
1294         }
1295
1296         return media;
1297 }
1298
1299 #define I40E_PF_RESET_WAIT_COUNT        200
1300 /**
1301  * i40e_pf_reset - Reset the PF
1302  * @hw: pointer to the hardware structure
1303  *
1304  * Assuming someone else has triggered a global reset,
1305  * assure the global reset is complete and then reset the PF
1306  **/
1307 enum i40e_status_code i40e_pf_reset(struct i40e_hw *hw)
1308 {
1309         u32 cnt = 0;
1310         u32 cnt1 = 0;
1311         u32 reg = 0;
1312         u32 grst_del;
1313
1314         /* Poll for Global Reset steady state in case of recent GRST.
1315          * The grst delay value is in 100ms units, and we'll wait a
1316          * couple counts longer to be sure we don't just miss the end.
1317          */
1318         grst_del = (rd32(hw, I40E_GLGEN_RSTCTL) &
1319                         I40E_GLGEN_RSTCTL_GRSTDEL_MASK) >>
1320                         I40E_GLGEN_RSTCTL_GRSTDEL_SHIFT;
1321
1322         grst_del = grst_del * 20;
1323
1324         for (cnt = 0; cnt < grst_del; cnt++) {
1325                 reg = rd32(hw, I40E_GLGEN_RSTAT);
1326                 if (!(reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK))
1327                         break;
1328                 i40e_msec_delay(100);
1329         }
1330         if (reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
1331                 DEBUGOUT("Global reset polling failed to complete.\n");
1332                 return I40E_ERR_RESET_FAILED;
1333         }
1334
1335         /* Now Wait for the FW to be ready */
1336         for (cnt1 = 0; cnt1 < I40E_PF_RESET_WAIT_COUNT; cnt1++) {
1337                 reg = rd32(hw, I40E_GLNVM_ULD);
1338                 reg &= (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1339                         I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK);
1340                 if (reg == (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1341                             I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK)) {
1342                         DEBUGOUT1("Core and Global modules ready %d\n", cnt1);
1343                         break;
1344                 }
1345                 i40e_msec_delay(10);
1346         }
1347         if (!(reg & (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
1348                      I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))) {
1349                 DEBUGOUT("wait for FW Reset complete timedout\n");
1350                 DEBUGOUT1("I40E_GLNVM_ULD = 0x%x\n", reg);
1351                 return I40E_ERR_RESET_FAILED;
1352         }
1353
1354         /* If there was a Global Reset in progress when we got here,
1355          * we don't need to do the PF Reset
1356          */
1357         if (!cnt) {
1358                 u32 reg2 = 0;
1359
1360                 reg = rd32(hw, I40E_PFGEN_CTRL);
1361                 wr32(hw, I40E_PFGEN_CTRL,
1362                      (reg | I40E_PFGEN_CTRL_PFSWR_MASK));
1363                 for (cnt = 0; cnt < I40E_PF_RESET_WAIT_COUNT; cnt++) {
1364                         reg = rd32(hw, I40E_PFGEN_CTRL);
1365                         if (!(reg & I40E_PFGEN_CTRL_PFSWR_MASK))
1366                                 break;
1367                         reg2 = rd32(hw, I40E_GLGEN_RSTAT);
1368                         if (reg2 & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
1369                                 DEBUGOUT("Core reset upcoming. Skipping PF reset request.\n");
1370                                 DEBUGOUT1("I40E_GLGEN_RSTAT = 0x%x\n", reg2);
1371                                 return I40E_ERR_NOT_READY;
1372                         }
1373                         i40e_msec_delay(1);
1374                 }
1375                 if (reg & I40E_PFGEN_CTRL_PFSWR_MASK) {
1376                         DEBUGOUT("PF reset polling failed to complete.\n");
1377                         return I40E_ERR_RESET_FAILED;
1378                 }
1379         }
1380
1381         i40e_clear_pxe_mode(hw);
1382
1383
1384         return I40E_SUCCESS;
1385 }
1386
1387 /**
1388  * i40e_clear_hw - clear out any left over hw state
1389  * @hw: pointer to the hw struct
1390  *
1391  * Clear queues and interrupts, typically called at init time,
1392  * but after the capabilities have been found so we know how many
1393  * queues and msix vectors have been allocated.
1394  **/
1395 void i40e_clear_hw(struct i40e_hw *hw)
1396 {
1397         u32 num_queues, base_queue;
1398         u32 num_pf_int;
1399         u32 num_vf_int;
1400         u32 num_vfs;
1401         u32 i, j;
1402         u32 val;
1403         u32 eol = 0x7ff;
1404
1405         /* get number of interrupts, queues, and vfs */
1406         val = rd32(hw, I40E_GLPCI_CNF2);
1407         num_pf_int = (val & I40E_GLPCI_CNF2_MSI_X_PF_N_MASK) >>
1408                         I40E_GLPCI_CNF2_MSI_X_PF_N_SHIFT;
1409         num_vf_int = (val & I40E_GLPCI_CNF2_MSI_X_VF_N_MASK) >>
1410                         I40E_GLPCI_CNF2_MSI_X_VF_N_SHIFT;
1411
1412         val = rd32(hw, I40E_PFLAN_QALLOC);
1413         base_queue = (val & I40E_PFLAN_QALLOC_FIRSTQ_MASK) >>
1414                         I40E_PFLAN_QALLOC_FIRSTQ_SHIFT;
1415         j = (val & I40E_PFLAN_QALLOC_LASTQ_MASK) >>
1416                         I40E_PFLAN_QALLOC_LASTQ_SHIFT;
1417         if (val & I40E_PFLAN_QALLOC_VALID_MASK)
1418                 num_queues = (j - base_queue) + 1;
1419         else
1420                 num_queues = 0;
1421
1422         val = rd32(hw, I40E_PF_VT_PFALLOC);
1423         i = (val & I40E_PF_VT_PFALLOC_FIRSTVF_MASK) >>
1424                         I40E_PF_VT_PFALLOC_FIRSTVF_SHIFT;
1425         j = (val & I40E_PF_VT_PFALLOC_LASTVF_MASK) >>
1426                         I40E_PF_VT_PFALLOC_LASTVF_SHIFT;
1427         if (val & I40E_PF_VT_PFALLOC_VALID_MASK)
1428                 num_vfs = (j - i) + 1;
1429         else
1430                 num_vfs = 0;
1431
1432         /* stop all the interrupts */
1433         wr32(hw, I40E_PFINT_ICR0_ENA, 0);
1434         val = 0x3 << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
1435         for (i = 0; i < num_pf_int - 2; i++)
1436                 wr32(hw, I40E_PFINT_DYN_CTLN(i), val);
1437
1438         /* Set the FIRSTQ_INDX field to 0x7FF in PFINT_LNKLSTx */
1439         val = eol << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1440         wr32(hw, I40E_PFINT_LNKLST0, val);
1441         for (i = 0; i < num_pf_int - 2; i++)
1442                 wr32(hw, I40E_PFINT_LNKLSTN(i), val);
1443         val = eol << I40E_VPINT_LNKLST0_FIRSTQ_INDX_SHIFT;
1444         for (i = 0; i < num_vfs; i++)
1445                 wr32(hw, I40E_VPINT_LNKLST0(i), val);
1446         for (i = 0; i < num_vf_int - 2; i++)
1447                 wr32(hw, I40E_VPINT_LNKLSTN(i), val);
1448
1449         /* warn the HW of the coming Tx disables */
1450         for (i = 0; i < num_queues; i++) {
1451                 u32 abs_queue_idx = base_queue + i;
1452                 u32 reg_block = 0;
1453
1454                 if (abs_queue_idx >= 128) {
1455                         reg_block = abs_queue_idx / 128;
1456                         abs_queue_idx %= 128;
1457                 }
1458
1459                 val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
1460                 val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
1461                 val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
1462                 val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
1463
1464                 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), val);
1465         }
1466         i40e_usec_delay(400);
1467
1468         /* stop all the queues */
1469         for (i = 0; i < num_queues; i++) {
1470                 wr32(hw, I40E_QINT_TQCTL(i), 0);
1471                 wr32(hw, I40E_QTX_ENA(i), 0);
1472                 wr32(hw, I40E_QINT_RQCTL(i), 0);
1473                 wr32(hw, I40E_QRX_ENA(i), 0);
1474         }
1475
1476         /* short wait for all queue disables to settle */
1477         i40e_usec_delay(50);
1478 }
1479
1480 /**
1481  * i40e_clear_pxe_mode - clear pxe operations mode
1482  * @hw: pointer to the hw struct
1483  *
1484  * Make sure all PXE mode settings are cleared, including things
1485  * like descriptor fetch/write-back mode.
1486  **/
1487 void i40e_clear_pxe_mode(struct i40e_hw *hw)
1488 {
1489         if (i40e_check_asq_alive(hw))
1490                 i40e_aq_clear_pxe_mode(hw, NULL);
1491 }
1492
1493 /**
1494  * i40e_led_is_mine - helper to find matching led
1495  * @hw: pointer to the hw struct
1496  * @idx: index into GPIO registers
1497  *
1498  * returns: 0 if no match, otherwise the value of the GPIO_CTL register
1499  */
1500 static u32 i40e_led_is_mine(struct i40e_hw *hw, int idx)
1501 {
1502         u32 gpio_val = 0;
1503         u32 port;
1504
1505         if (!hw->func_caps.led[idx])
1506                 return 0;
1507
1508         gpio_val = rd32(hw, I40E_GLGEN_GPIO_CTL(idx));
1509         port = (gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_MASK) >>
1510                 I40E_GLGEN_GPIO_CTL_PRT_NUM_SHIFT;
1511
1512         /* if PRT_NUM_NA is 1 then this LED is not port specific, OR
1513          * if it is not our port then ignore
1514          */
1515         if ((gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_NA_MASK) ||
1516             (port != hw->port))
1517                 return 0;
1518
1519         return gpio_val;
1520 }
1521
1522 #define I40E_COMBINED_ACTIVITY 0xA
1523 #define I40E_FILTER_ACTIVITY 0xE
1524 #define I40E_LINK_ACTIVITY 0xC
1525 #define I40E_MAC_ACTIVITY 0xD
1526 #define I40E_LED0 22
1527
1528 /**
1529  * i40e_led_get - return current on/off mode
1530  * @hw: pointer to the hw struct
1531  *
1532  * The value returned is the 'mode' field as defined in the
1533  * GPIO register definitions: 0x0 = off, 0xf = on, and other
1534  * values are variations of possible behaviors relating to
1535  * blink, link, and wire.
1536  **/
1537 u32 i40e_led_get(struct i40e_hw *hw)
1538 {
1539         u32 current_mode = 0;
1540         u32 mode = 0;
1541         int i;
1542
1543         /* as per the documentation GPIO 22-29 are the LED
1544          * GPIO pins named LED0..LED7
1545          */
1546         for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1547                 u32 gpio_val = i40e_led_is_mine(hw, i);
1548
1549                 if (!gpio_val)
1550                         continue;
1551
1552                 /* ignore gpio LED src mode entries related to the activity
1553                  *  LEDs
1554                  */
1555                 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1556                                 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1557                 switch (current_mode) {
1558                 case I40E_COMBINED_ACTIVITY:
1559                 case I40E_FILTER_ACTIVITY:
1560                 case I40E_MAC_ACTIVITY:
1561                 case I40E_LINK_ACTIVITY:
1562                         continue;
1563                 default:
1564                         break;
1565                 }
1566
1567                 mode = (gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK) >>
1568                         I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT;
1569                 break;
1570         }
1571
1572         return mode;
1573 }
1574
1575 /**
1576  * i40e_led_set - set new on/off mode
1577  * @hw: pointer to the hw struct
1578  * @mode: 0=off, 0xf=on (else see manual for mode details)
1579  * @blink: true if the LED should blink when on, false if steady
1580  *
1581  * if this function is used to turn on the blink it should
1582  * be used to disable the blink when restoring the original state.
1583  **/
1584 void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink)
1585 {
1586         u32 current_mode = 0;
1587         int i;
1588
1589         if (mode & 0xfffffff0)
1590                 DEBUGOUT1("invalid mode passed in %X\n", mode);
1591
1592         /* as per the documentation GPIO 22-29 are the LED
1593          * GPIO pins named LED0..LED7
1594          */
1595         for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
1596                 u32 gpio_val = i40e_led_is_mine(hw, i);
1597
1598                 if (!gpio_val)
1599                         continue;
1600
1601                 /* ignore gpio LED src mode entries related to the activity
1602                  * LEDs
1603                  */
1604                 current_mode = ((gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK)
1605                                 >> I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT);
1606                 switch (current_mode) {
1607                 case I40E_COMBINED_ACTIVITY:
1608                 case I40E_FILTER_ACTIVITY:
1609                 case I40E_MAC_ACTIVITY:
1610                 case I40E_LINK_ACTIVITY:
1611                         continue;
1612                 default:
1613                         break;
1614                 }
1615
1616                 gpio_val &= ~I40E_GLGEN_GPIO_CTL_LED_MODE_MASK;
1617                 /* this & is a bit of paranoia, but serves as a range check */
1618                 gpio_val |= ((mode << I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT) &
1619                              I40E_GLGEN_GPIO_CTL_LED_MODE_MASK);
1620
1621                 if (blink)
1622                         gpio_val |= BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
1623                 else
1624                         gpio_val &= ~BIT(I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT);
1625
1626                 wr32(hw, I40E_GLGEN_GPIO_CTL(i), gpio_val);
1627                 break;
1628         }
1629 }
1630
1631 /* Admin command wrappers */
1632
1633 /**
1634  * i40e_aq_get_phy_capabilities
1635  * @hw: pointer to the hw struct
1636  * @abilities: structure for PHY capabilities to be filled
1637  * @qualified_modules: report Qualified Modules
1638  * @report_init: report init capabilities (active are default)
1639  * @cmd_details: pointer to command details structure or NULL
1640  *
1641  * Returns the various PHY abilities supported on the Port.
1642  **/
1643 enum i40e_status_code i40e_aq_get_phy_capabilities(struct i40e_hw *hw,
1644                         bool qualified_modules, bool report_init,
1645                         struct i40e_aq_get_phy_abilities_resp *abilities,
1646                         struct i40e_asq_cmd_details *cmd_details)
1647 {
1648         struct i40e_aq_desc desc;
1649         enum i40e_status_code status;
1650         u16 max_delay = I40E_MAX_PHY_TIMEOUT, total_delay = 0;
1651         u16 abilities_size = sizeof(struct i40e_aq_get_phy_abilities_resp);
1652
1653         if (!abilities)
1654                 return I40E_ERR_PARAM;
1655
1656         do {
1657                 i40e_fill_default_direct_cmd_desc(&desc,
1658                                                i40e_aqc_opc_get_phy_abilities);
1659
1660                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
1661                 if (abilities_size > I40E_AQ_LARGE_BUF)
1662                         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
1663
1664                 if (qualified_modules)
1665                         desc.params.external.param0 |=
1666                         CPU_TO_LE32(I40E_AQ_PHY_REPORT_QUALIFIED_MODULES);
1667
1668                 if (report_init)
1669                         desc.params.external.param0 |=
1670                         CPU_TO_LE32(I40E_AQ_PHY_REPORT_INITIAL_VALUES);
1671
1672                 status = i40e_asq_send_command(hw, &desc, abilities,
1673                                                abilities_size, cmd_details);
1674
1675                 if (status != I40E_SUCCESS)
1676                         break;
1677
1678                 if (hw->aq.asq_last_status == I40E_AQ_RC_EIO) {
1679                         status = I40E_ERR_UNKNOWN_PHY;
1680                         break;
1681                 } else if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN) {
1682                         i40e_msec_delay(1);
1683                         total_delay++;
1684                         status = I40E_ERR_TIMEOUT;
1685                 }
1686         } while ((hw->aq.asq_last_status != I40E_AQ_RC_OK) &&
1687                  (total_delay < max_delay));
1688
1689         if (status != I40E_SUCCESS)
1690                 return status;
1691
1692         if (report_init) {
1693                 if (hw->mac.type ==  I40E_MAC_XL710 &&
1694                     hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
1695                     hw->aq.api_min_ver >= I40E_MINOR_VER_GET_LINK_INFO_XL710) {
1696                         status = i40e_aq_get_link_info(hw, true, NULL, NULL);
1697                 } else {
1698                         hw->phy.phy_types = LE32_TO_CPU(abilities->phy_type);
1699                         hw->phy.phy_types |=
1700                                         ((u64)abilities->phy_type_ext << 32);
1701                 }
1702         }
1703
1704         return status;
1705 }
1706
1707 /**
1708  * i40e_aq_set_phy_config
1709  * @hw: pointer to the hw struct
1710  * @config: structure with PHY configuration to be set
1711  * @cmd_details: pointer to command details structure or NULL
1712  *
1713  * Set the various PHY configuration parameters
1714  * supported on the Port.One or more of the Set PHY config parameters may be
1715  * ignored in an MFP mode as the PF may not have the privilege to set some
1716  * of the PHY Config parameters. This status will be indicated by the
1717  * command response.
1718  **/
1719 enum i40e_status_code i40e_aq_set_phy_config(struct i40e_hw *hw,
1720                                 struct i40e_aq_set_phy_config *config,
1721                                 struct i40e_asq_cmd_details *cmd_details)
1722 {
1723         struct i40e_aq_desc desc;
1724         struct i40e_aq_set_phy_config *cmd =
1725                 (struct i40e_aq_set_phy_config *)&desc.params.raw;
1726         enum i40e_status_code status;
1727
1728         if (!config)
1729                 return I40E_ERR_PARAM;
1730
1731         i40e_fill_default_direct_cmd_desc(&desc,
1732                                           i40e_aqc_opc_set_phy_config);
1733
1734         *cmd = *config;
1735
1736         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1737
1738         return status;
1739 }
1740
1741 /**
1742  * i40e_set_fc
1743  * @hw: pointer to the hw struct
1744  * @aq_failures: buffer to return AdminQ failure information
1745  * @atomic_restart: whether to enable atomic link restart
1746  *
1747  * Set the requested flow control mode using set_phy_config.
1748  **/
1749 enum i40e_status_code i40e_set_fc(struct i40e_hw *hw, u8 *aq_failures,
1750                                   bool atomic_restart)
1751 {
1752         enum i40e_fc_mode fc_mode = hw->fc.requested_mode;
1753         struct i40e_aq_get_phy_abilities_resp abilities;
1754         struct i40e_aq_set_phy_config config;
1755         enum i40e_status_code status;
1756         u8 pause_mask = 0x0;
1757
1758         *aq_failures = 0x0;
1759
1760         switch (fc_mode) {
1761         case I40E_FC_FULL:
1762                 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1763                 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1764                 break;
1765         case I40E_FC_RX_PAUSE:
1766                 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_RX;
1767                 break;
1768         case I40E_FC_TX_PAUSE:
1769                 pause_mask |= I40E_AQ_PHY_FLAG_PAUSE_TX;
1770                 break;
1771         default:
1772                 break;
1773         }
1774
1775         /* Get the current phy config */
1776         status = i40e_aq_get_phy_capabilities(hw, false, false, &abilities,
1777                                               NULL);
1778         if (status) {
1779                 *aq_failures |= I40E_SET_FC_AQ_FAIL_GET;
1780                 return status;
1781         }
1782
1783         memset(&config, 0, sizeof(config));
1784         /* clear the old pause settings */
1785         config.abilities = abilities.abilities & ~(I40E_AQ_PHY_FLAG_PAUSE_TX) &
1786                            ~(I40E_AQ_PHY_FLAG_PAUSE_RX);
1787         /* set the new abilities */
1788         config.abilities |= pause_mask;
1789         /* If the abilities have changed, then set the new config */
1790         if (config.abilities != abilities.abilities) {
1791                 /* Auto restart link so settings take effect */
1792                 if (atomic_restart)
1793                         config.abilities |= I40E_AQ_PHY_ENABLE_ATOMIC_LINK;
1794                 /* Copy over all the old settings */
1795                 config.phy_type = abilities.phy_type;
1796                 config.phy_type_ext = abilities.phy_type_ext;
1797                 config.link_speed = abilities.link_speed;
1798                 config.eee_capability = abilities.eee_capability;
1799                 config.eeer = abilities.eeer_val;
1800                 config.low_power_ctrl = abilities.d3_lpan;
1801                 config.fec_config = abilities.fec_cfg_curr_mod_ext_info &
1802                                     I40E_AQ_PHY_FEC_CONFIG_MASK;
1803                 status = i40e_aq_set_phy_config(hw, &config, NULL);
1804
1805                 if (status)
1806                         *aq_failures |= I40E_SET_FC_AQ_FAIL_SET;
1807         }
1808         /* Update the link info */
1809         status = i40e_update_link_info(hw);
1810         if (status) {
1811                 /* Wait a little bit (on 40G cards it sometimes takes a really
1812                  * long time for link to come back from the atomic reset)
1813                  * and try once more
1814                  */
1815                 i40e_msec_delay(1000);
1816                 status = i40e_update_link_info(hw);
1817         }
1818         if (status)
1819                 *aq_failures |= I40E_SET_FC_AQ_FAIL_UPDATE;
1820
1821         return status;
1822 }
1823
1824 /**
1825  * i40e_aq_set_mac_config
1826  * @hw: pointer to the hw struct
1827  * @max_frame_size: Maximum Frame Size to be supported by the port
1828  * @crc_en: Tell HW to append a CRC to outgoing frames
1829  * @pacing: Pacing configurations
1830  * @cmd_details: pointer to command details structure or NULL
1831  *
1832  * Configure MAC settings for frame size, jumbo frame support and the
1833  * addition of a CRC by the hardware.
1834  **/
1835 enum i40e_status_code i40e_aq_set_mac_config(struct i40e_hw *hw,
1836                                 u16 max_frame_size,
1837                                 bool crc_en, u16 pacing,
1838                                 struct i40e_asq_cmd_details *cmd_details)
1839 {
1840         struct i40e_aq_desc desc;
1841         struct i40e_aq_set_mac_config *cmd =
1842                 (struct i40e_aq_set_mac_config *)&desc.params.raw;
1843         enum i40e_status_code status;
1844
1845         if (max_frame_size == 0)
1846                 return I40E_ERR_PARAM;
1847
1848         i40e_fill_default_direct_cmd_desc(&desc,
1849                                           i40e_aqc_opc_set_mac_config);
1850
1851         cmd->max_frame_size = CPU_TO_LE16(max_frame_size);
1852         cmd->params = ((u8)pacing & 0x0F) << 3;
1853         if (crc_en)
1854                 cmd->params |= I40E_AQ_SET_MAC_CONFIG_CRC_EN;
1855
1856         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1857
1858         return status;
1859 }
1860
1861 /**
1862  * i40e_aq_clear_pxe_mode
1863  * @hw: pointer to the hw struct
1864  * @cmd_details: pointer to command details structure or NULL
1865  *
1866  * Tell the firmware that the driver is taking over from PXE
1867  **/
1868 enum i40e_status_code i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
1869                         struct i40e_asq_cmd_details *cmd_details)
1870 {
1871         enum i40e_status_code status;
1872         struct i40e_aq_desc desc;
1873         struct i40e_aqc_clear_pxe *cmd =
1874                 (struct i40e_aqc_clear_pxe *)&desc.params.raw;
1875
1876         i40e_fill_default_direct_cmd_desc(&desc,
1877                                           i40e_aqc_opc_clear_pxe_mode);
1878
1879         cmd->rx_cnt = 0x2;
1880
1881         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1882
1883         wr32(hw, I40E_GLLAN_RCTL_0, 0x1);
1884
1885         return status;
1886 }
1887
1888 /**
1889  * i40e_aq_set_link_restart_an
1890  * @hw: pointer to the hw struct
1891  * @enable_link: if true: enable link, if false: disable link
1892  * @cmd_details: pointer to command details structure or NULL
1893  *
1894  * Sets up the link and restarts the Auto-Negotiation over the link.
1895  **/
1896 enum i40e_status_code i40e_aq_set_link_restart_an(struct i40e_hw *hw,
1897                 bool enable_link, struct i40e_asq_cmd_details *cmd_details)
1898 {
1899         struct i40e_aq_desc desc;
1900         struct i40e_aqc_set_link_restart_an *cmd =
1901                 (struct i40e_aqc_set_link_restart_an *)&desc.params.raw;
1902         enum i40e_status_code status;
1903
1904         i40e_fill_default_direct_cmd_desc(&desc,
1905                                           i40e_aqc_opc_set_link_restart_an);
1906
1907         cmd->command = I40E_AQ_PHY_RESTART_AN;
1908         if (enable_link)
1909                 cmd->command |= I40E_AQ_PHY_LINK_ENABLE;
1910         else
1911                 cmd->command &= ~I40E_AQ_PHY_LINK_ENABLE;
1912
1913         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1914
1915         return status;
1916 }
1917
1918 /**
1919  * i40e_aq_get_link_info
1920  * @hw: pointer to the hw struct
1921  * @enable_lse: enable/disable LinkStatusEvent reporting
1922  * @link: pointer to link status structure - optional
1923  * @cmd_details: pointer to command details structure or NULL
1924  *
1925  * Returns the link status of the adapter.
1926  **/
1927 enum i40e_status_code i40e_aq_get_link_info(struct i40e_hw *hw,
1928                                 bool enable_lse, struct i40e_link_status *link,
1929                                 struct i40e_asq_cmd_details *cmd_details)
1930 {
1931         struct i40e_aq_desc desc;
1932         struct i40e_aqc_get_link_status *resp =
1933                 (struct i40e_aqc_get_link_status *)&desc.params.raw;
1934         struct i40e_link_status *hw_link_info = &hw->phy.link_info;
1935         enum i40e_status_code status;
1936         bool tx_pause, rx_pause;
1937         u16 command_flags;
1938
1939         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_link_status);
1940
1941         if (enable_lse)
1942                 command_flags = I40E_AQ_LSE_ENABLE;
1943         else
1944                 command_flags = I40E_AQ_LSE_DISABLE;
1945         resp->command_flags = CPU_TO_LE16(command_flags);
1946
1947         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1948
1949         if (status != I40E_SUCCESS)
1950                 goto aq_get_link_info_exit;
1951
1952         /* save off old link status information */
1953         i40e_memcpy(&hw->phy.link_info_old, hw_link_info,
1954                     sizeof(*hw_link_info), I40E_NONDMA_TO_NONDMA);
1955
1956         /* update link status */
1957         hw_link_info->phy_type = (enum i40e_aq_phy_type)resp->phy_type;
1958         hw->phy.media_type = i40e_get_media_type(hw);
1959         hw_link_info->link_speed = (enum i40e_aq_link_speed)resp->link_speed;
1960         hw_link_info->link_info = resp->link_info;
1961         hw_link_info->an_info = resp->an_info;
1962         hw_link_info->fec_info = resp->config & (I40E_AQ_CONFIG_FEC_KR_ENA |
1963                                                  I40E_AQ_CONFIG_FEC_RS_ENA);
1964         hw_link_info->ext_info = resp->ext_info;
1965         hw_link_info->loopback = resp->loopback & I40E_AQ_LOOPBACK_MASK;
1966         hw_link_info->max_frame_size = LE16_TO_CPU(resp->max_frame_size);
1967         hw_link_info->pacing = resp->config & I40E_AQ_CONFIG_PACING_MASK;
1968
1969         /* update fc info */
1970         tx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_TX);
1971         rx_pause = !!(resp->an_info & I40E_AQ_LINK_PAUSE_RX);
1972         if (tx_pause & rx_pause)
1973                 hw->fc.current_mode = I40E_FC_FULL;
1974         else if (tx_pause)
1975                 hw->fc.current_mode = I40E_FC_TX_PAUSE;
1976         else if (rx_pause)
1977                 hw->fc.current_mode = I40E_FC_RX_PAUSE;
1978         else
1979                 hw->fc.current_mode = I40E_FC_NONE;
1980
1981         if (resp->config & I40E_AQ_CONFIG_CRC_ENA)
1982                 hw_link_info->crc_enable = true;
1983         else
1984                 hw_link_info->crc_enable = false;
1985
1986         if (resp->command_flags & CPU_TO_LE16(I40E_AQ_LSE_IS_ENABLED))
1987                 hw_link_info->lse_enable = true;
1988         else
1989                 hw_link_info->lse_enable = false;
1990
1991         if ((hw->mac.type == I40E_MAC_XL710) &&
1992             (hw->aq.fw_maj_ver < 4 || (hw->aq.fw_maj_ver == 4 &&
1993              hw->aq.fw_min_ver < 40)) && hw_link_info->phy_type == 0xE)
1994                 hw_link_info->phy_type = I40E_PHY_TYPE_10GBASE_SFPP_CU;
1995
1996         if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
1997             hw->aq.api_min_ver >= 7) {
1998                 __le32 tmp;
1999
2000                 i40e_memcpy(&tmp, resp->link_type, sizeof(tmp),
2001                             I40E_NONDMA_TO_NONDMA);
2002                 hw->phy.phy_types = LE32_TO_CPU(tmp);
2003                 hw->phy.phy_types |= ((u64)resp->link_type_ext << 32);
2004         }
2005
2006         /* save link status information */
2007         if (link)
2008                 i40e_memcpy(link, hw_link_info, sizeof(*hw_link_info),
2009                             I40E_NONDMA_TO_NONDMA);
2010
2011         /* flag cleared so helper functions don't call AQ again */
2012         hw->phy.get_link_info = false;
2013
2014 aq_get_link_info_exit:
2015         return status;
2016 }
2017
2018 /**
2019  * i40e_aq_set_phy_int_mask
2020  * @hw: pointer to the hw struct
2021  * @mask: interrupt mask to be set
2022  * @cmd_details: pointer to command details structure or NULL
2023  *
2024  * Set link interrupt mask.
2025  **/
2026 enum i40e_status_code i40e_aq_set_phy_int_mask(struct i40e_hw *hw,
2027                                 u16 mask,
2028                                 struct i40e_asq_cmd_details *cmd_details)
2029 {
2030         struct i40e_aq_desc desc;
2031         struct i40e_aqc_set_phy_int_mask *cmd =
2032                 (struct i40e_aqc_set_phy_int_mask *)&desc.params.raw;
2033         enum i40e_status_code status;
2034
2035         i40e_fill_default_direct_cmd_desc(&desc,
2036                                           i40e_aqc_opc_set_phy_int_mask);
2037
2038         cmd->event_mask = CPU_TO_LE16(mask);
2039
2040         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2041
2042         return status;
2043 }
2044
2045 /**
2046  * i40e_aq_get_local_advt_reg
2047  * @hw: pointer to the hw struct
2048  * @advt_reg: local AN advertisement register value
2049  * @cmd_details: pointer to command details structure or NULL
2050  *
2051  * Get the Local AN advertisement register value.
2052  **/
2053 enum i40e_status_code i40e_aq_get_local_advt_reg(struct i40e_hw *hw,
2054                                 u64 *advt_reg,
2055                                 struct i40e_asq_cmd_details *cmd_details)
2056 {
2057         struct i40e_aq_desc desc;
2058         struct i40e_aqc_an_advt_reg *resp =
2059                 (struct i40e_aqc_an_advt_reg *)&desc.params.raw;
2060         enum i40e_status_code status;
2061
2062         i40e_fill_default_direct_cmd_desc(&desc,
2063                                           i40e_aqc_opc_get_local_advt_reg);
2064
2065         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2066
2067         if (status != I40E_SUCCESS)
2068                 goto aq_get_local_advt_reg_exit;
2069
2070         *advt_reg = (u64)(LE16_TO_CPU(resp->local_an_reg1)) << 32;
2071         *advt_reg |= LE32_TO_CPU(resp->local_an_reg0);
2072
2073 aq_get_local_advt_reg_exit:
2074         return status;
2075 }
2076
2077 /**
2078  * i40e_aq_set_local_advt_reg
2079  * @hw: pointer to the hw struct
2080  * @advt_reg: local AN advertisement register value
2081  * @cmd_details: pointer to command details structure or NULL
2082  *
2083  * Get the Local AN advertisement register value.
2084  **/
2085 enum i40e_status_code i40e_aq_set_local_advt_reg(struct i40e_hw *hw,
2086                                 u64 advt_reg,
2087                                 struct i40e_asq_cmd_details *cmd_details)
2088 {
2089         struct i40e_aq_desc desc;
2090         struct i40e_aqc_an_advt_reg *cmd =
2091                 (struct i40e_aqc_an_advt_reg *)&desc.params.raw;
2092         enum i40e_status_code status;
2093
2094         i40e_fill_default_direct_cmd_desc(&desc,
2095                                           i40e_aqc_opc_get_local_advt_reg);
2096
2097         cmd->local_an_reg0 = CPU_TO_LE32(I40E_LO_DWORD(advt_reg));
2098         cmd->local_an_reg1 = CPU_TO_LE16(I40E_HI_DWORD(advt_reg));
2099
2100         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2101
2102         return status;
2103 }
2104
2105 /**
2106  * i40e_aq_get_partner_advt
2107  * @hw: pointer to the hw struct
2108  * @advt_reg: AN partner advertisement register value
2109  * @cmd_details: pointer to command details structure or NULL
2110  *
2111  * Get the link partner AN advertisement register value.
2112  **/
2113 enum i40e_status_code i40e_aq_get_partner_advt(struct i40e_hw *hw,
2114                                 u64 *advt_reg,
2115                                 struct i40e_asq_cmd_details *cmd_details)
2116 {
2117         struct i40e_aq_desc desc;
2118         struct i40e_aqc_an_advt_reg *resp =
2119                 (struct i40e_aqc_an_advt_reg *)&desc.params.raw;
2120         enum i40e_status_code status;
2121
2122         i40e_fill_default_direct_cmd_desc(&desc,
2123                                           i40e_aqc_opc_get_partner_advt);
2124
2125         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2126
2127         if (status != I40E_SUCCESS)
2128                 goto aq_get_partner_advt_exit;
2129
2130         *advt_reg = (u64)(LE16_TO_CPU(resp->local_an_reg1)) << 32;
2131         *advt_reg |= LE32_TO_CPU(resp->local_an_reg0);
2132
2133 aq_get_partner_advt_exit:
2134         return status;
2135 }
2136
2137 /**
2138  * i40e_aq_set_lb_modes
2139  * @hw: pointer to the hw struct
2140  * @lb_modes: loopback mode to be set
2141  * @cmd_details: pointer to command details structure or NULL
2142  *
2143  * Sets loopback modes.
2144  **/
2145 enum i40e_status_code i40e_aq_set_lb_modes(struct i40e_hw *hw,
2146                                 u16 lb_modes,
2147                                 struct i40e_asq_cmd_details *cmd_details)
2148 {
2149         struct i40e_aq_desc desc;
2150         struct i40e_aqc_set_lb_mode *cmd =
2151                 (struct i40e_aqc_set_lb_mode *)&desc.params.raw;
2152         enum i40e_status_code status;
2153
2154         i40e_fill_default_direct_cmd_desc(&desc,
2155                                           i40e_aqc_opc_set_lb_modes);
2156
2157         cmd->lb_mode = CPU_TO_LE16(lb_modes);
2158
2159         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2160
2161         return status;
2162 }
2163
2164 /**
2165  * i40e_aq_set_phy_debug
2166  * @hw: pointer to the hw struct
2167  * @cmd_flags: debug command flags
2168  * @cmd_details: pointer to command details structure or NULL
2169  *
2170  * Reset the external PHY.
2171  **/
2172 enum i40e_status_code i40e_aq_set_phy_debug(struct i40e_hw *hw, u8 cmd_flags,
2173                                 struct i40e_asq_cmd_details *cmd_details)
2174 {
2175         struct i40e_aq_desc desc;
2176         struct i40e_aqc_set_phy_debug *cmd =
2177                 (struct i40e_aqc_set_phy_debug *)&desc.params.raw;
2178         enum i40e_status_code status;
2179
2180         i40e_fill_default_direct_cmd_desc(&desc,
2181                                           i40e_aqc_opc_set_phy_debug);
2182
2183         cmd->command_flags = cmd_flags;
2184
2185         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2186
2187         return status;
2188 }
2189
2190 /**
2191  * i40e_aq_add_vsi
2192  * @hw: pointer to the hw struct
2193  * @vsi_ctx: pointer to a vsi context struct
2194  * @cmd_details: pointer to command details structure or NULL
2195  *
2196  * Add a VSI context to the hardware.
2197 **/
2198 enum i40e_status_code i40e_aq_add_vsi(struct i40e_hw *hw,
2199                                 struct i40e_vsi_context *vsi_ctx,
2200                                 struct i40e_asq_cmd_details *cmd_details)
2201 {
2202         struct i40e_aq_desc desc;
2203         struct i40e_aqc_add_get_update_vsi *cmd =
2204                 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
2205         struct i40e_aqc_add_get_update_vsi_completion *resp =
2206                 (struct i40e_aqc_add_get_update_vsi_completion *)
2207                 &desc.params.raw;
2208         enum i40e_status_code status;
2209
2210         i40e_fill_default_direct_cmd_desc(&desc,
2211                                           i40e_aqc_opc_add_vsi);
2212
2213         cmd->uplink_seid = CPU_TO_LE16(vsi_ctx->uplink_seid);
2214         cmd->connection_type = vsi_ctx->connection_type;
2215         cmd->vf_id = vsi_ctx->vf_num;
2216         cmd->vsi_flags = CPU_TO_LE16(vsi_ctx->flags);
2217
2218         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2219
2220         status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2221                                     sizeof(vsi_ctx->info), cmd_details);
2222
2223         if (status != I40E_SUCCESS)
2224                 goto aq_add_vsi_exit;
2225
2226         vsi_ctx->seid = LE16_TO_CPU(resp->seid);
2227         vsi_ctx->vsi_number = LE16_TO_CPU(resp->vsi_number);
2228         vsi_ctx->vsis_allocated = LE16_TO_CPU(resp->vsi_used);
2229         vsi_ctx->vsis_unallocated = LE16_TO_CPU(resp->vsi_free);
2230
2231 aq_add_vsi_exit:
2232         return status;
2233 }
2234
2235 /**
2236  * i40e_aq_set_default_vsi
2237  * @hw: pointer to the hw struct
2238  * @seid: vsi number
2239  * @cmd_details: pointer to command details structure or NULL
2240  **/
2241 enum i40e_status_code i40e_aq_set_default_vsi(struct i40e_hw *hw,
2242                                 u16 seid,
2243                                 struct i40e_asq_cmd_details *cmd_details)
2244 {
2245         struct i40e_aq_desc desc;
2246         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2247                 (struct i40e_aqc_set_vsi_promiscuous_modes *)
2248                 &desc.params.raw;
2249         enum i40e_status_code status;
2250
2251         i40e_fill_default_direct_cmd_desc(&desc,
2252                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2253
2254         cmd->promiscuous_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_DEFAULT);
2255         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_DEFAULT);
2256         cmd->seid = CPU_TO_LE16(seid);
2257
2258         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2259
2260         return status;
2261 }
2262
2263 /**
2264  * i40e_aq_clear_default_vsi
2265  * @hw: pointer to the hw struct
2266  * @seid: vsi number
2267  * @cmd_details: pointer to command details structure or NULL
2268  **/
2269 enum i40e_status_code i40e_aq_clear_default_vsi(struct i40e_hw *hw,
2270                                 u16 seid,
2271                                 struct i40e_asq_cmd_details *cmd_details)
2272 {
2273         struct i40e_aq_desc desc;
2274         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2275                 (struct i40e_aqc_set_vsi_promiscuous_modes *)
2276                 &desc.params.raw;
2277         enum i40e_status_code status;
2278
2279         i40e_fill_default_direct_cmd_desc(&desc,
2280                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2281
2282         cmd->promiscuous_flags = CPU_TO_LE16(0);
2283         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_DEFAULT);
2284         cmd->seid = CPU_TO_LE16(seid);
2285
2286         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2287
2288         return status;
2289 }
2290
2291 /**
2292  * i40e_aq_set_vsi_unicast_promiscuous
2293  * @hw: pointer to the hw struct
2294  * @seid: vsi number
2295  * @set: set unicast promiscuous enable/disable
2296  * @cmd_details: pointer to command details structure or NULL
2297  * @rx_only_promisc: flag to decide if egress traffic gets mirrored in promisc
2298  **/
2299 enum i40e_status_code i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
2300                                 u16 seid, bool set,
2301                                 struct i40e_asq_cmd_details *cmd_details,
2302                                 bool rx_only_promisc)
2303 {
2304         struct i40e_aq_desc desc;
2305         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2306                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2307         enum i40e_status_code status;
2308         u16 flags = 0;
2309
2310         i40e_fill_default_direct_cmd_desc(&desc,
2311                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2312
2313         if (set) {
2314                 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
2315                 if (rx_only_promisc &&
2316                     (((hw->aq.api_maj_ver == 1) && (hw->aq.api_min_ver >= 5)) ||
2317                      (hw->aq.api_maj_ver > 1)))
2318                         flags |= I40E_AQC_SET_VSI_PROMISC_TX;
2319         }
2320
2321         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2322
2323         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_UNICAST);
2324         if (((hw->aq.api_maj_ver >= 1) && (hw->aq.api_min_ver >= 5)) ||
2325              (hw->aq.api_maj_ver > 1))
2326                 cmd->valid_flags |= CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_TX);
2327
2328         cmd->seid = CPU_TO_LE16(seid);
2329         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2330
2331         return status;
2332 }
2333
2334 /**
2335  * i40e_aq_set_vsi_multicast_promiscuous
2336  * @hw: pointer to the hw struct
2337  * @seid: vsi number
2338  * @set: set multicast promiscuous enable/disable
2339  * @cmd_details: pointer to command details structure or NULL
2340  **/
2341 enum i40e_status_code i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
2342                                 u16 seid, bool set, struct i40e_asq_cmd_details *cmd_details)
2343 {
2344         struct i40e_aq_desc desc;
2345         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2346                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2347         enum i40e_status_code status;
2348         u16 flags = 0;
2349
2350         i40e_fill_default_direct_cmd_desc(&desc,
2351                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2352
2353         if (set)
2354                 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
2355
2356         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2357
2358         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
2359
2360         cmd->seid = CPU_TO_LE16(seid);
2361         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2362
2363         return status;
2364 }
2365
2366 /**
2367 * i40e_aq_set_vsi_full_promiscuous
2368 * @hw: pointer to the hw struct
2369 * @seid: VSI number
2370 * @set: set promiscuous enable/disable
2371 * @cmd_details: pointer to command details structure or NULL
2372 **/
2373 enum i40e_status_code i40e_aq_set_vsi_full_promiscuous(struct i40e_hw *hw,
2374                                 u16 seid, bool set,
2375                                 struct i40e_asq_cmd_details *cmd_details)
2376 {
2377         struct i40e_aq_desc desc;
2378         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2379                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2380         enum i40e_status_code status;
2381         u16 flags = 0;
2382
2383         i40e_fill_default_direct_cmd_desc(&desc,
2384                 i40e_aqc_opc_set_vsi_promiscuous_modes);
2385
2386         if (set)
2387                 flags = I40E_AQC_SET_VSI_PROMISC_UNICAST   |
2388                         I40E_AQC_SET_VSI_PROMISC_MULTICAST |
2389                         I40E_AQC_SET_VSI_PROMISC_BROADCAST;
2390
2391         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2392
2393         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_UNICAST   |
2394                                        I40E_AQC_SET_VSI_PROMISC_MULTICAST |
2395                                        I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2396
2397         cmd->seid = CPU_TO_LE16(seid);
2398         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2399
2400         return status;
2401 }
2402
2403 /**
2404  * i40e_aq_set_vsi_mc_promisc_on_vlan
2405  * @hw: pointer to the hw struct
2406  * @seid: vsi number
2407  * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2408  * @vid: The VLAN tag filter - capture any multicast packet with this VLAN tag
2409  * @cmd_details: pointer to command details structure or NULL
2410  **/
2411 enum i40e_status_code i40e_aq_set_vsi_mc_promisc_on_vlan(struct i40e_hw *hw,
2412                                 u16 seid, bool enable, u16 vid,
2413                                 struct i40e_asq_cmd_details *cmd_details)
2414 {
2415         struct i40e_aq_desc desc;
2416         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2417                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2418         enum i40e_status_code status;
2419         u16 flags = 0;
2420
2421         i40e_fill_default_direct_cmd_desc(&desc,
2422                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2423
2424         if (enable)
2425                 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
2426
2427         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2428         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
2429         cmd->seid = CPU_TO_LE16(seid);
2430         cmd->vlan_tag = CPU_TO_LE16(vid | I40E_AQC_SET_VSI_VLAN_VALID);
2431
2432         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2433
2434         return status;
2435 }
2436
2437 /**
2438  * i40e_aq_set_vsi_uc_promisc_on_vlan
2439  * @hw: pointer to the hw struct
2440  * @seid: vsi number
2441  * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2442  * @vid: The VLAN tag filter - capture any unicast packet with this VLAN tag
2443  * @cmd_details: pointer to command details structure or NULL
2444  **/
2445 enum i40e_status_code i40e_aq_set_vsi_uc_promisc_on_vlan(struct i40e_hw *hw,
2446                                 u16 seid, bool enable, u16 vid,
2447                                 struct i40e_asq_cmd_details *cmd_details)
2448 {
2449         struct i40e_aq_desc desc;
2450         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2451                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2452         enum i40e_status_code status;
2453         u16 flags = 0;
2454
2455         i40e_fill_default_direct_cmd_desc(&desc,
2456                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2457
2458         if (enable)
2459                 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
2460
2461         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2462         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_UNICAST);
2463         cmd->seid = CPU_TO_LE16(seid);
2464         cmd->vlan_tag = CPU_TO_LE16(vid | I40E_AQC_SET_VSI_VLAN_VALID);
2465
2466         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2467
2468         return status;
2469 }
2470
2471 /**
2472  * i40e_aq_set_vsi_bc_promisc_on_vlan
2473  * @hw: pointer to the hw struct
2474  * @seid: vsi number
2475  * @enable: set broadcast promiscuous enable/disable for a given VLAN
2476  * @vid: The VLAN tag filter - capture any broadcast packet with this VLAN tag
2477  * @cmd_details: pointer to command details structure or NULL
2478  **/
2479 enum i40e_status_code i40e_aq_set_vsi_bc_promisc_on_vlan(struct i40e_hw *hw,
2480                                 u16 seid, bool enable, u16 vid,
2481                                 struct i40e_asq_cmd_details *cmd_details)
2482 {
2483         struct i40e_aq_desc desc;
2484         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2485                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2486         enum i40e_status_code status;
2487         u16 flags = 0;
2488
2489         i40e_fill_default_direct_cmd_desc(&desc,
2490                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2491
2492         if (enable)
2493                 flags |= I40E_AQC_SET_VSI_PROMISC_BROADCAST;
2494
2495         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2496         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2497         cmd->seid = CPU_TO_LE16(seid);
2498         cmd->vlan_tag = CPU_TO_LE16(vid | I40E_AQC_SET_VSI_VLAN_VALID);
2499
2500         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2501
2502         return status;
2503 }
2504
2505 /**
2506  * i40e_aq_set_vsi_broadcast
2507  * @hw: pointer to the hw struct
2508  * @seid: vsi number
2509  * @set_filter: true to set filter, false to clear filter
2510  * @cmd_details: pointer to command details structure or NULL
2511  *
2512  * Set or clear the broadcast promiscuous flag (filter) for a given VSI.
2513  **/
2514 enum i40e_status_code i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
2515                                 u16 seid, bool set_filter,
2516                                 struct i40e_asq_cmd_details *cmd_details)
2517 {
2518         struct i40e_aq_desc desc;
2519         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2520                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2521         enum i40e_status_code status;
2522
2523         i40e_fill_default_direct_cmd_desc(&desc,
2524                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2525
2526         if (set_filter)
2527                 cmd->promiscuous_flags
2528                             |= CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2529         else
2530                 cmd->promiscuous_flags
2531                             &= CPU_TO_LE16(~I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2532
2533         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
2534         cmd->seid = CPU_TO_LE16(seid);
2535         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2536
2537         return status;
2538 }
2539
2540 /**
2541  * i40e_aq_set_vsi_vlan_promisc - control the VLAN promiscuous setting
2542  * @hw: pointer to the hw struct
2543  * @seid: vsi number
2544  * @enable: set MAC L2 layer unicast promiscuous enable/disable for a given VLAN
2545  * @cmd_details: pointer to command details structure or NULL
2546  **/
2547 enum i40e_status_code i40e_aq_set_vsi_vlan_promisc(struct i40e_hw *hw,
2548                                 u16 seid, bool enable,
2549                                 struct i40e_asq_cmd_details *cmd_details)
2550 {
2551         struct i40e_aq_desc desc;
2552         struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
2553                 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
2554         enum i40e_status_code status;
2555         u16 flags = 0;
2556
2557         i40e_fill_default_direct_cmd_desc(&desc,
2558                                         i40e_aqc_opc_set_vsi_promiscuous_modes);
2559         if (enable)
2560                 flags |= I40E_AQC_SET_VSI_PROMISC_VLAN;
2561
2562         cmd->promiscuous_flags = CPU_TO_LE16(flags);
2563         cmd->valid_flags = CPU_TO_LE16(I40E_AQC_SET_VSI_PROMISC_VLAN);
2564         cmd->seid = CPU_TO_LE16(seid);
2565
2566         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2567
2568         return status;
2569 }
2570
2571 /**
2572  * i40e_get_vsi_params - get VSI configuration info
2573  * @hw: pointer to the hw struct
2574  * @vsi_ctx: pointer to a vsi context struct
2575  * @cmd_details: pointer to command details structure or NULL
2576  **/
2577 enum i40e_status_code i40e_aq_get_vsi_params(struct i40e_hw *hw,
2578                                 struct i40e_vsi_context *vsi_ctx,
2579                                 struct i40e_asq_cmd_details *cmd_details)
2580 {
2581         struct i40e_aq_desc desc;
2582         struct i40e_aqc_add_get_update_vsi *cmd =
2583                 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
2584         struct i40e_aqc_add_get_update_vsi_completion *resp =
2585                 (struct i40e_aqc_add_get_update_vsi_completion *)
2586                 &desc.params.raw;
2587         enum i40e_status_code status;
2588
2589         UNREFERENCED_1PARAMETER(cmd_details);
2590         i40e_fill_default_direct_cmd_desc(&desc,
2591                                           i40e_aqc_opc_get_vsi_parameters);
2592
2593         cmd->uplink_seid = CPU_TO_LE16(vsi_ctx->seid);
2594
2595         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
2596
2597         status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2598                                     sizeof(vsi_ctx->info), NULL);
2599
2600         if (status != I40E_SUCCESS)
2601                 goto aq_get_vsi_params_exit;
2602
2603         vsi_ctx->seid = LE16_TO_CPU(resp->seid);
2604         vsi_ctx->vsi_number = LE16_TO_CPU(resp->vsi_number);
2605         vsi_ctx->vsis_allocated = LE16_TO_CPU(resp->vsi_used);
2606         vsi_ctx->vsis_unallocated = LE16_TO_CPU(resp->vsi_free);
2607
2608 aq_get_vsi_params_exit:
2609         return status;
2610 }
2611
2612 /**
2613  * i40e_aq_update_vsi_params
2614  * @hw: pointer to the hw struct
2615  * @vsi_ctx: pointer to a vsi context struct
2616  * @cmd_details: pointer to command details structure or NULL
2617  *
2618  * Update a VSI context.
2619  **/
2620 enum i40e_status_code i40e_aq_update_vsi_params(struct i40e_hw *hw,
2621                                 struct i40e_vsi_context *vsi_ctx,
2622                                 struct i40e_asq_cmd_details *cmd_details)
2623 {
2624         struct i40e_aq_desc desc;
2625         struct i40e_aqc_add_get_update_vsi *cmd =
2626                 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
2627         struct i40e_aqc_add_get_update_vsi_completion *resp =
2628                 (struct i40e_aqc_add_get_update_vsi_completion *)
2629                 &desc.params.raw;
2630         enum i40e_status_code status;
2631
2632         i40e_fill_default_direct_cmd_desc(&desc,
2633                                           i40e_aqc_opc_update_vsi_parameters);
2634         cmd->uplink_seid = CPU_TO_LE16(vsi_ctx->seid);
2635
2636         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
2637
2638         status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
2639                                     sizeof(vsi_ctx->info), cmd_details);
2640
2641         vsi_ctx->vsis_allocated = LE16_TO_CPU(resp->vsi_used);
2642         vsi_ctx->vsis_unallocated = LE16_TO_CPU(resp->vsi_free);
2643
2644         return status;
2645 }
2646
2647 /**
2648  * i40e_aq_get_switch_config
2649  * @hw: pointer to the hardware structure
2650  * @buf: pointer to the result buffer
2651  * @buf_size: length of input buffer
2652  * @start_seid: seid to start for the report, 0 == beginning
2653  * @cmd_details: pointer to command details structure or NULL
2654  *
2655  * Fill the buf with switch configuration returned from AdminQ command
2656  **/
2657 enum i40e_status_code i40e_aq_get_switch_config(struct i40e_hw *hw,
2658                                 struct i40e_aqc_get_switch_config_resp *buf,
2659                                 u16 buf_size, u16 *start_seid,
2660                                 struct i40e_asq_cmd_details *cmd_details)
2661 {
2662         struct i40e_aq_desc desc;
2663         struct i40e_aqc_switch_seid *scfg =
2664                 (struct i40e_aqc_switch_seid *)&desc.params.raw;
2665         enum i40e_status_code status;
2666
2667         i40e_fill_default_direct_cmd_desc(&desc,
2668                                           i40e_aqc_opc_get_switch_config);
2669         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
2670         if (buf_size > I40E_AQ_LARGE_BUF)
2671                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
2672         scfg->seid = CPU_TO_LE16(*start_seid);
2673
2674         status = i40e_asq_send_command(hw, &desc, buf, buf_size, cmd_details);
2675         *start_seid = LE16_TO_CPU(scfg->seid);
2676
2677         return status;
2678 }
2679
2680 /**
2681  * i40e_aq_set_switch_config
2682  * @hw: pointer to the hardware structure
2683  * @flags: bit flag values to set
2684  * @valid_flags: which bit flags to set
2685  * @cmd_details: pointer to command details structure or NULL
2686  *
2687  * Set switch configuration bits
2688  **/
2689 enum i40e_status_code i40e_aq_set_switch_config(struct i40e_hw *hw,
2690                                 u16 flags, u16 valid_flags,
2691                                 struct i40e_asq_cmd_details *cmd_details)
2692 {
2693         struct i40e_aq_desc desc;
2694         struct i40e_aqc_set_switch_config *scfg =
2695                 (struct i40e_aqc_set_switch_config *)&desc.params.raw;
2696         enum i40e_status_code status;
2697
2698         i40e_fill_default_direct_cmd_desc(&desc,
2699                                           i40e_aqc_opc_set_switch_config);
2700         scfg->flags = CPU_TO_LE16(flags);
2701         scfg->valid_flags = CPU_TO_LE16(valid_flags);
2702         if (hw->flags & I40E_HW_FLAG_802_1AD_CAPABLE) {
2703                 scfg->switch_tag = CPU_TO_LE16(hw->switch_tag);
2704                 scfg->first_tag = CPU_TO_LE16(hw->first_tag);
2705                 scfg->second_tag = CPU_TO_LE16(hw->second_tag);
2706         }
2707         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2708
2709         return status;
2710 }
2711
2712 /**
2713  * i40e_aq_get_firmware_version
2714  * @hw: pointer to the hw struct
2715  * @fw_major_version: firmware major version
2716  * @fw_minor_version: firmware minor version
2717  * @fw_build: firmware build number
2718  * @api_major_version: major queue version
2719  * @api_minor_version: minor queue version
2720  * @cmd_details: pointer to command details structure or NULL
2721  *
2722  * Get the firmware version from the admin queue commands
2723  **/
2724 enum i40e_status_code i40e_aq_get_firmware_version(struct i40e_hw *hw,
2725                                 u16 *fw_major_version, u16 *fw_minor_version,
2726                                 u32 *fw_build,
2727                                 u16 *api_major_version, u16 *api_minor_version,
2728                                 struct i40e_asq_cmd_details *cmd_details)
2729 {
2730         struct i40e_aq_desc desc;
2731         struct i40e_aqc_get_version *resp =
2732                 (struct i40e_aqc_get_version *)&desc.params.raw;
2733         enum i40e_status_code status;
2734
2735         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_version);
2736
2737         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2738
2739         if (status == I40E_SUCCESS) {
2740                 if (fw_major_version != NULL)
2741                         *fw_major_version = LE16_TO_CPU(resp->fw_major);
2742                 if (fw_minor_version != NULL)
2743                         *fw_minor_version = LE16_TO_CPU(resp->fw_minor);
2744                 if (fw_build != NULL)
2745                         *fw_build = LE32_TO_CPU(resp->fw_build);
2746                 if (api_major_version != NULL)
2747                         *api_major_version = LE16_TO_CPU(resp->api_major);
2748                 if (api_minor_version != NULL)
2749                         *api_minor_version = LE16_TO_CPU(resp->api_minor);
2750
2751                 /* A workaround to fix the API version in SW */
2752                 if (api_major_version && api_minor_version &&
2753                     fw_major_version && fw_minor_version &&
2754                     ((*api_major_version == 1) && (*api_minor_version == 1)) &&
2755                     (((*fw_major_version == 4) && (*fw_minor_version >= 2)) ||
2756                      (*fw_major_version > 4)))
2757                         *api_minor_version = 2;
2758         }
2759
2760         return status;
2761 }
2762
2763 /**
2764  * i40e_aq_send_driver_version
2765  * @hw: pointer to the hw struct
2766  * @dv: driver's major, minor version
2767  * @cmd_details: pointer to command details structure or NULL
2768  *
2769  * Send the driver version to the firmware
2770  **/
2771 enum i40e_status_code i40e_aq_send_driver_version(struct i40e_hw *hw,
2772                                 struct i40e_driver_version *dv,
2773                                 struct i40e_asq_cmd_details *cmd_details)
2774 {
2775         struct i40e_aq_desc desc;
2776         struct i40e_aqc_driver_version *cmd =
2777                 (struct i40e_aqc_driver_version *)&desc.params.raw;
2778         enum i40e_status_code status;
2779         u16 len;
2780
2781         if (dv == NULL)
2782                 return I40E_ERR_PARAM;
2783
2784         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_driver_version);
2785
2786         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD);
2787         cmd->driver_major_ver = dv->major_version;
2788         cmd->driver_minor_ver = dv->minor_version;
2789         cmd->driver_build_ver = dv->build_version;
2790         cmd->driver_subbuild_ver = dv->subbuild_version;
2791
2792         len = 0;
2793         while (len < sizeof(dv->driver_string) &&
2794                (dv->driver_string[len] < 0x80) &&
2795                dv->driver_string[len])
2796                 len++;
2797         status = i40e_asq_send_command(hw, &desc, dv->driver_string,
2798                                        len, cmd_details);
2799
2800         return status;
2801 }
2802
2803 /**
2804  * i40e_get_link_status - get status of the HW network link
2805  * @hw: pointer to the hw struct
2806  * @link_up: pointer to bool (true/false = linkup/linkdown)
2807  *
2808  * Variable link_up true if link is up, false if link is down.
2809  * The variable link_up is invalid if returned value of status != I40E_SUCCESS
2810  *
2811  * Side effect: LinkStatusEvent reporting becomes enabled
2812  **/
2813 enum i40e_status_code i40e_get_link_status(struct i40e_hw *hw, bool *link_up)
2814 {
2815         enum i40e_status_code status = I40E_SUCCESS;
2816
2817         if (hw->phy.get_link_info) {
2818                 status = i40e_update_link_info(hw);
2819
2820                 if (status != I40E_SUCCESS)
2821                         i40e_debug(hw, I40E_DEBUG_LINK, "get link failed: status %d\n",
2822                                    status);
2823         }
2824
2825         *link_up = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
2826
2827         return status;
2828 }
2829
2830 /**
2831  * i40e_updatelink_status - update status of the HW network link
2832  * @hw: pointer to the hw struct
2833  **/
2834 enum i40e_status_code i40e_update_link_info(struct i40e_hw *hw)
2835 {
2836         struct i40e_aq_get_phy_abilities_resp abilities;
2837         enum i40e_status_code status = I40E_SUCCESS;
2838
2839         status = i40e_aq_get_link_info(hw, true, NULL, NULL);
2840         if (status)
2841                 return status;
2842
2843         /* extra checking needed to ensure link info to user is timely */
2844         if ((hw->phy.link_info.link_info & I40E_AQ_MEDIA_AVAILABLE) &&
2845             ((hw->phy.link_info.link_info & I40E_AQ_LINK_UP) ||
2846              !(hw->phy.link_info_old.link_info & I40E_AQ_LINK_UP))) {
2847                 status = i40e_aq_get_phy_capabilities(hw, false, false,
2848                                                       &abilities, NULL);
2849                 if (status)
2850                         return status;
2851
2852                 hw->phy.link_info.req_fec_info =
2853                         abilities.fec_cfg_curr_mod_ext_info &
2854                         (I40E_AQ_REQUEST_FEC_KR | I40E_AQ_REQUEST_FEC_RS);
2855
2856                 i40e_memcpy(hw->phy.link_info.module_type, &abilities.module_type,
2857                         sizeof(hw->phy.link_info.module_type), I40E_NONDMA_TO_NONDMA);
2858         }
2859         return status;
2860 }
2861
2862
2863 /**
2864  * i40e_get_link_speed
2865  * @hw: pointer to the hw struct
2866  *
2867  * Returns the link speed of the adapter.
2868  **/
2869 enum i40e_aq_link_speed i40e_get_link_speed(struct i40e_hw *hw)
2870 {
2871         enum i40e_aq_link_speed speed = I40E_LINK_SPEED_UNKNOWN;
2872         enum i40e_status_code status = I40E_SUCCESS;
2873
2874         if (hw->phy.get_link_info) {
2875                 status = i40e_aq_get_link_info(hw, true, NULL, NULL);
2876
2877                 if (status != I40E_SUCCESS)
2878                         goto i40e_link_speed_exit;
2879         }
2880
2881         speed = hw->phy.link_info.link_speed;
2882
2883 i40e_link_speed_exit:
2884         return speed;
2885 }
2886
2887 /**
2888  * i40e_aq_add_veb - Insert a VEB between the VSI and the MAC
2889  * @hw: pointer to the hw struct
2890  * @uplink_seid: the MAC or other gizmo SEID
2891  * @downlink_seid: the VSI SEID
2892  * @enabled_tc: bitmap of TCs to be enabled
2893  * @default_port: true for default port VSI, false for control port
2894  * @veb_seid: pointer to where to put the resulting VEB SEID
2895  * @enable_stats: true to turn on VEB stats
2896  * @cmd_details: pointer to command details structure or NULL
2897  *
2898  * This asks the FW to add a VEB between the uplink and downlink
2899  * elements.  If the uplink SEID is 0, this will be a floating VEB.
2900  **/
2901 enum i40e_status_code i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
2902                                 u16 downlink_seid, u8 enabled_tc,
2903                                 bool default_port, u16 *veb_seid,
2904                                 bool enable_stats,
2905                                 struct i40e_asq_cmd_details *cmd_details)
2906 {
2907         struct i40e_aq_desc desc;
2908         struct i40e_aqc_add_veb *cmd =
2909                 (struct i40e_aqc_add_veb *)&desc.params.raw;
2910         struct i40e_aqc_add_veb_completion *resp =
2911                 (struct i40e_aqc_add_veb_completion *)&desc.params.raw;
2912         enum i40e_status_code status;
2913         u16 veb_flags = 0;
2914
2915         /* SEIDs need to either both be set or both be 0 for floating VEB */
2916         if (!!uplink_seid != !!downlink_seid)
2917                 return I40E_ERR_PARAM;
2918
2919         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_veb);
2920
2921         cmd->uplink_seid = CPU_TO_LE16(uplink_seid);
2922         cmd->downlink_seid = CPU_TO_LE16(downlink_seid);
2923         cmd->enable_tcs = enabled_tc;
2924         if (!uplink_seid)
2925                 veb_flags |= I40E_AQC_ADD_VEB_FLOATING;
2926         if (default_port)
2927                 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT;
2928         else
2929                 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DATA;
2930
2931         /* reverse logic here: set the bitflag to disable the stats */
2932         if (!enable_stats)
2933                 veb_flags |= I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS;
2934
2935         cmd->veb_flags = CPU_TO_LE16(veb_flags);
2936
2937         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2938
2939         if (!status && veb_seid)
2940                 *veb_seid = LE16_TO_CPU(resp->veb_seid);
2941
2942         return status;
2943 }
2944
2945 /**
2946  * i40e_aq_get_veb_parameters - Retrieve VEB parameters
2947  * @hw: pointer to the hw struct
2948  * @veb_seid: the SEID of the VEB to query
2949  * @switch_id: the uplink switch id
2950  * @floating: set to true if the VEB is floating
2951  * @statistic_index: index of the stats counter block for this VEB
2952  * @vebs_used: number of VEB's used by function
2953  * @vebs_free: total VEB's not reserved by any function
2954  * @cmd_details: pointer to command details structure or NULL
2955  *
2956  * This retrieves the parameters for a particular VEB, specified by
2957  * uplink_seid, and returns them to the caller.
2958  **/
2959 enum i40e_status_code i40e_aq_get_veb_parameters(struct i40e_hw *hw,
2960                                 u16 veb_seid, u16 *switch_id,
2961                                 bool *floating, u16 *statistic_index,
2962                                 u16 *vebs_used, u16 *vebs_free,
2963                                 struct i40e_asq_cmd_details *cmd_details)
2964 {
2965         struct i40e_aq_desc desc;
2966         struct i40e_aqc_get_veb_parameters_completion *cmd_resp =
2967                 (struct i40e_aqc_get_veb_parameters_completion *)
2968                 &desc.params.raw;
2969         enum i40e_status_code status;
2970
2971         if (veb_seid == 0)
2972                 return I40E_ERR_PARAM;
2973
2974         i40e_fill_default_direct_cmd_desc(&desc,
2975                                           i40e_aqc_opc_get_veb_parameters);
2976         cmd_resp->seid = CPU_TO_LE16(veb_seid);
2977
2978         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2979         if (status)
2980                 goto get_veb_exit;
2981
2982         if (switch_id)
2983                 *switch_id = LE16_TO_CPU(cmd_resp->switch_id);
2984         if (statistic_index)
2985                 *statistic_index = LE16_TO_CPU(cmd_resp->statistic_index);
2986         if (vebs_used)
2987                 *vebs_used = LE16_TO_CPU(cmd_resp->vebs_used);
2988         if (vebs_free)
2989                 *vebs_free = LE16_TO_CPU(cmd_resp->vebs_free);
2990         if (floating) {
2991                 u16 flags = LE16_TO_CPU(cmd_resp->veb_flags);
2992
2993                 if (flags & I40E_AQC_ADD_VEB_FLOATING)
2994                         *floating = true;
2995                 else
2996                         *floating = false;
2997         }
2998
2999 get_veb_exit:
3000         return status;
3001 }
3002
3003 /**
3004  * i40e_aq_add_macvlan
3005  * @hw: pointer to the hw struct
3006  * @seid: VSI for the mac address
3007  * @mv_list: list of macvlans to be added
3008  * @count: length of the list
3009  * @cmd_details: pointer to command details structure or NULL
3010  *
3011  * Add MAC/VLAN addresses to the HW filtering
3012  **/
3013 enum i40e_status_code i40e_aq_add_macvlan(struct i40e_hw *hw, u16 seid,
3014                         struct i40e_aqc_add_macvlan_element_data *mv_list,
3015                         u16 count, struct i40e_asq_cmd_details *cmd_details)
3016 {
3017         struct i40e_aq_desc desc;
3018         struct i40e_aqc_macvlan *cmd =
3019                 (struct i40e_aqc_macvlan *)&desc.params.raw;
3020         enum i40e_status_code status;
3021         u16 buf_size;
3022         int i;
3023
3024         if (count == 0 || !mv_list || !hw)
3025                 return I40E_ERR_PARAM;
3026
3027         buf_size = count * sizeof(*mv_list);
3028
3029         /* prep the rest of the request */
3030         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_macvlan);
3031         cmd->num_addresses = CPU_TO_LE16(count);
3032         cmd->seid[0] = CPU_TO_LE16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
3033         cmd->seid[1] = 0;
3034         cmd->seid[2] = 0;
3035
3036         for (i = 0; i < count; i++)
3037                 if (I40E_IS_MULTICAST(mv_list[i].mac_addr))
3038                         mv_list[i].flags |=
3039                             CPU_TO_LE16(I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC);
3040
3041         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3042         if (buf_size > I40E_AQ_LARGE_BUF)
3043                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3044
3045         status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
3046                                        cmd_details);
3047
3048         return status;
3049 }
3050
3051 /**
3052  * i40e_aq_remove_macvlan
3053  * @hw: pointer to the hw struct
3054  * @seid: VSI for the mac address
3055  * @mv_list: list of macvlans to be removed
3056  * @count: length of the list
3057  * @cmd_details: pointer to command details structure or NULL
3058  *
3059  * Remove MAC/VLAN addresses from the HW filtering
3060  **/
3061 enum i40e_status_code i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 seid,
3062                         struct i40e_aqc_remove_macvlan_element_data *mv_list,
3063                         u16 count, struct i40e_asq_cmd_details *cmd_details)
3064 {
3065         struct i40e_aq_desc desc;
3066         struct i40e_aqc_macvlan *cmd =
3067                 (struct i40e_aqc_macvlan *)&desc.params.raw;
3068         enum i40e_status_code status;
3069         u16 buf_size;
3070
3071         if (count == 0 || !mv_list || !hw)
3072                 return I40E_ERR_PARAM;
3073
3074         buf_size = count * sizeof(*mv_list);
3075
3076         /* prep the rest of the request */
3077         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_macvlan);
3078         cmd->num_addresses = CPU_TO_LE16(count);
3079         cmd->seid[0] = CPU_TO_LE16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
3080         cmd->seid[1] = 0;
3081         cmd->seid[2] = 0;
3082
3083         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3084         if (buf_size > I40E_AQ_LARGE_BUF)
3085                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3086
3087         status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
3088                                        cmd_details);
3089
3090         return status;
3091 }
3092
3093 /**
3094  * i40e_mirrorrule_op - Internal helper function to add/delete mirror rule
3095  * @hw: pointer to the hw struct
3096  * @opcode: AQ opcode for add or delete mirror rule
3097  * @sw_seid: Switch SEID (to which rule refers)
3098  * @rule_type: Rule Type (ingress/egress/VLAN)
3099  * @id: Destination VSI SEID or Rule ID
3100  * @count: length of the list
3101  * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
3102  * @cmd_details: pointer to command details structure or NULL
3103  * @rule_id: Rule ID returned from FW
3104  * @rules_used: Number of rules used in internal switch
3105  * @rules_free: Number of rules free in internal switch
3106  *
3107  * Add/Delete a mirror rule to a specific switch. Mirror rules are supported for
3108  * VEBs/VEPA elements only
3109  **/
3110 static enum i40e_status_code i40e_mirrorrule_op(struct i40e_hw *hw,
3111                         u16 opcode, u16 sw_seid, u16 rule_type, u16 id,
3112                         u16 count, __le16 *mr_list,
3113                         struct i40e_asq_cmd_details *cmd_details,
3114                         u16 *rule_id, u16 *rules_used, u16 *rules_free)
3115 {
3116         struct i40e_aq_desc desc;
3117         struct i40e_aqc_add_delete_mirror_rule *cmd =
3118                 (struct i40e_aqc_add_delete_mirror_rule *)&desc.params.raw;
3119         struct i40e_aqc_add_delete_mirror_rule_completion *resp =
3120         (struct i40e_aqc_add_delete_mirror_rule_completion *)&desc.params.raw;
3121         enum i40e_status_code status;
3122         u16 buf_size;
3123
3124         buf_size = count * sizeof(*mr_list);
3125
3126         /* prep the rest of the request */
3127         i40e_fill_default_direct_cmd_desc(&desc, opcode);
3128         cmd->seid = CPU_TO_LE16(sw_seid);
3129         cmd->rule_type = CPU_TO_LE16(rule_type &
3130                                      I40E_AQC_MIRROR_RULE_TYPE_MASK);
3131         cmd->num_entries = CPU_TO_LE16(count);
3132         /* Dest VSI for add, rule_id for delete */
3133         cmd->destination = CPU_TO_LE16(id);
3134         if (mr_list) {
3135                 desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF |
3136                                                 I40E_AQ_FLAG_RD));
3137                 if (buf_size > I40E_AQ_LARGE_BUF)
3138                         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3139         }
3140
3141         status = i40e_asq_send_command(hw, &desc, mr_list, buf_size,
3142                                        cmd_details);
3143         if (status == I40E_SUCCESS ||
3144             hw->aq.asq_last_status == I40E_AQ_RC_ENOSPC) {
3145                 if (rule_id)
3146                         *rule_id = LE16_TO_CPU(resp->rule_id);
3147                 if (rules_used)
3148                         *rules_used = LE16_TO_CPU(resp->mirror_rules_used);
3149                 if (rules_free)
3150                         *rules_free = LE16_TO_CPU(resp->mirror_rules_free);
3151         }
3152         return status;
3153 }
3154
3155 /**
3156  * i40e_aq_add_mirrorrule - add a mirror rule
3157  * @hw: pointer to the hw struct
3158  * @sw_seid: Switch SEID (to which rule refers)
3159  * @rule_type: Rule Type (ingress/egress/VLAN)
3160  * @dest_vsi: SEID of VSI to which packets will be mirrored
3161  * @count: length of the list
3162  * @mr_list: list of mirrored VSI SEIDs or VLAN IDs
3163  * @cmd_details: pointer to command details structure or NULL
3164  * @rule_id: Rule ID returned from FW
3165  * @rules_used: Number of rules used in internal switch
3166  * @rules_free: Number of rules free in internal switch
3167  *
3168  * Add mirror rule. Mirror rules are supported for VEBs or VEPA elements only
3169  **/
3170 enum i40e_status_code i40e_aq_add_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
3171                         u16 rule_type, u16 dest_vsi, u16 count, __le16 *mr_list,
3172                         struct i40e_asq_cmd_details *cmd_details,
3173                         u16 *rule_id, u16 *rules_used, u16 *rules_free)
3174 {
3175         if (!(rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS ||
3176             rule_type == I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS)) {
3177                 if (count == 0 || !mr_list)
3178                         return I40E_ERR_PARAM;
3179         }
3180
3181         return i40e_mirrorrule_op(hw, i40e_aqc_opc_add_mirror_rule, sw_seid,
3182                                   rule_type, dest_vsi, count, mr_list,
3183                                   cmd_details, rule_id, rules_used, rules_free);
3184 }
3185
3186 /**
3187  * i40e_aq_delete_mirrorrule - delete a mirror rule
3188  * @hw: pointer to the hw struct
3189  * @sw_seid: Switch SEID (to which rule refers)
3190  * @rule_type: Rule Type (ingress/egress/VLAN)
3191  * @count: length of the list
3192  * @rule_id: Rule ID that is returned in the receive desc as part of
3193  *              add_mirrorrule.
3194  * @mr_list: list of mirrored VLAN IDs to be removed
3195  * @cmd_details: pointer to command details structure or NULL
3196  * @rules_used: Number of rules used in internal switch
3197  * @rules_free: Number of rules free in internal switch
3198  *
3199  * Delete a mirror rule. Mirror rules are supported for VEBs/VEPA elements only
3200  **/
3201 enum i40e_status_code i40e_aq_delete_mirrorrule(struct i40e_hw *hw, u16 sw_seid,
3202                         u16 rule_type, u16 rule_id, u16 count, __le16 *mr_list,
3203                         struct i40e_asq_cmd_details *cmd_details,
3204                         u16 *rules_used, u16 *rules_free)
3205 {
3206         /* Rule ID has to be valid except rule_type: INGRESS VLAN mirroring */
3207         if (rule_type == I40E_AQC_MIRROR_RULE_TYPE_VLAN) {
3208                 /* count and mr_list shall be valid for rule_type INGRESS VLAN
3209                  * mirroring. For other rule_type, count and rule_type should
3210                  * not matter.
3211                  */
3212                 if (count == 0 || !mr_list)
3213                         return I40E_ERR_PARAM;
3214         }
3215
3216         return i40e_mirrorrule_op(hw, i40e_aqc_opc_delete_mirror_rule, sw_seid,
3217                                   rule_type, rule_id, count, mr_list,
3218                                   cmd_details, NULL, rules_used, rules_free);
3219 }
3220
3221 /**
3222  * i40e_aq_add_vlan - Add VLAN ids to the HW filtering
3223  * @hw: pointer to the hw struct
3224  * @seid: VSI for the vlan filters
3225  * @v_list: list of vlan filters to be added
3226  * @count: length of the list
3227  * @cmd_details: pointer to command details structure or NULL
3228  **/
3229 enum i40e_status_code i40e_aq_add_vlan(struct i40e_hw *hw, u16 seid,
3230                         struct i40e_aqc_add_remove_vlan_element_data *v_list,
3231                         u8 count, struct i40e_asq_cmd_details *cmd_details)
3232 {
3233         struct i40e_aq_desc desc;
3234         struct i40e_aqc_macvlan *cmd =
3235                 (struct i40e_aqc_macvlan *)&desc.params.raw;
3236         enum i40e_status_code status;
3237         u16 buf_size;
3238
3239         if (count == 0 || !v_list || !hw)
3240                 return I40E_ERR_PARAM;
3241
3242         buf_size = count * sizeof(*v_list);
3243
3244         /* prep the rest of the request */
3245         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_vlan);
3246         cmd->num_addresses = CPU_TO_LE16(count);
3247         cmd->seid[0] = CPU_TO_LE16(seid | I40E_AQC_MACVLAN_CMD_SEID_VALID);
3248         cmd->seid[1] = 0;
3249         cmd->seid[2] = 0;
3250
3251         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3252         if (buf_size > I40E_AQ_LARGE_BUF)
3253                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3254
3255         status = i40e_asq_send_command(hw, &desc, v_list, buf_size,
3256                                        cmd_details);
3257
3258         return status;
3259 }
3260
3261 /**
3262  * i40e_aq_remove_vlan - Remove VLANs from the HW filtering
3263  * @hw: pointer to the hw struct
3264  * @seid: VSI for the vlan filters
3265  * @v_list: list of macvlans to be removed
3266  * @count: length of the list
3267  * @cmd_details: pointer to command details structure or NULL
3268  **/
3269 enum i40e_status_code i40e_aq_remove_vlan(struct i40e_hw *hw, u16 seid,
3270                         struct i40e_aqc_add_remove_vlan_element_data *v_list,
3271                         u8 count, struct i40e_asq_cmd_details *cmd_details)
3272 {
3273         struct i40e_aq_desc desc;
3274         struct i40e_aqc_macvlan *cmd =
3275                 (struct i40e_aqc_macvlan *)&desc.params.raw;
3276         enum i40e_status_code status;
3277         u16 buf_size;
3278
3279         if (count == 0 || !v_list || !hw)
3280                 return I40E_ERR_PARAM;
3281
3282         buf_size = count * sizeof(*v_list);
3283
3284         /* prep the rest of the request */
3285         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_vlan);
3286         cmd->num_addresses = CPU_TO_LE16(count);
3287         cmd->seid[0] = CPU_TO_LE16(seid | I40E_AQC_MACVLAN_CMD_SEID_VALID);
3288         cmd->seid[1] = 0;
3289         cmd->seid[2] = 0;
3290
3291         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3292         if (buf_size > I40E_AQ_LARGE_BUF)
3293                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3294
3295         status = i40e_asq_send_command(hw, &desc, v_list, buf_size,
3296                                        cmd_details);
3297
3298         return status;
3299 }
3300
3301 /**
3302  * i40e_aq_send_msg_to_vf
3303  * @hw: pointer to the hardware structure
3304  * @vfid: vf id to send msg
3305  * @v_opcode: opcodes for VF-PF communication
3306  * @v_retval: return error code
3307  * @msg: pointer to the msg buffer
3308  * @msglen: msg length
3309  * @cmd_details: pointer to command details
3310  *
3311  * send msg to vf
3312  **/
3313 enum i40e_status_code i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
3314                                 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
3315                                 struct i40e_asq_cmd_details *cmd_details)
3316 {
3317         struct i40e_aq_desc desc;
3318         struct i40e_aqc_pf_vf_message *cmd =
3319                 (struct i40e_aqc_pf_vf_message *)&desc.params.raw;
3320         enum i40e_status_code status;
3321
3322         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_send_msg_to_vf);
3323         cmd->id = CPU_TO_LE32(vfid);
3324         desc.cookie_high = CPU_TO_LE32(v_opcode);
3325         desc.cookie_low = CPU_TO_LE32(v_retval);
3326         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_SI);
3327         if (msglen) {
3328                 desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF |
3329                                                 I40E_AQ_FLAG_RD));
3330                 if (msglen > I40E_AQ_LARGE_BUF)
3331                         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3332                 desc.datalen = CPU_TO_LE16(msglen);
3333         }
3334         status = i40e_asq_send_command(hw, &desc, msg, msglen, cmd_details);
3335
3336         return status;
3337 }
3338
3339 /**
3340  * i40e_aq_debug_read_register
3341  * @hw: pointer to the hw struct
3342  * @reg_addr: register address
3343  * @reg_val: register value
3344  * @cmd_details: pointer to command details structure or NULL
3345  *
3346  * Read the register using the admin queue commands
3347  **/
3348 enum i40e_status_code i40e_aq_debug_read_register(struct i40e_hw *hw,
3349                                 u32 reg_addr, u64 *reg_val,
3350                                 struct i40e_asq_cmd_details *cmd_details)
3351 {
3352         struct i40e_aq_desc desc;
3353         struct i40e_aqc_debug_reg_read_write *cmd_resp =
3354                 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
3355         enum i40e_status_code status;
3356
3357         if (reg_val == NULL)
3358                 return I40E_ERR_PARAM;
3359
3360         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_read_reg);
3361
3362         cmd_resp->address = CPU_TO_LE32(reg_addr);
3363
3364         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3365
3366         if (status == I40E_SUCCESS) {
3367                 *reg_val = ((u64)LE32_TO_CPU(cmd_resp->value_high) << 32) |
3368                            (u64)LE32_TO_CPU(cmd_resp->value_low);
3369         }
3370
3371         return status;
3372 }
3373
3374 /**
3375  * i40e_aq_debug_write_register
3376  * @hw: pointer to the hw struct
3377  * @reg_addr: register address
3378  * @reg_val: register value
3379  * @cmd_details: pointer to command details structure or NULL
3380  *
3381  * Write to a register using the admin queue commands
3382  **/
3383 enum i40e_status_code i40e_aq_debug_write_register(struct i40e_hw *hw,
3384                                 u32 reg_addr, u64 reg_val,
3385                                 struct i40e_asq_cmd_details *cmd_details)
3386 {
3387         struct i40e_aq_desc desc;
3388         struct i40e_aqc_debug_reg_read_write *cmd =
3389                 (struct i40e_aqc_debug_reg_read_write *)&desc.params.raw;
3390         enum i40e_status_code status;
3391
3392         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_debug_write_reg);
3393
3394         cmd->address = CPU_TO_LE32(reg_addr);
3395         cmd->value_high = CPU_TO_LE32((u32)(reg_val >> 32));
3396         cmd->value_low = CPU_TO_LE32((u32)(reg_val & 0xFFFFFFFF));
3397
3398         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3399
3400         return status;
3401 }
3402
3403 /**
3404  * i40e_aq_request_resource
3405  * @hw: pointer to the hw struct
3406  * @resource: resource id
3407  * @access: access type
3408  * @sdp_number: resource number
3409  * @timeout: the maximum time in ms that the driver may hold the resource
3410  * @cmd_details: pointer to command details structure or NULL
3411  *
3412  * requests common resource using the admin queue commands
3413  **/
3414 enum i40e_status_code i40e_aq_request_resource(struct i40e_hw *hw,
3415                                 enum i40e_aq_resources_ids resource,
3416                                 enum i40e_aq_resource_access_type access,
3417                                 u8 sdp_number, u64 *timeout,
3418                                 struct i40e_asq_cmd_details *cmd_details)
3419 {
3420         struct i40e_aq_desc desc;
3421         struct i40e_aqc_request_resource *cmd_resp =
3422                 (struct i40e_aqc_request_resource *)&desc.params.raw;
3423         enum i40e_status_code status;
3424
3425         DEBUGFUNC("i40e_aq_request_resource");
3426
3427         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_request_resource);
3428
3429         cmd_resp->resource_id = CPU_TO_LE16(resource);
3430         cmd_resp->access_type = CPU_TO_LE16(access);
3431         cmd_resp->resource_number = CPU_TO_LE32(sdp_number);
3432
3433         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3434         /* The completion specifies the maximum time in ms that the driver
3435          * may hold the resource in the Timeout field.
3436          * If the resource is held by someone else, the command completes with
3437          * busy return value and the timeout field indicates the maximum time
3438          * the current owner of the resource has to free it.
3439          */
3440         if (status == I40E_SUCCESS || hw->aq.asq_last_status == I40E_AQ_RC_EBUSY)
3441                 *timeout = LE32_TO_CPU(cmd_resp->timeout);
3442
3443         return status;
3444 }
3445
3446 /**
3447  * i40e_aq_release_resource
3448  * @hw: pointer to the hw struct
3449  * @resource: resource id
3450  * @sdp_number: resource number
3451  * @cmd_details: pointer to command details structure or NULL
3452  *
3453  * release common resource using the admin queue commands
3454  **/
3455 enum i40e_status_code i40e_aq_release_resource(struct i40e_hw *hw,
3456                                 enum i40e_aq_resources_ids resource,
3457                                 u8 sdp_number,
3458                                 struct i40e_asq_cmd_details *cmd_details)
3459 {
3460         struct i40e_aq_desc desc;
3461         struct i40e_aqc_request_resource *cmd =
3462                 (struct i40e_aqc_request_resource *)&desc.params.raw;
3463         enum i40e_status_code status;
3464
3465         DEBUGFUNC("i40e_aq_release_resource");
3466
3467         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_release_resource);
3468
3469         cmd->resource_id = CPU_TO_LE16(resource);
3470         cmd->resource_number = CPU_TO_LE32(sdp_number);
3471
3472         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3473
3474         return status;
3475 }
3476
3477 /**
3478  * i40e_aq_read_nvm
3479  * @hw: pointer to the hw struct
3480  * @module_pointer: module pointer location in words from the NVM beginning
3481  * @offset: byte offset from the module beginning
3482  * @length: length of the section to be read (in bytes from the offset)
3483  * @data: command buffer (size [bytes] = length)
3484  * @last_command: tells if this is the last command in a series
3485  * @cmd_details: pointer to command details structure or NULL
3486  *
3487  * Read the NVM using the admin queue commands
3488  **/
3489 enum i40e_status_code i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
3490                                 u32 offset, u16 length, void *data,
3491                                 bool last_command,
3492                                 struct i40e_asq_cmd_details *cmd_details)
3493 {
3494         struct i40e_aq_desc desc;
3495         struct i40e_aqc_nvm_update *cmd =
3496                 (struct i40e_aqc_nvm_update *)&desc.params.raw;
3497         enum i40e_status_code status;
3498
3499         DEBUGFUNC("i40e_aq_read_nvm");
3500
3501         /* In offset the highest byte must be zeroed. */
3502         if (offset & 0xFF000000) {
3503                 status = I40E_ERR_PARAM;
3504                 goto i40e_aq_read_nvm_exit;
3505         }
3506
3507         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_read);
3508
3509         /* If this is the last command in a series, set the proper flag. */
3510         if (last_command)
3511                 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
3512         cmd->module_pointer = module_pointer;
3513         cmd->offset = CPU_TO_LE32(offset);
3514         cmd->length = CPU_TO_LE16(length);
3515
3516         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
3517         if (length > I40E_AQ_LARGE_BUF)
3518                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3519
3520         status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
3521
3522 i40e_aq_read_nvm_exit:
3523         return status;
3524 }
3525
3526 /**
3527  * i40e_aq_read_nvm_config - read an nvm config block
3528  * @hw: pointer to the hw struct
3529  * @cmd_flags: NVM access admin command bits
3530  * @field_id: field or feature id
3531  * @data: buffer for result
3532  * @buf_size: buffer size
3533  * @element_count: pointer to count of elements read by FW
3534  * @cmd_details: pointer to command details structure or NULL
3535  **/
3536 enum i40e_status_code i40e_aq_read_nvm_config(struct i40e_hw *hw,
3537                                 u8 cmd_flags, u32 field_id, void *data,
3538                                 u16 buf_size, u16 *element_count,
3539                                 struct i40e_asq_cmd_details *cmd_details)
3540 {
3541         struct i40e_aq_desc desc;
3542         struct i40e_aqc_nvm_config_read *cmd =
3543                 (struct i40e_aqc_nvm_config_read *)&desc.params.raw;
3544         enum i40e_status_code status;
3545
3546         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_config_read);
3547         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF));
3548         if (buf_size > I40E_AQ_LARGE_BUF)
3549                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3550
3551         cmd->cmd_flags = CPU_TO_LE16(cmd_flags);
3552         cmd->element_id = CPU_TO_LE16((u16)(0xffff & field_id));
3553         if (cmd_flags & I40E_AQ_ANVM_FEATURE_OR_IMMEDIATE_MASK)
3554                 cmd->element_id_msw = CPU_TO_LE16((u16)(field_id >> 16));
3555         else
3556                 cmd->element_id_msw = 0;
3557
3558         status = i40e_asq_send_command(hw, &desc, data, buf_size, cmd_details);
3559
3560         if (!status && element_count)
3561                 *element_count = LE16_TO_CPU(cmd->element_count);
3562
3563         return status;
3564 }
3565
3566 /**
3567  * i40e_aq_write_nvm_config - write an nvm config block
3568  * @hw: pointer to the hw struct
3569  * @cmd_flags: NVM access admin command bits
3570  * @data: buffer for result
3571  * @buf_size: buffer size
3572  * @element_count: count of elements to be written
3573  * @cmd_details: pointer to command details structure or NULL
3574  **/
3575 enum i40e_status_code i40e_aq_write_nvm_config(struct i40e_hw *hw,
3576                                 u8 cmd_flags, void *data, u16 buf_size,
3577                                 u16 element_count,
3578                                 struct i40e_asq_cmd_details *cmd_details)
3579 {
3580         struct i40e_aq_desc desc;
3581         struct i40e_aqc_nvm_config_write *cmd =
3582                 (struct i40e_aqc_nvm_config_write *)&desc.params.raw;
3583         enum i40e_status_code status;
3584
3585         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_config_write);
3586         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
3587         if (buf_size > I40E_AQ_LARGE_BUF)
3588                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
3589
3590         cmd->element_count = CPU_TO_LE16(element_count);
3591         cmd->cmd_flags = CPU_TO_LE16(cmd_flags);
3592         status = i40e_asq_send_command(hw, &desc, data, buf_size, cmd_details);
3593
3594         return status;
3595 }
3596
3597 /**
3598  * i40e_aq_oem_post_update - triggers an OEM specific flow after update
3599  * @hw: pointer to the hw struct
3600  * @buff: buffer for result
3601  * @buff_size: buffer size
3602  * @cmd_details: pointer to command details structure or NULL
3603  **/
3604 enum i40e_status_code i40e_aq_oem_post_update(struct i40e_hw *hw,
3605                                 void *buff, u16 buff_size,
3606                                 struct i40e_asq_cmd_details *cmd_details)
3607 {
3608         struct i40e_aq_desc desc;
3609         enum i40e_status_code status;
3610
3611         UNREFERENCED_2PARAMETER(buff, buff_size);
3612
3613         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_oem_post_update);
3614         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3615         if (status && LE16_TO_CPU(desc.retval) == I40E_AQ_RC_ESRCH)
3616                 status = I40E_ERR_NOT_IMPLEMENTED;
3617
3618         return status;
3619 }
3620
3621 /**
3622  * i40e_aq_erase_nvm
3623  * @hw: pointer to the hw struct
3624  * @module_pointer: module pointer location in words from the NVM beginning
3625  * @offset: offset in the module (expressed in 4 KB from module's beginning)
3626  * @length: length of the section to be erased (expressed in 4 KB)
3627  * @last_command: tells if this is the last command in a series
3628  * @cmd_details: pointer to command details structure or NULL
3629  *
3630  * Erase the NVM sector using the admin queue commands
3631  **/
3632 enum i40e_status_code i40e_aq_erase_nvm(struct i40e_hw *hw, u8 module_pointer,
3633                                 u32 offset, u16 length, bool last_command,
3634                                 struct i40e_asq_cmd_details *cmd_details)
3635 {
3636         struct i40e_aq_desc desc;
3637         struct i40e_aqc_nvm_update *cmd =
3638                 (struct i40e_aqc_nvm_update *)&desc.params.raw;
3639         enum i40e_status_code status;
3640
3641         DEBUGFUNC("i40e_aq_erase_nvm");
3642
3643         /* In offset the highest byte must be zeroed. */
3644         if (offset & 0xFF000000) {
3645                 status = I40E_ERR_PARAM;
3646                 goto i40e_aq_erase_nvm_exit;
3647         }
3648
3649         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_erase);
3650
3651         /* If this is the last command in a series, set the proper flag. */
3652         if (last_command)
3653                 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
3654         cmd->module_pointer = module_pointer;
3655         cmd->offset = CPU_TO_LE32(offset);
3656         cmd->length = CPU_TO_LE16(length);
3657
3658         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
3659
3660 i40e_aq_erase_nvm_exit:
3661         return status;
3662 }
3663
3664 /**
3665  * i40e_parse_discover_capabilities
3666  * @hw: pointer to the hw struct
3667  * @buff: pointer to a buffer containing device/function capability records
3668  * @cap_count: number of capability records in the list
3669  * @list_type_opc: type of capabilities list to parse
3670  *
3671  * Parse the device/function capabilities list.
3672  **/
3673 STATIC void i40e_parse_discover_capabilities(struct i40e_hw *hw, void *buff,
3674                                      u32 cap_count,
3675                                      enum i40e_admin_queue_opc list_type_opc)
3676 {
3677         struct i40e_aqc_list_capabilities_element_resp *cap;
3678         u32 valid_functions, num_functions;
3679         u32 number, logical_id, phys_id;
3680         struct i40e_hw_capabilities *p;
3681         u8 major_rev;
3682         u32 i = 0;
3683         u16 id;
3684
3685         cap = (struct i40e_aqc_list_capabilities_element_resp *) buff;
3686
3687         if (list_type_opc == i40e_aqc_opc_list_dev_capabilities)
3688                 p = (struct i40e_hw_capabilities *)&hw->dev_caps;
3689         else if (list_type_opc == i40e_aqc_opc_list_func_capabilities)
3690                 p = (struct i40e_hw_capabilities *)&hw->func_caps;
3691         else
3692                 return;
3693
3694         for (i = 0; i < cap_count; i++, cap++) {
3695                 id = LE16_TO_CPU(cap->id);
3696                 number = LE32_TO_CPU(cap->number);
3697                 logical_id = LE32_TO_CPU(cap->logical_id);
3698                 phys_id = LE32_TO_CPU(cap->phys_id);
3699                 major_rev = cap->major_rev;
3700
3701                 switch (id) {
3702                 case I40E_AQ_CAP_ID_SWITCH_MODE:
3703                         p->switch_mode = number;
3704                         i40e_debug(hw, I40E_DEBUG_INIT,
3705                                    "HW Capability: Switch mode = %d\n",
3706                                    p->switch_mode);
3707                         break;
3708                 case I40E_AQ_CAP_ID_MNG_MODE:
3709                         p->management_mode = number;
3710                         if (major_rev > 1) {
3711                                 p->mng_protocols_over_mctp = logical_id;
3712                                 i40e_debug(hw, I40E_DEBUG_INIT,
3713                                            "HW Capability: Protocols over MCTP = %d\n",
3714                                            p->mng_protocols_over_mctp);
3715                         } else {
3716                                 p->mng_protocols_over_mctp = 0;
3717                         }
3718                         i40e_debug(hw, I40E_DEBUG_INIT,
3719                                    "HW Capability: Management Mode = %d\n",
3720                                    p->management_mode);
3721                         break;
3722                 case I40E_AQ_CAP_ID_NPAR_ACTIVE:
3723                         p->npar_enable = number;
3724                         i40e_debug(hw, I40E_DEBUG_INIT,
3725                                    "HW Capability: NPAR enable = %d\n",
3726                                    p->npar_enable);
3727                         break;
3728                 case I40E_AQ_CAP_ID_OS2BMC_CAP:
3729                         p->os2bmc = number;
3730                         i40e_debug(hw, I40E_DEBUG_INIT,
3731                                    "HW Capability: OS2BMC = %d\n", p->os2bmc);
3732                         break;
3733                 case I40E_AQ_CAP_ID_FUNCTIONS_VALID:
3734                         p->valid_functions = number;
3735                         i40e_debug(hw, I40E_DEBUG_INIT,
3736                                    "HW Capability: Valid Functions = %d\n",
3737                                    p->valid_functions);
3738                         break;
3739                 case I40E_AQ_CAP_ID_SRIOV:
3740                         if (number == 1)
3741                                 p->sr_iov_1_1 = true;
3742                         i40e_debug(hw, I40E_DEBUG_INIT,
3743                                    "HW Capability: SR-IOV = %d\n",
3744                                    p->sr_iov_1_1);
3745                         break;
3746                 case I40E_AQ_CAP_ID_VF:
3747                         p->num_vfs = number;
3748                         p->vf_base_id = logical_id;
3749                         i40e_debug(hw, I40E_DEBUG_INIT,
3750                                    "HW Capability: VF count = %d\n",
3751                                    p->num_vfs);
3752                         i40e_debug(hw, I40E_DEBUG_INIT,
3753                                    "HW Capability: VF base_id = %d\n",
3754                                    p->vf_base_id);
3755                         break;
3756                 case I40E_AQ_CAP_ID_VMDQ:
3757                         if (number == 1)
3758                                 p->vmdq = true;
3759                         i40e_debug(hw, I40E_DEBUG_INIT,
3760                                    "HW Capability: VMDQ = %d\n", p->vmdq);
3761                         break;
3762                 case I40E_AQ_CAP_ID_8021QBG:
3763                         if (number == 1)
3764                                 p->evb_802_1_qbg = true;
3765                         i40e_debug(hw, I40E_DEBUG_INIT,
3766                                    "HW Capability: 802.1Qbg = %d\n", number);
3767                         break;
3768                 case I40E_AQ_CAP_ID_8021QBR:
3769                         if (number == 1)
3770                                 p->evb_802_1_qbh = true;
3771                         i40e_debug(hw, I40E_DEBUG_INIT,
3772                                    "HW Capability: 802.1Qbh = %d\n", number);
3773                         break;
3774                 case I40E_AQ_CAP_ID_VSI:
3775                         p->num_vsis = number;
3776                         i40e_debug(hw, I40E_DEBUG_INIT,
3777                                    "HW Capability: VSI count = %d\n",
3778                                    p->num_vsis);
3779                         break;
3780                 case I40E_AQ_CAP_ID_DCB:
3781                         if (number == 1) {
3782                                 p->dcb = true;
3783                                 p->enabled_tcmap = logical_id;
3784                                 p->maxtc = phys_id;
3785                         }
3786                         i40e_debug(hw, I40E_DEBUG_INIT,
3787                                    "HW Capability: DCB = %d\n", p->dcb);
3788                         i40e_debug(hw, I40E_DEBUG_INIT,
3789                                    "HW Capability: TC Mapping = %d\n",
3790                                    logical_id);
3791                         i40e_debug(hw, I40E_DEBUG_INIT,
3792                                    "HW Capability: TC Max = %d\n", p->maxtc);
3793                         break;
3794                 case I40E_AQ_CAP_ID_FCOE:
3795                         if (number == 1)
3796                                 p->fcoe = true;
3797                         i40e_debug(hw, I40E_DEBUG_INIT,
3798                                    "HW Capability: FCOE = %d\n", p->fcoe);
3799                         break;
3800                 case I40E_AQ_CAP_ID_ISCSI:
3801                         if (number == 1)
3802                                 p->iscsi = true;
3803                         i40e_debug(hw, I40E_DEBUG_INIT,
3804                                    "HW Capability: iSCSI = %d\n", p->iscsi);
3805                         break;
3806                 case I40E_AQ_CAP_ID_RSS:
3807                         p->rss = true;
3808                         p->rss_table_size = number;
3809                         p->rss_table_entry_width = logical_id;
3810                         i40e_debug(hw, I40E_DEBUG_INIT,
3811                                    "HW Capability: RSS = %d\n", p->rss);
3812                         i40e_debug(hw, I40E_DEBUG_INIT,
3813                                    "HW Capability: RSS table size = %d\n",
3814                                    p->rss_table_size);
3815                         i40e_debug(hw, I40E_DEBUG_INIT,
3816                                    "HW Capability: RSS table width = %d\n",
3817                                    p->rss_table_entry_width);
3818                         break;
3819                 case I40E_AQ_CAP_ID_RXQ:
3820                         p->num_rx_qp = number;
3821                         p->base_queue = phys_id;
3822                         i40e_debug(hw, I40E_DEBUG_INIT,
3823                                    "HW Capability: Rx QP = %d\n", number);
3824                         i40e_debug(hw, I40E_DEBUG_INIT,
3825                                    "HW Capability: base_queue = %d\n",
3826                                    p->base_queue);
3827                         break;
3828                 case I40E_AQ_CAP_ID_TXQ:
3829                         p->num_tx_qp = number;
3830                         p->base_queue = phys_id;
3831                         i40e_debug(hw, I40E_DEBUG_INIT,
3832                                    "HW Capability: Tx QP = %d\n", number);
3833                         i40e_debug(hw, I40E_DEBUG_INIT,
3834                                    "HW Capability: base_queue = %d\n",
3835                                    p->base_queue);
3836                         break;
3837                 case I40E_AQ_CAP_ID_MSIX:
3838                         p->num_msix_vectors = number;
3839                         i40e_debug(hw, I40E_DEBUG_INIT,
3840                                    "HW Capability: MSIX vector count = %d\n",
3841                                    p->num_msix_vectors);
3842                         break;
3843                 case I40E_AQ_CAP_ID_VF_MSIX:
3844                         p->num_msix_vectors_vf = number;
3845                         i40e_debug(hw, I40E_DEBUG_INIT,
3846                                    "HW Capability: MSIX VF vector count = %d\n",
3847                                    p->num_msix_vectors_vf);
3848                         break;
3849                 case I40E_AQ_CAP_ID_FLEX10:
3850                         if (major_rev == 1) {
3851                                 if (number == 1) {
3852                                         p->flex10_enable = true;
3853                                         p->flex10_capable = true;
3854                                 }
3855                         } else {
3856                                 /* Capability revision >= 2 */
3857                                 if (number & 1)
3858                                         p->flex10_enable = true;
3859                                 if (number & 2)
3860                                         p->flex10_capable = true;
3861                         }
3862                         p->flex10_mode = logical_id;
3863                         p->flex10_status = phys_id;
3864                         i40e_debug(hw, I40E_DEBUG_INIT,
3865                                    "HW Capability: Flex10 mode = %d\n",
3866                                    p->flex10_mode);
3867                         i40e_debug(hw, I40E_DEBUG_INIT,
3868                                    "HW Capability: Flex10 status = %d\n",
3869                                    p->flex10_status);
3870                         break;
3871                 case I40E_AQ_CAP_ID_CEM:
3872                         if (number == 1)
3873                                 p->mgmt_cem = true;
3874                         i40e_debug(hw, I40E_DEBUG_INIT,
3875                                    "HW Capability: CEM = %d\n", p->mgmt_cem);
3876                         break;
3877                 case I40E_AQ_CAP_ID_IWARP:
3878                         if (number == 1)
3879                                 p->iwarp = true;
3880                         i40e_debug(hw, I40E_DEBUG_INIT,
3881                                    "HW Capability: iWARP = %d\n", p->iwarp);
3882                         break;
3883                 case I40E_AQ_CAP_ID_LED:
3884                         if (phys_id < I40E_HW_CAP_MAX_GPIO)
3885                                 p->led[phys_id] = true;
3886                         i40e_debug(hw, I40E_DEBUG_INIT,
3887                                    "HW Capability: LED - PIN %d\n", phys_id);
3888                         break;
3889                 case I40E_AQ_CAP_ID_SDP:
3890                         if (phys_id < I40E_HW_CAP_MAX_GPIO)
3891                                 p->sdp[phys_id] = true;
3892                         i40e_debug(hw, I40E_DEBUG_INIT,
3893                                    "HW Capability: SDP - PIN %d\n", phys_id);
3894                         break;
3895                 case I40E_AQ_CAP_ID_MDIO:
3896                         if (number == 1) {
3897                                 p->mdio_port_num = phys_id;
3898                                 p->mdio_port_mode = logical_id;
3899                         }
3900                         i40e_debug(hw, I40E_DEBUG_INIT,
3901                                    "HW Capability: MDIO port number = %d\n",
3902                                    p->mdio_port_num);
3903                         i40e_debug(hw, I40E_DEBUG_INIT,
3904                                    "HW Capability: MDIO port mode = %d\n",
3905                                    p->mdio_port_mode);
3906                         break;
3907                 case I40E_AQ_CAP_ID_1588:
3908                         if (number == 1)
3909                                 p->ieee_1588 = true;
3910                         i40e_debug(hw, I40E_DEBUG_INIT,
3911                                    "HW Capability: IEEE 1588 = %d\n",
3912                                    p->ieee_1588);
3913                         break;
3914                 case I40E_AQ_CAP_ID_FLOW_DIRECTOR:
3915                         p->fd = true;
3916                         p->fd_filters_guaranteed = number;
3917                         p->fd_filters_best_effort = logical_id;
3918                         i40e_debug(hw, I40E_DEBUG_INIT,
3919                                    "HW Capability: Flow Director = 1\n");
3920                         i40e_debug(hw, I40E_DEBUG_INIT,
3921                                    "HW Capability: Guaranteed FD filters = %d\n",
3922                                    p->fd_filters_guaranteed);
3923                         break;
3924                 case I40E_AQ_CAP_ID_WSR_PROT:
3925                         p->wr_csr_prot = (u64)number;
3926                         p->wr_csr_prot |= (u64)logical_id << 32;
3927                         i40e_debug(hw, I40E_DEBUG_INIT,
3928                                    "HW Capability: wr_csr_prot = 0x%llX\n\n",
3929                                    (p->wr_csr_prot & 0xffff));
3930                         break;
3931                 case I40E_AQ_CAP_ID_NVM_MGMT:
3932                         if (number & I40E_NVM_MGMT_SEC_REV_DISABLED)
3933                                 p->sec_rev_disabled = true;
3934                         if (number & I40E_NVM_MGMT_UPDATE_DISABLED)
3935                                 p->update_disabled = true;
3936                         break;
3937                 case I40E_AQ_CAP_ID_WOL_AND_PROXY:
3938                         hw->num_wol_proxy_filters = (u16)number;
3939                         hw->wol_proxy_vsi_seid = (u16)logical_id;
3940                         p->apm_wol_support = phys_id & I40E_WOL_SUPPORT_MASK;
3941                         if (phys_id & I40E_ACPI_PROGRAMMING_METHOD_MASK)
3942                                 p->acpi_prog_method = I40E_ACPI_PROGRAMMING_METHOD_AQC_FPK;
3943                         else
3944                                 p->acpi_prog_method = I40E_ACPI_PROGRAMMING_METHOD_HW_FVL;
3945                         p->proxy_support = (phys_id & I40E_PROXY_SUPPORT_MASK) ? 1 : 0;
3946                         i40e_debug(hw, I40E_DEBUG_INIT,
3947                                    "HW Capability: WOL proxy filters = %d\n",
3948                                    hw->num_wol_proxy_filters);
3949                         break;
3950                 default:
3951                         break;
3952                 }
3953         }
3954
3955         if (p->fcoe)
3956                 i40e_debug(hw, I40E_DEBUG_ALL, "device is FCoE capable\n");
3957
3958         /* Always disable FCoE if compiled without the I40E_FCOE_ENA flag */
3959         p->fcoe = false;
3960
3961         /* count the enabled ports (aka the "not disabled" ports) */
3962         hw->num_ports = 0;
3963         for (i = 0; i < 4; i++) {
3964                 u32 port_cfg_reg = I40E_PRTGEN_CNF + (4 * i);
3965                 u64 port_cfg = 0;
3966
3967                 /* use AQ read to get the physical register offset instead
3968                  * of the port relative offset
3969                  */
3970                 i40e_aq_debug_read_register(hw, port_cfg_reg, &port_cfg, NULL);
3971                 if (!(port_cfg & I40E_PRTGEN_CNF_PORT_DIS_MASK))
3972                         hw->num_ports++;
3973         }
3974
3975         valid_functions = p->valid_functions;
3976         num_functions = 0;
3977         while (valid_functions) {
3978                 if (valid_functions & 1)
3979                         num_functions++;
3980                 valid_functions >>= 1;
3981         }
3982
3983         /* partition id is 1-based, and functions are evenly spread
3984          * across the ports as partitions
3985          */
3986         if (hw->num_ports != 0) {
3987                 hw->partition_id = (hw->pf_id / hw->num_ports) + 1;
3988                 hw->num_partitions = num_functions / hw->num_ports;
3989         }
3990
3991         /* additional HW specific goodies that might
3992          * someday be HW version specific
3993          */
3994         p->rx_buf_chain_len = I40E_MAX_CHAINED_RX_BUFFERS;
3995 }
3996
3997 /**
3998  * i40e_aq_discover_capabilities
3999  * @hw: pointer to the hw struct
4000  * @buff: a virtual buffer to hold the capabilities
4001  * @buff_size: Size of the virtual buffer
4002  * @data_size: Size of the returned data, or buff size needed if AQ err==ENOMEM
4003  * @list_type_opc: capabilities type to discover - pass in the command opcode
4004  * @cmd_details: pointer to command details structure or NULL
4005  *
4006  * Get the device capabilities descriptions from the firmware
4007  **/
4008 enum i40e_status_code i40e_aq_discover_capabilities(struct i40e_hw *hw,
4009                                 void *buff, u16 buff_size, u16 *data_size,
4010                                 enum i40e_admin_queue_opc list_type_opc,
4011                                 struct i40e_asq_cmd_details *cmd_details)
4012 {
4013         struct i40e_aqc_list_capabilites *cmd;
4014         struct i40e_aq_desc desc;
4015         enum i40e_status_code status = I40E_SUCCESS;
4016
4017         cmd = (struct i40e_aqc_list_capabilites *)&desc.params.raw;
4018
4019         if (list_type_opc != i40e_aqc_opc_list_func_capabilities &&
4020                 list_type_opc != i40e_aqc_opc_list_dev_capabilities) {
4021                 status = I40E_ERR_PARAM;
4022                 goto exit;
4023         }
4024
4025         i40e_fill_default_direct_cmd_desc(&desc, list_type_opc);
4026
4027         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
4028         if (buff_size > I40E_AQ_LARGE_BUF)
4029                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4030
4031         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4032         *data_size = LE16_TO_CPU(desc.datalen);
4033
4034         if (status)
4035                 goto exit;
4036
4037         i40e_parse_discover_capabilities(hw, buff, LE32_TO_CPU(cmd->count),
4038                                          list_type_opc);
4039
4040 exit:
4041         return status;
4042 }
4043
4044 /**
4045  * i40e_aq_update_nvm
4046  * @hw: pointer to the hw struct
4047  * @module_pointer: module pointer location in words from the NVM beginning
4048  * @offset: byte offset from the module beginning
4049  * @length: length of the section to be written (in bytes from the offset)
4050  * @data: command buffer (size [bytes] = length)
4051  * @last_command: tells if this is the last command in a series
4052  * @preservation_flags: Preservation mode flags
4053  * @cmd_details: pointer to command details structure or NULL
4054  *
4055  * Update the NVM using the admin queue commands
4056  **/
4057 enum i40e_status_code i40e_aq_update_nvm(struct i40e_hw *hw, u8 module_pointer,
4058                                 u32 offset, u16 length, void *data,
4059                                 bool last_command, u8 preservation_flags,
4060                                 struct i40e_asq_cmd_details *cmd_details)
4061 {
4062         struct i40e_aq_desc desc;
4063         struct i40e_aqc_nvm_update *cmd =
4064                 (struct i40e_aqc_nvm_update *)&desc.params.raw;
4065         enum i40e_status_code status;
4066
4067         DEBUGFUNC("i40e_aq_update_nvm");
4068
4069         /* In offset the highest byte must be zeroed. */
4070         if (offset & 0xFF000000) {
4071                 status = I40E_ERR_PARAM;
4072                 goto i40e_aq_update_nvm_exit;
4073         }
4074
4075         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_update);
4076
4077         /* If this is the last command in a series, set the proper flag. */
4078         if (last_command)
4079                 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
4080         if (hw->mac.type == I40E_MAC_X722) {
4081                 if (preservation_flags == I40E_NVM_PRESERVATION_FLAGS_SELECTED)
4082                         cmd->command_flags |=
4083                                 (I40E_AQ_NVM_PRESERVATION_FLAGS_SELECTED <<
4084                                  I40E_AQ_NVM_PRESERVATION_FLAGS_SHIFT);
4085                 else if (preservation_flags == I40E_NVM_PRESERVATION_FLAGS_ALL)
4086                         cmd->command_flags |=
4087                                 (I40E_AQ_NVM_PRESERVATION_FLAGS_ALL <<
4088                                  I40E_AQ_NVM_PRESERVATION_FLAGS_SHIFT);
4089         }
4090         cmd->module_pointer = module_pointer;
4091         cmd->offset = CPU_TO_LE32(offset);
4092         cmd->length = CPU_TO_LE16(length);
4093
4094         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
4095         if (length > I40E_AQ_LARGE_BUF)
4096                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4097
4098         status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
4099
4100 i40e_aq_update_nvm_exit:
4101         return status;
4102 }
4103
4104 /**
4105  * i40e_aq_nvm_progress
4106  * @hw: pointer to the hw struct
4107  * @progress: pointer to progress returned from AQ
4108  * @cmd_details: pointer to command details structure or NULL
4109  *
4110  * Gets progress of flash rearrangement process
4111  **/
4112 enum i40e_status_code i40e_aq_nvm_progress(struct i40e_hw *hw, u8 *progress,
4113                                 struct i40e_asq_cmd_details *cmd_details)
4114 {
4115         enum i40e_status_code status;
4116         struct i40e_aq_desc desc;
4117
4118         DEBUGFUNC("i40e_aq_nvm_progress");
4119
4120         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_progress);
4121         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4122         *progress = desc.params.raw[0];
4123         return status;
4124 }
4125
4126 /**
4127  * i40e_aq_get_lldp_mib
4128  * @hw: pointer to the hw struct
4129  * @bridge_type: type of bridge requested
4130  * @mib_type: Local, Remote or both Local and Remote MIBs
4131  * @buff: pointer to a user supplied buffer to store the MIB block
4132  * @buff_size: size of the buffer (in bytes)
4133  * @local_len : length of the returned Local LLDP MIB
4134  * @remote_len: length of the returned Remote LLDP MIB
4135  * @cmd_details: pointer to command details structure or NULL
4136  *
4137  * Requests the complete LLDP MIB (entire packet).
4138  **/
4139 enum i40e_status_code i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
4140                                 u8 mib_type, void *buff, u16 buff_size,
4141                                 u16 *local_len, u16 *remote_len,
4142                                 struct i40e_asq_cmd_details *cmd_details)
4143 {
4144         struct i40e_aq_desc desc;
4145         struct i40e_aqc_lldp_get_mib *cmd =
4146                 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
4147         struct i40e_aqc_lldp_get_mib *resp =
4148                 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
4149         enum i40e_status_code status;
4150
4151         if (buff_size == 0 || !buff)
4152                 return I40E_ERR_PARAM;
4153
4154         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_get_mib);
4155         /* Indirect Command */
4156         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
4157
4158         cmd->type = mib_type & I40E_AQ_LLDP_MIB_TYPE_MASK;
4159         cmd->type |= ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
4160                        I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4161
4162         desc.datalen = CPU_TO_LE16(buff_size);
4163
4164         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
4165         if (buff_size > I40E_AQ_LARGE_BUF)
4166                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4167
4168         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4169         if (!status) {
4170                 if (local_len != NULL)
4171                         *local_len = LE16_TO_CPU(resp->local_len);
4172                 if (remote_len != NULL)
4173                         *remote_len = LE16_TO_CPU(resp->remote_len);
4174         }
4175
4176         return status;
4177 }
4178
4179  /**
4180  * i40e_aq_set_lldp_mib - Set the LLDP MIB
4181  * @hw: pointer to the hw struct
4182  * @mib_type: Local, Remote or both Local and Remote MIBs
4183  * @buff: pointer to a user supplied buffer to store the MIB block
4184  * @buff_size: size of the buffer (in bytes)
4185  * @cmd_details: pointer to command details structure or NULL
4186  *
4187  * Set the LLDP MIB.
4188  **/
4189 enum i40e_status_code i40e_aq_set_lldp_mib(struct i40e_hw *hw,
4190                                 u8 mib_type, void *buff, u16 buff_size,
4191                                 struct i40e_asq_cmd_details *cmd_details)
4192 {
4193         struct i40e_aq_desc desc;
4194         struct i40e_aqc_lldp_set_local_mib *cmd =
4195                 (struct i40e_aqc_lldp_set_local_mib *)&desc.params.raw;
4196         enum i40e_status_code status;
4197
4198         if (buff_size == 0 || !buff)
4199                 return I40E_ERR_PARAM;
4200
4201         i40e_fill_default_direct_cmd_desc(&desc,
4202                                 i40e_aqc_opc_lldp_set_local_mib);
4203         /* Indirect Command */
4204         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
4205         if (buff_size > I40E_AQ_LARGE_BUF)
4206                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4207         desc.datalen = CPU_TO_LE16(buff_size);
4208
4209         cmd->type = mib_type;
4210         cmd->length = CPU_TO_LE16(buff_size);
4211         cmd->address_high = CPU_TO_LE32(I40E_HI_WORD((u64)buff));
4212         cmd->address_low =  CPU_TO_LE32(I40E_LO_DWORD((u64)buff));
4213
4214         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4215         return status;
4216 }
4217
4218 /**
4219  * i40e_aq_cfg_lldp_mib_change_event
4220  * @hw: pointer to the hw struct
4221  * @enable_update: Enable or Disable event posting
4222  * @cmd_details: pointer to command details structure or NULL
4223  *
4224  * Enable or Disable posting of an event on ARQ when LLDP MIB
4225  * associated with the interface changes
4226  **/
4227 enum i40e_status_code i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
4228                                 bool enable_update,
4229                                 struct i40e_asq_cmd_details *cmd_details)
4230 {
4231         struct i40e_aq_desc desc;
4232         struct i40e_aqc_lldp_update_mib *cmd =
4233                 (struct i40e_aqc_lldp_update_mib *)&desc.params.raw;
4234         enum i40e_status_code status;
4235
4236         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_update_mib);
4237
4238         if (!enable_update)
4239                 cmd->command |= I40E_AQ_LLDP_MIB_UPDATE_DISABLE;
4240
4241         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4242
4243         return status;
4244 }
4245
4246 /**
4247  * i40e_aq_add_lldp_tlv
4248  * @hw: pointer to the hw struct
4249  * @bridge_type: type of bridge
4250  * @buff: buffer with TLV to add
4251  * @buff_size: length of the buffer
4252  * @tlv_len: length of the TLV to be added
4253  * @mib_len: length of the LLDP MIB returned in response
4254  * @cmd_details: pointer to command details structure or NULL
4255  *
4256  * Add the specified TLV to LLDP Local MIB for the given bridge type,
4257  * it is responsibility of the caller to make sure that the TLV is not
4258  * already present in the LLDPDU.
4259  * In return firmware will write the complete LLDP MIB with the newly
4260  * added TLV in the response buffer.
4261  **/
4262 enum i40e_status_code i40e_aq_add_lldp_tlv(struct i40e_hw *hw, u8 bridge_type,
4263                                 void *buff, u16 buff_size, u16 tlv_len,
4264                                 u16 *mib_len,
4265                                 struct i40e_asq_cmd_details *cmd_details)
4266 {
4267         struct i40e_aq_desc desc;
4268         struct i40e_aqc_lldp_add_tlv *cmd =
4269                 (struct i40e_aqc_lldp_add_tlv *)&desc.params.raw;
4270         enum i40e_status_code status;
4271
4272         if (buff_size == 0 || !buff || tlv_len == 0)
4273                 return I40E_ERR_PARAM;
4274
4275         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_add_tlv);
4276
4277         /* Indirect Command */
4278         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
4279         if (buff_size > I40E_AQ_LARGE_BUF)
4280                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4281         desc.datalen = CPU_TO_LE16(buff_size);
4282
4283         cmd->type = ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
4284                       I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4285         cmd->len = CPU_TO_LE16(tlv_len);
4286
4287         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4288         if (!status) {
4289                 if (mib_len != NULL)
4290                         *mib_len = LE16_TO_CPU(desc.datalen);
4291         }
4292
4293         return status;
4294 }
4295
4296 /**
4297  * i40e_aq_update_lldp_tlv
4298  * @hw: pointer to the hw struct
4299  * @bridge_type: type of bridge
4300  * @buff: buffer with TLV to update
4301  * @buff_size: size of the buffer holding original and updated TLVs
4302  * @old_len: Length of the Original TLV
4303  * @new_len: Length of the Updated TLV
4304  * @offset: offset of the updated TLV in the buff
4305  * @mib_len: length of the returned LLDP MIB
4306  * @cmd_details: pointer to command details structure or NULL
4307  *
4308  * Update the specified TLV to the LLDP Local MIB for the given bridge type.
4309  * Firmware will place the complete LLDP MIB in response buffer with the
4310  * updated TLV.
4311  **/
4312 enum i40e_status_code i40e_aq_update_lldp_tlv(struct i40e_hw *hw,
4313                                 u8 bridge_type, void *buff, u16 buff_size,
4314                                 u16 old_len, u16 new_len, u16 offset,
4315                                 u16 *mib_len,
4316                                 struct i40e_asq_cmd_details *cmd_details)
4317 {
4318         struct i40e_aq_desc desc;
4319         struct i40e_aqc_lldp_update_tlv *cmd =
4320                 (struct i40e_aqc_lldp_update_tlv *)&desc.params.raw;
4321         enum i40e_status_code status;
4322
4323         if (buff_size == 0 || !buff || offset == 0 ||
4324             old_len == 0 || new_len == 0)
4325                 return I40E_ERR_PARAM;
4326
4327         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_update_tlv);
4328
4329         /* Indirect Command */
4330         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
4331         if (buff_size > I40E_AQ_LARGE_BUF)
4332                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4333         desc.datalen = CPU_TO_LE16(buff_size);
4334
4335         cmd->type = ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
4336                       I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4337         cmd->old_len = CPU_TO_LE16(old_len);
4338         cmd->new_offset = CPU_TO_LE16(offset);
4339         cmd->new_len = CPU_TO_LE16(new_len);
4340
4341         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4342         if (!status) {
4343                 if (mib_len != NULL)
4344                         *mib_len = LE16_TO_CPU(desc.datalen);
4345         }
4346
4347         return status;
4348 }
4349
4350 /**
4351  * i40e_aq_delete_lldp_tlv
4352  * @hw: pointer to the hw struct
4353  * @bridge_type: type of bridge
4354  * @buff: pointer to a user supplied buffer that has the TLV
4355  * @buff_size: length of the buffer
4356  * @tlv_len: length of the TLV to be deleted
4357  * @mib_len: length of the returned LLDP MIB
4358  * @cmd_details: pointer to command details structure or NULL
4359  *
4360  * Delete the specified TLV from LLDP Local MIB for the given bridge type.
4361  * The firmware places the entire LLDP MIB in the response buffer.
4362  **/
4363 enum i40e_status_code i40e_aq_delete_lldp_tlv(struct i40e_hw *hw,
4364                                 u8 bridge_type, void *buff, u16 buff_size,
4365                                 u16 tlv_len, u16 *mib_len,
4366                                 struct i40e_asq_cmd_details *cmd_details)
4367 {
4368         struct i40e_aq_desc desc;
4369         struct i40e_aqc_lldp_add_tlv *cmd =
4370                 (struct i40e_aqc_lldp_add_tlv *)&desc.params.raw;
4371         enum i40e_status_code status;
4372
4373         if (buff_size == 0 || !buff)
4374                 return I40E_ERR_PARAM;
4375
4376         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_delete_tlv);
4377
4378         /* Indirect Command */
4379         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
4380         if (buff_size > I40E_AQ_LARGE_BUF)
4381                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4382         desc.datalen = CPU_TO_LE16(buff_size);
4383         cmd->len = CPU_TO_LE16(tlv_len);
4384         cmd->type = ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
4385                       I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4386
4387         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
4388         if (!status) {
4389                 if (mib_len != NULL)
4390                         *mib_len = LE16_TO_CPU(desc.datalen);
4391         }
4392
4393         return status;
4394 }
4395
4396 /**
4397  * i40e_aq_stop_lldp
4398  * @hw: pointer to the hw struct
4399  * @shutdown_agent: True if LLDP Agent needs to be Shutdown
4400  * @cmd_details: pointer to command details structure or NULL
4401  *
4402  * Stop or Shutdown the embedded LLDP Agent
4403  **/
4404 enum i40e_status_code i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
4405                                 struct i40e_asq_cmd_details *cmd_details)
4406 {
4407         struct i40e_aq_desc desc;
4408         struct i40e_aqc_lldp_stop *cmd =
4409                 (struct i40e_aqc_lldp_stop *)&desc.params.raw;
4410         enum i40e_status_code status;
4411
4412         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_stop);
4413
4414         if (shutdown_agent)
4415                 cmd->command |= I40E_AQ_LLDP_AGENT_SHUTDOWN;
4416
4417         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4418
4419         return status;
4420 }
4421
4422 /**
4423  * i40e_aq_start_lldp
4424  * @hw: pointer to the hw struct
4425  * @cmd_details: pointer to command details structure or NULL
4426  *
4427  * Start the embedded LLDP Agent on all ports.
4428  **/
4429 enum i40e_status_code i40e_aq_start_lldp(struct i40e_hw *hw,
4430                                 struct i40e_asq_cmd_details *cmd_details)
4431 {
4432         struct i40e_aq_desc desc;
4433         struct i40e_aqc_lldp_start *cmd =
4434                 (struct i40e_aqc_lldp_start *)&desc.params.raw;
4435         enum i40e_status_code status;
4436
4437         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_start);
4438
4439         cmd->command = I40E_AQ_LLDP_AGENT_START;
4440         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4441
4442         return status;
4443 }
4444
4445 /**
4446  * i40e_aq_set_dcb_parameters
4447  * @hw: pointer to the hw struct
4448  * @cmd_details: pointer to command details structure or NULL
4449  * @dcb_enable: True if DCB configuration needs to be applied
4450  *
4451  **/
4452 enum i40e_status_code
4453 i40e_aq_set_dcb_parameters(struct i40e_hw *hw, bool dcb_enable,
4454                            struct i40e_asq_cmd_details *cmd_details)
4455 {
4456         struct i40e_aq_desc desc;
4457         struct i40e_aqc_set_dcb_parameters *cmd =
4458                 (struct i40e_aqc_set_dcb_parameters *)&desc.params.raw;
4459         enum i40e_status_code status;
4460
4461         i40e_fill_default_direct_cmd_desc(&desc,
4462                                           i40e_aqc_opc_set_dcb_parameters);
4463
4464         if (dcb_enable) {
4465                 cmd->valid_flags = I40E_DCB_VALID;
4466                 cmd->command = I40E_AQ_DCB_SET_AGENT;
4467         }
4468         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4469
4470         return status;
4471 }
4472
4473 /**
4474  * i40e_aq_get_cee_dcb_config
4475  * @hw: pointer to the hw struct
4476  * @buff: response buffer that stores CEE operational configuration
4477  * @buff_size: size of the buffer passed
4478  * @cmd_details: pointer to command details structure or NULL
4479  *
4480  * Get CEE DCBX mode operational configuration from firmware
4481  **/
4482 enum i40e_status_code i40e_aq_get_cee_dcb_config(struct i40e_hw *hw,
4483                                 void *buff, u16 buff_size,
4484                                 struct i40e_asq_cmd_details *cmd_details)
4485 {
4486         struct i40e_aq_desc desc;
4487         enum i40e_status_code status;
4488
4489         if (buff_size == 0 || !buff)
4490                 return I40E_ERR_PARAM;
4491
4492         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_cee_dcb_cfg);
4493
4494         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
4495         status = i40e_asq_send_command(hw, &desc, (void *)buff, buff_size,
4496                                        cmd_details);
4497
4498         return status;
4499 }
4500
4501 /**
4502  * i40e_aq_start_stop_dcbx - Start/Stop DCBx service in FW
4503  * @hw: pointer to the hw struct
4504  * @start_agent: True if DCBx Agent needs to be Started
4505  *                              False if DCBx Agent needs to be Stopped
4506  * @cmd_details: pointer to command details structure or NULL
4507  *
4508  * Start/Stop the embedded dcbx Agent
4509  **/
4510 enum i40e_status_code i40e_aq_start_stop_dcbx(struct i40e_hw *hw,
4511                                 bool start_agent,
4512                                 struct i40e_asq_cmd_details *cmd_details)
4513 {
4514         struct i40e_aq_desc desc;
4515         struct i40e_aqc_lldp_stop_start_specific_agent *cmd =
4516                 (struct i40e_aqc_lldp_stop_start_specific_agent *)
4517                                 &desc.params.raw;
4518         enum i40e_status_code status;
4519
4520         i40e_fill_default_direct_cmd_desc(&desc,
4521                                 i40e_aqc_opc_lldp_stop_start_spec_agent);
4522
4523         if (start_agent)
4524                 cmd->command = I40E_AQC_START_SPECIFIC_AGENT_MASK;
4525
4526         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4527
4528         return status;
4529 }
4530
4531 /**
4532  * i40e_aq_add_udp_tunnel
4533  * @hw: pointer to the hw struct
4534  * @udp_port: the UDP port to add in Host byte order
4535  * @protocol_index: protocol index type
4536  * @filter_index: pointer to filter index
4537  * @cmd_details: pointer to command details structure or NULL
4538  *
4539  * Note: Firmware expects the udp_port value to be in Little Endian format,
4540  * and this function will call CPU_TO_LE16 to convert from Host byte order to
4541  * Little Endian order.
4542  **/
4543 enum i40e_status_code i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
4544                                 u16 udp_port, u8 protocol_index,
4545                                 u8 *filter_index,
4546                                 struct i40e_asq_cmd_details *cmd_details)
4547 {
4548         struct i40e_aq_desc desc;
4549         struct i40e_aqc_add_udp_tunnel *cmd =
4550                 (struct i40e_aqc_add_udp_tunnel *)&desc.params.raw;
4551         struct i40e_aqc_del_udp_tunnel_completion *resp =
4552                 (struct i40e_aqc_del_udp_tunnel_completion *)&desc.params.raw;
4553         enum i40e_status_code status;
4554
4555         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_udp_tunnel);
4556
4557         cmd->udp_port = CPU_TO_LE16(udp_port);
4558         cmd->protocol_type = protocol_index;
4559
4560         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4561
4562         if (!status && filter_index)
4563                 *filter_index = resp->index;
4564
4565         return status;
4566 }
4567
4568 /**
4569  * i40e_aq_del_udp_tunnel
4570  * @hw: pointer to the hw struct
4571  * @index: filter index
4572  * @cmd_details: pointer to command details structure or NULL
4573  **/
4574 enum i40e_status_code i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
4575                                 struct i40e_asq_cmd_details *cmd_details)
4576 {
4577         struct i40e_aq_desc desc;
4578         struct i40e_aqc_remove_udp_tunnel *cmd =
4579                 (struct i40e_aqc_remove_udp_tunnel *)&desc.params.raw;
4580         enum i40e_status_code status;
4581
4582         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_del_udp_tunnel);
4583
4584         cmd->index = index;
4585
4586         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4587
4588         return status;
4589 }
4590
4591 /**
4592  * i40e_aq_get_switch_resource_alloc (0x0204)
4593  * @hw: pointer to the hw struct
4594  * @num_entries: pointer to u8 to store the number of resource entries returned
4595  * @buf: pointer to a user supplied buffer.  This buffer must be large enough
4596  *        to store the resource information for all resource types.  Each
4597  *        resource type is a i40e_aqc_switch_resource_alloc_data structure.
4598  * @count: size, in bytes, of the buffer provided
4599  * @cmd_details: pointer to command details structure or NULL
4600  *
4601  * Query the resources allocated to a function.
4602  **/
4603 enum i40e_status_code i40e_aq_get_switch_resource_alloc(struct i40e_hw *hw,
4604                         u8 *num_entries,
4605                         struct i40e_aqc_switch_resource_alloc_element_resp *buf,
4606                         u16 count,
4607                         struct i40e_asq_cmd_details *cmd_details)
4608 {
4609         struct i40e_aq_desc desc;
4610         struct i40e_aqc_get_switch_resource_alloc *cmd_resp =
4611                 (struct i40e_aqc_get_switch_resource_alloc *)&desc.params.raw;
4612         enum i40e_status_code status;
4613         u16 length = count * sizeof(*buf);
4614
4615         i40e_fill_default_direct_cmd_desc(&desc,
4616                                         i40e_aqc_opc_get_switch_resource_alloc);
4617
4618         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
4619         if (length > I40E_AQ_LARGE_BUF)
4620                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4621
4622         status = i40e_asq_send_command(hw, &desc, buf, length, cmd_details);
4623
4624         if (!status && num_entries)
4625                 *num_entries = cmd_resp->num_entries;
4626
4627         return status;
4628 }
4629
4630 /**
4631  * i40e_aq_delete_element - Delete switch element
4632  * @hw: pointer to the hw struct
4633  * @seid: the SEID to delete from the switch
4634  * @cmd_details: pointer to command details structure or NULL
4635  *
4636  * This deletes a switch element from the switch.
4637  **/
4638 enum i40e_status_code i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
4639                                 struct i40e_asq_cmd_details *cmd_details)
4640 {
4641         struct i40e_aq_desc desc;
4642         struct i40e_aqc_switch_seid *cmd =
4643                 (struct i40e_aqc_switch_seid *)&desc.params.raw;
4644         enum i40e_status_code status;
4645
4646         if (seid == 0)
4647                 return I40E_ERR_PARAM;
4648
4649         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_delete_element);
4650
4651         cmd->seid = CPU_TO_LE16(seid);
4652
4653         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4654
4655         return status;
4656 }
4657
4658 /**
4659  * i40e_aq_add_pvirt - Instantiate a Port Virtualizer on a port
4660  * @hw: pointer to the hw struct
4661  * @flags: component flags
4662  * @mac_seid: uplink seid (MAC SEID)
4663  * @vsi_seid: connected vsi seid
4664  * @ret_seid: seid of create pv component
4665  *
4666  * This instantiates an i40e port virtualizer with specified flags.
4667  * Depending on specified flags the port virtualizer can act as a
4668  * 802.1Qbr port virtualizer or a 802.1Qbg S-component.
4669  */
4670 enum i40e_status_code i40e_aq_add_pvirt(struct i40e_hw *hw, u16 flags,
4671                                        u16 mac_seid, u16 vsi_seid,
4672                                        u16 *ret_seid)
4673 {
4674         struct i40e_aq_desc desc;
4675         struct i40e_aqc_add_update_pv *cmd =
4676                 (struct i40e_aqc_add_update_pv *)&desc.params.raw;
4677         struct i40e_aqc_add_update_pv_completion *resp =
4678                 (struct i40e_aqc_add_update_pv_completion *)&desc.params.raw;
4679         enum i40e_status_code status;
4680
4681         if (vsi_seid == 0)
4682                 return I40E_ERR_PARAM;
4683
4684         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_pv);
4685         cmd->command_flags = CPU_TO_LE16(flags);
4686         cmd->uplink_seid = CPU_TO_LE16(mac_seid);
4687         cmd->connected_seid = CPU_TO_LE16(vsi_seid);
4688
4689         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
4690         if (!status && ret_seid)
4691                 *ret_seid = LE16_TO_CPU(resp->pv_seid);
4692
4693         return status;
4694 }
4695
4696 /**
4697  * i40e_aq_add_tag - Add an S/E-tag
4698  * @hw: pointer to the hw struct
4699  * @direct_to_queue: should s-tag direct flow to a specific queue
4700  * @vsi_seid: VSI SEID to use this tag
4701  * @tag: value of the tag
4702  * @queue_num: queue number, only valid is direct_to_queue is true
4703  * @tags_used: return value, number of tags in use by this PF
4704  * @tags_free: return value, number of unallocated tags
4705  * @cmd_details: pointer to command details structure or NULL
4706  *
4707  * This associates an S- or E-tag to a VSI in the switch complex.  It returns
4708  * the number of tags allocated by the PF, and the number of unallocated
4709  * tags available.
4710  **/
4711 enum i40e_status_code i40e_aq_add_tag(struct i40e_hw *hw, bool direct_to_queue,
4712                                 u16 vsi_seid, u16 tag, u16 queue_num,
4713                                 u16 *tags_used, u16 *tags_free,
4714                                 struct i40e_asq_cmd_details *cmd_details)
4715 {
4716         struct i40e_aq_desc desc;
4717         struct i40e_aqc_add_tag *cmd =
4718                 (struct i40e_aqc_add_tag *)&desc.params.raw;
4719         struct i40e_aqc_add_remove_tag_completion *resp =
4720                 (struct i40e_aqc_add_remove_tag_completion *)&desc.params.raw;
4721         enum i40e_status_code status;
4722
4723         if (vsi_seid == 0)
4724                 return I40E_ERR_PARAM;
4725
4726         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_tag);
4727
4728         cmd->seid = CPU_TO_LE16(vsi_seid);
4729         cmd->tag = CPU_TO_LE16(tag);
4730         if (direct_to_queue) {
4731                 cmd->flags = CPU_TO_LE16(I40E_AQC_ADD_TAG_FLAG_TO_QUEUE);
4732                 cmd->queue_number = CPU_TO_LE16(queue_num);
4733         }
4734
4735         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4736
4737         if (!status) {
4738                 if (tags_used != NULL)
4739                         *tags_used = LE16_TO_CPU(resp->tags_used);
4740                 if (tags_free != NULL)
4741                         *tags_free = LE16_TO_CPU(resp->tags_free);
4742         }
4743
4744         return status;
4745 }
4746
4747 /**
4748  * i40e_aq_remove_tag - Remove an S- or E-tag
4749  * @hw: pointer to the hw struct
4750  * @vsi_seid: VSI SEID this tag is associated with
4751  * @tag: value of the S-tag to delete
4752  * @tags_used: return value, number of tags in use by this PF
4753  * @tags_free: return value, number of unallocated tags
4754  * @cmd_details: pointer to command details structure or NULL
4755  *
4756  * This deletes an S- or E-tag from a VSI in the switch complex.  It returns
4757  * the number of tags allocated by the PF, and the number of unallocated
4758  * tags available.
4759  **/
4760 enum i40e_status_code i40e_aq_remove_tag(struct i40e_hw *hw, u16 vsi_seid,
4761                                 u16 tag, u16 *tags_used, u16 *tags_free,
4762                                 struct i40e_asq_cmd_details *cmd_details)
4763 {
4764         struct i40e_aq_desc desc;
4765         struct i40e_aqc_remove_tag *cmd =
4766                 (struct i40e_aqc_remove_tag *)&desc.params.raw;
4767         struct i40e_aqc_add_remove_tag_completion *resp =
4768                 (struct i40e_aqc_add_remove_tag_completion *)&desc.params.raw;
4769         enum i40e_status_code status;
4770
4771         if (vsi_seid == 0)
4772                 return I40E_ERR_PARAM;
4773
4774         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_tag);
4775
4776         cmd->seid = CPU_TO_LE16(vsi_seid);
4777         cmd->tag = CPU_TO_LE16(tag);
4778
4779         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4780
4781         if (!status) {
4782                 if (tags_used != NULL)
4783                         *tags_used = LE16_TO_CPU(resp->tags_used);
4784                 if (tags_free != NULL)
4785                         *tags_free = LE16_TO_CPU(resp->tags_free);
4786         }
4787
4788         return status;
4789 }
4790
4791 /**
4792  * i40e_aq_add_mcast_etag - Add a multicast E-tag
4793  * @hw: pointer to the hw struct
4794  * @pv_seid: Port Virtualizer of this SEID to associate E-tag with
4795  * @etag: value of E-tag to add
4796  * @num_tags_in_buf: number of unicast E-tags in indirect buffer
4797  * @buf: address of indirect buffer
4798  * @tags_used: return value, number of E-tags in use by this port
4799  * @tags_free: return value, number of unallocated M-tags
4800  * @cmd_details: pointer to command details structure or NULL
4801  *
4802  * This associates a multicast E-tag to a port virtualizer.  It will return
4803  * the number of tags allocated by the PF, and the number of unallocated
4804  * tags available.
4805  *
4806  * The indirect buffer pointed to by buf is a list of 2-byte E-tags,
4807  * num_tags_in_buf long.
4808  **/
4809 enum i40e_status_code i40e_aq_add_mcast_etag(struct i40e_hw *hw, u16 pv_seid,
4810                                 u16 etag, u8 num_tags_in_buf, void *buf,
4811                                 u16 *tags_used, u16 *tags_free,
4812                                 struct i40e_asq_cmd_details *cmd_details)
4813 {
4814         struct i40e_aq_desc desc;
4815         struct i40e_aqc_add_remove_mcast_etag *cmd =
4816                 (struct i40e_aqc_add_remove_mcast_etag *)&desc.params.raw;
4817         struct i40e_aqc_add_remove_mcast_etag_completion *resp =
4818            (struct i40e_aqc_add_remove_mcast_etag_completion *)&desc.params.raw;
4819         enum i40e_status_code status;
4820         u16 length = sizeof(u16) * num_tags_in_buf;
4821
4822         if ((pv_seid == 0) || (buf == NULL) || (num_tags_in_buf == 0))
4823                 return I40E_ERR_PARAM;
4824
4825         i40e_fill_default_direct_cmd_desc(&desc,
4826                                           i40e_aqc_opc_add_multicast_etag);
4827
4828         cmd->pv_seid = CPU_TO_LE16(pv_seid);
4829         cmd->etag = CPU_TO_LE16(etag);
4830         cmd->num_unicast_etags = num_tags_in_buf;
4831
4832         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
4833         if (length > I40E_AQ_LARGE_BUF)
4834                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
4835
4836         status = i40e_asq_send_command(hw, &desc, buf, length, cmd_details);
4837
4838         if (!status) {
4839                 if (tags_used != NULL)
4840                         *tags_used = LE16_TO_CPU(resp->mcast_etags_used);
4841                 if (tags_free != NULL)
4842                         *tags_free = LE16_TO_CPU(resp->mcast_etags_free);
4843         }
4844
4845         return status;
4846 }
4847
4848 /**
4849  * i40e_aq_remove_mcast_etag - Remove a multicast E-tag
4850  * @hw: pointer to the hw struct
4851  * @pv_seid: Port Virtualizer SEID this M-tag is associated with
4852  * @etag: value of the E-tag to remove
4853  * @tags_used: return value, number of tags in use by this port
4854  * @tags_free: return value, number of unallocated tags
4855  * @cmd_details: pointer to command details structure or NULL
4856  *
4857  * This deletes an E-tag from the port virtualizer.  It will return
4858  * the number of tags allocated by the port, and the number of unallocated
4859  * tags available.
4860  **/
4861 enum i40e_status_code i40e_aq_remove_mcast_etag(struct i40e_hw *hw, u16 pv_seid,
4862                                 u16 etag, u16 *tags_used, u16 *tags_free,
4863                                 struct i40e_asq_cmd_details *cmd_details)
4864 {
4865         struct i40e_aq_desc desc;
4866         struct i40e_aqc_add_remove_mcast_etag *cmd =
4867                 (struct i40e_aqc_add_remove_mcast_etag *)&desc.params.raw;
4868         struct i40e_aqc_add_remove_mcast_etag_completion *resp =
4869            (struct i40e_aqc_add_remove_mcast_etag_completion *)&desc.params.raw;
4870         enum i40e_status_code status;
4871
4872
4873         if (pv_seid == 0)
4874                 return I40E_ERR_PARAM;
4875
4876         i40e_fill_default_direct_cmd_desc(&desc,
4877                                           i40e_aqc_opc_remove_multicast_etag);
4878
4879         cmd->pv_seid = CPU_TO_LE16(pv_seid);
4880         cmd->etag = CPU_TO_LE16(etag);
4881
4882         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4883
4884         if (!status) {
4885                 if (tags_used != NULL)
4886                         *tags_used = LE16_TO_CPU(resp->mcast_etags_used);
4887                 if (tags_free != NULL)
4888                         *tags_free = LE16_TO_CPU(resp->mcast_etags_free);
4889         }
4890
4891         return status;
4892 }
4893
4894 /**
4895  * i40e_aq_update_tag - Update an S/E-tag
4896  * @hw: pointer to the hw struct
4897  * @vsi_seid: VSI SEID using this S-tag
4898  * @old_tag: old tag value
4899  * @new_tag: new tag value
4900  * @tags_used: return value, number of tags in use by this PF
4901  * @tags_free: return value, number of unallocated tags
4902  * @cmd_details: pointer to command details structure or NULL
4903  *
4904  * This updates the value of the tag currently attached to this VSI
4905  * in the switch complex.  It will return the number of tags allocated
4906  * by the PF, and the number of unallocated tags available.
4907  **/
4908 enum i40e_status_code i40e_aq_update_tag(struct i40e_hw *hw, u16 vsi_seid,
4909                                 u16 old_tag, u16 new_tag, u16 *tags_used,
4910                                 u16 *tags_free,
4911                                 struct i40e_asq_cmd_details *cmd_details)
4912 {
4913         struct i40e_aq_desc desc;
4914         struct i40e_aqc_update_tag *cmd =
4915                 (struct i40e_aqc_update_tag *)&desc.params.raw;
4916         struct i40e_aqc_update_tag_completion *resp =
4917                 (struct i40e_aqc_update_tag_completion *)&desc.params.raw;
4918         enum i40e_status_code status;
4919
4920         if (vsi_seid == 0)
4921                 return I40E_ERR_PARAM;
4922
4923         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_update_tag);
4924
4925         cmd->seid = CPU_TO_LE16(vsi_seid);
4926         cmd->old_tag = CPU_TO_LE16(old_tag);
4927         cmd->new_tag = CPU_TO_LE16(new_tag);
4928
4929         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4930
4931         if (!status) {
4932                 if (tags_used != NULL)
4933                         *tags_used = LE16_TO_CPU(resp->tags_used);
4934                 if (tags_free != NULL)
4935                         *tags_free = LE16_TO_CPU(resp->tags_free);
4936         }
4937
4938         return status;
4939 }
4940
4941 /**
4942  * i40e_aq_dcb_ignore_pfc - Ignore PFC for given TCs
4943  * @hw: pointer to the hw struct
4944  * @tcmap: TC map for request/release any ignore PFC condition
4945  * @request: request or release ignore PFC condition
4946  * @tcmap_ret: return TCs for which PFC is currently ignored
4947  * @cmd_details: pointer to command details structure or NULL
4948  *
4949  * This sends out request/release to ignore PFC condition for a TC.
4950  * It will return the TCs for which PFC is currently ignored.
4951  **/
4952 enum i40e_status_code i40e_aq_dcb_ignore_pfc(struct i40e_hw *hw, u8 tcmap,
4953                                 bool request, u8 *tcmap_ret,
4954                                 struct i40e_asq_cmd_details *cmd_details)
4955 {
4956         struct i40e_aq_desc desc;
4957         struct i40e_aqc_pfc_ignore *cmd_resp =
4958                 (struct i40e_aqc_pfc_ignore *)&desc.params.raw;
4959         enum i40e_status_code status;
4960
4961         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_dcb_ignore_pfc);
4962
4963         if (request)
4964                 cmd_resp->command_flags = I40E_AQC_PFC_IGNORE_SET;
4965
4966         cmd_resp->tc_bitmap = tcmap;
4967
4968         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
4969
4970         if (!status) {
4971                 if (tcmap_ret != NULL)
4972                         *tcmap_ret = cmd_resp->tc_bitmap;
4973         }
4974
4975         return status;
4976 }
4977
4978 /**
4979  * i40e_aq_dcb_updated - DCB Updated Command
4980  * @hw: pointer to the hw struct
4981  * @cmd_details: pointer to command details structure or NULL
4982  *
4983  * When LLDP is handled in PF this command is used by the PF
4984  * to notify EMP that a DCB setting is modified.
4985  * When LLDP is handled in EMP this command is used by the PF
4986  * to notify EMP whenever one of the following parameters get
4987  * modified:
4988  *   - PFCLinkDelayAllowance in PRTDCB_GENC.PFCLDA
4989  *   - PCIRTT in PRTDCB_GENC.PCIRTT
4990  *   - Maximum Frame Size for non-FCoE TCs set by PRTDCB_TDPUC.MAX_TXFRAME.
4991  * EMP will return when the shared RPB settings have been
4992  * recomputed and modified. The retval field in the descriptor
4993  * will be set to 0 when RPB is modified.
4994  **/
4995 enum i40e_status_code i40e_aq_dcb_updated(struct i40e_hw *hw,
4996                                 struct i40e_asq_cmd_details *cmd_details)
4997 {
4998         struct i40e_aq_desc desc;
4999         enum i40e_status_code status;
5000
5001         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_dcb_updated);
5002
5003         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5004
5005         return status;
5006 }
5007
5008 /**
5009  * i40e_aq_add_statistics - Add a statistics block to a VLAN in a switch.
5010  * @hw: pointer to the hw struct
5011  * @seid: defines the SEID of the switch for which the stats are requested
5012  * @vlan_id: the VLAN ID for which the statistics are requested
5013  * @stat_index: index of the statistics counters block assigned to this VLAN
5014  * @cmd_details: pointer to command details structure or NULL
5015  *
5016  * XL710 supports 128 smonVlanStats counters.This command is used to
5017  * allocate a set of smonVlanStats counters to a specific VLAN in a specific
5018  * switch.
5019  **/
5020 enum i40e_status_code i40e_aq_add_statistics(struct i40e_hw *hw, u16 seid,
5021                                 u16 vlan_id, u16 *stat_index,
5022                                 struct i40e_asq_cmd_details *cmd_details)
5023 {
5024         struct i40e_aq_desc desc;
5025         struct i40e_aqc_add_remove_statistics *cmd_resp =
5026                 (struct i40e_aqc_add_remove_statistics *)&desc.params.raw;
5027         enum i40e_status_code status;
5028
5029         if ((seid == 0) || (stat_index == NULL))
5030                 return I40E_ERR_PARAM;
5031
5032         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_statistics);
5033
5034         cmd_resp->seid = CPU_TO_LE16(seid);
5035         cmd_resp->vlan = CPU_TO_LE16(vlan_id);
5036
5037         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5038
5039         if (!status && stat_index)
5040                 *stat_index = LE16_TO_CPU(cmd_resp->stat_index);
5041
5042         return status;
5043 }
5044
5045 /**
5046  * i40e_aq_remove_statistics - Remove a statistics block to a VLAN in a switch.
5047  * @hw: pointer to the hw struct
5048  * @seid: defines the SEID of the switch for which the stats are requested
5049  * @vlan_id: the VLAN ID for which the statistics are requested
5050  * @stat_index: index of the statistics counters block assigned to this VLAN
5051  * @cmd_details: pointer to command details structure or NULL
5052  *
5053  * XL710 supports 128 smonVlanStats counters.This command is used to
5054  * deallocate a set of smonVlanStats counters to a specific VLAN in a specific
5055  * switch.
5056  **/
5057 enum i40e_status_code i40e_aq_remove_statistics(struct i40e_hw *hw, u16 seid,
5058                                 u16 vlan_id, u16 stat_index,
5059                                 struct i40e_asq_cmd_details *cmd_details)
5060 {
5061         struct i40e_aq_desc desc;
5062         struct i40e_aqc_add_remove_statistics *cmd =
5063                 (struct i40e_aqc_add_remove_statistics *)&desc.params.raw;
5064         enum i40e_status_code status;
5065
5066         if (seid == 0)
5067                 return I40E_ERR_PARAM;
5068
5069         i40e_fill_default_direct_cmd_desc(&desc,
5070                                           i40e_aqc_opc_remove_statistics);
5071
5072         cmd->seid = CPU_TO_LE16(seid);
5073         cmd->vlan  = CPU_TO_LE16(vlan_id);
5074         cmd->stat_index = CPU_TO_LE16(stat_index);
5075
5076         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5077
5078         return status;
5079 }
5080
5081 /**
5082  * i40e_aq_set_port_parameters - set physical port parameters.
5083  * @hw: pointer to the hw struct
5084  * @bad_frame_vsi: defines the VSI to which bad frames are forwarded
5085  * @save_bad_pac: if set packets with errors are forwarded to the bad frames VSI
5086  * @pad_short_pac: if set transmit packets smaller than 60 bytes are padded
5087  * @double_vlan: if set double VLAN is enabled
5088  * @cmd_details: pointer to command details structure or NULL
5089  **/
5090 enum i40e_status_code i40e_aq_set_port_parameters(struct i40e_hw *hw,
5091                                 u16 bad_frame_vsi, bool save_bad_pac,
5092                                 bool pad_short_pac, bool double_vlan,
5093                                 struct i40e_asq_cmd_details *cmd_details)
5094 {
5095         struct i40e_aqc_set_port_parameters *cmd;
5096         enum i40e_status_code status;
5097         struct i40e_aq_desc desc;
5098         u16 command_flags = 0;
5099
5100         cmd = (struct i40e_aqc_set_port_parameters *)&desc.params.raw;
5101
5102         i40e_fill_default_direct_cmd_desc(&desc,
5103                                           i40e_aqc_opc_set_port_parameters);
5104
5105         cmd->bad_frame_vsi = CPU_TO_LE16(bad_frame_vsi);
5106         if (save_bad_pac)
5107                 command_flags |= I40E_AQ_SET_P_PARAMS_SAVE_BAD_PACKETS;
5108         if (pad_short_pac)
5109                 command_flags |= I40E_AQ_SET_P_PARAMS_PAD_SHORT_PACKETS;
5110         if (double_vlan)
5111                 command_flags |= I40E_AQ_SET_P_PARAMS_DOUBLE_VLAN_ENA;
5112         cmd->command_flags = CPU_TO_LE16(command_flags);
5113
5114         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5115
5116         return status;
5117 }
5118
5119 /**
5120  * i40e_aq_tx_sched_cmd - generic Tx scheduler AQ command handler
5121  * @hw: pointer to the hw struct
5122  * @seid: seid for the physical port/switching component/vsi
5123  * @buff: Indirect buffer to hold data parameters and response
5124  * @buff_size: Indirect buffer size
5125  * @opcode: Tx scheduler AQ command opcode
5126  * @cmd_details: pointer to command details structure or NULL
5127  *
5128  * Generic command handler for Tx scheduler AQ commands
5129  **/
5130 static enum i40e_status_code i40e_aq_tx_sched_cmd(struct i40e_hw *hw, u16 seid,
5131                                 void *buff, u16 buff_size,
5132                                  enum i40e_admin_queue_opc opcode,
5133                                 struct i40e_asq_cmd_details *cmd_details)
5134 {
5135         struct i40e_aq_desc desc;
5136         struct i40e_aqc_tx_sched_ind *cmd =
5137                 (struct i40e_aqc_tx_sched_ind *)&desc.params.raw;
5138         enum i40e_status_code status;
5139         bool cmd_param_flag = false;
5140
5141         switch (opcode) {
5142         case i40e_aqc_opc_configure_vsi_ets_sla_bw_limit:
5143         case i40e_aqc_opc_configure_vsi_tc_bw:
5144         case i40e_aqc_opc_enable_switching_comp_ets:
5145         case i40e_aqc_opc_modify_switching_comp_ets:
5146         case i40e_aqc_opc_disable_switching_comp_ets:
5147         case i40e_aqc_opc_configure_switching_comp_ets_bw_limit:
5148         case i40e_aqc_opc_configure_switching_comp_bw_config:
5149                 cmd_param_flag = true;
5150                 break;
5151         case i40e_aqc_opc_query_vsi_bw_config:
5152         case i40e_aqc_opc_query_vsi_ets_sla_config:
5153         case i40e_aqc_opc_query_switching_comp_ets_config:
5154         case i40e_aqc_opc_query_port_ets_config:
5155         case i40e_aqc_opc_query_switching_comp_bw_config:
5156                 cmd_param_flag = false;
5157                 break;
5158         default:
5159                 return I40E_ERR_PARAM;
5160         }
5161
5162         i40e_fill_default_direct_cmd_desc(&desc, opcode);
5163
5164         /* Indirect command */
5165         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
5166         if (cmd_param_flag)
5167                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
5168         if (buff_size > I40E_AQ_LARGE_BUF)
5169                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
5170
5171         desc.datalen = CPU_TO_LE16(buff_size);
5172
5173         cmd->vsi_seid = CPU_TO_LE16(seid);
5174
5175         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
5176
5177         return status;
5178 }
5179
5180 /**
5181  * i40e_aq_config_vsi_bw_limit - Configure VSI BW Limit
5182  * @hw: pointer to the hw struct
5183  * @seid: VSI seid
5184  * @credit: BW limit credits (0 = disabled)
5185  * @max_credit: Max BW limit credits
5186  * @cmd_details: pointer to command details structure or NULL
5187  **/
5188 enum i40e_status_code i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
5189                                 u16 seid, u16 credit, u8 max_credit,
5190                                 struct i40e_asq_cmd_details *cmd_details)
5191 {
5192         struct i40e_aq_desc desc;
5193         struct i40e_aqc_configure_vsi_bw_limit *cmd =
5194                 (struct i40e_aqc_configure_vsi_bw_limit *)&desc.params.raw;
5195         enum i40e_status_code status;
5196
5197         i40e_fill_default_direct_cmd_desc(&desc,
5198                                           i40e_aqc_opc_configure_vsi_bw_limit);
5199
5200         cmd->vsi_seid = CPU_TO_LE16(seid);
5201         cmd->credit = CPU_TO_LE16(credit);
5202         cmd->max_credit = max_credit;
5203
5204         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5205
5206         return status;
5207 }
5208
5209 /**
5210  * i40e_aq_config_switch_comp_bw_limit - Configure Switching component BW Limit
5211  * @hw: pointer to the hw struct
5212  * @seid: switching component seid
5213  * @credit: BW limit credits (0 = disabled)
5214  * @max_bw: Max BW limit credits
5215  * @cmd_details: pointer to command details structure or NULL
5216  **/
5217 enum i40e_status_code i40e_aq_config_switch_comp_bw_limit(struct i40e_hw *hw,
5218                                 u16 seid, u16 credit, u8 max_bw,
5219                                 struct i40e_asq_cmd_details *cmd_details)
5220 {
5221         struct i40e_aq_desc desc;
5222         struct i40e_aqc_configure_switching_comp_bw_limit *cmd =
5223           (struct i40e_aqc_configure_switching_comp_bw_limit *)&desc.params.raw;
5224         enum i40e_status_code status;
5225
5226         i40e_fill_default_direct_cmd_desc(&desc,
5227                                 i40e_aqc_opc_configure_switching_comp_bw_limit);
5228
5229         cmd->seid = CPU_TO_LE16(seid);
5230         cmd->credit = CPU_TO_LE16(credit);
5231         cmd->max_bw = max_bw;
5232
5233         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5234
5235         return status;
5236 }
5237
5238 /**
5239  * i40e_aq_config_vsi_ets_sla_bw_limit - Config VSI BW Limit per TC
5240  * @hw: pointer to the hw struct
5241  * @seid: VSI seid
5242  * @bw_data: Buffer holding enabled TCs, per TC BW limit/credits
5243  * @cmd_details: pointer to command details structure or NULL
5244  **/
5245 enum i40e_status_code i40e_aq_config_vsi_ets_sla_bw_limit(struct i40e_hw *hw,
5246                         u16 seid,
5247                         struct i40e_aqc_configure_vsi_ets_sla_bw_data *bw_data,
5248                         struct i40e_asq_cmd_details *cmd_details)
5249 {
5250         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5251                                     i40e_aqc_opc_configure_vsi_ets_sla_bw_limit,
5252                                     cmd_details);
5253 }
5254
5255 /**
5256  * i40e_aq_config_vsi_tc_bw - Config VSI BW Allocation per TC
5257  * @hw: pointer to the hw struct
5258  * @seid: VSI seid
5259  * @bw_data: Buffer holding enabled TCs, relative TC BW limit/credits
5260  * @cmd_details: pointer to command details structure or NULL
5261  **/
5262 enum i40e_status_code i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw,
5263                         u16 seid,
5264                         struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
5265                         struct i40e_asq_cmd_details *cmd_details)
5266 {
5267         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5268                                     i40e_aqc_opc_configure_vsi_tc_bw,
5269                                     cmd_details);
5270 }
5271
5272 /**
5273  * i40e_aq_config_switch_comp_ets - Enable/Disable/Modify ETS on the port
5274  * @hw: pointer to the hw struct
5275  * @seid: seid of the switching component connected to Physical Port
5276  * @ets_data: Buffer holding ETS parameters
5277  * @opcode: Tx scheduler AQ command opcode
5278  * @cmd_details: pointer to command details structure or NULL
5279  **/
5280 enum i40e_status_code i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
5281                 u16 seid,
5282                 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
5283                 enum i40e_admin_queue_opc opcode,
5284                 struct i40e_asq_cmd_details *cmd_details)
5285 {
5286         return i40e_aq_tx_sched_cmd(hw, seid, (void *)ets_data,
5287                                     sizeof(*ets_data), opcode, cmd_details);
5288 }
5289
5290 /**
5291  * i40e_aq_config_switch_comp_bw_config - Config Switch comp BW Alloc per TC
5292  * @hw: pointer to the hw struct
5293  * @seid: seid of the switching component
5294  * @bw_data: Buffer holding enabled TCs, relative/absolute TC BW limit/credits
5295  * @cmd_details: pointer to command details structure or NULL
5296  **/
5297 enum i40e_status_code i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
5298         u16 seid,
5299         struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
5300         struct i40e_asq_cmd_details *cmd_details)
5301 {
5302         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5303                             i40e_aqc_opc_configure_switching_comp_bw_config,
5304                             cmd_details);
5305 }
5306
5307 /**
5308  * i40e_aq_config_switch_comp_ets_bw_limit - Config Switch comp BW Limit per TC
5309  * @hw: pointer to the hw struct
5310  * @seid: seid of the switching component
5311  * @bw_data: Buffer holding enabled TCs, per TC BW limit/credits
5312  * @cmd_details: pointer to command details structure or NULL
5313  **/
5314 enum i40e_status_code i40e_aq_config_switch_comp_ets_bw_limit(
5315         struct i40e_hw *hw, u16 seid,
5316         struct i40e_aqc_configure_switching_comp_ets_bw_limit_data *bw_data,
5317         struct i40e_asq_cmd_details *cmd_details)
5318 {
5319         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5320                             i40e_aqc_opc_configure_switching_comp_ets_bw_limit,
5321                             cmd_details);
5322 }
5323
5324 /**
5325  * i40e_aq_query_vsi_bw_config - Query VSI BW configuration
5326  * @hw: pointer to the hw struct
5327  * @seid: seid of the VSI
5328  * @bw_data: Buffer to hold VSI BW configuration
5329  * @cmd_details: pointer to command details structure or NULL
5330  **/
5331 enum i40e_status_code i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
5332                         u16 seid,
5333                         struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
5334                         struct i40e_asq_cmd_details *cmd_details)
5335 {
5336         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5337                                     i40e_aqc_opc_query_vsi_bw_config,
5338                                     cmd_details);
5339 }
5340
5341 /**
5342  * i40e_aq_query_vsi_ets_sla_config - Query VSI BW configuration per TC
5343  * @hw: pointer to the hw struct
5344  * @seid: seid of the VSI
5345  * @bw_data: Buffer to hold VSI BW configuration per TC
5346  * @cmd_details: pointer to command details structure or NULL
5347  **/
5348 enum i40e_status_code i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
5349                         u16 seid,
5350                         struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
5351                         struct i40e_asq_cmd_details *cmd_details)
5352 {
5353         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5354                                     i40e_aqc_opc_query_vsi_ets_sla_config,
5355                                     cmd_details);
5356 }
5357
5358 /**
5359  * i40e_aq_query_switch_comp_ets_config - Query Switch comp BW config per TC
5360  * @hw: pointer to the hw struct
5361  * @seid: seid of the switching component
5362  * @bw_data: Buffer to hold switching component's per TC BW config
5363  * @cmd_details: pointer to command details structure or NULL
5364  **/
5365 enum i40e_status_code i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
5366                 u16 seid,
5367                 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
5368                 struct i40e_asq_cmd_details *cmd_details)
5369 {
5370         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5371                                    i40e_aqc_opc_query_switching_comp_ets_config,
5372                                    cmd_details);
5373 }
5374
5375 /**
5376  * i40e_aq_query_port_ets_config - Query Physical Port ETS configuration
5377  * @hw: pointer to the hw struct
5378  * @seid: seid of the VSI or switching component connected to Physical Port
5379  * @bw_data: Buffer to hold current ETS configuration for the Physical Port
5380  * @cmd_details: pointer to command details structure or NULL
5381  **/
5382 enum i40e_status_code i40e_aq_query_port_ets_config(struct i40e_hw *hw,
5383                         u16 seid,
5384                         struct i40e_aqc_query_port_ets_config_resp *bw_data,
5385                         struct i40e_asq_cmd_details *cmd_details)
5386 {
5387         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5388                                     i40e_aqc_opc_query_port_ets_config,
5389                                     cmd_details);
5390 }
5391
5392 /**
5393  * i40e_aq_query_switch_comp_bw_config - Query Switch comp BW configuration
5394  * @hw: pointer to the hw struct
5395  * @seid: seid of the switching component
5396  * @bw_data: Buffer to hold switching component's BW configuration
5397  * @cmd_details: pointer to command details structure or NULL
5398  **/
5399 enum i40e_status_code i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
5400                 u16 seid,
5401                 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
5402                 struct i40e_asq_cmd_details *cmd_details)
5403 {
5404         return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
5405                                     i40e_aqc_opc_query_switching_comp_bw_config,
5406                                     cmd_details);
5407 }
5408
5409 /**
5410  * i40e_validate_filter_settings
5411  * @hw: pointer to the hardware structure
5412  * @settings: Filter control settings
5413  *
5414  * Check and validate the filter control settings passed.
5415  * The function checks for the valid filter/context sizes being
5416  * passed for FCoE and PE.
5417  *
5418  * Returns I40E_SUCCESS if the values passed are valid and within
5419  * range else returns an error.
5420  **/
5421 STATIC enum i40e_status_code i40e_validate_filter_settings(struct i40e_hw *hw,
5422                                 struct i40e_filter_control_settings *settings)
5423 {
5424         u32 fcoe_cntx_size, fcoe_filt_size;
5425         u32 pe_cntx_size, pe_filt_size;
5426         u32 fcoe_fmax;
5427
5428         u32 val;
5429
5430         /* Validate FCoE settings passed */
5431         switch (settings->fcoe_filt_num) {
5432         case I40E_HASH_FILTER_SIZE_1K:
5433         case I40E_HASH_FILTER_SIZE_2K:
5434         case I40E_HASH_FILTER_SIZE_4K:
5435         case I40E_HASH_FILTER_SIZE_8K:
5436         case I40E_HASH_FILTER_SIZE_16K:
5437         case I40E_HASH_FILTER_SIZE_32K:
5438                 fcoe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
5439                 fcoe_filt_size <<= (u32)settings->fcoe_filt_num;
5440                 break;
5441         default:
5442                 return I40E_ERR_PARAM;
5443         }
5444
5445         switch (settings->fcoe_cntx_num) {
5446         case I40E_DMA_CNTX_SIZE_512:
5447         case I40E_DMA_CNTX_SIZE_1K:
5448         case I40E_DMA_CNTX_SIZE_2K:
5449         case I40E_DMA_CNTX_SIZE_4K:
5450                 fcoe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
5451                 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num;
5452                 break;
5453         default:
5454                 return I40E_ERR_PARAM;
5455         }
5456
5457         /* Validate PE settings passed */
5458         switch (settings->pe_filt_num) {
5459         case I40E_HASH_FILTER_SIZE_1K:
5460         case I40E_HASH_FILTER_SIZE_2K:
5461         case I40E_HASH_FILTER_SIZE_4K:
5462         case I40E_HASH_FILTER_SIZE_8K:
5463         case I40E_HASH_FILTER_SIZE_16K:
5464         case I40E_HASH_FILTER_SIZE_32K:
5465         case I40E_HASH_FILTER_SIZE_64K:
5466         case I40E_HASH_FILTER_SIZE_128K:
5467         case I40E_HASH_FILTER_SIZE_256K:
5468         case I40E_HASH_FILTER_SIZE_512K:
5469         case I40E_HASH_FILTER_SIZE_1M:
5470                 pe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
5471                 pe_filt_size <<= (u32)settings->pe_filt_num;
5472                 break;
5473         default:
5474                 return I40E_ERR_PARAM;
5475         }
5476
5477         switch (settings->pe_cntx_num) {
5478         case I40E_DMA_CNTX_SIZE_512:
5479         case I40E_DMA_CNTX_SIZE_1K:
5480         case I40E_DMA_CNTX_SIZE_2K:
5481         case I40E_DMA_CNTX_SIZE_4K:
5482         case I40E_DMA_CNTX_SIZE_8K:
5483         case I40E_DMA_CNTX_SIZE_16K:
5484         case I40E_DMA_CNTX_SIZE_32K:
5485         case I40E_DMA_CNTX_SIZE_64K:
5486         case I40E_DMA_CNTX_SIZE_128K:
5487         case I40E_DMA_CNTX_SIZE_256K:
5488                 pe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
5489                 pe_cntx_size <<= (u32)settings->pe_cntx_num;
5490                 break;
5491         default:
5492                 return I40E_ERR_PARAM;
5493         }
5494
5495         /* FCHSIZE + FCDSIZE should not be greater than PMFCOEFMAX */
5496         val = rd32(hw, I40E_GLHMC_FCOEFMAX);
5497         fcoe_fmax = (val & I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_MASK)
5498                      >> I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_SHIFT;
5499         if (fcoe_filt_size + fcoe_cntx_size >  fcoe_fmax)
5500                 return I40E_ERR_INVALID_SIZE;
5501
5502         return I40E_SUCCESS;
5503 }
5504
5505 /**
5506  * i40e_set_filter_control
5507  * @hw: pointer to the hardware structure
5508  * @settings: Filter control settings
5509  *
5510  * Set the Queue Filters for PE/FCoE and enable filters required
5511  * for a single PF. It is expected that these settings are programmed
5512  * at the driver initialization time.
5513  **/
5514 enum i40e_status_code i40e_set_filter_control(struct i40e_hw *hw,
5515                                 struct i40e_filter_control_settings *settings)
5516 {
5517         enum i40e_status_code ret = I40E_SUCCESS;
5518         u32 hash_lut_size = 0;
5519         u32 val;
5520
5521         if (!settings)
5522                 return I40E_ERR_PARAM;
5523
5524         /* Validate the input settings */
5525         ret = i40e_validate_filter_settings(hw, settings);
5526         if (ret)
5527                 return ret;
5528
5529         /* Read the PF Queue Filter control register */
5530         val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
5531
5532         /* Program required PE hash buckets for the PF */
5533         val &= ~I40E_PFQF_CTL_0_PEHSIZE_MASK;
5534         val |= ((u32)settings->pe_filt_num << I40E_PFQF_CTL_0_PEHSIZE_SHIFT) &
5535                 I40E_PFQF_CTL_0_PEHSIZE_MASK;
5536         /* Program required PE contexts for the PF */
5537         val &= ~I40E_PFQF_CTL_0_PEDSIZE_MASK;
5538         val |= ((u32)settings->pe_cntx_num << I40E_PFQF_CTL_0_PEDSIZE_SHIFT) &
5539                 I40E_PFQF_CTL_0_PEDSIZE_MASK;
5540
5541         /* Program required FCoE hash buckets for the PF */
5542         val &= ~I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
5543         val |= ((u32)settings->fcoe_filt_num <<
5544                         I40E_PFQF_CTL_0_PFFCHSIZE_SHIFT) &
5545                 I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
5546         /* Program required FCoE DDP contexts for the PF */
5547         val &= ~I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
5548         val |= ((u32)settings->fcoe_cntx_num <<
5549                         I40E_PFQF_CTL_0_PFFCDSIZE_SHIFT) &
5550                 I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
5551
5552         /* Program Hash LUT size for the PF */
5553         val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
5554         if (settings->hash_lut_size == I40E_HASH_LUT_SIZE_512)
5555                 hash_lut_size = 1;
5556         val |= (hash_lut_size << I40E_PFQF_CTL_0_HASHLUTSIZE_SHIFT) &
5557                 I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
5558
5559         /* Enable FDIR, Ethertype and MACVLAN filters for PF and VFs */
5560         if (settings->enable_fdir)
5561                 val |= I40E_PFQF_CTL_0_FD_ENA_MASK;
5562         if (settings->enable_ethtype)
5563                 val |= I40E_PFQF_CTL_0_ETYPE_ENA_MASK;
5564         if (settings->enable_macvlan)
5565                 val |= I40E_PFQF_CTL_0_MACVLAN_ENA_MASK;
5566
5567         i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, val);
5568
5569         return I40E_SUCCESS;
5570 }
5571
5572 /**
5573  * i40e_aq_add_rem_control_packet_filter - Add or Remove Control Packet Filter
5574  * @hw: pointer to the hw struct
5575  * @mac_addr: MAC address to use in the filter
5576  * @ethtype: Ethertype to use in the filter
5577  * @flags: Flags that needs to be applied to the filter
5578  * @vsi_seid: seid of the control VSI
5579  * @queue: VSI queue number to send the packet to
5580  * @is_add: Add control packet filter if True else remove
5581  * @stats: Structure to hold information on control filter counts
5582  * @cmd_details: pointer to command details structure or NULL
5583  *
5584  * This command will Add or Remove control packet filter for a control VSI.
5585  * In return it will update the total number of perfect filter count in
5586  * the stats member.
5587  **/
5588 enum i40e_status_code i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
5589                                 u8 *mac_addr, u16 ethtype, u16 flags,
5590                                 u16 vsi_seid, u16 queue, bool is_add,
5591                                 struct i40e_control_filter_stats *stats,
5592                                 struct i40e_asq_cmd_details *cmd_details)
5593 {
5594         struct i40e_aq_desc desc;
5595         struct i40e_aqc_add_remove_control_packet_filter *cmd =
5596                 (struct i40e_aqc_add_remove_control_packet_filter *)
5597                 &desc.params.raw;
5598         struct i40e_aqc_add_remove_control_packet_filter_completion *resp =
5599                 (struct i40e_aqc_add_remove_control_packet_filter_completion *)
5600                 &desc.params.raw;
5601         enum i40e_status_code status;
5602
5603         if (vsi_seid == 0)
5604                 return I40E_ERR_PARAM;
5605
5606         if (is_add) {
5607                 i40e_fill_default_direct_cmd_desc(&desc,
5608                                 i40e_aqc_opc_add_control_packet_filter);
5609                 cmd->queue = CPU_TO_LE16(queue);
5610         } else {
5611                 i40e_fill_default_direct_cmd_desc(&desc,
5612                                 i40e_aqc_opc_remove_control_packet_filter);
5613         }
5614
5615         if (mac_addr)
5616                 i40e_memcpy(cmd->mac, mac_addr, ETH_ALEN,
5617                             I40E_NONDMA_TO_NONDMA);
5618
5619         cmd->etype = CPU_TO_LE16(ethtype);
5620         cmd->flags = CPU_TO_LE16(flags);
5621         cmd->seid = CPU_TO_LE16(vsi_seid);
5622
5623         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
5624
5625         if (!status && stats) {
5626                 stats->mac_etype_used = LE16_TO_CPU(resp->mac_etype_used);
5627                 stats->etype_used = LE16_TO_CPU(resp->etype_used);
5628                 stats->mac_etype_free = LE16_TO_CPU(resp->mac_etype_free);
5629                 stats->etype_free = LE16_TO_CPU(resp->etype_free);
5630         }
5631
5632         return status;
5633 }
5634
5635 /**
5636  * i40e_add_filter_to_drop_tx_flow_control_frames- filter to drop flow control
5637  * @hw: pointer to the hw struct
5638  * @seid: VSI seid to add ethertype filter from
5639  **/
5640 void i40e_add_filter_to_drop_tx_flow_control_frames(struct i40e_hw *hw,
5641                                                     u16 seid)
5642 {
5643 #define I40E_FLOW_CONTROL_ETHTYPE 0x8808
5644         u16 flag = I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC |
5645                    I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP |
5646                    I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX;
5647         u16 ethtype = I40E_FLOW_CONTROL_ETHTYPE;
5648         enum i40e_status_code status;
5649
5650         status = i40e_aq_add_rem_control_packet_filter(hw, NULL, ethtype, flag,
5651                                                        seid, 0, true, NULL,
5652                                                        NULL);
5653         if (status)
5654                 DEBUGOUT("Ethtype Filter Add failed: Error pruning Tx flow control frames\n");
5655 }
5656
5657 /**
5658  * i40e_fix_up_geneve_vni - adjust Geneve VNI for HW issue
5659  * @filters: list of cloud filters
5660  * @filter_count: length of list
5661  *
5662  * There's an issue in the device where the Geneve VNI layout needs
5663  * to be shifted 1 byte over from the VxLAN VNI
5664  **/
5665 STATIC void i40e_fix_up_geneve_vni(
5666         struct i40e_aqc_add_remove_cloud_filters_element_data *filters,
5667         u8 filter_count)
5668 {
5669         struct i40e_aqc_add_remove_cloud_filters_element_data *f = filters;
5670         int i;
5671
5672         for (i = 0; i < filter_count; i++) {
5673                 u16 tnl_type;
5674                 u32 ti;
5675
5676                 tnl_type = (LE16_TO_CPU(f[i].flags) &
5677                            I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK) >>
5678                            I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT;
5679                 if (tnl_type == I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE) {
5680                         ti = LE32_TO_CPU(f[i].tenant_id);
5681                         f[i].tenant_id = CPU_TO_LE32(ti << 8);
5682                 }
5683         }
5684 }
5685
5686 /**
5687  * i40e_aq_add_cloud_filters
5688  * @hw: pointer to the hardware structure
5689  * @seid: VSI seid to add cloud filters from
5690  * @filters: Buffer which contains the filters to be added
5691  * @filter_count: number of filters contained in the buffer
5692  *
5693  * Set the cloud filters for a given VSI.  The contents of the
5694  * i40e_aqc_add_remove_cloud_filters_element_data are filled
5695  * in by the caller of the function.
5696  *
5697  **/
5698 enum i40e_status_code i40e_aq_add_cloud_filters(struct i40e_hw *hw,
5699         u16 seid,
5700         struct i40e_aqc_add_remove_cloud_filters_element_data *filters,
5701         u8 filter_count)
5702 {
5703         struct i40e_aq_desc desc;
5704         struct i40e_aqc_add_remove_cloud_filters *cmd =
5705         (struct i40e_aqc_add_remove_cloud_filters *)&desc.params.raw;
5706         enum i40e_status_code status;
5707         u16 buff_len;
5708
5709         i40e_fill_default_direct_cmd_desc(&desc,
5710                                           i40e_aqc_opc_add_cloud_filters);
5711
5712         buff_len = filter_count * sizeof(*filters);
5713         desc.datalen = CPU_TO_LE16(buff_len);
5714         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
5715         cmd->num_filters = filter_count;
5716         cmd->seid = CPU_TO_LE16(seid);
5717
5718         i40e_fix_up_geneve_vni(filters, filter_count);
5719
5720         status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5721
5722         return status;
5723 }
5724
5725 /**
5726  * i40e_aq_add_cloud_filters_big_buffer
5727  * @hw: pointer to the hardware structure
5728  * @seid: VSI seid to add cloud filters from
5729  * @filters: Buffer which contains the filters in big buffer to be added
5730  * @filter_count: number of filters contained in the buffer
5731  *
5732  * Set the cloud filters for a given VSI.  The contents of the
5733  * i40e_aqc_add_rm_cloud_filt_elem_ext are filled in by the caller of
5734  * the function.
5735  *
5736  **/
5737 enum i40e_status_code i40e_aq_add_cloud_filters_big_buffer(struct i40e_hw *hw,
5738         u16 seid,
5739         struct i40e_aqc_add_rm_cloud_filt_elem_ext *filters,
5740         u8 filter_count)
5741 {
5742         struct i40e_aq_desc desc;
5743         struct i40e_aqc_add_remove_cloud_filters *cmd =
5744         (struct i40e_aqc_add_remove_cloud_filters *)&desc.params.raw;
5745         enum i40e_status_code status;
5746         u16 buff_len;
5747         int i;
5748
5749         i40e_fill_default_direct_cmd_desc(&desc,
5750                                           i40e_aqc_opc_add_cloud_filters);
5751
5752         buff_len = filter_count * sizeof(*filters);
5753         desc.datalen = CPU_TO_LE16(buff_len);
5754         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
5755         cmd->num_filters = filter_count;
5756         cmd->seid = CPU_TO_LE16(seid);
5757         cmd->big_buffer_flag = I40E_AQC_ADD_REM_CLOUD_CMD_BIG_BUFFER;
5758
5759         /* adjust Geneve VNI for HW issue */
5760         for (i = 0; i < filter_count; i++) {
5761                 u16 tnl_type;
5762                 u32 ti;
5763
5764                 tnl_type = (LE16_TO_CPU(filters[i].element.flags) &
5765                            I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK) >>
5766                            I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT;
5767                 if (tnl_type == I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE) {
5768                         ti = LE32_TO_CPU(filters[i].element.tenant_id);
5769                         filters[i].element.tenant_id = CPU_TO_LE32(ti << 8);
5770                 }
5771         }
5772
5773         status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5774
5775         return status;
5776 }
5777
5778 /**
5779  * i40e_aq_remove_cloud_filters
5780  * @hw: pointer to the hardware structure
5781  * @seid: VSI seid to remove cloud filters from
5782  * @filters: Buffer which contains the filters to be removed
5783  * @filter_count: number of filters contained in the buffer
5784  *
5785  * Remove the cloud filters for a given VSI.  The contents of the
5786  * i40e_aqc_add_remove_cloud_filters_element_data are filled
5787  * in by the caller of the function.
5788  *
5789  **/
5790 enum i40e_status_code i40e_aq_remove_cloud_filters(struct i40e_hw *hw,
5791         u16 seid,
5792         struct i40e_aqc_add_remove_cloud_filters_element_data *filters,
5793         u8 filter_count)
5794 {
5795         struct i40e_aq_desc desc;
5796         struct i40e_aqc_add_remove_cloud_filters *cmd =
5797         (struct i40e_aqc_add_remove_cloud_filters *)&desc.params.raw;
5798         enum i40e_status_code status;
5799         u16 buff_len;
5800
5801         i40e_fill_default_direct_cmd_desc(&desc,
5802                                           i40e_aqc_opc_remove_cloud_filters);
5803
5804         buff_len = filter_count * sizeof(*filters);
5805         desc.datalen = CPU_TO_LE16(buff_len);
5806         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
5807         cmd->num_filters = filter_count;
5808         cmd->seid = CPU_TO_LE16(seid);
5809
5810         i40e_fix_up_geneve_vni(filters, filter_count);
5811
5812         status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5813
5814         return status;
5815 }
5816
5817 /**
5818  * i40e_aq_remove_cloud_filters_big_buffer
5819  * @hw: pointer to the hardware structure
5820  * @seid: VSI seid to remove cloud filters from
5821  * @filters: Buffer which contains the filters in big buffer to be removed
5822  * @filter_count: number of filters contained in the buffer
5823  *
5824  * Remove the cloud filters for a given VSI.  The contents of the
5825  * i40e_aqc_add_rm_cloud_filt_elem_ext are filled in by the caller of
5826  * the function.
5827  *
5828  **/
5829 enum i40e_status_code i40e_aq_remove_cloud_filters_big_buffer(
5830         struct i40e_hw *hw,
5831         u16 seid,
5832         struct i40e_aqc_add_rm_cloud_filt_elem_ext *filters,
5833         u8 filter_count)
5834 {
5835         struct i40e_aq_desc desc;
5836         struct i40e_aqc_add_remove_cloud_filters *cmd =
5837         (struct i40e_aqc_add_remove_cloud_filters *)&desc.params.raw;
5838         enum i40e_status_code status;
5839         u16 buff_len;
5840         int i;
5841
5842         i40e_fill_default_direct_cmd_desc(&desc,
5843                                           i40e_aqc_opc_remove_cloud_filters);
5844
5845         buff_len = filter_count * sizeof(*filters);
5846         desc.datalen = CPU_TO_LE16(buff_len);
5847         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
5848         cmd->num_filters = filter_count;
5849         cmd->seid = CPU_TO_LE16(seid);
5850         cmd->big_buffer_flag = I40E_AQC_ADD_REM_CLOUD_CMD_BIG_BUFFER;
5851
5852         /* adjust Geneve VNI for HW issue */
5853         for (i = 0; i < filter_count; i++) {
5854                 u16 tnl_type;
5855                 u32 ti;
5856
5857                 tnl_type = (LE16_TO_CPU(filters[i].element.flags) &
5858                            I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK) >>
5859                            I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT;
5860                 if (tnl_type == I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE) {
5861                         ti = LE32_TO_CPU(filters[i].element.tenant_id);
5862                         filters[i].element.tenant_id = CPU_TO_LE32(ti << 8);
5863                 }
5864         }
5865
5866         status = i40e_asq_send_command(hw, &desc, filters, buff_len, NULL);
5867
5868         return status;
5869 }
5870
5871 /**
5872  * i40e_aq_replace_cloud_filters - Replace cloud filter command
5873  * @hw: pointer to the hw struct
5874  * @filters: pointer to the i40e_aqc_replace_cloud_filter_cmd struct
5875  * @cmd_buf: pointer to the i40e_aqc_replace_cloud_filter_cmd_buf struct
5876  *
5877  **/
5878 enum
5879 i40e_status_code i40e_aq_replace_cloud_filters(struct i40e_hw *hw,
5880         struct i40e_aqc_replace_cloud_filters_cmd *filters,
5881         struct i40e_aqc_replace_cloud_filters_cmd_buf *cmd_buf)
5882 {
5883         struct i40e_aq_desc desc;
5884         struct i40e_aqc_replace_cloud_filters_cmd *cmd =
5885                 (struct i40e_aqc_replace_cloud_filters_cmd *)&desc.params.raw;
5886         enum i40e_status_code status = I40E_SUCCESS;
5887         int i = 0;
5888
5889         i40e_fill_default_direct_cmd_desc(&desc,
5890                                           i40e_aqc_opc_replace_cloud_filters);
5891
5892         desc.datalen = CPU_TO_LE16(32);
5893         desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
5894         cmd->old_filter_type = filters->old_filter_type;
5895         cmd->new_filter_type = filters->new_filter_type;
5896         cmd->valid_flags = filters->valid_flags;
5897         cmd->tr_bit = filters->tr_bit;
5898
5899         status = i40e_asq_send_command(hw, &desc, cmd_buf,
5900                 sizeof(struct i40e_aqc_replace_cloud_filters_cmd_buf),  NULL);
5901
5902         /* for get cloud filters command */
5903         for (i = 0; i < 32; i += 4) {
5904                 cmd_buf->filters[i / 4].filter_type = cmd_buf->data[i];
5905                 cmd_buf->filters[i / 4].input[0] = cmd_buf->data[i + 1];
5906                 cmd_buf->filters[i / 4].input[1] = cmd_buf->data[i + 2];
5907                 cmd_buf->filters[i / 4].input[2] = cmd_buf->data[i + 3];
5908         }
5909
5910         return status;
5911 }
5912
5913
5914 /**
5915  * i40e_aq_alternate_write
5916  * @hw: pointer to the hardware structure
5917  * @reg_addr0: address of first dword to be read
5918  * @reg_val0: value to be written under 'reg_addr0'
5919  * @reg_addr1: address of second dword to be read
5920  * @reg_val1: value to be written under 'reg_addr1'
5921  *
5922  * Write one or two dwords to alternate structure. Fields are indicated
5923  * by 'reg_addr0' and 'reg_addr1' register numbers.
5924  *
5925  **/
5926 enum i40e_status_code i40e_aq_alternate_write(struct i40e_hw *hw,
5927                                 u32 reg_addr0, u32 reg_val0,
5928                                 u32 reg_addr1, u32 reg_val1)
5929 {
5930         struct i40e_aq_desc desc;
5931         struct i40e_aqc_alternate_write *cmd_resp =
5932                 (struct i40e_aqc_alternate_write *)&desc.params.raw;
5933         enum i40e_status_code status;
5934
5935         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_alternate_write);
5936         cmd_resp->address0 = CPU_TO_LE32(reg_addr0);
5937         cmd_resp->address1 = CPU_TO_LE32(reg_addr1);
5938         cmd_resp->data0 = CPU_TO_LE32(reg_val0);
5939         cmd_resp->data1 = CPU_TO_LE32(reg_val1);
5940
5941         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
5942
5943         return status;
5944 }
5945
5946 /**
5947  * i40e_aq_alternate_write_indirect
5948  * @hw: pointer to the hardware structure
5949  * @addr: address of a first register to be modified
5950  * @dw_count: number of alternate structure fields to write
5951  * @buffer: pointer to the command buffer
5952  *
5953  * Write 'dw_count' dwords from 'buffer' to alternate structure
5954  * starting at 'addr'.
5955  *
5956  **/
5957 enum i40e_status_code i40e_aq_alternate_write_indirect(struct i40e_hw *hw,
5958                                 u32 addr, u32 dw_count, void *buffer)
5959 {
5960         struct i40e_aq_desc desc;
5961         struct i40e_aqc_alternate_ind_write *cmd_resp =
5962                 (struct i40e_aqc_alternate_ind_write *)&desc.params.raw;
5963         enum i40e_status_code status;
5964
5965         if (buffer == NULL)
5966                 return I40E_ERR_PARAM;
5967
5968         /* Indirect command */
5969         i40e_fill_default_direct_cmd_desc(&desc,
5970                                          i40e_aqc_opc_alternate_write_indirect);
5971
5972         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_RD);
5973         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_BUF);
5974         if (dw_count > (I40E_AQ_LARGE_BUF/4))
5975                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
5976
5977         cmd_resp->address = CPU_TO_LE32(addr);
5978         cmd_resp->length = CPU_TO_LE32(dw_count);
5979
5980         status = i40e_asq_send_command(hw, &desc, buffer,
5981                                        I40E_LO_DWORD(4*dw_count), NULL);
5982
5983         return status;
5984 }
5985
5986 /**
5987  * i40e_aq_alternate_read
5988  * @hw: pointer to the hardware structure
5989  * @reg_addr0: address of first dword to be read
5990  * @reg_val0: pointer for data read from 'reg_addr0'
5991  * @reg_addr1: address of second dword to be read
5992  * @reg_val1: pointer for data read from 'reg_addr1'
5993  *
5994  * Read one or two dwords from alternate structure. Fields are indicated
5995  * by 'reg_addr0' and 'reg_addr1' register numbers. If 'reg_val1' pointer
5996  * is not passed then only register at 'reg_addr0' is read.
5997  *
5998  **/
5999 enum i40e_status_code i40e_aq_alternate_read(struct i40e_hw *hw,
6000                                 u32 reg_addr0, u32 *reg_val0,
6001                                 u32 reg_addr1, u32 *reg_val1)
6002 {
6003         struct i40e_aq_desc desc;
6004         struct i40e_aqc_alternate_write *cmd_resp =
6005                 (struct i40e_aqc_alternate_write *)&desc.params.raw;
6006         enum i40e_status_code status;
6007
6008         if (reg_val0 == NULL)
6009                 return I40E_ERR_PARAM;
6010
6011         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_alternate_read);
6012         cmd_resp->address0 = CPU_TO_LE32(reg_addr0);
6013         cmd_resp->address1 = CPU_TO_LE32(reg_addr1);
6014
6015         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
6016
6017         if (status == I40E_SUCCESS) {
6018                 *reg_val0 = LE32_TO_CPU(cmd_resp->data0);
6019
6020                 if (reg_val1 != NULL)
6021                         *reg_val1 = LE32_TO_CPU(cmd_resp->data1);
6022         }
6023
6024         return status;
6025 }
6026
6027 /**
6028  * i40e_aq_alternate_read_indirect
6029  * @hw: pointer to the hardware structure
6030  * @addr: address of the alternate structure field
6031  * @dw_count: number of alternate structure fields to read
6032  * @buffer: pointer to the command buffer
6033  *
6034  * Read 'dw_count' dwords from alternate structure starting at 'addr' and
6035  * place them in 'buffer'. The buffer should be allocated by caller.
6036  *
6037  **/
6038 enum i40e_status_code i40e_aq_alternate_read_indirect(struct i40e_hw *hw,
6039                                 u32 addr, u32 dw_count, void *buffer)
6040 {
6041         struct i40e_aq_desc desc;
6042         struct i40e_aqc_alternate_ind_write *cmd_resp =
6043                 (struct i40e_aqc_alternate_ind_write *)&desc.params.raw;
6044         enum i40e_status_code status;
6045
6046         if (buffer == NULL)
6047                 return I40E_ERR_PARAM;
6048
6049         /* Indirect command */
6050         i40e_fill_default_direct_cmd_desc(&desc,
6051                 i40e_aqc_opc_alternate_read_indirect);
6052
6053         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_RD);
6054         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_BUF);
6055         if (dw_count > (I40E_AQ_LARGE_BUF/4))
6056                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
6057
6058         cmd_resp->address = CPU_TO_LE32(addr);
6059         cmd_resp->length = CPU_TO_LE32(dw_count);
6060
6061         status = i40e_asq_send_command(hw, &desc, buffer,
6062                                        I40E_LO_DWORD(4*dw_count), NULL);
6063
6064         return status;
6065 }
6066
6067 /**
6068  *  i40e_aq_alternate_clear
6069  *  @hw: pointer to the HW structure.
6070  *
6071  *  Clear the alternate structures of the port from which the function
6072  *  is called.
6073  *
6074  **/
6075 enum i40e_status_code i40e_aq_alternate_clear(struct i40e_hw *hw)
6076 {
6077         struct i40e_aq_desc desc;
6078         enum i40e_status_code status;
6079
6080         i40e_fill_default_direct_cmd_desc(&desc,
6081                                           i40e_aqc_opc_alternate_clear_port);
6082
6083         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
6084
6085         return status;
6086 }
6087
6088 /**
6089  *  i40e_aq_alternate_write_done
6090  *  @hw: pointer to the HW structure.
6091  *  @bios_mode: indicates whether the command is executed by UEFI or legacy BIOS
6092  *  @reset_needed: indicates the SW should trigger GLOBAL reset
6093  *
6094  *  Indicates to the FW that alternate structures have been changed.
6095  *
6096  **/
6097 enum i40e_status_code i40e_aq_alternate_write_done(struct i40e_hw *hw,
6098                 u8 bios_mode, bool *reset_needed)
6099 {
6100         struct i40e_aq_desc desc;
6101         struct i40e_aqc_alternate_write_done *cmd =
6102                 (struct i40e_aqc_alternate_write_done *)&desc.params.raw;
6103         enum i40e_status_code status;
6104
6105         if (reset_needed == NULL)
6106                 return I40E_ERR_PARAM;
6107
6108         i40e_fill_default_direct_cmd_desc(&desc,
6109                                           i40e_aqc_opc_alternate_write_done);
6110
6111         cmd->cmd_flags = CPU_TO_LE16(bios_mode);
6112
6113         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
6114         if (!status && reset_needed)
6115                 *reset_needed = ((LE16_TO_CPU(cmd->cmd_flags) &
6116                                  I40E_AQ_ALTERNATE_RESET_NEEDED) != 0);
6117
6118         return status;
6119 }
6120
6121 /**
6122  *  i40e_aq_set_oem_mode
6123  *  @hw: pointer to the HW structure.
6124  *  @oem_mode: the OEM mode to be used
6125  *
6126  *  Sets the device to a specific operating mode. Currently the only supported
6127  *  mode is no_clp, which causes FW to refrain from using Alternate RAM.
6128  *
6129  **/
6130 enum i40e_status_code i40e_aq_set_oem_mode(struct i40e_hw *hw,
6131                 u8 oem_mode)
6132 {
6133         struct i40e_aq_desc desc;
6134         struct i40e_aqc_alternate_write_done *cmd =
6135                 (struct i40e_aqc_alternate_write_done *)&desc.params.raw;
6136         enum i40e_status_code status;
6137
6138         i40e_fill_default_direct_cmd_desc(&desc,
6139                                           i40e_aqc_opc_alternate_set_mode);
6140
6141         cmd->cmd_flags = CPU_TO_LE16(oem_mode);
6142
6143         status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
6144
6145         return status;
6146 }
6147
6148 /**
6149  * i40e_aq_resume_port_tx
6150  * @hw: pointer to the hardware structure
6151  * @cmd_details: pointer to command details structure or NULL
6152  *
6153  * Resume port's Tx traffic
6154  **/
6155 enum i40e_status_code i40e_aq_resume_port_tx(struct i40e_hw *hw,
6156                                 struct i40e_asq_cmd_details *cmd_details)
6157 {
6158         struct i40e_aq_desc desc;
6159         enum i40e_status_code status;
6160
6161         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_resume_port_tx);
6162
6163         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
6164
6165         return status;
6166 }
6167
6168 /**
6169  * i40e_set_pci_config_data - store PCI bus info
6170  * @hw: pointer to hardware structure
6171  * @link_status: the link status word from PCI config space
6172  *
6173  * Stores the PCI bus info (speed, width, type) within the i40e_hw structure
6174  **/
6175 void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status)
6176 {
6177         hw->bus.type = i40e_bus_type_pci_express;
6178
6179         switch (link_status & I40E_PCI_LINK_WIDTH) {
6180         case I40E_PCI_LINK_WIDTH_1:
6181                 hw->bus.width = i40e_bus_width_pcie_x1;
6182                 break;
6183         case I40E_PCI_LINK_WIDTH_2:
6184                 hw->bus.width = i40e_bus_width_pcie_x2;
6185                 break;
6186         case I40E_PCI_LINK_WIDTH_4:
6187                 hw->bus.width = i40e_bus_width_pcie_x4;
6188                 break;
6189         case I40E_PCI_LINK_WIDTH_8:
6190                 hw->bus.width = i40e_bus_width_pcie_x8;
6191                 break;
6192         default:
6193                 hw->bus.width = i40e_bus_width_unknown;
6194                 break;
6195         }
6196
6197         switch (link_status & I40E_PCI_LINK_SPEED) {
6198         case I40E_PCI_LINK_SPEED_2500:
6199                 hw->bus.speed = i40e_bus_speed_2500;
6200                 break;
6201         case I40E_PCI_LINK_SPEED_5000:
6202                 hw->bus.speed = i40e_bus_speed_5000;
6203                 break;
6204         case I40E_PCI_LINK_SPEED_8000:
6205                 hw->bus.speed = i40e_bus_speed_8000;
6206                 break;
6207         default:
6208                 hw->bus.speed = i40e_bus_speed_unknown;
6209                 break;
6210         }
6211 }
6212
6213 /**
6214  * i40e_aq_debug_dump
6215  * @hw: pointer to the hardware structure
6216  * @cluster_id: specific cluster to dump
6217  * @table_id: table id within cluster
6218  * @start_index: index of line in the block to read
6219  * @buff_size: dump buffer size
6220  * @buff: dump buffer
6221  * @ret_buff_size: actual buffer size returned
6222  * @ret_next_table: next block to read
6223  * @ret_next_index: next index to read
6224  * @cmd_details: pointer to command details structure or NULL
6225  *
6226  * Dump internal FW/HW data for debug purposes.
6227  *
6228  **/
6229 enum i40e_status_code i40e_aq_debug_dump(struct i40e_hw *hw, u8 cluster_id,
6230                                 u8 table_id, u32 start_index, u16 buff_size,
6231                                 void *buff, u16 *ret_buff_size,
6232                                 u8 *ret_next_table, u32 *ret_next_index,
6233                                 struct i40e_asq_cmd_details *cmd_details)
6234 {
6235         struct i40e_aq_desc desc;
6236         struct i40e_aqc_debug_dump_internals *cmd =
6237                 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
6238         struct i40e_aqc_debug_dump_internals *resp =
6239                 (struct i40e_aqc_debug_dump_internals *)&desc.params.raw;
6240         enum i40e_status_code status;
6241
6242         if (buff_size == 0 || !buff)
6243                 return I40E_ERR_PARAM;
6244
6245         i40e_fill_default_direct_cmd_desc(&desc,
6246                                           i40e_aqc_opc_debug_dump_internals);
6247         /* Indirect Command */
6248         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
6249         if (buff_size > I40E_AQ_LARGE_BUF)
6250                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
6251
6252         cmd->cluster_id = cluster_id;
6253         cmd->table_id = table_id;
6254         cmd->idx = CPU_TO_LE32(start_index);
6255
6256         desc.datalen = CPU_TO_LE16(buff_size);
6257
6258         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
6259         if (!status) {
6260                 if (ret_buff_size != NULL)
6261                         *ret_buff_size = LE16_TO_CPU(desc.datalen);
6262                 if (ret_next_table != NULL)
6263                         *ret_next_table = resp->table_id;
6264                 if (ret_next_index != NULL)
6265                         *ret_next_index = LE32_TO_CPU(resp->idx);
6266         }
6267
6268         return status;
6269 }
6270
6271 /**
6272  * i40e_read_bw_from_alt_ram
6273  * @hw: pointer to the hardware structure
6274  * @max_bw: pointer for max_bw read
6275  * @min_bw: pointer for min_bw read
6276  * @min_valid: pointer for bool that is true if min_bw is a valid value
6277  * @max_valid: pointer for bool that is true if max_bw is a valid value
6278  *
6279  * Read bw from the alternate ram for the given pf
6280  **/
6281 enum i40e_status_code i40e_read_bw_from_alt_ram(struct i40e_hw *hw,
6282                                         u32 *max_bw, u32 *min_bw,
6283                                         bool *min_valid, bool *max_valid)
6284 {
6285         enum i40e_status_code status;
6286         u32 max_bw_addr, min_bw_addr;
6287
6288         /* Calculate the address of the min/max bw registers */
6289         max_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
6290                       I40E_ALT_STRUCT_MAX_BW_OFFSET +
6291                       (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
6292         min_bw_addr = I40E_ALT_STRUCT_FIRST_PF_OFFSET +
6293                       I40E_ALT_STRUCT_MIN_BW_OFFSET +
6294                       (I40E_ALT_STRUCT_DWORDS_PER_PF * hw->pf_id);
6295
6296         /* Read the bandwidths from alt ram */
6297         status = i40e_aq_alternate_read(hw, max_bw_addr, max_bw,
6298                                         min_bw_addr, min_bw);
6299
6300         if (*min_bw & I40E_ALT_BW_VALID_MASK)
6301                 *min_valid = true;
6302         else
6303                 *min_valid = false;
6304
6305         if (*max_bw & I40E_ALT_BW_VALID_MASK)
6306                 *max_valid = true;
6307         else
6308                 *max_valid = false;
6309
6310         return status;
6311 }
6312
6313 /**
6314  * i40e_aq_configure_partition_bw
6315  * @hw: pointer to the hardware structure
6316  * @bw_data: Buffer holding valid pfs and bw limits
6317  * @cmd_details: pointer to command details
6318  *
6319  * Configure partitions guaranteed/max bw
6320  **/
6321 enum i40e_status_code i40e_aq_configure_partition_bw(struct i40e_hw *hw,
6322                         struct i40e_aqc_configure_partition_bw_data *bw_data,
6323                         struct i40e_asq_cmd_details *cmd_details)
6324 {
6325         enum i40e_status_code status;
6326         struct i40e_aq_desc desc;
6327         u16 bwd_size = sizeof(*bw_data);
6328
6329         i40e_fill_default_direct_cmd_desc(&desc,
6330                                 i40e_aqc_opc_configure_partition_bw);
6331
6332         /* Indirect command */
6333         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
6334         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
6335
6336         desc.datalen = CPU_TO_LE16(bwd_size);
6337
6338         status = i40e_asq_send_command(hw, &desc, bw_data, bwd_size, cmd_details);
6339
6340         return status;
6341 }
6342
6343 /**
6344  * i40e_read_phy_register_clause22
6345  * @hw: pointer to the HW structure
6346  * @reg: register address in the page
6347  * @phy_addr: PHY address on MDIO interface
6348  * @value: PHY register value
6349  *
6350  * Reads specified PHY register value
6351  **/
6352 enum i40e_status_code i40e_read_phy_register_clause22(struct i40e_hw *hw,
6353                                         u16 reg, u8 phy_addr, u16 *value)
6354 {
6355         enum i40e_status_code status = I40E_ERR_TIMEOUT;
6356         u8 port_num = (u8)hw->func_caps.mdio_port_num;
6357         u32 command = 0;
6358         u16 retry = 1000;
6359
6360         command = (reg << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
6361                   (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
6362                   (I40E_MDIO_CLAUSE22_OPCODE_READ_MASK) |
6363                   (I40E_MDIO_CLAUSE22_STCODE_MASK) |
6364                   (I40E_GLGEN_MSCA_MDICMD_MASK);
6365         wr32(hw, I40E_GLGEN_MSCA(port_num), command);
6366         do {
6367                 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
6368                 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
6369                         status = I40E_SUCCESS;
6370                         break;
6371                 }
6372                 i40e_usec_delay(10);
6373                 retry--;
6374         } while (retry);
6375
6376         if (status) {
6377                 i40e_debug(hw, I40E_DEBUG_PHY,
6378                            "PHY: Can't write command to external PHY.\n");
6379         } else {
6380                 command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
6381                 *value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
6382                          I40E_GLGEN_MSRWD_MDIRDDATA_SHIFT;
6383         }
6384
6385         return status;
6386 }
6387
6388 /**
6389  * i40e_write_phy_register_clause22
6390  * @hw: pointer to the HW structure
6391  * @reg: register address in the page
6392  * @phy_addr: PHY address on MDIO interface
6393  * @value: PHY register value
6394  *
6395  * Writes specified PHY register value
6396  **/
6397 enum i40e_status_code i40e_write_phy_register_clause22(struct i40e_hw *hw,
6398                                         u16 reg, u8 phy_addr, u16 value)
6399 {
6400         enum i40e_status_code status = I40E_ERR_TIMEOUT;
6401         u8 port_num = (u8)hw->func_caps.mdio_port_num;
6402         u32 command  = 0;
6403         u16 retry = 1000;
6404
6405         command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
6406         wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
6407
6408         command = (reg << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
6409                   (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
6410                   (I40E_MDIO_CLAUSE22_OPCODE_WRITE_MASK) |
6411                   (I40E_MDIO_CLAUSE22_STCODE_MASK) |
6412                   (I40E_GLGEN_MSCA_MDICMD_MASK);
6413
6414         wr32(hw, I40E_GLGEN_MSCA(port_num), command);
6415         do {
6416                 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
6417                 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
6418                         status = I40E_SUCCESS;
6419                         break;
6420                 }
6421                 i40e_usec_delay(10);
6422                 retry--;
6423         } while (retry);
6424
6425         return status;
6426 }
6427
6428 /**
6429  * i40e_read_phy_register_clause45
6430  * @hw: pointer to the HW structure
6431  * @page: registers page number
6432  * @reg: register address in the page
6433  * @phy_addr: PHY address on MDIO interface
6434  * @value: PHY register value
6435  *
6436  * Reads specified PHY register value
6437  **/
6438 enum i40e_status_code i40e_read_phy_register_clause45(struct i40e_hw *hw,
6439                                 u8 page, u16 reg, u8 phy_addr, u16 *value)
6440 {
6441         enum i40e_status_code status = I40E_ERR_TIMEOUT;
6442         u32 command  = 0;
6443         u16 retry = 1000;
6444         u8 port_num = (u8)hw->func_caps.mdio_port_num;
6445
6446         command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
6447                   (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
6448                   (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
6449                   (I40E_MDIO_CLAUSE45_OPCODE_ADDRESS_MASK) |
6450                   (I40E_MDIO_CLAUSE45_STCODE_MASK) |
6451                   (I40E_GLGEN_MSCA_MDICMD_MASK) |
6452                   (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
6453         wr32(hw, I40E_GLGEN_MSCA(port_num), command);
6454         do {
6455                 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
6456                 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
6457                         status = I40E_SUCCESS;
6458                         break;
6459                 }
6460                 i40e_usec_delay(10);
6461                 retry--;
6462         } while (retry);
6463
6464         if (status) {
6465                 i40e_debug(hw, I40E_DEBUG_PHY,
6466                            "PHY: Can't write command to external PHY.\n");
6467                 goto phy_read_end;
6468         }
6469
6470         command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
6471                   (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
6472                   (I40E_MDIO_CLAUSE45_OPCODE_READ_MASK) |
6473                   (I40E_MDIO_CLAUSE45_STCODE_MASK) |
6474                   (I40E_GLGEN_MSCA_MDICMD_MASK) |
6475                   (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
6476         status = I40E_ERR_TIMEOUT;
6477         retry = 1000;
6478         wr32(hw, I40E_GLGEN_MSCA(port_num), command);
6479         do {
6480                 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
6481                 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
6482                         status = I40E_SUCCESS;
6483                         break;
6484                 }
6485                 i40e_usec_delay(10);
6486                 retry--;
6487         } while (retry);
6488
6489         if (!status) {
6490                 command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
6491                 *value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
6492                          I40E_GLGEN_MSRWD_MDIRDDATA_SHIFT;
6493         } else {
6494                 i40e_debug(hw, I40E_DEBUG_PHY,
6495                            "PHY: Can't read register value from external PHY.\n");
6496         }
6497
6498 phy_read_end:
6499         return status;
6500 }
6501
6502 /**
6503  * i40e_write_phy_register_clause45
6504  * @hw: pointer to the HW structure
6505  * @page: registers page number
6506  * @reg: register address in the page
6507  * @phy_addr: PHY address on MDIO interface
6508  * @value: PHY register value
6509  *
6510  * Writes value to specified PHY register
6511  **/
6512 enum i40e_status_code i40e_write_phy_register_clause45(struct i40e_hw *hw,
6513                                 u8 page, u16 reg, u8 phy_addr, u16 value)
6514 {
6515         enum i40e_status_code status = I40E_ERR_TIMEOUT;
6516         u32 command  = 0;
6517         u16 retry = 1000;
6518         u8 port_num = (u8)hw->func_caps.mdio_port_num;
6519
6520         command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
6521                   (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
6522                   (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
6523                   (I40E_MDIO_CLAUSE45_OPCODE_ADDRESS_MASK) |
6524                   (I40E_MDIO_CLAUSE45_STCODE_MASK) |
6525                   (I40E_GLGEN_MSCA_MDICMD_MASK) |
6526                   (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
6527         wr32(hw, I40E_GLGEN_MSCA(port_num), command);
6528         do {
6529                 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
6530                 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
6531                         status = I40E_SUCCESS;
6532                         break;
6533                 }
6534                 i40e_usec_delay(10);
6535                 retry--;
6536         } while (retry);
6537         if (status) {
6538                 i40e_debug(hw, I40E_DEBUG_PHY,
6539                            "PHY: Can't write command to external PHY.\n");
6540                 goto phy_write_end;
6541         }
6542
6543         command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
6544         wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
6545
6546         command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
6547                   (phy_addr << I40E_GLGEN_MSCA_PHYADD_SHIFT) |
6548                   (I40E_MDIO_CLAUSE45_OPCODE_WRITE_MASK) |
6549                   (I40E_MDIO_CLAUSE45_STCODE_MASK) |
6550                   (I40E_GLGEN_MSCA_MDICMD_MASK) |
6551                   (I40E_GLGEN_MSCA_MDIINPROGEN_MASK);
6552         status = I40E_ERR_TIMEOUT;
6553         retry = 1000;
6554         wr32(hw, I40E_GLGEN_MSCA(port_num), command);
6555         do {
6556                 command = rd32(hw, I40E_GLGEN_MSCA(port_num));
6557                 if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
6558                         status = I40E_SUCCESS;
6559                         break;
6560                 }
6561                 i40e_usec_delay(10);
6562                 retry--;
6563         } while (retry);
6564
6565 phy_write_end:
6566         return status;
6567 }
6568
6569 /**
6570  * i40e_write_phy_register
6571  * @hw: pointer to the HW structure
6572  * @page: registers page number
6573  * @reg: register address in the page
6574  * @phy_addr: PHY address on MDIO interface
6575  * @value: PHY register value
6576  *
6577  * Writes value to specified PHY register
6578  **/
6579 enum i40e_status_code i40e_write_phy_register(struct i40e_hw *hw,
6580                                 u8 page, u16 reg, u8 phy_addr, u16 value)
6581 {
6582         enum i40e_status_code status;
6583
6584         switch (hw->device_id) {
6585         case I40E_DEV_ID_1G_BASE_T_X722:
6586                 status = i40e_write_phy_register_clause22(hw,
6587                         reg, phy_addr, value);
6588                 break;
6589         case I40E_DEV_ID_10G_BASE_T:
6590         case I40E_DEV_ID_10G_BASE_T4:
6591         case I40E_DEV_ID_10G_BASE_T_X722:
6592         case I40E_DEV_ID_25G_B:
6593         case I40E_DEV_ID_25G_SFP28:
6594                 status = i40e_write_phy_register_clause45(hw,
6595                         page, reg, phy_addr, value);
6596                 break;
6597         default:
6598                 status = I40E_ERR_UNKNOWN_PHY;
6599                 break;
6600         }
6601
6602         return status;
6603 }
6604
6605 /**
6606  * i40e_read_phy_register
6607  * @hw: pointer to the HW structure
6608  * @page: registers page number
6609  * @reg: register address in the page
6610  * @phy_addr: PHY address on MDIO interface
6611  * @value: PHY register value
6612  *
6613  * Reads specified PHY register value
6614  **/
6615 enum i40e_status_code i40e_read_phy_register(struct i40e_hw *hw,
6616                                 u8 page, u16 reg, u8 phy_addr, u16 *value)
6617 {
6618         enum i40e_status_code status;
6619
6620         switch (hw->device_id) {
6621         case I40E_DEV_ID_1G_BASE_T_X722:
6622                 status = i40e_read_phy_register_clause22(hw, reg, phy_addr,
6623                                                          value);
6624                 break;
6625         case I40E_DEV_ID_10G_BASE_T:
6626         case I40E_DEV_ID_10G_BASE_T4:
6627         case I40E_DEV_ID_10G_BASE_T_X722:
6628         case I40E_DEV_ID_25G_B:
6629         case I40E_DEV_ID_25G_SFP28:
6630                 status = i40e_read_phy_register_clause45(hw, page, reg,
6631                                                          phy_addr, value);
6632                 break;
6633         default:
6634                 status = I40E_ERR_UNKNOWN_PHY;
6635                 break;
6636         }
6637
6638         return status;
6639 }
6640
6641 /**
6642  * i40e_get_phy_address
6643  * @hw: pointer to the HW structure
6644  * @dev_num: PHY port num that address we want
6645  *
6646  * Gets PHY address for current port
6647  **/
6648 u8 i40e_get_phy_address(struct i40e_hw *hw, u8 dev_num)
6649 {
6650         u8 port_num = (u8)hw->func_caps.mdio_port_num;
6651         u32 reg_val = rd32(hw, I40E_GLGEN_MDIO_I2C_SEL(port_num));
6652
6653         return (u8)(reg_val >> ((dev_num + 1) * 5)) & 0x1f;
6654 }
6655
6656 /**
6657  * i40e_blink_phy_led
6658  * @hw: pointer to the HW structure
6659  * @time: time how long led will blinks in secs
6660  * @interval: gap between LED on and off in msecs
6661  *
6662  * Blinks PHY link LED
6663  **/
6664 enum i40e_status_code i40e_blink_phy_link_led(struct i40e_hw *hw,
6665                                               u32 time, u32 interval)
6666 {
6667         enum i40e_status_code status = I40E_SUCCESS;
6668         u32 i;
6669         u16 led_ctl = 0;
6670         u16 gpio_led_port;
6671         u16 led_reg;
6672         u16 led_addr = I40E_PHY_LED_PROV_REG_1;
6673         u8 phy_addr = 0;
6674         u8 port_num;
6675
6676         i = rd32(hw, I40E_PFGEN_PORTNUM);
6677         port_num = (u8)(i & I40E_PFGEN_PORTNUM_PORT_NUM_MASK);
6678         phy_addr = i40e_get_phy_address(hw, port_num);
6679
6680         for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
6681              led_addr++) {
6682                 status = i40e_read_phy_register_clause45(hw,
6683                                                          I40E_PHY_COM_REG_PAGE,
6684                                                          led_addr, phy_addr,
6685                                                          &led_reg);
6686                 if (status)
6687                         goto phy_blinking_end;
6688                 led_ctl = led_reg;
6689                 if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
6690                         led_reg = 0;
6691                         status = i40e_write_phy_register_clause45(hw,
6692                                                          I40E_PHY_COM_REG_PAGE,
6693                                                          led_addr, phy_addr,
6694                                                          led_reg);
6695                         if (status)
6696                                 goto phy_blinking_end;
6697                         break;
6698                 }
6699         }
6700
6701         if (time > 0 && interval > 0) {
6702                 for (i = 0; i < time * 1000; i += interval) {
6703                         status = i40e_read_phy_register_clause45(hw,
6704                                                 I40E_PHY_COM_REG_PAGE,
6705                                                 led_addr, phy_addr, &led_reg);
6706                         if (status)
6707                                 goto restore_config;
6708                         if (led_reg & I40E_PHY_LED_MANUAL_ON)
6709                                 led_reg = 0;
6710                         else
6711                                 led_reg = I40E_PHY_LED_MANUAL_ON;
6712                         status = i40e_write_phy_register_clause45(hw,
6713                                                 I40E_PHY_COM_REG_PAGE,
6714                                                 led_addr, phy_addr, led_reg);
6715                         if (status)
6716                                 goto restore_config;
6717                         i40e_msec_delay(interval);
6718                 }
6719         }
6720
6721 restore_config:
6722         status = i40e_write_phy_register_clause45(hw,
6723                                                   I40E_PHY_COM_REG_PAGE,
6724                                                   led_addr, phy_addr, led_ctl);
6725
6726 phy_blinking_end:
6727         return status;
6728 }
6729
6730 /**
6731  * i40e_led_get_reg - read LED register
6732  * @hw: pointer to the HW structure
6733  * @led_addr: LED register address
6734  * @reg_val: read register value
6735  **/
6736 static enum i40e_status_code i40e_led_get_reg(struct i40e_hw *hw, u16 led_addr,
6737                                               u32 *reg_val)
6738 {
6739         enum i40e_status_code status;
6740         u8 phy_addr = 0;
6741
6742         *reg_val = 0;
6743         if (hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE) {
6744                 status = i40e_aq_get_phy_register(hw,
6745                                                 I40E_AQ_PHY_REG_ACCESS_EXTERNAL,
6746                                                 I40E_PHY_COM_REG_PAGE,
6747                                                 I40E_PHY_LED_PROV_REG_1,
6748                                                 reg_val, NULL);
6749         } else {
6750                 phy_addr = i40e_get_phy_address(hw, hw->port);
6751                 status = i40e_read_phy_register_clause45(hw,
6752                                                          I40E_PHY_COM_REG_PAGE,
6753                                                          led_addr, phy_addr,
6754                                                          (u16 *)reg_val);
6755         }
6756         return status;
6757 }
6758
6759 /**
6760  * i40e_led_set_reg - write LED register
6761  * @hw: pointer to the HW structure
6762  * @led_addr: LED register address
6763  * @reg_val: register value to write
6764  **/
6765 static enum i40e_status_code i40e_led_set_reg(struct i40e_hw *hw, u16 led_addr,
6766                                               u32 reg_val)
6767 {
6768         enum i40e_status_code status;
6769         u8 phy_addr = 0;
6770
6771         if (hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE) {
6772                 status = i40e_aq_set_phy_register(hw,
6773                                                 I40E_AQ_PHY_REG_ACCESS_EXTERNAL,
6774                                                 I40E_PHY_COM_REG_PAGE,
6775                                                 I40E_PHY_LED_PROV_REG_1,
6776                                                 reg_val, NULL);
6777         } else {
6778                 phy_addr = i40e_get_phy_address(hw, hw->port);
6779                 status = i40e_write_phy_register_clause45(hw,
6780                                                           I40E_PHY_COM_REG_PAGE,
6781                                                           led_addr, phy_addr,
6782                                                           (u16)reg_val);
6783         }
6784
6785         return status;
6786 }
6787
6788 /**
6789  * i40e_led_get_phy - return current on/off mode
6790  * @hw: pointer to the hw struct
6791  * @led_addr: address of led register to use
6792  * @val: original value of register to use
6793  *
6794  **/
6795 enum i40e_status_code i40e_led_get_phy(struct i40e_hw *hw, u16 *led_addr,
6796                                        u16 *val)
6797 {
6798         enum i40e_status_code status = I40E_SUCCESS;
6799         u16 gpio_led_port;
6800         u32 reg_val_aq;
6801         u16 temp_addr;
6802         u8 phy_addr = 0;
6803         u16 reg_val;
6804
6805         if (hw->flags & I40E_HW_FLAG_AQ_PHY_ACCESS_CAPABLE) {
6806                 status = i40e_aq_get_phy_register(hw,
6807                                                 I40E_AQ_PHY_REG_ACCESS_EXTERNAL,
6808                                                 I40E_PHY_COM_REG_PAGE,
6809                                                 I40E_PHY_LED_PROV_REG_1,
6810                                                 &reg_val_aq, NULL);
6811                 if (status == I40E_SUCCESS)
6812                         *val = (u16)reg_val_aq;
6813                 return status;
6814         }
6815         temp_addr = I40E_PHY_LED_PROV_REG_1;
6816         phy_addr = i40e_get_phy_address(hw, hw->port);
6817         for (gpio_led_port = 0; gpio_led_port < 3; gpio_led_port++,
6818              temp_addr++) {
6819                 status = i40e_read_phy_register_clause45(hw,
6820                                                          I40E_PHY_COM_REG_PAGE,
6821                                                          temp_addr, phy_addr,
6822                                                          &reg_val);
6823                 if (status)
6824                         return status;
6825                 *val = reg_val;
6826                 if (reg_val & I40E_PHY_LED_LINK_MODE_MASK) {
6827                         *led_addr = temp_addr;
6828                         break;
6829                 }
6830         }
6831         return status;
6832 }
6833
6834 /**
6835  * i40e_led_set_phy
6836  * @hw: pointer to the HW structure
6837  * @on: true or false
6838  * @led_addr: address of led register to use
6839  * @mode: original val plus bit for set or ignore
6840  *
6841  * Set led's on or off when controlled by the PHY
6842  *
6843  **/
6844 enum i40e_status_code i40e_led_set_phy(struct i40e_hw *hw, bool on,
6845                                        u16 led_addr, u32 mode)
6846 {
6847         enum i40e_status_code status = I40E_SUCCESS;
6848         u32 led_ctl = 0;
6849         u32 led_reg = 0;
6850
6851         status = i40e_led_get_reg(hw, led_addr, &led_reg);
6852         if (status)
6853                 return status;
6854         led_ctl = led_reg;
6855         if (led_reg & I40E_PHY_LED_LINK_MODE_MASK) {
6856                 led_reg = 0;
6857                 status = i40e_led_set_reg(hw, led_addr, led_reg);
6858                 if (status)
6859                         return status;
6860         }
6861         status = i40e_led_get_reg(hw, led_addr, &led_reg);
6862         if (status)
6863                 goto restore_config;
6864         if (on)
6865                 led_reg = I40E_PHY_LED_MANUAL_ON;
6866         else
6867                 led_reg = 0;
6868         status = i40e_led_set_reg(hw, led_addr, led_reg);
6869         if (status)
6870                 goto restore_config;
6871         if (mode & I40E_PHY_LED_MODE_ORIG) {
6872                 led_ctl = (mode & I40E_PHY_LED_MODE_MASK);
6873                 status = i40e_led_set_reg(hw, led_addr, led_ctl);
6874         }
6875         return status;
6876
6877 restore_config:
6878         status = i40e_led_set_reg(hw, led_addr, led_ctl);
6879         return status;
6880 }
6881 #endif /* PF_DRIVER */
6882
6883 /**
6884  * i40e_aq_rx_ctl_read_register - use FW to read from an Rx control register
6885  * @hw: pointer to the hw struct
6886  * @reg_addr: register address
6887  * @reg_val: ptr to register value
6888  * @cmd_details: pointer to command details structure or NULL
6889  *
6890  * Use the firmware to read the Rx control register,
6891  * especially useful if the Rx unit is under heavy pressure
6892  **/
6893 enum i40e_status_code i40e_aq_rx_ctl_read_register(struct i40e_hw *hw,
6894                                 u32 reg_addr, u32 *reg_val,
6895                                 struct i40e_asq_cmd_details *cmd_details)
6896 {
6897         struct i40e_aq_desc desc;
6898         struct i40e_aqc_rx_ctl_reg_read_write *cmd_resp =
6899                 (struct i40e_aqc_rx_ctl_reg_read_write *)&desc.params.raw;
6900         enum i40e_status_code status;
6901
6902         if (reg_val == NULL)
6903                 return I40E_ERR_PARAM;
6904
6905         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_rx_ctl_reg_read);
6906
6907         cmd_resp->address = CPU_TO_LE32(reg_addr);
6908
6909         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
6910
6911         if (status == I40E_SUCCESS)
6912                 *reg_val = LE32_TO_CPU(cmd_resp->value);
6913
6914         return status;
6915 }
6916
6917 /**
6918  * i40e_read_rx_ctl - read from an Rx control register
6919  * @hw: pointer to the hw struct
6920  * @reg_addr: register address
6921  **/
6922 u32 i40e_read_rx_ctl(struct i40e_hw *hw, u32 reg_addr)
6923 {
6924         enum i40e_status_code status = I40E_SUCCESS;
6925         bool use_register;
6926         int retry = 5;
6927         u32 val = 0;
6928
6929         use_register = (((hw->aq.api_maj_ver == 1) &&
6930                         (hw->aq.api_min_ver < 5)) ||
6931                         (hw->mac.type == I40E_MAC_X722));
6932         if (!use_register) {
6933 do_retry:
6934                 status = i40e_aq_rx_ctl_read_register(hw, reg_addr, &val, NULL);
6935                 if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN && retry) {
6936                         i40e_msec_delay(1);
6937                         retry--;
6938                         goto do_retry;
6939                 }
6940         }
6941
6942         /* if the AQ access failed, try the old-fashioned way */
6943         if (status || use_register)
6944                 val = rd32(hw, reg_addr);
6945
6946         return val;
6947 }
6948
6949 /**
6950  * i40e_aq_rx_ctl_write_register
6951  * @hw: pointer to the hw struct
6952  * @reg_addr: register address
6953  * @reg_val: register value
6954  * @cmd_details: pointer to command details structure or NULL
6955  *
6956  * Use the firmware to write to an Rx control register,
6957  * especially useful if the Rx unit is under heavy pressure
6958  **/
6959 enum i40e_status_code i40e_aq_rx_ctl_write_register(struct i40e_hw *hw,
6960                                 u32 reg_addr, u32 reg_val,
6961                                 struct i40e_asq_cmd_details *cmd_details)
6962 {
6963         struct i40e_aq_desc desc;
6964         struct i40e_aqc_rx_ctl_reg_read_write *cmd =
6965                 (struct i40e_aqc_rx_ctl_reg_read_write *)&desc.params.raw;
6966         enum i40e_status_code status;
6967
6968         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_rx_ctl_reg_write);
6969
6970         cmd->address = CPU_TO_LE32(reg_addr);
6971         cmd->value = CPU_TO_LE32(reg_val);
6972
6973         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
6974
6975         return status;
6976 }
6977
6978 /**
6979  * i40e_write_rx_ctl - write to an Rx control register
6980  * @hw: pointer to the hw struct
6981  * @reg_addr: register address
6982  * @reg_val: register value
6983  **/
6984 void i40e_write_rx_ctl(struct i40e_hw *hw, u32 reg_addr, u32 reg_val)
6985 {
6986         enum i40e_status_code status = I40E_SUCCESS;
6987         bool use_register;
6988         int retry = 5;
6989
6990         use_register = (((hw->aq.api_maj_ver == 1) &&
6991                         (hw->aq.api_min_ver < 5)) ||
6992                         (hw->mac.type == I40E_MAC_X722));
6993         if (!use_register) {
6994 do_retry:
6995                 status = i40e_aq_rx_ctl_write_register(hw, reg_addr,
6996                                                        reg_val, NULL);
6997                 if (hw->aq.asq_last_status == I40E_AQ_RC_EAGAIN && retry) {
6998                         i40e_msec_delay(1);
6999                         retry--;
7000                         goto do_retry;
7001                 }
7002         }
7003
7004         /* if the AQ access failed, try the old-fashioned way */
7005         if (status || use_register)
7006                 wr32(hw, reg_addr, reg_val);
7007 }
7008
7009 /**
7010  * i40e_aq_set_phy_register
7011  * @hw: pointer to the hw struct
7012  * @phy_select: select which phy should be accessed
7013  * @dev_addr: PHY device address
7014  * @reg_addr: PHY register address
7015  * @reg_val: new register value
7016  * @cmd_details: pointer to command details structure or NULL
7017  *
7018  * Write the external PHY register.
7019  **/
7020 enum i40e_status_code i40e_aq_set_phy_register(struct i40e_hw *hw,
7021                                 u8 phy_select, u8 dev_addr,
7022                                 u32 reg_addr, u32 reg_val,
7023                                 struct i40e_asq_cmd_details *cmd_details)
7024 {
7025         struct i40e_aq_desc desc;
7026         struct i40e_aqc_phy_register_access *cmd =
7027                 (struct i40e_aqc_phy_register_access *)&desc.params.raw;
7028         enum i40e_status_code status;
7029
7030         i40e_fill_default_direct_cmd_desc(&desc,
7031                                           i40e_aqc_opc_set_phy_register);
7032
7033         cmd->phy_interface = phy_select;
7034         cmd->dev_addres = dev_addr;
7035         cmd->reg_address = CPU_TO_LE32(reg_addr);
7036         cmd->reg_value = CPU_TO_LE32(reg_val);
7037
7038         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
7039
7040         return status;
7041 }
7042
7043 /**
7044  * i40e_aq_get_phy_register
7045  * @hw: pointer to the hw struct
7046  * @phy_select: select which phy should be accessed
7047  * @dev_addr: PHY device address
7048  * @reg_addr: PHY register address
7049  * @reg_val: read register value
7050  * @cmd_details: pointer to command details structure or NULL
7051  *
7052  * Read the external PHY register.
7053  **/
7054 enum i40e_status_code i40e_aq_get_phy_register(struct i40e_hw *hw,
7055                                 u8 phy_select, u8 dev_addr,
7056                                 u32 reg_addr, u32 *reg_val,
7057                                 struct i40e_asq_cmd_details *cmd_details)
7058 {
7059         struct i40e_aq_desc desc;
7060         struct i40e_aqc_phy_register_access *cmd =
7061                 (struct i40e_aqc_phy_register_access *)&desc.params.raw;
7062         enum i40e_status_code status;
7063
7064         i40e_fill_default_direct_cmd_desc(&desc,
7065                                           i40e_aqc_opc_get_phy_register);
7066
7067         cmd->phy_interface = phy_select;
7068         cmd->dev_addres = dev_addr;
7069         cmd->reg_address = CPU_TO_LE32(reg_addr);
7070
7071         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
7072         if (!status)
7073                 *reg_val = LE32_TO_CPU(cmd->reg_value);
7074
7075         return status;
7076 }
7077
7078 #ifdef VF_DRIVER
7079
7080 /**
7081  * i40e_aq_send_msg_to_pf
7082  * @hw: pointer to the hardware structure
7083  * @v_opcode: opcodes for VF-PF communication
7084  * @v_retval: return error code
7085  * @msg: pointer to the msg buffer
7086  * @msglen: msg length
7087  * @cmd_details: pointer to command details
7088  *
7089  * Send message to PF driver using admin queue. By default, this message
7090  * is sent asynchronously, i.e. i40e_asq_send_command() does not wait for
7091  * completion before returning.
7092  **/
7093 enum i40e_status_code i40e_aq_send_msg_to_pf(struct i40e_hw *hw,
7094                                 enum virtchnl_ops v_opcode,
7095                                 enum i40e_status_code v_retval,
7096                                 u8 *msg, u16 msglen,
7097                                 struct i40e_asq_cmd_details *cmd_details)
7098 {
7099         struct i40e_aq_desc desc;
7100         struct i40e_asq_cmd_details details;
7101         enum i40e_status_code status;
7102
7103         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_send_msg_to_pf);
7104         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_SI);
7105         desc.cookie_high = CPU_TO_LE32(v_opcode);
7106         desc.cookie_low = CPU_TO_LE32(v_retval);
7107         if (msglen) {
7108                 desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF
7109                                                 | I40E_AQ_FLAG_RD));
7110                 if (msglen > I40E_AQ_LARGE_BUF)
7111                         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
7112                 desc.datalen = CPU_TO_LE16(msglen);
7113         }
7114         if (!cmd_details) {
7115                 i40e_memset(&details, 0, sizeof(details), I40E_NONDMA_MEM);
7116                 details.async = true;
7117                 cmd_details = &details;
7118         }
7119         status = i40e_asq_send_command(hw, (struct i40e_aq_desc *)&desc, msg,
7120                                        msglen, cmd_details);
7121         return status;
7122 }
7123
7124 /**
7125  * i40e_vf_parse_hw_config
7126  * @hw: pointer to the hardware structure
7127  * @msg: pointer to the virtual channel VF resource structure
7128  *
7129  * Given a VF resource message from the PF, populate the hw struct
7130  * with appropriate information.
7131  **/
7132 void i40e_vf_parse_hw_config(struct i40e_hw *hw,
7133                              struct virtchnl_vf_resource *msg)
7134 {
7135         struct virtchnl_vsi_resource *vsi_res;
7136         int i;
7137
7138         vsi_res = &msg->vsi_res[0];
7139
7140         hw->dev_caps.num_vsis = msg->num_vsis;
7141         hw->dev_caps.num_rx_qp = msg->num_queue_pairs;
7142         hw->dev_caps.num_tx_qp = msg->num_queue_pairs;
7143         hw->dev_caps.num_msix_vectors_vf = msg->max_vectors;
7144         hw->dev_caps.dcb = msg->vf_cap_flags &
7145                            VIRTCHNL_VF_OFFLOAD_L2;
7146         hw->dev_caps.iwarp = (msg->vf_cap_flags &
7147                               VIRTCHNL_VF_OFFLOAD_IWARP) ? 1 : 0;
7148         for (i = 0; i < msg->num_vsis; i++) {
7149                 if (vsi_res->vsi_type == VIRTCHNL_VSI_SRIOV) {
7150                         i40e_memcpy(hw->mac.perm_addr,
7151                                     vsi_res->default_mac_addr,
7152                                     ETH_ALEN,
7153                                     I40E_NONDMA_TO_NONDMA);
7154                         i40e_memcpy(hw->mac.addr, vsi_res->default_mac_addr,
7155                                     ETH_ALEN,
7156                                     I40E_NONDMA_TO_NONDMA);
7157                 }
7158                 vsi_res++;
7159         }
7160 }
7161
7162 /**
7163  * i40e_vf_reset
7164  * @hw: pointer to the hardware structure
7165  *
7166  * Send a VF_RESET message to the PF. Does not wait for response from PF
7167  * as none will be forthcoming. Immediately after calling this function,
7168  * the admin queue should be shut down and (optionally) reinitialized.
7169  **/
7170 enum i40e_status_code i40e_vf_reset(struct i40e_hw *hw)
7171 {
7172         return i40e_aq_send_msg_to_pf(hw, VIRTCHNL_OP_RESET_VF,
7173                                       I40E_SUCCESS, NULL, 0, NULL);
7174 }
7175 #endif /* VF_DRIVER */
7176
7177 /**
7178  * i40e_aq_set_arp_proxy_config
7179  * @hw: pointer to the HW structure
7180  * @proxy_config: pointer to proxy config command table struct
7181  * @cmd_details: pointer to command details
7182  *
7183  * Set ARP offload parameters from pre-populated
7184  * i40e_aqc_arp_proxy_data struct
7185  **/
7186 enum i40e_status_code i40e_aq_set_arp_proxy_config(struct i40e_hw *hw,
7187                                 struct i40e_aqc_arp_proxy_data *proxy_config,
7188                                 struct i40e_asq_cmd_details *cmd_details)
7189 {
7190         struct i40e_aq_desc desc;
7191         enum i40e_status_code status;
7192
7193         if (!proxy_config)
7194                 return I40E_ERR_PARAM;
7195
7196         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_set_proxy_config);
7197
7198         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
7199         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
7200         desc.params.external.addr_high =
7201                                   CPU_TO_LE32(I40E_HI_DWORD((u64)proxy_config));
7202         desc.params.external.addr_low =
7203                                   CPU_TO_LE32(I40E_LO_DWORD((u64)proxy_config));
7204         desc.datalen = CPU_TO_LE16(sizeof(struct i40e_aqc_arp_proxy_data));
7205
7206         status = i40e_asq_send_command(hw, &desc, proxy_config,
7207                                        sizeof(struct i40e_aqc_arp_proxy_data),
7208                                        cmd_details);
7209
7210         return status;
7211 }
7212
7213 /**
7214  * i40e_aq_opc_set_ns_proxy_table_entry
7215  * @hw: pointer to the HW structure
7216  * @ns_proxy_table_entry: pointer to NS table entry command struct
7217  * @cmd_details: pointer to command details
7218  *
7219  * Set IPv6 Neighbor Solicitation (NS) protocol offload parameters
7220  * from pre-populated i40e_aqc_ns_proxy_data struct
7221  **/
7222 enum i40e_status_code i40e_aq_set_ns_proxy_table_entry(struct i40e_hw *hw,
7223                         struct i40e_aqc_ns_proxy_data *ns_proxy_table_entry,
7224                         struct i40e_asq_cmd_details *cmd_details)
7225 {
7226         struct i40e_aq_desc desc;
7227         enum i40e_status_code status;
7228
7229         if (!ns_proxy_table_entry)
7230                 return I40E_ERR_PARAM;
7231
7232         i40e_fill_default_direct_cmd_desc(&desc,
7233                                 i40e_aqc_opc_set_ns_proxy_table_entry);
7234
7235         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
7236         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
7237         desc.params.external.addr_high =
7238                 CPU_TO_LE32(I40E_HI_DWORD((u64)ns_proxy_table_entry));
7239         desc.params.external.addr_low =
7240                 CPU_TO_LE32(I40E_LO_DWORD((u64)ns_proxy_table_entry));
7241         desc.datalen = CPU_TO_LE16(sizeof(struct i40e_aqc_ns_proxy_data));
7242
7243         status = i40e_asq_send_command(hw, &desc, ns_proxy_table_entry,
7244                                        sizeof(struct i40e_aqc_ns_proxy_data),
7245                                        cmd_details);
7246
7247         return status;
7248 }
7249
7250 /**
7251  * i40e_aq_set_clear_wol_filter
7252  * @hw: pointer to the hw struct
7253  * @filter_index: index of filter to modify (0-7)
7254  * @filter: buffer containing filter to be set
7255  * @set_filter: true to set filter, false to clear filter
7256  * @no_wol_tco: if true, pass through packets cannot cause wake-up
7257  *              if false, pass through packets may cause wake-up
7258  * @filter_valid: true if filter action is valid
7259  * @no_wol_tco_valid: true if no WoL in TCO traffic action valid
7260  * @cmd_details: pointer to command details structure or NULL
7261  *
7262  * Set or clear WoL filter for port attached to the PF
7263  **/
7264 enum i40e_status_code i40e_aq_set_clear_wol_filter(struct i40e_hw *hw,
7265                                 u8 filter_index,
7266                                 struct i40e_aqc_set_wol_filter_data *filter,
7267                                 bool set_filter, bool no_wol_tco,
7268                                 bool filter_valid, bool no_wol_tco_valid,
7269                                 struct i40e_asq_cmd_details *cmd_details)
7270 {
7271         struct i40e_aq_desc desc;
7272         struct i40e_aqc_set_wol_filter *cmd =
7273                 (struct i40e_aqc_set_wol_filter *)&desc.params.raw;
7274         enum i40e_status_code status;
7275         u16 cmd_flags = 0;
7276         u16 valid_flags = 0;
7277         u16 buff_len = 0;
7278
7279         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_set_wol_filter);
7280
7281         if (filter_index >= I40E_AQC_MAX_NUM_WOL_FILTERS)
7282                 return  I40E_ERR_PARAM;
7283         cmd->filter_index = CPU_TO_LE16(filter_index);
7284
7285         if (set_filter) {
7286                 if (!filter)
7287                         return  I40E_ERR_PARAM;
7288
7289                 cmd_flags |= I40E_AQC_SET_WOL_FILTER;
7290                 cmd_flags |= I40E_AQC_SET_WOL_FILTER_WOL_PRESERVE_ON_PFR;
7291         }
7292
7293         if (no_wol_tco)
7294                 cmd_flags |= I40E_AQC_SET_WOL_FILTER_NO_TCO_WOL;
7295         cmd->cmd_flags = CPU_TO_LE16(cmd_flags);
7296
7297         if (filter_valid)
7298                 valid_flags |= I40E_AQC_SET_WOL_FILTER_ACTION_VALID;
7299         if (no_wol_tco_valid)
7300                 valid_flags |= I40E_AQC_SET_WOL_FILTER_NO_TCO_ACTION_VALID;
7301         cmd->valid_flags = CPU_TO_LE16(valid_flags);
7302
7303         buff_len = sizeof(*filter);
7304         desc.datalen = CPU_TO_LE16(buff_len);
7305
7306         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
7307         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_RD);
7308
7309         cmd->address_high = CPU_TO_LE32(I40E_HI_DWORD((u64)filter));
7310         cmd->address_low = CPU_TO_LE32(I40E_LO_DWORD((u64)filter));
7311
7312         status = i40e_asq_send_command(hw, &desc, filter,
7313                                        buff_len, cmd_details);
7314
7315         return status;
7316 }
7317
7318 /**
7319  * i40e_aq_get_wake_event_reason
7320  * @hw: pointer to the hw struct
7321  * @wake_reason: return value, index of matching filter
7322  * @cmd_details: pointer to command details structure or NULL
7323  *
7324  * Get information for the reason of a Wake Up event
7325  **/
7326 enum i40e_status_code i40e_aq_get_wake_event_reason(struct i40e_hw *hw,
7327                                 u16 *wake_reason,
7328                                 struct i40e_asq_cmd_details *cmd_details)
7329 {
7330         struct i40e_aq_desc desc;
7331         struct i40e_aqc_get_wake_reason_completion *resp =
7332                 (struct i40e_aqc_get_wake_reason_completion *)&desc.params.raw;
7333         enum i40e_status_code status;
7334
7335         i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_wake_reason);
7336
7337         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
7338
7339         if (status == I40E_SUCCESS)
7340                 *wake_reason = LE16_TO_CPU(resp->wake_reason);
7341
7342         return status;
7343 }
7344
7345 /**
7346 * i40e_aq_clear_all_wol_filters
7347 * @hw: pointer to the hw struct
7348 * @cmd_details: pointer to command details structure or NULL
7349 *
7350 * Get information for the reason of a Wake Up event
7351 **/
7352 enum i40e_status_code i40e_aq_clear_all_wol_filters(struct i40e_hw *hw,
7353         struct i40e_asq_cmd_details *cmd_details)
7354 {
7355         struct i40e_aq_desc desc;
7356         enum i40e_status_code status;
7357
7358         i40e_fill_default_direct_cmd_desc(&desc,
7359                                           i40e_aqc_opc_clear_all_wol_filters);
7360
7361         status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
7362
7363         return status;
7364 }
7365
7366 /**
7367  * i40e_aq_write_ddp - Write dynamic device personalization (ddp)
7368  * @hw: pointer to the hw struct
7369  * @buff: command buffer (size in bytes = buff_size)
7370  * @buff_size: buffer size in bytes
7371  * @track_id: package tracking id
7372  * @error_offset: returns error offset
7373  * @error_info: returns error information
7374  * @cmd_details: pointer to command details structure or NULL
7375  **/
7376 enum
7377 i40e_status_code i40e_aq_write_ddp(struct i40e_hw *hw, void *buff,
7378                                    u16 buff_size, u32 track_id,
7379                                    u32 *error_offset, u32 *error_info,
7380                                    struct i40e_asq_cmd_details *cmd_details)
7381 {
7382         struct i40e_aq_desc desc;
7383         struct i40e_aqc_write_personalization_profile *cmd =
7384                 (struct i40e_aqc_write_personalization_profile *)
7385                 &desc.params.raw;
7386         struct i40e_aqc_write_ddp_resp *resp;
7387         enum i40e_status_code status;
7388
7389         i40e_fill_default_direct_cmd_desc(&desc,
7390                                   i40e_aqc_opc_write_personalization_profile);
7391
7392         desc.flags |= CPU_TO_LE16(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD);
7393         if (buff_size > I40E_AQ_LARGE_BUF)
7394                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
7395
7396         desc.datalen = CPU_TO_LE16(buff_size);
7397
7398         cmd->profile_track_id = CPU_TO_LE32(track_id);
7399
7400         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
7401         if (!status) {
7402                 resp = (struct i40e_aqc_write_ddp_resp *)&desc.params.raw;
7403                 if (error_offset)
7404                         *error_offset = LE32_TO_CPU(resp->error_offset);
7405                 if (error_info)
7406                         *error_info = LE32_TO_CPU(resp->error_info);
7407         }
7408
7409         return status;
7410 }
7411
7412 /**
7413  * i40e_aq_get_ddp_list - Read dynamic device personalization (ddp)
7414  * @hw: pointer to the hw struct
7415  * @buff: command buffer (size in bytes = buff_size)
7416  * @buff_size: buffer size in bytes
7417  * @flags: AdminQ command flags
7418  * @cmd_details: pointer to command details structure or NULL
7419  **/
7420 enum
7421 i40e_status_code i40e_aq_get_ddp_list(struct i40e_hw *hw, void *buff,
7422                                       u16 buff_size, u8 flags,
7423                                       struct i40e_asq_cmd_details *cmd_details)
7424 {
7425         struct i40e_aq_desc desc;
7426         struct i40e_aqc_get_applied_profiles *cmd =
7427                 (struct i40e_aqc_get_applied_profiles *)&desc.params.raw;
7428         enum i40e_status_code status;
7429
7430         i40e_fill_default_direct_cmd_desc(&desc,
7431                           i40e_aqc_opc_get_personalization_profile_list);
7432
7433         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_BUF);
7434         if (buff_size > I40E_AQ_LARGE_BUF)
7435                 desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
7436         desc.datalen = CPU_TO_LE16(buff_size);
7437
7438         cmd->flags = flags;
7439
7440         status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
7441
7442         return status;
7443 }
7444
7445 /**
7446  * i40e_find_segment_in_package
7447  * @segment_type: the segment type to search for (i.e., SEGMENT_TYPE_I40E)
7448  * @pkg_hdr: pointer to the package header to be searched
7449  *
7450  * This function searches a package file for a particular segment type. On
7451  * success it returns a pointer to the segment header, otherwise it will
7452  * return NULL.
7453  **/
7454 struct i40e_generic_seg_header *
7455 i40e_find_segment_in_package(u32 segment_type,
7456                              struct i40e_package_header *pkg_hdr)
7457 {
7458         struct i40e_generic_seg_header *segment;
7459         u32 i;
7460
7461         /* Search all package segments for the requested segment type */
7462         for (i = 0; i < pkg_hdr->segment_count; i++) {
7463                 segment =
7464                         (struct i40e_generic_seg_header *)((u8 *)pkg_hdr +
7465                          pkg_hdr->segment_offset[i]);
7466
7467                 if (segment->type == segment_type)
7468                         return segment;
7469         }
7470
7471         return NULL;
7472 }
7473
7474 /* Get section table in profile */
7475 #define I40E_SECTION_TABLE(profile, sec_tbl)                            \
7476         do {                                                            \
7477                 struct i40e_profile_segment *p = (profile);             \
7478                 u32 count;                                              \
7479                 u32 *nvm;                                               \
7480                 count = p->device_table_count;                          \
7481                 nvm = (u32 *)&p->device_table[count];                   \
7482                 sec_tbl = (struct i40e_section_table *)&nvm[nvm[0] + 1]; \
7483         } while (0)
7484
7485 /* Get section header in profile */
7486 #define I40E_SECTION_HEADER(profile, offset)                            \
7487         (struct i40e_profile_section_header *)((u8 *)(profile) + (offset))
7488
7489 /**
7490  * i40e_find_section_in_profile
7491  * @section_type: the section type to search for (i.e., SECTION_TYPE_NOTE)
7492  * @profile: pointer to the i40e segment header to be searched
7493  *
7494  * This function searches i40e segment for a particular section type. On
7495  * success it returns a pointer to the section header, otherwise it will
7496  * return NULL.
7497  **/
7498 struct i40e_profile_section_header *
7499 i40e_find_section_in_profile(u32 section_type,
7500                              struct i40e_profile_segment *profile)
7501 {
7502         struct i40e_profile_section_header *sec;
7503         struct i40e_section_table *sec_tbl;
7504         u32 sec_off;
7505         u32 i;
7506
7507         if (profile->header.type != SEGMENT_TYPE_I40E)
7508                 return NULL;
7509
7510         I40E_SECTION_TABLE(profile, sec_tbl);
7511
7512         for (i = 0; i < sec_tbl->section_count; i++) {
7513                 sec_off = sec_tbl->section_offset[i];
7514                 sec = I40E_SECTION_HEADER(profile, sec_off);
7515                 if (sec->section.type == section_type)
7516                         return sec;
7517         }
7518
7519         return NULL;
7520 }
7521
7522 /**
7523  * i40e_ddp_exec_aq_section - Execute generic AQ for DDP
7524  * @hw: pointer to the hw struct
7525  * @aq: command buffer containing all data to execute AQ
7526  **/
7527 STATIC enum
7528 i40e_status_code i40e_ddp_exec_aq_section(struct i40e_hw *hw,
7529                                           struct i40e_profile_aq_section *aq)
7530 {
7531         enum i40e_status_code status;
7532         struct i40e_aq_desc desc;
7533         u8 *msg = NULL;
7534         u16 msglen;
7535
7536         i40e_fill_default_direct_cmd_desc(&desc, aq->opcode);
7537         desc.flags |= CPU_TO_LE16(aq->flags);
7538         i40e_memcpy(desc.params.raw, aq->param, sizeof(desc.params.raw),
7539                     I40E_NONDMA_TO_NONDMA);
7540
7541         msglen = aq->datalen;
7542         if (msglen) {
7543                 desc.flags |= CPU_TO_LE16((u16)(I40E_AQ_FLAG_BUF |
7544                                                 I40E_AQ_FLAG_RD));
7545                 if (msglen > I40E_AQ_LARGE_BUF)
7546                         desc.flags |= CPU_TO_LE16((u16)I40E_AQ_FLAG_LB);
7547                 desc.datalen = CPU_TO_LE16(msglen);
7548                 msg = &aq->data[0];
7549         }
7550
7551         status = i40e_asq_send_command(hw, &desc, msg, msglen, NULL);
7552
7553         if (status != I40E_SUCCESS) {
7554                 i40e_debug(hw, I40E_DEBUG_PACKAGE,
7555                            "unable to exec DDP AQ opcode %u, error %d\n",
7556                            aq->opcode, status);
7557                 return status;
7558         }
7559
7560         /* copy returned desc to aq_buf */
7561         i40e_memcpy(aq->param, desc.params.raw, sizeof(desc.params.raw),
7562                     I40E_NONDMA_TO_NONDMA);
7563
7564         return I40E_SUCCESS;
7565 }
7566
7567 /**
7568  * i40e_validate_profile
7569  * @hw: pointer to the hardware structure
7570  * @profile: pointer to the profile segment of the package to be validated
7571  * @track_id: package tracking id
7572  * @rollback: flag if the profile is for rollback.
7573  *
7574  * Validates supported devices and profile's sections.
7575  */
7576 STATIC enum i40e_status_code
7577 i40e_validate_profile(struct i40e_hw *hw, struct i40e_profile_segment *profile,
7578                       u32 track_id, bool rollback)
7579 {
7580         struct i40e_profile_section_header *sec = NULL;
7581         enum i40e_status_code status = I40E_SUCCESS;
7582         struct i40e_section_table *sec_tbl;
7583         u32 vendor_dev_id;
7584         u32 dev_cnt;
7585         u32 sec_off;
7586         u32 i;
7587
7588         if (track_id == I40E_DDP_TRACKID_INVALID) {
7589                 i40e_debug(hw, I40E_DEBUG_PACKAGE, "Invalid track_id\n");
7590                 return I40E_NOT_SUPPORTED;
7591         }
7592
7593         dev_cnt = profile->device_table_count;
7594         for (i = 0; i < dev_cnt; i++) {
7595                 vendor_dev_id = profile->device_table[i].vendor_dev_id;
7596                 if ((vendor_dev_id >> 16) == I40E_INTEL_VENDOR_ID &&
7597                     hw->device_id == (vendor_dev_id & 0xFFFF))
7598                         break;
7599         }
7600         if (dev_cnt && (i == dev_cnt)) {
7601                 i40e_debug(hw, I40E_DEBUG_PACKAGE,
7602                            "Device doesn't support DDP\n");
7603                 return I40E_ERR_DEVICE_NOT_SUPPORTED;
7604         }
7605
7606         I40E_SECTION_TABLE(profile, sec_tbl);
7607
7608         /* Validate sections types */
7609         for (i = 0; i < sec_tbl->section_count; i++) {
7610                 sec_off = sec_tbl->section_offset[i];
7611                 sec = I40E_SECTION_HEADER(profile, sec_off);
7612                 if (rollback) {
7613                         if (sec->section.type == SECTION_TYPE_MMIO ||
7614                             sec->section.type == SECTION_TYPE_AQ ||
7615                             sec->section.type == SECTION_TYPE_RB_AQ) {
7616                                 i40e_debug(hw, I40E_DEBUG_PACKAGE,
7617                                            "Not a roll-back package\n");
7618                                 return I40E_NOT_SUPPORTED;
7619                         }
7620                 } else {
7621                         if (sec->section.type == SECTION_TYPE_RB_AQ ||
7622                             sec->section.type == SECTION_TYPE_RB_MMIO) {
7623                                 i40e_debug(hw, I40E_DEBUG_PACKAGE,
7624                                            "Not an original package\n");
7625                                 return I40E_NOT_SUPPORTED;
7626                         }
7627                 }
7628         }
7629
7630         return status;
7631 }
7632
7633 /**
7634  * i40e_write_profile
7635  * @hw: pointer to the hardware structure
7636  * @profile: pointer to the profile segment of the package to be downloaded
7637  * @track_id: package tracking id
7638  *
7639  * Handles the download of a complete package.
7640  */
7641 enum i40e_status_code
7642 i40e_write_profile(struct i40e_hw *hw, struct i40e_profile_segment *profile,
7643                    u32 track_id)
7644 {
7645         enum i40e_status_code status = I40E_SUCCESS;
7646         struct i40e_section_table *sec_tbl;
7647         struct i40e_profile_section_header *sec = NULL;
7648         struct i40e_profile_aq_section *ddp_aq;
7649         u32 section_size = 0;
7650         u32 offset = 0, info = 0;
7651         u32 sec_off;
7652         u32 i;
7653
7654         status = i40e_validate_profile(hw, profile, track_id, false);
7655         if (status)
7656                 return status;
7657
7658         I40E_SECTION_TABLE(profile, sec_tbl);
7659
7660         for (i = 0; i < sec_tbl->section_count; i++) {
7661                 sec_off = sec_tbl->section_offset[i];
7662                 sec = I40E_SECTION_HEADER(profile, sec_off);
7663                 /* Process generic admin command */
7664                 if (sec->section.type == SECTION_TYPE_AQ) {
7665                         ddp_aq = (struct i40e_profile_aq_section *)&sec[1];
7666                         status = i40e_ddp_exec_aq_section(hw, ddp_aq);
7667                         if (status) {
7668                                 i40e_debug(hw, I40E_DEBUG_PACKAGE,
7669                                            "Failed to execute aq: section %d, opcode %u\n",
7670                                            i, ddp_aq->opcode);
7671                                 break;
7672                         }
7673                         sec->section.type = SECTION_TYPE_RB_AQ;
7674                 }
7675
7676                 /* Skip any non-mmio sections */
7677                 if (sec->section.type != SECTION_TYPE_MMIO)
7678                         continue;
7679
7680                 section_size = sec->section.size +
7681                         sizeof(struct i40e_profile_section_header);
7682
7683                 /* Write MMIO section */
7684                 status = i40e_aq_write_ddp(hw, (void *)sec, (u16)section_size,
7685                                            track_id, &offset, &info, NULL);
7686                 if (status) {
7687                         i40e_debug(hw, I40E_DEBUG_PACKAGE,
7688                                    "Failed to write profile: section %d, offset %d, info %d\n",
7689                                    i, offset, info);
7690                         break;
7691                 }
7692         }
7693         return status;
7694 }
7695
7696 /**
7697  * i40e_rollback_profile
7698  * @hw: pointer to the hardware structure
7699  * @profile: pointer to the profile segment of the package to be removed
7700  * @track_id: package tracking id
7701  *
7702  * Rolls back previously loaded package.
7703  */
7704 enum i40e_status_code
7705 i40e_rollback_profile(struct i40e_hw *hw, struct i40e_profile_segment *profile,
7706                       u32 track_id)
7707 {
7708         struct i40e_profile_section_header *sec = NULL;
7709         enum i40e_status_code status = I40E_SUCCESS;
7710         struct i40e_section_table *sec_tbl;
7711         u32 offset = 0, info = 0;
7712         u32 section_size = 0;
7713         u32 sec_off;
7714         int i;
7715
7716         status = i40e_validate_profile(hw, profile, track_id, true);
7717         if (status)
7718                 return status;
7719
7720         I40E_SECTION_TABLE(profile, sec_tbl);
7721
7722         /* For rollback write sections in reverse */
7723         for (i = sec_tbl->section_count - 1; i >= 0; i--) {
7724                 sec_off = sec_tbl->section_offset[i];
7725                 sec = I40E_SECTION_HEADER(profile, sec_off);
7726
7727                 /* Skip any non-rollback sections */
7728                 if (sec->section.type != SECTION_TYPE_RB_MMIO)
7729                         continue;
7730
7731                 section_size = sec->section.size +
7732                         sizeof(struct i40e_profile_section_header);
7733
7734                 /* Write roll-back MMIO section */
7735                 status = i40e_aq_write_ddp(hw, (void *)sec, (u16)section_size,
7736                                            track_id, &offset, &info, NULL);
7737                 if (status) {
7738                         i40e_debug(hw, I40E_DEBUG_PACKAGE,
7739                                    "Failed to write profile: section %d, offset %d, info %d\n",
7740                                    i, offset, info);
7741                         break;
7742                 }
7743         }
7744         return status;
7745 }
7746
7747 /**
7748  * i40e_add_pinfo_to_list
7749  * @hw: pointer to the hardware structure
7750  * @profile: pointer to the profile segment of the package
7751  * @profile_info_sec: buffer for information section
7752  * @track_id: package tracking id
7753  *
7754  * Register a profile to the list of loaded profiles.
7755  */
7756 enum i40e_status_code
7757 i40e_add_pinfo_to_list(struct i40e_hw *hw,
7758                        struct i40e_profile_segment *profile,
7759                        u8 *profile_info_sec, u32 track_id)
7760 {
7761         enum i40e_status_code status = I40E_SUCCESS;
7762         struct i40e_profile_section_header *sec = NULL;
7763         struct i40e_profile_info *pinfo;
7764         u32 offset = 0, info = 0;
7765
7766         sec = (struct i40e_profile_section_header *)profile_info_sec;
7767         sec->tbl_size = 1;
7768         sec->data_end = sizeof(struct i40e_profile_section_header) +
7769                         sizeof(struct i40e_profile_info);
7770         sec->section.type = SECTION_TYPE_INFO;
7771         sec->section.offset = sizeof(struct i40e_profile_section_header);
7772         sec->section.size = sizeof(struct i40e_profile_info);
7773         pinfo = (struct i40e_profile_info *)(profile_info_sec +
7774                                              sec->section.offset);
7775         pinfo->track_id = track_id;
7776         pinfo->version = profile->version;
7777         pinfo->op = I40E_DDP_ADD_TRACKID;
7778         i40e_memcpy(pinfo->name, profile->name, I40E_DDP_NAME_SIZE,
7779                     I40E_NONDMA_TO_NONDMA);
7780
7781         status = i40e_aq_write_ddp(hw, (void *)sec, sec->data_end,
7782                                    track_id, &offset, &info, NULL);
7783         return status;
7784 }