|
@@ -4480,6 +4480,14 @@ static void hdd_rtpm_tput_policy_apply(struct hdd_context *hdd_ctx,
|
|
|
QDF_BUG(0);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+static int hdd_rtpm_tput_policy_get_vote(struct hdd_context *hdd_ctx)
|
|
|
+{
|
|
|
+ struct hdd_rtpm_tput_policy_context *ctx;
|
|
|
+
|
|
|
+ ctx = &hdd_ctx->rtpm_tput_policy_ctx;
|
|
|
+ return qdf_atomic_read(&ctx->high_tput_vote);
|
|
|
+}
|
|
|
#else
|
|
|
static inline
|
|
|
void hdd_rtpm_tput_policy_init(struct hdd_context *hdd_ctx)
|
|
@@ -4496,6 +4504,11 @@ void hdd_rtpm_tput_policy_apply(struct hdd_context *hdd_ctx,
|
|
|
enum tput_level tput_level)
|
|
|
{
|
|
|
}
|
|
|
+
|
|
|
+static inline int hdd_rtpm_tput_policy_get_vote(struct hdd_context *hdd_ctx)
|
|
|
+{
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
int hdd_wlan_start_modules(struct hdd_context *hdd_ctx, bool reinit)
|
|
@@ -10534,7 +10547,7 @@ static void hdd_pld_request_bus_bandwidth(struct hdd_context *hdd_ctx,
|
|
|
}
|
|
|
|
|
|
if (vote_level_change || tx_level_change || rx_level_change) {
|
|
|
- hdd_debug("tx:%llu[%llu(off)+%llu(no-off)] rx:%llu[%llu(off)+%llu(no-off)] next_level(vote %u rx %u tx %u) pm_qos(rx:%u,%*pb tx:%u,%*pb)",
|
|
|
+ hdd_debug("tx:%llu[%llu(off)+%llu(no-off)] rx:%llu[%llu(off)+%llu(no-off)] next_level(vote %u rx %u tx %u rtpm %d) pm_qos(rx:%u,%*pb tx:%u,%*pb)",
|
|
|
tx_packets,
|
|
|
hdd_ctx->prev_tx_offload_pkts,
|
|
|
hdd_ctx->prev_no_tx_offload_pkts,
|
|
@@ -10542,6 +10555,7 @@ static void hdd_pld_request_bus_bandwidth(struct hdd_context *hdd_ctx,
|
|
|
hdd_ctx->prev_rx_offload_pkts,
|
|
|
hdd_ctx->prev_no_rx_offload_pkts,
|
|
|
next_vote_level, next_rx_level, next_tx_level,
|
|
|
+ hdd_rtpm_tput_policy_get_vote(hdd_ctx),
|
|
|
is_rx_pm_qos_high,
|
|
|
cpumask_pr_args(&pm_qos_cpu_mask_rx),
|
|
|
is_tx_pm_qos_high,
|
|
@@ -16323,12 +16337,16 @@ exit:
|
|
|
* stopped. We should remove the bus bw voting, if no adapter is
|
|
|
* connected
|
|
|
*/
|
|
|
+ if (!is_any_adapter_conn) {
|
|
|
+ uint64_t interval_us =
|
|
|
+ hdd_ctx->config->bus_bw_compute_interval * 1000;
|
|
|
+ qdf_atomic_set(&hdd_ctx->num_latency_critical_clients, 0);
|
|
|
+ hdd_pld_request_bus_bandwidth(hdd_ctx, 0, 0, interval_us);
|
|
|
+ }
|
|
|
param.policy = BBM_TPUT_POLICY;
|
|
|
param.policy_info.tput_level = TPUT_LEVEL_NONE;
|
|
|
hdd_bbm_apply_independent_policy(hdd_ctx, ¶m);
|
|
|
|
|
|
- if (!is_any_adapter_conn)
|
|
|
- qdf_atomic_set(&hdd_ctx->num_latency_critical_clients, 0);
|
|
|
}
|
|
|
|
|
|
void hdd_bus_bw_compute_timer_stop(struct hdd_context *hdd_ctx)
|