|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2016-2020 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
|
|
@@ -224,6 +224,42 @@ static QDF_STATUS target_if_nan_ndp_initiator_req(
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+static int target_if_nan_dmesg_handler(ol_scn_t scn, uint8_t *data,
|
|
|
+ uint32_t data_len)
|
|
|
+{
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct nan_dump_msg msg;
|
|
|
+ struct wmi_unified *wmi_handle;
|
|
|
+ struct wlan_objmgr_psoc *psoc;
|
|
|
+
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = wmi_extract_nan_msg(wmi_handle, data, &msg);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ target_if_err("parsing of event failed, %d", status);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!msg.msg) {
|
|
|
+ target_if_err("msg not present %d", msg.data_len);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ target_if_info("%s", msg.msg);
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static int target_if_ndp_initiator_rsp_handler(ol_scn_t scn, uint8_t *data,
|
|
|
uint32_t len)
|
|
|
{
|
|
@@ -968,6 +1004,15 @@ 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_nan_dmesg_event_id,
|
|
|
+ target_if_nan_dmesg_handler,
|
|
|
+ WMI_RX_UMAC_CTX);
|
|
|
+ if (ret) {
|
|
|
+ target_if_err("wmi event registration failed, ret: %d", ret);
|
|
|
+ target_if_nan_deregister_events(psoc);
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wmi_unified_register_event_handler(handle,
|
|
|
wmi_ndp_indication_event_id,
|
|
|
target_if_ndp_ind_handler,
|
|
@@ -1091,6 +1136,13 @@ QDF_STATUS target_if_nan_deregister_events(struct wlan_objmgr_psoc *psoc)
|
|
|
status = ret;
|
|
|
}
|
|
|
|
|
|
+ ret = wmi_unified_unregister_event_handler(handle,
|
|
|
+ wmi_nan_dmesg_event_id);
|
|
|
+ if (ret) {
|
|
|
+ target_if_err("wmi event deregistration failed, ret: %d", ret);
|
|
|
+ status = ret;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wmi_unified_unregister_event_handler(handle,
|
|
|
wmi_ndp_initiator_rsp_event_id);
|
|
|
if (ret) {
|