|
@@ -25,19 +25,459 @@
|
|
#include "wlan_dp_bus_bandwidth.h"
|
|
#include "wlan_dp_bus_bandwidth.h"
|
|
#include "wlan_dp_main.h"
|
|
#include "wlan_dp_main.h"
|
|
#include <wlan_objmgr_psoc_obj_i.h>
|
|
#include <wlan_objmgr_psoc_obj_i.h>
|
|
|
|
+#include "pld_common.h"
|
|
#include "cds_api.h"
|
|
#include "cds_api.h"
|
|
|
|
|
|
|
|
+#ifdef FEATURE_BUS_BANDWIDTH_MGR
|
|
|
|
+/**
|
|
|
|
+ * bus_bw_table_default - default table which provides bus bandwidth level
|
|
|
|
+ * corresonding to a given connection mode and throughput level.
|
|
|
|
+ */
|
|
|
|
+static bus_bw_table_type bus_bw_table_default = {
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11B] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_1,
|
|
|
|
+ BUS_BW_LEVEL_2, BUS_BW_LEVEL_3,
|
|
|
|
+ BUS_BW_LEVEL_4, BUS_BW_LEVEL_6,
|
|
|
|
+ BUS_BW_LEVEL_7, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11G] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_5,
|
|
|
|
+ BUS_BW_LEVEL_5, BUS_BW_LEVEL_5,
|
|
|
|
+ BUS_BW_LEVEL_5, BUS_BW_LEVEL_5,
|
|
|
|
+ BUS_BW_LEVEL_5, BUS_BW_LEVEL_5},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11A] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_5,
|
|
|
|
+ BUS_BW_LEVEL_5, BUS_BW_LEVEL_5,
|
|
|
|
+ BUS_BW_LEVEL_5, BUS_BW_LEVEL_5,
|
|
|
|
+ BUS_BW_LEVEL_5, BUS_BW_LEVEL_5},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11N] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_1,
|
|
|
|
+ BUS_BW_LEVEL_2, BUS_BW_LEVEL_3,
|
|
|
|
+ BUS_BW_LEVEL_4, BUS_BW_LEVEL_6,
|
|
|
|
+ BUS_BW_LEVEL_7, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11AC] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_1,
|
|
|
|
+ BUS_BW_LEVEL_2, BUS_BW_LEVEL_3,
|
|
|
|
+ BUS_BW_LEVEL_4, BUS_BW_LEVEL_6,
|
|
|
|
+ BUS_BW_LEVEL_7, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11AX] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_1,
|
|
|
|
+ BUS_BW_LEVEL_2, BUS_BW_LEVEL_3,
|
|
|
|
+ BUS_BW_LEVEL_4, BUS_BW_LEVEL_6,
|
|
|
|
+ BUS_BW_LEVEL_7, BUS_BW_LEVEL_8},
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bus_bw_table_low_latency - table which provides bus bandwidth level
|
|
|
|
+ * corresonding to a given connection mode and throughput level in low
|
|
|
|
+ * latency setting.
|
|
|
|
+ */
|
|
|
|
+static bus_bw_table_type bus_bw_table_low_latency = {
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11B] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11G] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11A] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11N] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11AC] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8},
|
|
|
|
+ [QCA_WLAN_802_11_MODE_11AX] = {BUS_BW_LEVEL_NONE, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8,
|
|
|
|
+ BUS_BW_LEVEL_8, BUS_BW_LEVEL_8}
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_convert_to_pld_bus_lvl() - Convert from internal bus vote level to
|
|
|
|
+ * PLD bus vote level
|
|
|
|
+ * @vote_lvl: internal bus bw vote level
|
|
|
|
+ *
|
|
|
|
+ * Returns: PLD bus vote level
|
|
|
|
+ */
|
|
|
|
+static enum pld_bus_width_type
|
|
|
|
+bbm_convert_to_pld_bus_lvl(enum bus_bw_level vote_lvl)
|
|
|
|
+{
|
|
|
|
+ switch (vote_lvl) {
|
|
|
|
+ case BUS_BW_LEVEL_1:
|
|
|
|
+ return PLD_BUS_WIDTH_IDLE;
|
|
|
|
+ case BUS_BW_LEVEL_2:
|
|
|
|
+ return PLD_BUS_WIDTH_LOW;
|
|
|
|
+ case BUS_BW_LEVEL_3:
|
|
|
|
+ return PLD_BUS_WIDTH_MEDIUM;
|
|
|
|
+ case BUS_BW_LEVEL_4:
|
|
|
|
+ return PLD_BUS_WIDTH_HIGH;
|
|
|
|
+ case BUS_BW_LEVEL_5:
|
|
|
|
+ return PLD_BUS_WIDTH_LOW_LATENCY;
|
|
|
|
+ case BUS_BW_LEVEL_6:
|
|
|
|
+ return PLD_BUS_WIDTH_VERY_HIGH;
|
|
|
|
+ case BUS_BW_LEVEL_7:
|
|
|
|
+ return PLD_BUS_WIDTH_ULTRA_HIGH;
|
|
|
|
+ case BUS_BW_LEVEL_8:
|
|
|
|
+ return PLD_BUS_WIDTH_MAX;
|
|
|
|
+ case BUS_BW_LEVEL_NONE:
|
|
|
|
+ default:
|
|
|
|
+ return PLD_BUS_WIDTH_NONE;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_get_bus_bw_level_vote() - Select bus bw vote level per interface based
|
|
|
|
+ * on connection mode and throughput level
|
|
|
|
+ * @dp_intf: DP Interface, caller assure that interface is valid.
|
|
|
|
+ * @tput_level: throughput level
|
|
|
|
+ *
|
|
|
|
+ * Returns: Bus bw level
|
|
|
|
+ */
|
|
|
|
+static enum bus_bw_level
|
|
|
|
+bbm_get_bus_bw_level_vote(struct wlan_dp_intf *dp_intf,
|
|
|
|
+ enum tput_level tput_level)
|
|
|
|
+{
|
|
|
|
+ enum qca_wlan_802_11_mode i;
|
|
|
|
+ enum qca_wlan_802_11_mode dot11_mode;
|
|
|
|
+ enum bus_bw_level vote_lvl = BUS_BW_LEVEL_NONE;
|
|
|
|
+ struct wlan_dp_psoc_context *dp_ctx = dp_intf->dp_ctx;
|
|
|
|
+ struct bbm_context *bbm_ctx = dp_ctx->bbm_ctx;
|
|
|
|
+ bus_bw_table_type *lkp_table = bbm_ctx->curr_bus_bw_lookup_table;
|
|
|
|
+ uint16_t client_count[QCA_WLAN_802_11_MODE_INVALID];
|
|
|
|
+ struct wlan_dp_psoc_callbacks *cb_obj = &dp_ctx->dp_ops;
|
|
|
|
+ hdd_cb_handle ctx = cb_obj->callback_ctx;
|
|
|
|
+
|
|
|
|
+ switch (dp_intf->device_mode) {
|
|
|
|
+ case QDF_STA_MODE:
|
|
|
|
+ case QDF_P2P_CLIENT_MODE:
|
|
|
|
+ if (!cb_obj->wlan_dp_sta_get_dot11mode(ctx,
|
|
|
|
+ dp_intf->intf_id,
|
|
|
|
+ &dot11_mode))
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ if (dot11_mode >= QCA_WLAN_802_11_MODE_INVALID) {
|
|
|
|
+ dp_err("invalid STA/P2P-CLI dot11 mode");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return (*lkp_table)[dot11_mode][tput_level];
|
|
|
|
+ case QDF_SAP_MODE:
|
|
|
|
+ case QDF_P2P_GO_MODE:
|
|
|
|
+ if (!cb_obj->wlan_dp_get_ap_client_count(ctx,
|
|
|
|
+ dp_intf->intf_id,
|
|
|
|
+ client_count))
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ for (i = QCA_WLAN_802_11_MODE_11B;
|
|
|
|
+ i < QCA_WLAN_802_11_MODE_INVALID; i++) {
|
|
|
|
+ if (client_count[i] &&
|
|
|
|
+ (*lkp_table)[i][tput_level] > vote_lvl)
|
|
|
|
+ vote_lvl = (*lkp_table)[i][tput_level];
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return vote_lvl;
|
|
|
|
+ case QDF_NDI_MODE:
|
|
|
|
+ if (!cb_obj->wlan_dp_sta_ndi_connected(ctx,
|
|
|
|
+ dp_intf->intf_id))
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * NDI dot11mode is currently hardcoded to 11AC in driver and
|
|
|
|
+ * since the bus bw levels in table do not differ between 11AC
|
|
|
|
+ * and 11AX, using max supported mode instead. Dot11mode of the
|
|
|
|
+ * peers are not saved in driver and legacy modes are not
|
|
|
|
+ * supported in NAN.
|
|
|
|
+ */
|
|
|
|
+ return (*lkp_table)[QCA_WLAN_802_11_MODE_11AX][tput_level];
|
|
|
|
+ default:
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return vote_lvl;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_apply_tput_policy() - Apply tput BBM policy by considering
|
|
|
|
+ * throughput level and connection modes across adapters
|
|
|
|
+ * @dp_ctx: DP context
|
|
|
|
+ * @tput_level: throughput level
|
|
|
|
+ *
|
|
|
|
+ * Returns: None
|
|
|
|
+ */
|
|
|
|
+static void
|
|
|
|
+bbm_apply_tput_policy(struct wlan_dp_psoc_context *dp_ctx,
|
|
|
|
+ enum tput_level tput_level)
|
|
|
|
+{
|
|
|
|
+ struct wlan_dp_intf *dp_intf;
|
|
|
|
+ struct wlan_dp_intf *dp_intf_next;
|
|
|
|
+ struct wlan_objmgr_psoc *psoc;
|
|
|
|
+ enum bus_bw_level next_vote = BUS_BW_LEVEL_NONE;
|
|
|
|
+ enum bus_bw_level tmp_vote;
|
|
|
|
+ struct bbm_context *bbm_ctx = dp_ctx->bbm_ctx;
|
|
|
|
+ hdd_cb_handle ctx = dp_ctx->dp_ops.callback_ctx;
|
|
|
|
+
|
|
|
|
+ if (tput_level == TPUT_LEVEL_NONE) {
|
|
|
|
+ /*
|
|
|
|
+ * This is to handle the scenario where bus bw periodic work
|
|
|
|
+ * is force cancelled
|
|
|
|
+ */
|
|
|
|
+ if (dp_ctx->dp_ops.dp_any_adapter_connected(ctx))
|
|
|
|
+ bbm_ctx->per_policy_vote[BBM_TPUT_POLICY] = next_vote;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ psoc = dp_ctx->psoc;
|
|
|
|
+ if (!psoc) {
|
|
|
|
+ dp_err("psoc is NULL");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ dp_for_each_intf_held_safe(dp_ctx, dp_intf, dp_intf_next) {
|
|
|
|
+ if (!dp_intf)
|
|
|
|
+ continue;
|
|
|
|
+ tmp_vote = bbm_get_bus_bw_level_vote(dp_intf, tput_level);
|
|
|
|
+ if (tmp_vote > next_vote)
|
|
|
|
+ next_vote = tmp_vote;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ bbm_ctx->per_policy_vote[BBM_TPUT_POLICY] = next_vote;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_apply_driver_mode_policy() - Apply driver mode BBM policy
|
|
|
|
+ * @bbm_ctx: bus bw mgr context
|
|
|
|
+ * @driver_mode: global driver mode
|
|
|
|
+ *
|
|
|
|
+ * Returns: None
|
|
|
|
+ */
|
|
|
|
+static void
|
|
|
|
+bbm_apply_driver_mode_policy(struct bbm_context *bbm_ctx,
|
|
|
|
+ enum QDF_GLOBAL_MODE driver_mode)
|
|
|
|
+{
|
|
|
|
+ switch (driver_mode) {
|
|
|
|
+ case QDF_GLOBAL_MONITOR_MODE:
|
|
|
|
+ case QDF_GLOBAL_FTM_MODE:
|
|
|
|
+ bbm_ctx->per_policy_vote[BBM_DRIVER_MODE_POLICY] =
|
|
|
|
+ BUS_BW_LEVEL_6;
|
|
|
|
+ return;
|
|
|
|
+ default:
|
|
|
|
+ bbm_ctx->per_policy_vote[BBM_DRIVER_MODE_POLICY] =
|
|
|
|
+ BUS_BW_LEVEL_NONE;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_apply_non_persistent_policy() - Apply non persistent policy and set
|
|
|
|
+ * the bus bandwidth
|
|
|
|
+ * @dp_ctx: DP context
|
|
|
|
+ * @flag: flag
|
|
|
|
+ *
|
|
|
|
+ * Returns: None
|
|
|
|
+ */
|
|
|
|
+static void
|
|
|
|
+bbm_apply_non_persistent_policy(struct wlan_dp_psoc_context *dp_ctx,
|
|
|
|
+ enum bbm_non_per_flag flag)
|
|
|
|
+{
|
|
|
|
+ hdd_cb_handle ctx = dp_ctx->dp_ops.callback_ctx;
|
|
|
|
+
|
|
|
|
+ switch (flag) {
|
|
|
|
+ case BBM_APPS_RESUME:
|
|
|
|
+ if (dp_ctx->dp_ops.dp_any_adapter_connected(ctx)) {
|
|
|
|
+ dp_ctx->bbm_ctx->curr_vote_level = BUS_BW_LEVEL_RESUME;
|
|
|
|
+ pld_request_bus_bandwidth(dp_ctx->qdf_dev->dev,
|
|
|
|
+ bbm_convert_to_pld_bus_lvl(BUS_BW_LEVEL_RESUME));
|
|
|
|
+ } else {
|
|
|
|
+ dp_ctx->bbm_ctx->curr_vote_level = BUS_BW_LEVEL_NONE;
|
|
|
|
+ pld_request_bus_bandwidth(dp_ctx->qdf_dev->dev,
|
|
|
|
+ bbm_convert_to_pld_bus_lvl(BUS_BW_LEVEL_NONE));
|
|
|
|
+ }
|
|
|
|
+ return;
|
|
|
|
+ case BBM_APPS_SUSPEND:
|
|
|
|
+ dp_ctx->bbm_ctx->curr_vote_level = BUS_BW_LEVEL_NONE;
|
|
|
|
+ pld_request_bus_bandwidth(dp_ctx->qdf_dev->dev,
|
|
|
|
+ bbm_convert_to_pld_bus_lvl(BUS_BW_LEVEL_NONE));
|
|
|
|
+ return;
|
|
|
|
+ default:
|
|
|
|
+ dp_info("flag %d not handled in res/sus BBM policy", flag);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_apply_wlm_policy() - Apply WLM based BBM policy by selecting
|
|
|
|
+ * lookup tables based on the latency level
|
|
|
|
+ * @bbm_ctx: Bus BW mgr context
|
|
|
|
+ * @wlm_level: WLM latency level
|
|
|
|
+ *
|
|
|
|
+ * Returns: None
|
|
|
|
+ */
|
|
|
|
+static void
|
|
|
|
+bbm_apply_wlm_policy(struct bbm_context *bbm_ctx, enum wlm_ll_level wlm_level)
|
|
|
|
+{
|
|
|
|
+ switch (wlm_level) {
|
|
|
|
+ case WLM_LL_NORMAL:
|
|
|
|
+ bbm_ctx->curr_bus_bw_lookup_table = &bus_bw_table_default;
|
|
|
|
+ break;
|
|
|
|
+ case WLM_LL_LOW:
|
|
|
|
+ bbm_ctx->curr_bus_bw_lookup_table = &bus_bw_table_low_latency;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dp_info("wlm level %d not handled in BBM WLM policy",
|
|
|
|
+ wlm_level);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_apply_user_policy() - Apply user specified bus voting
|
|
|
|
+ * level
|
|
|
|
+ * @bbm_ctx: Bus BW mgr context
|
|
|
|
+ * @set: set or reset flag
|
|
|
|
+ * @user_level: user bus vote level
|
|
|
|
+ *
|
|
|
|
+ * Returns: qdf status
|
|
|
|
+ */
|
|
|
|
+static QDF_STATUS
|
|
|
|
+bbm_apply_user_policy(struct bbm_context *bbm_ctx, bool set,
|
|
|
|
+ enum bus_bw_level user_level)
|
|
|
|
+{
|
|
|
|
+ if (user_level >= BUS_BW_LEVEL_MAX) {
|
|
|
|
+ dp_err("Invalid user vote level %d", user_level);
|
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (set)
|
|
|
|
+ bbm_ctx->per_policy_vote[BBM_USER_POLICY] = user_level;
|
|
|
|
+ else
|
|
|
|
+ bbm_ctx->per_policy_vote[BBM_USER_POLICY] = BUS_BW_LEVEL_NONE;
|
|
|
|
+
|
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * bbm_request_bus_bandwidth() - Set bus bandwidth level
|
|
|
|
+ * @dp_ctx: DP context
|
|
|
|
+ *
|
|
|
|
+ * Returns: None
|
|
|
|
+ */
|
|
|
|
+static void
|
|
|
|
+bbm_request_bus_bandwidth(struct wlan_dp_psoc_context *dp_ctx)
|
|
|
|
+{
|
|
|
|
+ enum bbm_policy i;
|
|
|
|
+ enum bus_bw_level next_vote = BUS_BW_LEVEL_NONE;
|
|
|
|
+ enum pld_bus_width_type pld_vote;
|
|
|
|
+ struct bbm_context *bbm_ctx = dp_ctx->bbm_ctx;
|
|
|
|
+
|
|
|
|
+ for (i = BBM_DRIVER_MODE_POLICY; i < BBM_MAX_POLICY; i++) {
|
|
|
|
+ if (bbm_ctx->per_policy_vote[i] > next_vote)
|
|
|
|
+ next_vote = bbm_ctx->per_policy_vote[i];
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (next_vote != bbm_ctx->curr_vote_level) {
|
|
|
|
+ pld_vote = bbm_convert_to_pld_bus_lvl(next_vote);
|
|
|
|
+ dp_info("Bus bandwidth vote level change from %d to %d pld_vote: %d",
|
|
|
|
+ bbm_ctx->curr_vote_level, next_vote, pld_vote);
|
|
|
|
+ bbm_ctx->curr_vote_level = next_vote;
|
|
|
|
+ pld_request_bus_bandwidth(dp_ctx->qdf_dev->dev, pld_vote);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
void dp_bbm_apply_independent_policy(struct wlan_objmgr_psoc *psoc,
|
|
void dp_bbm_apply_independent_policy(struct wlan_objmgr_psoc *psoc,
|
|
struct bbm_params *params)
|
|
struct bbm_params *params)
|
|
{
|
|
{
|
|
|
|
+ struct wlan_dp_psoc_context *dp_ctx;
|
|
|
|
+ struct bbm_context *bbm_ctx;
|
|
|
|
+ QDF_STATUS status;
|
|
|
|
+
|
|
|
|
+ dp_ctx = dp_psoc_get_priv(psoc);
|
|
|
|
+ if (!dp_ctx || !params)
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
+ bbm_ctx = dp_ctx->bbm_ctx;
|
|
|
|
+
|
|
|
|
+ qdf_mutex_acquire(&bbm_ctx->bbm_lock);
|
|
|
|
+
|
|
|
|
+ switch (params->policy) {
|
|
|
|
+ case BBM_TPUT_POLICY:
|
|
|
|
+ bbm_apply_tput_policy(dp_ctx, params->policy_info.tput_level);
|
|
|
|
+ break;
|
|
|
|
+ case BBM_NON_PERSISTENT_POLICY:
|
|
|
|
+ bbm_apply_non_persistent_policy(dp_ctx,
|
|
|
|
+ params->policy_info.flag);
|
|
|
|
+ goto done;
|
|
|
|
+ case BBM_DRIVER_MODE_POLICY:
|
|
|
|
+ bbm_apply_driver_mode_policy(bbm_ctx,
|
|
|
|
+ params->policy_info.driver_mode);
|
|
|
|
+ break;
|
|
|
|
+ case BBM_SELECT_TABLE_POLICY:
|
|
|
|
+ bbm_apply_wlm_policy(bbm_ctx, params->policy_info.wlm_level);
|
|
|
|
+ goto done;
|
|
|
|
+ case BBM_USER_POLICY:
|
|
|
|
+ /*
|
|
|
|
+ * This policy is not used currently.
|
|
|
|
+ */
|
|
|
|
+ status = bbm_apply_user_policy(bbm_ctx,
|
|
|
|
+ params->policy_info.usr.set,
|
|
|
|
+ params->policy_info.usr.user_level);
|
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
|
+ goto done;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dp_info("BBM policy %d not handled", params->policy);
|
|
|
|
+ goto done;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ bbm_request_bus_bandwidth(dp_ctx);
|
|
|
|
+
|
|
|
|
+done:
|
|
|
|
+ qdf_mutex_release(&bbm_ctx->bbm_lock);
|
|
}
|
|
}
|
|
|
|
|
|
int dp_bbm_context_init(struct wlan_objmgr_psoc *psoc)
|
|
int dp_bbm_context_init(struct wlan_objmgr_psoc *psoc)
|
|
{
|
|
{
|
|
|
|
+ struct wlan_dp_psoc_context *dp_ctx;
|
|
|
|
+ struct bbm_context *bbm_ctx;
|
|
|
|
+ QDF_STATUS status;
|
|
|
|
+
|
|
|
|
+ dp_ctx = dp_psoc_get_priv(psoc);
|
|
|
|
+ if (!dp_ctx)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ bbm_ctx = qdf_mem_malloc(sizeof(*bbm_ctx));
|
|
|
|
+ if (!bbm_ctx)
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+
|
|
|
|
+ bbm_ctx->curr_bus_bw_lookup_table = &bus_bw_table_default;
|
|
|
|
+
|
|
|
|
+ status = qdf_mutex_create(&bbm_ctx->bbm_lock);
|
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
|
+ goto free_ctx;
|
|
|
|
+
|
|
|
|
+ dp_ctx->bbm_ctx = bbm_ctx;
|
|
|
|
+
|
|
return 0;
|
|
return 0;
|
|
|
|
+
|
|
|
|
+free_ctx:
|
|
|
|
+ qdf_mem_free(bbm_ctx);
|
|
|
|
+
|
|
|
|
+ return qdf_status_to_os_return(status);
|
|
}
|
|
}
|
|
|
|
|
|
void dp_bbm_context_deinit(struct wlan_objmgr_psoc *psoc)
|
|
void dp_bbm_context_deinit(struct wlan_objmgr_psoc *psoc)
|
|
{
|
|
{
|
|
-}
|
|
|
|
|
|
+ struct wlan_dp_psoc_context *dp_ctx;
|
|
|
|
+ struct bbm_context *bbm_ctx;
|
|
|
|
+
|
|
|
|
+ dp_ctx = dp_psoc_get_priv(psoc);
|
|
|
|
+ if (!dp_ctx)
|
|
|
|
+ return;
|
|
|
|
+ bbm_ctx = dp_ctx->bbm_ctx;
|
|
|
|
+ if (!bbm_ctx)
|
|
|
|
+ return;
|
|
|
|
|
|
|
|
+ dp_ctx->bbm_ctx = NULL;
|
|
|
|
+ qdf_mutex_destroy(&bbm_ctx->bbm_lock);
|
|
|
|
+
|
|
|
|
+ qdf_mem_free(bbm_ctx);
|
|
|
|
+}
|
|
|
|
+#endif /* FEATURE_BUS_BANDWIDTH_MGR */
|