123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
-
- static inline int
- cdp_fc_register(ol_txrx_soc_handle soc, uint8_t vdev_id,
- ol_txrx_tx_flow_control_fp flowControl, void *osif_fc_ctx)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return 0;
- }
- if (soc->ops->l_flowctl_ops->register_tx_flow_control)
- return soc->ops->l_flowctl_ops->register_tx_flow_control(
- vdev_id, flowControl, osif_fc_ctx);
- return 0;
- }
- static inline int
- cdp_fc_deregister(ol_txrx_soc_handle soc, uint8_t vdev_id)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return 0;
- }
- if (soc->ops->l_flowctl_ops->deregister_tx_flow_control_cb)
- return soc->ops->l_flowctl_ops->deregister_tx_flow_control_cb(
- vdev_id);
- return 0;
- }
- static inline bool
- cdp_fc_get_tx_resource(ol_txrx_soc_handle soc, uint8_t sta_id,
- unsigned int low_watermark, unsigned int high_watermark_offset)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return false;
- }
- if (soc->ops->l_flowctl_ops->get_tx_resource)
- return soc->ops->l_flowctl_ops->get_tx_resource(sta_id,
- low_watermark, high_watermark_offset);
- return false;
- }
- static inline int
- cdp_fc_ll_set_tx_pause_q_depth(ol_txrx_soc_handle soc,
- uint8_t vdev_id, int pause_q_depth)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return 0;
- }
- if (soc->ops->l_flowctl_ops->ll_set_tx_pause_q_depth)
- return soc->ops->l_flowctl_ops->ll_set_tx_pause_q_depth(vdev_id,
- pause_q_depth);
- return 0;
- }
- static inline void
- cdp_fc_vdev_flush(ol_txrx_soc_handle soc, void *vdev)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return;
- }
- if (soc->ops->l_flowctl_ops->vdev_flush)
- return soc->ops->l_flowctl_ops->vdev_flush(vdev);
- return;
- }
- static inline void
- cdp_fc_vdev_pause(ol_txrx_soc_handle soc, void *vdev,
- uint32_t reason)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return;
- }
- if (soc->ops->l_flowctl_ops->vdev_pause)
- return soc->ops->l_flowctl_ops->vdev_pause(vdev, reason);
- return;
- }
- static inline void
- cdp_fc_vdev_unpause(ol_txrx_soc_handle soc, void *vdev,
- uint32_t reason)
- {
- if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
- QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
- "%s invalid instance", __func__);
- return;
- }
- if (soc->ops->l_flowctl_ops->vdev_unpause)
- return soc->ops->l_flowctl_ops->vdev_unpause(vdev, reason);
- return;
- }
|