123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- /*
- * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
- * 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.
- */
- /**
- * @file cdp_txrx_mon.h
- * @brief Define the monitor mode API functions
- * called by the host control SW and the OS interface module
- */
- #ifndef _CDP_TXRX_MON_H_
- #define _CDP_TXRX_MON_H_
- #include "cdp_txrx_handle.h"
- #include <cdp_txrx_cmn.h>
- static inline QDF_STATUS cdp_reset_monitor_mode(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- u_int8_t smart_monitor)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_reset_monitor_mode)
- return 0;
- return soc->ops->mon_ops->txrx_reset_monitor_mode(soc, pdev_id,
- smart_monitor);
- }
- /**
- * cdp_deliver_tx_mgmt() - Deliver mgmt frame for tx capture
- * @soc: Datapath SOC handle
- * @pdev_id: id of datapath PDEV handle
- * @nbuf: Management frame buffer
- */
- static inline QDF_STATUS
- cdp_deliver_tx_mgmt(ol_txrx_soc_handle soc, uint8_t pdev_id,
- qdf_nbuf_t nbuf)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_deliver_tx_mgmt)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->mon_ops->txrx_deliver_tx_mgmt(soc, pdev_id, nbuf);
- }
- #ifdef QCA_SUPPORT_LITE_MONITOR
- /*
- * cdp_set_lite_mon_config() - Set lite monitor config/filter
- *
- *@soc: dp soc handle
- *@config: lite monitor config
- *@pdev_id: pdev id
- *
- * This API is used to enable/disable lite monitor feature
- *
- * Return: QDF_STATUS_SUCCESS if value set successfully
- * QDF_STATUS_E_INVAL false if error
- */
- static inline QDF_STATUS
- cdp_set_lite_mon_config(ol_txrx_soc_handle soc,
- struct cdp_lite_mon_filter_config *config,
- uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_set_lite_mon_config)
- return QDF_STATUS_E_INVAL;
- return soc->ops->mon_ops->txrx_set_lite_mon_config(soc, config,
- pdev_id);
- }
- /*
- * cdp_get_lite_mon_config() - Get lite monitor config
- *
- *@soc: dp soc handle
- *@config: lite monitor config
- *@pdev_id: pdev id
- *
- * This API is used to get lite monitor feature config
- *
- * Return: QDF_STATUS_SUCCESS if get is successfully
- * QDF_STATUS_E_INVAL false if error
- */
- static inline QDF_STATUS
- cdp_get_lite_mon_config(ol_txrx_soc_handle soc,
- struct cdp_lite_mon_filter_config *config,
- uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_get_lite_mon_config)
- return QDF_STATUS_E_INVAL;
- return soc->ops->mon_ops->txrx_get_lite_mon_config(soc, config,
- pdev_id);
- }
- /*
- * cdp_set_lite_mon_peer_config() - Set lite monitor peer config
- *
- *@soc: dp soc handle
- *@config: lite monitor peer config
- *@pdev_id: pdev id
- *
- * This API is used to add/del lite monitor peers
- *
- * Return: QDF_STATUS_SUCCESS if value set successfully
- * QDF_STATUS_E_INVAL false if error
- */
- static inline QDF_STATUS
- cdp_set_lite_mon_peer_config(ol_txrx_soc_handle soc,
- struct cdp_lite_mon_peer_config *config,
- uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_set_lite_mon_peer_config)
- return QDF_STATUS_E_INVAL;
- return soc->ops->mon_ops->txrx_set_lite_mon_peer_config(soc, config,
- pdev_id);
- }
- /*
- * cdp_get_lite_mon_peer_config() - Get lite monitor peer list
- *
- *@soc: dp soc handle
- *@info: lite monitor peer info
- *@pdev_id: pdev id
- *
- * This API is used to get lite monitor peers
- *
- * Return: QDF_STATUS_SUCCESS if value set successfully
- * QDF_STATUS_E_INVAL false if error
- */
- static inline QDF_STATUS
- cdp_get_lite_mon_peer_config(ol_txrx_soc_handle soc,
- struct cdp_lite_mon_peer_info *info,
- uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_get_lite_mon_peer_config)
- return QDF_STATUS_E_INVAL;
- return soc->ops->mon_ops->txrx_get_lite_mon_peer_config(soc, info,
- pdev_id);
- }
- /*
- * cdp_is_lite_mon_enabled() - Get lite monitor enable status
- *
- *@soc: dp soc handle
- *@pdev_id: pdev id
- *@dir: direction tx/rx
- *
- * This API is used to get lite monitor enable status
- *
- * Return: 0 if disabled
- * 1 if enabled
- */
- static inline int
- cdp_is_lite_mon_enabled(ol_txrx_soc_handle soc,
- uint8_t pdev_id, uint8_t dir)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance");
- return 0;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_is_lite_mon_enabled)
- return 0;
- return soc->ops->mon_ops->txrx_is_lite_mon_enabled(soc, pdev_id, dir);
- }
- #endif
- #ifdef QCA_RSSI_DB2DBM
- /*
- * cdp_set_params_rssi_dbm_conversion - Set the rssi dbm conversion params
- * into dp_pdev structure
- * @soc: soc txrx handler
- * @params: cdp_rssi_db2dbm_param_dp pointer
- *
- */
- static inline QDF_STATUS
- cdp_set_params_rssi_dbm_conversion(ol_txrx_soc_handle soc,
- struct cdp_rssi_db2dbm_param_dp *params)
- {
- if (!soc || !soc->ops) {
- dp_cdp_debug("Invalid Instance:");
- QDF_BUG(0);
- return QDF_STATUS_E_FAILURE;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_set_mon_pdev_params_rssi_dbm_conv)
- return QDF_STATUS_E_FAILURE;
- return soc->ops->mon_ops->txrx_set_mon_pdev_params_rssi_dbm_conv
- (soc, params);
- }
- #endif
- #endif
|