123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- /*
- * Copyright (c) 2016-2019 The Linux Foundation. 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"
- static inline void cdp_monitor_set_filter_ucast_data
- (ol_txrx_soc_handle soc, struct cdp_pdev *pdev, u_int8_t val)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_set_filter_ucast_data)
- return;
- soc->ops->mon_ops->txrx_monitor_set_filter_ucast_data
- (pdev, val);
- }
- static inline void cdp_monitor_set_filter_mcast_data
- (ol_txrx_soc_handle soc, struct cdp_pdev *pdev, u_int8_t val)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_set_filter_mcast_data)
- return;
- soc->ops->mon_ops->txrx_monitor_set_filter_mcast_data
- (pdev, val);
- }
- static inline void cdp_monitor_set_filter_non_data
- (ol_txrx_soc_handle soc, struct cdp_pdev *pdev, u_int8_t val)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_set_filter_non_data)
- return;
- soc->ops->mon_ops->txrx_monitor_set_filter_non_data
- (pdev, val);
- }
- static inline bool cdp_monitor_get_filter_ucast_data
- (ol_txrx_soc_handle soc, struct cdp_vdev *vdev_txrx_handle)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_get_filter_ucast_data)
- return 0;
- return soc->ops->mon_ops->txrx_monitor_get_filter_ucast_data
- (vdev_txrx_handle);
- }
- static inline bool cdp_monitor_get_filter_mcast_data
- (ol_txrx_soc_handle soc, struct cdp_vdev *vdev_txrx_handle)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_get_filter_mcast_data)
- return 0;
- return soc->ops->mon_ops->txrx_monitor_get_filter_mcast_data
- (vdev_txrx_handle);
- }
- static inline bool cdp_monitor_get_filter_non_data
- (ol_txrx_soc_handle soc, struct cdp_vdev *vdev_txrx_handle)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_get_filter_non_data)
- return 0;
- return soc->ops->mon_ops->txrx_monitor_get_filter_non_data
- (vdev_txrx_handle);
- }
- static inline QDF_STATUS cdp_reset_monitor_mode
- (ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- 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(pdev);
- }
- static inline void cdp_record_monitor_chan_num
- (ol_txrx_soc_handle soc, struct cdp_pdev *pdev, int chan_num)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_monitor_record_channel)
- return;
- soc->ops->mon_ops->txrx_monitor_record_channel(pdev, chan_num);
- }
- /**
- * cdp_deliver_tx_mgmt() - Deliver mgmt frame for tx capture
- * @soc: Datapath SOC handle
- * @pdev: Datapath PDEV handle
- * @nbuf: Management frame buffer
- */
- static inline void
- cdp_deliver_tx_mgmt(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
- qdf_nbuf_t nbuf)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_deliver_tx_mgmt)
- return;
- soc->ops->mon_ops->txrx_deliver_tx_mgmt(pdev, nbuf);
- }
- static inline void
- cdp_set_bsscolor(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
- uint8_t bsscolor)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
- "%s: Invalid Instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->mon_ops ||
- !soc->ops->mon_ops->txrx_set_bsscolor)
- return;
- soc->ops->mon_ops->txrx_set_bsscolor(pdev, bsscolor);
- }
- #ifdef WLAN_FEATURE_PKT_CAPTURE
- static inline void
- cdp_pktcapture_record_channel(
- ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- int chan_num)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->pktcapture_ops ||
- !soc->ops->pktcapture_ops->txrx_pktcapture_record_channel)
- return;
- soc->ops->pktcapture_ops->txrx_pktcapture_record_channel(soc,
- pdev_id,
- chan_num);
- }
- static inline void
- cdp_set_packet_capture_mode(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- uint8_t val)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return;
- }
- if (!soc->ops->pktcapture_ops ||
- !soc->ops->pktcapture_ops->txrx_pktcapture_set_mode)
- return;
- soc->ops->pktcapture_ops->txrx_pktcapture_set_mode(soc, pdev_id, val);
- }
- static inline uint8_t
- cdp_get_packet_capture_mode(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
- "%s invalid instance", __func__);
- QDF_BUG(0);
- return 0;
- }
- if (!soc->ops->pktcapture_ops ||
- !soc->ops->pktcapture_ops->txrx_pktcapture_get_mode)
- return 0;
- return soc->ops->pktcapture_ops->txrx_pktcapture_get_mode(soc,
- pdev_id);
- }
- static inline QDF_STATUS
- cdp_register_pktcapture_cb(
- ol_txrx_soc_handle soc, uint8_t pdev_id, void *ctx,
- QDF_STATUS(txrx_pktcapture_cb)(void *, qdf_nbuf_t))
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->pktcapture_ops ||
- !soc->ops->pktcapture_ops->txrx_pktcapture_cb_register)
- return QDF_STATUS_E_INVAL;
- return soc->ops->pktcapture_ops->txrx_pktcapture_cb_register(
- soc,
- pdev_id,
- ctx,
- txrx_pktcapture_cb);
- }
- static inline QDF_STATUS
- cdp_deregister_pktcapture_cb(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->pktcapture_ops ||
- !soc->ops->pktcapture_ops->txrx_pktcapture_cb_deregister)
- return QDF_STATUS_E_INVAL;
- return soc->ops->pktcapture_ops->txrx_pktcapture_cb_deregister(soc,
- pdev_id);
- }
- static inline QDF_STATUS
- cdp_pktcapture_mgmtpkt_process(
- ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- struct mon_rx_status *txrx_status,
- qdf_nbuf_t nbuf,
- uint8_t status)
- {
- if (!soc || !soc->ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return QDF_STATUS_E_INVAL;
- }
- if (!soc->ops->pktcapture_ops ||
- !soc->ops->pktcapture_ops->txrx_pktcapture_mgmtpkt_process)
- return QDF_STATUS_E_INVAL;
- return soc->ops->pktcapture_ops->txrx_pktcapture_mgmtpkt_process(
- soc,
- pdev_id,
- txrx_status,
- nbuf,
- status);
- }
- #else
- static inline uint8_t
- cdp_get_packet_capture_mode(ol_txrx_soc_handle soc, uint8_t pdev_id)
- {
- return 0;
- }
- static inline void
- cdp_pktcapture_record_channel(ol_txrx_soc_handle soc,
- uint8_t pdev_id,
- int chan_num)
- {
- }
- #endif /* WLAN_FEATURE_PKT_CAPTURE */
- #endif
|