qcacmn: Update bitmap of valid MLO links
Update the bitmap of valid MLO links. CRs-Fixed: 3166124 Change-Id: I295531325e7e1d787323b4bfff34e3cd1f9001ef
Dieser Commit ist enthalten in:

committet von
Madan Koyyalamudi

Ursprung
d74a42a737
Commit
3d17fd1925
@@ -131,7 +131,7 @@ mgmt_rx_reo_is_stale_frame(
|
||||
}
|
||||
|
||||
QDF_STATUS
|
||||
mgmt_rx_reo_validate_mlo_hw_link_info(struct wlan_objmgr_psoc *psoc)
|
||||
mgmt_rx_reo_validate_mlo_link_info(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
uint16_t valid_link_bitmap_shmem;
|
||||
uint16_t valid_link_bitmap;
|
||||
|
@@ -956,7 +956,7 @@ mgmt_rx_reo_list_max_size_exceeded(struct mgmt_rx_reo_list *reo_list)
|
||||
}
|
||||
|
||||
/**
|
||||
* mgmt_rx_reo_validate_mlo_hw_link_info() - Validate the MLO HW link info
|
||||
* mgmt_rx_reo_validate_mlo_link_info() - Validate the MLO HW link info
|
||||
* obtained from the global shared memory arena
|
||||
* @psoc: Pointer to psoc object
|
||||
*
|
||||
@@ -968,6 +968,6 @@ mgmt_rx_reo_list_max_size_exceeded(struct mgmt_rx_reo_list *reo_list)
|
||||
* Return: QDF_STATUS of operation
|
||||
*/
|
||||
QDF_STATUS
|
||||
mgmt_rx_reo_validate_mlo_hw_link_info(struct wlan_objmgr_psoc *psoc);
|
||||
mgmt_rx_reo_validate_mlo_link_info(struct wlan_objmgr_psoc *psoc);
|
||||
#endif /* WLAN_MGMT_RX_REO_SUPPORT */
|
||||
#endif /* _WLAN_MGMT_TXRX_RX_REO_I_H */
|
||||
|
@@ -210,7 +210,7 @@ QDF_STATUS
|
||||
wlan_mgmt_rx_reo_deinit(void);
|
||||
|
||||
/**
|
||||
* wlan_mgmt_rx_reo_validate_mlo_hw_link_info() - Validate the MLO HW link
|
||||
* wlan_mgmt_rx_reo_validate_mlo_link_info() - Validate the MLO HW link
|
||||
* related information extracted from the MLO global shared memory arena
|
||||
* @psoc: pointer to psoc object
|
||||
*
|
||||
@@ -222,7 +222,7 @@ wlan_mgmt_rx_reo_deinit(void);
|
||||
* Return: QDF_STATUS
|
||||
*/
|
||||
QDF_STATUS
|
||||
wlan_mgmt_rx_reo_validate_mlo_hw_link_info(struct wlan_objmgr_psoc *psoc);
|
||||
wlan_mgmt_rx_reo_validate_mlo_link_info(struct wlan_objmgr_psoc *psoc);
|
||||
|
||||
/**
|
||||
* wlan_mgmt_rx_reo_pdev_obj_open_notification() - pdev open handler for
|
||||
@@ -326,7 +326,7 @@ QDF_STATUS
|
||||
wlan_mgmt_rx_reo_print_egress_frame_debug_info(void);
|
||||
#else
|
||||
static inline QDF_STATUS
|
||||
wlan_mgmt_rx_reo_validate_mlo_hw_link_info(struct wlan_objmgr_psoc *psoc)
|
||||
wlan_mgmt_rx_reo_validate_mlo_link_info(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
return QDF_STATUS_SUCCESS;
|
||||
}
|
||||
|
@@ -166,9 +166,9 @@ qdf_export_symbol(wlan_get_pdev_from_mlo_link_id);
|
||||
#endif /* WLAN_MGMT_RX_REO_SIM_SUPPORT */
|
||||
|
||||
QDF_STATUS
|
||||
wlan_mgmt_rx_reo_validate_mlo_hw_link_info(struct wlan_objmgr_psoc *psoc)
|
||||
wlan_mgmt_rx_reo_validate_mlo_link_info(struct wlan_objmgr_psoc *psoc)
|
||||
{
|
||||
return mgmt_rx_reo_validate_mlo_hw_link_info(psoc);
|
||||
return mgmt_rx_reo_validate_mlo_link_info(psoc);
|
||||
}
|
||||
|
||||
QDF_STATUS
|
||||
|
@@ -22,6 +22,7 @@
|
||||
#include "wlan_lmac_if_def.h"
|
||||
#include <cdp_txrx_mlo.h>
|
||||
#endif
|
||||
#include <wlan_mgmt_txrx_rx_reo_utils_api.h>
|
||||
|
||||
#ifdef WLAN_MLO_MULTI_CHIP
|
||||
bool mlo_is_ml_soc(struct wlan_objmgr_psoc *psoc)
|
||||
@@ -201,6 +202,7 @@ void mlo_setup_link_ready(struct wlan_objmgr_pdev *pdev)
|
||||
{
|
||||
struct mlo_mgr_context *mlo_ctx = wlan_objmgr_get_mlo_ctx();
|
||||
uint8_t link_idx;
|
||||
uint16_t link_id;
|
||||
|
||||
if (!mlo_ctx || !mlo_ctx->setup_info.tot_links)
|
||||
return;
|
||||
@@ -222,6 +224,14 @@ void mlo_setup_link_ready(struct wlan_objmgr_pdev *pdev)
|
||||
mlo_ctx->setup_info.pdev_list[link_idx] = pdev;
|
||||
mlo_ctx->setup_info.state[link_idx] = MLO_LINK_SETUP_INIT;
|
||||
mlo_ctx->setup_info.num_links++;
|
||||
|
||||
link_id = wlan_mlo_get_pdev_hw_link_id(pdev);
|
||||
if (link_id == INVALID_HW_LINK_ID) {
|
||||
qdf_err("Invalid HW link id for the pdev");
|
||||
return;
|
||||
}
|
||||
mlo_ctx->setup_info.valid_link_bitmap |= (1 << link_id);
|
||||
|
||||
qdf_debug("pdev updated to mld link %d num_links %d",
|
||||
link_idx, mlo_ctx->setup_info.num_links);
|
||||
|
||||
@@ -231,9 +241,17 @@ void mlo_setup_link_ready(struct wlan_objmgr_pdev *pdev)
|
||||
mlo_ctx->setup_info.num_soc == mlo_ctx->setup_info.tot_socs) {
|
||||
struct wlan_objmgr_psoc *psoc;
|
||||
struct wlan_lmac_if_tx_ops *tx_ops;
|
||||
QDF_STATUS status;
|
||||
|
||||
psoc = wlan_pdev_get_psoc(pdev);
|
||||
tx_ops = wlan_psoc_get_lmac_if_txops(psoc);
|
||||
|
||||
status = wlan_mgmt_rx_reo_validate_mlo_link_info(psoc);
|
||||
if (QDF_IS_STATUS_ERROR(status)) {
|
||||
mlo_err("Failed to validate MLO HW link info");
|
||||
qdf_assert_always(0);
|
||||
}
|
||||
|
||||
qdf_debug("Trigger MLO Setup request");
|
||||
if (tx_ops && tx_ops->mops.target_if_mlo_setup_req) {
|
||||
tx_ops->mops.target_if_mlo_setup_req(
|
||||
@@ -290,6 +308,8 @@ static void mlo_setup_link_down(struct wlan_objmgr_psoc *psoc,
|
||||
struct wlan_objmgr_pdev *pdev;
|
||||
uint8_t link_idx;
|
||||
struct mlo_mgr_context *mlo_ctx = wlan_objmgr_get_mlo_ctx();
|
||||
uint16_t link_id;
|
||||
|
||||
pdev = (struct wlan_objmgr_pdev *)obj;
|
||||
|
||||
if (mlo_find_pdev_idx(pdev, &link_idx) != QDF_STATUS_SUCCESS) {
|
||||
@@ -300,6 +320,14 @@ static void mlo_setup_link_down(struct wlan_objmgr_psoc *psoc,
|
||||
mlo_ctx->setup_info.pdev_list[link_idx] = NULL;
|
||||
mlo_ctx->setup_info.state[link_idx] = MLO_LINK_UNINITIALIZED;
|
||||
mlo_ctx->setup_info.num_links--;
|
||||
|
||||
link_id = wlan_mlo_get_pdev_hw_link_id(pdev);
|
||||
if (link_id == INVALID_HW_LINK_ID) {
|
||||
qdf_err("Invalid HW link id for the pdev");
|
||||
return;
|
||||
}
|
||||
mlo_ctx->setup_info.valid_link_bitmap &= ~(1 << link_id);
|
||||
|
||||
qdf_debug("link down link_idx %d num_links %d",
|
||||
link_idx, mlo_ctx->setup_info.num_links);
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren