123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /*
- * Copyright (c) 2016 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.
- */
- /**
- * @file cdp_txrx_flow_ctrl_v2.h
- * @brief Define the host data path flow control version 2 API
- * functions
- */
- #ifndef _CDP_TXRX_FC_V2_H_
- #define _CDP_TXRX_FC_V2_H_
- #include <cdp_txrx_ops.h>
- /**
- * cdp_register_pause_cb() - Register flow control callback function pointer
- * @soc - data path soc handle
- * @pause_cb - callback function pointer
- *
- * Register flow control callback function pointer and client context pointer
- *
- * return QDF_STATUS_SUCCESS success
- */
- static inline QDF_STATUS
- cdp_register_pause_cb(ol_txrx_soc_handle soc,
- ol_tx_pause_callback_fp pause_cb)
- {
- if (!soc || !soc->ops || !soc->ops->flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return QDF_STATUS_E_INVAL;
- }
- if (soc->ops->flowctl_ops->register_pause_cb)
- return soc->ops->flowctl_ops->register_pause_cb(pause_cb);
- return QDF_STATUS_SUCCESS;
- }
- /**
- * cdp_set_desc_global_pool_size() - set global device pool size
- * @soc - data path soc handle
- * @num_msdu_desc - descriptor pool size
- *
- * set global device pool size
- *
- * return none
- */
- static inline void
- cdp_set_desc_global_pool_size(ol_txrx_soc_handle soc,
- uint32_t num_msdu_desc)
- {
- if (!soc || !soc->ops || !soc->ops->flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return;
- }
- if (soc->ops->flowctl_ops->set_desc_global_pool_size)
- return soc->ops->flowctl_ops->set_desc_global_pool_size(
- num_msdu_desc);
- return;
- }
- /**
- * cdp_dump_flow_pool_info() - dump flow pool information
- * @soc - data path soc handle
- *
- * dump flow pool information
- *
- * return none
- */
- static inline void
- cdp_dump_flow_pool_info(ol_txrx_soc_handle soc)
- {
- if (!soc || !soc->ops || !soc->ops->flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return;
- }
- if (soc->ops->flowctl_ops->dump_flow_pool_info)
- return soc->ops->flowctl_ops->dump_flow_pool_info();
- return;
- }
- #endif /* _CDP_TXRX_FC_V2_H_ */
|