Skip to content

Commit

Permalink
wifi: mt76: increase wcid size to 1088
Browse files Browse the repository at this point in the history
Increase wcid size to support up to 1024 station hw entries and
64 bcast/mcast hw entries.
This is the preliminary patch to add EHT support for mt7996.

Signed-off-by: Shayne Chen <[email protected]>
Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
csyuanc authored and nbd168 committed Feb 2, 2023
1 parent 02ec1f6 commit 9209294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mt76.h
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ enum mt76_wcid_flags {
MT_WCID_FLAG_HDR_TRANS,
};

#define MT76_N_WCIDS 544
#define MT76_N_WCIDS 1088

/* stored in ieee80211_tx_info::hw_queue */
#define MT_TX_HW_QUEUE_PHY GENMASK(3, 2)
Expand Down
2 changes: 1 addition & 1 deletion mt76_connac_mcu.h
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,7 @@ mt76_connac_mcu_gen_dl_mode(struct mt76_dev *dev, u8 feature_set, bool is_wa)
}

#define to_wcid_lo(id) FIELD_GET(GENMASK(7, 0), (u16)id)
#define to_wcid_hi(id) FIELD_GET(GENMASK(9, 8), (u16)id)
#define to_wcid_hi(id) FIELD_GET(GENMASK(10, 8), (u16)id)

static inline void
mt76_connac_mcu_get_wlan_idx(struct mt76_dev *dev, struct mt76_wcid *wcid,
Expand Down

0 comments on commit 9209294

Please sign in to comment.