|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. 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
|
|
@@ -96,9 +96,6 @@ static QDF_STATUS target_if_ndp_event_flush_cb(struct scheduler_msg *msg)
|
|
|
case NDP_SCHEDULE_UPDATE:
|
|
|
vdev = ((struct nan_datapath_sch_update_event *)ptr)->vdev;
|
|
|
break;
|
|
|
- case NDP_HOST_UPDATE:
|
|
|
- vdev = ((struct nan_datapath_host_event *)ptr)->vdev;
|
|
|
- break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
@@ -141,9 +138,6 @@ static QDF_STATUS target_if_ndp_event_dispatcher(struct scheduler_msg *msg)
|
|
|
case NDP_SCHEDULE_UPDATE:
|
|
|
vdev = ((struct nan_datapath_sch_update_event *)ptr)->vdev;
|
|
|
break;
|
|
|
- case NDP_HOST_UPDATE:
|
|
|
- vdev = ((struct nan_datapath_host_event *)ptr)->vdev;
|
|
|
- break;
|
|
|
default:
|
|
|
target_if_err("invalid msg type %d", msg->type);
|
|
|
status = QDF_STATUS_E_INVAL;
|
|
@@ -730,61 +724,6 @@ static QDF_STATUS target_if_nan_end_all_ndps_req(void *req)
|
|
|
return wmi_unified_terminate_all_ndps_req_cmd(wmi_handle, vdev_id);
|
|
|
}
|
|
|
|
|
|
-static int target_if_ndp_host_event_handler(ol_scn_t scn, uint8_t *data,
|
|
|
- uint32_t data_len)
|
|
|
-{
|
|
|
- QDF_STATUS status;
|
|
|
- struct wlan_objmgr_psoc *psoc;
|
|
|
- struct wmi_unified *wmi_handle;
|
|
|
- struct scheduler_msg msg = {0};
|
|
|
- struct nan_datapath_host_event *host_evt = NULL;
|
|
|
-
|
|
|
- psoc = target_if_get_psoc_from_scn_hdl(scn);
|
|
|
- if (!psoc) {
|
|
|
- target_if_err("psoc is null");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- wmi_handle = get_wmi_unified_hdl_from_psoc(psoc);
|
|
|
- if (!wmi_handle) {
|
|
|
- target_if_err("wmi_handle is null.");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- host_evt = qdf_mem_malloc(sizeof(*host_evt));
|
|
|
- if (!host_evt)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- status = wmi_extract_ndp_host_event(wmi_handle, data, host_evt);
|
|
|
- if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
- target_if_err("parsing of event failed, %d", status);
|
|
|
- qdf_mem_free(host_evt);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- if (!host_evt->vdev) {
|
|
|
- target_if_err("vdev is null");
|
|
|
- qdf_mem_free(host_evt);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- msg.bodyptr = host_evt;
|
|
|
- msg.type = NDP_HOST_UPDATE;
|
|
|
- msg.callback = target_if_ndp_event_dispatcher;
|
|
|
- msg.flush_callback = target_if_ndp_event_flush_cb;
|
|
|
- target_if_debug("NDP_HOST_UPDATE sent: %d", msg.type);
|
|
|
- status = scheduler_post_message(QDF_MODULE_ID_TARGET_IF,
|
|
|
- QDF_MODULE_ID_TARGET_IF,
|
|
|
- QDF_MODULE_ID_TARGET_IF, &msg);
|
|
|
- if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
- target_if_err("failed to post msg, status: %d", status);
|
|
|
- target_if_ndp_event_flush_cb(&msg);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
static QDF_STATUS target_if_nan_datapath_req(void *req, uint32_t req_type)
|
|
|
{
|
|
|
/* send cmd to fw */
|
|
@@ -1062,15 +1001,6 @@ QDF_STATUS target_if_nan_register_events(struct wlan_objmgr_psoc *psoc)
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
- ret = wmi_unified_register_event_handler(handle, wmi_ndp_event_id,
|
|
|
- target_if_ndp_host_event_handler,
|
|
|
- WMI_RX_UMAC_CTX);
|
|
|
- if (QDF_IS_STATUS_ERROR(ret)) {
|
|
|
- target_if_err("wmi event registration failed, ret: %d", ret);
|
|
|
- target_if_nan_deregister_events(psoc);
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
-
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|