Commit af4a2f2f authored by Ryder Lee's avatar Ryder Lee Committed by Felix Fietkau

mt76: add support for HE RX rate reporting

Add support for encoding and reporting HE RX rates.
Signed-off-by: default avatarRyder Lee <ryder.lee@mediatek.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 7c4f744d
...@@ -676,7 +676,6 @@ mt76_rx_convert(struct mt76_dev *dev, struct sk_buff *skb, ...@@ -676,7 +676,6 @@ mt76_rx_convert(struct mt76_dev *dev, struct sk_buff *skb,
struct ieee80211_hw **hw, struct ieee80211_hw **hw,
struct ieee80211_sta **sta) struct ieee80211_sta **sta)
{ {
struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
struct mt76_rx_status mstat; struct mt76_rx_status mstat;
...@@ -688,6 +687,9 @@ mt76_rx_convert(struct mt76_dev *dev, struct sk_buff *skb, ...@@ -688,6 +687,9 @@ mt76_rx_convert(struct mt76_dev *dev, struct sk_buff *skb,
status->enc_flags = mstat.enc_flags; status->enc_flags = mstat.enc_flags;
status->encoding = mstat.encoding; status->encoding = mstat.encoding;
status->bw = mstat.bw; status->bw = mstat.bw;
status->he_ru = mstat.he_ru;
status->he_gi = mstat.he_gi;
status->he_dcm = mstat.he_dcm;
status->rate_idx = mstat.rate_idx; status->rate_idx = mstat.rate_idx;
status->nss = mstat.nss; status->nss = mstat.nss;
status->band = mstat.band; status->band = mstat.band;
......
...@@ -462,7 +462,8 @@ struct mt76_rx_status { ...@@ -462,7 +462,8 @@ struct mt76_rx_status {
u16 freq; u16 freq;
u32 flag; u32 flag;
u8 enc_flags; u8 enc_flags;
u8 encoding:2, bw:3; u8 encoding:2, bw:3, he_ru:3;
u8 he_gi:2, he_dcm:1;
u8 rate_idx; u8 rate_idx;
u8 nss; u8 nss;
u8 band; u8 band;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment