|
@@ -44,8 +44,12 @@
|
|
|
#include "cfg_api.h"
|
|
|
#include "ol_txrx_ctrl_api.h"
|
|
|
#include <cdp_txrx_tx_throttle.h>
|
|
|
+#if defined(CONFIG_HL_SUPPORT)
|
|
|
+#include "wlan_tgt_def_config_hl.h"
|
|
|
+#else
|
|
|
#include "wlan_tgt_def_config.h"
|
|
|
-
|
|
|
+#endif
|
|
|
+#include "ol_txrx.h"
|
|
|
#include "qdf_nbuf.h"
|
|
|
#include "qdf_types.h"
|
|
|
#include "qdf_mem.h"
|
|
@@ -72,6 +76,8 @@
|
|
|
#include "cdp_txrx_misc.h"
|
|
|
#include <cdp_txrx_peer_ops.h>
|
|
|
#include <cdp_txrx_cfg.h>
|
|
|
+#include "cdp_txrx_stats.h"
|
|
|
+
|
|
|
|
|
|
typedef struct {
|
|
|
int32_t rate;
|
|
@@ -1565,7 +1571,9 @@ QDF_STATUS wma_tx_detach(tp_wma_handle wma_handle)
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
-#if defined(QCA_LL_LEGACY_TX_FLOW_CONTROL) || defined(QCA_LL_TX_FLOW_CONTROL_V2)
|
|
|
+#if defined(QCA_LL_LEGACY_TX_FLOW_CONTROL) || \
|
|
|
+ defined(QCA_LL_TX_FLOW_CONTROL_V2) || defined(CONFIG_HL_SUPPORT)
|
|
|
+
|
|
|
/**
|
|
|
* wma_mcc_vdev_tx_pause_evt_handler() - pause event handler
|
|
|
* @handle: wma handle
|
|
@@ -1664,6 +1672,118 @@ int wma_mcc_vdev_tx_pause_evt_handler(void *handle, uint8_t *event,
|
|
|
|
|
|
#endif /* QCA_LL_LEGACY_TX_FLOW_CONTROL */
|
|
|
|
|
|
+#if defined(CONFIG_HL_SUPPORT) && defined(QCA_BAD_PEER_TX_FLOW_CL)
|
|
|
+
|
|
|
+/**
|
|
|
+ * wma_set_peer_rate_report_condition -
|
|
|
+ * this function set peer rate report
|
|
|
+ * condition info to firmware.
|
|
|
+ * @handle: Handle of WMA
|
|
|
+ * @config: Bad peer configuration from SIR module
|
|
|
+ *
|
|
|
+ * It is a wrapper function to sent WMI_PEER_SET_RATE_REPORT_CONDITION_CMDID
|
|
|
+ * to the firmare\target.If the command sent to firmware failed, free the
|
|
|
+ * buffer that allocated.
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS based on values sent to firmware
|
|
|
+ */
|
|
|
+static
|
|
|
+QDF_STATUS wma_set_peer_rate_report_condition(WMA_HANDLE handle,
|
|
|
+ struct t_bad_peer_txtcl_config *config)
|
|
|
+{
|
|
|
+ tp_wma_handle wma_handle = (tp_wma_handle)handle;
|
|
|
+ struct wmi_peer_rate_report_params rate_report_params = {0};
|
|
|
+ u_int32_t i, j;
|
|
|
+
|
|
|
+ rate_report_params.rate_report_enable = config->enable;
|
|
|
+ rate_report_params.backoff_time = config->tgt_backoff;
|
|
|
+ rate_report_params.timer_period = config->tgt_report_prd;
|
|
|
+ for (i = 0; i < WMI_PEER_RATE_REPORT_COND_MAX_NUM; i++) {
|
|
|
+ rate_report_params.report_per_phy[i].cond_flags =
|
|
|
+ config->threshold[i].cond;
|
|
|
+ rate_report_params.report_per_phy[i].delta.delta_min =
|
|
|
+ config->threshold[i].delta;
|
|
|
+ rate_report_params.report_per_phy[i].delta.percent =
|
|
|
+ config->threshold[i].percentage;
|
|
|
+ for (j = 0; j < WMI_MAX_NUM_OF_RATE_THRESH; j++) {
|
|
|
+ rate_report_params.report_per_phy[i].
|
|
|
+ report_rate_threshold[j] =
|
|
|
+ config->threshold[i].thresh[j];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return wmi_unified_peer_rate_report_cmd(wma_handle->wmi_handle,
|
|
|
+ &rate_report_params);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * wma_process_init_bad_peer_tx_ctl_info -
|
|
|
+ * this function to initialize peer rate report config info.
|
|
|
+ * @handle: Handle of WMA
|
|
|
+ * @config: Bad peer configuration from SIR module
|
|
|
+ *
|
|
|
+ * This function initializes the bad peer tx control data structure in WMA,
|
|
|
+ * sends down the initial configuration to the firmware and configures
|
|
|
+ * the peer status update seeting in the tx_rx module.
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS based on procedure status
|
|
|
+ */
|
|
|
+
|
|
|
+QDF_STATUS wma_process_init_bad_peer_tx_ctl_info(tp_wma_handle wma,
|
|
|
+ struct t_bad_peer_txtcl_config *config)
|
|
|
+{
|
|
|
+ /* Parameter sanity check */
|
|
|
+ ol_txrx_pdev_handle curr_pdev;
|
|
|
+
|
|
|
+ if (NULL == wma || NULL == config) {
|
|
|
+ WMA_LOGE("%s Invalid input\n", __func__);
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ curr_pdev = cds_get_context(QDF_MODULE_ID_TXRX);
|
|
|
+ if (NULL == curr_pdev) {
|
|
|
+ WMA_LOGE("%s: Failed to get pdev\n", __func__);
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ WMA_LOGE("%s enable %d period %d txq limit %d\n", __func__,
|
|
|
+ config->enable,
|
|
|
+ config->period,
|
|
|
+ config->txq_limit);
|
|
|
+
|
|
|
+ /* Only need to initialize the setting
|
|
|
+ when the feature is enabled */
|
|
|
+ if (config->enable) {
|
|
|
+ int i = 0;
|
|
|
+
|
|
|
+ ol_txrx_bad_peer_txctl_set_setting(curr_pdev,
|
|
|
+ config->enable,
|
|
|
+ config->period,
|
|
|
+ config->txq_limit);
|
|
|
+
|
|
|
+ for (i = 0; i < WLAN_WMA_IEEE80211_MAX_LEVEL; i++) {
|
|
|
+ u_int32_t threshold, limit;
|
|
|
+ threshold =
|
|
|
+ config->threshold[i].thresh[0];
|
|
|
+ limit = config->threshold[i].txlimit;
|
|
|
+ ol_txrx_bad_peer_txctl_update_threshold(curr_pdev, i,
|
|
|
+ threshold,
|
|
|
+ limit);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return wma_set_peer_rate_report_condition(wma, config);
|
|
|
+}
|
|
|
+#else
|
|
|
+
|
|
|
+QDF_STATUS wma_process_init_bad_peer_tx_ctl_info(tp_wma_handle wma,
|
|
|
+ struct t_bad_peer_txtcl_config *config)
|
|
|
+{
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+}
|
|
|
+#endif /* defined(CONFIG_HL_SUPPORT) && defined(QCA_BAD_PEER_TX_FLOW_CL) */
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* wma_process_init_thermal_info() - initialize thermal info
|
|
|
* @wma: Pointer to WMA handle
|
|
@@ -2398,6 +2518,8 @@ QDF_STATUS wma_tx_packet(void *wma_context, void *tx_frame, uint16_t frmLen,
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
+ ol_txrx_hl_tdls_flag_reset(txrx_vdev, false);
|
|
|
+
|
|
|
if (frmType >= TXRX_FRM_MAX) {
|
|
|
WMA_LOGE("Invalid Frame Type Fail to send Frame");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -2586,8 +2708,12 @@ QDF_STATUS wma_tx_packet(void *wma_context, void *tx_frame, uint16_t frmLen,
|
|
|
wma_handle->last_umac_data_nbuf = skb;
|
|
|
|
|
|
/* Send the Data frame to TxRx in Non Standard Path */
|
|
|
+ ol_txrx_hl_tdls_flag_reset(txrx_vdev, tdlsFlag);
|
|
|
+
|
|
|
ret = ol_tx_non_std(txrx_vdev, OL_TX_SPEC_NO_FREE, skb);
|
|
|
|
|
|
+ ol_txrx_hl_tdls_flag_reset(txrx_vdev, false);
|
|
|
+
|
|
|
if (ret) {
|
|
|
WMA_LOGE("TxRx Rejected. Fail to do Tx");
|
|
|
/* Call Download Cb so that umac can free the buffer */
|
|
@@ -2762,6 +2888,9 @@ QDF_STATUS wma_tx_packet(void *wma_context, void *tx_frame, uint16_t frmLen,
|
|
|
* we didn't get Download Complete for almost
|
|
|
* WMA_TX_FRAME_COMPLETE_TIMEOUT (1 sec)
|
|
|
*/
|
|
|
+
|
|
|
+ /* display scheduler stats */
|
|
|
+ ol_txrx_display_stats(WLAN_SCHEDULER_STATS);
|
|
|
}
|
|
|
} else {
|
|
|
/*
|