mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 16:36:53 +07:00
iwlwifi: mvm: add function to update only ps
Add a new iwl_mvm_power_update_ps() function that allows only ps to be updated according to changes in the vifs. This allows us to disable ps only without affecting the pm values of the vifs (and to avoid sending unnecessary MAC_PM_POWER_TABLE commands to the firmware). Signed-off-by: Luciano Coelho <luciano.coelho@intel.com> Reviewed-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
128aa948d0
commit
ef9203d23f
@ -983,6 +983,7 @@ int rs_pretty_print_rate(char *buf, const u32 rate);
|
||||
/* power management */
|
||||
int iwl_mvm_power_update_device(struct iwl_mvm *mvm);
|
||||
int iwl_mvm_power_update_mac(struct iwl_mvm *mvm);
|
||||
int iwl_mvm_power_update_ps(struct iwl_mvm *mvm);
|
||||
int iwl_mvm_power_mac_dbgfs_read(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
|
||||
char *buf, int bufsz);
|
||||
|
||||
|
@ -857,13 +857,50 @@ static int iwl_mvm_power_set_ps(struct iwl_mvm *mvm,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int iwl_mvm_power_update_mac(struct iwl_mvm *mvm)
|
||||
static int iwl_mvm_power_set_ba(struct iwl_mvm *mvm,
|
||||
struct iwl_power_vifs *vifs)
|
||||
{
|
||||
struct iwl_mvm_vif *mvmvif;
|
||||
bool ba_enable;
|
||||
|
||||
if (!vifs->bf_vif)
|
||||
return 0;
|
||||
|
||||
mvmvif = iwl_mvm_vif_from_mac80211(vifs->bf_vif);
|
||||
|
||||
ba_enable = !(!mvmvif->pm_enabled || mvm->ps_disabled ||
|
||||
!vifs->bf_vif->bss_conf.ps ||
|
||||
iwl_mvm_vif_low_latency(mvmvif));
|
||||
|
||||
return iwl_mvm_update_beacon_abort(mvm, vifs->bf_vif, ba_enable);
|
||||
}
|
||||
|
||||
int iwl_mvm_power_update_ps(struct iwl_mvm *mvm)
|
||||
{
|
||||
struct iwl_power_vifs vifs = {
|
||||
.mvm = mvm,
|
||||
};
|
||||
int ret;
|
||||
|
||||
lockdep_assert_held(&mvm->mutex);
|
||||
|
||||
/* get vifs info */
|
||||
ieee80211_iterate_active_interfaces_atomic(mvm->hw,
|
||||
IEEE80211_IFACE_ITER_NORMAL,
|
||||
iwl_mvm_power_get_vifs_iterator, &vifs);
|
||||
|
||||
ret = iwl_mvm_power_set_ps(mvm, &vifs);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return iwl_mvm_power_set_ba(mvm, &vifs);
|
||||
}
|
||||
|
||||
int iwl_mvm_power_update_mac(struct iwl_mvm *mvm)
|
||||
{
|
||||
struct iwl_power_vifs vifs = {
|
||||
.mvm = mvm,
|
||||
};
|
||||
bool ba_enable;
|
||||
int ret;
|
||||
|
||||
lockdep_assert_held(&mvm->mutex);
|
||||
@ -891,16 +928,7 @@ int iwl_mvm_power_update_mac(struct iwl_mvm *mvm)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (!vifs.bf_vif)
|
||||
return 0;
|
||||
|
||||
mvmvif = iwl_mvm_vif_from_mac80211(vifs.bf_vif);
|
||||
|
||||
ba_enable = !(!mvmvif->pm_enabled || mvm->ps_disabled ||
|
||||
!vifs.bf_vif->bss_conf.ps ||
|
||||
iwl_mvm_vif_low_latency(mvmvif));
|
||||
|
||||
return iwl_mvm_update_beacon_abort(mvm, vifs.bf_vif, ba_enable);
|
||||
return iwl_mvm_power_set_ba(mvm, &vifs);
|
||||
}
|
||||
|
||||
int iwl_mvm_update_d0i3_power_mode(struct iwl_mvm *mvm,
|
||||
|
Loading…
Reference in New Issue
Block a user