qcacmn: Do not subscribe for MC/BC frames for kiwi/peach

MC/BC frames are routed to FW ring based on routing config for MC/BC
data as SRC: FW2RXDMA and DST: RXDMA2DFW.
Data offload features in FW will take care of routing the MC/BC frames
to FW in both active and low power modes.

Make this change only for kiwi/peach using hal ops.

Change-Id: Id8665261a512c9db3e808f95082ff82b47f01ade
CRs-Fixed: 3464036
This commit is contained in:
Prakash Manjunathappa
2023-04-11 23:22:43 -07:00
committed by Madan Koyyalamudi
parent bbd8a57b8e
commit 50c9ab56a1
5 changed files with 47 additions and 2 deletions

View File

@@ -3126,4 +3126,18 @@ hal_get_tsf_time(hal_soc_handle_t hal_soc_hdl, uint32_t tsf_id,
hal_soc->ops->hal_get_tsf_time(hal_soc_hdl, tsf_id, mac_id,
tsf, tsf_sync_soc_time);
}
/**
* hal_rx_en_mcast_fp_data_filter() - Is mcast filter pass enabled
* @hal_soc_hdl: HAL soc handle
*
* Return: false for BE MCC, true for WIN
*/
static inline
bool hal_rx_en_mcast_fp_data_filter(hal_soc_handle_t hal_soc_hdl)
{
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
return hal_soc->ops->hal_rx_en_mcast_fp_data_filter();
}
#endif /* _HAL_RX_H */