qcacmn: Add new files for cp_stats mobile connectivity component

Add file for mobile connectivity to use control path stats component.

Change-Id: I11ba1103745371ebf740ee2ec06dd04912afa7c9
CRs-Fixed: 2210307
这个提交包含在:
Naveen Rawat
2018-03-12 14:08:29 -07:00
提交者 nshrivas
父节点 e37bc4601e
当前提交 70fd32e41b
修改 10 个文件,包含 354 行新增2 行删除

查看文件

@@ -26,10 +26,35 @@
#ifndef __TARGET_IF_CP_STATS_H__
#define __TARGET_IF_CP_STATS_H__
#include <target_if.h>
#include <wlan_lmac_if_def.h>
#include <wlan_cp_stats_utils_api.h>
#ifdef QCA_SUPPORT_CP_STATS
#include <wlan_cp_stats_utils_api.h>
/**
* target_if_cp_stats_get_rx_ops() - get rx ops
* @tx_ops: pointer to lmac tx ops
*
* Return: pointer to rx ops
*/
static inline struct wlan_lmac_if_cp_stats_rx_ops *
target_if_cp_stats_get_rx_ops(struct wlan_objmgr_psoc *psoc)
{
return &psoc->soc_cb.rx_ops.cp_stats_rx_ops;
}
/**
* target_if_cp_stats_get_tx_ops() - get tx ops
* @tx_ops: pointer to lmac tx ops
*
* Return: pointer to tx ops
*/
static inline struct wlan_lmac_if_cp_stats_tx_ops *
target_if_cp_stats_get_tx_ops(struct wlan_objmgr_psoc *psoc)
{
return &psoc->soc_cb.tx_ops.cp_stats_tx_ops;
}
/**
* target_if_cp_stats_register_tx_ops() - define cp_stats lmac tx ops functions
@@ -39,12 +64,27 @@
*/
QDF_STATUS
target_if_cp_stats_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops);
/**
* target_if_cp_stats_register_rx_ops() - define cp_stats lmac rx ops functions
* @rx_ops: pointer to lmac rx ops
*
* Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
*/
QDF_STATUS
target_if_cp_stats_register_rx_ops(struct wlan_lmac_if_rx_ops *tx_ops);
#else
static inline QDF_STATUS
target_if_cp_stats_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops)
{
return QDF_STATUS_SUCCESS;
}
static inline QDF_STATUS
target_if_cp_stats_register_rx_ops(struct wlan_lmac_if_rx_ops *rx_ops)
{
return QDF_STATUS_SUCCESS;
}
#endif /* QCA_SUPPORT_CP_STATS */
#endif /* __TARGET_IF_CP_STATS_H__ */

查看文件

@@ -31,7 +31,7 @@
#include <wlan_tgt_def_config.h>
#include <wmi_unified_api.h>
#include <wlan_osif_priv.h>
#include <target_if.h>
#include <wlan_cp_stats_utils_api.h>
static QDF_STATUS
target_if_cp_stats_register_event_handler(struct wlan_objmgr_psoc *psoc)

查看文件

@@ -0,0 +1,89 @@
/*
* Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
*
* 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.
*/
/*
* This file was originally distributed by Qualcomm Atheros, Inc.
* under proprietary terms before Copyright ownership was assigned
* to the Linux Foundation.
*/
/**
* DOC: target_if_cp_stats.c
*
* This file provide definition for APIs registered through lmac Tx Ops
*/
#include <qdf_mem.h>
#include <qdf_status.h>
#include <target_if_cp_stats.h>
#include <wmi_unified_priv.h>
#include <wmi_unified_param.h>
#include <target_if.h>
#include <wlan_tgt_def_config.h>
#include <wmi_unified_api.h>
#include <wlan_osif_priv.h>
#include "wlan_cp_stats_utils_api.h"
static QDF_STATUS
target_if_cp_stats_register_event_handler(struct wlan_objmgr_psoc *psoc)
{
if (!psoc) {
cp_stats_err("PSOC is NULL!");
return QDF_STATUS_E_INVAL;
}
return QDF_STATUS_SUCCESS;
}
static QDF_STATUS
target_if_cp_stats_unregister_event_handler(struct wlan_objmgr_psoc *psoc)
{
if (!psoc) {
cp_stats_err("PSOC is NULL!");
return QDF_STATUS_E_INVAL;
}
return QDF_STATUS_SUCCESS;
}
QDF_STATUS
target_if_cp_stats_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops)
{
struct wlan_lmac_if_cp_stats_tx_ops *cp_stats_tx_ops;
if (!tx_ops) {
cp_stats_err("lmac tx ops is NULL!");
return QDF_STATUS_E_INVAL;
}
cp_stats_tx_ops = &tx_ops->cp_stats_tx_ops;
if (!cp_stats_tx_ops) {
cp_stats_err("lmac tx ops is NULL!");
return QDF_STATUS_E_FAILURE;
}
cp_stats_tx_ops->cp_stats_attach =
target_if_cp_stats_register_event_handler;
cp_stats_tx_ops->cp_stats_detach =
target_if_cp_stats_unregister_event_handler;
return QDF_STATUS_SUCCESS;
}