qcacmn: Add support to configure MSDU max aggregation limit

Currently FISA max msdu aggregation limit is fixed and always
programmed as 0xf, but there are platforms which support different
aggregation limit. So add support to configure different aggregation
limits while sending HTT FISA config message to F.W.

Change-Id: Icbf9b7a48a88dcbfb812e92c8f4032753fc07dc4
CRs-Fixed: 3542497
This commit is contained in:
Karthik Kantamneni
2023-06-27 17:20:44 +05:30
committed by Rahul Choudhary
父節點 9fad850066
當前提交 9b0e01604d
共有 2 個文件被更改,包括 4 次插入1 次删除

查看文件

@@ -783,10 +783,12 @@ struct dp_htt_rx_flow_fst_operation {
* struct dp_htt_rx_fisa_cfg - Rx fisa config
* @pdev_id: DP Pdev identifier
* @fisa_timeout: fisa aggregation timeout
* @max_aggr_supported: FISA max MSDU aggregation supported
*/
struct dp_htt_rx_fisa_cfg {
uint8_t pdev_id;
uint32_t fisa_timeout;
uint8_t max_aggr_supported;
};
/**