|
@@ -16,59 +16,71 @@
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
*/
|
|
|
/**
|
|
|
- * DOC: define internal APIs related to the mlme component
|
|
|
+ * DOC: define UCFG APIs exposed by the mlme component
|
|
|
*/
|
|
|
|
|
|
-#include "cfg_ucfg_api.h"
|
|
|
#include "wlan_mlme_main.h"
|
|
|
+#include "wlan_mlme_api.h"
|
|
|
#include "wlan_mlme_ucfg_api.h"
|
|
|
|
|
|
-QDF_STATUS mlme_psoc_open(struct wlan_objmgr_psoc *psoc)
|
|
|
+QDF_STATUS ucfg_mlme_init(void)
|
|
|
{
|
|
|
QDF_STATUS status;
|
|
|
|
|
|
- status = mlme_cfg_on_psoc_enable(psoc);
|
|
|
- if (!QDF_IS_STATUS_SUCCESS(status))
|
|
|
- mlme_err("Failed to initialize MLME CFG");
|
|
|
+ status = wlan_objmgr_register_psoc_create_handler(
|
|
|
+ WLAN_UMAC_COMP_MLME,
|
|
|
+ mlme_psoc_object_created_notification,
|
|
|
+ NULL);
|
|
|
+ if (status != QDF_STATUS_SUCCESS) {
|
|
|
+ mlme_err("unable to register psoc create handle");
|
|
|
+ return status;
|
|
|
+ }
|
|
|
|
|
|
- return status;
|
|
|
-}
|
|
|
+ status = wlan_objmgr_register_psoc_destroy_handler(
|
|
|
+ WLAN_UMAC_COMP_MLME,
|
|
|
+ mlme_psoc_object_destroyed_notification,
|
|
|
+ NULL);
|
|
|
+ if (status != QDF_STATUS_SUCCESS)
|
|
|
+ mlme_err("unable to register psoc create handle");
|
|
|
|
|
|
-void mlme_psoc_close(struct wlan_objmgr_psoc *psoc)
|
|
|
-{
|
|
|
- /* Clear the MLME CFG Structure */
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
-QDF_STATUS wlan_mlme_get_ht_cap_info(struct wlan_objmgr_psoc *psoc,
|
|
|
- struct mlme_ht_capabilities_info
|
|
|
- *ht_cap_info)
|
|
|
+QDF_STATUS ucfg_mlme_deinit(void)
|
|
|
{
|
|
|
- struct wlan_mlme_psoc_obj *mlme_obj;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
- mlme_obj = mlme_get_psoc_obj(psoc);
|
|
|
- if (!mlme_obj) {
|
|
|
- mlme_err("Failed to get MLME Obj");
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
+ status = wlan_objmgr_unregister_psoc_create_handler(
|
|
|
+ WLAN_UMAC_COMP_MLME,
|
|
|
+ mlme_psoc_object_created_notification,
|
|
|
+ NULL);
|
|
|
+ if (status != QDF_STATUS_SUCCESS) {
|
|
|
+ mlme_err("unable to unregister psoc create handle");
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
- *ht_cap_info = mlme_obj->cfg.ht_caps.ht_cap_info;
|
|
|
+ status = wlan_objmgr_unregister_psoc_destroy_handler(
|
|
|
+ WLAN_UMAC_COMP_MLME,
|
|
|
+ mlme_psoc_object_destroyed_notification,
|
|
|
+ NULL);
|
|
|
+ if (status != QDF_STATUS_SUCCESS)
|
|
|
+ mlme_err("unable to unregister psoc destroy handle");
|
|
|
|
|
|
- return QDF_STATUS_SUCCESS;
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
-QDF_STATUS wlan_mlme_set_ht_cap_info(struct wlan_objmgr_psoc *psoc,
|
|
|
- struct mlme_ht_capabilities_info
|
|
|
- ht_cap_info)
|
|
|
+QDF_STATUS ucfg_mlme_psoc_open(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
- struct wlan_mlme_psoc_obj *mlme_obj;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
- mlme_obj = mlme_get_psoc_obj(psoc);
|
|
|
- if (!mlme_obj) {
|
|
|
- mlme_err("Failed to get MLME Obj");
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
+ status = mlme_cfg_on_psoc_enable(psoc);
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(status))
|
|
|
+ mlme_err("Failed to initialize MLME CFG");
|
|
|
|
|
|
- mlme_obj->cfg.ht_caps.ht_cap_info = ht_cap_info;
|
|
|
+ return status;
|
|
|
+}
|
|
|
|
|
|
- return QDF_STATUS_SUCCESS;
|
|
|
+void ucfg_mlme_psoc_close(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ /* Clear the MLME CFG Structure */
|
|
|
}
|