blob: 5a295967517fdb7db6d23a996ce9223ca25321e9 [file] [log] [blame]
developerc3a5f8d2023-08-29 09:50:57 +08001From cc7a9202984360cdc476d3aa860bebd9fc248a16 Mon Sep 17 00:00:00 2001
developerf6ebf632023-01-06 19:15:00 +08002From: Sujuan Chen <sujuan.chen@mediatek.com>
3Date: Fri, 6 Jan 2023 18:18:50 +0800
developerc3a5f8d2023-08-29 09:50:57 +08004Subject: [PATCH] wifi: mt76: mt7915: wed: add rxwi for further in chip rro
developerafd75872022-12-14 21:15:46 +08005
developerf6ebf632023-01-06 19:15:00 +08006Signed-off-by: Sujuan Chen <sujuan.chen@mediatek.com>
developerafd75872022-12-14 21:15:46 +08007---
developerc04f5402023-02-03 09:22:26 +08008 dma.c | 93 +++++++++++++++++++++++++------------------------
9 mac80211.c | 2 +-
10 mt76.h | 24 ++++++++-----
11 mt7915/dma.c | 2 --
developerc9233442023-04-04 06:06:17 +080012 mt7915/mmio.c | 29 +++++++--------
developerc04f5402023-02-03 09:22:26 +080013 mt7915/mt7915.h | 1 +
14 tx.c | 16 ++++-----
developerc9233442023-04-04 06:06:17 +080015 7 files changed, 87 insertions(+), 80 deletions(-)
developerafd75872022-12-14 21:15:46 +080016
17diff --git a/dma.c b/dma.c
developer849549c2023-08-02 17:26:48 +080018index 3047f8ba..b210e39c 100644
developerafd75872022-12-14 21:15:46 +080019--- a/dma.c
20+++ b/dma.c
21@@ -59,17 +59,17 @@ mt76_alloc_txwi(struct mt76_dev *dev)
22 return t;
23 }
24
25-static struct mt76_txwi_cache *
26+static struct mt76_rxwi_cache *
27 mt76_alloc_rxwi(struct mt76_dev *dev)
28 {
29- struct mt76_txwi_cache *t;
30+ struct mt76_rxwi_cache *r;
31
32- t = kzalloc(L1_CACHE_ALIGN(sizeof(*t)), GFP_ATOMIC);
33- if (!t)
34+ r = kzalloc(L1_CACHE_ALIGN(sizeof(*r)), GFP_ATOMIC);
35+ if (!r)
36 return NULL;
37
38- t->ptr = NULL;
39- return t;
40+ r->ptr = NULL;
41+ return r;
42 }
43
44 static struct mt76_txwi_cache *
45@@ -88,20 +88,20 @@ __mt76_get_txwi(struct mt76_dev *dev)
46 return t;
47 }
48
49-static struct mt76_txwi_cache *
50+static struct mt76_rxwi_cache *
51 __mt76_get_rxwi(struct mt76_dev *dev)
52 {
53- struct mt76_txwi_cache *t = NULL;
54+ struct mt76_rxwi_cache *r = NULL;
55
56- spin_lock(&dev->wed_lock);
57+ spin_lock(&dev->lock);
58 if (!list_empty(&dev->rxwi_cache)) {
59- t = list_first_entry(&dev->rxwi_cache, struct mt76_txwi_cache,
60+ r = list_first_entry(&dev->rxwi_cache, struct mt76_rxwi_cache,
61 list);
62- list_del(&t->list);
63+ list_del(&r->list);
64 }
65- spin_unlock(&dev->wed_lock);
66+ spin_unlock(&dev->lock);
67
68- return t;
69+ return r;
70 }
71
72 static struct mt76_txwi_cache *
73@@ -115,13 +115,13 @@ mt76_get_txwi(struct mt76_dev *dev)
74 return mt76_alloc_txwi(dev);
75 }
76
77-struct mt76_txwi_cache *
78+struct mt76_rxwi_cache *
79 mt76_get_rxwi(struct mt76_dev *dev)
80 {
81- struct mt76_txwi_cache *t = __mt76_get_rxwi(dev);
82+ struct mt76_rxwi_cache *r = __mt76_get_rxwi(dev);
83
84- if (t)
85- return t;
86+ if (r)
87+ return r;
88
89 return mt76_alloc_rxwi(dev);
90 }
91@@ -140,14 +140,14 @@ mt76_put_txwi(struct mt76_dev *dev, struct mt76_txwi_cache *t)
92 EXPORT_SYMBOL_GPL(mt76_put_txwi);
93
94 void
95-mt76_put_rxwi(struct mt76_dev *dev, struct mt76_txwi_cache *t)
96+mt76_put_rxwi(struct mt76_dev *dev, struct mt76_rxwi_cache *r)
97 {
98- if (!t)
99+ if (!r)
100 return;
101
102- spin_lock(&dev->wed_lock);
103- list_add(&t->list, &dev->rxwi_cache);
104- spin_unlock(&dev->wed_lock);
105+ spin_lock(&dev->lock);
106+ list_add(&r->list, &dev->rxwi_cache);
107+ spin_unlock(&dev->lock);
108 }
109 EXPORT_SYMBOL_GPL(mt76_put_rxwi);
110
111@@ -168,13 +168,13 @@ mt76_free_pending_txwi(struct mt76_dev *dev)
112 void
113 mt76_free_pending_rxwi(struct mt76_dev *dev)
114 {
115- struct mt76_txwi_cache *t;
116+ struct mt76_rxwi_cache *r;
117
118 local_bh_disable();
119- while ((t = __mt76_get_rxwi(dev)) != NULL) {
120- if (t->ptr)
developerc9233442023-04-04 06:06:17 +0800121- skb_free_frag(t->ptr);
developerafd75872022-12-14 21:15:46 +0800122- kfree(t);
123+ while ((r = __mt76_get_rxwi(dev)) != NULL) {
124+ if (r->ptr)
developerc9233442023-04-04 06:06:17 +0800125+ skb_free_frag(r->ptr);
developerafd75872022-12-14 21:15:46 +0800126+ kfree(r);
127 }
128 local_bh_enable();
129 }
developerc04f5402023-02-03 09:22:26 +0800130@@ -212,7 +212,7 @@ mt76_dma_add_rx_buf(struct mt76_dev *dev, struct mt76_queue *q,
developerf6ebf632023-01-06 19:15:00 +0800131 {
132 struct mt76_desc *desc = &q->desc[q->head];
133 struct mt76_queue_entry *entry = &q->entry[q->head];
developerc04f5402023-02-03 09:22:26 +0800134- struct mt76_txwi_cache *txwi = NULL;
135+ struct mt76_rxwi_cache *rxwi = NULL;
136 u32 buf1 = 0, ctrl;
137 int idx = q->head;
138 int rx_token;
139@@ -220,13 +220,13 @@ mt76_dma_add_rx_buf(struct mt76_dev *dev, struct mt76_queue *q,
140 ctrl = FIELD_PREP(MT_DMA_CTL_SD_LEN0, buf[0].len);
developerf6ebf632023-01-06 19:15:00 +0800141
developerc04f5402023-02-03 09:22:26 +0800142 if (mt76_queue_is_wed_rx(q)) {
143- txwi = mt76_get_rxwi(dev);
144- if (!txwi)
145+ rxwi = mt76_get_rxwi(dev);
146+ if (!rxwi)
147 return -ENOMEM;
developerf6ebf632023-01-06 19:15:00 +0800148
149- rx_token = mt76_rx_token_consume(dev, data, txwi, buf->addr);
150+ rx_token = mt76_rx_token_consume(dev, data, rxwi, buf->addr);
151 if (rx_token < 0) {
152- mt76_put_rxwi(dev, txwi);
153+ mt76_put_rxwi(dev, rxwi);
154 return -ENOMEM;
155 }
156
developerc04f5402023-02-03 09:22:26 +0800157@@ -241,7 +241,7 @@ mt76_dma_add_rx_buf(struct mt76_dev *dev, struct mt76_queue *q,
developerf6ebf632023-01-06 19:15:00 +0800158
159 entry->dma_addr[0] = buf->addr;
160 entry->dma_len[0] = buf->len;
161- entry->txwi = txwi;
162+ entry->rxwi = rxwi;
163 entry->buf = data;
164 entry->wcid = 0xffff;
165 entry->skip_buf1 = true;
developerc04f5402023-02-03 09:22:26 +0800166@@ -254,7 +254,7 @@ mt76_dma_add_rx_buf(struct mt76_dev *dev, struct mt76_queue *q,
developerf6ebf632023-01-06 19:15:00 +0800167 static int
developerafd75872022-12-14 21:15:46 +0800168 mt76_dma_add_buf(struct mt76_dev *dev, struct mt76_queue *q,
169 struct mt76_queue_buf *buf, int nbufs, u32 info,
170- struct sk_buff *skb, void *txwi)
171+ struct sk_buff *skb, void *txwi, void *rxwi)
172 {
173 struct mt76_queue_entry *entry;
174 struct mt76_desc *desc;
developerc04f5402023-02-03 09:22:26 +0800175@@ -307,6 +307,7 @@ mt76_dma_add_buf(struct mt76_dev *dev, struct mt76_queue *q,
developerafd75872022-12-14 21:15:46 +0800176 }
177
178 q->entry[idx].txwi = txwi;
179+ q->entry[idx].rxwi = rxwi;
180 q->entry[idx].skb = skb;
181 q->entry[idx].wcid = 0xffff;
182
developer4f0d84b2023-03-03 14:21:44 +0800183@@ -405,13 +406,13 @@ mt76_dma_get_buf(struct mt76_dev *dev, struct mt76_queue *q, int idx,
184 u32 buf1 = le32_to_cpu(desc->buf1);
developerafd75872022-12-14 21:15:46 +0800185 u32 id, find = 0;
developer4f0d84b2023-03-03 14:21:44 +0800186 u32 token = FIELD_GET(MT_DMA_CTL_TOKEN, buf1);
developerafd75872022-12-14 21:15:46 +0800187- struct mt76_txwi_cache *t;
188+ struct mt76_rxwi_cache *r;
189
190 if (*more) {
191 spin_lock_bh(&dev->rx_token_lock);
192
193- idr_for_each_entry(&dev->rx_token, t, id) {
194- if (t->dma_addr == le32_to_cpu(desc->buf0)) {
195+ idr_for_each_entry(&dev->rx_token, r, id) {
196+ if (r->dma_addr == le32_to_cpu(desc->buf0)) {
197 find = 1;
developerafd75872022-12-14 21:15:46 +0800198 token = id;
developerc04f5402023-02-03 09:22:26 +0800199
developer4f0d84b2023-03-03 14:21:44 +0800200@@ -428,19 +429,19 @@ mt76_dma_get_buf(struct mt76_dev *dev, struct mt76_queue *q, int idx,
developerafd75872022-12-14 21:15:46 +0800201 return NULL;
202 }
203
204- t = mt76_rx_token_release(dev, token);
205- if (!t)
206+ r = mt76_rx_token_release(dev, token);
207+ if (!r)
208 return NULL;
209
developerc9233442023-04-04 06:06:17 +0800210- dma_unmap_single(dev->dma_dev, t->dma_addr,
211+ dma_unmap_single(dev->dma_dev, r->dma_addr,
212 SKB_WITH_OVERHEAD(q->buf_size),
213 DMA_FROM_DEVICE);
developerafd75872022-12-14 21:15:46 +0800214
developerc04f5402023-02-03 09:22:26 +0800215- buf = t->ptr;
216- t->dma_addr = 0;
217- t->ptr = NULL;
218+ buf = r->ptr;
219+ r->dma_addr = 0;
220+ r->ptr = NULL;
developer28d04742023-01-18 14:02:40 +0800221
developerc04f5402023-02-03 09:22:26 +0800222- mt76_put_rxwi(dev, t);
223+ mt76_put_rxwi(dev, r);
developer28d04742023-01-18 14:02:40 +0800224
developerc04f5402023-02-03 09:22:26 +0800225 if (drop) {
226 u32 ctrl = le32_to_cpu(READ_ONCE(desc->ctrl));
developer2324aa22023-04-12 11:30:15 +0800227@@ -504,7 +505,7 @@ mt76_dma_tx_queue_skb_raw(struct mt76_dev *dev, struct mt76_queue *q,
developerafd75872022-12-14 21:15:46 +0800228 buf.len = skb->len;
229
230 spin_lock_bh(&q->lock);
231- mt76_dma_add_buf(dev, q, &buf, 1, tx_info, skb, NULL);
232+ mt76_dma_add_buf(dev, q, &buf, 1, tx_info, skb, NULL, NULL);
233 mt76_dma_kick_queue(dev, q);
234 spin_unlock_bh(&q->lock);
235
developer2324aa22023-04-12 11:30:15 +0800236@@ -584,7 +585,7 @@ mt76_dma_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q,
developerafd75872022-12-14 21:15:46 +0800237 goto unmap;
238
239 return mt76_dma_add_buf(dev, q, tx_info.buf, tx_info.nbuf,
240- tx_info.info, tx_info.skb, t);
241+ tx_info.info, tx_info.skb, t, NULL);
242
243 unmap:
244 for (n--; n > 0; n--)
developerafd75872022-12-14 21:15:46 +0800245diff --git a/mac80211.c b/mac80211.c
developer849549c2023-08-02 17:26:48 +0800246index 25ec4330..35cd297c 100644
developerafd75872022-12-14 21:15:46 +0800247--- a/mac80211.c
248+++ b/mac80211.c
developerbbd45e12023-05-19 08:22:06 +0800249@@ -603,7 +603,6 @@ mt76_alloc_device(struct device *pdev, unsigned int size,
developerafd75872022-12-14 21:15:46 +0800250 spin_lock_init(&dev->lock);
251 spin_lock_init(&dev->cc_lock);
252 spin_lock_init(&dev->status_lock);
253- spin_lock_init(&dev->wed_lock);
254 mutex_init(&dev->mutex);
255 init_waitqueue_head(&dev->tx_wait);
256
developer2157bf82023-06-26 02:27:49 +0800257@@ -636,6 +635,7 @@ mt76_alloc_device(struct device *pdev, unsigned int size,
developerafd75872022-12-14 21:15:46 +0800258 INIT_LIST_HEAD(&dev->txwi_cache);
259 INIT_LIST_HEAD(&dev->rxwi_cache);
260 dev->token_size = dev->drv->token_size;
261+ dev->rx_token_size = dev->drv->rx_token_size;
262
263 for (i = 0; i < ARRAY_SIZE(dev->q_rx); i++)
264 skb_queue_head_init(&dev->rx_skb[i]);
265diff --git a/mt76.h b/mt76.h
developerc3a5f8d2023-08-29 09:50:57 +0800266index 70146064..828d3e8b 100644
developerafd75872022-12-14 21:15:46 +0800267--- a/mt76.h
268+++ b/mt76.h
developer2157bf82023-06-26 02:27:49 +0800269@@ -173,6 +173,7 @@ struct mt76_queue_entry {
developerafd75872022-12-14 21:15:46 +0800270 };
271 union {
272 struct mt76_txwi_cache *txwi;
273+ struct mt76_rxwi_cache *rxwi;
274 struct urb *urb;
275 int buf_sz;
276 };
developerc3a5f8d2023-08-29 09:50:57 +0800277@@ -373,10 +374,15 @@ struct mt76_txwi_cache {
278
279 unsigned long jiffies;
developerafd75872022-12-14 21:15:46 +0800280
281- union {
282- struct sk_buff *skb;
283- void *ptr;
284- };
285+ struct sk_buff *skb;
286+};
287+
288+struct mt76_rxwi_cache {
289+ struct list_head list;
290+ dma_addr_t dma_addr;
291+
292+ void *ptr;
293+ u32 token;
294 };
295
296 struct mt76_rx_tid {
developerc3a5f8d2023-08-29 09:50:57 +0800297@@ -462,6 +468,7 @@ struct mt76_driver_ops {
developerafd75872022-12-14 21:15:46 +0800298 u16 txwi_size;
299 u16 token_size;
300 u8 mcs_rates;
301+ u16 rx_token_size;
302
303 void (*update_survey)(struct mt76_phy *phy);
304
developerc3a5f8d2023-08-29 09:50:57 +0800305@@ -835,7 +842,6 @@ struct mt76_dev {
developerafd75872022-12-14 21:15:46 +0800306
307 struct ieee80211_hw *hw;
308
309- spinlock_t wed_lock;
310 spinlock_t lock;
311 spinlock_t cc_lock;
312
developerc3a5f8d2023-08-29 09:50:57 +0800313@@ -1525,8 +1531,8 @@ mt76_tx_status_get_hw(struct mt76_dev *dev, struct sk_buff *skb)
developerafd75872022-12-14 21:15:46 +0800314 }
315
316 void mt76_put_txwi(struct mt76_dev *dev, struct mt76_txwi_cache *t);
317-void mt76_put_rxwi(struct mt76_dev *dev, struct mt76_txwi_cache *t);
318-struct mt76_txwi_cache *mt76_get_rxwi(struct mt76_dev *dev);
319+void mt76_put_rxwi(struct mt76_dev *dev, struct mt76_rxwi_cache *r);
320+struct mt76_rxwi_cache *mt76_get_rxwi(struct mt76_dev *dev);
321 void mt76_free_pending_rxwi(struct mt76_dev *dev);
322 void mt76_rx_complete(struct mt76_dev *dev, struct sk_buff_head *frames,
323 struct napi_struct *napi);
developerc3a5f8d2023-08-29 09:50:57 +0800324@@ -1681,9 +1687,9 @@ struct mt76_txwi_cache *
developerafd75872022-12-14 21:15:46 +0800325 mt76_token_release(struct mt76_dev *dev, int token, bool *wake);
326 int mt76_token_consume(struct mt76_dev *dev, struct mt76_txwi_cache **ptxwi);
327 void __mt76_set_tx_blocked(struct mt76_dev *dev, bool blocked);
328-struct mt76_txwi_cache *mt76_rx_token_release(struct mt76_dev *dev, int token);
329+struct mt76_rxwi_cache *mt76_rx_token_release(struct mt76_dev *dev, int token);
330 int mt76_rx_token_consume(struct mt76_dev *dev, void *ptr,
331- struct mt76_txwi_cache *r, dma_addr_t phys);
332+ struct mt76_rxwi_cache *r, dma_addr_t phys);
developerc9233442023-04-04 06:06:17 +0800333
334 static inline void mt76_set_tx_blocked(struct mt76_dev *dev, bool blocked)
developerafd75872022-12-14 21:15:46 +0800335 {
336diff --git a/mt7915/dma.c b/mt7915/dma.c
developer849549c2023-08-02 17:26:48 +0800337index 59a44d79..326c8c8c 100644
developerafd75872022-12-14 21:15:46 +0800338--- a/mt7915/dma.c
339+++ b/mt7915/dma.c
developer2324aa22023-04-12 11:30:15 +0800340@@ -509,7 +509,6 @@ int mt7915_dma_init(struct mt7915_dev *dev, struct mt7915_phy *phy2)
developerafd75872022-12-14 21:15:46 +0800341 mtk_wed_get_rx_capa(&mdev->mmio.wed)) {
342 dev->mt76.q_rx[MT_RXQ_MAIN].flags =
343 MT_WED_Q_RX(MT7915_RXQ_BAND0);
344- dev->mt76.rx_token_size += MT7915_RX_RING_SIZE;
345 }
346
347 ret = mt76_queue_alloc(dev, &dev->mt76.q_rx[MT_RXQ_MAIN],
developer2324aa22023-04-12 11:30:15 +0800348@@ -546,7 +545,6 @@ int mt7915_dma_init(struct mt7915_dev *dev, struct mt7915_phy *phy2)
developerafd75872022-12-14 21:15:46 +0800349 mtk_wed_get_rx_capa(&mdev->mmio.wed)) {
350 dev->mt76.q_rx[MT_RXQ_BAND1].flags =
351 MT_WED_Q_RX(MT7915_RXQ_BAND1);
352- dev->mt76.rx_token_size += MT7915_RX_RING_SIZE;
353 }
354
355 /* rx data queue for band1 */
356diff --git a/mt7915/mmio.c b/mt7915/mmio.c
developerc3a5f8d2023-08-29 09:50:57 +0800357index cae8b810..d7393901 100644
developerafd75872022-12-14 21:15:46 +0800358--- a/mt7915/mmio.c
359+++ b/mt7915/mmio.c
developerc3a5f8d2023-08-29 09:50:57 +0800360@@ -622,18 +622,18 @@ static void mt7915_mmio_wed_release_rx_buf(struct mtk_wed_device *wed)
developerc9233442023-04-04 06:06:17 +0800361 sizeof(struct skb_shared_info));
developerafd75872022-12-14 21:15:46 +0800362
developerafd75872022-12-14 21:15:46 +0800363 for (i = 0; i < dev->mt76.rx_token_size; i++) {
364- struct mt76_txwi_cache *t;
365+ struct mt76_rxwi_cache *r;
366
367- t = mt76_rx_token_release(&dev->mt76, i);
368- if (!t || !t->ptr)
369+ r = mt76_rx_token_release(&dev->mt76, i);
370+ if (!r || !r->ptr)
371 continue;
372
developerc9233442023-04-04 06:06:17 +0800373- dma_unmap_single(dev->mt76.dma_dev, t->dma_addr,
374+ dma_unmap_single(dev->mt76.dma_dev, r->dma_addr,
375 wed->wlan.rx_size, DMA_FROM_DEVICE);
376- __free_pages(virt_to_page(t->ptr), get_order(length));
developerafd75872022-12-14 21:15:46 +0800377- t->ptr = NULL;
developerc9233442023-04-04 06:06:17 +0800378+ __free_pages(virt_to_page(r->ptr), get_order(length));
developerafd75872022-12-14 21:15:46 +0800379+ r->ptr = NULL;
380
381- mt76_put_rxwi(&dev->mt76, t);
382+ mt76_put_rxwi(&dev->mt76, r);
383 }
384
385 mt76_free_pending_rxwi(&dev->mt76);
developerc3a5f8d2023-08-29 09:50:57 +0800386@@ -651,18 +651,18 @@ static u32 mt7915_mmio_wed_init_rx_buf(struct mtk_wed_device *wed, int size)
developerc9233442023-04-04 06:06:17 +0800387 sizeof(struct skb_shared_info));
388
389 for (i = 0; i < size; i++) {
390- struct mt76_txwi_cache *t = mt76_get_rxwi(&dev->mt76);
391+ struct mt76_rxwi_cache *r = mt76_get_rxwi(&dev->mt76);
392 dma_addr_t phy_addr;
393 struct page *page;
developerafd75872022-12-14 21:15:46 +0800394 int token;
developerc9233442023-04-04 06:06:17 +0800395 void *ptr;
developerafd75872022-12-14 21:15:46 +0800396
developerc04f5402023-02-03 09:22:26 +0800397- if (!t)
developerc04f5402023-02-03 09:22:26 +0800398+ if (!r)
399 goto unmap;
400
developerc9233442023-04-04 06:06:17 +0800401 page = __dev_alloc_pages(GFP_KERNEL, get_order(length));
402 if (!page) {
403- mt76_put_rxwi(&dev->mt76, t);
404+ mt76_put_rxwi(&dev->mt76, r);
405 goto unmap;
406 }
developerc04f5402023-02-03 09:22:26 +0800407
developerc3a5f8d2023-08-29 09:50:57 +0800408@@ -672,17 +672,17 @@ static u32 mt7915_mmio_wed_init_rx_buf(struct mtk_wed_device *wed, int size)
developerc9233442023-04-04 06:06:17 +0800409 DMA_TO_DEVICE);
410 if (unlikely(dma_mapping_error(dev->mt76.dev, phy_addr))) {
411 __free_pages(page, get_order(length));
412- mt76_put_rxwi(&dev->mt76, t);
413+ mt76_put_rxwi(&dev->mt76, r);
414 goto unmap;
415 }
416
417 desc->buf0 = cpu_to_le32(phy_addr);
418- token = mt76_rx_token_consume(&dev->mt76, ptr, t, phy_addr);
419+ token = mt76_rx_token_consume(&dev->mt76, ptr, r, phy_addr);
developerafd75872022-12-14 21:15:46 +0800420 if (token < 0) {
developerc9233442023-04-04 06:06:17 +0800421 dma_unmap_single(dev->mt76.dma_dev, phy_addr,
422 wed->wlan.rx_size, DMA_TO_DEVICE);
423 __free_pages(page, get_order(length));
424- mt76_put_rxwi(&dev->mt76, t);
425+ mt76_put_rxwi(&dev->mt76, r);
developerc04f5402023-02-03 09:22:26 +0800426 goto unmap;
developerc9233442023-04-04 06:06:17 +0800427 }
developerc04f5402023-02-03 09:22:26 +0800428
developerc3a5f8d2023-08-29 09:50:57 +0800429@@ -848,7 +848,7 @@ int mt7915_mmio_wed_init(struct mt7915_dev *dev, void *pdev_ptr,
developerc04f5402023-02-03 09:22:26 +0800430 wed->wlan.reset = mt7915_mmio_wed_reset;
431 wed->wlan.reset_complete = mt7915_mmio_wed_reset_complete;
developerafd75872022-12-14 21:15:46 +0800432
433- dev->mt76.rx_token_size = wed->wlan.rx_npkt;
434+ dev->mt76.rx_token_size += wed->wlan.rx_npkt;
435
436 if (mtk_wed_device_attach(wed))
437 return 0;
developerc3a5f8d2023-08-29 09:50:57 +0800438@@ -1056,6 +1056,7 @@ struct mt7915_dev *mt7915_mmio_probe(struct device *pdev,
developerafd75872022-12-14 21:15:46 +0800439 SURVEY_INFO_TIME_RX |
440 SURVEY_INFO_TIME_BSS_RX,
441 .token_size = MT7915_TOKEN_SIZE,
442+ .rx_token_size = MT7915_RX_TOKEN_SIZE,
443 .tx_prepare_skb = mt7915_tx_prepare_skb,
444 .tx_complete_skb = mt76_connac_tx_complete_skb,
445 .rx_skb = mt7915_queue_rx_skb,
446diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h
developerc3a5f8d2023-08-29 09:50:57 +0800447index c60521b1..4d3ff13b 100644
developerafd75872022-12-14 21:15:46 +0800448--- a/mt7915/mt7915.h
449+++ b/mt7915/mt7915.h
developerbbd45e12023-05-19 08:22:06 +0800450@@ -64,6 +64,7 @@
developerafd75872022-12-14 21:15:46 +0800451 #define MT7915_EEPROM_BLOCK_SIZE 16
developer4087b602023-03-13 16:13:18 +0800452 #define MT7915_HW_TOKEN_SIZE 7168
developerafd75872022-12-14 21:15:46 +0800453 #define MT7915_TOKEN_SIZE 8192
454+#define MT7915_RX_TOKEN_SIZE 4096
455
456 #define MT7915_CFEND_RATE_DEFAULT 0x49 /* OFDM 24M */
457 #define MT7915_CFEND_RATE_11B 0x03 /* 11B LP, 11M */
458diff --git a/tx.c b/tx.c
developer849549c2023-08-02 17:26:48 +0800459index 5d7bf340..2594a625 100644
developerafd75872022-12-14 21:15:46 +0800460--- a/tx.c
461+++ b/tx.c
developer2157bf82023-06-26 02:27:49 +0800462@@ -774,16 +774,16 @@ int mt76_token_consume(struct mt76_dev *dev, struct mt76_txwi_cache **ptxwi)
developerafd75872022-12-14 21:15:46 +0800463 EXPORT_SYMBOL_GPL(mt76_token_consume);
464
465 int mt76_rx_token_consume(struct mt76_dev *dev, void *ptr,
466- struct mt76_txwi_cache *t, dma_addr_t phys)
467+ struct mt76_rxwi_cache *r, dma_addr_t phys)
468 {
469 int token;
470
471 spin_lock_bh(&dev->rx_token_lock);
472- token = idr_alloc(&dev->rx_token, t, 0, dev->rx_token_size,
473+ token = idr_alloc(&dev->rx_token, r, 0, dev->rx_token_size,
474 GFP_ATOMIC);
475 if (token >= 0) {
476- t->ptr = ptr;
477- t->dma_addr = phys;
478+ r->ptr = ptr;
479+ r->dma_addr = phys;
480 }
481 spin_unlock_bh(&dev->rx_token_lock);
482
developer2157bf82023-06-26 02:27:49 +0800483@@ -820,15 +820,15 @@ mt76_token_release(struct mt76_dev *dev, int token, bool *wake)
developerafd75872022-12-14 21:15:46 +0800484 }
485 EXPORT_SYMBOL_GPL(mt76_token_release);
486
487-struct mt76_txwi_cache *
488+struct mt76_rxwi_cache *
489 mt76_rx_token_release(struct mt76_dev *dev, int token)
490 {
491- struct mt76_txwi_cache *t;
492+ struct mt76_rxwi_cache *r;
493
494 spin_lock_bh(&dev->rx_token_lock);
495- t = idr_remove(&dev->rx_token, token);
496+ r = idr_remove(&dev->rx_token, token);
497 spin_unlock_bh(&dev->rx_token_lock);
498
499- return t;
500+ return r;
501 }
502 EXPORT_SYMBOL_GPL(mt76_rx_token_release);
503--
developerc3a5f8d2023-08-29 09:50:57 +08005042.18.0
developerafd75872022-12-14 21:15:46 +0800505