net/ice/base: add shared driver parameter command
Adds the Driver Shared Parameters (0x0C90) AQ command. Signed-off-by: Lev Faerman <lev.faerman@intel.com> Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> Acked-by: Qiming Yang <qiming.yang@intel.com>
This commit is contained in:
parent
1d6cf7df2a
commit
87e1f7f3d8
@ -2181,6 +2181,20 @@ struct ice_aqc_get_pkg_info_resp {
|
||||
struct ice_aqc_get_pkg_info pkg_info[1];
|
||||
};
|
||||
|
||||
/* Driver Shared Parameters (direct, 0x0C90) */
|
||||
struct ice_aqc_driver_shared_params {
|
||||
u8 set_or_get_op;
|
||||
#define ICE_AQC_DRIVER_PARAM_OP_MASK BIT(0)
|
||||
#define ICE_AQC_DRIVER_PARAM_SET 0
|
||||
#define ICE_AQC_DRIVER_PARAM_GET 1
|
||||
u8 param_indx;
|
||||
#define ICE_AQC_DRIVER_PARAM_MAX_IDX 15
|
||||
u8 rsvd[2];
|
||||
__le32 param_val;
|
||||
__le32 addr_high;
|
||||
__le32 addr_low;
|
||||
};
|
||||
|
||||
/* Lan Queue Overflow Event (direct, 0x1001) */
|
||||
struct ice_aqc_event_lan_overflow {
|
||||
__le32 prtdcb_ruptq;
|
||||
@ -2269,6 +2283,7 @@ struct ice_aq_desc {
|
||||
struct ice_aqc_get_vsi_resp get_vsi_resp;
|
||||
struct ice_aqc_download_pkg download_pkg;
|
||||
struct ice_aqc_get_pkg_info_list get_pkg_info_list;
|
||||
struct ice_aqc_driver_shared_params drv_shared_params;
|
||||
struct ice_aqc_set_mac_lb set_mac_lb;
|
||||
struct ice_aqc_alloc_free_res_cmd sw_res_ctrl;
|
||||
struct ice_aqc_get_res_alloc get_res;
|
||||
@ -2491,6 +2506,8 @@ enum ice_adminq_opc {
|
||||
ice_aqc_opc_update_pkg = 0x0C42,
|
||||
ice_aqc_opc_get_pkg_info_list = 0x0C43,
|
||||
|
||||
ice_aqc_opc_driver_shared_params = 0x0C90,
|
||||
|
||||
/* Standalone Commands/Events */
|
||||
ice_aqc_opc_event_lan_overflow = 0x1001,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user