diff options
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_common.h')
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_common.h | 36 | 
1 files changed, 29 insertions, 7 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_common.h b/drivers/net/ethernet/intel/ice/ice_common.h index 9b9e50d2398b..3ebb973878c7 100644 --- a/drivers/net/ethernet/intel/ice/ice_common.h +++ b/drivers/net/ethernet/intel/ice/ice_common.h @@ -11,8 +11,6 @@  #include "ice_switch.h"  #include <linux/avf/virtchnl.h> -enum ice_status ice_nvm_validate_checksum(struct ice_hw *hw); -  enum ice_status ice_init_hw(struct ice_hw *hw);  void ice_deinit_hw(struct ice_hw *hw);  enum ice_status ice_check_reset(struct ice_hw *hw); @@ -87,6 +85,11 @@ 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); +enum ice_status +ice_discover_dev_caps(struct ice_hw *hw, struct ice_hw_dev_caps *dev_caps);  void  ice_update_phy_type(u64 *phy_type_low, u64 *phy_type_high,  		    u16 link_speeds_bitmap); @@ -95,17 +98,33 @@ ice_aq_manage_mac_write(struct ice_hw *hw, const u8 *mac_addr, u8 flags,  			struct ice_sq_cd *cd);  enum ice_status ice_clear_pf_cfg(struct ice_hw *hw);  enum ice_status -ice_aq_set_phy_cfg(struct ice_hw *hw, u8 lport, +ice_aq_set_phy_cfg(struct ice_hw *hw, struct ice_port_info *pi,  		   struct ice_aqc_set_phy_cfg_data *cfg, struct ice_sq_cd *cd); +bool ice_fw_supports_link_override(struct ice_hw *hw); +enum ice_status +ice_get_link_default_override(struct ice_link_default_override_tlv *ldo, +			      struct ice_port_info *pi); +bool ice_is_phy_caps_an_enabled(struct ice_aqc_get_phy_caps_data *caps); + +enum ice_fc_mode ice_caps_to_fc_mode(u8 caps); +enum ice_fec_mode ice_caps_to_fec_mode(u8 caps, u8 fec_options);  enum ice_status  ice_set_fc(struct ice_port_info *pi, u8 *aq_failures,  	   bool ena_auto_link_update); +enum ice_status +ice_cfg_phy_fc(struct ice_port_info *pi, struct ice_aqc_set_phy_cfg_data *cfg, +	       enum ice_fc_mode fc); +bool +ice_phy_caps_equals_cfg(struct ice_aqc_get_phy_caps_data *caps, +			struct ice_aqc_set_phy_cfg_data *cfg);  void -ice_cfg_phy_fec(struct ice_aqc_set_phy_cfg_data *cfg, enum ice_fec_mode fec); -void -ice_copy_phy_caps_to_cfg(struct ice_aqc_get_phy_caps_data *caps, +ice_copy_phy_caps_to_cfg(struct ice_port_info *pi, +			 struct ice_aqc_get_phy_caps_data *caps,  			 struct ice_aqc_set_phy_cfg_data *cfg);  enum ice_status +ice_cfg_phy_fec(struct ice_port_info *pi, struct ice_aqc_set_phy_cfg_data *cfg, +		enum ice_fec_mode fec); +enum ice_status  ice_aq_set_link_restart_an(struct ice_port_info *pi, bool ena_link,  			   struct ice_sq_cd *cd);  enum ice_status @@ -152,5 +171,8 @@ ice_stat_update32(struct ice_hw *hw, u32 reg, bool prev_stat_loaded,  		  u64 *prev_stat, u64 *cur_stat);  enum ice_status  ice_sched_query_elem(struct ice_hw *hw, u32 node_teid, -		     struct ice_aqc_get_elem *buf); +		     struct ice_aqc_txsched_elem_data *buf); +enum ice_status +ice_aq_set_lldp_mib(struct ice_hw *hw, u8 mib_type, void *buf, u16 buf_size, +		    struct ice_sq_cd *cd);  #endif /* _ICE_COMMON_H_ */  |