mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 12:57:06 +09:00
wifi: mt76: increase wcid size to 1088
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 <shayne.chen@mediatek.com> Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
committed by
Felix Fietkau
parent
6aa57e265a
commit
6b733f7c5a
@@ -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)
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user