qcacmn: Add support to send PASN commands

Add support to send below PASN commands:
WMI_RTT_PASN_AUTH_STATUS_CMD
WMI_RTT_PASN_DEAUTH_CMD
WMI_VDEV_SET_LTF_KEY_SEED_CMDID

Change-Id: I5a50a634317d0a692feee5be5a36da22b4c5d713
CRs-Fixed: 3154530
This commit is contained in:
Pragaspathi Thilagaraj
2022-02-07 01:14:11 +05:30
committed by Madan Koyyalamudi
parent e3e178489d
commit b7fa703306
25 changed files with 947 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 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
@@ -32,3 +33,13 @@ wmi_extract_install_key_comp_event(wmi_unified_t wmi_handle, void *evt_buf,
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_send_vdev_set_ltf_key_seed_cmd(wmi_unified_t wmi,
struct wlan_crypto_ltf_keyseed_data *data)
{
if (wmi->ops->send_vdev_set_ltf_key_seed_cmd)
return wmi->ops->send_vdev_set_ltf_key_seed_cmd(wmi, data);
return QDF_STATUS_E_FAILURE;
}