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

@@ -4411,6 +4411,28 @@ wmi_extract_pasn_peer_create_req(wmi_unified_t wmi, void *evt_buf,
QDF_STATUS
wmi_extract_pasn_peer_delete_req(wmi_unified_t wmi, void *evt_buf,
struct wifi_pos_pasn_peer_data *dst);
/**
* wmi_send_rtt_pasn_auth_status_cmd - Send PASN authentication status of all
* the PASN peers.
* @wmi: WMI handle
* @data: Auth status data
*
* Return: QDF_STATUS
*/
QDF_STATUS
wmi_send_rtt_pasn_auth_status_cmd(wmi_unified_t wmi,
struct wlan_pasn_auth_status *data);
/**
* wmi_send_rtt_pasn_deauth_cmd - Send RTT pasn deauthentication command
* @wmi: WMI handle
* @peer_mac: peer mac address
*
* Return: QDF_STATUS
*/
QDF_STATUS
wmi_send_rtt_pasn_deauth_cmd(wmi_unified_t wmi, struct qdf_mac_addr *peer_mac);
#endif
/**