qcacmn: Implement handling of mlo standby csa

Implement handling of mlo sta standby csa beacon
and initiate the transmission of a link bss request
command tlv to the firmware for standby link.

Change-Id: Ibdf903c69757b47f301ab9fa7c563407915532d6
CRs-Fixed: 3605764
This commit is contained in:
Aasir Rasheed
2023-09-03 23:00:45 +05:30
committed by Rahul Choudhary
parent a9d8a404fc
commit 760a93969c
10 changed files with 267 additions and 1 deletions

View File

@@ -161,6 +161,15 @@ QDF_STATUS wmi_send_mlo_link_state_request_cmd(
wmi_unified_t wmi,
struct wmi_host_link_state_params *params);
/**
* wmi_send_link_set_bss_params_cmd - send link set bss cmd
* @wmi: wmi handler
* @params: pointer to link bss param
*/
QDF_STATUS wmi_send_link_set_bss_params_cmd(
wmi_unified_t wmi,
struct wmi_host_link_bss_params *params);
/**
* wmi_extract_mlo_vdev_tid_to_link_map_event() - extract mlo t2lm info for vdev
* @wmi: wmi handle

View File

@@ -1209,6 +1209,18 @@ struct wmi_host_link_state_params {
uint8_t mld_mac[QDF_MAC_ADDR_SIZE];
};
/**
* struct wmi_host_link_bss_params - link bss params
* @link_id: link id
* @ap_mld_mac: ap mld mac address
* @chan: channel
*/
struct wmi_host_link_bss_params {
uint8_t link_id;
uint8_t ap_mld_mac[QDF_MAC_ADDR_SIZE];
struct wlan_channel chan;
};
#endif /* WLAN_FEATURE_11BE */
#ifdef WLAN_FEATURE_11BE_MLO

View File

@@ -3292,6 +3292,10 @@ QDF_STATUS (*send_mlo_link_state_request)(
wmi_unified_t wmi_handle,
struct wmi_host_link_state_params *params);
QDF_STATUS (*send_link_set_bss_params_cmd)(
wmi_unified_t wmi_handle,
struct wmi_host_link_bss_params *params);
QDF_STATUS (*extract_mlo_vdev_tid_to_link_map_event)(
struct wmi_unified *wmi_handle,
uint8_t *buf,