linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ryder Lee <ryder.lee@mediatek.com>
To: Felix Fietkau <nbd@nbd.name>,
	Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
Cc: Shayne Chen <shayne.chen@mediatek.com>,
	YF Luo <yf.luo@mediatek.com>,
	Yiwei Chung <yiwei.chung@mediatek.com>,
	Chih-Min Chen <chih-min.chen@mediatek.com>,
	Evelyn Tsai <evelyn.tsai@mediatek.com>,
	Sean Wang <sean.wang@mediatek.com>,
	<linux-wireless@vger.kernel.org>,
	<linux-mediatek@lists.infradead.org>,
	Ryder Lee <ryder.lee@mediatek.com>
Subject: [PATCH v1 04/16] mt76: adjust wcid size to support new 802.11ax generation
Date: Sat, 11 Apr 2020 06:51:19 +0800	[thread overview]
Message-ID: <8bf00322cb80c1ff2e9b137e97b987f1534a4d25.1586558901.git.ryder.lee@mediatek.com> (raw)
In-Reply-To: <cover.1586558901.git.ryder.lee@mediatek.com>

The newer 802.11ax devices (i.e. MT7915E) can connect to much more
peers than previous generations.

Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
---
 drivers/net/wireless/mediatek/mt76/mt76.h | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/net/wireless/mediatek/mt76/mt76.h b/drivers/net/wireless/mediatek/mt76/mt76.h
index 8d27af61b62e..c5e44c896097 100644
--- a/drivers/net/wireless/mediatek/mt76/mt76.h
+++ b/drivers/net/wireless/mediatek/mt76/mt76.h
@@ -181,7 +181,7 @@ enum mt76_wcid_flags {
 	MT_WCID_FLAG_PS,
 };
 
-#define MT76_N_WCIDS 128
+#define MT76_N_WCIDS 288
 
 /* stored in ieee80211_tx_info::hw_queue */
 #define MT_TX_HW_QUEUE_EXT_PHY		BIT(3)
@@ -201,7 +201,7 @@ struct mt76_wcid {
 	struct ewma_signal rssi;
 	int inactive_count;
 
-	u8 idx;
+	u16 idx;
 	u8 hw_key_idx;
 
 	u8 sta:1;
@@ -268,7 +268,7 @@ struct mt76_rx_tid {
 
 struct mt76_tx_cb {
 	unsigned long jiffies;
-	u8 wcid;
+	u16 wcid;
 	u8 pktid;
 	u8 flags;
 };
@@ -441,7 +441,7 @@ struct mt76_mmio {
 struct mt76_rx_status {
 	union {
 		struct mt76_wcid *wcid;
-		u8 wcid_idx;
+		u16 wcid_idx;
 	};
 
 	unsigned long reorder_time;
@@ -618,7 +618,7 @@ enum mt76_phy_type {
 #define mt76_hw(dev) (dev)->mphy.hw
 
 static inline struct ieee80211_hw *
-mt76_wcid_hw(struct mt76_dev *dev, u8 wcid)
+mt76_wcid_hw(struct mt76_dev *dev, u16 wcid)
 {
 	if (wcid <= MT76_N_WCIDS &&
 	    mt76_wcid_mask_test(dev->wcid_phy_mask, wcid))
@@ -786,7 +786,6 @@ static inline bool mt76_is_skb_pktid(u8 pktid)
 static inline u8 mt76_tx_power_nss_delta(u8 nss)
 {
 	static const u8 nss_delta[4] = { 0, 6, 9, 12 };
-
 	return nss_delta[nss - 1];
 }
 
-- 
2.18.0

  parent reply	other threads:[~2020-04-10 22:52 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-10 22:51 [PATCH v1 00/16] Add MediaTek IEEE 802.11ax devices - MT7915E Ryder Lee
2020-04-10 22:51 ` [PATCH v1 01/16] mt76: avoid rx reorder buffer overflow Ryder Lee
2020-04-10 22:51 ` [PATCH v1 02/16] mt76: add support for HE RX rate reporting Ryder Lee
2020-04-10 22:51 ` [PATCH v1 03/16] mt76: add Rx stats support for radiotap Ryder Lee
2020-04-10 22:51 ` Ryder Lee [this message]
2020-04-10 22:51 ` [PATCH v1 05/16] mt76: add HE phy modes and hardware queue Ryder Lee
2020-04-10 22:51 ` [PATCH v1 06/16] mt76: add mac80211 driver for MT7915 PCIe-based chipsets Ryder Lee
2020-04-10 22:51 ` [PATCH v1 07/16] mt76: mt7915: implement HE per-rate tx power support Ryder Lee
2020-04-10 22:51 ` [PATCH v1 08/16] mt76: mt7915: add offloading Tx AMSDU support Ryder Lee
2020-04-10 22:51 ` [PATCH v1 09/16] mt76: mt7915: register HE capabilities for each interface Ryder Lee
2020-04-10 22:51 ` [PATCH v1 10/16] mt76: mt7915: add HE bss_conf support for interfaces Ryder Lee
2020-04-10 22:51 ` [PATCH v1 11/16] mt76: mt7915: add HE capabilities support for peers Ryder Lee
2020-04-10 22:51 ` [PATCH v1 12/16] mt76: mt7915: add Rx radiotap header support Ryder Lee
2020-04-10 22:51 ` [PATCH v1 13/16] mt76: mt7915: add .sta_add_debugfs support Ryder Lee
2020-04-10 22:51 ` [PATCH v1 14/16] mt76: mt7915: add .sta_statistics support Ryder Lee
2020-04-10 22:51 ` [PATCH v1 15/16] mt76: mt7915: set peer Tx fixed rate through debugfs Ryder Lee
2020-04-10 22:51 ` [PATCH v1 16/16] mt76: mt7915: enable firmware module debug support Ryder Lee
2020-04-14  6:48 ` [PATCH v1 00/16] Add MediaTek IEEE 802.11ax devices - MT7915E Kalle Valo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8bf00322cb80c1ff2e9b137e97b987f1534a4d25.1586558901.git.ryder.lee@mediatek.com \
    --to=ryder.lee@mediatek.com \
    --cc=chih-min.chen@mediatek.com \
    --cc=evelyn.tsai@mediatek.com \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=lorenzo.bianconi@redhat.com \
    --cc=nbd@nbd.name \
    --cc=sean.wang@mediatek.com \
    --cc=shayne.chen@mediatek.com \
    --cc=yf.luo@mediatek.com \
    --cc=yiwei.chung@mediatek.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).