qcacmn: Add support for PN Rx Filter WMI

Add WMI support to set PN Rx Filter which is used to forward
frames to host upon PN failure.

Change-Id: Ib32abc681e17e1a6189a295314a497fc0c21b15a
CRs-Fixed: 3150832
This commit is contained in:
Pooventhiran G
2022-02-18 10:55:12 +05:30
committed by Madan Koyyalamudi
parent f5e2da429b
commit d0f0047cdd
5 changed files with 91 additions and 0 deletions

View File

@@ -8588,4 +8588,14 @@ struct wmi_host_inst_rssi_stats_resp {
uint32_t vdev_id;
};
#endif
/**
* struct vdev_pn_mgmt_rxfilter_params - Send PN mgmt RxFilter command params
* @vdev_id: vdev id
* @pn_rxfilter: Rx Filter
*/
struct vdev_pn_mgmt_rxfilter_params {
uint8_t vdev_id;
uint32_t pn_rxfilter;
};
#endif /* _WMI_UNIFIED_PARAM_H_ */