Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Copyright(c) 2013 - 2021 Intel Corporation. */
0003 
0004 #ifndef _I40E_ADMINQ_CMD_H_
0005 #define _I40E_ADMINQ_CMD_H_
0006 
0007 /* This header file defines the i40e Admin Queue commands and is shared between
0008  * i40e Firmware and Software.
0009  *
0010  * This file needs to comply with the Linux Kernel coding style.
0011  */
0012 
0013 #define I40E_FW_API_VERSION_MAJOR   0x0001
0014 #define I40E_FW_API_VERSION_MINOR_X722  0x000C
0015 #define I40E_FW_API_VERSION_MINOR_X710  0x000F
0016 
0017 #define I40E_FW_MINOR_VERSION(_h) ((_h)->mac.type == I40E_MAC_XL710 ? \
0018                     I40E_FW_API_VERSION_MINOR_X710 : \
0019                     I40E_FW_API_VERSION_MINOR_X722)
0020 
0021 /* API version 1.7 implements additional link and PHY-specific APIs  */
0022 #define I40E_MINOR_VER_GET_LINK_INFO_XL710 0x0007
0023 /* API version 1.9 for X722 implements additional link and PHY-specific APIs */
0024 #define I40E_MINOR_VER_GET_LINK_INFO_X722 0x0009
0025 /* API version 1.6 for X722 devices adds ability to stop FW LLDP agent */
0026 #define I40E_MINOR_VER_FW_LLDP_STOPPABLE_X722 0x0006
0027 /* API version 1.10 for X722 devices adds ability to request FEC encoding */
0028 #define I40E_MINOR_VER_FW_REQUEST_FEC_X722 0x000A
0029 
0030 struct i40e_aq_desc {
0031     __le16 flags;
0032     __le16 opcode;
0033     __le16 datalen;
0034     __le16 retval;
0035     __le32 cookie_high;
0036     __le32 cookie_low;
0037     union {
0038         struct {
0039             __le32 param0;
0040             __le32 param1;
0041             __le32 param2;
0042             __le32 param3;
0043         } internal;
0044         struct {
0045             __le32 param0;
0046             __le32 param1;
0047             __le32 addr_high;
0048             __le32 addr_low;
0049         } external;
0050         u8 raw[16];
0051     } params;
0052 };
0053 
0054 /* Flags sub-structure
0055  * |0  |1  |2  |3  |4  |5  |6  |7  |8  |9  |10 |11 |12 |13 |14 |15 |
0056  * |DD |CMP|ERR|VFE| * *  RESERVED * * |LB |RD |VFC|BUF|SI |EI |FE |
0057  */
0058 
0059 /* command flags and offsets*/
0060 #define I40E_AQ_FLAG_ERR_SHIFT  2
0061 #define I40E_AQ_FLAG_LB_SHIFT   9
0062 #define I40E_AQ_FLAG_RD_SHIFT   10
0063 #define I40E_AQ_FLAG_BUF_SHIFT  12
0064 #define I40E_AQ_FLAG_SI_SHIFT   13
0065 
0066 #define I40E_AQ_FLAG_ERR    BIT(I40E_AQ_FLAG_ERR_SHIFT) /* 0x4    */
0067 #define I40E_AQ_FLAG_LB     BIT(I40E_AQ_FLAG_LB_SHIFT)  /* 0x200  */
0068 #define I40E_AQ_FLAG_RD     BIT(I40E_AQ_FLAG_RD_SHIFT)  /* 0x400  */
0069 #define I40E_AQ_FLAG_BUF    BIT(I40E_AQ_FLAG_BUF_SHIFT) /* 0x1000 */
0070 #define I40E_AQ_FLAG_SI     BIT(I40E_AQ_FLAG_SI_SHIFT)  /* 0x2000 */
0071 
0072 /* error codes */
0073 enum i40e_admin_queue_err {
0074     I40E_AQ_RC_OK       = 0,  /* success */
0075     I40E_AQ_RC_EPERM    = 1,  /* Operation not permitted */
0076     I40E_AQ_RC_ENOENT   = 2,  /* No such element */
0077     I40E_AQ_RC_ESRCH    = 3,  /* Bad opcode */
0078     I40E_AQ_RC_EINTR    = 4,  /* operation interrupted */
0079     I40E_AQ_RC_EIO      = 5,  /* I/O error */
0080     I40E_AQ_RC_ENXIO    = 6,  /* No such resource */
0081     I40E_AQ_RC_E2BIG    = 7,  /* Arg too long */
0082     I40E_AQ_RC_EAGAIN   = 8,  /* Try again */
0083     I40E_AQ_RC_ENOMEM   = 9,  /* Out of memory */
0084     I40E_AQ_RC_EACCES   = 10, /* Permission denied */
0085     I40E_AQ_RC_EFAULT   = 11, /* Bad address */
0086     I40E_AQ_RC_EBUSY    = 12, /* Device or resource busy */
0087     I40E_AQ_RC_EEXIST   = 13, /* object already exists */
0088     I40E_AQ_RC_EINVAL   = 14, /* Invalid argument */
0089     I40E_AQ_RC_ENOTTY   = 15, /* Not a typewriter */
0090     I40E_AQ_RC_ENOSPC   = 16, /* No space left or alloc failure */
0091     I40E_AQ_RC_ENOSYS   = 17, /* Function not implemented */
0092     I40E_AQ_RC_ERANGE   = 18, /* Parameter out of range */
0093     I40E_AQ_RC_EFLUSHED = 19, /* Cmd flushed due to prev cmd error */
0094     I40E_AQ_RC_BAD_ADDR = 20, /* Descriptor contains a bad pointer */
0095     I40E_AQ_RC_EMODE    = 21, /* Op not allowed in current dev mode */
0096     I40E_AQ_RC_EFBIG    = 22, /* File too large */
0097 };
0098 
0099 /* Admin Queue command opcodes */
0100 enum i40e_admin_queue_opc {
0101     /* aq commands */
0102     i40e_aqc_opc_get_version    = 0x0001,
0103     i40e_aqc_opc_driver_version = 0x0002,
0104     i40e_aqc_opc_queue_shutdown = 0x0003,
0105     i40e_aqc_opc_set_pf_context = 0x0004,
0106 
0107     /* resource ownership */
0108     i40e_aqc_opc_request_resource   = 0x0008,
0109     i40e_aqc_opc_release_resource   = 0x0009,
0110 
0111     i40e_aqc_opc_list_func_capabilities = 0x000A,
0112     i40e_aqc_opc_list_dev_capabilities  = 0x000B,
0113 
0114     /* Proxy commands */
0115     i40e_aqc_opc_set_proxy_config       = 0x0104,
0116     i40e_aqc_opc_set_ns_proxy_table_entry   = 0x0105,
0117 
0118     /* LAA */
0119     i40e_aqc_opc_mac_address_read   = 0x0107,
0120     i40e_aqc_opc_mac_address_write  = 0x0108,
0121 
0122     /* PXE */
0123     i40e_aqc_opc_clear_pxe_mode = 0x0110,
0124 
0125     /* WoL commands */
0126     i40e_aqc_opc_set_wol_filter = 0x0120,
0127     i40e_aqc_opc_get_wake_reason    = 0x0121,
0128 
0129     /* internal switch commands */
0130     i40e_aqc_opc_get_switch_config      = 0x0200,
0131     i40e_aqc_opc_add_statistics     = 0x0201,
0132     i40e_aqc_opc_remove_statistics      = 0x0202,
0133     i40e_aqc_opc_set_port_parameters    = 0x0203,
0134     i40e_aqc_opc_get_switch_resource_alloc  = 0x0204,
0135     i40e_aqc_opc_set_switch_config      = 0x0205,
0136     i40e_aqc_opc_rx_ctl_reg_read        = 0x0206,
0137     i40e_aqc_opc_rx_ctl_reg_write       = 0x0207,
0138 
0139     i40e_aqc_opc_add_vsi            = 0x0210,
0140     i40e_aqc_opc_update_vsi_parameters  = 0x0211,
0141     i40e_aqc_opc_get_vsi_parameters     = 0x0212,
0142 
0143     i40e_aqc_opc_add_pv         = 0x0220,
0144     i40e_aqc_opc_update_pv_parameters   = 0x0221,
0145     i40e_aqc_opc_get_pv_parameters      = 0x0222,
0146 
0147     i40e_aqc_opc_add_veb            = 0x0230,
0148     i40e_aqc_opc_update_veb_parameters  = 0x0231,
0149     i40e_aqc_opc_get_veb_parameters     = 0x0232,
0150 
0151     i40e_aqc_opc_delete_element     = 0x0243,
0152 
0153     i40e_aqc_opc_add_macvlan        = 0x0250,
0154     i40e_aqc_opc_remove_macvlan     = 0x0251,
0155     i40e_aqc_opc_add_vlan           = 0x0252,
0156     i40e_aqc_opc_remove_vlan        = 0x0253,
0157     i40e_aqc_opc_set_vsi_promiscuous_modes  = 0x0254,
0158     i40e_aqc_opc_add_tag            = 0x0255,
0159     i40e_aqc_opc_remove_tag         = 0x0256,
0160     i40e_aqc_opc_add_multicast_etag     = 0x0257,
0161     i40e_aqc_opc_remove_multicast_etag  = 0x0258,
0162     i40e_aqc_opc_update_tag         = 0x0259,
0163     i40e_aqc_opc_add_control_packet_filter  = 0x025A,
0164     i40e_aqc_opc_remove_control_packet_filter   = 0x025B,
0165     i40e_aqc_opc_add_cloud_filters      = 0x025C,
0166     i40e_aqc_opc_remove_cloud_filters   = 0x025D,
0167     i40e_aqc_opc_clear_wol_switch_filters   = 0x025E,
0168 
0169     i40e_aqc_opc_add_mirror_rule    = 0x0260,
0170     i40e_aqc_opc_delete_mirror_rule = 0x0261,
0171 
0172     /* Dynamic Device Personalization */
0173     i40e_aqc_opc_write_personalization_profile  = 0x0270,
0174     i40e_aqc_opc_get_personalization_profile_list   = 0x0271,
0175 
0176     /* DCB commands */
0177     i40e_aqc_opc_dcb_ignore_pfc = 0x0301,
0178     i40e_aqc_opc_dcb_updated    = 0x0302,
0179     i40e_aqc_opc_set_dcb_parameters = 0x0303,
0180 
0181     /* TX scheduler */
0182     i40e_aqc_opc_configure_vsi_bw_limit     = 0x0400,
0183     i40e_aqc_opc_configure_vsi_ets_sla_bw_limit = 0x0406,
0184     i40e_aqc_opc_configure_vsi_tc_bw        = 0x0407,
0185     i40e_aqc_opc_query_vsi_bw_config        = 0x0408,
0186     i40e_aqc_opc_query_vsi_ets_sla_config       = 0x040A,
0187     i40e_aqc_opc_configure_switching_comp_bw_limit  = 0x0410,
0188 
0189     i40e_aqc_opc_enable_switching_comp_ets          = 0x0413,
0190     i40e_aqc_opc_modify_switching_comp_ets          = 0x0414,
0191     i40e_aqc_opc_disable_switching_comp_ets         = 0x0415,
0192     i40e_aqc_opc_configure_switching_comp_ets_bw_limit  = 0x0416,
0193     i40e_aqc_opc_configure_switching_comp_bw_config     = 0x0417,
0194     i40e_aqc_opc_query_switching_comp_ets_config        = 0x0418,
0195     i40e_aqc_opc_query_port_ets_config          = 0x0419,
0196     i40e_aqc_opc_query_switching_comp_bw_config     = 0x041A,
0197     i40e_aqc_opc_suspend_port_tx                = 0x041B,
0198     i40e_aqc_opc_resume_port_tx             = 0x041C,
0199     i40e_aqc_opc_configure_partition_bw         = 0x041D,
0200     /* hmc */
0201     i40e_aqc_opc_query_hmc_resource_profile = 0x0500,
0202     i40e_aqc_opc_set_hmc_resource_profile   = 0x0501,
0203 
0204     /* phy commands*/
0205     i40e_aqc_opc_get_phy_abilities      = 0x0600,
0206     i40e_aqc_opc_set_phy_config     = 0x0601,
0207     i40e_aqc_opc_set_mac_config     = 0x0603,
0208     i40e_aqc_opc_set_link_restart_an    = 0x0605,
0209     i40e_aqc_opc_get_link_status        = 0x0607,
0210     i40e_aqc_opc_set_phy_int_mask       = 0x0613,
0211     i40e_aqc_opc_get_local_advt_reg     = 0x0614,
0212     i40e_aqc_opc_set_local_advt_reg     = 0x0615,
0213     i40e_aqc_opc_get_partner_advt       = 0x0616,
0214     i40e_aqc_opc_set_lb_modes       = 0x0618,
0215     i40e_aqc_opc_get_phy_wol_caps       = 0x0621,
0216     i40e_aqc_opc_set_phy_debug      = 0x0622,
0217     i40e_aqc_opc_upload_ext_phy_fm      = 0x0625,
0218     i40e_aqc_opc_run_phy_activity       = 0x0626,
0219     i40e_aqc_opc_set_phy_register       = 0x0628,
0220     i40e_aqc_opc_get_phy_register       = 0x0629,
0221 
0222     /* NVM commands */
0223     i40e_aqc_opc_nvm_read           = 0x0701,
0224     i40e_aqc_opc_nvm_erase          = 0x0702,
0225     i40e_aqc_opc_nvm_update         = 0x0703,
0226     i40e_aqc_opc_nvm_config_read        = 0x0704,
0227     i40e_aqc_opc_nvm_config_write       = 0x0705,
0228     i40e_aqc_opc_oem_post_update        = 0x0720,
0229     i40e_aqc_opc_thermal_sensor     = 0x0721,
0230 
0231     /* virtualization commands */
0232     i40e_aqc_opc_send_msg_to_pf     = 0x0801,
0233     i40e_aqc_opc_send_msg_to_vf     = 0x0802,
0234     i40e_aqc_opc_send_msg_to_peer       = 0x0803,
0235 
0236     /* alternate structure */
0237     i40e_aqc_opc_alternate_write        = 0x0900,
0238     i40e_aqc_opc_alternate_write_indirect   = 0x0901,
0239     i40e_aqc_opc_alternate_read     = 0x0902,
0240     i40e_aqc_opc_alternate_read_indirect    = 0x0903,
0241     i40e_aqc_opc_alternate_write_done   = 0x0904,
0242     i40e_aqc_opc_alternate_set_mode     = 0x0905,
0243     i40e_aqc_opc_alternate_clear_port   = 0x0906,
0244 
0245     /* LLDP commands */
0246     i40e_aqc_opc_lldp_get_mib   = 0x0A00,
0247     i40e_aqc_opc_lldp_update_mib    = 0x0A01,
0248     i40e_aqc_opc_lldp_add_tlv   = 0x0A02,
0249     i40e_aqc_opc_lldp_update_tlv    = 0x0A03,
0250     i40e_aqc_opc_lldp_delete_tlv    = 0x0A04,
0251     i40e_aqc_opc_lldp_stop      = 0x0A05,
0252     i40e_aqc_opc_lldp_start     = 0x0A06,
0253     i40e_aqc_opc_get_cee_dcb_cfg    = 0x0A07,
0254     i40e_aqc_opc_lldp_set_local_mib = 0x0A08,
0255     i40e_aqc_opc_lldp_stop_start_spec_agent = 0x0A09,
0256     i40e_aqc_opc_lldp_restore       = 0x0A0A,
0257 
0258     /* Tunnel commands */
0259     i40e_aqc_opc_add_udp_tunnel = 0x0B00,
0260     i40e_aqc_opc_del_udp_tunnel = 0x0B01,
0261     i40e_aqc_opc_set_rss_key    = 0x0B02,
0262     i40e_aqc_opc_set_rss_lut    = 0x0B03,
0263     i40e_aqc_opc_get_rss_key    = 0x0B04,
0264     i40e_aqc_opc_get_rss_lut    = 0x0B05,
0265 
0266     /* Async Events */
0267     i40e_aqc_opc_event_lan_overflow     = 0x1001,
0268 
0269     /* OEM commands */
0270     i40e_aqc_opc_oem_parameter_change   = 0xFE00,
0271     i40e_aqc_opc_oem_device_status_change   = 0xFE01,
0272     i40e_aqc_opc_oem_ocsd_initialize    = 0xFE02,
0273     i40e_aqc_opc_oem_ocbb_initialize    = 0xFE03,
0274 
0275     /* debug commands */
0276     i40e_aqc_opc_debug_read_reg     = 0xFF03,
0277     i40e_aqc_opc_debug_write_reg        = 0xFF04,
0278     i40e_aqc_opc_debug_modify_reg       = 0xFF07,
0279     i40e_aqc_opc_debug_dump_internals   = 0xFF08,
0280 };
0281 
0282 /* command structures and indirect data structures */
0283 
0284 /* Structure naming conventions:
0285  * - no suffix for direct command descriptor structures
0286  * - _data for indirect sent data
0287  * - _resp for indirect return data (data which is both will use _data)
0288  * - _completion for direct return data
0289  * - _element_ for repeated elements (may also be _data or _resp)
0290  *
0291  * Command structures are expected to overlay the params.raw member of the basic
0292  * descriptor, and as such cannot exceed 16 bytes in length.
0293  */
0294 
0295 /* This macro is used to generate a compilation error if a structure
0296  * is not exactly the correct length. It gives a divide by zero error if the
0297  * structure is not of the correct size, otherwise it creates an enum that is
0298  * never used.
0299  */
0300 #define I40E_CHECK_STRUCT_LEN(n, X) enum i40e_static_assert_enum_##X \
0301     { i40e_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) }
0302 
0303 /* This macro is used extensively to ensure that command structures are 16
0304  * bytes in length as they have to map to the raw array of that size.
0305  */
0306 #define I40E_CHECK_CMD_LENGTH(X)    I40E_CHECK_STRUCT_LEN(16, X)
0307 
0308 /* internal (0x00XX) commands */
0309 
0310 /* Get version (direct 0x0001) */
0311 struct i40e_aqc_get_version {
0312     __le32 rom_ver;
0313     __le32 fw_build;
0314     __le16 fw_major;
0315     __le16 fw_minor;
0316     __le16 api_major;
0317     __le16 api_minor;
0318 };
0319 
0320 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_version);
0321 
0322 /* Send driver version (indirect 0x0002) */
0323 struct i40e_aqc_driver_version {
0324     u8  driver_major_ver;
0325     u8  driver_minor_ver;
0326     u8  driver_build_ver;
0327     u8  driver_subbuild_ver;
0328     u8  reserved[4];
0329     __le32  address_high;
0330     __le32  address_low;
0331 };
0332 
0333 I40E_CHECK_CMD_LENGTH(i40e_aqc_driver_version);
0334 
0335 /* Queue Shutdown (direct 0x0003) */
0336 struct i40e_aqc_queue_shutdown {
0337     __le32  driver_unloading;
0338 #define I40E_AQ_DRIVER_UNLOADING    0x1
0339     u8  reserved[12];
0340 };
0341 
0342 I40E_CHECK_CMD_LENGTH(i40e_aqc_queue_shutdown);
0343 
0344 /* Set PF context (0x0004, direct) */
0345 struct i40e_aqc_set_pf_context {
0346     u8  pf_id;
0347     u8  reserved[15];
0348 };
0349 
0350 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_pf_context);
0351 
0352 /* Request resource ownership (direct 0x0008)
0353  * Release resource ownership (direct 0x0009)
0354  */
0355 struct i40e_aqc_request_resource {
0356     __le16  resource_id;
0357     __le16  access_type;
0358     __le32  timeout;
0359     __le32  resource_number;
0360     u8  reserved[4];
0361 };
0362 
0363 I40E_CHECK_CMD_LENGTH(i40e_aqc_request_resource);
0364 
0365 /* Get function capabilities (indirect 0x000A)
0366  * Get device capabilities (indirect 0x000B)
0367  */
0368 struct i40e_aqc_list_capabilites {
0369     u8 command_flags;
0370     u8 pf_index;
0371     u8 reserved[2];
0372     __le32 count;
0373     __le32 addr_high;
0374     __le32 addr_low;
0375 };
0376 
0377 I40E_CHECK_CMD_LENGTH(i40e_aqc_list_capabilites);
0378 
0379 struct i40e_aqc_list_capabilities_element_resp {
0380     __le16  id;
0381     u8  major_rev;
0382     u8  minor_rev;
0383     __le32  number;
0384     __le32  logical_id;
0385     __le32  phys_id;
0386     u8  reserved[16];
0387 };
0388 
0389 /* list of caps */
0390 
0391 #define I40E_AQ_CAP_ID_SWITCH_MODE  0x0001
0392 #define I40E_AQ_CAP_ID_MNG_MODE     0x0002
0393 #define I40E_AQ_CAP_ID_NPAR_ACTIVE  0x0003
0394 #define I40E_AQ_CAP_ID_OS2BMC_CAP   0x0004
0395 #define I40E_AQ_CAP_ID_FUNCTIONS_VALID  0x0005
0396 #define I40E_AQ_CAP_ID_SRIOV        0x0012
0397 #define I40E_AQ_CAP_ID_VF       0x0013
0398 #define I40E_AQ_CAP_ID_VMDQ     0x0014
0399 #define I40E_AQ_CAP_ID_8021QBG      0x0015
0400 #define I40E_AQ_CAP_ID_8021QBR      0x0016
0401 #define I40E_AQ_CAP_ID_VSI      0x0017
0402 #define I40E_AQ_CAP_ID_DCB      0x0018
0403 #define I40E_AQ_CAP_ID_FCOE     0x0021
0404 #define I40E_AQ_CAP_ID_ISCSI        0x0022
0405 #define I40E_AQ_CAP_ID_RSS      0x0040
0406 #define I40E_AQ_CAP_ID_RXQ      0x0041
0407 #define I40E_AQ_CAP_ID_TXQ      0x0042
0408 #define I40E_AQ_CAP_ID_MSIX     0x0043
0409 #define I40E_AQ_CAP_ID_VF_MSIX      0x0044
0410 #define I40E_AQ_CAP_ID_FLOW_DIRECTOR    0x0045
0411 #define I40E_AQ_CAP_ID_1588     0x0046
0412 #define I40E_AQ_CAP_ID_IWARP        0x0051
0413 #define I40E_AQ_CAP_ID_LED      0x0061
0414 #define I40E_AQ_CAP_ID_SDP      0x0062
0415 #define I40E_AQ_CAP_ID_MDIO     0x0063
0416 #define I40E_AQ_CAP_ID_WSR_PROT     0x0064
0417 #define I40E_AQ_CAP_ID_NVM_MGMT     0x0080
0418 #define I40E_AQ_CAP_ID_FLEX10       0x00F1
0419 #define I40E_AQ_CAP_ID_CEM      0x00F2
0420 
0421 /* Set CPPM Configuration (direct 0x0103) */
0422 struct i40e_aqc_cppm_configuration {
0423     __le16  command_flags;
0424     __le16  ttlx;
0425     __le32  dmacr;
0426     __le16  dmcth;
0427     u8  hptc;
0428     u8  reserved;
0429     __le32  pfltrc;
0430 };
0431 
0432 I40E_CHECK_CMD_LENGTH(i40e_aqc_cppm_configuration);
0433 
0434 /* Set ARP Proxy command / response (indirect 0x0104) */
0435 struct i40e_aqc_arp_proxy_data {
0436     __le16  command_flags;
0437     __le16  table_id;
0438     __le32  enabled_offloads;
0439     __le32  ip_addr;
0440     u8  mac_addr[6];
0441     u8  reserved[2];
0442 };
0443 
0444 I40E_CHECK_STRUCT_LEN(0x14, i40e_aqc_arp_proxy_data);
0445 
0446 /* Set NS Proxy Table Entry Command (indirect 0x0105) */
0447 struct i40e_aqc_ns_proxy_data {
0448     __le16  table_idx_mac_addr_0;
0449     __le16  table_idx_mac_addr_1;
0450     __le16  table_idx_ipv6_0;
0451     __le16  table_idx_ipv6_1;
0452     __le16  control;
0453     u8  mac_addr_0[6];
0454     u8  mac_addr_1[6];
0455     u8  local_mac_addr[6];
0456     u8  ipv6_addr_0[16]; /* Warning! spec specifies BE byte order */
0457     u8  ipv6_addr_1[16];
0458 };
0459 
0460 I40E_CHECK_STRUCT_LEN(0x3c, i40e_aqc_ns_proxy_data);
0461 
0462 /* Manage LAA Command (0x0106) - obsolete */
0463 struct i40e_aqc_mng_laa {
0464     __le16  command_flags;
0465     u8  reserved[2];
0466     __le32  sal;
0467     __le16  sah;
0468     u8  reserved2[6];
0469 };
0470 
0471 I40E_CHECK_CMD_LENGTH(i40e_aqc_mng_laa);
0472 
0473 /* Manage MAC Address Read Command (indirect 0x0107) */
0474 struct i40e_aqc_mac_address_read {
0475     __le16  command_flags;
0476 #define I40E_AQC_LAN_ADDR_VALID     0x10
0477 #define I40E_AQC_PORT_ADDR_VALID    0x40
0478     u8  reserved[6];
0479     __le32  addr_high;
0480     __le32  addr_low;
0481 };
0482 
0483 I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_read);
0484 
0485 struct i40e_aqc_mac_address_read_data {
0486     u8 pf_lan_mac[6];
0487     u8 pf_san_mac[6];
0488     u8 port_mac[6];
0489     u8 pf_wol_mac[6];
0490 };
0491 
0492 I40E_CHECK_STRUCT_LEN(24, i40e_aqc_mac_address_read_data);
0493 
0494 /* Manage MAC Address Write Command (0x0108) */
0495 struct i40e_aqc_mac_address_write {
0496     __le16  command_flags;
0497 #define I40E_AQC_MC_MAG_EN      0x0100
0498 #define I40E_AQC_WOL_PRESERVE_ON_PFR    0x0200
0499 #define I40E_AQC_WRITE_TYPE_LAA_ONLY    0x0000
0500 #define I40E_AQC_WRITE_TYPE_LAA_WOL 0x4000
0501 #define I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG   0xC000
0502 
0503     __le16  mac_sah;
0504     __le32  mac_sal;
0505     u8  reserved[8];
0506 };
0507 
0508 I40E_CHECK_CMD_LENGTH(i40e_aqc_mac_address_write);
0509 
0510 /* PXE commands (0x011x) */
0511 
0512 /* Clear PXE Command and response  (direct 0x0110) */
0513 struct i40e_aqc_clear_pxe {
0514     u8  rx_cnt;
0515     u8  reserved[15];
0516 };
0517 
0518 I40E_CHECK_CMD_LENGTH(i40e_aqc_clear_pxe);
0519 
0520 /* Set WoL Filter (0x0120) */
0521 
0522 struct i40e_aqc_set_wol_filter {
0523     __le16 filter_index;
0524 
0525     __le16 cmd_flags;
0526     __le16 valid_flags;
0527     u8 reserved[2];
0528     __le32  address_high;
0529     __le32  address_low;
0530 };
0531 
0532 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_wol_filter);
0533 
0534 struct i40e_aqc_set_wol_filter_data {
0535     u8 filter[128];
0536     u8 mask[16];
0537 };
0538 
0539 I40E_CHECK_STRUCT_LEN(0x90, i40e_aqc_set_wol_filter_data);
0540 
0541 /* Get Wake Reason (0x0121) */
0542 
0543 struct i40e_aqc_get_wake_reason_completion {
0544     u8 reserved_1[2];
0545     __le16 wake_reason;
0546     u8 reserved_2[12];
0547 };
0548 
0549 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_wake_reason_completion);
0550 
0551 /* Switch configuration commands (0x02xx) */
0552 
0553 /* Used by many indirect commands that only pass an seid and a buffer in the
0554  * command
0555  */
0556 struct i40e_aqc_switch_seid {
0557     __le16  seid;
0558     u8  reserved[6];
0559     __le32  addr_high;
0560     __le32  addr_low;
0561 };
0562 
0563 I40E_CHECK_CMD_LENGTH(i40e_aqc_switch_seid);
0564 
0565 /* Get Switch Configuration command (indirect 0x0200)
0566  * uses i40e_aqc_switch_seid for the descriptor
0567  */
0568 struct i40e_aqc_get_switch_config_header_resp {
0569     __le16  num_reported;
0570     __le16  num_total;
0571     u8  reserved[12];
0572 };
0573 
0574 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_config_header_resp);
0575 
0576 struct i40e_aqc_switch_config_element_resp {
0577     u8  element_type;
0578     u8  revision;
0579     __le16  seid;
0580     __le16  uplink_seid;
0581     __le16  downlink_seid;
0582     u8  reserved[3];
0583     u8  connection_type;
0584     __le16  scheduler_id;
0585     __le16  element_info;
0586 };
0587 
0588 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_config_element_resp);
0589 
0590 /* Get Switch Configuration (indirect 0x0200)
0591  *    an array of elements are returned in the response buffer
0592  *    the first in the array is the header, remainder are elements
0593  */
0594 struct i40e_aqc_get_switch_config_resp {
0595     struct i40e_aqc_get_switch_config_header_resp   header;
0596     struct i40e_aqc_switch_config_element_resp  element[1];
0597 };
0598 
0599 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_switch_config_resp);
0600 
0601 /* Add Statistics (direct 0x0201)
0602  * Remove Statistics (direct 0x0202)
0603  */
0604 struct i40e_aqc_add_remove_statistics {
0605     __le16  seid;
0606     __le16  vlan;
0607     __le16  stat_index;
0608     u8  reserved[10];
0609 };
0610 
0611 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_statistics);
0612 
0613 /* Set Port Parameters command (direct 0x0203) */
0614 struct i40e_aqc_set_port_parameters {
0615     __le16  command_flags;
0616     __le16  bad_frame_vsi;
0617     __le16  default_seid;        /* reserved for command */
0618     u8  reserved[10];
0619 };
0620 
0621 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_port_parameters);
0622 
0623 /* Get Switch Resource Allocation (indirect 0x0204) */
0624 struct i40e_aqc_get_switch_resource_alloc {
0625     u8  num_entries;         /* reserved for command */
0626     u8  reserved[7];
0627     __le32  addr_high;
0628     __le32  addr_low;
0629 };
0630 
0631 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_switch_resource_alloc);
0632 
0633 /* expect an array of these structs in the response buffer */
0634 struct i40e_aqc_switch_resource_alloc_element_resp {
0635     u8  resource_type;
0636     u8  reserved1;
0637     __le16  guaranteed;
0638     __le16  total;
0639     __le16  used;
0640     __le16  total_unalloced;
0641     u8  reserved2[6];
0642 };
0643 
0644 I40E_CHECK_STRUCT_LEN(0x10, i40e_aqc_switch_resource_alloc_element_resp);
0645 
0646 /* Set Switch Configuration (direct 0x0205) */
0647 struct i40e_aqc_set_switch_config {
0648     __le16  flags;
0649 /* flags used for both fields below */
0650 #define I40E_AQ_SET_SWITCH_CFG_PROMISC      0x0001
0651     __le16  valid_flags;
0652     /* The ethertype in switch_tag is dropped on ingress and used
0653      * internally by the switch. Set this to zero for the default
0654      * of 0x88a8 (802.1ad). Should be zero for firmware API
0655      * versions lower than 1.7.
0656      */
0657     __le16  switch_tag;
0658     /* The ethertypes in first_tag and second_tag are used to
0659      * match the outer and inner VLAN tags (respectively) when HW
0660      * double VLAN tagging is enabled via the set port parameters
0661      * AQ command. Otherwise these are both ignored. Set them to
0662      * zero for their defaults of 0x8100 (802.1Q). Should be zero
0663      * for firmware API versions lower than 1.7.
0664      */
0665     __le16  first_tag;
0666     __le16  second_tag;
0667     /* Next byte is split into following:
0668      * Bit 7    : 0 : No action, 1: Switch to mode defined by bits 6:0
0669      * Bit 6    : 0 : Destination Port, 1: source port
0670      * Bit 5..4 : L4 type
0671      * 0: rsvd
0672      * 1: TCP
0673      * 2: UDP
0674      * 3: Both TCP and UDP
0675      * Bits 3:0 Mode
0676      * 0: default mode
0677      * 1: L4 port only mode
0678      * 2: non-tunneled mode
0679      * 3: tunneled mode
0680      */
0681 #define I40E_AQ_SET_SWITCH_BIT7_VALID       0x80
0682 
0683 
0684 #define I40E_AQ_SET_SWITCH_L4_TYPE_TCP      0x10
0685 
0686 #define I40E_AQ_SET_SWITCH_MODE_NON_TUNNEL  0x02
0687     u8  mode;
0688     u8  rsvd5[5];
0689 };
0690 
0691 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_switch_config);
0692 
0693 /* Read Receive control registers  (direct 0x0206)
0694  * Write Receive control registers (direct 0x0207)
0695  *     used for accessing Rx control registers that can be
0696  *     slow and need special handling when under high Rx load
0697  */
0698 struct i40e_aqc_rx_ctl_reg_read_write {
0699     __le32 reserved1;
0700     __le32 address;
0701     __le32 reserved2;
0702     __le32 value;
0703 };
0704 
0705 I40E_CHECK_CMD_LENGTH(i40e_aqc_rx_ctl_reg_read_write);
0706 
0707 /* Add VSI (indirect 0x0210)
0708  *    this indirect command uses struct i40e_aqc_vsi_properties_data
0709  *    as the indirect buffer (128 bytes)
0710  *
0711  * Update VSI (indirect 0x211)
0712  *     uses the same data structure as Add VSI
0713  *
0714  * Get VSI (indirect 0x0212)
0715  *     uses the same completion and data structure as Add VSI
0716  */
0717 struct i40e_aqc_add_get_update_vsi {
0718     __le16  uplink_seid;
0719     u8  connection_type;
0720 #define I40E_AQ_VSI_CONN_TYPE_NORMAL    0x1
0721     u8  reserved1;
0722     u8  vf_id;
0723     u8  reserved2;
0724     __le16  vsi_flags;
0725 #define I40E_AQ_VSI_TYPE_VF     0x0
0726 #define I40E_AQ_VSI_TYPE_VMDQ2      0x1
0727 #define I40E_AQ_VSI_TYPE_PF     0x2
0728     __le32  addr_high;
0729     __le32  addr_low;
0730 };
0731 
0732 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi);
0733 
0734 struct i40e_aqc_add_get_update_vsi_completion {
0735     __le16 seid;
0736     __le16 vsi_number;
0737     __le16 vsi_used;
0738     __le16 vsi_free;
0739     __le32 addr_high;
0740     __le32 addr_low;
0741 };
0742 
0743 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_get_update_vsi_completion);
0744 
0745 struct i40e_aqc_vsi_properties_data {
0746     /* first 96 byte are written by SW */
0747     __le16  valid_sections;
0748 #define I40E_AQ_VSI_PROP_SWITCH_VALID       0x0001
0749 #define I40E_AQ_VSI_PROP_SECURITY_VALID     0x0002
0750 #define I40E_AQ_VSI_PROP_VLAN_VALID     0x0004
0751 #define I40E_AQ_VSI_PROP_QUEUE_MAP_VALID    0x0040
0752 #define I40E_AQ_VSI_PROP_QUEUE_OPT_VALID    0x0080
0753 #define I40E_AQ_VSI_PROP_SCHED_VALID        0x0200
0754     /* switch section */
0755     __le16  switch_id; /* 12bit id combined with flags below */
0756 #define I40E_AQ_VSI_SW_ID_SHIFT     0x0000
0757 #define I40E_AQ_VSI_SW_ID_MASK      (0xFFF << I40E_AQ_VSI_SW_ID_SHIFT)
0758 #define I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB 0x2000
0759 #define I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB 0x4000
0760     u8  sw_reserved[2];
0761     /* security section */
0762     u8  sec_flags;
0763 #define I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK    0x02
0764 #define I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK 0x04
0765     u8  sec_reserved;
0766     /* VLAN section */
0767     __le16  pvid; /* VLANS include priority bits */
0768     __le16  fcoe_pvid;
0769     u8  port_vlan_flags;
0770 #define I40E_AQ_VSI_PVLAN_MODE_SHIFT    0x00
0771 #define I40E_AQ_VSI_PVLAN_MODE_MASK (0x03 << \
0772                      I40E_AQ_VSI_PVLAN_MODE_SHIFT)
0773 #define I40E_AQ_VSI_PVLAN_MODE_TAGGED   0x01
0774 #define I40E_AQ_VSI_PVLAN_MODE_ALL  0x03
0775 #define I40E_AQ_VSI_PVLAN_INSERT_PVID   0x04
0776 #define I40E_AQ_VSI_PVLAN_EMOD_SHIFT    0x03
0777 #define I40E_AQ_VSI_PVLAN_EMOD_MASK (0x3 << \
0778                      I40E_AQ_VSI_PVLAN_EMOD_SHIFT)
0779 #define I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH 0x0
0780 #define I40E_AQ_VSI_PVLAN_EMOD_STR  0x10
0781 #define I40E_AQ_VSI_PVLAN_EMOD_NOTHING  0x18
0782     u8  pvlan_reserved[3];
0783     /* ingress egress up sections */
0784     __le32  ingress_table; /* bitmap, 3 bits per up */
0785     __le32  egress_table;   /* same defines as for ingress table */
0786     /* cascaded PV section */
0787     __le16  cas_pv_tag;
0788     u8  cas_pv_flags;
0789     u8  cas_pv_reserved;
0790     /* queue mapping section */
0791     __le16  mapping_flags;
0792 #define I40E_AQ_VSI_QUE_MAP_CONTIG  0x0
0793 #define I40E_AQ_VSI_QUE_MAP_NONCONTIG   0x1
0794     __le16  queue_mapping[16];
0795     __le16  tc_mapping[8];
0796 #define I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT 0
0797 #define I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT 9
0798     /* queueing option section */
0799     u8  queueing_opt_flags;
0800 #define I40E_AQ_VSI_QUE_OPT_TCP_ENA 0x10
0801 #define I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI 0x40
0802     u8  queueing_opt_reserved[3];
0803     /* scheduler section */
0804     u8  up_enable_bits;
0805     u8  sched_reserved;
0806     /* outer up section */
0807     __le32  outer_up_table; /* same structure and defines as ingress tbl */
0808     u8  cmd_reserved[8];
0809     /* last 32 bytes are written by FW */
0810     __le16  qs_handle[8];
0811 #define I40E_AQ_VSI_QS_HANDLE_INVALID   0xFFFF
0812     __le16  stat_counter_idx;
0813     __le16  sched_id;
0814     u8  resp_reserved[12];
0815 };
0816 
0817 I40E_CHECK_STRUCT_LEN(128, i40e_aqc_vsi_properties_data);
0818 
0819 /* Add Port Virtualizer (direct 0x0220)
0820  * also used for update PV (direct 0x0221) but only flags are used
0821  * (IS_CTRL_PORT only works on add PV)
0822  */
0823 struct i40e_aqc_add_update_pv {
0824     __le16  command_flags;
0825     __le16  uplink_seid;
0826     __le16  connected_seid;
0827     u8  reserved[10];
0828 };
0829 
0830 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv);
0831 
0832 struct i40e_aqc_add_update_pv_completion {
0833     /* reserved for update; for add also encodes error if rc == ENOSPC */
0834     __le16  pv_seid;
0835     u8  reserved[14];
0836 };
0837 
0838 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_update_pv_completion);
0839 
0840 /* Get PV Params (direct 0x0222)
0841  * uses i40e_aqc_switch_seid for the descriptor
0842  */
0843 
0844 struct i40e_aqc_get_pv_params_completion {
0845     __le16  seid;
0846     __le16  default_stag;
0847     __le16  pv_flags; /* same flags as add_pv */
0848     u8  reserved[8];
0849     __le16  default_port_seid;
0850 };
0851 
0852 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_pv_params_completion);
0853 
0854 /* Add VEB (direct 0x0230) */
0855 struct i40e_aqc_add_veb {
0856     __le16  uplink_seid;
0857     __le16  downlink_seid;
0858     __le16  veb_flags;
0859 #define I40E_AQC_ADD_VEB_FLOATING       0x1
0860 #define I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT  0x2
0861 #define I40E_AQC_ADD_VEB_PORT_TYPE_DATA     0x4
0862 #define I40E_AQC_ADD_VEB_ENABLE_DISABLE_STATS   0x10
0863     u8  enable_tcs;
0864     u8  reserved[9];
0865 };
0866 
0867 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb);
0868 
0869 struct i40e_aqc_add_veb_completion {
0870     u8  reserved[6];
0871     __le16  switch_seid;
0872     /* also encodes error if rc == ENOSPC; codes are the same as add_pv */
0873     __le16  veb_seid;
0874     __le16  statistic_index;
0875     __le16  vebs_used;
0876     __le16  vebs_free;
0877 };
0878 
0879 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_veb_completion);
0880 
0881 /* Get VEB Parameters (direct 0x0232)
0882  * uses i40e_aqc_switch_seid for the descriptor
0883  */
0884 struct i40e_aqc_get_veb_parameters_completion {
0885     __le16  seid;
0886     __le16  switch_id;
0887     __le16  veb_flags; /* only the first/last flags from 0x0230 is valid */
0888     __le16  statistic_index;
0889     __le16  vebs_used;
0890     __le16  vebs_free;
0891     u8  reserved[4];
0892 };
0893 
0894 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_veb_parameters_completion);
0895 
0896 /* Delete Element (direct 0x0243)
0897  * uses the generic i40e_aqc_switch_seid
0898  */
0899 
0900 /* Add MAC-VLAN (indirect 0x0250) */
0901 
0902 /* used for the command for most vlan commands */
0903 struct i40e_aqc_macvlan {
0904     __le16  num_addresses;
0905     __le16  seid[3];
0906 #define I40E_AQC_MACVLAN_CMD_SEID_VALID     0x8000
0907     __le32  addr_high;
0908     __le32  addr_low;
0909 };
0910 
0911 I40E_CHECK_CMD_LENGTH(i40e_aqc_macvlan);
0912 
0913 /* indirect data for command and response */
0914 struct i40e_aqc_add_macvlan_element_data {
0915     u8  mac_addr[6];
0916     __le16  vlan_tag;
0917     __le16  flags;
0918 #define I40E_AQC_MACVLAN_ADD_PERFECT_MATCH  0x0001
0919 #define I40E_AQC_MACVLAN_ADD_IGNORE_VLAN    0x0004
0920 #define I40E_AQC_MACVLAN_ADD_USE_SHARED_MAC 0x0010
0921     __le16  queue_number;
0922     /* response section */
0923     u8  match_method;
0924 #define I40E_AQC_MM_ERR_NO_RES      0xFF
0925     u8  reserved1[3];
0926 };
0927 
0928 struct i40e_aqc_add_remove_macvlan_completion {
0929     __le16 perfect_mac_used;
0930     __le16 perfect_mac_free;
0931     __le16 unicast_hash_free;
0932     __le16 multicast_hash_free;
0933     __le32 addr_high;
0934     __le32 addr_low;
0935 };
0936 
0937 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_macvlan_completion);
0938 
0939 /* Remove MAC-VLAN (indirect 0x0251)
0940  * uses i40e_aqc_macvlan for the descriptor
0941  * data points to an array of num_addresses of elements
0942  */
0943 
0944 struct i40e_aqc_remove_macvlan_element_data {
0945     u8  mac_addr[6];
0946     __le16  vlan_tag;
0947     u8  flags;
0948 #define I40E_AQC_MACVLAN_DEL_PERFECT_MATCH  0x01
0949 #define I40E_AQC_MACVLAN_DEL_IGNORE_VLAN    0x08
0950     u8  reserved[3];
0951     /* reply section */
0952     u8  error_code;
0953     u8  reply_reserved[3];
0954 };
0955 
0956 /* Add VLAN (indirect 0x0252)
0957  * Remove VLAN (indirect 0x0253)
0958  * use the generic i40e_aqc_macvlan for the command
0959  */
0960 struct i40e_aqc_add_remove_vlan_element_data {
0961     __le16  vlan_tag;
0962     u8  vlan_flags;
0963     u8  reserved;
0964     u8  result;
0965     u8  reserved1[3];
0966 };
0967 
0968 struct i40e_aqc_add_remove_vlan_completion {
0969     u8  reserved[4];
0970     __le16  vlans_used;
0971     __le16  vlans_free;
0972     __le32  addr_high;
0973     __le32  addr_low;
0974 };
0975 
0976 /* Set VSI Promiscuous Modes (direct 0x0254) */
0977 struct i40e_aqc_set_vsi_promiscuous_modes {
0978     __le16  promiscuous_flags;
0979     __le16  valid_flags;
0980 /* flags used for both fields above */
0981 #define I40E_AQC_SET_VSI_PROMISC_UNICAST    0x01
0982 #define I40E_AQC_SET_VSI_PROMISC_MULTICAST  0x02
0983 #define I40E_AQC_SET_VSI_PROMISC_BROADCAST  0x04
0984 #define I40E_AQC_SET_VSI_DEFAULT        0x08
0985 #define I40E_AQC_SET_VSI_PROMISC_VLAN       0x10
0986 #define I40E_AQC_SET_VSI_PROMISC_RX_ONLY    0x8000
0987     __le16  seid;
0988     __le16  vlan_tag;
0989 #define I40E_AQC_SET_VSI_VLAN_VALID     0x8000
0990     u8  reserved[8];
0991 };
0992 
0993 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_vsi_promiscuous_modes);
0994 
0995 /* Add S/E-tag command (direct 0x0255)
0996  * Uses generic i40e_aqc_add_remove_tag_completion for completion
0997  */
0998 struct i40e_aqc_add_tag {
0999     __le16  flags;
1000     __le16  seid;
1001     __le16  tag;
1002     __le16  queue_number;
1003     u8  reserved[8];
1004 };
1005 
1006 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_tag);
1007 
1008 struct i40e_aqc_add_remove_tag_completion {
1009     u8  reserved[12];
1010     __le16  tags_used;
1011     __le16  tags_free;
1012 };
1013 
1014 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_tag_completion);
1015 
1016 /* Remove S/E-tag command (direct 0x0256)
1017  * Uses generic i40e_aqc_add_remove_tag_completion for completion
1018  */
1019 struct i40e_aqc_remove_tag {
1020     __le16  seid;
1021     __le16  tag;
1022     u8  reserved[12];
1023 };
1024 
1025 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_tag);
1026 
1027 /* Add multicast E-Tag (direct 0x0257)
1028  * del multicast E-Tag (direct 0x0258) only uses pv_seid and etag fields
1029  * and no external data
1030  */
1031 struct i40e_aqc_add_remove_mcast_etag {
1032     __le16  pv_seid;
1033     __le16  etag;
1034     u8  num_unicast_etags;
1035     u8  reserved[3];
1036     __le32  addr_high;          /* address of array of 2-byte s-tags */
1037     __le32  addr_low;
1038 };
1039 
1040 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag);
1041 
1042 struct i40e_aqc_add_remove_mcast_etag_completion {
1043     u8  reserved[4];
1044     __le16  mcast_etags_used;
1045     __le16  mcast_etags_free;
1046     __le32  addr_high;
1047     __le32  addr_low;
1048 
1049 };
1050 
1051 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_mcast_etag_completion);
1052 
1053 /* Update S/E-Tag (direct 0x0259) */
1054 struct i40e_aqc_update_tag {
1055     __le16  seid;
1056     __le16  old_tag;
1057     __le16  new_tag;
1058     u8  reserved[10];
1059 };
1060 
1061 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag);
1062 
1063 struct i40e_aqc_update_tag_completion {
1064     u8  reserved[12];
1065     __le16  tags_used;
1066     __le16  tags_free;
1067 };
1068 
1069 I40E_CHECK_CMD_LENGTH(i40e_aqc_update_tag_completion);
1070 
1071 /* Add Control Packet filter (direct 0x025A)
1072  * Remove Control Packet filter (direct 0x025B)
1073  * uses the i40e_aqc_add_oveb_cloud,
1074  * and the generic direct completion structure
1075  */
1076 struct i40e_aqc_add_remove_control_packet_filter {
1077     u8  mac[6];
1078     __le16  etype;
1079     __le16  flags;
1080 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC    0x0001
1081 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP      0x0002
1082 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TX        0x0008
1083 #define I40E_AQC_ADD_CONTROL_PACKET_FLAGS_RX        0x0000
1084     __le16  seid;
1085     __le16  queue;
1086     u8  reserved[2];
1087 };
1088 
1089 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter);
1090 
1091 struct i40e_aqc_add_remove_control_packet_filter_completion {
1092     __le16  mac_etype_used;
1093     __le16  etype_used;
1094     __le16  mac_etype_free;
1095     __le16  etype_free;
1096     u8  reserved[8];
1097 };
1098 
1099 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_control_packet_filter_completion);
1100 
1101 /* Add Cloud filters (indirect 0x025C)
1102  * Remove Cloud filters (indirect 0x025D)
1103  * uses the i40e_aqc_add_remove_cloud_filters,
1104  * and the generic indirect completion structure
1105  */
1106 struct i40e_aqc_add_remove_cloud_filters {
1107     u8  num_filters;
1108     u8  reserved;
1109     __le16  seid;
1110     u8  big_buffer_flag;
1111 #define I40E_AQC_ADD_CLOUD_CMD_BB   1
1112     u8  reserved2[3];
1113     __le32  addr_high;
1114     __le32  addr_low;
1115 };
1116 
1117 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_remove_cloud_filters);
1118 
1119 struct i40e_aqc_cloud_filters_element_data {
1120     u8  outer_mac[6];
1121     u8  inner_mac[6];
1122     __le16  inner_vlan;
1123     union {
1124         struct {
1125             u8 reserved[12];
1126             u8 data[4];
1127         } v4;
1128         struct {
1129             u8 data[16];
1130         } v6;
1131         struct {
1132             __le16 data[8];
1133         } raw_v6;
1134     } ipaddr;
1135     __le16  flags;
1136 /* 0x0000 reserved */
1137 /* 0x0001 reserved */
1138 /* 0x0002 reserved */
1139 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN        0x0003
1140 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_IVLAN_TEN_ID 0x0004
1141 /* 0x0005 reserved */
1142 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC_TEN_ID       0x0006
1143 /* 0x0007 reserved */
1144 /* 0x0008 reserved */
1145 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC          0x0009
1146 #define I40E_AQC_ADD_CLOUD_FILTER_IMAC          0x000A
1147 #define I40E_AQC_ADD_CLOUD_FILTER_OMAC_TEN_ID_IMAC  0x000B
1148 #define I40E_AQC_ADD_CLOUD_FILTER_IIP           0x000C
1149 /* 0x000D reserved */
1150 /* 0x000E reserved */
1151 /* 0x000F reserved */
1152 /* 0x0010 to 0x0017 is for custom filters */
1153 #define I40E_AQC_ADD_CLOUD_FILTER_IP_PORT       0x0010 /* Dest IP + L4 Port */
1154 #define I40E_AQC_ADD_CLOUD_FILTER_MAC_PORT      0x0011 /* Dest MAC + L4 Port */
1155 #define I40E_AQC_ADD_CLOUD_FILTER_MAC_VLAN_PORT     0x0012 /* Dest MAC + VLAN + L4 Port */
1156 
1157 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV4           0
1158 #define I40E_AQC_ADD_CLOUD_FLAGS_IPV6           0x0100
1159 
1160 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_SHIFT       9
1161 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MASK        0x1E00
1162 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_GENEVE      2
1163 
1164 
1165     __le32  tenant_id;
1166     u8  reserved[4];
1167     __le16  queue_number;
1168     u8  reserved2[14];
1169     /* response section */
1170     u8  allocation_result;
1171     u8  response_reserved[7];
1172 };
1173 
1174 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_cloud_filters_element_data);
1175 
1176 /* i40e_aqc_cloud_filters_element_bb is used when
1177  * I40E_AQC_CLOUD_CMD_BB flag is set.
1178  */
1179 struct i40e_aqc_cloud_filters_element_bb {
1180     struct i40e_aqc_cloud_filters_element_data element;
1181     u16     general_fields[32];
1182 #define I40E_AQC_ADD_CLOUD_FV_FLU_0X16_WORD0    15
1183 };
1184 
1185 I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_cloud_filters_element_bb);
1186 
1187 struct i40e_aqc_remove_cloud_filters_completion {
1188     __le16 perfect_ovlan_used;
1189     __le16 perfect_ovlan_free;
1190     __le16 vlan_used;
1191     __le16 vlan_free;
1192     __le32 addr_high;
1193     __le32 addr_low;
1194 };
1195 
1196 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_cloud_filters_completion);
1197 
1198 /* Replace filter Command 0x025F
1199  * uses the i40e_aqc_replace_cloud_filters,
1200  * and the generic indirect completion structure
1201  */
1202 struct i40e_filter_data {
1203     u8 filter_type;
1204     u8 input[3];
1205 };
1206 
1207 I40E_CHECK_STRUCT_LEN(4, i40e_filter_data);
1208 
1209 struct i40e_aqc_replace_cloud_filters_cmd {
1210     u8      valid_flags;
1211     u8      old_filter_type;
1212     u8      new_filter_type;
1213     u8      tr_bit;
1214     u8      reserved[4];
1215     __le32 addr_high;
1216     __le32 addr_low;
1217 };
1218 
1219 I40E_CHECK_CMD_LENGTH(i40e_aqc_replace_cloud_filters_cmd);
1220 
1221 struct i40e_aqc_replace_cloud_filters_cmd_buf {
1222     u8      data[32];
1223     struct i40e_filter_data filters[8];
1224 };
1225 
1226 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_replace_cloud_filters_cmd_buf);
1227 
1228 /* Add Mirror Rule (indirect or direct 0x0260)
1229  * Delete Mirror Rule (indirect or direct 0x0261)
1230  * note: some rule types (4,5) do not use an external buffer.
1231  *       take care to set the flags correctly.
1232  */
1233 struct i40e_aqc_add_delete_mirror_rule {
1234     __le16 seid;
1235     __le16 rule_type;
1236 #define I40E_AQC_MIRROR_RULE_TYPE_SHIFT     0
1237 #define I40E_AQC_MIRROR_RULE_TYPE_MASK      (0x7 << \
1238                         I40E_AQC_MIRROR_RULE_TYPE_SHIFT)
1239 #define I40E_AQC_MIRROR_RULE_TYPE_VLAN      3
1240 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_INGRESS   4
1241 #define I40E_AQC_MIRROR_RULE_TYPE_ALL_EGRESS    5
1242     __le16 num_entries;
1243     __le16 destination;  /* VSI for add, rule id for delete */
1244     __le32 addr_high;    /* address of array of 2-byte VSI or VLAN ids */
1245     __le32 addr_low;
1246 };
1247 
1248 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule);
1249 
1250 struct i40e_aqc_add_delete_mirror_rule_completion {
1251     u8  reserved[2];
1252     __le16  rule_id;  /* only used on add */
1253     __le16  mirror_rules_used;
1254     __le16  mirror_rules_free;
1255     __le32  addr_high;
1256     __le32  addr_low;
1257 };
1258 
1259 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_delete_mirror_rule_completion);
1260 
1261 /* Dynamic Device Personalization */
1262 struct i40e_aqc_write_personalization_profile {
1263     u8      flags;
1264     u8      reserved[3];
1265     __le32  profile_track_id;
1266     __le32  addr_high;
1267     __le32  addr_low;
1268 };
1269 
1270 I40E_CHECK_CMD_LENGTH(i40e_aqc_write_personalization_profile);
1271 
1272 struct i40e_aqc_write_ddp_resp {
1273     __le32 error_offset;
1274     __le32 error_info;
1275     __le32 addr_high;
1276     __le32 addr_low;
1277 };
1278 
1279 struct i40e_aqc_get_applied_profiles {
1280     u8      flags;
1281     u8      rsv[3];
1282     __le32  reserved;
1283     __le32  addr_high;
1284     __le32  addr_low;
1285 };
1286 
1287 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_applied_profiles);
1288 
1289 /* DCB 0x03xx*/
1290 
1291 /* PFC Ignore (direct 0x0301)
1292  *    the command and response use the same descriptor structure
1293  */
1294 struct i40e_aqc_pfc_ignore {
1295     u8  tc_bitmap;
1296     u8  command_flags; /* unused on response */
1297     u8  reserved[14];
1298 };
1299 
1300 I40E_CHECK_CMD_LENGTH(i40e_aqc_pfc_ignore);
1301 
1302 /* DCB Update (direct 0x0302) uses the i40e_aq_desc structure
1303  * with no parameters
1304  */
1305 
1306 /* TX scheduler 0x04xx */
1307 
1308 /* Almost all the indirect commands use
1309  * this generic struct to pass the SEID in param0
1310  */
1311 struct i40e_aqc_tx_sched_ind {
1312     __le16  vsi_seid;
1313     u8  reserved[6];
1314     __le32  addr_high;
1315     __le32  addr_low;
1316 };
1317 
1318 I40E_CHECK_CMD_LENGTH(i40e_aqc_tx_sched_ind);
1319 
1320 /* Several commands respond with a set of queue set handles */
1321 struct i40e_aqc_qs_handles_resp {
1322     __le16 qs_handles[8];
1323 };
1324 
1325 /* Configure VSI BW limits (direct 0x0400) */
1326 struct i40e_aqc_configure_vsi_bw_limit {
1327     __le16  vsi_seid;
1328     u8  reserved[2];
1329     __le16  credit;
1330     u8  reserved1[2];
1331     u8  max_credit; /* 0-3, limit = 2^max */
1332     u8  reserved2[7];
1333 };
1334 
1335 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_vsi_bw_limit);
1336 
1337 /* Configure VSI Bandwidth Limit per Traffic Type (indirect 0x0406)
1338  *    responds with i40e_aqc_qs_handles_resp
1339  */
1340 struct i40e_aqc_configure_vsi_ets_sla_bw_data {
1341     u8  tc_valid_bits;
1342     u8  reserved[15];
1343     __le16  tc_bw_credits[8]; /* FW writesback QS handles here */
1344 
1345     /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1346     __le16  tc_bw_max[2];
1347     u8  reserved1[28];
1348 };
1349 
1350 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_configure_vsi_ets_sla_bw_data);
1351 
1352 /* Configure VSI Bandwidth Allocation per Traffic Type (indirect 0x0407)
1353  *    responds with i40e_aqc_qs_handles_resp
1354  */
1355 struct i40e_aqc_configure_vsi_tc_bw_data {
1356     u8  tc_valid_bits;
1357     u8  reserved[3];
1358     u8  tc_bw_credits[8];
1359     u8  reserved1[4];
1360     __le16  qs_handles[8];
1361 };
1362 
1363 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_vsi_tc_bw_data);
1364 
1365 /* Query vsi bw configuration (indirect 0x0408) */
1366 struct i40e_aqc_query_vsi_bw_config_resp {
1367     u8  tc_valid_bits;
1368     u8  tc_suspended_bits;
1369     u8  reserved[14];
1370     __le16  qs_handles[8];
1371     u8  reserved1[4];
1372     __le16  port_bw_limit;
1373     u8  reserved2[2];
1374     u8  max_bw; /* 0-3, limit = 2^max */
1375     u8  reserved3[23];
1376 };
1377 
1378 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_vsi_bw_config_resp);
1379 
1380 /* Query VSI Bandwidth Allocation per Traffic Type (indirect 0x040A) */
1381 struct i40e_aqc_query_vsi_ets_sla_config_resp {
1382     u8  tc_valid_bits;
1383     u8  reserved[3];
1384     u8  share_credits[8];
1385     __le16  credits[8];
1386 
1387     /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1388     __le16  tc_bw_max[2];
1389 };
1390 
1391 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_vsi_ets_sla_config_resp);
1392 
1393 /* Configure Switching Component Bandwidth Limit (direct 0x0410) */
1394 struct i40e_aqc_configure_switching_comp_bw_limit {
1395     __le16  seid;
1396     u8  reserved[2];
1397     __le16  credit;
1398     u8  reserved1[2];
1399     u8  max_bw; /* 0-3, limit = 2^max */
1400     u8  reserved2[7];
1401 };
1402 
1403 I40E_CHECK_CMD_LENGTH(i40e_aqc_configure_switching_comp_bw_limit);
1404 
1405 /* Enable  Physical Port ETS (indirect 0x0413)
1406  * Modify  Physical Port ETS (indirect 0x0414)
1407  * Disable Physical Port ETS (indirect 0x0415)
1408  */
1409 struct i40e_aqc_configure_switching_comp_ets_data {
1410     u8  reserved[4];
1411     u8  tc_valid_bits;
1412     u8  seepage;
1413     u8  tc_strict_priority_flags;
1414     u8  reserved1[17];
1415     u8  tc_bw_share_credits[8];
1416     u8  reserved2[96];
1417 };
1418 
1419 I40E_CHECK_STRUCT_LEN(0x80, i40e_aqc_configure_switching_comp_ets_data);
1420 
1421 /* Configure Switching Component Bandwidth Limits per Tc (indirect 0x0416) */
1422 struct i40e_aqc_configure_switching_comp_ets_bw_limit_data {
1423     u8  tc_valid_bits;
1424     u8  reserved[15];
1425     __le16  tc_bw_credit[8];
1426 
1427     /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1428     __le16  tc_bw_max[2];
1429     u8  reserved1[28];
1430 };
1431 
1432 I40E_CHECK_STRUCT_LEN(0x40,
1433               i40e_aqc_configure_switching_comp_ets_bw_limit_data);
1434 
1435 /* Configure Switching Component Bandwidth Allocation per Tc
1436  * (indirect 0x0417)
1437  */
1438 struct i40e_aqc_configure_switching_comp_bw_config_data {
1439     u8  tc_valid_bits;
1440     u8  reserved[2];
1441     u8  absolute_credits; /* bool */
1442     u8  tc_bw_share_credits[8];
1443     u8  reserved1[20];
1444 };
1445 
1446 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_configure_switching_comp_bw_config_data);
1447 
1448 /* Query Switching Component Configuration (indirect 0x0418) */
1449 struct i40e_aqc_query_switching_comp_ets_config_resp {
1450     u8  tc_valid_bits;
1451     u8  reserved[35];
1452     __le16  port_bw_limit;
1453     u8  reserved1[2];
1454     u8  tc_bw_max; /* 0-3, limit = 2^max */
1455     u8  reserved2[23];
1456 };
1457 
1458 I40E_CHECK_STRUCT_LEN(0x40, i40e_aqc_query_switching_comp_ets_config_resp);
1459 
1460 /* Query PhysicalPort ETS Configuration (indirect 0x0419) */
1461 struct i40e_aqc_query_port_ets_config_resp {
1462     u8  reserved[4];
1463     u8  tc_valid_bits;
1464     u8  reserved1;
1465     u8  tc_strict_priority_bits;
1466     u8  reserved2;
1467     u8  tc_bw_share_credits[8];
1468     __le16  tc_bw_limits[8];
1469 
1470     /* 4 bits per tc 0-7, 4th bit reserved, limit = 2^max */
1471     __le16  tc_bw_max[2];
1472     u8  reserved3[32];
1473 };
1474 
1475 I40E_CHECK_STRUCT_LEN(0x44, i40e_aqc_query_port_ets_config_resp);
1476 
1477 /* Query Switching Component Bandwidth Allocation per Traffic Type
1478  * (indirect 0x041A)
1479  */
1480 struct i40e_aqc_query_switching_comp_bw_config_resp {
1481     u8  tc_valid_bits;
1482     u8  reserved[2];
1483     u8  absolute_credits_enable; /* bool */
1484     u8  tc_bw_share_credits[8];
1485     __le16  tc_bw_limits[8];
1486 
1487     /* 4 bits per tc 0-7, 4th bit is reserved, limit = 2^max */
1488     __le16  tc_bw_max[2];
1489 };
1490 
1491 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_query_switching_comp_bw_config_resp);
1492 
1493 /* Suspend/resume port TX traffic
1494  * (direct 0x041B and 0x041C) uses the generic SEID struct
1495  */
1496 
1497 /* Configure partition BW
1498  * (indirect 0x041D)
1499  */
1500 struct i40e_aqc_configure_partition_bw_data {
1501     __le16  pf_valid_bits;
1502     u8  min_bw[16];      /* guaranteed bandwidth */
1503     u8  max_bw[16];      /* bandwidth limit */
1504 };
1505 
1506 I40E_CHECK_STRUCT_LEN(0x22, i40e_aqc_configure_partition_bw_data);
1507 
1508 /* Get and set the active HMC resource profile and status.
1509  * (direct 0x0500) and (direct 0x0501)
1510  */
1511 struct i40e_aq_get_set_hmc_resource_profile {
1512     u8  pm_profile;
1513     u8  pe_vf_enabled;
1514     u8  reserved[14];
1515 };
1516 
1517 I40E_CHECK_CMD_LENGTH(i40e_aq_get_set_hmc_resource_profile);
1518 
1519 enum i40e_aq_hmc_profile {
1520     /* I40E_HMC_PROFILE_NO_CHANGE   = 0, reserved */
1521     I40E_HMC_PROFILE_DEFAULT    = 1,
1522     I40E_HMC_PROFILE_FAVOR_VF   = 2,
1523     I40E_HMC_PROFILE_EQUAL      = 3,
1524 };
1525 
1526 /* Get PHY Abilities (indirect 0x0600) uses the generic indirect struct */
1527 
1528 /* set in param0 for get phy abilities to report qualified modules */
1529 #define I40E_AQ_PHY_REPORT_QUALIFIED_MODULES    0x0001
1530 #define I40E_AQ_PHY_REPORT_INITIAL_VALUES   0x0002
1531 
1532 enum i40e_aq_phy_type {
1533     I40E_PHY_TYPE_SGMII         = 0x0,
1534     I40E_PHY_TYPE_1000BASE_KX       = 0x1,
1535     I40E_PHY_TYPE_10GBASE_KX4       = 0x2,
1536     I40E_PHY_TYPE_10GBASE_KR        = 0x3,
1537     I40E_PHY_TYPE_40GBASE_KR4       = 0x4,
1538     I40E_PHY_TYPE_XAUI          = 0x5,
1539     I40E_PHY_TYPE_XFI           = 0x6,
1540     I40E_PHY_TYPE_SFI           = 0x7,
1541     I40E_PHY_TYPE_XLAUI         = 0x8,
1542     I40E_PHY_TYPE_XLPPI         = 0x9,
1543     I40E_PHY_TYPE_40GBASE_CR4_CU        = 0xA,
1544     I40E_PHY_TYPE_10GBASE_CR1_CU        = 0xB,
1545     I40E_PHY_TYPE_10GBASE_AOC       = 0xC,
1546     I40E_PHY_TYPE_40GBASE_AOC       = 0xD,
1547     I40E_PHY_TYPE_UNRECOGNIZED      = 0xE,
1548     I40E_PHY_TYPE_UNSUPPORTED       = 0xF,
1549     I40E_PHY_TYPE_100BASE_TX        = 0x11,
1550     I40E_PHY_TYPE_1000BASE_T        = 0x12,
1551     I40E_PHY_TYPE_10GBASE_T         = 0x13,
1552     I40E_PHY_TYPE_10GBASE_SR        = 0x14,
1553     I40E_PHY_TYPE_10GBASE_LR        = 0x15,
1554     I40E_PHY_TYPE_10GBASE_SFPP_CU       = 0x16,
1555     I40E_PHY_TYPE_10GBASE_CR1       = 0x17,
1556     I40E_PHY_TYPE_40GBASE_CR4       = 0x18,
1557     I40E_PHY_TYPE_40GBASE_SR4       = 0x19,
1558     I40E_PHY_TYPE_40GBASE_LR4       = 0x1A,
1559     I40E_PHY_TYPE_1000BASE_SX       = 0x1B,
1560     I40E_PHY_TYPE_1000BASE_LX       = 0x1C,
1561     I40E_PHY_TYPE_1000BASE_T_OPTICAL    = 0x1D,
1562     I40E_PHY_TYPE_20GBASE_KR2       = 0x1E,
1563     I40E_PHY_TYPE_25GBASE_KR        = 0x1F,
1564     I40E_PHY_TYPE_25GBASE_CR        = 0x20,
1565     I40E_PHY_TYPE_25GBASE_SR        = 0x21,
1566     I40E_PHY_TYPE_25GBASE_LR        = 0x22,
1567     I40E_PHY_TYPE_25GBASE_AOC       = 0x23,
1568     I40E_PHY_TYPE_25GBASE_ACC       = 0x24,
1569     I40E_PHY_TYPE_2_5GBASE_T        = 0x26,
1570     I40E_PHY_TYPE_5GBASE_T          = 0x27,
1571     I40E_PHY_TYPE_2_5GBASE_T_LINK_STATUS    = 0x30,
1572     I40E_PHY_TYPE_5GBASE_T_LINK_STATUS  = 0x31,
1573     I40E_PHY_TYPE_MAX,
1574     I40E_PHY_TYPE_NOT_SUPPORTED_HIGH_TEMP   = 0xFD,
1575     I40E_PHY_TYPE_EMPTY         = 0xFE,
1576     I40E_PHY_TYPE_DEFAULT           = 0xFF,
1577 };
1578 
1579 #define I40E_PHY_TYPES_BITMASK (BIT_ULL(I40E_PHY_TYPE_SGMII) | \
1580                 BIT_ULL(I40E_PHY_TYPE_1000BASE_KX) | \
1581                 BIT_ULL(I40E_PHY_TYPE_10GBASE_KX4) | \
1582                 BIT_ULL(I40E_PHY_TYPE_10GBASE_KR) | \
1583                 BIT_ULL(I40E_PHY_TYPE_40GBASE_KR4) | \
1584                 BIT_ULL(I40E_PHY_TYPE_XAUI) | \
1585                 BIT_ULL(I40E_PHY_TYPE_XFI) | \
1586                 BIT_ULL(I40E_PHY_TYPE_SFI) | \
1587                 BIT_ULL(I40E_PHY_TYPE_XLAUI) | \
1588                 BIT_ULL(I40E_PHY_TYPE_XLPPI) | \
1589                 BIT_ULL(I40E_PHY_TYPE_40GBASE_CR4_CU) | \
1590                 BIT_ULL(I40E_PHY_TYPE_10GBASE_CR1_CU) | \
1591                 BIT_ULL(I40E_PHY_TYPE_10GBASE_AOC) | \
1592                 BIT_ULL(I40E_PHY_TYPE_40GBASE_AOC) | \
1593                 BIT_ULL(I40E_PHY_TYPE_UNRECOGNIZED) | \
1594                 BIT_ULL(I40E_PHY_TYPE_UNSUPPORTED) | \
1595                 BIT_ULL(I40E_PHY_TYPE_100BASE_TX) | \
1596                 BIT_ULL(I40E_PHY_TYPE_1000BASE_T) | \
1597                 BIT_ULL(I40E_PHY_TYPE_10GBASE_T) | \
1598                 BIT_ULL(I40E_PHY_TYPE_10GBASE_SR) | \
1599                 BIT_ULL(I40E_PHY_TYPE_10GBASE_LR) | \
1600                 BIT_ULL(I40E_PHY_TYPE_10GBASE_SFPP_CU) | \
1601                 BIT_ULL(I40E_PHY_TYPE_10GBASE_CR1) | \
1602                 BIT_ULL(I40E_PHY_TYPE_40GBASE_CR4) | \
1603                 BIT_ULL(I40E_PHY_TYPE_40GBASE_SR4) | \
1604                 BIT_ULL(I40E_PHY_TYPE_40GBASE_LR4) | \
1605                 BIT_ULL(I40E_PHY_TYPE_1000BASE_SX) | \
1606                 BIT_ULL(I40E_PHY_TYPE_1000BASE_LX) | \
1607                 BIT_ULL(I40E_PHY_TYPE_1000BASE_T_OPTICAL) | \
1608                 BIT_ULL(I40E_PHY_TYPE_20GBASE_KR2) | \
1609                 BIT_ULL(I40E_PHY_TYPE_25GBASE_KR) | \
1610                 BIT_ULL(I40E_PHY_TYPE_25GBASE_CR) | \
1611                 BIT_ULL(I40E_PHY_TYPE_25GBASE_SR) | \
1612                 BIT_ULL(I40E_PHY_TYPE_25GBASE_LR) | \
1613                 BIT_ULL(I40E_PHY_TYPE_25GBASE_AOC) | \
1614                 BIT_ULL(I40E_PHY_TYPE_25GBASE_ACC) | \
1615                 BIT_ULL(I40E_PHY_TYPE_2_5GBASE_T) | \
1616                 BIT_ULL(I40E_PHY_TYPE_5GBASE_T))
1617 
1618 #define I40E_LINK_SPEED_2_5GB_SHIFT 0x0
1619 #define I40E_LINK_SPEED_100MB_SHIFT 0x1
1620 #define I40E_LINK_SPEED_1000MB_SHIFT    0x2
1621 #define I40E_LINK_SPEED_10GB_SHIFT  0x3
1622 #define I40E_LINK_SPEED_40GB_SHIFT  0x4
1623 #define I40E_LINK_SPEED_20GB_SHIFT  0x5
1624 #define I40E_LINK_SPEED_25GB_SHIFT  0x6
1625 #define I40E_LINK_SPEED_5GB_SHIFT   0x7
1626 
1627 enum i40e_aq_link_speed {
1628     I40E_LINK_SPEED_UNKNOWN = 0,
1629     I40E_LINK_SPEED_100MB   = BIT(I40E_LINK_SPEED_100MB_SHIFT),
1630     I40E_LINK_SPEED_1GB = BIT(I40E_LINK_SPEED_1000MB_SHIFT),
1631     I40E_LINK_SPEED_2_5GB   = (1 << I40E_LINK_SPEED_2_5GB_SHIFT),
1632     I40E_LINK_SPEED_5GB = (1 << I40E_LINK_SPEED_5GB_SHIFT),
1633     I40E_LINK_SPEED_10GB    = BIT(I40E_LINK_SPEED_10GB_SHIFT),
1634     I40E_LINK_SPEED_40GB    = BIT(I40E_LINK_SPEED_40GB_SHIFT),
1635     I40E_LINK_SPEED_20GB    = BIT(I40E_LINK_SPEED_20GB_SHIFT),
1636     I40E_LINK_SPEED_25GB    = BIT(I40E_LINK_SPEED_25GB_SHIFT),
1637 };
1638 
1639 struct i40e_aqc_module_desc {
1640     u8 oui[3];
1641     u8 reserved1;
1642     u8 part_number[16];
1643     u8 revision[4];
1644     u8 reserved2[8];
1645 };
1646 
1647 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_module_desc);
1648 
1649 struct i40e_aq_get_phy_abilities_resp {
1650     __le32  phy_type;       /* bitmap using the above enum for offsets */
1651     u8  link_speed;     /* bitmap using the above enum bit patterns */
1652     u8  abilities;
1653 #define I40E_AQ_PHY_FLAG_PAUSE_TX   0x01
1654 #define I40E_AQ_PHY_FLAG_PAUSE_RX   0x02
1655     __le16  eee_capability;
1656     __le32  eeer_val;
1657     u8  d3_lpan;
1658     u8  phy_type_ext;
1659 #define I40E_AQ_PHY_TYPE_EXT_25G_KR 0X01
1660 #define I40E_AQ_PHY_TYPE_EXT_25G_CR 0X02
1661 #define I40E_AQ_PHY_TYPE_EXT_25G_SR 0x04
1662 #define I40E_AQ_PHY_TYPE_EXT_25G_LR 0x08
1663     u8  fec_cfg_curr_mod_ext_info;
1664 #define I40E_AQ_REQUEST_FEC_KR      0x04
1665 #define I40E_AQ_REQUEST_FEC_RS      0x08
1666 #define I40E_AQ_ENABLE_FEC_AUTO     0x10
1667 
1668     u8  ext_comp_code;
1669     u8  phy_id[4];
1670     u8  module_type[3];
1671     u8  qualified_module_count;
1672 #define I40E_AQ_PHY_MAX_QMS     16
1673     struct i40e_aqc_module_desc qualified_module[I40E_AQ_PHY_MAX_QMS];
1674 };
1675 
1676 I40E_CHECK_STRUCT_LEN(0x218, i40e_aq_get_phy_abilities_resp);
1677 
1678 /* Set PHY Config (direct 0x0601) */
1679 struct i40e_aq_set_phy_config { /* same bits as above in all */
1680     __le32  phy_type;
1681     u8  link_speed;
1682     u8  abilities;
1683 /* bits 0-2 use the values from get_phy_abilities_resp */
1684 #define I40E_AQ_PHY_ENABLE_LINK     0x08
1685 #define I40E_AQ_PHY_ENABLE_AN       0x10
1686 #define I40E_AQ_PHY_ENABLE_ATOMIC_LINK  0x20
1687     __le16  eee_capability;
1688     __le32  eeer;
1689     u8  low_power_ctrl;
1690     u8  phy_type_ext;
1691 #define I40E_AQ_PHY_TYPE_EXT_25G_KR 0X01
1692 #define I40E_AQ_PHY_TYPE_EXT_25G_CR 0X02
1693 #define I40E_AQ_PHY_TYPE_EXT_25G_SR 0x04
1694 #define I40E_AQ_PHY_TYPE_EXT_25G_LR 0x08
1695     u8  fec_config;
1696 #define I40E_AQ_SET_FEC_ABILITY_KR  BIT(0)
1697 #define I40E_AQ_SET_FEC_ABILITY_RS  BIT(1)
1698 #define I40E_AQ_SET_FEC_REQUEST_KR  BIT(2)
1699 #define I40E_AQ_SET_FEC_REQUEST_RS  BIT(3)
1700 #define I40E_AQ_SET_FEC_AUTO        BIT(4)
1701 #define I40E_AQ_PHY_FEC_CONFIG_SHIFT    0x0
1702 #define I40E_AQ_PHY_FEC_CONFIG_MASK (0x1F << I40E_AQ_PHY_FEC_CONFIG_SHIFT)
1703     u8  reserved;
1704 };
1705 
1706 I40E_CHECK_CMD_LENGTH(i40e_aq_set_phy_config);
1707 
1708 /* Set MAC Config command data structure (direct 0x0603) */
1709 struct i40e_aq_set_mac_config {
1710     __le16  max_frame_size;
1711     u8  params;
1712     u8  tx_timer_priority; /* bitmap */
1713     __le16  tx_timer_value;
1714     __le16  fc_refresh_threshold;
1715     u8  reserved[8];
1716 };
1717 
1718 I40E_CHECK_CMD_LENGTH(i40e_aq_set_mac_config);
1719 
1720 /* Restart Auto-Negotiation (direct 0x605) */
1721 struct i40e_aqc_set_link_restart_an {
1722     u8  command;
1723 #define I40E_AQ_PHY_RESTART_AN  0x02
1724 #define I40E_AQ_PHY_LINK_ENABLE 0x04
1725     u8  reserved[15];
1726 };
1727 
1728 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_link_restart_an);
1729 
1730 /* Get Link Status cmd & response data structure (direct 0x0607) */
1731 struct i40e_aqc_get_link_status {
1732     __le16  command_flags; /* only field set on command */
1733 #define I40E_AQ_LSE_DISABLE     0x2
1734 #define I40E_AQ_LSE_ENABLE      0x3
1735 /* only response uses this flag */
1736 #define I40E_AQ_LSE_IS_ENABLED      0x1
1737     u8  phy_type;    /* i40e_aq_phy_type   */
1738     u8  link_speed;  /* i40e_aq_link_speed */
1739     u8  link_info;
1740 #define I40E_AQ_LINK_UP         0x01    /* obsolete */
1741 #define I40E_AQ_MEDIA_AVAILABLE     0x40
1742     u8  an_info;
1743 #define I40E_AQ_AN_COMPLETED        0x01
1744 #define I40E_AQ_LINK_PAUSE_TX       0x20
1745 #define I40E_AQ_LINK_PAUSE_RX       0x40
1746 #define I40E_AQ_QUALIFIED_MODULE    0x80
1747     u8  ext_info;
1748     u8  loopback; /* use defines from i40e_aqc_set_lb_mode */
1749 /* Since firmware API 1.7 loopback field keeps power class info as well */
1750 #define I40E_AQ_LOOPBACK_MASK       0x07
1751     __le16  max_frame_size;
1752     u8  config;
1753 #define I40E_AQ_CONFIG_FEC_KR_ENA   0x01
1754 #define I40E_AQ_CONFIG_FEC_RS_ENA   0x02
1755 #define I40E_AQ_CONFIG_CRC_ENA      0x04
1756 #define I40E_AQ_CONFIG_PACING_MASK  0x78
1757     union {
1758         struct {
1759             u8  power_desc;
1760             u8  reserved[4];
1761         };
1762         struct {
1763             u8  link_type[4];
1764             u8  link_type_ext;
1765         };
1766     };
1767 };
1768 
1769 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_link_status);
1770 
1771 /* Set event mask command (direct 0x613) */
1772 struct i40e_aqc_set_phy_int_mask {
1773     u8  reserved[8];
1774     __le16  event_mask;
1775 #define I40E_AQ_EVENT_LINK_UPDOWN   0x0002
1776 #define I40E_AQ_EVENT_MEDIA_NA      0x0004
1777 #define I40E_AQ_EVENT_MODULE_QUAL_FAIL  0x0100
1778     u8  reserved1[6];
1779 };
1780 
1781 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_int_mask);
1782 
1783 /* Get Local AN advt register (direct 0x0614)
1784  * Set Local AN advt register (direct 0x0615)
1785  * Get Link Partner AN advt register (direct 0x0616)
1786  */
1787 struct i40e_aqc_an_advt_reg {
1788     __le32  local_an_reg0;
1789     __le16  local_an_reg1;
1790     u8  reserved[10];
1791 };
1792 
1793 I40E_CHECK_CMD_LENGTH(i40e_aqc_an_advt_reg);
1794 
1795 /* Set Loopback mode (0x0618) */
1796 struct i40e_aqc_set_lb_mode {
1797     __le16  lb_mode;
1798 #define I40E_AQ_LB_PHY_LOCAL    0x01
1799 #define I40E_AQ_LB_PHY_REMOTE   0x02
1800 #define I40E_AQ_LB_MAC_LOCAL    0x04
1801     u8  reserved[14];
1802 };
1803 
1804 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_lb_mode);
1805 
1806 /* Set PHY Debug command (0x0622) */
1807 struct i40e_aqc_set_phy_debug {
1808     u8  command_flags;
1809 /* Disable link manageability on a single port */
1810 #define I40E_AQ_PHY_DEBUG_DISABLE_LINK_FW   0x10
1811 /* Disable link manageability on all ports */
1812 #define I40E_AQ_PHY_DEBUG_DISABLE_ALL_LINK_FW   0x20
1813     u8  reserved[15];
1814 };
1815 
1816 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_phy_debug);
1817 
1818 enum i40e_aq_phy_reg_type {
1819     I40E_AQC_PHY_REG_INTERNAL   = 0x1,
1820     I40E_AQC_PHY_REG_EXERNAL_BASET  = 0x2,
1821     I40E_AQC_PHY_REG_EXERNAL_MODULE = 0x3
1822 };
1823 
1824 /* Run PHY Activity (0x0626) */
1825 struct i40e_aqc_run_phy_activity {
1826     __le16  activity_id;
1827     u8      flags;
1828     u8      reserved1;
1829     __le32  control;
1830     __le32  data;
1831     u8      reserved2[4];
1832 };
1833 
1834 I40E_CHECK_CMD_LENGTH(i40e_aqc_run_phy_activity);
1835 
1836 /* Set PHY Register command (0x0628) */
1837 /* Get PHY Register command (0x0629) */
1838 struct i40e_aqc_phy_register_access {
1839     u8  phy_interface;
1840 #define I40E_AQ_PHY_REG_ACCESS_EXTERNAL 1
1841 #define I40E_AQ_PHY_REG_ACCESS_EXTERNAL_MODULE  2
1842     u8  dev_address;
1843     u8  cmd_flags;
1844 #define I40E_AQ_PHY_REG_ACCESS_DONT_CHANGE_QSFP_PAGE    0x01
1845 #define I40E_AQ_PHY_REG_ACCESS_SET_MDIO_IF_NUMBER   0x02
1846 #define I40E_AQ_PHY_REG_ACCESS_MDIO_IF_NUMBER_SHIFT 2
1847 #define I40E_AQ_PHY_REG_ACCESS_MDIO_IF_NUMBER_MASK  (0x3 << \
1848         I40E_AQ_PHY_REG_ACCESS_MDIO_IF_NUMBER_SHIFT)
1849     u8  reserved1;
1850     __le32  reg_address;
1851     __le32  reg_value;
1852     u8  reserved2[4];
1853 };
1854 
1855 I40E_CHECK_CMD_LENGTH(i40e_aqc_phy_register_access);
1856 
1857 /* NVM Read command (indirect 0x0701)
1858  * NVM Erase commands (direct 0x0702)
1859  * NVM Update commands (indirect 0x0703)
1860  */
1861 struct i40e_aqc_nvm_update {
1862     u8  command_flags;
1863 #define I40E_AQ_NVM_LAST_CMD            0x01
1864 #define I40E_AQ_NVM_REARRANGE_TO_FLAT       0x20
1865 #define I40E_AQ_NVM_REARRANGE_TO_STRUCT     0x40
1866 #define I40E_AQ_NVM_PRESERVATION_FLAGS_SHIFT    1
1867 #define I40E_AQ_NVM_PRESERVATION_FLAGS_SELECTED 0x03
1868 #define I40E_AQ_NVM_PRESERVATION_FLAGS_ALL  0x01
1869     u8  module_pointer;
1870     __le16  length;
1871     __le32  offset;
1872     __le32  addr_high;
1873     __le32  addr_low;
1874 };
1875 
1876 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_update);
1877 
1878 /* NVM Config Read (indirect 0x0704) */
1879 struct i40e_aqc_nvm_config_read {
1880     __le16  cmd_flags;
1881     __le16  element_count;
1882     __le16  element_id; /* Feature/field ID */
1883     __le16  element_id_msw; /* MSWord of field ID */
1884     __le32  address_high;
1885     __le32  address_low;
1886 };
1887 
1888 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_read);
1889 
1890 /* NVM Config Write (indirect 0x0705) */
1891 struct i40e_aqc_nvm_config_write {
1892     __le16  cmd_flags;
1893     __le16  element_count;
1894     u8  reserved[4];
1895     __le32  address_high;
1896     __le32  address_low;
1897 };
1898 
1899 I40E_CHECK_CMD_LENGTH(i40e_aqc_nvm_config_write);
1900 
1901 /* Used for 0x0704 as well as for 0x0705 commands */
1902 struct i40e_aqc_nvm_config_data_feature {
1903     __le16 feature_id;
1904     __le16 feature_options;
1905     __le16 feature_selection;
1906 };
1907 
1908 I40E_CHECK_STRUCT_LEN(0x6, i40e_aqc_nvm_config_data_feature);
1909 
1910 struct i40e_aqc_nvm_config_data_immediate_field {
1911     __le32 field_id;
1912     __le32 field_value;
1913     __le16 field_options;
1914     __le16 reserved;
1915 };
1916 
1917 I40E_CHECK_STRUCT_LEN(0xc, i40e_aqc_nvm_config_data_immediate_field);
1918 
1919 /* OEM Post Update (indirect 0x0720)
1920  * no command data struct used
1921  */
1922 struct i40e_aqc_nvm_oem_post_update {
1923     u8 sel_data;
1924     u8 reserved[7];
1925 };
1926 
1927 I40E_CHECK_STRUCT_LEN(0x8, i40e_aqc_nvm_oem_post_update);
1928 
1929 struct i40e_aqc_nvm_oem_post_update_buffer {
1930     u8 str_len;
1931     u8 dev_addr;
1932     __le16 eeprom_addr;
1933     u8 data[36];
1934 };
1935 
1936 I40E_CHECK_STRUCT_LEN(0x28, i40e_aqc_nvm_oem_post_update_buffer);
1937 
1938 /* Thermal Sensor (indirect 0x0721)
1939  *     read or set thermal sensor configs and values
1940  *     takes a sensor and command specific data buffer, not detailed here
1941  */
1942 struct i40e_aqc_thermal_sensor {
1943     u8 sensor_action;
1944     u8 reserved[7];
1945     __le32  addr_high;
1946     __le32  addr_low;
1947 };
1948 
1949 I40E_CHECK_CMD_LENGTH(i40e_aqc_thermal_sensor);
1950 
1951 /* Send to PF command (indirect 0x0801) id is only used by PF
1952  * Send to VF command (indirect 0x0802) id is only used by PF
1953  * Send to Peer PF command (indirect 0x0803)
1954  */
1955 struct i40e_aqc_pf_vf_message {
1956     __le32  id;
1957     u8  reserved[4];
1958     __le32  addr_high;
1959     __le32  addr_low;
1960 };
1961 
1962 I40E_CHECK_CMD_LENGTH(i40e_aqc_pf_vf_message);
1963 
1964 /* Alternate structure */
1965 
1966 /* Direct write (direct 0x0900)
1967  * Direct read (direct 0x0902)
1968  */
1969 struct i40e_aqc_alternate_write {
1970     __le32 address0;
1971     __le32 data0;
1972     __le32 address1;
1973     __le32 data1;
1974 };
1975 
1976 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write);
1977 
1978 /* Indirect write (indirect 0x0901)
1979  * Indirect read (indirect 0x0903)
1980  */
1981 
1982 struct i40e_aqc_alternate_ind_write {
1983     __le32 address;
1984     __le32 length;
1985     __le32 addr_high;
1986     __le32 addr_low;
1987 };
1988 
1989 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_ind_write);
1990 
1991 /* Done alternate write (direct 0x0904)
1992  * uses i40e_aq_desc
1993  */
1994 struct i40e_aqc_alternate_write_done {
1995     __le16  cmd_flags;
1996     u8  reserved[14];
1997 };
1998 
1999 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_write_done);
2000 
2001 /* Set OEM mode (direct 0x0905) */
2002 struct i40e_aqc_alternate_set_mode {
2003     __le32  mode;
2004     u8  reserved[12];
2005 };
2006 
2007 I40E_CHECK_CMD_LENGTH(i40e_aqc_alternate_set_mode);
2008 
2009 /* Clear port Alternate RAM (direct 0x0906) uses i40e_aq_desc */
2010 
2011 /* async events 0x10xx */
2012 
2013 /* Lan Queue Overflow Event (direct, 0x1001) */
2014 struct i40e_aqc_lan_overflow {
2015     __le32  prtdcb_rupto;
2016     __le32  otx_ctl;
2017     u8  reserved[8];
2018 };
2019 
2020 I40E_CHECK_CMD_LENGTH(i40e_aqc_lan_overflow);
2021 
2022 /* Get LLDP MIB (indirect 0x0A00) */
2023 struct i40e_aqc_lldp_get_mib {
2024     u8  type;
2025     u8  reserved1;
2026 #define I40E_AQ_LLDP_MIB_TYPE_MASK      0x3
2027 #define I40E_AQ_LLDP_MIB_LOCAL          0x0
2028 #define I40E_AQ_LLDP_MIB_REMOTE         0x1
2029 #define I40E_AQ_LLDP_BRIDGE_TYPE_MASK       0xC
2030 #define I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT      0x2
2031 #define I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE 0x0
2032 /* TX pause flags use I40E_AQ_LINK_TX_* above */
2033     __le16  local_len;
2034     __le16  remote_len;
2035     u8  reserved2[2];
2036     __le32  addr_high;
2037     __le32  addr_low;
2038 };
2039 
2040 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_get_mib);
2041 
2042 /* Configure LLDP MIB Change Event (direct 0x0A01)
2043  * also used for the event (with type in the command field)
2044  */
2045 struct i40e_aqc_lldp_update_mib {
2046     u8  command;
2047 #define I40E_AQ_LLDP_MIB_UPDATE_DISABLE 0x1
2048     u8  reserved[7];
2049     __le32  addr_high;
2050     __le32  addr_low;
2051 };
2052 
2053 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_mib);
2054 
2055 /* Add LLDP TLV (indirect 0x0A02)
2056  * Delete LLDP TLV (indirect 0x0A04)
2057  */
2058 struct i40e_aqc_lldp_add_tlv {
2059     u8  type; /* only nearest bridge and non-TPMR from 0x0A00 */
2060     u8  reserved1[1];
2061     __le16  len;
2062     u8  reserved2[4];
2063     __le32  addr_high;
2064     __le32  addr_low;
2065 };
2066 
2067 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_add_tlv);
2068 
2069 /* Update LLDP TLV (indirect 0x0A03) */
2070 struct i40e_aqc_lldp_update_tlv {
2071     u8  type; /* only nearest bridge and non-TPMR from 0x0A00 */
2072     u8  reserved;
2073     __le16  old_len;
2074     __le16  new_offset;
2075     __le16  new_len;
2076     __le32  addr_high;
2077     __le32  addr_low;
2078 };
2079 
2080 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_update_tlv);
2081 
2082 /* Stop LLDP (direct 0x0A05) */
2083 struct i40e_aqc_lldp_stop {
2084     u8  command;
2085 #define I40E_AQ_LLDP_AGENT_SHUTDOWN     0x1
2086 #define I40E_AQ_LLDP_AGENT_STOP_PERSIST     0x2
2087     u8  reserved[15];
2088 };
2089 
2090 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop);
2091 
2092 /* Start LLDP (direct 0x0A06) */
2093 struct i40e_aqc_lldp_start {
2094     u8  command;
2095 #define I40E_AQ_LLDP_AGENT_START        0x1
2096 #define I40E_AQ_LLDP_AGENT_START_PERSIST    0x2
2097     u8  reserved[15];
2098 };
2099 
2100 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_start);
2101 
2102 /* Set DCB (direct 0x0303) */
2103 struct i40e_aqc_set_dcb_parameters {
2104     u8 command;
2105 #define I40E_AQ_DCB_SET_AGENT   0x1
2106 #define I40E_DCB_VALID      0x1
2107     u8 valid_flags;
2108     u8 reserved[14];
2109 };
2110 
2111 I40E_CHECK_CMD_LENGTH(i40e_aqc_set_dcb_parameters);
2112 
2113 /* Get CEE DCBX Oper Config (0x0A07)
2114  * uses the generic descriptor struct
2115  * returns below as indirect response
2116  */
2117 
2118 #define I40E_AQC_CEE_APP_FCOE_SHIFT 0x0
2119 #define I40E_AQC_CEE_APP_FCOE_MASK  (0x7 << I40E_AQC_CEE_APP_FCOE_SHIFT)
2120 #define I40E_AQC_CEE_APP_ISCSI_SHIFT    0x3
2121 #define I40E_AQC_CEE_APP_ISCSI_MASK (0x7 << I40E_AQC_CEE_APP_ISCSI_SHIFT)
2122 #define I40E_AQC_CEE_APP_FIP_SHIFT  0x8
2123 #define I40E_AQC_CEE_APP_FIP_MASK   (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
2124 
2125 #define I40E_AQC_CEE_PG_STATUS_SHIFT    0x0
2126 #define I40E_AQC_CEE_PG_STATUS_MASK (0x7 << I40E_AQC_CEE_PG_STATUS_SHIFT)
2127 #define I40E_AQC_CEE_PFC_STATUS_SHIFT   0x3
2128 #define I40E_AQC_CEE_PFC_STATUS_MASK    (0x7 << I40E_AQC_CEE_PFC_STATUS_SHIFT)
2129 #define I40E_AQC_CEE_APP_STATUS_SHIFT   0x8
2130 #define I40E_AQC_CEE_APP_STATUS_MASK    (0x7 << I40E_AQC_CEE_APP_STATUS_SHIFT)
2131 #define I40E_AQC_CEE_FCOE_STATUS_SHIFT  0x8
2132 #define I40E_AQC_CEE_FCOE_STATUS_MASK   (0x7 << I40E_AQC_CEE_FCOE_STATUS_SHIFT)
2133 #define I40E_AQC_CEE_ISCSI_STATUS_SHIFT 0xB
2134 #define I40E_AQC_CEE_ISCSI_STATUS_MASK  (0x7 << I40E_AQC_CEE_ISCSI_STATUS_SHIFT)
2135 #define I40E_AQC_CEE_FIP_STATUS_SHIFT   0x10
2136 #define I40E_AQC_CEE_FIP_STATUS_MASK    (0x7 << I40E_AQC_CEE_FIP_STATUS_SHIFT)
2137 
2138 /* struct i40e_aqc_get_cee_dcb_cfg_v1_resp was originally defined with
2139  * word boundary layout issues, which the Linux compilers silently deal
2140  * with by adding padding, making the actual struct larger than designed.
2141  * However, the FW compiler for the NIC is less lenient and complains
2142  * about the struct.  Hence, the struct defined here has an extra byte in
2143  * fields reserved3 and reserved4 to directly acknowledge that padding,
2144  * and the new length is used in the length check macro.
2145  */
2146 struct i40e_aqc_get_cee_dcb_cfg_v1_resp {
2147     u8  reserved1;
2148     u8  oper_num_tc;
2149     u8  oper_prio_tc[4];
2150     u8  reserved2;
2151     u8  oper_tc_bw[8];
2152     u8  oper_pfc_en;
2153     u8  reserved3[2];
2154     __le16  oper_app_prio;
2155     u8  reserved4[2];
2156     __le16  tlv_status;
2157 };
2158 
2159 I40E_CHECK_STRUCT_LEN(0x18, i40e_aqc_get_cee_dcb_cfg_v1_resp);
2160 
2161 struct i40e_aqc_get_cee_dcb_cfg_resp {
2162     u8  oper_num_tc;
2163     u8  oper_prio_tc[4];
2164     u8  oper_tc_bw[8];
2165     u8  oper_pfc_en;
2166     __le16  oper_app_prio;
2167 #define I40E_AQC_CEE_APP_FCOE_SHIFT 0x0
2168 #define I40E_AQC_CEE_APP_FCOE_MASK  (0x7 << I40E_AQC_CEE_APP_FCOE_SHIFT)
2169 #define I40E_AQC_CEE_APP_ISCSI_SHIFT    0x3
2170 #define I40E_AQC_CEE_APP_ISCSI_MASK (0x7 << I40E_AQC_CEE_APP_ISCSI_SHIFT)
2171 #define I40E_AQC_CEE_APP_FIP_SHIFT  0x8
2172 #define I40E_AQC_CEE_APP_FIP_MASK   (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
2173 #define I40E_AQC_CEE_APP_FIP_MASK   (0x7 << I40E_AQC_CEE_APP_FIP_SHIFT)
2174     __le32  tlv_status;
2175 #define I40E_AQC_CEE_PG_STATUS_SHIFT    0x0
2176 #define I40E_AQC_CEE_PG_STATUS_MASK (0x7 << I40E_AQC_CEE_PG_STATUS_SHIFT)
2177 #define I40E_AQC_CEE_PFC_STATUS_SHIFT   0x3
2178 #define I40E_AQC_CEE_PFC_STATUS_MASK    (0x7 << I40E_AQC_CEE_PFC_STATUS_SHIFT)
2179 #define I40E_AQC_CEE_APP_STATUS_SHIFT   0x8
2180 #define I40E_AQC_CEE_APP_STATUS_MASK    (0x7 << I40E_AQC_CEE_APP_STATUS_SHIFT)
2181     u8  reserved[12];
2182 };
2183 
2184 I40E_CHECK_STRUCT_LEN(0x20, i40e_aqc_get_cee_dcb_cfg_resp);
2185 
2186 /*  Set Local LLDP MIB (indirect 0x0A08)
2187  *  Used to replace the local MIB of a given LLDP agent. e.g. DCBx
2188  */
2189 struct i40e_aqc_lldp_set_local_mib {
2190 #define SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT    0
2191 #define SET_LOCAL_MIB_AC_TYPE_DCBX_MASK (1 << \
2192                     SET_LOCAL_MIB_AC_TYPE_DCBX_SHIFT)
2193 #define SET_LOCAL_MIB_AC_TYPE_LOCAL_MIB 0x0
2194 #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_SHIFT    (1)
2195 #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_MASK (1 << \
2196                 SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS_SHIFT)
2197 #define SET_LOCAL_MIB_AC_TYPE_NON_WILLING_APPS      0x1
2198     u8  type;
2199     u8  reserved0;
2200     __le16  length;
2201     u8  reserved1[4];
2202     __le32  address_high;
2203     __le32  address_low;
2204 };
2205 
2206 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_set_local_mib);
2207 
2208 /*  Stop/Start LLDP Agent (direct 0x0A09)
2209  *  Used for stopping/starting specific LLDP agent. e.g. DCBx
2210  */
2211 struct i40e_aqc_lldp_stop_start_specific_agent {
2212     u8  command;
2213     u8  reserved[15];
2214 };
2215 
2216 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_stop_start_specific_agent);
2217 
2218 /* Restore LLDP Agent factory settings (direct 0x0A0A) */
2219 struct i40e_aqc_lldp_restore {
2220     u8  command;
2221 #define I40E_AQ_LLDP_AGENT_RESTORE      0x1
2222     u8  reserved[15];
2223 };
2224 
2225 I40E_CHECK_CMD_LENGTH(i40e_aqc_lldp_restore);
2226 
2227 /* Add Udp Tunnel command and completion (direct 0x0B00) */
2228 struct i40e_aqc_add_udp_tunnel {
2229     __le16  udp_port;
2230     u8  reserved0[3];
2231     u8  protocol_type;
2232 #define I40E_AQC_TUNNEL_TYPE_VXLAN  0x00
2233 #define I40E_AQC_TUNNEL_TYPE_NGE    0x01
2234     u8  reserved1[10];
2235 };
2236 
2237 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel);
2238 
2239 struct i40e_aqc_add_udp_tunnel_completion {
2240     __le16  udp_port;
2241     u8  filter_entry_index;
2242     u8  multiple_pfs;
2243     u8  total_filters;
2244     u8  reserved[11];
2245 };
2246 
2247 I40E_CHECK_CMD_LENGTH(i40e_aqc_add_udp_tunnel_completion);
2248 
2249 /* remove UDP Tunnel command (0x0B01) */
2250 struct i40e_aqc_remove_udp_tunnel {
2251     u8  reserved[2];
2252     u8  index; /* 0 to 15 */
2253     u8  reserved2[13];
2254 };
2255 
2256 I40E_CHECK_CMD_LENGTH(i40e_aqc_remove_udp_tunnel);
2257 
2258 struct i40e_aqc_del_udp_tunnel_completion {
2259     __le16  udp_port;
2260     u8  index; /* 0 to 15 */
2261     u8  multiple_pfs;
2262     u8  total_filters_used;
2263     u8  reserved1[11];
2264 };
2265 
2266 I40E_CHECK_CMD_LENGTH(i40e_aqc_del_udp_tunnel_completion);
2267 
2268 struct i40e_aqc_get_set_rss_key {
2269 #define I40E_AQC_SET_RSS_KEY_VSI_VALID      BIT(15)
2270 #define I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT   0
2271 #define I40E_AQC_SET_RSS_KEY_VSI_ID_MASK    (0x3FF << \
2272                     I40E_AQC_SET_RSS_KEY_VSI_ID_SHIFT)
2273     __le16  vsi_id;
2274     u8  reserved[6];
2275     __le32  addr_high;
2276     __le32  addr_low;
2277 };
2278 
2279 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_key);
2280 
2281 struct i40e_aqc_get_set_rss_key_data {
2282     u8 standard_rss_key[0x28];
2283     u8 extended_hash_key[0xc];
2284 };
2285 
2286 I40E_CHECK_STRUCT_LEN(0x34, i40e_aqc_get_set_rss_key_data);
2287 
2288 struct  i40e_aqc_get_set_rss_lut {
2289 #define I40E_AQC_SET_RSS_LUT_VSI_VALID      BIT(15)
2290 #define I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT   0
2291 #define I40E_AQC_SET_RSS_LUT_VSI_ID_MASK    (0x3FF << \
2292                     I40E_AQC_SET_RSS_LUT_VSI_ID_SHIFT)
2293     __le16  vsi_id;
2294 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT   0
2295 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_MASK    BIT(I40E_AQC_SET_RSS_LUT_TABLE_TYPE_SHIFT)
2296 
2297 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_VSI 0
2298 #define I40E_AQC_SET_RSS_LUT_TABLE_TYPE_PF  1
2299     __le16  flags;
2300     u8  reserved[4];
2301     __le32  addr_high;
2302     __le32  addr_low;
2303 };
2304 
2305 I40E_CHECK_CMD_LENGTH(i40e_aqc_get_set_rss_lut);
2306 
2307 /* tunnel key structure 0x0B10 */
2308 
2309 struct i40e_aqc_tunnel_key_structure {
2310     u8  key1_off;
2311     u8  key2_off;
2312     u8  key1_len;  /* 0 to 15 */
2313     u8  key2_len;  /* 0 to 15 */
2314     u8  flags;
2315     u8  network_key_index;
2316     u8  reserved[10];
2317 };
2318 
2319 I40E_CHECK_CMD_LENGTH(i40e_aqc_tunnel_key_structure);
2320 
2321 /* OEM mode commands (direct 0xFE0x) */
2322 struct i40e_aqc_oem_param_change {
2323     __le32  param_type;
2324     __le32  param_value1;
2325     __le16  param_value2;
2326     u8  reserved[6];
2327 };
2328 
2329 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_param_change);
2330 
2331 struct i40e_aqc_oem_state_change {
2332     __le32  state;
2333     u8  reserved[12];
2334 };
2335 
2336 I40E_CHECK_CMD_LENGTH(i40e_aqc_oem_state_change);
2337 
2338 /* Initialize OCSD (0xFE02, direct) */
2339 struct i40e_aqc_opc_oem_ocsd_initialize {
2340     u8 type_status;
2341     u8 reserved1[3];
2342     __le32 ocsd_memory_block_addr_high;
2343     __le32 ocsd_memory_block_addr_low;
2344     __le32 requested_update_interval;
2345 };
2346 
2347 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocsd_initialize);
2348 
2349 /* Initialize OCBB  (0xFE03, direct) */
2350 struct i40e_aqc_opc_oem_ocbb_initialize {
2351     u8 type_status;
2352     u8 reserved1[3];
2353     __le32 ocbb_memory_block_addr_high;
2354     __le32 ocbb_memory_block_addr_low;
2355     u8 reserved2[4];
2356 };
2357 
2358 I40E_CHECK_CMD_LENGTH(i40e_aqc_opc_oem_ocbb_initialize);
2359 
2360 /* debug commands */
2361 
2362 /* get device id (0xFF00) uses the generic structure */
2363 
2364 /* set test more (0xFF01, internal) */
2365 
2366 struct i40e_acq_set_test_mode {
2367     u8  mode;
2368     u8  reserved[3];
2369     u8  command;
2370     u8  reserved2[3];
2371     __le32  address_high;
2372     __le32  address_low;
2373 };
2374 
2375 I40E_CHECK_CMD_LENGTH(i40e_acq_set_test_mode);
2376 
2377 /* Debug Read Register command (0xFF03)
2378  * Debug Write Register command (0xFF04)
2379  */
2380 struct i40e_aqc_debug_reg_read_write {
2381     __le32 reserved;
2382     __le32 address;
2383     __le32 value_high;
2384     __le32 value_low;
2385 };
2386 
2387 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_reg_read_write);
2388 
2389 /* Scatter/gather Reg Read  (indirect 0xFF05)
2390  * Scatter/gather Reg Write (indirect 0xFF06)
2391  */
2392 
2393 /* i40e_aq_desc is used for the command */
2394 struct i40e_aqc_debug_reg_sg_element_data {
2395     __le32 address;
2396     __le32 value;
2397 };
2398 
2399 /* Debug Modify register (direct 0xFF07) */
2400 struct i40e_aqc_debug_modify_reg {
2401     __le32 address;
2402     __le32 value;
2403     __le32 clear_mask;
2404     __le32 set_mask;
2405 };
2406 
2407 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_reg);
2408 
2409 /* dump internal data (0xFF08, indirect) */
2410 struct i40e_aqc_debug_dump_internals {
2411     u8  cluster_id;
2412     u8  table_id;
2413     __le16  data_size;
2414     __le32  idx;
2415     __le32  address_high;
2416     __le32  address_low;
2417 };
2418 
2419 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_dump_internals);
2420 
2421 struct i40e_aqc_debug_modify_internals {
2422     u8  cluster_id;
2423     u8  cluster_specific_params[7];
2424     __le32  address_high;
2425     __le32  address_low;
2426 };
2427 
2428 I40E_CHECK_CMD_LENGTH(i40e_aqc_debug_modify_internals);
2429 
2430 #endif /* _I40E_ADMINQ_CMD_H_ */