|
@@ -3201,22 +3201,23 @@ int wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
|
|
|
return errno;
|
|
|
}
|
|
|
|
|
|
-#ifdef FEATURE_CLUB_LL_STATS_AND_GET_STATION
|
|
|
-static int wlan_hdd_get_tx_power(struct hdd_adapter *adapter, int *dbm)
|
|
|
+#define WLAN_HDD_TX_POWER_CACHE_EXPIRY_TIME 350
|
|
|
+
|
|
|
+static QDF_STATUS
|
|
|
+wlan_hdd_tx_power_request_needed(struct hdd_adapter *adapter)
|
|
|
{
|
|
|
- if (hdd_validate_adapter(adapter)) {
|
|
|
- hdd_err("Invalid adapter");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- /* TX_POWER is sent by STATION_STATS by firmware and
|
|
|
- * is copied into the adapter. So, return the cached value.
|
|
|
- */
|
|
|
- *dbm = adapter->tx_pwr;
|
|
|
- hdd_nofl_debug("cached tx_power: %d", *dbm);
|
|
|
+ uint32_t tx_pwr_cached_duration;
|
|
|
|
|
|
- return 0;
|
|
|
+ tx_pwr_cached_duration =
|
|
|
+ qdf_system_ticks_to_msecs(qdf_system_ticks()) -
|
|
|
+ adapter->tx_power.tx_pwr_cached_timestamp;
|
|
|
+
|
|
|
+ if (tx_pwr_cached_duration <= WLAN_HDD_TX_POWER_CACHE_EXPIRY_TIME)
|
|
|
+ return QDF_STATUS_E_ALREADY;
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
-#else
|
|
|
+
|
|
|
static int wlan_hdd_get_tx_power(struct hdd_adapter *adapter, int *dbm)
|
|
|
{
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
@@ -3233,7 +3234,6 @@ static int wlan_hdd_get_tx_power(struct hdd_adapter *adapter, int *dbm)
|
|
|
hdd_debug("power: %d", *dbm);
|
|
|
return ret;
|
|
|
}
|
|
|
-#endif
|
|
|
|
|
|
#ifdef FEATURE_ANI_LEVEL_REQUEST
|
|
|
static void hdd_get_ani_level_cb(struct wmi_host_ani_level_event *ani,
|
|
@@ -3358,7 +3358,8 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
struct hdd_context *hdd_ctx = (struct hdd_context *) wiphy_priv(wiphy);
|
|
|
struct net_device *ndev = wdev->netdev;
|
|
|
struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(ndev);
|
|
|
- int status;
|
|
|
+ QDF_STATUS status;
|
|
|
+ int ret;
|
|
|
static bool is_rate_limited;
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
|
|
@@ -3371,14 +3372,14 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
|
|
|
*dbm = 0;
|
|
|
|
|
|
- status = wlan_hdd_validate_context(hdd_ctx);
|
|
|
- if (status)
|
|
|
- return status;
|
|
|
+ ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
|
|
|
/* Validate adapter sessionId */
|
|
|
- status = wlan_hdd_validate_vdev_id(adapter->deflink->vdev_id);
|
|
|
- if (status)
|
|
|
- return status;
|
|
|
+ ret = wlan_hdd_validate_vdev_id(adapter->deflink->vdev_id);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
switch (adapter->device_mode) {
|
|
|
case QDF_STA_MODE:
|
|
|
case QDF_P2P_CLIENT_MODE:
|
|
@@ -3420,6 +3421,16 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+ status = wlan_hdd_tx_power_request_needed(adapter);
|
|
|
+ if (status == QDF_STATUS_E_ALREADY) {
|
|
|
+ /* TX_POWER is sent by STATION_STATS by firmware and
|
|
|
+ * is copied into the adapter. So, return cached value.
|
|
|
+ */
|
|
|
+ *dbm = adapter->tx_power.tx_pwr;
|
|
|
+ hdd_nofl_debug("cached tx_power: %d", *dbm);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
qdf_mtrace(QDF_MODULE_ID_HDD, QDF_MODULE_ID_HDD,
|
|
|
TRACE_CODE_HDD_CFG80211_GET_TXPOWER,
|
|
|
adapter->deflink->vdev_id, adapter->device_mode);
|