diff options
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/mvm.h')
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 564 | 
1 files changed, 498 insertions, 66 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h b/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h index 90bc95d96a78..9e5008e0e47f 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h @@ -16,6 +16,8 @@  #include <linux/thermal.h>  #endif +#include <linux/ptp_clock_kernel.h> +  #include <linux/ktime.h>  #include "iwl-op-mode.h" @@ -71,7 +73,11 @@  /* offchannel queue towards mac80211 */  #define IWL_MVM_OFFCHANNEL_QUEUE 0 +/* invalid value for FW link id */ +#define IWL_MVM_FW_LINK_ID_INVALID 0xff +  extern const struct ieee80211_ops iwl_mvm_hw_ops; +extern const struct ieee80211_ops iwl_mvm_mld_hw_ops;  /**   * struct iwl_mvm_mod_params - module parameters for iwlmvm @@ -278,11 +284,60 @@ struct iwl_probe_resp_data {  };  /** + * struct iwl_mvm_vif_link_info - per link data in Virtual Interface + * @ap_sta_id: the sta_id of the AP - valid only if VIF type is STA + * @fw_link_id: the id of the link according to the FW API + * @bssid: BSSID for this (client) interface + * @bcast_sta: station used for broadcast packets. Used by the following + *	vifs: P2P_DEVICE, GO and AP. + * @beacon_stats: beacon statistics, containing the # of received beacons, + *	# of received beacons accumulated over FW restart, and the current + *	average signal of beacons retrieved from the firmware + * @smps_requests: the SMPS requests of different parts of the driver, + *	combined on update to yield the overall request to mac80211. + * @probe_resp_data: data from FW notification to store NOA and CSA related + *	data to be inserted into probe response. + * @he_ru_2mhz_block: 26-tone RU OFDMA transmissions should be blocked + * @queue_params: QoS params for this MAC + * @mgmt_queue: queue number for unbufferable management frames + */ +struct iwl_mvm_vif_link_info { +	u8 bssid[ETH_ALEN]; +	u8 ap_sta_id; +	u8 fw_link_id; + +	struct iwl_mvm_int_sta bcast_sta; +	struct iwl_mvm_int_sta mcast_sta; + +	struct { +		u32 num_beacons, accu_num_beacons; +		u8 avg_signal; +	} beacon_stats; + +	enum ieee80211_smps_mode smps_requests[NUM_IWL_MVM_SMPS_REQ]; +	struct iwl_probe_resp_data __rcu *probe_resp_data; + +	bool he_ru_2mhz_block; +	bool active; + +	u16 cab_queue; +	/* Assigned while mac80211 has the link in a channel context, +	 * or, for P2P Device, while it exists. +	 */ +	struct iwl_mvm_phy_ctxt *phy_ctxt; +	/* QoS data from mac80211, need to store this here +	 * as mac80211 has a separate callback but we need +	 * to have the data for the MAC context +	 */ +	struct ieee80211_tx_queue_params queue_params[IEEE80211_NUM_ACS]; + +	u16 mgmt_queue; +}; + +/**   * struct iwl_mvm_vif - data per Virtual Interface, it is a MAC context   * @id: between 0 and 3   * @color: to solve races upon MAC addition and removal - * @ap_sta_id: the sta_id of the AP - valid only if VIF type is STA - * @bssid: BSSID for this (client) interface   * @associated: indicates that we're currently associated, used only for   *	managing the firmware state in iwl_mvm_bss_info_changed_station()   * @ap_assoc_sta_count: count of stations associated to us - valid only @@ -290,7 +345,7 @@ struct iwl_probe_resp_data {   * @uploaded: indicates the MAC context has been added to the device   * @ap_ibss_active: indicates that AP/IBSS is configured and that the interface   *	should get quota etc. - * @pm_enabled - Indicate if MAC power management is allowed + * @pm_enabled - indicate if MAC power management is allowed   * @monitor_active: indicates that monitor context is configured, and that the   *	interface should get quota etc.   * @low_latency: bit flags for low latency @@ -299,68 +354,31 @@ struct iwl_probe_resp_data {   *	as a result from low_latency bit flags and takes force into account.   * @authorized: indicates the AP station was set to authorized   * @ps_disabled: indicates that this interface requires PS to be disabled - * @queue_params: QoS params for this MAC - * @bcast_sta: station used for broadcast packets. Used by the following - *  vifs: P2P_DEVICE, GO and AP. - * @beacon_skb: the skb used to hold the AP/GO beacon template - * @smps_requests: the SMPS requests of different parts of the driver, - *	combined on update to yield the overall request to mac80211. - * @beacon_stats: beacon statistics, containing the # of received beacons, - *	# of received beacons accumulated over FW restart, and the current - *	average signal of beacons retrieved from the firmware + * @csa_countdown: indicates that CSA countdown may be started   * @csa_failed: CSA failed to schedule time event, report an error later + * @csa_bcn_pending: indicates that we are waiting for a beacon on a new channel   * @features: hw features active for this vif - * @probe_resp_data: data from FW notification to store NOA and CSA related - *	data to be inserted into probe response.   */  struct iwl_mvm_vif {  	struct iwl_mvm *mvm;  	u16 id;  	u16 color; -	u8 ap_sta_id; -	u8 bssid[ETH_ALEN];  	bool associated;  	u8 ap_assoc_sta_count; - -	u16 cab_queue; -  	bool uploaded;  	bool ap_ibss_active;  	bool pm_enabled;  	bool monitor_active; +  	u8 low_latency: 6;  	u8 low_latency_actual: 1; +  	u8 authorized:1;  	bool ps_disabled; -	struct iwl_mvm_vif_bf_data bf_data; - -	struct { -		u32 num_beacons, accu_num_beacons; -		u8 avg_signal; -	} beacon_stats;  	u32 ap_beacon_time; - -	enum iwl_tsf_id tsf_id; - -	/* -	 * QoS data from mac80211, need to store this here -	 * as mac80211 has a separate callback but we need -	 * to have the data for the MAC context -	 */ -	struct ieee80211_tx_queue_params queue_params[IEEE80211_NUM_ACS]; -	struct iwl_mvm_time_event_data time_event_data; -	struct iwl_mvm_time_event_data hs_time_event_data; - -	struct iwl_mvm_int_sta bcast_sta; -	struct iwl_mvm_int_sta mcast_sta; - -	/* -	 * Assigned while mac80211 has the interface in a channel context, -	 * or, for P2P Device, while it exists. -	 */ -	struct iwl_mvm_phy_ctxt *phy_ctxt; +	struct iwl_mvm_vif_bf_data bf_data;  #ifdef CONFIG_PM  	/* WoWLAN GTK rekey data */ @@ -396,40 +414,45 @@ struct iwl_mvm_vif {  	int dbgfs_quota_min;  #endif -	enum ieee80211_smps_mode smps_requests[NUM_IWL_MVM_SMPS_REQ]; -  	/* FW identified misbehaving AP */  	u8 uapsd_misbehaving_bssid[ETH_ALEN]; -  	struct delayed_work uapsd_nonagg_detected_wk; -	/* Indicates that CSA countdown may be started */  	bool csa_countdown;  	bool csa_failed; +	bool csa_bcn_pending;  	u16 csa_target_freq;  	u16 csa_count;  	u16 csa_misbehave;  	struct delayed_work csa_work; -	/* Indicates that we are waiting for a beacon on a new channel */ -	bool csa_bcn_pending; +	enum iwl_tsf_id tsf_id; + +	struct iwl_mvm_time_event_data time_event_data; +	struct iwl_mvm_time_event_data hs_time_event_data;  	/* TCP Checksum Offload */  	netdev_features_t features; -	struct iwl_probe_resp_data __rcu *probe_resp_data; +	struct ieee80211_sta *ap_sta;  	/* we can only have 2 GTK + 2 IGTK active at a time */  	struct ieee80211_key_conf *ap_early_keys[4]; -	/* 26-tone RU OFDMA transmissions should be blocked */ -	bool he_ru_2mhz_block; -  	struct {  		struct ieee80211_key_conf __rcu *keys[2];  	} bcn_prot; + +	struct iwl_mvm_vif_link_info deflink; +	struct iwl_mvm_vif_link_info *link[IEEE80211_MLD_MAX_NUM_LINKS];  }; +#define for_each_mvm_vif_valid_link(mvm_vif, link_id)			\ +	for (link_id = 0;						\ +	     link_id < ARRAY_SIZE((mvm_vif)->link);			\ +	     link_id++)							\ +		if ((mvm_vif)->link[link_id]) +  static inline struct iwl_mvm_vif *  iwl_mvm_vif_from_mac80211(struct ieee80211_vif *vif)  { @@ -657,7 +680,7 @@ __aligned(roundup_pow_of_two(sizeof(struct _iwl_mvm_reorder_buf_entry)))  /**   * struct iwl_mvm_baid_data - BA session data - * @sta_id: station id + * @sta_mask: current station mask for the BAID   * @tid: tid of the session   * @baid baid of the session   * @timeout: the timeout set in the addba request @@ -671,7 +694,7 @@ __aligned(roundup_pow_of_two(sizeof(struct _iwl_mvm_reorder_buf_entry)))   */  struct iwl_mvm_baid_data {  	struct rcu_head rcu_head; -	u8 sta_id; +	u32 sta_mask;  	u8 tid;  	u8 baid;  	u16 timeout; @@ -729,7 +752,10 @@ struct iwl_mvm_txq {  	struct list_head list;  	u16 txq_id;  	atomic_t tx_request; -	bool stopped; +#define IWL_MVM_TXQ_STATE_STOP_FULL	0 +#define IWL_MVM_TXQ_STATE_STOP_REDIRECT	1 +#define IWL_MVM_TXQ_STATE_READY		2 +	unsigned long state;  };  static inline struct iwl_mvm_txq * @@ -769,6 +795,43 @@ struct iwl_mvm_dqa_txq_info {  	enum iwl_mvm_queue_status status;  }; +struct ptp_data { +	struct ptp_clock *ptp_clock; +	struct ptp_clock_info ptp_clock_info; + +	struct delayed_work dwork; + +	/* The last GP2 reading from the hw */ +	u32 last_gp2; + +	/* number of wraparounds since scale_update_adj_time_ns */ +	u32 wrap_counter; + +	/* GP2 time when the scale was last updated */ +	u32 scale_update_gp2; + +	/* Adjusted time when the scale was last updated in nanoseconds */ +	u64 scale_update_adj_time_ns; + +	/* clock frequency offset, scaled to 65536000000 */ +	u64 scaled_freq; + +	/* Delta between hardware clock and ptp clock in nanoseconds */ +	s64 delta; +}; + +struct iwl_time_sync_data { +	struct sk_buff_head frame_list; +	u8 peer_addr[ETH_ALEN]; +	bool active; +}; + +struct iwl_mei_scan_filter { +	bool is_mei_limited_scan; +	struct sk_buff_head scan_res; +	struct work_struct scan_work; +}; +  struct iwl_mvm {  	/* for logger access */  	struct device *dev; @@ -827,6 +890,7 @@ struct iwl_mvm {  		struct iwl_mvm_tvqm_txq_info tvqm_info[IWL_MAX_TVQM_QUEUES];  	};  	struct work_struct add_stream_wk; /* To add streams to queues */ +	spinlock_t add_stream_lock;  	const char *nvm_file_name;  	struct iwl_nvm_data *nvm_data; @@ -853,6 +917,8 @@ struct iwl_mvm {  	/* data related to data path */  	struct iwl_rx_phy_info last_phy_info;  	struct ieee80211_sta __rcu *fw_id_to_mac_id[IWL_MVM_STATION_COUNT_MAX]; +	struct ieee80211_link_sta __rcu *fw_id_to_link_sta[IWL_MVM_STATION_COUNT_MAX]; +	unsigned long fw_link_ids_map;  	u8 rx_ba_sessions;  	/* configured by mac80211 */ @@ -1079,6 +1145,8 @@ struct iwl_mvm {  	struct list_head resp_pasn_list; +	struct ptp_data ptp_data; +  	struct {  		u8 range_resp;  	} cmd_ver; @@ -1096,6 +1164,11 @@ struct iwl_mvm {  	/* does a monitor vif exist (only one can exist hence bool) */  	bool monitor_on; +	/* +	 * primary channel position relative to he whole bandwidth, +	 * in steps of 80 MHz +	 */ +	u8 monitor_p80;  	/* sniffer data to include in radiotap */  	__le16 cur_aid; @@ -1105,8 +1178,13 @@ struct iwl_mvm {  	unsigned long last_reset_or_resume_time_jiffies;  	bool sta_remove_requires_queue_remove; +	bool mld_api_is_used;  	bool pldr_sync; + +	struct iwl_time_sync_data time_sync; + +	struct iwl_mei_scan_filter mei_scan_filter;  };  /* Extract MVM priv from op_mode and _hw */ @@ -1306,7 +1384,7 @@ static inline bool iwl_mvm_is_csum_supported(struct iwl_mvm *mvm)  {  	return fw_has_capa(&mvm->fw->ucode_capa,  			   IWL_UCODE_TLV_CAPA_CSUM_SUPPORT) && -               !IWL_MVM_HW_CSUM_DISABLE; +		!IWL_MVM_HW_CSUM_DISABLE;  }  static inline bool iwl_mvm_is_mplut_supported(struct iwl_mvm *mvm) @@ -1331,6 +1409,12 @@ static inline bool iwl_mvm_has_new_rx_api(struct iwl_mvm *mvm)  			   IWL_UCODE_TLV_CAPA_MULTI_QUEUE_RX_SUPPORT);  } +static inline bool iwl_mvm_has_mld_api(const struct iwl_fw *fw) +{ +	return fw_has_capa(&fw->ucode_capa, +			   IWL_UCODE_TLV_CAPA_MLD_API_SUPPORT); +} +  static inline bool iwl_mvm_has_new_tx_api(struct iwl_mvm *mvm)  {  	/* TODO - replace with TLV once defined */ @@ -1432,6 +1516,19 @@ static inline bool iwl_mvm_is_ctdp_supported(struct iwl_mvm *mvm)  			   IWL_UCODE_TLV_CAPA_CTDP_SUPPORT);  } +static inline bool iwl_mvm_has_new_tx_csum(struct iwl_mvm *mvm) +{ +	if (mvm->trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_BZ) +		return false; + +	if (mvm->trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_BZ && +	    CSR_HW_REV_TYPE(mvm->trans->hw_rev) == IWL_CFG_MAC_TYPE_GL && +	    mvm->trans->hw_rev_step <= SILICON_B_STEP) +		return false; + +	return true; +} +  extern const u8 iwl_mvm_ac_to_tx_fifo[];  extern const u8 iwl_mvm_ac_to_gen2_tx_fifo[]; @@ -1472,6 +1569,7 @@ void iwl_mvm_hwrate_to_tx_rate_v1(u32 rate_n_flags,  				  struct ieee80211_tx_rate *r);  u8 iwl_mvm_mac80211_idx_to_hwrate(const struct iwl_fw *fw, int rate_idx);  u8 iwl_mvm_mac80211_ac_to_ucode_ac(enum ieee80211_ac_numbers ac); +bool iwl_mvm_is_nic_ack_enabled(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  static inline void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm)  { @@ -1519,6 +1617,17 @@ int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk);  int iwl_mvm_flush_sta(struct iwl_mvm *mvm, void *sta, bool internal);  int iwl_mvm_flush_sta_tids(struct iwl_mvm *mvm, u32 sta_id, u16 tids); +/* Utils to extract sta related data */ +__le32 iwl_mvm_get_sta_htc_flags(struct ieee80211_sta *sta, +				 struct ieee80211_link_sta *link_sta); +u8 iwl_mvm_get_sta_uapsd_acs(struct ieee80211_sta *sta); +u32 iwl_mvm_get_sta_ampdu_dens(struct ieee80211_link_sta *link_sta, +			       struct ieee80211_bss_conf *link_conf, +			       u32 *_agg_size); +int iwl_mvm_set_sta_pkt_ext(struct iwl_mvm *mvm, +			    struct ieee80211_link_sta *link_sta, +			    struct iwl_he_pkt_ext_v2 *pkt_ext); +  void iwl_mvm_async_handlers_purge(struct iwl_mvm *mvm);  static inline void iwl_mvm_set_tx_cmd_ccmp(struct ieee80211_tx_info *info, @@ -1618,6 +1727,7 @@ void iwl_mvm_rx_shared_mem_cfg_notif(struct iwl_mvm *mvm,  				     struct iwl_rx_cmd_buffer *rxb);  /* MVM PHY */ +struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm);  int iwl_mvm_phy_ctxt_add(struct iwl_mvm *mvm, struct iwl_mvm_phy_ctxt *ctxt,  			 struct cfg80211_chan_def *chandef,  			 u8 chains_static, u8 chains_dynamic); @@ -1633,22 +1743,60 @@ u8 iwl_mvm_get_channel_width(struct cfg80211_chan_def *chandef);  u8 iwl_mvm_get_ctrl_pos(struct cfg80211_chan_def *chandef);  /* MAC (virtual interface) programming */ + +void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm, +				 struct ieee80211_vif *vif); +void iwl_mvm_set_fw_basic_rates(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +				struct ieee80211_bss_conf *link_conf, +				__le32 *cck_rates, __le32 *ofdm_rates); +void iwl_mvm_set_fw_protection_flags(struct iwl_mvm *mvm, +				     struct ieee80211_vif *vif, +				     struct ieee80211_bss_conf *link_conf, +				     __le32 *protection_flags, u32 ht_flag, +				     u32 tgg_flag); +void iwl_mvm_set_fw_qos_params(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			       struct ieee80211_bss_conf *link_conf, +			       struct iwl_ac_qos *ac, __le32 *qos_flags); +bool iwl_mvm_set_fw_mu_edca_params(struct iwl_mvm *mvm, +				   struct iwl_mvm_vif *mvmvif, +				   struct iwl_he_backoff_conf *trig_based_txf); +void iwl_mvm_set_fw_dtim_tbtt(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			      struct ieee80211_bss_conf *link_conf, +			      __le64 *dtim_tsf, __le32 *dtim_time, +			      __le32 *assoc_beacon_arrive_time); +__le32 iwl_mac_ctxt_p2p_dev_has_extended_disc(struct iwl_mvm *mvm, +					      struct ieee80211_vif *vif); +void iwl_mvm_mac_ctxt_cmd_ap_set_filter_flags(struct iwl_mvm *mvm, +					      struct iwl_mvm_vif *mvmvif, +					      __le32 *filter_flags, +					      int accept_probe_req_flag, +					      int accept_beacon_flag); +int iwl_mvm_get_mac_type(struct ieee80211_vif *vif); +__le32 iwl_mvm_mac_ctxt_cmd_p2p_sta_get_oppps_ctwin(struct iwl_mvm *mvm, +						    struct ieee80211_vif *vif); +__le32 iwl_mvm_mac_ctxt_cmd_sta_get_twt_policy(struct iwl_mvm *mvm, +					       struct ieee80211_vif *vif); +int iwl_mvm_mld_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif); +int iwl_mvm_mld_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +				 bool force_assoc_off); +int iwl_mvm_mld_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif,  			     bool force_assoc_off, const u8 *bssid_override);  int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm, -				    struct ieee80211_vif *vif); -int iwl_mvm_mac_ctxt_send_beacon(struct iwl_mvm *mvm, -				 struct ieee80211_vif *vif, -				 struct sk_buff *beacon); +				    struct ieee80211_vif *vif, +				    struct ieee80211_bss_conf *link_conf);  int iwl_mvm_mac_ctxt_send_beacon_cmd(struct iwl_mvm *mvm,  				     struct sk_buff *beacon,  				     void *data, int len);  u8 iwl_mvm_mac_ctxt_get_beacon_rate(struct iwl_mvm *mvm,  				    struct ieee80211_tx_info *info,  				    struct ieee80211_vif *vif); +u8 iwl_mvm_mac_ctxt_get_lowest_rate(struct iwl_mvm *mvm, +				    struct ieee80211_tx_info *info, +				    struct ieee80211_vif *vif);  u16 iwl_mvm_mac_ctxt_get_beacon_flags(const struct iwl_fw *fw,  				      u8 rate_idx);  void iwl_mvm_mac_ctxt_set_tim(struct iwl_mvm *mvm, @@ -1679,6 +1827,93 @@ void iwl_mvm_channel_switch_error_notif(struct iwl_mvm *mvm,  int iwl_mvm_binding_add_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  int iwl_mvm_binding_remove_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif); +/* Links */ +int iwl_mvm_add_link(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +		     struct ieee80211_bss_conf *link_conf); +int iwl_mvm_link_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			 struct ieee80211_bss_conf *link_conf, +			 u32 changes, bool active); +int iwl_mvm_remove_link(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			struct ieee80211_bss_conf *link_conf); +int iwl_mvm_disable_link(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			 struct ieee80211_bss_conf *link_conf); + +/* AP and IBSS */ +bool iwl_mvm_start_ap_ibss_common(struct ieee80211_hw *hw, +				  struct ieee80211_vif *vif, int *ret); +void iwl_mvm_stop_ap_ibss_common(struct iwl_mvm *mvm, +				 struct ieee80211_vif *vif); + +/* BSS Info */ +/** + * struct iwl_mvm_bss_info_changed_ops - callbacks for the bss_info_changed() + * + * Since the only difference between both MLD and + * non-MLD versions of bss_info_changed() is these function calls, + * each version will send its specific function calls to + * %iwl_mvm_bss_info_changed_common(). + * + * @bss_info_changed_sta: pointer to the function that handles changes + *	in bss_info in sta mode + * @bss_info_changed_ap_ibss: pointer to the function that handles changes + *	in bss_info in ap and ibss modes + */ +struct iwl_mvm_bss_info_changed_ops { +	void (*bss_info_changed_sta)(struct iwl_mvm *mvm, +				     struct ieee80211_vif *vif, +				     struct ieee80211_bss_conf *bss_conf, +				     u64 changes); +	void (*bss_info_changed_ap_ibss)(struct iwl_mvm *mvm, +					 struct ieee80211_vif *vif, +					 struct ieee80211_bss_conf *bss_conf, +					 u64 changes); +}; + +void +iwl_mvm_bss_info_changed_common(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif, +				struct ieee80211_bss_conf *bss_conf, +				struct iwl_mvm_bss_info_changed_ops *callbacks, +				u64 changes); +void +iwl_mvm_bss_info_changed_station_common(struct iwl_mvm *mvm, +					struct ieee80211_vif *vif, +					struct ieee80211_bss_conf *link_conf, +					u64 changes); +void iwl_mvm_bss_info_changed_station_assoc(struct iwl_mvm *mvm, +					    struct ieee80211_vif *vif, +					    u64 changes); + +/* ROC */ +/** + * struct iwl_mvm_roc_ops - callbacks for the remain_on_channel() + * + * Since the only difference between both MLD and + * non-MLD versions of remain_on_channel() is these function calls, + * each version will send its specific function calls to + * %iwl_mvm_roc_common(). + * + * @add_aux_sta_for_hs20: pointer to the function that adds an aux sta + *	for Hot Spot 2.0 + * @switch_phy_ctxt: pointer to the function that switches a vif from one + *	phy_ctx to another + */ +struct iwl_mvm_roc_ops { +	int (*add_aux_sta_for_hs20)(struct iwl_mvm *mvm, u32 lmac_id); +	int (*switch_phy_ctxt)(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			       struct iwl_mvm_phy_ctxt *new_phy_ctxt); +}; + +int iwl_mvm_roc_common(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +		       struct ieee80211_channel *channel, int duration, +		       enum ieee80211_roc_type type, +		       struct iwl_mvm_roc_ops *ops); +int iwl_mvm_cancel_roc(struct ieee80211_hw *hw, +		       struct ieee80211_vif *vif); +/*Session Protection */ +void iwl_mvm_protect_assoc(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			   u32 duration_override); +  /* Quota management */  static inline size_t iwl_mvm_quota_cmd_size(struct iwl_mvm *mvm)  { @@ -1858,10 +2093,17 @@ int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm,  /* SMPS */  void iwl_mvm_update_smps(struct iwl_mvm *mvm, struct ieee80211_vif *vif,  				enum iwl_mvm_smps_type_request req_type, -				enum ieee80211_smps_mode smps_request); +				enum ieee80211_smps_mode smps_request, +				unsigned int link_id); +void +iwl_mvm_update_smps_on_active_links(struct iwl_mvm *mvm, +				    struct ieee80211_vif *vif, +				    enum iwl_mvm_smps_type_request req_type, +				    enum ieee80211_smps_mode smps_request);  bool iwl_mvm_rx_diversity_allowed(struct iwl_mvm *mvm,  				  struct iwl_mvm_phy_ctxt *ctxt); -void iwl_mvm_apply_fw_smps_request(struct ieee80211_vif *vif); +void iwl_mvm_update_link_smps(struct ieee80211_vif *vif, +			      struct ieee80211_bss_conf *link_conf);  /* Low latency */  int iwl_mvm_update_low_latency(struct iwl_mvm *mvm, struct ieee80211_vif *vif, @@ -2070,7 +2312,11 @@ void iwl_mvm_event_frame_timeout_callback(struct iwl_mvm *mvm,  					  struct ieee80211_vif *vif,  					  const struct ieee80211_sta *sta,  					  u16 tid); +void iwl_mvm_mei_scan_filter_init(struct iwl_mei_scan_filter *mei_scan_filter); +void iwl_mvm_ptp_init(struct iwl_mvm *mvm); +void iwl_mvm_ptp_remove(struct iwl_mvm *mvm); +u64 iwl_mvm_ptp_get_adj_time(struct iwl_mvm *mvm, u64 base_time);  int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, int prof_b);  int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm);  int iwl_mvm_ppag_send_cmd(struct iwl_mvm *mvm); @@ -2092,8 +2338,16 @@ int iwl_mvm_sec_key_del(struct iwl_mvm *mvm,  			struct ieee80211_sta *sta,  			struct ieee80211_key_conf *keyconf);  void iwl_mvm_sec_key_remove_ap(struct iwl_mvm *mvm, -			       struct ieee80211_vif *vif); +			       struct ieee80211_vif *vif, +			       struct iwl_mvm_vif_link_info *link, +			       unsigned int link_id); +int iwl_mvm_mld_update_sta_keys(struct iwl_mvm *mvm, +				struct ieee80211_vif *vif, +				struct ieee80211_sta *sta, +				u32 old_sta_mask, +				u32 new_sta_mask); +bool iwl_rfi_supported(struct iwl_mvm *mvm);  int iwl_rfi_send_config_cmd(struct iwl_mvm *mvm,  			    struct iwl_rfi_lut_entry *rfi_table);  struct iwl_rfi_freq_table_resp_cmd *iwl_rfi_get_freq_table(struct iwl_mvm *mvm); @@ -2115,6 +2369,45 @@ static inline u8 iwl_mvm_phy_band_from_nl80211(enum nl80211_band band)  	}  } +/* Channel Switch */ +void iwl_mvm_channel_switch_disconnect_wk(struct work_struct *wk); +int iwl_mvm_post_channel_switch(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif); + +/* Channel Context */ +/** + * struct iwl_mvm_switch_vif_chanctx_ops - callbacks for switch_vif_chanctx() + * + * Since the only difference between both MLD and + * non-MLD versions of switch_vif_chanctx() is these function calls, + * each version will send its specific function calls to + * %iwl_mvm_switch_vif_chanctx_common(). + * + * @__assign_vif_chanctx: pointer to the function that assigns a chanctx to + *	a given vif + * @__unassign_vif_chanctx: pointer to the function that unassigns a chanctx to + *	a given vif + */ +struct iwl_mvm_switch_vif_chanctx_ops { +	int (*__assign_vif_chanctx)(struct iwl_mvm *mvm, +				    struct ieee80211_vif *vif, +				    struct ieee80211_bss_conf *link_conf, +				    struct ieee80211_chanctx_conf *ctx, +				    bool switching_chanctx); +	void (*__unassign_vif_chanctx)(struct iwl_mvm *mvm, +				       struct ieee80211_vif *vif, +				       struct ieee80211_bss_conf *link_conf, +				       struct ieee80211_chanctx_conf *ctx, +				       bool switching_chanctx); +}; + +int +iwl_mvm_switch_vif_chanctx_common(struct ieee80211_hw *hw, +				  struct ieee80211_vif_chanctx_switch *vifs, +				  int n_vifs, +				  enum ieee80211_chanctx_switch_mode mode, +				  struct iwl_mvm_switch_vif_chanctx_ops *ops); +  /* Channel info utils */  static inline bool iwl_mvm_has_ultra_hb_channel(struct iwl_mvm *mvm)  { @@ -2232,8 +2525,147 @@ static inline void iwl_mvm_mei_set_sw_rfkill_state(struct iwl_mvm *mvm)  					 sw_rfkill);  } +static inline bool iwl_mvm_mei_filter_scan(struct iwl_mvm *mvm, +					   struct sk_buff *skb) +{ +	struct ieee80211_mgmt *mgmt = (void *)skb->data; + +	if (mvm->mei_scan_filter.is_mei_limited_scan && +	    (ieee80211_is_probe_resp(mgmt->frame_control) || +	     ieee80211_is_beacon(mgmt->frame_control))) { +		skb_queue_tail(&mvm->mei_scan_filter.scan_res, skb); +		schedule_work(&mvm->mei_scan_filter.scan_work); +		return true; +	} + +	return false; +} +  void iwl_mvm_send_roaming_forbidden_event(struct iwl_mvm *mvm,  					  struct ieee80211_vif *vif,  					  bool forbidden); +bool iwl_mvm_is_vendor_in_approved_list(void); + +/* Callbacks for ieee80211_ops */ +void iwl_mvm_mac_tx(struct ieee80211_hw *hw, +		    struct ieee80211_tx_control *control, struct sk_buff *skb); +void iwl_mvm_mac_wake_tx_queue(struct ieee80211_hw *hw, +			       struct ieee80211_txq *txq); + +int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw, +			     struct ieee80211_vif *vif, +			     struct ieee80211_ampdu_params *params); +int iwl_mvm_op_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant); +int iwl_mvm_mac_start(struct ieee80211_hw *hw); +void iwl_mvm_mac_reconfig_complete(struct ieee80211_hw *hw, +				   enum ieee80211_reconfig_type reconfig_type); +void iwl_mvm_mac_stop(struct ieee80211_hw *hw); +static inline int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed) +{ +	return 0; +} + +u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw, +			      struct netdev_hw_addr_list *mc_list); +void iwl_mvm_configure_filter(struct ieee80211_hw *hw, +			      unsigned int changed_flags, +			      unsigned int *total_flags, u64 multicast); +int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +			struct ieee80211_scan_request *hw_req); +void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif); +void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif, +				struct ieee80211_sta *sta); +void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +			    enum sta_notify_cmd cmd, +			    struct ieee80211_sta *sta); +void +iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw, +				  struct ieee80211_sta *sta, u16 tids, +				  int num_frames, +				  enum ieee80211_frame_release_type reason, +				  bool more_data); +void +iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw, +				    struct ieee80211_sta *sta, u16 tids, +				    int num_frames, +				    enum ieee80211_frame_release_type reason, +				    bool more_data); +int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value); +void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +			   struct ieee80211_sta *sta, u32 changed); +void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif, +				struct ieee80211_prep_tx_info *info); +void iwl_mvm_mac_mgd_complete_tx(struct ieee80211_hw *hw, +				 struct ieee80211_vif *vif, +				 struct ieee80211_prep_tx_info *info); +void iwl_mvm_mac_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +		       u32 queues, bool drop); +int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw, +				 struct ieee80211_vif *vif, +				 struct cfg80211_sched_scan_request *req, +				 struct ieee80211_scan_ies *ies); +int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif); +int iwl_mvm_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, +			struct ieee80211_vif *vif, struct ieee80211_sta *sta, +			struct ieee80211_key_conf *key); +void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw, +				 struct ieee80211_vif *vif, +				 struct ieee80211_key_conf *keyconf, +				 struct ieee80211_sta *sta, +				 u32 iv32, u16 *phase1key); +int iwl_mvm_add_chanctx(struct ieee80211_hw *hw, +			struct ieee80211_chanctx_conf *ctx); +void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw, +			    struct ieee80211_chanctx_conf *ctx); +void iwl_mvm_change_chanctx(struct ieee80211_hw *hw, +			    struct ieee80211_chanctx_conf *ctx, u32 changed); +int iwl_mvm_tx_last_beacon(struct ieee80211_hw *hw); +int iwl_mvm_set_tim(struct ieee80211_hw *hw, struct ieee80211_sta *sta, +		    bool set); +void iwl_mvm_channel_switch(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +			    struct ieee80211_channel_switch *chsw); +int iwl_mvm_pre_channel_switch(struct ieee80211_hw *hw, +			       struct ieee80211_vif *vif, +			       struct ieee80211_channel_switch *chsw); +void iwl_mvm_abort_channel_switch(struct ieee80211_hw *hw, +				  struct ieee80211_vif *vif); +void iwl_mvm_channel_switch_rx_beacon(struct ieee80211_hw *hw, +				      struct ieee80211_vif *vif, +				      struct ieee80211_channel_switch *chsw); +void iwl_mvm_mac_event_callback(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif, +				const struct ieee80211_event *event); +void iwl_mvm_sync_rx_queues(struct ieee80211_hw *hw); +int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw, +			     struct ieee80211_vif *vif, +			     void *data, int len); +int iwl_mvm_mac_get_survey(struct ieee80211_hw *hw, int idx, +			   struct survey_info *survey); +void iwl_mvm_mac_sta_statistics(struct ieee80211_hw *hw, +				struct ieee80211_vif *vif, +				struct ieee80211_sta *sta, +				struct station_info *sinfo); +int +iwl_mvm_mac_get_ftm_responder_stats(struct ieee80211_hw *hw, +				    struct ieee80211_vif *vif, +				    struct cfg80211_ftm_responder_stats *stats); +int iwl_mvm_start_pmsr(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +		       struct cfg80211_pmsr_request *request); +void iwl_mvm_abort_pmsr(struct ieee80211_hw *hw, struct ieee80211_vif *vif, +			struct cfg80211_pmsr_request *request); + +bool iwl_mvm_have_links_same_channel(struct iwl_mvm_vif *vif1, +				     struct iwl_mvm_vif *vif2); +bool iwl_mvm_vif_is_active(struct iwl_mvm_vif *mvmvif); +int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif, +			 s16 tx_power); +int iwl_mvm_set_hw_timestamp(struct ieee80211_hw *hw, +			     struct ieee80211_vif *vif, +			     struct cfg80211_set_hw_timestamp *hwts); +int iwl_mvm_update_mu_groups(struct iwl_mvm *mvm, struct ieee80211_vif *vif);  #endif /* __IWL_MVM_H__ */  |