qcacmn: Add HMWDS rem-addr support in Beryllium

Add HMWDS rem-addr support to delete AST WDS mac entries in
Beryllium chipsets.

Change-Id: I5623bac02b326d1d668ad5e1fdcfc3a9f8cbbb9c
CRs-Fixed: 3397961
このコミットが含まれているのは:
Abishek Ganapathy
2023-02-06 17:16:42 +05:30
committed by Madan Koyyalamudi
コミット ee1493dc9c
5個のファイルの変更108行の追加12行の削除

ファイルの表示

@@ -1258,6 +1258,22 @@ QDF_STATUS dp_peer_ast_hash_attach(struct dp_soc *soc);
*/
QDF_STATUS dp_peer_mec_hash_attach(struct dp_soc *soc);
/**
* dp_del_wds_entry_wrapper() - delete a WDS AST entry
* @soc: DP soc structure pointer
* @vdev_id: vdev_id
* @wds_macaddr: MAC address of ast node
* @type: type from enum cdp_txrx_ast_entry_type
* @delete_in_fw: Flag to indicate if entry needs to be deleted in fw
*
* This API is used to delete an AST entry from fw
*
* Return: None
*/
void dp_del_wds_entry_wrapper(struct dp_soc *soc, uint8_t vdev_id,
uint8_t *wds_macaddr, uint8_t type,
uint8_t delete_in_fw);
void dp_soc_wds_attach(struct dp_soc *soc);
/**