FW can support BACK window size 64 for performance improvements.
A new FW capability is added for notifying the host on the increased
max BACK win size support.
Defining WIL_MAX_AGG_WSIZE_64 and WIL_MAX_AMPDU_SIZE_128 to be used
in this case.
Signed-off-by: Maya Erez <merez@codeaurora.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
 
                wil->platform_ops.set_features(wil->platform_handle, features);
        }
+
+       if (test_bit(WMI_FW_CAPABILITY_BACK_WIN_SIZE_64,
+                    wil->fw_capabilities)) {
+               wil->max_agg_wsize = WIL_MAX_AGG_WSIZE_64;
+               wil->max_ampdu_size = WIL_MAX_AMPDU_SIZE_128;
+       } else {
+               wil->max_agg_wsize = WIL_MAX_AGG_WSIZE;
+               wil->max_ampdu_size = WIL_MAX_AMPDU_SIZE;
+       }
 }
 
 void wil_mbox_ring_le2cpus(struct wil6210_mbox_ring *r)
 
 /* ADDBA processing */
 static u16 wil_agg_size(struct wil6210_priv *wil, u16 req_agg_wsize)
 {
-       u16 max_agg_size = min_t(u16, WIL_MAX_AGG_WSIZE, WIL_MAX_AMPDU_SIZE /
+       u16 max_agg_size = min_t(u16, wil->max_agg_wsize, wil->max_ampdu_size /
                                 (mtu_max + WIL_MAX_MPDU_OVERHEAD));
 
        if (!req_agg_wsize)
        if (status == WLAN_STATUS_SUCCESS) {
                if (req_agg_wsize == 0) {
                        wil_dbg_misc(wil, "Suggest BACK wsize %d\n",
-                                    WIL_MAX_AGG_WSIZE);
-                       agg_wsize = WIL_MAX_AGG_WSIZE;
+                                    wil->max_agg_wsize);
+                       agg_wsize = wil->max_agg_wsize;
                } else {
                        agg_wsize = min_t(u16,
-                                         WIL_MAX_AGG_WSIZE, req_agg_wsize);
+                                         wil->max_agg_wsize, req_agg_wsize);
                }
        }
 
 
 #define WIL6210_NAPI_BUDGET    (16) /* arbitrary */
 #define WIL_MAX_AMPDU_SIZE     (64 * 1024) /* FW/HW limit */
 #define WIL_MAX_AGG_WSIZE      (32) /* FW/HW limit */
+#define WIL_MAX_AMPDU_SIZE_128 (128 * 1024) /* FW/HW limit */
+#define WIL_MAX_AGG_WSIZE_64   (64) /* FW/HW limit */
 #define WIL6210_MAX_STATUS_RINGS       (8)
 
 /* Hardware offload block adds the following:
        u8 boot_config;
 
        struct wil_fw_stats_global fw_stats_global;
+
+       u32 max_agg_wsize;
+       u32 max_ampdu_size;
 };
 
 #define wil_to_wiphy(i) (i->wiphy)
 
        WMI_FW_CAPABILITY_AP_SME_OFFLOAD_NONE           = 19,
        WMI_FW_CAPABILITY_MULTI_VIFS                    = 20,
        WMI_FW_CAPABILITY_FT_ROAMING                    = 21,
+       WMI_FW_CAPABILITY_BACK_WIN_SIZE_64              = 22,
        WMI_FW_CAPABILITY_AMSDU                         = 23,
        WMI_FW_CAPABILITY_MAX,
 };