diff options
author | Jacob Keller <jacob.e.keller@intel.com> | 2020-06-18 11:46:11 -0700 |
---|---|---|
committer | Tony Nguyen <anthony.l.nguyen@intel.com> | 2020-07-01 15:41:45 -0700 |
commit | 8d7aab3515fa1f9774939537419fecf5247689a9 (patch) | |
tree | 182b0bce1d6f0357c0cd877c97e7072f3ea5d273 /drivers/net/ethernet/intel/ice/ice_common.h | |
parent | 2b04a66156159592156a97553057e8c36de2ee70 (diff) | |
download | linux-8d7aab3515fa1f9774939537419fecf5247689a9.tar.gz linux-8d7aab3515fa1f9774939537419fecf5247689a9.tar.bz2 linux-8d7aab3515fa1f9774939537419fecf5247689a9.zip |
ice: implement snapshot for device capabilities
Add a new devlink region used for capturing a snapshot of the device
capabilities buffer which is reported by the firmware over the AdminQ.
This information can useful in debugging driver and firmware
interactions.
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_common.h')
-rw-r--r-- | drivers/net/ethernet/intel/ice/ice_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_common.h b/drivers/net/ethernet/intel/ice/ice_common.h index 9b9e50d2398b..e72529e9f022 100644 --- a/drivers/net/ethernet/intel/ice/ice_common.h +++ b/drivers/net/ethernet/intel/ice/ice_common.h @@ -87,6 +87,9 @@ enum ice_status ice_aq_get_phy_caps(struct ice_port_info *pi, bool qual_mods, u8 report_mode, struct ice_aqc_get_phy_caps_data *caps, struct ice_sq_cd *cd); +enum ice_status +ice_aq_list_caps(struct ice_hw *hw, void *buf, u16 buf_size, u32 *cap_count, + enum ice_adminq_opc opc, struct ice_sq_cd *cd); void ice_update_phy_type(u64 *phy_type_low, u64 *phy_type_high, u16 link_speeds_bitmap); |