1
0

qcacld-3.0: Add new Wifi Pos files for legacy ops

Add below new Wifi pos files to register legacy peer create and
peer delete operations:
core/inc/wlan_wifi_pos_interface.h
core/src/wlan_wifi_pos_interface.c
dispatcher/inc/wifi_pos_ucfg_api.h
dispatcher/src/wifi_pos_ucfg_api.c

Change-Id: Iee628450fbaac9d57f1b672ca0550ce5c828f7d5
CRs-Fixed: 3170664
Este cometimento está contido em:
Pragaspathi Thilagaraj
2022-03-14 12:13:10 +05:30
cometido por Madan Koyyalamudi
ascendente 83e6817968
cometimento 2bb23a6dd7
4 ficheiros modificados com 206 adições e 0 eliminações

Ver ficheiro

@@ -0,0 +1,44 @@
/*
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
* DOC: declare WIFI POS ucfg APIs exposed by the mlme component
*/
#ifndef _WLAN_WIFI_POS_UCFG_API_H_
#define _WLAN_WIFI_POS_UCFG_API_H_
#include <wlan_objmgr_vdev_obj.h>
#include "wma_if.h"
#include "wlan_wifi_pos_interface.h"
#include "os_if_wifi_pos_utils.h"
#if defined(WIFI_POS_CONVERGED) && defined(WLAN_FEATURE_RTT_11AZ_SUPPORT)
/**
* ucfg_wifi_pos_psoc_open - Wifi pos module PSOC open api
* @psoc: Pointer to PSOC object
*
* Return: QDF_STATUS
*/
QDF_STATUS
ucfg_wifi_pos_psoc_open(struct wlan_objmgr_psoc *psoc);
#else
static inline QDF_STATUS
ucfg_wifi_pos_psoc_open(struct wlan_objmgr_psoc *psoc)
{
return QDF_STATUS_SUCCESS;
}
#endif /* WIFI_POS_CONVERGED && WLAN_FEATURE_RTT_11AZ_SUPPORT */
#endif /* _WLAN_WIFI_POS_UCFG_API_H_ */

Ver ficheiro

@@ -0,0 +1,40 @@
/*
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
* DOC: declare WIFI POS ucfg APIs exposed by the mlme component
*/
#include "wifi_pos_ucfg_api.h"
#include "wifi_pos_utils_i.h"
#include "os_if_wifi_pos_utils.h"
#if defined(WIFI_POS_CONVERGED) && defined(WLAN_FEATURE_RTT_11AZ_SUPPORT)
QDF_STATUS
ucfg_wifi_pos_psoc_open(struct wlan_objmgr_psoc *psoc)
{
QDF_STATUS status;
status = osif_wifi_pos_register_ops(psoc);
if (QDF_IS_STATUS_ERROR(status))
wifi_pos_err("Register OSIF ops failed");
status = ucfg_wifi_pos_set_legacy_ops(psoc);
if (QDF_IS_STATUS_ERROR(status))
wifi_pos_err("Set legacy ops failed");
return status;
}
#endif /* WIFI_POS_CONVERGED && WLAN_FEATURE_RTT_11AZ_SUPPORT */