|
@@ -4080,6 +4080,7 @@ static int hdd_update_country_code(struct hdd_context *hdd_ctx)
|
|
|
return hdd_reg_set_country(hdd_ctx, country_code);
|
|
|
}
|
|
|
|
|
|
+#ifdef WLAN_FEATURE_DP_BUS_BANDWIDTH
|
|
|
/**
|
|
|
* wlan_hdd_init_tx_rx_histogram() - init tx/rx histogram stats
|
|
|
* @hdd_ctx: hdd context
|
|
@@ -4110,6 +4111,7 @@ static void wlan_hdd_deinit_tx_rx_histogram(struct hdd_context *hdd_ctx)
|
|
|
qdf_mem_free(hdd_ctx->hdd_txrx_hist);
|
|
|
hdd_ctx->hdd_txrx_hist = NULL;
|
|
|
}
|
|
|
+#endif /*WLAN_FEATURE_DP_BUS_BANDWIDTH*/
|
|
|
|
|
|
#ifdef WLAN_NS_OFFLOAD
|
|
|
/**
|
|
@@ -4757,8 +4759,6 @@ int hdd_wlan_start_modules(struct hdd_context *hdd_ctx, bool reinit)
|
|
|
|
|
|
hdd_skip_acs_scan_timer_init(hdd_ctx);
|
|
|
|
|
|
- wlan_hdd_init_tx_rx_histogram(hdd_ctx);
|
|
|
-
|
|
|
hdd_set_hif_init_phase(hif_ctx, false);
|
|
|
hdd_hif_set_enable_detection(hif_ctx, true);
|
|
|
|
|
@@ -11186,12 +11186,17 @@ int hdd_bus_bandwidth_init(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
QDF_STATUS status;
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam())
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+
|
|
|
hdd_enter();
|
|
|
|
|
|
qdf_spinlock_create(&hdd_ctx->bus_bw_lock);
|
|
|
|
|
|
hdd_pm_qos_add_request(hdd_ctx);
|
|
|
|
|
|
+ wlan_hdd_init_tx_rx_histogram(hdd_ctx);
|
|
|
+
|
|
|
status = qdf_periodic_work_create(&hdd_ctx->bus_bw_work,
|
|
|
hdd_bus_bw_work_handler,
|
|
|
hdd_ctx);
|
|
@@ -11203,6 +11208,9 @@ int hdd_bus_bandwidth_init(struct hdd_context *hdd_ctx)
|
|
|
|
|
|
void hdd_bus_bandwidth_deinit(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam())
|
|
|
+ return;
|
|
|
+
|
|
|
hdd_enter();
|
|
|
|
|
|
/* it is expecting the timer has been stopped or not started
|
|
@@ -11211,6 +11219,7 @@ void hdd_bus_bandwidth_deinit(struct hdd_context *hdd_ctx)
|
|
|
QDF_BUG(!qdf_periodic_work_stop_sync(&hdd_ctx->bus_bw_work));
|
|
|
|
|
|
qdf_periodic_work_destroy(&hdd_ctx->bus_bw_work);
|
|
|
+ wlan_hdd_deinit_tx_rx_histogram(hdd_ctx);
|
|
|
qdf_spinlock_destroy(&hdd_ctx->bus_bw_lock);
|
|
|
hdd_pm_qos_remove_request(hdd_ctx);
|
|
|
|
|
@@ -11484,23 +11493,25 @@ void wlan_hdd_display_tx_rx_histogram(struct hdd_context *hdd_ctx)
|
|
|
hdd_nofl_debug("Total entries: %d Current index: %d",
|
|
|
NUM_TX_RX_HISTOGRAM, hdd_ctx->hdd_txrx_hist_idx);
|
|
|
|
|
|
- hdd_nofl_debug("[index][timestamp]: interval_rx, interval_tx, bus_bw_level, RX TP Level, TX TP Level, Rx:Tx pm_qos");
|
|
|
+ if (hdd_ctx->hdd_txrx_hist) {
|
|
|
+ hdd_nofl_debug("[index][timestamp]: interval_rx, interval_tx, bus_bw_level, RX TP Level, TX TP Level, Rx:Tx pm_qos");
|
|
|
|
|
|
- for (i = 0; i < NUM_TX_RX_HISTOGRAM; i++) {
|
|
|
- struct hdd_tx_rx_histogram *hist;
|
|
|
+ for (i = 0; i < NUM_TX_RX_HISTOGRAM; i++) {
|
|
|
+ struct hdd_tx_rx_histogram *hist;
|
|
|
|
|
|
- /* using hdd_log to avoid printing function name */
|
|
|
- if (hdd_ctx->hdd_txrx_hist[i].qtime <= 0)
|
|
|
- continue;
|
|
|
- hist = &hdd_ctx->hdd_txrx_hist[i];
|
|
|
- hdd_nofl_debug("[%3d][%15llu]: %6llu, %6llu, %s, %s, %s, %s:%s",
|
|
|
- i, hist->qtime, hist->interval_rx,
|
|
|
- hist->interval_tx,
|
|
|
- pld_bus_width_type_to_str(hist->next_vote_level),
|
|
|
- hdd_tp_level_to_str(hist->next_rx_level),
|
|
|
- hdd_tp_level_to_str(hist->next_tx_level),
|
|
|
- hist->is_rx_pm_qos_high ? "HIGH" : "LOW",
|
|
|
- hist->is_tx_pm_qos_high ? "HIGH" : "LOW");
|
|
|
+ /* using hdd_log to avoid printing function name */
|
|
|
+ if (hdd_ctx->hdd_txrx_hist[i].qtime <= 0)
|
|
|
+ continue;
|
|
|
+ hist = &hdd_ctx->hdd_txrx_hist[i];
|
|
|
+ hdd_nofl_debug("[%3d][%15llu]: %6llu, %6llu, %s, %s, %s, %s:%s",
|
|
|
+ i, hist->qtime, hist->interval_rx,
|
|
|
+ hist->interval_tx,
|
|
|
+ pld_bus_width_type_to_str(hist->next_vote_level),
|
|
|
+ hdd_tp_level_to_str(hist->next_rx_level),
|
|
|
+ hdd_tp_level_to_str(hist->next_tx_level),
|
|
|
+ hist->is_rx_pm_qos_high ? "HIGH" : "LOW",
|
|
|
+ hist->is_tx_pm_qos_high ? "HIGH" : "LOW");
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -11513,8 +11524,10 @@ void wlan_hdd_display_tx_rx_histogram(struct hdd_context *hdd_ctx)
|
|
|
void wlan_hdd_clear_tx_rx_histogram(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
hdd_ctx->hdd_txrx_hist_idx = 0;
|
|
|
- qdf_mem_zero(hdd_ctx->hdd_txrx_hist,
|
|
|
- (sizeof(struct hdd_tx_rx_histogram) * NUM_TX_RX_HISTOGRAM));
|
|
|
+ if (hdd_ctx->hdd_txrx_hist)
|
|
|
+ qdf_mem_zero(hdd_ctx->hdd_txrx_hist,
|
|
|
+ (sizeof(struct hdd_tx_rx_histogram) *
|
|
|
+ NUM_TX_RX_HISTOGRAM));
|
|
|
}
|
|
|
|
|
|
/* length of the netif queue log needed per adapter */
|
|
@@ -15203,8 +15216,6 @@ int hdd_wlan_stop_modules(struct hdd_context *hdd_ctx, bool ftm_mode)
|
|
|
if (hdd_get_conparam() == QDF_GLOBAL_EPPING_MODE)
|
|
|
break;
|
|
|
|
|
|
- wlan_hdd_deinit_tx_rx_histogram(hdd_ctx);
|
|
|
-
|
|
|
hdd_skip_acs_scan_timer_deinit(hdd_ctx);
|
|
|
|
|
|
hdd_disable_power_management(hdd_ctx);
|
|
@@ -16689,6 +16700,9 @@ bool hdd_is_any_adapter_connected(struct hdd_context *hdd_ctx)
|
|
|
#ifdef WLAN_FEATURE_DP_BUS_BANDWIDTH
|
|
|
static void __hdd_bus_bw_compute_timer_start(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
+ if (hdd_get_conparam() == QDF_GLOBAL_FTM_MODE)
|
|
|
+ return;
|
|
|
+
|
|
|
qdf_periodic_work_start(&hdd_ctx->bus_bw_work,
|
|
|
hdd_ctx->config->bus_bw_compute_interval);
|
|
|
hdd_ctx->bw_vote_time = qdf_get_log_timestamp();
|
|
@@ -16718,6 +16732,9 @@ static void __hdd_bus_bw_compute_timer_stop(struct hdd_context *hdd_ctx)
|
|
|
struct bbm_params param = {0};
|
|
|
bool is_any_adapter_conn = hdd_is_any_adapter_connected(hdd_ctx);
|
|
|
|
|
|
+ if (hdd_get_conparam() == QDF_GLOBAL_FTM_MODE)
|
|
|
+ return;
|
|
|
+
|
|
|
if (!qdf_periodic_work_stop_sync(&hdd_ctx->bus_bw_work))
|
|
|
goto exit;
|
|
|
|
|
@@ -16774,6 +16791,9 @@ void hdd_bus_bw_compute_prev_txrx_stats(struct hdd_adapter *adapter)
|
|
|
{
|
|
|
struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
|
|
|
+ if (hdd_get_conparam() == QDF_GLOBAL_FTM_MODE)
|
|
|
+ return;
|
|
|
+
|
|
|
qdf_spin_lock_bh(&hdd_ctx->bus_bw_lock);
|
|
|
adapter->prev_tx_packets = adapter->stats.tx_packets;
|
|
|
adapter->prev_rx_packets = adapter->stats.rx_packets;
|
|
@@ -16789,6 +16809,9 @@ void hdd_bus_bw_compute_reset_prev_txrx_stats(struct hdd_adapter *adapter)
|
|
|
{
|
|
|
struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
|
|
|
+ if (hdd_get_conparam() == QDF_GLOBAL_FTM_MODE)
|
|
|
+ return;
|
|
|
+
|
|
|
qdf_spin_lock_bh(&hdd_ctx->bus_bw_lock);
|
|
|
adapter->prev_tx_packets = 0;
|
|
|
adapter->prev_rx_packets = 0;
|