123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /*
- * Copyright (c) 2017-2018 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.
- */
- /**
- * DOC: offload lmac interface APIs for tdls
- *
- */
- #include <qdf_mem.h>
- #include <target_if.h>
- #include <qdf_status.h>
- #include <wmi_unified_api.h>
- #include <wmi_unified_priv.h>
- #include <wmi_unified_param.h>
- #include <wlan_objmgr_psoc_obj.h>
- #include <wlan_tdls_tgt_api.h>
- #include <target_if_tdls.h>
- #include <cdp_txrx_peer_ops.h>
- #include <wlan_utility.h>
- static inline struct wlan_lmac_if_tdls_rx_ops *
- target_if_tdls_get_rx_ops(struct wlan_objmgr_psoc *psoc)
- {
- return &psoc->soc_cb.rx_ops.tdls_rx_ops;
- }
- static int
- target_if_tdls_event_handler(ol_scn_t scn, uint8_t *data, uint32_t datalen)
- {
- struct wlan_objmgr_psoc *psoc;
- struct wmi_unified *wmi_handle;
- struct wlan_lmac_if_tdls_rx_ops *tdls_rx_ops;
- struct tdls_event_info info;
- QDF_STATUS status;
- if (!scn || !data) {
- target_if_err("scn: 0x%pK, data: 0x%pK", scn, data);
- return -EINVAL;
- }
- psoc = target_if_get_psoc_from_scn_hdl(scn);
- if (!psoc) {
- target_if_err("null psoc");
- return -EINVAL;
- }
- wmi_handle = GET_WMI_HDL_FROM_PSOC(psoc);
- if (wmi_extract_vdev_tdls_ev_param(wmi_handle, data, &info)) {
- target_if_err("Failed to extract wmi tdls event");
- return -EINVAL;
- }
- tdls_rx_ops = target_if_tdls_get_rx_ops(psoc);
- if (tdls_rx_ops && tdls_rx_ops->tdls_ev_handler) {
- status = tdls_rx_ops->tdls_ev_handler(psoc, &info);
- if (QDF_IS_STATUS_ERROR(status)) {
- target_if_err("fail to handle tdls event");
- return -EINVAL;
- }
- }
- return 0;
- }
- QDF_STATUS
- target_if_tdls_update_fw_state(struct wlan_objmgr_psoc *psoc,
- struct tdls_info *param)
- {
- QDF_STATUS status;
- uint8_t tdls_state;
- if (TDLS_SUPPORT_EXP_TRIG_ONLY == param->tdls_state)
- tdls_state = WMI_TDLS_ENABLE_PASSIVE;
- else if (TDLS_SUPPORT_IMP_MODE == param->tdls_state ||
- TDLS_SUPPORT_EXT_CONTROL == param->tdls_state)
- tdls_state = WMI_TDLS_ENABLE_CONNECTION_TRACKER_IN_HOST;
- else
- tdls_state = WMI_TDLS_DISABLE;
- status = wmi_unified_update_fw_tdls_state_cmd(GET_WMI_HDL_FROM_PSOC(psoc),
- param, tdls_state);
- target_if_debug("vdev_id %d", param->vdev_id);
- return status;
- }
- QDF_STATUS
- target_if_tdls_update_peer_state(struct wlan_objmgr_psoc *psoc,
- struct tdls_peer_update_state *peer_params)
- {
- return QDF_STATUS_SUCCESS;
- }
- QDF_STATUS
- target_if_tdls_set_offchan_mode(struct wlan_objmgr_psoc *psoc,
- struct tdls_channel_switch_params *params)
- {
- QDF_STATUS status;
- status = wmi_unified_set_tdls_offchan_mode_cmd(GET_WMI_HDL_FROM_PSOC(psoc),
- params);
- return status;
- }
- QDF_STATUS
- target_if_tdls_set_uapsd(struct wlan_objmgr_psoc *psoc,
- struct sta_uapsd_trig_params *params)
- {
- QDF_STATUS ret;
- wmi_unified_t wmi_handle = GET_WMI_HDL_FROM_PSOC(psoc);
- if (!wmi_service_enabled(wmi_handle,
- wmi_sta_uapsd_basic_auto_trig) ||
- !wmi_service_enabled(wmi_handle,
- wmi_sta_uapsd_var_auto_trig)) {
- target_if_debug("Trigger uapsd is not supported vdev id %d",
- params->vdevid);
- return QDF_STATUS_SUCCESS;
- }
- ret = wmi_unified_set_sta_uapsd_auto_trig_cmd(GET_WMI_HDL_FROM_PSOC(psoc),
- params);
- if (QDF_IS_STATUS_ERROR(ret))
- target_if_err("Failed to send set uapsd param ret = %d", ret);
- return ret;
- }
- QDF_STATUS
- target_if_tdls_register_event_handler(struct wlan_objmgr_psoc *psoc,
- void *arg)
- {
- return wmi_unified_register_event(GET_WMI_HDL_FROM_PSOC(psoc),
- wmi_tdls_peer_event_id,
- target_if_tdls_event_handler);
- }
- QDF_STATUS
- target_if_tdls_unregister_event_handler(struct wlan_objmgr_psoc *psoc,
- void *arg)
- {
- return wmi_unified_unregister_event(GET_WMI_HDL_FROM_PSOC(psoc),
- wmi_tdls_peer_event_id);
- }
- QDF_STATUS
- target_if_tdls_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops)
- {
- struct wlan_lmac_if_tdls_tx_ops *tdls_txops;
- tdls_txops = &tx_ops->tdls_tx_ops;
- tdls_txops->update_fw_state = target_if_tdls_update_fw_state;
- tdls_txops->update_peer_state = target_if_tdls_update_peer_state;
- tdls_txops->set_offchan_mode = target_if_tdls_set_offchan_mode;
- tdls_txops->tdls_reg_ev_handler = target_if_tdls_register_event_handler;
- tdls_txops->tdls_unreg_ev_handler =
- target_if_tdls_unregister_event_handler;
- tdls_txops->tdls_set_uapsd = target_if_tdls_set_uapsd;
- return QDF_STATUS_SUCCESS;
- }
|