qcacmn: Additional RNR Cache to support 11BE and legacy TBTT info

Added additional RNR cache to support legacy and 11BE TBTT info.

Change-Id: I000c990e0cb4388a66c773672b47825acdd66153
CRs-Fixed: 3570430
Цей коміт міститься в:
Basamma Yakkanahalli
2023-07-11 06:12:16 +05:30
зафіксовано Rahul Choudhary
джерело 8af70480b3
коміт 0c9830a0c5

Переглянути файл

@@ -101,6 +101,7 @@ struct psoc_config {
* @psoc_vdev_rt: PSoC Vdev response timer * @psoc_vdev_rt: PSoC Vdev response timer
* @psoc_mlme_wakelock: Wakelock to prevent system going to suspend * @psoc_mlme_wakelock: Wakelock to prevent system going to suspend
* @rnr_6ghz_cache: Cache of 6Ghz vap in RNR ie format * @rnr_6ghz_cache: Cache of 6Ghz vap in RNR ie format
* @rnr_6ghz_cache_legacy: Legacy (13TBTT) cache of 6Ghz vap in RNR ie format
* @psoc_cfg: Psoc level configs * @psoc_cfg: Psoc level configs
*/ */
struct psoc_mlme_obj { struct psoc_mlme_obj {
@@ -111,6 +112,7 @@ struct psoc_mlme_obj {
struct psoc_mlme_wakelock psoc_mlme_wakelock; struct psoc_mlme_wakelock psoc_mlme_wakelock;
#endif #endif
struct wlan_6ghz_rnr_global_cache rnr_6ghz_cache[WLAN_UMAC_MAX_PDEVS]; struct wlan_6ghz_rnr_global_cache rnr_6ghz_cache[WLAN_UMAC_MAX_PDEVS];
struct wlan_6ghz_rnr_global_cache rnr_6ghz_cache_legacy[WLAN_UMAC_MAX_PDEVS];
struct psoc_config psoc_cfg; struct psoc_config psoc_cfg;
}; };