wil6210: fix race condition between BACK event and Rx data
[deliverable/linux.git] / drivers / net / wireless / ath / wil6210 / txrx.c
CommitLineData
2be7d22f 1/*
02525a79 2 * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
2be7d22f
VK
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
2be7d22f 17#include <linux/etherdevice.h>
2be7d22f
VK
18#include <net/ieee80211_radiotap.h>
19#include <linux/if_arp.h>
20#include <linux/moduleparam.h>
504937d4
KE
21#include <linux/ip.h>
22#include <linux/ipv6.h>
23#include <net/ipv6.h>
0786dc4e 24#include <linux/prefetch.h>
2be7d22f
VK
25
26#include "wil6210.h"
27#include "wmi.h"
28#include "txrx.h"
98658095 29#include "trace.h"
2be7d22f
VK
30
31static bool rtap_include_phy_info;
32module_param(rtap_include_phy_info, bool, S_IRUGO);
33MODULE_PARM_DESC(rtap_include_phy_info,
34 " Include PHY info in the radiotap header, default - no");
35
36static inline int wil_vring_is_empty(struct vring *vring)
37{
38 return vring->swhead == vring->swtail;
39}
40
41static inline u32 wil_vring_next_tail(struct vring *vring)
42{
43 return (vring->swtail + 1) % vring->size;
44}
45
46static inline void wil_vring_advance_head(struct vring *vring, int n)
47{
48 vring->swhead = (vring->swhead + n) % vring->size;
49}
50
51static inline int wil_vring_is_full(struct vring *vring)
52{
53 return wil_vring_next_tail(vring) == vring->swhead;
54}
8fe59627 55
2be7d22f
VK
56/*
57 * Available space in Tx Vring
58 */
59static inline int wil_vring_avail_tx(struct vring *vring)
60{
61 u32 swhead = vring->swhead;
62 u32 swtail = vring->swtail;
63 int used = (vring->size + swhead - swtail) % vring->size;
64
65 return vring->size - used - 1;
66}
67
5bb6423e
VK
68/**
69 * wil_vring_wmark_low - low watermark for available descriptor space
70 */
71static inline int wil_vring_wmark_low(struct vring *vring)
72{
73 return vring->size/8;
74}
75
76/**
77 * wil_vring_wmark_high - high watermark for available descriptor space
78 */
79static inline int wil_vring_wmark_high(struct vring *vring)
80{
81 return vring->size/4;
82}
83
2be7d22f
VK
84static int wil_vring_alloc(struct wil6210_priv *wil, struct vring *vring)
85{
86 struct device *dev = wil_to_dev(wil);
87 size_t sz = vring->size * sizeof(vring->va[0]);
88 uint i;
89
9cf10d62
VK
90 wil_dbg_misc(wil, "%s()\n", __func__);
91
2be7d22f
VK
92 BUILD_BUG_ON(sizeof(vring->va[0]) != 32);
93
94 vring->swhead = 0;
95 vring->swtail = 0;
f88f113a 96 vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
2be7d22f 97 if (!vring->ctx) {
2be7d22f
VK
98 vring->va = NULL;
99 return -ENOMEM;
100 }
101 /*
102 * vring->va should be aligned on its size rounded up to power of 2
103 * This is granted by the dma_alloc_coherent
104 */
105 vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
106 if (!vring->va) {
2be7d22f
VK
107 kfree(vring->ctx);
108 vring->ctx = NULL;
109 return -ENOMEM;
110 }
111 /* initially, all descriptors are SW owned
112 * For Tx and Rx, ownership bit is at the same location, thus
113 * we can use any
114 */
115 for (i = 0; i < vring->size; i++) {
8fe59627
VK
116 volatile struct vring_tx_desc *_d = &vring->va[i].tx;
117
68ada71e 118 _d->dma.status = TX_DMA_STATUS_DU;
2be7d22f
VK
119 }
120
39c52ee8
VK
121 wil_dbg_misc(wil, "vring[%d] 0x%p:%pad 0x%p\n", vring->size,
122 vring->va, &vring->pa, vring->ctx);
2be7d22f
VK
123
124 return 0;
125}
126
2232abd5
VK
127static void wil_txdesc_unmap(struct device *dev, struct vring_tx_desc *d,
128 struct wil_ctx *ctx)
129{
130 dma_addr_t pa = wil_desc_addr(&d->dma.addr);
131 u16 dmalen = le16_to_cpu(d->dma.length);
8fe59627 132
2232abd5
VK
133 switch (ctx->mapped_as) {
134 case wil_mapped_as_single:
135 dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
136 break;
137 case wil_mapped_as_page:
138 dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
139 break;
140 default:
141 break;
142 }
143}
144
2be7d22f
VK
145static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
146 int tx)
147{
148 struct device *dev = wil_to_dev(wil);
149 size_t sz = vring->size * sizeof(vring->va[0]);
150
ef77285f
VK
151 if (tx) {
152 int vring_index = vring - wil->vring_tx;
153
154 wil_dbg_misc(wil, "free Tx vring %d [%d] 0x%p:%pad 0x%p\n",
155 vring_index, vring->size, vring->va,
156 &vring->pa, vring->ctx);
157 } else {
158 wil_dbg_misc(wil, "free Rx vring [%d] 0x%p:%pad 0x%p\n",
159 vring->size, vring->va,
160 &vring->pa, vring->ctx);
161 }
162
2be7d22f 163 while (!wil_vring_is_empty(vring)) {
68ada71e 164 dma_addr_t pa;
7e594444 165 u16 dmalen;
f88f113a 166 struct wil_ctx *ctx;
68ada71e 167
2be7d22f 168 if (tx) {
68ada71e
VK
169 struct vring_tx_desc dd, *d = &dd;
170 volatile struct vring_tx_desc *_d =
2be7d22f 171 &vring->va[vring->swtail].tx;
68ada71e 172
f88f113a 173 ctx = &vring->ctx[vring->swtail];
68ada71e 174 *d = *_d;
2232abd5 175 wil_txdesc_unmap(dev, d, ctx);
f88f113a
VK
176 if (ctx->skb)
177 dev_kfree_skb_any(ctx->skb);
2be7d22f
VK
178 vring->swtail = wil_vring_next_tail(vring);
179 } else { /* rx */
68ada71e
VK
180 struct vring_rx_desc dd, *d = &dd;
181 volatile struct vring_rx_desc *_d =
4d1ac072 182 &vring->va[vring->swhead].rx;
68ada71e 183
f88f113a 184 ctx = &vring->ctx[vring->swhead];
68ada71e
VK
185 *d = *_d;
186 pa = wil_desc_addr(&d->dma.addr);
7e594444
VK
187 dmalen = le16_to_cpu(d->dma.length);
188 dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
f88f113a 189 kfree_skb(ctx->skb);
2be7d22f
VK
190 wil_vring_advance_head(vring, 1);
191 }
192 }
193 dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
194 kfree(vring->ctx);
195 vring->pa = 0;
196 vring->va = NULL;
197 vring->ctx = NULL;
198}
199
200/**
201 * Allocate one skb for Rx VRING
202 *
203 * Safe to call from IRQ
204 */
205static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
206 u32 i, int headroom)
207{
208 struct device *dev = wil_to_dev(wil);
209 unsigned int sz = RX_BUF_LEN;
68ada71e 210 struct vring_rx_desc dd, *d = &dd;
8fe59627 211 volatile struct vring_rx_desc *_d = &vring->va[i].rx;
2be7d22f
VK
212 dma_addr_t pa;
213
214 /* TODO align */
215 struct sk_buff *skb = dev_alloc_skb(sz + headroom);
8fe59627 216
2be7d22f
VK
217 if (unlikely(!skb))
218 return -ENOMEM;
219
220 skb_reserve(skb, headroom);
221 skb_put(skb, sz);
222
223 pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
224 if (unlikely(dma_mapping_error(dev, pa))) {
225 kfree_skb(skb);
226 return -ENOMEM;
227 }
228
229 d->dma.d0 = BIT(9) | RX_DMA_D0_CMD_DMA_IT;
68ada71e 230 wil_desc_addr_set(&d->dma.addr, pa);
2be7d22f
VK
231 /* ip_length don't care */
232 /* b11 don't care */
233 /* error don't care */
234 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
7e594444 235 d->dma.length = cpu_to_le16(sz);
68ada71e 236 *_d = *d;
f88f113a 237 vring->ctx[i].skb = skb;
2be7d22f
VK
238
239 return 0;
240}
241
242/**
243 * Adds radiotap header
244 *
245 * Any error indicated as "Bad FCS"
246 *
247 * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
248 * - Rx descriptor: 32 bytes
249 * - Phy info
250 */
251static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
33e61169 252 struct sk_buff *skb)
2be7d22f
VK
253{
254 struct wireless_dev *wdev = wil->wdev;
255 struct wil6210_rtap {
256 struct ieee80211_radiotap_header rthdr;
257 /* fields should be in the order of bits in rthdr.it_present */
258 /* flags */
259 u8 flags;
260 /* channel */
261 __le16 chnl_freq __aligned(2);
262 __le16 chnl_flags;
263 /* MCS */
264 u8 mcs_present;
265 u8 mcs_flags;
266 u8 mcs_index;
267 } __packed;
268 struct wil6210_rtap_vendor {
269 struct wil6210_rtap rtap;
270 /* vendor */
271 u8 vendor_oui[3] __aligned(2);
272 u8 vendor_ns;
273 __le16 vendor_skip;
274 u8 vendor_data[0];
275 } __packed;
33e61169 276 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
2be7d22f
VK
277 struct wil6210_rtap_vendor *rtap_vendor;
278 int rtap_len = sizeof(struct wil6210_rtap);
279 int phy_length = 0; /* phy info header size, bytes */
280 static char phy_data[128];
281 struct ieee80211_channel *ch = wdev->preset_chandef.chan;
282
283 if (rtap_include_phy_info) {
284 rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
285 /* calculate additional length */
286 if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
287 /**
288 * PHY info starts from 8-byte boundary
289 * there are 8-byte lines, last line may be partially
290 * written (HW bug), thus FW configures for last line
291 * to be excessive. Driver skips this last line.
292 */
293 int len = min_t(int, 8 + sizeof(phy_data),
294 wil_rxdesc_phy_length(d));
8fe59627 295
2be7d22f
VK
296 if (len > 8) {
297 void *p = skb_tail_pointer(skb);
298 void *pa = PTR_ALIGN(p, 8);
8fe59627 299
2be7d22f
VK
300 if (skb_tailroom(skb) >= len + (pa - p)) {
301 phy_length = len - 8;
302 memcpy(phy_data, pa, phy_length);
303 }
304 }
305 }
306 rtap_len += phy_length;
307 }
308
309 if (skb_headroom(skb) < rtap_len &&
310 pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
311 wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
312 return;
313 }
314
315 rtap_vendor = (void *)skb_push(skb, rtap_len);
316 memset(rtap_vendor, 0, rtap_len);
317
318 rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
319 rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
320 rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
321 (1 << IEEE80211_RADIOTAP_FLAGS) |
322 (1 << IEEE80211_RADIOTAP_CHANNEL) |
323 (1 << IEEE80211_RADIOTAP_MCS));
324 if (d->dma.status & RX_DMA_STATUS_ERROR)
325 rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;
326
327 rtap_vendor->rtap.chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
328 rtap_vendor->rtap.chnl_flags = cpu_to_le16(0);
329
330 rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
331 rtap_vendor->rtap.mcs_flags = 0;
332 rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);
333
334 if (rtap_include_phy_info) {
335 rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
336 IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
337 /* OUI for Wilocity 04:ce:14 */
338 rtap_vendor->vendor_oui[0] = 0x04;
339 rtap_vendor->vendor_oui[1] = 0xce;
340 rtap_vendor->vendor_oui[2] = 0x14;
341 rtap_vendor->vendor_ns = 1;
342 /* Rx descriptor + PHY data */
343 rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
344 phy_length);
345 memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
346 memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
347 phy_length);
348 }
349}
350
351/*
352 * Fast swap in place between 2 registers
353 */
354static void wil_swap_u16(u16 *a, u16 *b)
355{
356 *a ^= *b;
357 *b ^= *a;
358 *a ^= *b;
359}
360
361static void wil_swap_ethaddr(void *data)
362{
363 struct ethhdr *eth = data;
364 u16 *s = (u16 *)eth->h_source;
365 u16 *d = (u16 *)eth->h_dest;
366
367 wil_swap_u16(s++, d++);
368 wil_swap_u16(s++, d++);
369 wil_swap_u16(s, d);
370}
371
372/**
373 * reap 1 frame from @swhead
374 *
33e61169
VK
375 * Rx descriptor copied to skb->cb
376 *
2be7d22f
VK
377 * Safe to call from IRQ
378 */
379static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
380 struct vring *vring)
381{
382 struct device *dev = wil_to_dev(wil);
383 struct net_device *ndev = wil_to_ndev(wil);
68ada71e
VK
384 volatile struct vring_rx_desc *_d;
385 struct vring_rx_desc *d;
2be7d22f
VK
386 struct sk_buff *skb;
387 dma_addr_t pa;
388 unsigned int sz = RX_BUF_LEN;
7e594444 389 u16 dmalen;
2be7d22f
VK
390 u8 ftype;
391 u8 ds_bits;
c8b78b5f
VK
392 int cid;
393 struct wil_net_stats *stats;
394
33e61169
VK
395 BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
396
2be7d22f
VK
397 if (wil_vring_is_empty(vring))
398 return NULL;
399
8fe59627 400 _d = &vring->va[vring->swhead].rx;
68ada71e 401 if (!(_d->dma.status & RX_DMA_STATUS_DU)) {
2be7d22f
VK
402 /* it is not error, we just reached end of Rx done area */
403 return NULL;
404 }
405
f88f113a 406 skb = vring->ctx[vring->swhead].skb;
68ada71e
VK
407 d = wil_skb_rxdesc(skb);
408 *d = *_d;
409 pa = wil_desc_addr(&d->dma.addr);
f88f113a 410 vring->ctx[vring->swhead].skb = NULL;
68ada71e
VK
411 wil_vring_advance_head(vring, 1);
412
2be7d22f 413 dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
68ada71e
VK
414 dmalen = le16_to_cpu(d->dma.length);
415
416 trace_wil6210_rx(vring->swhead, d);
417 wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", vring->swhead, dmalen);
418 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_NONE, 32, 4,
419 (const void *)d, sizeof(*d), false);
2be7d22f 420
e270045b
VK
421 if (dmalen > sz) {
422 wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
110dea00 423 kfree_skb(skb);
e270045b
VK
424 return NULL;
425 }
7e594444 426 skb_trim(skb, dmalen);
33e61169 427
1cbbcb08
VK
428 prefetch(skb->data);
429
c0d37713
VK
430 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
431 skb->data, skb_headlen(skb), false);
432
c8b78b5f
VK
433 cid = wil_rxdesc_cid(d);
434 stats = &wil->sta[cid].stats;
435 stats->last_mcs_rx = wil_rxdesc_mcs(d);
2be7d22f
VK
436
437 /* use radiotap header only if required */
438 if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
33e61169 439 wil_rx_add_radiotap_header(wil, skb);
2be7d22f 440
2be7d22f
VK
441 /* no extra checks if in sniffer mode */
442 if (ndev->type != ARPHRD_ETHER)
443 return skb;
444 /*
445 * Non-data frames may be delivered through Rx DMA channel (ex: BAR)
446 * Driver should recognize it by frame type, that is found
447 * in Rx descriptor. If type is not data, it is 802.11 frame as is
448 */
68ada71e 449 ftype = wil_rxdesc_ftype(d) << 2;
2be7d22f 450 if (ftype != IEEE80211_FTYPE_DATA) {
7743882d 451 wil_dbg_txrx(wil, "Non-data frame ftype 0x%08x\n", ftype);
2be7d22f
VK
452 /* TODO: process it */
453 kfree_skb(skb);
454 return NULL;
455 }
456
457 if (skb->len < ETH_HLEN) {
458 wil_err(wil, "Short frame, len = %d\n", skb->len);
459 /* TODO: process it (i.e. BAR) */
460 kfree_skb(skb);
461 return NULL;
462 }
463
504937d4
KE
464 /* L4 IDENT is on when HW calculated checksum, check status
465 * and in case of error drop the packet
466 * higher stack layers will handle retransmission (if required)
467 */
468 if (d->dma.status & RX_DMA_STATUS_L4_IDENT) {
469 /* L4 protocol identified, csum calculated */
4a68ab10 470 if ((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0)
504937d4 471 skb->ip_summed = CHECKSUM_UNNECESSARY;
4a68ab10
VK
472 /* If HW reports bad checksum, let IP stack re-check it
473 * For example, HW don't understand Microsoft IP stack that
474 * mis-calculates TCP checksum - if it should be 0x0,
475 * it writes 0xffff in violation of RFC 1624
476 */
504937d4
KE
477 }
478
68ada71e 479 ds_bits = wil_rxdesc_ds_bits(d);
2be7d22f
VK
480 if (ds_bits == 1) {
481 /*
482 * HW bug - in ToDS mode, i.e. Rx on AP side,
483 * addresses get swapped
484 */
485 wil_swap_ethaddr(skb->data);
486 }
487
488 return skb;
489}
490
491/**
492 * allocate and fill up to @count buffers in rx ring
493 * buffers posted at @swtail
494 */
495static int wil_rx_refill(struct wil6210_priv *wil, int count)
496{
497 struct net_device *ndev = wil_to_ndev(wil);
498 struct vring *v = &wil->vring_rx;
499 u32 next_tail;
500 int rc = 0;
501 int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
502 WIL6210_RTAP_SIZE : 0;
503
504 for (; next_tail = wil_vring_next_tail(v),
505 (next_tail != v->swhead) && (count-- > 0);
506 v->swtail = next_tail) {
507 rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
508 if (rc) {
509 wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
510 rc, v->swtail);
511 break;
512 }
513 }
514 iowrite32(v->swtail, wil->csr + HOSTADDR(v->hwtail));
515
516 return rc;
517}
518
519/*
520 * Pass Rx packet to the netif. Update statistics.
e0287c4a 521 * Called in softirq context (NAPI poll).
2be7d22f 522 */
b4490f42 523void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
2be7d22f 524{
b5998e6a 525 gro_result_t rc;
c8b78b5f 526 struct wil6210_priv *wil = ndev_to_wil(ndev);
2be7d22f 527 unsigned int len = skb->len;
c8b78b5f
VK
528 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
529 int cid = wil_rxdesc_cid(d);
530 struct wil_net_stats *stats = &wil->sta[cid].stats;
2be7d22f 531
241804cb
VK
532 skb_orphan(skb);
533
b5998e6a 534 rc = napi_gro_receive(&wil->napi_rx, skb);
2be7d22f 535
b5998e6a
VK
536 if (unlikely(rc == GRO_DROP)) {
537 ndev->stats.rx_dropped++;
538 stats->rx_dropped++;
539 wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
540 } else {
2be7d22f 541 ndev->stats.rx_packets++;
c8b78b5f 542 stats->rx_packets++;
2be7d22f 543 ndev->stats.rx_bytes += len;
c8b78b5f 544 stats->rx_bytes += len;
2be7d22f 545 }
194b482b
VK
546 {
547 static const char * const gro_res_str[] = {
548 [GRO_MERGED] = "GRO_MERGED",
549 [GRO_MERGED_FREE] = "GRO_MERGED_FREE",
550 [GRO_HELD] = "GRO_HELD",
551 [GRO_NORMAL] = "GRO_NORMAL",
552 [GRO_DROP] = "GRO_DROP",
553 };
8fe59627 554 wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
194b482b
VK
555 len, gro_res_str[rc]);
556 }
2be7d22f
VK
557}
558
559/**
560 * Proceed all completed skb's from Rx VRING
561 *
e0287c4a 562 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
2be7d22f 563 */
e0287c4a 564void wil_rx_handle(struct wil6210_priv *wil, int *quota)
2be7d22f
VK
565{
566 struct net_device *ndev = wil_to_ndev(wil);
567 struct vring *v = &wil->vring_rx;
568 struct sk_buff *skb;
569
570 if (!v->va) {
571 wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
572 return;
573 }
7743882d 574 wil_dbg_txrx(wil, "%s()\n", __func__);
e0287c4a
VK
575 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
576 (*quota)--;
2be7d22f 577
2be7d22f
VK
578 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
579 skb->dev = ndev;
580 skb_reset_mac_header(skb);
581 skb->ip_summed = CHECKSUM_UNNECESSARY;
582 skb->pkt_type = PACKET_OTHERHOST;
583 skb->protocol = htons(ETH_P_802_2);
b4490f42 584 wil_netif_rx_any(skb, ndev);
2be7d22f 585 } else {
0bbc4ade
VK
586 struct ethhdr *eth = (void *)skb->data;
587
2be7d22f 588 skb->protocol = eth_type_trans(skb, ndev);
0bbc4ade
VK
589
590 if (is_unicast_ether_addr(eth->h_dest))
591 wil_rx_reorder(wil, skb);
592 else
593 wil_netif_rx_any(skb, ndev);
2be7d22f 594 }
2be7d22f
VK
595 }
596 wil_rx_refill(wil, v->size);
597}
598
599int wil_rx_init(struct wil6210_priv *wil)
600{
2be7d22f
VK
601 struct vring *vring = &wil->vring_rx;
602 int rc;
2be7d22f 603
9cf10d62
VK
604 wil_dbg_misc(wil, "%s()\n", __func__);
605
8bf6adb9
VK
606 if (vring->va) {
607 wil_err(wil, "Rx ring already allocated\n");
608 return -EINVAL;
609 }
610
2be7d22f
VK
611 vring->size = WIL6210_RX_RING_SIZE;
612 rc = wil_vring_alloc(wil, vring);
613 if (rc)
614 return rc;
615
47e19af9 616 rc = wmi_rx_chain_add(wil, vring);
2be7d22f
VK
617 if (rc)
618 goto err_free;
619
2be7d22f
VK
620 rc = wil_rx_refill(wil, vring->size);
621 if (rc)
622 goto err_free;
623
624 return 0;
625 err_free:
626 wil_vring_free(wil, vring, 0);
627
628 return rc;
629}
630
631void wil_rx_fini(struct wil6210_priv *wil)
632{
633 struct vring *vring = &wil->vring_rx;
634
9cf10d62
VK
635 wil_dbg_misc(wil, "%s()\n", __func__);
636
2acb4220 637 if (vring->va)
2be7d22f 638 wil_vring_free(wil, vring, 0);
2be7d22f
VK
639}
640
641int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
642 int cid, int tid)
643{
644 int rc;
645 struct wmi_vring_cfg_cmd cmd = {
646 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
647 .vring_cfg = {
648 .tx_sw_ring = {
649 .max_mpdu_size = cpu_to_le16(TX_BUF_LEN),
b5d98e9d 650 .ring_size = cpu_to_le16(size),
2be7d22f
VK
651 },
652 .ringid = id,
a70abea5 653 .cidxtid = mk_cidxtid(cid, tid),
2be7d22f
VK
654 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
655 .mac_ctrl = 0,
656 .to_resolution = 0,
657 .agg_max_wsize = 16,
658 .schd_params = {
659 .priority = cpu_to_le16(0),
660 .timeslot_us = cpu_to_le16(0xfff),
661 },
662 },
663 };
664 struct {
665 struct wil6210_mbox_hdr_wmi wmi;
666 struct wmi_vring_cfg_done_event cmd;
667 } __packed reply;
668 struct vring *vring = &wil->vring_tx[id];
097638a0 669 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
2be7d22f 670
9cf10d62
VK
671 wil_dbg_misc(wil, "%s()\n", __func__);
672
2be7d22f
VK
673 if (vring->va) {
674 wil_err(wil, "Tx ring [%d] already allocated\n", id);
675 rc = -EINVAL;
676 goto out;
677 }
678
097638a0 679 memset(txdata, 0, sizeof(*txdata));
2be7d22f
VK
680 vring->size = size;
681 rc = wil_vring_alloc(wil, vring);
682 if (rc)
683 goto out;
684
93ae6d49
VK
685 wil->vring2cid_tid[id][0] = cid;
686 wil->vring2cid_tid[id][1] = tid;
687
2be7d22f 688 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
2be7d22f
VK
689
690 rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
691 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
692 if (rc)
693 goto out_free;
694
b8023177 695 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
2be7d22f
VK
696 wil_err(wil, "Tx config failed, status 0x%02x\n",
697 reply.cmd.status);
c331997b 698 rc = -EINVAL;
2be7d22f
VK
699 goto out_free;
700 }
701 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
702
097638a0
VK
703 txdata->enabled = 1;
704
2be7d22f
VK
705 return 0;
706 out_free:
707 wil_vring_free(wil, vring, 1);
708 out:
709
710 return rc;
711}
712
713void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
714{
715 struct vring *vring = &wil->vring_tx[id];
716
097638a0
VK
717 WARN_ON(!mutex_is_locked(&wil->mutex));
718
2be7d22f
VK
719 if (!vring->va)
720 return;
721
9cf10d62
VK
722 wil_dbg_misc(wil, "%s() id=%d\n", __func__, id);
723
097638a0
VK
724 /* make sure NAPI won't touch this vring */
725 wil->vring_tx_data[id].enabled = 0;
726 if (test_bit(wil_status_napi_en, &wil->status))
727 napi_synchronize(&wil->napi_tx);
728
2be7d22f
VK
729 wil_vring_free(wil, vring, 1);
730}
731
732static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
733 struct sk_buff *skb)
734{
3df2cd36
VK
735 int i;
736 struct ethhdr *eth = (void *)skb->data;
737 int cid = wil_find_cid(wil, eth->h_dest);
738
739 if (cid < 0)
740 return NULL;
2be7d22f 741
e58c9f70
VK
742 if (!wil->sta[cid].data_port_open &&
743 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
744 return NULL;
745
3df2cd36
VK
746 /* TODO: fix for multiple TID */
747 for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
748 if (wil->vring2cid_tid[i][0] == cid) {
749 struct vring *v = &wil->vring_tx[i];
8fe59627 750
3df2cd36
VK
751 wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
752 __func__, eth->h_dest, i);
753 if (v->va) {
754 return v;
755 } else {
756 wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
757 return NULL;
758 }
759 }
760 }
2be7d22f
VK
761
762 return NULL;
763}
764
fb3cac57
VK
765static void wil_set_da_for_vring(struct wil6210_priv *wil,
766 struct sk_buff *skb, int vring_index)
767{
768 struct ethhdr *eth = (void *)skb->data;
769 int cid = wil->vring2cid_tid[vring_index][0];
8fe59627 770
fb3cac57
VK
771 memcpy(eth->h_dest, wil->sta[cid].addr, ETH_ALEN);
772}
773
774static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
775 struct sk_buff *skb);
776/*
777 * Find 1-st vring and return it; set dest address for this vring in skb
778 * duplicate skb and send it to other active vrings
779 */
780static struct vring *wil_tx_bcast(struct wil6210_priv *wil,
8fe59627 781 struct sk_buff *skb)
fb3cac57
VK
782{
783 struct vring *v, *v2;
784 struct sk_buff *skb2;
785 int i;
e58c9f70 786 u8 cid;
fb3cac57 787
e58c9f70 788 /* find 1-st vring eligible for data */
fb3cac57
VK
789 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
790 v = &wil->vring_tx[i];
e58c9f70
VK
791 if (!v->va)
792 continue;
793
794 cid = wil->vring2cid_tid[i][0];
795 if (!wil->sta[cid].data_port_open)
796 continue;
797
798 goto found;
fb3cac57
VK
799 }
800
5aed1393 801 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
fb3cac57
VK
802
803 return NULL;
804
805found:
806 wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
807 wil_set_da_for_vring(wil, skb, i);
808
809 /* find other active vrings and duplicate skb for each */
810 for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
811 v2 = &wil->vring_tx[i];
812 if (!v2->va)
813 continue;
e58c9f70
VK
814 cid = wil->vring2cid_tid[i][0];
815 if (!wil->sta[cid].data_port_open)
816 continue;
817
fb3cac57
VK
818 skb2 = skb_copy(skb, GFP_ATOMIC);
819 if (skb2) {
820 wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
821 wil_set_da_for_vring(wil, skb2, i);
822 wil_tx_vring(wil, v2, skb2);
823 } else {
824 wil_err(wil, "skb_copy failed\n");
825 }
826 }
827
828 return v;
829}
830
99b55bd2
KE
831static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
832 int vring_index)
2be7d22f 833{
68ada71e 834 wil_desc_addr_set(&d->dma.addr, pa);
2be7d22f
VK
835 d->dma.ip_length = 0;
836 /* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
837 d->dma.b11 = 0/*14 | BIT(7)*/;
838 d->dma.error = 0;
839 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
7e594444 840 d->dma.length = cpu_to_le16((u16)len);
99b55bd2 841 d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
2be7d22f
VK
842 d->mac.d[0] = 0;
843 d->mac.d[1] = 0;
844 d->mac.d[2] = 0;
845 d->mac.ucode_cmd = 0;
846 /* use dst index 0 */
847 d->mac.d[1] |= BIT(MAC_CFG_DESC_TX_1_DST_INDEX_EN_POS) |
848 (0 << MAC_CFG_DESC_TX_1_DST_INDEX_POS);
849 /* translation type: 0 - bypass; 1 - 802.3; 2 - native wifi */
850 d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
851 (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
852
853 return 0;
854}
855
c236658f
VK
856static inline
857void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
858{
859 d->mac.d[2] |= ((nr_frags + 1) <<
860 MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
861}
862
504937d4 863static int wil_tx_desc_offload_cksum_set(struct wil6210_priv *wil,
8fe59627
VK
864 struct vring_tx_desc *d,
865 struct sk_buff *skb)
504937d4
KE
866{
867 int protocol;
868
869 if (skb->ip_summed != CHECKSUM_PARTIAL)
870 return 0;
871
df2d08ee
VK
872 d->dma.b11 = ETH_HLEN; /* MAC header length */
873
504937d4
KE
874 switch (skb->protocol) {
875 case cpu_to_be16(ETH_P_IP):
876 protocol = ip_hdr(skb)->protocol;
df2d08ee 877 d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
504937d4
KE
878 break;
879 case cpu_to_be16(ETH_P_IPV6):
880 protocol = ipv6_hdr(skb)->nexthdr;
881 break;
882 default:
883 return -EINVAL;
884 }
885
886 switch (protocol) {
887 case IPPROTO_TCP:
888 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
889 /* L4 header len: TCP header length */
890 d->dma.d0 |=
891 (tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
892 break;
893 case IPPROTO_UDP:
894 /* L4 header len: UDP header length */
895 d->dma.d0 |=
896 (sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
897 break;
898 default:
899 return -EINVAL;
900 }
901
902 d->dma.ip_length = skb_network_header_len(skb);
504937d4
KE
903 /* Enable TCP/UDP checksum */
904 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
905 /* Calculate pseudo-header */
906 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
907
908 return 0;
909}
910
2be7d22f
VK
911static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
912 struct sk_buff *skb)
913{
914 struct device *dev = wil_to_dev(wil);
68ada71e
VK
915 struct vring_tx_desc dd, *d = &dd;
916 volatile struct vring_tx_desc *_d;
2be7d22f
VK
917 u32 swhead = vring->swhead;
918 int avail = wil_vring_avail_tx(vring);
919 int nr_frags = skb_shinfo(skb)->nr_frags;
504937d4 920 uint f = 0;
2be7d22f 921 int vring_index = vring - wil->vring_tx;
7c0acf86 922 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
2be7d22f
VK
923 uint i = swhead;
924 dma_addr_t pa;
925
7743882d 926 wil_dbg_txrx(wil, "%s()\n", __func__);
2be7d22f 927
2be7d22f
VK
928 if (avail < 1 + nr_frags) {
929 wil_err(wil, "Tx ring full. No space for %d fragments\n",
930 1 + nr_frags);
931 return -ENOMEM;
932 }
8fe59627 933 _d = &vring->va[i].tx;
2be7d22f 934
8fe59627 935 pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
2be7d22f 936
39c52ee8
VK
937 wil_dbg_txrx(wil, "Tx skb %d bytes 0x%p -> %pad\n", skb_headlen(skb),
938 skb->data, &pa);
7743882d 939 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
2be7d22f
VK
940 skb->data, skb_headlen(skb), false);
941
942 if (unlikely(dma_mapping_error(dev, pa)))
943 return -EINVAL;
2232abd5 944 vring->ctx[i].mapped_as = wil_mapped_as_single;
2be7d22f 945 /* 1-st segment */
99b55bd2 946 wil_tx_desc_map(d, pa, skb_headlen(skb), vring_index);
504937d4
KE
947 /* Process TCP/UDP checksum offloading */
948 if (wil_tx_desc_offload_cksum_set(wil, d, skb)) {
949 wil_err(wil, "VRING #%d Failed to set cksum, drop packet\n",
950 vring_index);
951 goto dma_error;
952 }
953
c236658f
VK
954 vring->ctx[i].nr_frags = nr_frags;
955 wil_tx_desc_set_nr_frags(d, nr_frags);
68ada71e
VK
956 if (nr_frags)
957 *_d = *d;
958
2be7d22f 959 /* middle segments */
504937d4 960 for (; f < nr_frags; f++) {
2be7d22f
VK
961 const struct skb_frag_struct *frag =
962 &skb_shinfo(skb)->frags[f];
963 int len = skb_frag_size(frag);
8fe59627 964
2be7d22f 965 i = (swhead + f + 1) % vring->size;
8fe59627 966 _d = &vring->va[i].tx;
2be7d22f 967 pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
8fe59627 968 DMA_TO_DEVICE);
2be7d22f
VK
969 if (unlikely(dma_mapping_error(dev, pa)))
970 goto dma_error;
2232abd5 971 vring->ctx[i].mapped_as = wil_mapped_as_page;
99b55bd2 972 wil_tx_desc_map(d, pa, len, vring_index);
c236658f
VK
973 /* no need to check return code -
974 * if it succeeded for 1-st descriptor,
975 * it will succeed here too
976 */
977 wil_tx_desc_offload_cksum_set(wil, d, skb);
68ada71e 978 *_d = *d;
2be7d22f
VK
979 }
980 /* for the last seg only */
981 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
668b2bbd 982 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
2be7d22f 983 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
68ada71e 984 *_d = *d;
2be7d22f 985
6cdadd4d
VK
986 /* hold reference to skb
987 * to prevent skb release before accounting
988 * in case of immediate "tx done"
989 */
990 vring->ctx[i].skb = skb_get(skb);
991
7743882d 992 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_NONE, 32, 4,
2be7d22f
VK
993 (const void *)d, sizeof(*d), false);
994
7c0acf86
VK
995 if (wil_vring_is_empty(vring)) /* performance monitoring */
996 txdata->idle += get_cycles() - txdata->last_idle;
997
2be7d22f
VK
998 /* advance swhead */
999 wil_vring_advance_head(vring, nr_frags + 1);
7743882d 1000 wil_dbg_txrx(wil, "Tx swhead %d -> %d\n", swhead, vring->swhead);
98658095 1001 trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
2be7d22f 1002 iowrite32(vring->swhead, wil->csr + HOSTADDR(vring->hwtail));
2be7d22f
VK
1003
1004 return 0;
1005 dma_error:
1006 /* unmap what we have mapped */
c2a146f6
VK
1007 nr_frags = f + 1; /* frags mapped + one for skb head */
1008 for (f = 0; f < nr_frags; f++) {
c2a146f6 1009 struct wil_ctx *ctx;
7e594444 1010
2be7d22f 1011 i = (swhead + f) % vring->size;
c2a146f6 1012 ctx = &vring->ctx[i];
8fe59627 1013 _d = &vring->va[i].tx;
68ada71e
VK
1014 *d = *_d;
1015 _d->dma.status = TX_DMA_STATUS_DU;
2232abd5 1016 wil_txdesc_unmap(dev, d, ctx);
f88f113a
VK
1017
1018 if (ctx->skb)
1019 dev_kfree_skb_any(ctx->skb);
1020
1021 memset(ctx, 0, sizeof(*ctx));
2be7d22f
VK
1022 }
1023
1024 return -EINVAL;
1025}
1026
2be7d22f
VK
1027netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1028{
1029 struct wil6210_priv *wil = ndev_to_wil(ndev);
3df2cd36 1030 struct ethhdr *eth = (void *)skb->data;
2be7d22f 1031 struct vring *vring;
aa27deaa 1032 static bool pr_once_fw;
2be7d22f
VK
1033 int rc;
1034
7743882d 1035 wil_dbg_txrx(wil, "%s()\n", __func__);
2be7d22f 1036 if (!test_bit(wil_status_fwready, &wil->status)) {
aa27deaa
VK
1037 if (!pr_once_fw) {
1038 wil_err(wil, "FW not ready\n");
1039 pr_once_fw = true;
1040 }
2be7d22f
VK
1041 goto drop;
1042 }
1043 if (!test_bit(wil_status_fwconnected, &wil->status)) {
1044 wil_err(wil, "FW not connected\n");
1045 goto drop;
1046 }
1047 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
1048 wil_err(wil, "Xmit in monitor mode not supported\n");
1049 goto drop;
1050 }
aa27deaa 1051 pr_once_fw = false;
d58db4e4
VK
1052
1053 /* find vring */
8fe59627 1054 if (is_unicast_ether_addr(eth->h_dest))
3df2cd36 1055 vring = wil_find_tx_vring(wil, skb);
8fe59627 1056 else
fb3cac57 1057 vring = wil_tx_bcast(wil, skb);
d58db4e4 1058 if (!vring) {
5aed1393 1059 wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
d58db4e4 1060 goto drop;
2be7d22f 1061 }
8fe59627 1062
d58db4e4
VK
1063 /* set up vring entry */
1064 rc = wil_tx_vring(wil, vring, skb);
1065
2232abd5 1066 /* do we still have enough room in the vring? */
55f8f680 1067 if (wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring)) {
2232abd5 1068 netif_tx_stop_all_queues(wil_to_ndev(wil));
55f8f680
VK
1069 wil_dbg_txrx(wil, "netif_tx_stop : ring full\n");
1070 }
2232abd5 1071
2be7d22f
VK
1072 switch (rc) {
1073 case 0:
795ce734 1074 /* statistics will be updated on the tx_complete */
2be7d22f
VK
1075 dev_kfree_skb_any(skb);
1076 return NETDEV_TX_OK;
1077 case -ENOMEM:
1078 return NETDEV_TX_BUSY;
1079 default:
afda8bb5 1080 break; /* goto drop; */
2be7d22f
VK
1081 }
1082 drop:
2be7d22f
VK
1083 ndev->stats.tx_dropped++;
1084 dev_kfree_skb_any(skb);
1085
1086 return NET_XMIT_DROP;
1087}
1088
1089/**
1090 * Clean up transmitted skb's from the Tx VRING
1091 *
e0287c4a
VK
1092 * Return number of descriptors cleared
1093 *
2be7d22f
VK
1094 * Safe to call from IRQ
1095 */
e0287c4a 1096int wil_tx_complete(struct wil6210_priv *wil, int ringid)
2be7d22f 1097{
795ce734 1098 struct net_device *ndev = wil_to_ndev(wil);
2be7d22f
VK
1099 struct device *dev = wil_to_dev(wil);
1100 struct vring *vring = &wil->vring_tx[ringid];
097638a0 1101 struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
e0287c4a 1102 int done = 0;
c8b78b5f
VK
1103 int cid = wil->vring2cid_tid[ringid][0];
1104 struct wil_net_stats *stats = &wil->sta[cid].stats;
c236658f 1105 volatile struct vring_tx_desc *_d;
2be7d22f
VK
1106
1107 if (!vring->va) {
1108 wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
e0287c4a 1109 return 0;
2be7d22f
VK
1110 }
1111
097638a0
VK
1112 if (!txdata->enabled) {
1113 wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
1114 return 0;
1115 }
1116
7743882d 1117 wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
2be7d22f
VK
1118
1119 while (!wil_vring_is_empty(vring)) {
c236658f 1120 int new_swtail;
f88f113a 1121 struct wil_ctx *ctx = &vring->ctx[vring->swtail];
c236658f
VK
1122 /**
1123 * For the fragmented skb, HW will set DU bit only for the
1124 * last fragment. look for it
1125 */
1126 int lf = (vring->swtail + ctx->nr_frags) % vring->size;
1127 /* TODO: check we are not past head */
4de41bef 1128
c236658f
VK
1129 _d = &vring->va[lf].tx;
1130 if (!(_d->dma.status & TX_DMA_STATUS_DU))
2be7d22f
VK
1131 break;
1132
c236658f
VK
1133 new_swtail = (lf + 1) % vring->size;
1134 while (vring->swtail != new_swtail) {
1135 struct vring_tx_desc dd, *d = &dd;
c236658f 1136 u16 dmalen;
76dfa4b7
VK
1137 struct sk_buff *skb;
1138
1139 ctx = &vring->ctx[vring->swtail];
1140 skb = ctx->skb;
c236658f 1141 _d = &vring->va[vring->swtail].tx;
2be7d22f 1142
c236658f 1143 *d = *_d;
f88f113a 1144
c236658f
VK
1145 dmalen = le16_to_cpu(d->dma.length);
1146 trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
1147 d->dma.error);
1148 wil_dbg_txrx(wil,
1149 "Tx[%3d] : %d bytes, status 0x%02x err 0x%02x\n",
1150 vring->swtail, dmalen, d->dma.status,
1151 d->dma.error);
1152 wil_hex_dump_txrx("TxC ", DUMP_PREFIX_NONE, 32, 4,
1153 (const void *)d, sizeof(*d), false);
795ce734 1154
2232abd5 1155 wil_txdesc_unmap(dev, d, ctx);
c236658f
VK
1156
1157 if (skb) {
1158 if (d->dma.error == 0) {
1159 ndev->stats.tx_packets++;
1160 stats->tx_packets++;
1161 ndev->stats.tx_bytes += skb->len;
1162 stats->tx_bytes += skb->len;
1163 } else {
1164 ndev->stats.tx_errors++;
1165 stats->tx_errors++;
1166 }
1167
1168 dev_kfree_skb_any(skb);
1169 }
1170 memset(ctx, 0, sizeof(*ctx));
1171 /* There is no need to touch HW descriptor:
1172 * - ststus bit TX_DMA_STATUS_DU is set by design,
1173 * so hardware will not try to process this desc.,
1174 * - rest of descriptor will be initialized on Tx.
1175 */
1176 vring->swtail = wil_vring_next_tail(vring);
1177 done++;
2be7d22f 1178 }
2be7d22f 1179 }
67c3e1b4 1180
7c0acf86 1181 if (wil_vring_is_empty(vring)) { /* performance monitoring */
67c3e1b4 1182 wil_dbg_txrx(wil, "Ring[%2d] empty\n", ringid);
7c0acf86
VK
1183 txdata->last_idle = get_cycles();
1184 }
67c3e1b4 1185
55f8f680
VK
1186 if (wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring)) {
1187 wil_dbg_txrx(wil, "netif_tx_wake : ring not full\n");
2be7d22f 1188 netif_tx_wake_all_queues(wil_to_ndev(wil));
55f8f680 1189 }
e0287c4a
VK
1190
1191 return done;
2be7d22f 1192}
This page took 0.281251 seconds and 5 git commands to generate.