|
@@ -737,6 +737,67 @@ bool wlan_mlme_cfg_get_aux_supported_modes(
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * wlan_mlme_is_aux_cap_support() - checking the corresponding capability
|
|
|
+ * @psoc: wlan_objmgr_psoc pointer
|
|
|
+ * @bit: the corresponding bit
|
|
|
+ * @hw_mode_id: hw mode id
|
|
|
+ *
|
|
|
+ * Return: true if corresponding capability supporting
|
|
|
+ */
|
|
|
+static bool
|
|
|
+wlan_mlme_is_aux_cap_support(struct wlan_objmgr_psoc *psoc,
|
|
|
+ enum wlan_mlme_aux_caps_bit bit,
|
|
|
+ enum wlan_mlme_hw_mode_config_type hw_mode_id)
|
|
|
+{
|
|
|
+ uint32_t supported_modes_bitmap = 0;
|
|
|
+ struct wlan_mlme_psoc_ext_obj *mlme_obj;
|
|
|
+ struct wlan_mlme_aux_dev_caps *wlan_mlme_aux0_dev_caps;
|
|
|
+ int idx;
|
|
|
+
|
|
|
+ mlme_obj = mlme_get_psoc_ext_obj(psoc);
|
|
|
+ if (!mlme_obj) {
|
|
|
+ mlme_err("MLME obj is NULL");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ wlan_mlme_aux0_dev_caps = mlme_obj->cfg.gen.wlan_mlme_aux0_dev_caps;
|
|
|
+ if (hw_mode_id >= WLAN_MLME_HW_MODE_MAX) {
|
|
|
+ for (idx = 0; idx < WLAN_MLME_HW_MODE_MAX; idx++)
|
|
|
+ supported_modes_bitmap |=
|
|
|
+ wlan_mlme_aux0_dev_caps[idx].supported_modes_bitmap;
|
|
|
+ } else {
|
|
|
+ supported_modes_bitmap =
|
|
|
+ wlan_mlme_aux0_dev_caps[hw_mode_id].supported_modes_bitmap;
|
|
|
+ }
|
|
|
+
|
|
|
+ return (supported_modes_bitmap & (0x1 << bit)) ? true : false;
|
|
|
+}
|
|
|
+
|
|
|
+bool
|
|
|
+wlan_mlme_is_aux_scan_support(struct wlan_objmgr_psoc *psoc,
|
|
|
+ enum wlan_mlme_hw_mode_config_type hw_mode_id)
|
|
|
+{
|
|
|
+ return wlan_mlme_is_aux_cap_support(psoc, WLAN_MLME_AUX_MODE_SCAN_BIT,
|
|
|
+ hw_mode_id);
|
|
|
+}
|
|
|
+
|
|
|
+bool
|
|
|
+wlan_mlme_is_aux_listen_support(struct wlan_objmgr_psoc *psoc,
|
|
|
+ enum wlan_mlme_hw_mode_config_type hw_mode_id)
|
|
|
+{
|
|
|
+ return wlan_mlme_is_aux_cap_support(psoc, WLAN_MLME_AUX_MODE_LISTEN_BIT,
|
|
|
+ hw_mode_id);
|
|
|
+}
|
|
|
+
|
|
|
+bool
|
|
|
+wlan_mlme_is_aux_emlsr_support(struct wlan_objmgr_psoc *psoc,
|
|
|
+ enum wlan_mlme_hw_mode_config_type hw_mode_id)
|
|
|
+{
|
|
|
+ return wlan_mlme_is_aux_cap_support(psoc, WLAN_MLME_AUX_MODE_EMLSR_BIT,
|
|
|
+ hw_mode_id);
|
|
|
+}
|
|
|
+
|
|
|
#ifdef WLAN_FEATURE_11AX
|
|
|
QDF_STATUS wlan_mlme_cfg_get_he_ul_mumimo(struct wlan_objmgr_psoc *psoc,
|
|
|
uint32_t *value)
|