/* * Copyright (c) 2020, The Linux Foundation. All rights reserved. * Copyright (c) 2022-2023 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. */ /* * DOC: contains coex south bound interface definitions */ #include #include #include #include "wlan_objmgr_pdev_obj.h" static inline struct wlan_lmac_if_coex_tx_ops * wlan_psoc_get_coex_txops(struct wlan_objmgr_psoc *psoc) { struct wlan_lmac_if_tx_ops *tx_ops; tx_ops = wlan_psoc_get_lmac_if_txops(psoc); if (!tx_ops) { coex_err("tx_ops is NULL"); return NULL; } return &tx_ops->coex_ops; } static inline struct wlan_lmac_if_coex_tx_ops * wlan_vdev_get_coex_txops(struct wlan_objmgr_vdev *vdev) { struct wlan_objmgr_psoc *psoc; psoc = wlan_vdev_get_psoc(vdev); if (!psoc) { coex_err("NULL psoc"); return NULL; } return wlan_psoc_get_coex_txops(psoc); } QDF_STATUS tgt_send_coex_config(struct wlan_objmgr_vdev *vdev, struct coex_config_params *param) { struct wlan_lmac_if_coex_tx_ops *coex_ops; struct wlan_objmgr_psoc *psoc; struct wlan_objmgr_pdev *pdev; if (!vdev) { coex_err("NULL vdev"); return QDF_STATUS_E_NULL_VALUE; } psoc = wlan_vdev_get_psoc(vdev); if (!psoc) { coex_err("NULL psoc"); return QDF_STATUS_E_NULL_VALUE; } pdev = wlan_vdev_get_pdev(vdev); if (!pdev) { coex_err("NULL pdev"); return QDF_STATUS_E_NULL_VALUE; } coex_ops = wlan_psoc_get_coex_txops(psoc); if (coex_ops && coex_ops->coex_config_send) return coex_ops->coex_config_send(pdev, param); return QDF_STATUS_SUCCESS; } QDF_STATUS tgt_send_coex_multi_config(struct wlan_objmgr_vdev *vdev, struct coex_multi_config *param) { struct wlan_lmac_if_coex_tx_ops *coex_ops; struct wlan_objmgr_psoc *psoc; struct wlan_objmgr_pdev *pdev; if (!vdev) { coex_err("NULL vdev"); return QDF_STATUS_E_NULL_VALUE; } psoc = wlan_vdev_get_psoc(vdev); if (!psoc) { coex_err("NULL psoc"); return QDF_STATUS_E_NULL_VALUE; } pdev = wlan_vdev_get_pdev(vdev); if (!pdev) { coex_err("NULL pdev"); return QDF_STATUS_E_NULL_VALUE; } coex_ops = wlan_psoc_get_coex_txops(psoc); if (coex_ops && coex_ops->coex_multi_config_send) return coex_ops->coex_multi_config_send(pdev, param); return QDF_STATUS_SUCCESS; } bool tgt_get_coex_multi_config_support(struct wlan_objmgr_psoc *psoc) { struct wlan_lmac_if_coex_tx_ops *coex_ops; coex_ops = wlan_psoc_get_coex_txops(psoc); if (coex_ops && coex_ops->coex_get_multi_config_support) return coex_ops->coex_get_multi_config_support(psoc); return false; } #ifdef WLAN_FEATURE_DBAM_CONFIG QDF_STATUS tgt_send_dbam_config(struct wlan_objmgr_vdev *vdev, struct coex_dbam_config_params *param) { struct wlan_lmac_if_dbam_tx_ops *dbam_tx_ops; struct wlan_objmgr_psoc *psoc; psoc = wlan_vdev_get_psoc(vdev); if (!psoc) { coex_err("NULL psoc"); return QDF_STATUS_E_NULL_VALUE; } dbam_tx_ops = wlan_psoc_get_dbam_tx_ops(psoc); if (dbam_tx_ops && dbam_tx_ops->set_dbam_config) return dbam_tx_ops->set_dbam_config(psoc, param); return QDF_STATUS_SUCCESS; } #endif