
Define a new cdp interface to fetch peer delay stats. Define a new cdp interface to fetch peer jitter stats. These interface APIs will be used by upper layers to fetch delay and jitter stats per peer for telemetry stats feature. Change-Id: I96ee6a861fa2626e7e1fba3df7df9ec64ff7e946 CRs-Fixed: 3071493
806 rindas
19 KiB
C
806 rindas
19 KiB
C
/*
|
|
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2021 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.
|
|
*/
|
|
|
|
/**
|
|
* @file cdp_txrx_host_stats.h
|
|
* @brief Define the host data path stats API functions
|
|
* called by the host control SW and the OS interface module
|
|
*/
|
|
#ifndef _CDP_TXRX_HOST_STATS_H_
|
|
#define _CDP_TXRX_HOST_STATS_H_
|
|
#include "cdp_txrx_handle.h"
|
|
#include <cdp_txrx_cmn.h>
|
|
#include <wmi_unified_api.h>
|
|
/**
|
|
* cdp_host_stats_get: cdp call to get host stats
|
|
* @soc: SOC handle
|
|
* @vdev_id: vdev id of vdev
|
|
* @req: Requirement type
|
|
*
|
|
* return: 0 for Success, Failure returns error message
|
|
*/
|
|
static inline int cdp_host_stats_get(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
struct ol_txrx_stats_req *req)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_host_stats_get)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_host_stats_get(soc, vdev_id, req);
|
|
}
|
|
|
|
/**
|
|
* cdp_host_stats_get_ratekbps: cdp call to get rate in kbps
|
|
* @soc: SOC handle
|
|
* @preamb: Preamble
|
|
* @mcs: Modulation and Coding scheme index
|
|
* @htflag: Flag to identify HT or VHT
|
|
* @gintval: Gaurd Interval value
|
|
*
|
|
* return: 0 for Failure, Returns rate on Success
|
|
*/
|
|
static inline int cdp_host_stats_get_ratekbps(ol_txrx_soc_handle soc,
|
|
int preamb, int mcs,
|
|
int htflag, int gintval)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_ratekbps)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_ratekbps(preamb,
|
|
mcs, htflag,
|
|
gintval);
|
|
}
|
|
|
|
/**
|
|
* cdp_host_stats_clr: cdp call to clear host stats
|
|
* @soc: soc handle
|
|
* @vdev_id: vdev handle id
|
|
*
|
|
* return: QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_host_stats_clr(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_host_stats_clr)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_host_stats_clr(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_host_ce_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_host_ce_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_host_ce_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline int cdp_stats_publish
|
|
(ol_txrx_soc_handle soc, uint8_t pdev_id,
|
|
struct cdp_stats_extd *buf)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_stats_publish)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_stats_publish(soc, pdev_id, buf);
|
|
}
|
|
|
|
/**
|
|
* @brief Enable enhanced stats functionality.
|
|
*
|
|
* @param soc - the soc object
|
|
* @param pdev_id - id of the physical device object
|
|
* @return - QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_enable_enhanced_stats(ol_txrx_soc_handle soc, uint8_t pdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_enable_enhanced_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_enable_enhanced_stats
|
|
(soc, pdev_id);
|
|
}
|
|
|
|
/**
|
|
* @brief Disable enhanced stats functionality.
|
|
*
|
|
* @param soc - the soc object
|
|
* @param pdev_id - id of the physical device object
|
|
* @return - QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_disable_enhanced_stats(ol_txrx_soc_handle soc, uint8_t pdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_disable_enhanced_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_disable_enhanced_stats
|
|
(soc, pdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_tx_print_tso_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->tx_print_tso_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->tx_print_tso_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_tx_rst_tso_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->tx_rst_tso_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->tx_rst_tso_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_tx_print_sg_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->tx_print_sg_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->tx_print_sg_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_tx_rst_sg_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->tx_rst_sg_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->tx_rst_sg_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_print_rx_cksum_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->print_rx_cksum_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->print_rx_cksum_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_rst_rx_cksum_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->rst_rx_cksum_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->rst_rx_cksum_stats(soc, vdev_id);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_host_me_stats(ol_txrx_soc_handle soc, uint8_t vdev_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_host_me_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_host_me_stats(soc, vdev_id);
|
|
}
|
|
|
|
/**
|
|
* cdp_per_peer_stats(): function to print per peer REO Queue stats
|
|
* @soc: soc handle
|
|
* @pdev: physical device
|
|
* @addr: peer address
|
|
*
|
|
* return: status
|
|
*/
|
|
static inline QDF_STATUS cdp_per_peer_stats(ol_txrx_soc_handle soc,
|
|
uint8_t *addr)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_per_peer_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_per_peer_stats(soc, addr);
|
|
}
|
|
|
|
static inline int cdp_host_msdu_ttl_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
struct ol_txrx_stats_req *req)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_host_msdu_ttl_stats)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_host_msdu_ttl_stats
|
|
(soc, vdev_id, req);
|
|
}
|
|
|
|
static inline QDF_STATUS cdp_update_peer_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id, uint8_t *mac,
|
|
void *stats,
|
|
uint32_t last_tx_rate_mcs,
|
|
uint32_t stats_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_update_peer_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_update_peer_stats
|
|
(soc, vdev_id, mac, stats, last_tx_rate_mcs, stats_id);
|
|
}
|
|
|
|
static inline QDF_STATUS cdp_get_dp_fw_peer_stats(ol_txrx_soc_handle soc,
|
|
uint8_t pdev_id,
|
|
uint8_t *mac, uint32_t caps,
|
|
uint32_t copy_stats)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->get_fw_peer_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->get_fw_peer_stats
|
|
(soc, pdev_id, mac, caps, copy_stats);
|
|
}
|
|
|
|
static inline QDF_STATUS cdp_get_dp_htt_stats(ol_txrx_soc_handle soc,
|
|
uint8_t pdev_id,
|
|
void *data, uint32_t data_len)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->get_htt_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->get_htt_stats(soc, pdev_id, data,
|
|
data_len);
|
|
}
|
|
|
|
/**
|
|
* @brief Update pdev host stats received from firmware
|
|
* (wmi_host_pdev_stats and wmi_host_pdev_ext_stats) into dp
|
|
*
|
|
* @param soc - soc handle
|
|
* @param pdev_id - id of the physical device object
|
|
* @param data - pdev stats
|
|
* @return - QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_update_pdev_host_stats(ol_txrx_soc_handle soc,
|
|
uint8_t pdev_id,
|
|
void *data,
|
|
uint16_t stats_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_update_pdev_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_update_pdev_stats(soc, pdev_id,
|
|
data,
|
|
stats_id);
|
|
}
|
|
|
|
/**
|
|
* @brief Update vdev host stats
|
|
*
|
|
* @soc: soc handle
|
|
* @vdev_id: id of the virtual device object
|
|
* @data: pdev stats
|
|
* @stats_id: type of stats
|
|
*
|
|
* Return: QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_update_vdev_host_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
void *data,
|
|
uint16_t stats_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_update_vdev_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_update_vdev_stats(soc, vdev_id,
|
|
data,
|
|
stats_id);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get specified peer stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param vdev_id - vdev_id of vdev object
|
|
* @param peer_mac - mac address of the peer
|
|
* @param type - enum of required stats
|
|
* @param buf - buffer to hold the value
|
|
* @return - QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_txrx_get_peer_stats_param(ol_txrx_soc_handle soc, uint8_t vdev_id,
|
|
uint8_t *peer_mac,
|
|
enum cdp_peer_stats_type type,
|
|
cdp_peer_stats_param_t *buf)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_peer_stats_param)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_peer_stats_param(soc,
|
|
vdev_id,
|
|
peer_mac,
|
|
type,
|
|
buf);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get soc stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @soc_stats - buffer for cdp soc stats
|
|
* @return - QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_host_get_soc_stats(ol_txrx_soc_handle soc, struct cdp_soc_stats *soc_stats)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_soc_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_soc_stats(soc, soc_stats);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get peer stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param vdev_id - vdev_id of vdev object
|
|
* @param peer_mac - mac address of the peer
|
|
* @return - struct cdp_peer_stats
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_host_get_peer_stats(ol_txrx_soc_handle soc, uint8_t vdev_id,
|
|
uint8_t *peer_mac,
|
|
struct cdp_peer_stats *peer_stats)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_peer_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_peer_stats(soc, vdev_id,
|
|
peer_mac,
|
|
peer_stats);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to reset ald stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param vdev_id - vdev_id of vdev object
|
|
* @param peer_mac - mac address of the peer
|
|
* @return - void
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_host_reset_peer_ald_stats(ol_txrx_soc_handle soc, uint8_t vdev_id,
|
|
uint8_t *peer_mac)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_reset_peer_ald_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_reset_peer_ald_stats(soc,
|
|
vdev_id,
|
|
peer_mac);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to reset peer stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param vdev_id - vdev_id of vdev object
|
|
* @param peer_mac - mac address of the peer
|
|
* @return - QDF_STATUS
|
|
*/
|
|
static inline QDF_STATUS
|
|
cdp_host_reset_peer_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id, uint8_t *peer_mac)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_reset_peer_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_reset_peer_stats(soc,
|
|
vdev_id,
|
|
peer_mac);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get vdev stats
|
|
*
|
|
* @param soc - dp soc object
|
|
* @param vdev_id - id of dp vdev object
|
|
* @param buf - buffer
|
|
* @return - int
|
|
*/
|
|
static inline int
|
|
cdp_host_get_vdev_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
struct cdp_vdev_stats *buf,
|
|
bool is_aggregate)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_vdev_stats)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_vdev_stats(soc, vdev_id,
|
|
buf,
|
|
is_aggregate);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to update vdev stats received from firmware
|
|
* (wmi_host_vdev_stats and wmi_host_vdev_extd_stats) into dp
|
|
*
|
|
* @param data - stats data to be updated
|
|
* @param size - size of stats data
|
|
* @param stats_id - stats id
|
|
* @return - int
|
|
*/
|
|
static inline int
|
|
cdp_update_host_vdev_stats(ol_txrx_soc_handle soc,
|
|
void *data,
|
|
uint32_t size,
|
|
uint32_t stats_id)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_process_wmi_host_vdev_stats)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_process_wmi_host_vdev_stats
|
|
(soc,
|
|
data,
|
|
size,
|
|
stats_id);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get vdev extd stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param vdev_id - id of dp vdev object
|
|
* @param buf - buffer
|
|
* @return - int
|
|
*/
|
|
static inline int
|
|
cdp_get_vdev_extd_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
wmi_host_vdev_extd_stats *buf)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_vdev_extd_stats)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_vdev_extd_stats(soc, vdev_id,
|
|
buf);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get cdp_pdev_stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param pdev_id - id of dp pdev object
|
|
* @param buf - buffer to hold cdp_pdev_stats
|
|
* @return - success/failure
|
|
*/
|
|
static inline int
|
|
cdp_host_get_pdev_stats(ol_txrx_soc_handle soc,
|
|
uint8_t pdev_id, struct cdp_pdev_stats *buf)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_pdev_stats)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_pdev_stats(soc, pdev_id, buf);
|
|
}
|
|
|
|
/**
|
|
* @brief Call to get radio stats
|
|
*
|
|
* @param soc - soc handle
|
|
* @param pdev_id - id of dp pdev object
|
|
* @param scn_stats_user - stats buffer
|
|
* @return - int
|
|
*/
|
|
static inline int
|
|
cdp_host_get_radio_stats(ol_txrx_soc_handle soc,
|
|
uint8_t pdev_id,
|
|
void *buf)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return 0;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_radio_stats)
|
|
return 0;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_radio_stats(soc, pdev_id,
|
|
buf);
|
|
}
|
|
|
|
#ifdef QCA_SUPPORT_SCAN_SPCL_VAP_STATS
|
|
static inline int
|
|
cdp_get_scan_spcl_vap_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
struct cdp_scan_spcl_vap_stats *stats)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_scan_spcl_vap_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_scan_spcl_vap_stats(soc,
|
|
vdev_id,
|
|
stats);
|
|
}
|
|
#endif
|
|
|
|
static inline QDF_STATUS
|
|
cdp_get_peer_delay_stats(ol_txrx_soc_handle soc,
|
|
uint8_t vdev_id,
|
|
uint8_t *peer_mac,
|
|
struct cdp_delay_tid_stats *delay_stats)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_peer_delay_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_peer_delay_stats(soc,
|
|
vdev_id,
|
|
peer_mac,
|
|
delay_stats);
|
|
}
|
|
|
|
static inline QDF_STATUS
|
|
cdp_get_peer_jitter_stats(ol_txrx_soc_handle soc,
|
|
uint8_t pdev_id,
|
|
uint8_t vdev_id,
|
|
uint8_t *peer_mac,
|
|
struct cdp_peer_tid_stats *tid_stats)
|
|
{
|
|
if (!soc || !soc->ops) {
|
|
dp_cdp_debug("Invalid Instance");
|
|
QDF_BUG(0);
|
|
return QDF_STATUS_E_FAILURE;
|
|
}
|
|
|
|
if (!soc->ops->host_stats_ops ||
|
|
!soc->ops->host_stats_ops->txrx_get_peer_jitter_stats)
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
|
return soc->ops->host_stats_ops->txrx_get_peer_jitter_stats(soc,
|
|
pdev_id,
|
|
vdev_id,
|
|
peer_mac,
|
|
tid_stats);
|
|
}
|
|
#endif /* _CDP_TXRX_HOST_STATS_H_ */
|