12be7d22fSVladimir Kondratiev /*
22be7d22fSVladimir Kondratiev  * Copyright (c) 2012 Qualcomm Atheros, Inc.
32be7d22fSVladimir Kondratiev  *
42be7d22fSVladimir Kondratiev  * Permission to use, copy, modify, and/or distribute this software for any
52be7d22fSVladimir Kondratiev  * purpose with or without fee is hereby granted, provided that the above
62be7d22fSVladimir Kondratiev  * copyright notice and this permission notice appear in all copies.
72be7d22fSVladimir Kondratiev  *
82be7d22fSVladimir Kondratiev  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
92be7d22fSVladimir Kondratiev  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
102be7d22fSVladimir Kondratiev  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
112be7d22fSVladimir Kondratiev  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
122be7d22fSVladimir Kondratiev  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
132be7d22fSVladimir Kondratiev  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
142be7d22fSVladimir Kondratiev  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
152be7d22fSVladimir Kondratiev  */
162be7d22fSVladimir Kondratiev 
172be7d22fSVladimir Kondratiev #include <linux/etherdevice.h>
182be7d22fSVladimir Kondratiev #include <net/ieee80211_radiotap.h>
192be7d22fSVladimir Kondratiev #include <linux/if_arp.h>
202be7d22fSVladimir Kondratiev #include <linux/moduleparam.h>
21504937d4SKirshenbaum Erez #include <linux/ip.h>
22504937d4SKirshenbaum Erez #include <linux/ipv6.h>
23504937d4SKirshenbaum Erez #include <net/ipv6.h>
240786dc4eSVladimir Kondratiev #include <linux/prefetch.h>
252be7d22fSVladimir Kondratiev 
262be7d22fSVladimir Kondratiev #include "wil6210.h"
272be7d22fSVladimir Kondratiev #include "wmi.h"
282be7d22fSVladimir Kondratiev #include "txrx.h"
2998658095SVladimir Kondratiev #include "trace.h"
302be7d22fSVladimir Kondratiev 
312be7d22fSVladimir Kondratiev static bool rtap_include_phy_info;
322be7d22fSVladimir Kondratiev module_param(rtap_include_phy_info, bool, S_IRUGO);
332be7d22fSVladimir Kondratiev MODULE_PARM_DESC(rtap_include_phy_info,
342be7d22fSVladimir Kondratiev 		 " Include PHY info in the radiotap header, default - no");
352be7d22fSVladimir Kondratiev 
362be7d22fSVladimir Kondratiev static inline int wil_vring_is_empty(struct vring *vring)
372be7d22fSVladimir Kondratiev {
382be7d22fSVladimir Kondratiev 	return vring->swhead == vring->swtail;
392be7d22fSVladimir Kondratiev }
402be7d22fSVladimir Kondratiev 
412be7d22fSVladimir Kondratiev static inline u32 wil_vring_next_tail(struct vring *vring)
422be7d22fSVladimir Kondratiev {
432be7d22fSVladimir Kondratiev 	return (vring->swtail + 1) % vring->size;
442be7d22fSVladimir Kondratiev }
452be7d22fSVladimir Kondratiev 
462be7d22fSVladimir Kondratiev static inline void wil_vring_advance_head(struct vring *vring, int n)
472be7d22fSVladimir Kondratiev {
482be7d22fSVladimir Kondratiev 	vring->swhead = (vring->swhead + n) % vring->size;
492be7d22fSVladimir Kondratiev }
502be7d22fSVladimir Kondratiev 
512be7d22fSVladimir Kondratiev static inline int wil_vring_is_full(struct vring *vring)
522be7d22fSVladimir Kondratiev {
532be7d22fSVladimir Kondratiev 	return wil_vring_next_tail(vring) == vring->swhead;
542be7d22fSVladimir Kondratiev }
552be7d22fSVladimir Kondratiev /*
562be7d22fSVladimir Kondratiev  * Available space in Tx Vring
572be7d22fSVladimir Kondratiev  */
582be7d22fSVladimir Kondratiev static inline int wil_vring_avail_tx(struct vring *vring)
592be7d22fSVladimir Kondratiev {
602be7d22fSVladimir Kondratiev 	u32 swhead = vring->swhead;
612be7d22fSVladimir Kondratiev 	u32 swtail = vring->swtail;
622be7d22fSVladimir Kondratiev 	int used = (vring->size + swhead - swtail) % vring->size;
632be7d22fSVladimir Kondratiev 
642be7d22fSVladimir Kondratiev 	return vring->size - used - 1;
652be7d22fSVladimir Kondratiev }
662be7d22fSVladimir Kondratiev 
672be7d22fSVladimir Kondratiev static int wil_vring_alloc(struct wil6210_priv *wil, struct vring *vring)
682be7d22fSVladimir Kondratiev {
692be7d22fSVladimir Kondratiev 	struct device *dev = wil_to_dev(wil);
702be7d22fSVladimir Kondratiev 	size_t sz = vring->size * sizeof(vring->va[0]);
712be7d22fSVladimir Kondratiev 	uint i;
722be7d22fSVladimir Kondratiev 
732be7d22fSVladimir Kondratiev 	BUILD_BUG_ON(sizeof(vring->va[0]) != 32);
742be7d22fSVladimir Kondratiev 
752be7d22fSVladimir Kondratiev 	vring->swhead = 0;
762be7d22fSVladimir Kondratiev 	vring->swtail = 0;
77f88f113aSVladimir Kondratiev 	vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
782be7d22fSVladimir Kondratiev 	if (!vring->ctx) {
792be7d22fSVladimir Kondratiev 		vring->va = NULL;
802be7d22fSVladimir Kondratiev 		return -ENOMEM;
812be7d22fSVladimir Kondratiev 	}
822be7d22fSVladimir Kondratiev 	/*
832be7d22fSVladimir Kondratiev 	 * vring->va should be aligned on its size rounded up to power of 2
842be7d22fSVladimir Kondratiev 	 * This is granted by the dma_alloc_coherent
852be7d22fSVladimir Kondratiev 	 */
862be7d22fSVladimir Kondratiev 	vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
872be7d22fSVladimir Kondratiev 	if (!vring->va) {
882be7d22fSVladimir Kondratiev 		kfree(vring->ctx);
892be7d22fSVladimir Kondratiev 		vring->ctx = NULL;
902be7d22fSVladimir Kondratiev 		return -ENOMEM;
912be7d22fSVladimir Kondratiev 	}
922be7d22fSVladimir Kondratiev 	/* initially, all descriptors are SW owned
932be7d22fSVladimir Kondratiev 	 * For Tx and Rx, ownership bit is at the same location, thus
942be7d22fSVladimir Kondratiev 	 * we can use any
952be7d22fSVladimir Kondratiev 	 */
962be7d22fSVladimir Kondratiev 	for (i = 0; i < vring->size; i++) {
9768ada71eSVladimir Kondratiev 		volatile struct vring_tx_desc *_d = &(vring->va[i].tx);
9868ada71eSVladimir Kondratiev 		_d->dma.status = TX_DMA_STATUS_DU;
992be7d22fSVladimir Kondratiev 	}
1002be7d22fSVladimir Kondratiev 
1017743882dSVladimir Kondratiev 	wil_dbg_misc(wil, "vring[%d] 0x%p:0x%016llx 0x%p\n", vring->size,
1022be7d22fSVladimir Kondratiev 		     vring->va, (unsigned long long)vring->pa, vring->ctx);
1032be7d22fSVladimir Kondratiev 
1042be7d22fSVladimir Kondratiev 	return 0;
1052be7d22fSVladimir Kondratiev }
1062be7d22fSVladimir Kondratiev 
1072be7d22fSVladimir Kondratiev static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
1082be7d22fSVladimir Kondratiev 			   int tx)
1092be7d22fSVladimir Kondratiev {
1102be7d22fSVladimir Kondratiev 	struct device *dev = wil_to_dev(wil);
1112be7d22fSVladimir Kondratiev 	size_t sz = vring->size * sizeof(vring->va[0]);
1122be7d22fSVladimir Kondratiev 
1132be7d22fSVladimir Kondratiev 	while (!wil_vring_is_empty(vring)) {
11468ada71eSVladimir Kondratiev 		dma_addr_t pa;
1157e594444SVladimir Kondratiev 		u16 dmalen;
116f88f113aSVladimir Kondratiev 		struct wil_ctx *ctx;
11768ada71eSVladimir Kondratiev 
1182be7d22fSVladimir Kondratiev 		if (tx) {
11968ada71eSVladimir Kondratiev 			struct vring_tx_desc dd, *d = &dd;
12068ada71eSVladimir Kondratiev 			volatile struct vring_tx_desc *_d =
1212be7d22fSVladimir Kondratiev 					&vring->va[vring->swtail].tx;
12268ada71eSVladimir Kondratiev 
123f88f113aSVladimir Kondratiev 			ctx = &vring->ctx[vring->swtail];
12468ada71eSVladimir Kondratiev 			*d = *_d;
12568ada71eSVladimir Kondratiev 			pa = wil_desc_addr(&d->dma.addr);
1267e594444SVladimir Kondratiev 			dmalen = le16_to_cpu(d->dma.length);
127f88f113aSVladimir Kondratiev 			if (vring->ctx[vring->swtail].mapped_as_page) {
1287e594444SVladimir Kondratiev 				dma_unmap_page(dev, pa, dmalen,
1292be7d22fSVladimir Kondratiev 					       DMA_TO_DEVICE);
130f88f113aSVladimir Kondratiev 			} else {
131f88f113aSVladimir Kondratiev 				dma_unmap_single(dev, pa, dmalen,
132f88f113aSVladimir Kondratiev 						 DMA_TO_DEVICE);
1332be7d22fSVladimir Kondratiev 			}
134f88f113aSVladimir Kondratiev 			if (ctx->skb)
135f88f113aSVladimir Kondratiev 				dev_kfree_skb_any(ctx->skb);
1362be7d22fSVladimir Kondratiev 			vring->swtail = wil_vring_next_tail(vring);
1372be7d22fSVladimir Kondratiev 		} else { /* rx */
13868ada71eSVladimir Kondratiev 			struct vring_rx_desc dd, *d = &dd;
13968ada71eSVladimir Kondratiev 			volatile struct vring_rx_desc *_d =
1404d1ac072SVladimir Kondratiev 					&vring->va[vring->swhead].rx;
14168ada71eSVladimir Kondratiev 
142f88f113aSVladimir Kondratiev 			ctx = &vring->ctx[vring->swhead];
14368ada71eSVladimir Kondratiev 			*d = *_d;
14468ada71eSVladimir Kondratiev 			pa = wil_desc_addr(&d->dma.addr);
1457e594444SVladimir Kondratiev 			dmalen = le16_to_cpu(d->dma.length);
1467e594444SVladimir Kondratiev 			dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
147f88f113aSVladimir Kondratiev 			kfree_skb(ctx->skb);
1482be7d22fSVladimir Kondratiev 			wil_vring_advance_head(vring, 1);
1492be7d22fSVladimir Kondratiev 		}
1502be7d22fSVladimir Kondratiev 	}
1512be7d22fSVladimir Kondratiev 	dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
1522be7d22fSVladimir Kondratiev 	kfree(vring->ctx);
1532be7d22fSVladimir Kondratiev 	vring->pa = 0;
1542be7d22fSVladimir Kondratiev 	vring->va = NULL;
1552be7d22fSVladimir Kondratiev 	vring->ctx = NULL;
1562be7d22fSVladimir Kondratiev }
1572be7d22fSVladimir Kondratiev 
1582be7d22fSVladimir Kondratiev /**
1592be7d22fSVladimir Kondratiev  * Allocate one skb for Rx VRING
1602be7d22fSVladimir Kondratiev  *
1612be7d22fSVladimir Kondratiev  * Safe to call from IRQ
1622be7d22fSVladimir Kondratiev  */
1632be7d22fSVladimir Kondratiev static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
1642be7d22fSVladimir Kondratiev 			       u32 i, int headroom)
1652be7d22fSVladimir Kondratiev {
1662be7d22fSVladimir Kondratiev 	struct device *dev = wil_to_dev(wil);
1672be7d22fSVladimir Kondratiev 	unsigned int sz = RX_BUF_LEN;
16868ada71eSVladimir Kondratiev 	struct vring_rx_desc dd, *d = &dd;
16968ada71eSVladimir Kondratiev 	volatile struct vring_rx_desc *_d = &(vring->va[i].rx);
1702be7d22fSVladimir Kondratiev 	dma_addr_t pa;
1712be7d22fSVladimir Kondratiev 
1722be7d22fSVladimir Kondratiev 	/* TODO align */
1732be7d22fSVladimir Kondratiev 	struct sk_buff *skb = dev_alloc_skb(sz + headroom);
1742be7d22fSVladimir Kondratiev 	if (unlikely(!skb))
1752be7d22fSVladimir Kondratiev 		return -ENOMEM;
1762be7d22fSVladimir Kondratiev 
1772be7d22fSVladimir Kondratiev 	skb_reserve(skb, headroom);
1782be7d22fSVladimir Kondratiev 	skb_put(skb, sz);
1792be7d22fSVladimir Kondratiev 
1802be7d22fSVladimir Kondratiev 	pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
1812be7d22fSVladimir Kondratiev 	if (unlikely(dma_mapping_error(dev, pa))) {
1822be7d22fSVladimir Kondratiev 		kfree_skb(skb);
1832be7d22fSVladimir Kondratiev 		return -ENOMEM;
1842be7d22fSVladimir Kondratiev 	}
1852be7d22fSVladimir Kondratiev 
1862be7d22fSVladimir Kondratiev 	d->dma.d0 = BIT(9) | RX_DMA_D0_CMD_DMA_IT;
18768ada71eSVladimir Kondratiev 	wil_desc_addr_set(&d->dma.addr, pa);
1882be7d22fSVladimir Kondratiev 	/* ip_length don't care */
1892be7d22fSVladimir Kondratiev 	/* b11 don't care */
1902be7d22fSVladimir Kondratiev 	/* error don't care */
1912be7d22fSVladimir Kondratiev 	d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
1927e594444SVladimir Kondratiev 	d->dma.length = cpu_to_le16(sz);
19368ada71eSVladimir Kondratiev 	*_d = *d;
194f88f113aSVladimir Kondratiev 	vring->ctx[i].skb = skb;
1952be7d22fSVladimir Kondratiev 
1962be7d22fSVladimir Kondratiev 	return 0;
1972be7d22fSVladimir Kondratiev }
1982be7d22fSVladimir Kondratiev 
1992be7d22fSVladimir Kondratiev /**
2002be7d22fSVladimir Kondratiev  * Adds radiotap header
2012be7d22fSVladimir Kondratiev  *
2022be7d22fSVladimir Kondratiev  * Any error indicated as "Bad FCS"
2032be7d22fSVladimir Kondratiev  *
2042be7d22fSVladimir Kondratiev  * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
2052be7d22fSVladimir Kondratiev  *  - Rx descriptor: 32 bytes
2062be7d22fSVladimir Kondratiev  *  - Phy info
2072be7d22fSVladimir Kondratiev  */
2082be7d22fSVladimir Kondratiev static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
20933e61169SVladimir Kondratiev 				       struct sk_buff *skb)
2102be7d22fSVladimir Kondratiev {
2112be7d22fSVladimir Kondratiev 	struct wireless_dev *wdev = wil->wdev;
2122be7d22fSVladimir Kondratiev 	struct wil6210_rtap {
2132be7d22fSVladimir Kondratiev 		struct ieee80211_radiotap_header rthdr;
2142be7d22fSVladimir Kondratiev 		/* fields should be in the order of bits in rthdr.it_present */
2152be7d22fSVladimir Kondratiev 		/* flags */
2162be7d22fSVladimir Kondratiev 		u8 flags;
2172be7d22fSVladimir Kondratiev 		/* channel */
2182be7d22fSVladimir Kondratiev 		__le16 chnl_freq __aligned(2);
2192be7d22fSVladimir Kondratiev 		__le16 chnl_flags;
2202be7d22fSVladimir Kondratiev 		/* MCS */
2212be7d22fSVladimir Kondratiev 		u8 mcs_present;
2222be7d22fSVladimir Kondratiev 		u8 mcs_flags;
2232be7d22fSVladimir Kondratiev 		u8 mcs_index;
2242be7d22fSVladimir Kondratiev 	} __packed;
2252be7d22fSVladimir Kondratiev 	struct wil6210_rtap_vendor {
2262be7d22fSVladimir Kondratiev 		struct wil6210_rtap rtap;
2272be7d22fSVladimir Kondratiev 		/* vendor */
2282be7d22fSVladimir Kondratiev 		u8 vendor_oui[3] __aligned(2);
2292be7d22fSVladimir Kondratiev 		u8 vendor_ns;
2302be7d22fSVladimir Kondratiev 		__le16 vendor_skip;
2312be7d22fSVladimir Kondratiev 		u8 vendor_data[0];
2322be7d22fSVladimir Kondratiev 	} __packed;
23333e61169SVladimir Kondratiev 	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
2342be7d22fSVladimir Kondratiev 	struct wil6210_rtap_vendor *rtap_vendor;
2352be7d22fSVladimir Kondratiev 	int rtap_len = sizeof(struct wil6210_rtap);
2362be7d22fSVladimir Kondratiev 	int phy_length = 0; /* phy info header size, bytes */
2372be7d22fSVladimir Kondratiev 	static char phy_data[128];
2382be7d22fSVladimir Kondratiev 	struct ieee80211_channel *ch = wdev->preset_chandef.chan;
2392be7d22fSVladimir Kondratiev 
2402be7d22fSVladimir Kondratiev 	if (rtap_include_phy_info) {
2412be7d22fSVladimir Kondratiev 		rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
2422be7d22fSVladimir Kondratiev 		/* calculate additional length */
2432be7d22fSVladimir Kondratiev 		if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
2442be7d22fSVladimir Kondratiev 			/**
2452be7d22fSVladimir Kondratiev 			 * PHY info starts from 8-byte boundary
2462be7d22fSVladimir Kondratiev 			 * there are 8-byte lines, last line may be partially
2472be7d22fSVladimir Kondratiev 			 * written (HW bug), thus FW configures for last line
2482be7d22fSVladimir Kondratiev 			 * to be excessive. Driver skips this last line.
2492be7d22fSVladimir Kondratiev 			 */
2502be7d22fSVladimir Kondratiev 			int len = min_t(int, 8 + sizeof(phy_data),
2512be7d22fSVladimir Kondratiev 					wil_rxdesc_phy_length(d));
2522be7d22fSVladimir Kondratiev 			if (len > 8) {
2532be7d22fSVladimir Kondratiev 				void *p = skb_tail_pointer(skb);
2542be7d22fSVladimir Kondratiev 				void *pa = PTR_ALIGN(p, 8);
2552be7d22fSVladimir Kondratiev 				if (skb_tailroom(skb) >= len + (pa - p)) {
2562be7d22fSVladimir Kondratiev 					phy_length = len - 8;
2572be7d22fSVladimir Kondratiev 					memcpy(phy_data, pa, phy_length);
2582be7d22fSVladimir Kondratiev 				}
2592be7d22fSVladimir Kondratiev 			}
2602be7d22fSVladimir Kondratiev 		}
2612be7d22fSVladimir Kondratiev 		rtap_len += phy_length;
2622be7d22fSVladimir Kondratiev 	}
2632be7d22fSVladimir Kondratiev 
2642be7d22fSVladimir Kondratiev 	if (skb_headroom(skb) < rtap_len &&
2652be7d22fSVladimir Kondratiev 	    pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
2662be7d22fSVladimir Kondratiev 		wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
2672be7d22fSVladimir Kondratiev 		return;
2682be7d22fSVladimir Kondratiev 	}
2692be7d22fSVladimir Kondratiev 
2702be7d22fSVladimir Kondratiev 	rtap_vendor = (void *)skb_push(skb, rtap_len);
2712be7d22fSVladimir Kondratiev 	memset(rtap_vendor, 0, rtap_len);
2722be7d22fSVladimir Kondratiev 
2732be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
2742be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
2752be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
2762be7d22fSVladimir Kondratiev 			(1 << IEEE80211_RADIOTAP_FLAGS) |
2772be7d22fSVladimir Kondratiev 			(1 << IEEE80211_RADIOTAP_CHANNEL) |
2782be7d22fSVladimir Kondratiev 			(1 << IEEE80211_RADIOTAP_MCS));
2792be7d22fSVladimir Kondratiev 	if (d->dma.status & RX_DMA_STATUS_ERROR)
2802be7d22fSVladimir Kondratiev 		rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;
2812be7d22fSVladimir Kondratiev 
2822be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
2832be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.chnl_flags = cpu_to_le16(0);
2842be7d22fSVladimir Kondratiev 
2852be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
2862be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.mcs_flags = 0;
2872be7d22fSVladimir Kondratiev 	rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);
2882be7d22fSVladimir Kondratiev 
2892be7d22fSVladimir Kondratiev 	if (rtap_include_phy_info) {
2902be7d22fSVladimir Kondratiev 		rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
2912be7d22fSVladimir Kondratiev 				IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
2922be7d22fSVladimir Kondratiev 		/* OUI for Wilocity 04:ce:14 */
2932be7d22fSVladimir Kondratiev 		rtap_vendor->vendor_oui[0] = 0x04;
2942be7d22fSVladimir Kondratiev 		rtap_vendor->vendor_oui[1] = 0xce;
2952be7d22fSVladimir Kondratiev 		rtap_vendor->vendor_oui[2] = 0x14;
2962be7d22fSVladimir Kondratiev 		rtap_vendor->vendor_ns = 1;
2972be7d22fSVladimir Kondratiev 		/* Rx descriptor + PHY data  */
2982be7d22fSVladimir Kondratiev 		rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
2992be7d22fSVladimir Kondratiev 						       phy_length);
3002be7d22fSVladimir Kondratiev 		memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
3012be7d22fSVladimir Kondratiev 		memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
3022be7d22fSVladimir Kondratiev 		       phy_length);
3032be7d22fSVladimir Kondratiev 	}
3042be7d22fSVladimir Kondratiev }
3052be7d22fSVladimir Kondratiev 
3062be7d22fSVladimir Kondratiev /*
3072be7d22fSVladimir Kondratiev  * Fast swap in place between 2 registers
3082be7d22fSVladimir Kondratiev  */
3092be7d22fSVladimir Kondratiev static void wil_swap_u16(u16 *a, u16 *b)
3102be7d22fSVladimir Kondratiev {
3112be7d22fSVladimir Kondratiev 	*a ^= *b;
3122be7d22fSVladimir Kondratiev 	*b ^= *a;
3132be7d22fSVladimir Kondratiev 	*a ^= *b;
3142be7d22fSVladimir Kondratiev }
3152be7d22fSVladimir Kondratiev 
3162be7d22fSVladimir Kondratiev static void wil_swap_ethaddr(void *data)
3172be7d22fSVladimir Kondratiev {
3182be7d22fSVladimir Kondratiev 	struct ethhdr *eth = data;
3192be7d22fSVladimir Kondratiev 	u16 *s = (u16 *)eth->h_source;
3202be7d22fSVladimir Kondratiev 	u16 *d = (u16 *)eth->h_dest;
3212be7d22fSVladimir Kondratiev 
3222be7d22fSVladimir Kondratiev 	wil_swap_u16(s++, d++);
3232be7d22fSVladimir Kondratiev 	wil_swap_u16(s++, d++);
3242be7d22fSVladimir Kondratiev 	wil_swap_u16(s, d);
3252be7d22fSVladimir Kondratiev }
3262be7d22fSVladimir Kondratiev 
3272be7d22fSVladimir Kondratiev /**
3282be7d22fSVladimir Kondratiev  * reap 1 frame from @swhead
3292be7d22fSVladimir Kondratiev  *
33033e61169SVladimir Kondratiev  * Rx descriptor copied to skb->cb
33133e61169SVladimir Kondratiev  *
3322be7d22fSVladimir Kondratiev  * Safe to call from IRQ
3332be7d22fSVladimir Kondratiev  */
3342be7d22fSVladimir Kondratiev static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
3352be7d22fSVladimir Kondratiev 					 struct vring *vring)
3362be7d22fSVladimir Kondratiev {
3372be7d22fSVladimir Kondratiev 	struct device *dev = wil_to_dev(wil);
3382be7d22fSVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
33968ada71eSVladimir Kondratiev 	volatile struct vring_rx_desc *_d;
34068ada71eSVladimir Kondratiev 	struct vring_rx_desc *d;
3412be7d22fSVladimir Kondratiev 	struct sk_buff *skb;
3422be7d22fSVladimir Kondratiev 	dma_addr_t pa;
3432be7d22fSVladimir Kondratiev 	unsigned int sz = RX_BUF_LEN;
3447e594444SVladimir Kondratiev 	u16 dmalen;
3452be7d22fSVladimir Kondratiev 	u8 ftype;
3462be7d22fSVladimir Kondratiev 	u8 ds_bits;
3472be7d22fSVladimir Kondratiev 
34833e61169SVladimir Kondratiev 	BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
34933e61169SVladimir Kondratiev 
3502be7d22fSVladimir Kondratiev 	if (wil_vring_is_empty(vring))
3512be7d22fSVladimir Kondratiev 		return NULL;
3522be7d22fSVladimir Kondratiev 
35368ada71eSVladimir Kondratiev 	_d = &(vring->va[vring->swhead].rx);
35468ada71eSVladimir Kondratiev 	if (!(_d->dma.status & RX_DMA_STATUS_DU)) {
3552be7d22fSVladimir Kondratiev 		/* it is not error, we just reached end of Rx done area */
3562be7d22fSVladimir Kondratiev 		return NULL;
3572be7d22fSVladimir Kondratiev 	}
3582be7d22fSVladimir Kondratiev 
359f88f113aSVladimir Kondratiev 	skb = vring->ctx[vring->swhead].skb;
36068ada71eSVladimir Kondratiev 	d = wil_skb_rxdesc(skb);
36168ada71eSVladimir Kondratiev 	*d = *_d;
36268ada71eSVladimir Kondratiev 	pa = wil_desc_addr(&d->dma.addr);
363f88f113aSVladimir Kondratiev 	vring->ctx[vring->swhead].skb = NULL;
364e270045bSVladimir Kondratiev 	wil_vring_advance_head(vring, 1);
36568ada71eSVladimir Kondratiev 
36668ada71eSVladimir Kondratiev 	dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
36768ada71eSVladimir Kondratiev 	dmalen = le16_to_cpu(d->dma.length);
36868ada71eSVladimir Kondratiev 
36968ada71eSVladimir Kondratiev 	trace_wil6210_rx(vring->swhead, d);
37068ada71eSVladimir Kondratiev 	wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", vring->swhead, dmalen);
37168ada71eSVladimir Kondratiev 	wil_hex_dump_txrx("Rx ", DUMP_PREFIX_NONE, 32, 4,
37268ada71eSVladimir Kondratiev 			  (const void *)d, sizeof(*d), false);
37368ada71eSVladimir Kondratiev 
374e270045bSVladimir Kondratiev 	if (dmalen > sz) {
375e270045bSVladimir Kondratiev 		wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
376110dea00SWei Yongjun 		kfree_skb(skb);
377e270045bSVladimir Kondratiev 		return NULL;
378e270045bSVladimir Kondratiev 	}
3797e594444SVladimir Kondratiev 	skb_trim(skb, dmalen);
38033e61169SVladimir Kondratiev 
3811cbbcb08SVladimir Kondratiev 	prefetch(skb->data);
3821cbbcb08SVladimir Kondratiev 
383c0d37713SVladimir Kondratiev 	wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
384c0d37713SVladimir Kondratiev 			  skb->data, skb_headlen(skb), false);
385c0d37713SVladimir Kondratiev 
386c0d37713SVladimir Kondratiev 
38768ada71eSVladimir Kondratiev 	wil->stats.last_mcs_rx = wil_rxdesc_mcs(d);
3882be7d22fSVladimir Kondratiev 
3892be7d22fSVladimir Kondratiev 	/* use radiotap header only if required */
3902be7d22fSVladimir Kondratiev 	if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
39133e61169SVladimir Kondratiev 		wil_rx_add_radiotap_header(wil, skb);
3922be7d22fSVladimir Kondratiev 
3932be7d22fSVladimir Kondratiev 	/* no extra checks if in sniffer mode */
3942be7d22fSVladimir Kondratiev 	if (ndev->type != ARPHRD_ETHER)
3952be7d22fSVladimir Kondratiev 		return skb;
3962be7d22fSVladimir Kondratiev 	/*
3972be7d22fSVladimir Kondratiev 	 * Non-data frames may be delivered through Rx DMA channel (ex: BAR)
3982be7d22fSVladimir Kondratiev 	 * Driver should recognize it by frame type, that is found
3992be7d22fSVladimir Kondratiev 	 * in Rx descriptor. If type is not data, it is 802.11 frame as is
4002be7d22fSVladimir Kondratiev 	 */
40168ada71eSVladimir Kondratiev 	ftype = wil_rxdesc_ftype(d) << 2;
4022be7d22fSVladimir Kondratiev 	if (ftype != IEEE80211_FTYPE_DATA) {
4037743882dSVladimir Kondratiev 		wil_dbg_txrx(wil, "Non-data frame ftype 0x%08x\n", ftype);
4042be7d22fSVladimir Kondratiev 		/* TODO: process it */
4052be7d22fSVladimir Kondratiev 		kfree_skb(skb);
4062be7d22fSVladimir Kondratiev 		return NULL;
4072be7d22fSVladimir Kondratiev 	}
4082be7d22fSVladimir Kondratiev 
4092be7d22fSVladimir Kondratiev 	if (skb->len < ETH_HLEN) {
4102be7d22fSVladimir Kondratiev 		wil_err(wil, "Short frame, len = %d\n", skb->len);
4112be7d22fSVladimir Kondratiev 		/* TODO: process it (i.e. BAR) */
4122be7d22fSVladimir Kondratiev 		kfree_skb(skb);
4132be7d22fSVladimir Kondratiev 		return NULL;
4142be7d22fSVladimir Kondratiev 	}
4152be7d22fSVladimir Kondratiev 
416504937d4SKirshenbaum Erez 	/* L4 IDENT is on when HW calculated checksum, check status
417504937d4SKirshenbaum Erez 	 * and in case of error drop the packet
418504937d4SKirshenbaum Erez 	 * higher stack layers will handle retransmission (if required)
419504937d4SKirshenbaum Erez 	 */
420504937d4SKirshenbaum Erez 	if (d->dma.status & RX_DMA_STATUS_L4_IDENT) {
421504937d4SKirshenbaum Erez 		/* L4 protocol identified, csum calculated */
4224a68ab10SVladimir Kondratiev 		if ((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0)
423504937d4SKirshenbaum Erez 			skb->ip_summed = CHECKSUM_UNNECESSARY;
4244a68ab10SVladimir Kondratiev 		/* If HW reports bad checksum, let IP stack re-check it
4254a68ab10SVladimir Kondratiev 		 * For example, HW don't understand Microsoft IP stack that
4264a68ab10SVladimir Kondratiev 		 * mis-calculates TCP checksum - if it should be 0x0,
4274a68ab10SVladimir Kondratiev 		 * it writes 0xffff in violation of RFC 1624
4284a68ab10SVladimir Kondratiev 		 */
429504937d4SKirshenbaum Erez 	}
430504937d4SKirshenbaum Erez 
43168ada71eSVladimir Kondratiev 	ds_bits = wil_rxdesc_ds_bits(d);
4322be7d22fSVladimir Kondratiev 	if (ds_bits == 1) {
4332be7d22fSVladimir Kondratiev 		/*
4342be7d22fSVladimir Kondratiev 		 * HW bug - in ToDS mode, i.e. Rx on AP side,
4352be7d22fSVladimir Kondratiev 		 * addresses get swapped
4362be7d22fSVladimir Kondratiev 		 */
4372be7d22fSVladimir Kondratiev 		wil_swap_ethaddr(skb->data);
4382be7d22fSVladimir Kondratiev 	}
4392be7d22fSVladimir Kondratiev 
4402be7d22fSVladimir Kondratiev 	return skb;
4412be7d22fSVladimir Kondratiev }
4422be7d22fSVladimir Kondratiev 
4432be7d22fSVladimir Kondratiev /**
4442be7d22fSVladimir Kondratiev  * allocate and fill up to @count buffers in rx ring
4452be7d22fSVladimir Kondratiev  * buffers posted at @swtail
4462be7d22fSVladimir Kondratiev  */
4472be7d22fSVladimir Kondratiev static int wil_rx_refill(struct wil6210_priv *wil, int count)
4482be7d22fSVladimir Kondratiev {
4492be7d22fSVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
4502be7d22fSVladimir Kondratiev 	struct vring *v = &wil->vring_rx;
4512be7d22fSVladimir Kondratiev 	u32 next_tail;
4522be7d22fSVladimir Kondratiev 	int rc = 0;
4532be7d22fSVladimir Kondratiev 	int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
4542be7d22fSVladimir Kondratiev 			WIL6210_RTAP_SIZE : 0;
4552be7d22fSVladimir Kondratiev 
4562be7d22fSVladimir Kondratiev 	for (; next_tail = wil_vring_next_tail(v),
4572be7d22fSVladimir Kondratiev 			(next_tail != v->swhead) && (count-- > 0);
4582be7d22fSVladimir Kondratiev 			v->swtail = next_tail) {
4592be7d22fSVladimir Kondratiev 		rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
4602be7d22fSVladimir Kondratiev 		if (rc) {
4612be7d22fSVladimir Kondratiev 			wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
4622be7d22fSVladimir Kondratiev 				rc, v->swtail);
4632be7d22fSVladimir Kondratiev 			break;
4642be7d22fSVladimir Kondratiev 		}
4652be7d22fSVladimir Kondratiev 	}
4662be7d22fSVladimir Kondratiev 	iowrite32(v->swtail, wil->csr + HOSTADDR(v->hwtail));
4672be7d22fSVladimir Kondratiev 
4682be7d22fSVladimir Kondratiev 	return rc;
4692be7d22fSVladimir Kondratiev }
4702be7d22fSVladimir Kondratiev 
4712be7d22fSVladimir Kondratiev /*
4722be7d22fSVladimir Kondratiev  * Pass Rx packet to the netif. Update statistics.
473e0287c4aSVladimir Kondratiev  * Called in softirq context (NAPI poll).
4742be7d22fSVladimir Kondratiev  */
475b4490f42SVladimir Kondratiev void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
4762be7d22fSVladimir Kondratiev {
4772be7d22fSVladimir Kondratiev 	int rc;
4782be7d22fSVladimir Kondratiev 	unsigned int len = skb->len;
4792be7d22fSVladimir Kondratiev 
480241804cbSVladimir Kondratiev 	skb_orphan(skb);
481241804cbSVladimir Kondratiev 
482e0287c4aSVladimir Kondratiev 	rc = netif_receive_skb(skb);
4832be7d22fSVladimir Kondratiev 
4842be7d22fSVladimir Kondratiev 	if (likely(rc == NET_RX_SUCCESS)) {
4852be7d22fSVladimir Kondratiev 		ndev->stats.rx_packets++;
4862be7d22fSVladimir Kondratiev 		ndev->stats.rx_bytes += len;
4872be7d22fSVladimir Kondratiev 
4882be7d22fSVladimir Kondratiev 	} else {
4892be7d22fSVladimir Kondratiev 		ndev->stats.rx_dropped++;
4902be7d22fSVladimir Kondratiev 	}
4912be7d22fSVladimir Kondratiev }
4922be7d22fSVladimir Kondratiev 
4932be7d22fSVladimir Kondratiev /**
4942be7d22fSVladimir Kondratiev  * Proceed all completed skb's from Rx VRING
4952be7d22fSVladimir Kondratiev  *
496e0287c4aSVladimir Kondratiev  * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
4972be7d22fSVladimir Kondratiev  */
498e0287c4aSVladimir Kondratiev void wil_rx_handle(struct wil6210_priv *wil, int *quota)
4992be7d22fSVladimir Kondratiev {
5002be7d22fSVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
5012be7d22fSVladimir Kondratiev 	struct vring *v = &wil->vring_rx;
5022be7d22fSVladimir Kondratiev 	struct sk_buff *skb;
5032be7d22fSVladimir Kondratiev 
5042be7d22fSVladimir Kondratiev 	if (!v->va) {
5052be7d22fSVladimir Kondratiev 		wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
5062be7d22fSVladimir Kondratiev 		return;
5072be7d22fSVladimir Kondratiev 	}
5087743882dSVladimir Kondratiev 	wil_dbg_txrx(wil, "%s()\n", __func__);
509e0287c4aSVladimir Kondratiev 	while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
510e0287c4aSVladimir Kondratiev 		(*quota)--;
5112be7d22fSVladimir Kondratiev 
5122be7d22fSVladimir Kondratiev 		if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
5132be7d22fSVladimir Kondratiev 			skb->dev = ndev;
5142be7d22fSVladimir Kondratiev 			skb_reset_mac_header(skb);
5152be7d22fSVladimir Kondratiev 			skb->ip_summed = CHECKSUM_UNNECESSARY;
5162be7d22fSVladimir Kondratiev 			skb->pkt_type = PACKET_OTHERHOST;
5172be7d22fSVladimir Kondratiev 			skb->protocol = htons(ETH_P_802_2);
518b4490f42SVladimir Kondratiev 			wil_netif_rx_any(skb, ndev);
5192be7d22fSVladimir Kondratiev 		} else {
5202be7d22fSVladimir Kondratiev 			skb->protocol = eth_type_trans(skb, ndev);
521b4490f42SVladimir Kondratiev 			wil_rx_reorder(wil, skb);
5222be7d22fSVladimir Kondratiev 		}
5232be7d22fSVladimir Kondratiev 
5242be7d22fSVladimir Kondratiev 	}
5252be7d22fSVladimir Kondratiev 	wil_rx_refill(wil, v->size);
5262be7d22fSVladimir Kondratiev }
5272be7d22fSVladimir Kondratiev 
5282be7d22fSVladimir Kondratiev int wil_rx_init(struct wil6210_priv *wil)
5292be7d22fSVladimir Kondratiev {
5302be7d22fSVladimir Kondratiev 	struct vring *vring = &wil->vring_rx;
5312be7d22fSVladimir Kondratiev 	int rc;
5322be7d22fSVladimir Kondratiev 
5332be7d22fSVladimir Kondratiev 	vring->size = WIL6210_RX_RING_SIZE;
5342be7d22fSVladimir Kondratiev 	rc = wil_vring_alloc(wil, vring);
5352be7d22fSVladimir Kondratiev 	if (rc)
5362be7d22fSVladimir Kondratiev 		return rc;
5372be7d22fSVladimir Kondratiev 
53847e19af9SVladimir Kondratiev 	rc = wmi_rx_chain_add(wil, vring);
5392be7d22fSVladimir Kondratiev 	if (rc)
5402be7d22fSVladimir Kondratiev 		goto err_free;
5412be7d22fSVladimir Kondratiev 
5422be7d22fSVladimir Kondratiev 	rc = wil_rx_refill(wil, vring->size);
5432be7d22fSVladimir Kondratiev 	if (rc)
5442be7d22fSVladimir Kondratiev 		goto err_free;
5452be7d22fSVladimir Kondratiev 
5462be7d22fSVladimir Kondratiev 	return 0;
5472be7d22fSVladimir Kondratiev  err_free:
5482be7d22fSVladimir Kondratiev 	wil_vring_free(wil, vring, 0);
5492be7d22fSVladimir Kondratiev 
5502be7d22fSVladimir Kondratiev 	return rc;
5512be7d22fSVladimir Kondratiev }
5522be7d22fSVladimir Kondratiev 
5532be7d22fSVladimir Kondratiev void wil_rx_fini(struct wil6210_priv *wil)
5542be7d22fSVladimir Kondratiev {
5552be7d22fSVladimir Kondratiev 	struct vring *vring = &wil->vring_rx;
5562be7d22fSVladimir Kondratiev 
5572acb4220SVladimir Kondratiev 	if (vring->va)
5582be7d22fSVladimir Kondratiev 		wil_vring_free(wil, vring, 0);
5592be7d22fSVladimir Kondratiev }
5602be7d22fSVladimir Kondratiev 
5612be7d22fSVladimir Kondratiev int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
5622be7d22fSVladimir Kondratiev 		      int cid, int tid)
5632be7d22fSVladimir Kondratiev {
5642be7d22fSVladimir Kondratiev 	int rc;
5652be7d22fSVladimir Kondratiev 	struct wmi_vring_cfg_cmd cmd = {
5662be7d22fSVladimir Kondratiev 		.action = cpu_to_le32(WMI_VRING_CMD_ADD),
5672be7d22fSVladimir Kondratiev 		.vring_cfg = {
5682be7d22fSVladimir Kondratiev 			.tx_sw_ring = {
5692be7d22fSVladimir Kondratiev 				.max_mpdu_size = cpu_to_le16(TX_BUF_LEN),
570b5d98e9dSVladimir Kondratiev 				.ring_size = cpu_to_le16(size),
5712be7d22fSVladimir Kondratiev 			},
5722be7d22fSVladimir Kondratiev 			.ringid = id,
5732be7d22fSVladimir Kondratiev 			.cidxtid = (cid & 0xf) | ((tid & 0xf) << 4),
5742be7d22fSVladimir Kondratiev 			.encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
5752be7d22fSVladimir Kondratiev 			.mac_ctrl = 0,
5762be7d22fSVladimir Kondratiev 			.to_resolution = 0,
5772be7d22fSVladimir Kondratiev 			.agg_max_wsize = 16,
5782be7d22fSVladimir Kondratiev 			.schd_params = {
5792be7d22fSVladimir Kondratiev 				.priority = cpu_to_le16(0),
5802be7d22fSVladimir Kondratiev 				.timeslot_us = cpu_to_le16(0xfff),
5812be7d22fSVladimir Kondratiev 			},
5822be7d22fSVladimir Kondratiev 		},
5832be7d22fSVladimir Kondratiev 	};
5842be7d22fSVladimir Kondratiev 	struct {
5852be7d22fSVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
5862be7d22fSVladimir Kondratiev 		struct wmi_vring_cfg_done_event cmd;
5872be7d22fSVladimir Kondratiev 	} __packed reply;
5882be7d22fSVladimir Kondratiev 	struct vring *vring = &wil->vring_tx[id];
5892be7d22fSVladimir Kondratiev 
5902be7d22fSVladimir Kondratiev 	if (vring->va) {
5912be7d22fSVladimir Kondratiev 		wil_err(wil, "Tx ring [%d] already allocated\n", id);
5922be7d22fSVladimir Kondratiev 		rc = -EINVAL;
5932be7d22fSVladimir Kondratiev 		goto out;
5942be7d22fSVladimir Kondratiev 	}
5952be7d22fSVladimir Kondratiev 
5962be7d22fSVladimir Kondratiev 	vring->size = size;
5972be7d22fSVladimir Kondratiev 	rc = wil_vring_alloc(wil, vring);
5982be7d22fSVladimir Kondratiev 	if (rc)
5992be7d22fSVladimir Kondratiev 		goto out;
6002be7d22fSVladimir Kondratiev 
6012be7d22fSVladimir Kondratiev 	cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
6022be7d22fSVladimir Kondratiev 
6032be7d22fSVladimir Kondratiev 	rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
6042be7d22fSVladimir Kondratiev 		      WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
6052be7d22fSVladimir Kondratiev 	if (rc)
6062be7d22fSVladimir Kondratiev 		goto out_free;
6072be7d22fSVladimir Kondratiev 
608b8023177SVladimir Kondratiev 	if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
6092be7d22fSVladimir Kondratiev 		wil_err(wil, "Tx config failed, status 0x%02x\n",
6102be7d22fSVladimir Kondratiev 			reply.cmd.status);
611c331997bSVladimir Kondratiev 		rc = -EINVAL;
6122be7d22fSVladimir Kondratiev 		goto out_free;
6132be7d22fSVladimir Kondratiev 	}
6142be7d22fSVladimir Kondratiev 	vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
6152be7d22fSVladimir Kondratiev 
6163df2cd36SVladimir Kondratiev 	wil->vring2cid_tid[id][0] = cid;
6173df2cd36SVladimir Kondratiev 	wil->vring2cid_tid[id][1] = tid;
6183df2cd36SVladimir Kondratiev 
6192be7d22fSVladimir Kondratiev 	return 0;
6202be7d22fSVladimir Kondratiev  out_free:
6212be7d22fSVladimir Kondratiev 	wil_vring_free(wil, vring, 1);
6222be7d22fSVladimir Kondratiev  out:
6232be7d22fSVladimir Kondratiev 
6242be7d22fSVladimir Kondratiev 	return rc;
6252be7d22fSVladimir Kondratiev }
6262be7d22fSVladimir Kondratiev 
6272be7d22fSVladimir Kondratiev void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
6282be7d22fSVladimir Kondratiev {
6292be7d22fSVladimir Kondratiev 	struct vring *vring = &wil->vring_tx[id];
6302be7d22fSVladimir Kondratiev 
6312be7d22fSVladimir Kondratiev 	if (!vring->va)
6322be7d22fSVladimir Kondratiev 		return;
6332be7d22fSVladimir Kondratiev 
6342be7d22fSVladimir Kondratiev 	wil_vring_free(wil, vring, 1);
6352be7d22fSVladimir Kondratiev }
6362be7d22fSVladimir Kondratiev 
6372be7d22fSVladimir Kondratiev static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
6382be7d22fSVladimir Kondratiev 				       struct sk_buff *skb)
6392be7d22fSVladimir Kondratiev {
6403df2cd36SVladimir Kondratiev 	int i;
6413df2cd36SVladimir Kondratiev 	struct ethhdr *eth = (void *)skb->data;
6423df2cd36SVladimir Kondratiev 	int cid = wil_find_cid(wil, eth->h_dest);
6432be7d22fSVladimir Kondratiev 
6443df2cd36SVladimir Kondratiev 	if (cid < 0)
6453df2cd36SVladimir Kondratiev 		return NULL;
6463df2cd36SVladimir Kondratiev 
6473df2cd36SVladimir Kondratiev 	/* TODO: fix for multiple TID */
6483df2cd36SVladimir Kondratiev 	for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
6493df2cd36SVladimir Kondratiev 		if (wil->vring2cid_tid[i][0] == cid) {
6503df2cd36SVladimir Kondratiev 			struct vring *v = &wil->vring_tx[i];
6513df2cd36SVladimir Kondratiev 			wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
6523df2cd36SVladimir Kondratiev 				     __func__, eth->h_dest, i);
6533df2cd36SVladimir Kondratiev 			if (v->va) {
6542be7d22fSVladimir Kondratiev 				return v;
6553df2cd36SVladimir Kondratiev 			} else {
6563df2cd36SVladimir Kondratiev 				wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
6573df2cd36SVladimir Kondratiev 				return NULL;
6583df2cd36SVladimir Kondratiev 			}
6593df2cd36SVladimir Kondratiev 		}
6603df2cd36SVladimir Kondratiev 	}
6612be7d22fSVladimir Kondratiev 
6622be7d22fSVladimir Kondratiev 	return NULL;
6632be7d22fSVladimir Kondratiev }
6642be7d22fSVladimir Kondratiev 
66599b55bd2SKirshenbaum Erez static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
66699b55bd2SKirshenbaum Erez 			   int vring_index)
6672be7d22fSVladimir Kondratiev {
66868ada71eSVladimir Kondratiev 	wil_desc_addr_set(&d->dma.addr, pa);
6692be7d22fSVladimir Kondratiev 	d->dma.ip_length = 0;
6702be7d22fSVladimir Kondratiev 	/* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
6712be7d22fSVladimir Kondratiev 	d->dma.b11 = 0/*14 | BIT(7)*/;
6722be7d22fSVladimir Kondratiev 	d->dma.error = 0;
6732be7d22fSVladimir Kondratiev 	d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
6747e594444SVladimir Kondratiev 	d->dma.length = cpu_to_le16((u16)len);
67599b55bd2SKirshenbaum Erez 	d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
6762be7d22fSVladimir Kondratiev 	d->mac.d[0] = 0;
6772be7d22fSVladimir Kondratiev 	d->mac.d[1] = 0;
6782be7d22fSVladimir Kondratiev 	d->mac.d[2] = 0;
6792be7d22fSVladimir Kondratiev 	d->mac.ucode_cmd = 0;
6802be7d22fSVladimir Kondratiev 	/* use dst index 0 */
6812be7d22fSVladimir Kondratiev 	d->mac.d[1] |= BIT(MAC_CFG_DESC_TX_1_DST_INDEX_EN_POS) |
6822be7d22fSVladimir Kondratiev 		       (0 << MAC_CFG_DESC_TX_1_DST_INDEX_POS);
6832be7d22fSVladimir Kondratiev 	/* translation type:  0 - bypass; 1 - 802.3; 2 - native wifi */
6842be7d22fSVladimir Kondratiev 	d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
6852be7d22fSVladimir Kondratiev 		      (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
6862be7d22fSVladimir Kondratiev 
6872be7d22fSVladimir Kondratiev 	return 0;
6882be7d22fSVladimir Kondratiev }
6892be7d22fSVladimir Kondratiev 
690504937d4SKirshenbaum Erez static int wil_tx_desc_offload_cksum_set(struct wil6210_priv *wil,
691504937d4SKirshenbaum Erez 				struct vring_tx_desc *d,
692504937d4SKirshenbaum Erez 				struct sk_buff *skb)
693504937d4SKirshenbaum Erez {
694504937d4SKirshenbaum Erez 	int protocol;
695504937d4SKirshenbaum Erez 
696504937d4SKirshenbaum Erez 	if (skb->ip_summed != CHECKSUM_PARTIAL)
697504937d4SKirshenbaum Erez 		return 0;
698504937d4SKirshenbaum Erez 
699df2d08eeSVladimir Kondratiev 	d->dma.b11 = ETH_HLEN; /* MAC header length */
700df2d08eeSVladimir Kondratiev 
701504937d4SKirshenbaum Erez 	switch (skb->protocol) {
702504937d4SKirshenbaum Erez 	case cpu_to_be16(ETH_P_IP):
703504937d4SKirshenbaum Erez 		protocol = ip_hdr(skb)->protocol;
704df2d08eeSVladimir Kondratiev 		d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
705504937d4SKirshenbaum Erez 		break;
706504937d4SKirshenbaum Erez 	case cpu_to_be16(ETH_P_IPV6):
707504937d4SKirshenbaum Erez 		protocol = ipv6_hdr(skb)->nexthdr;
708504937d4SKirshenbaum Erez 		break;
709504937d4SKirshenbaum Erez 	default:
710504937d4SKirshenbaum Erez 		return -EINVAL;
711504937d4SKirshenbaum Erez 	}
712504937d4SKirshenbaum Erez 
713504937d4SKirshenbaum Erez 	switch (protocol) {
714504937d4SKirshenbaum Erez 	case IPPROTO_TCP:
715504937d4SKirshenbaum Erez 		d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
716504937d4SKirshenbaum Erez 		/* L4 header len: TCP header length */
717504937d4SKirshenbaum Erez 		d->dma.d0 |=
718504937d4SKirshenbaum Erez 		(tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
719504937d4SKirshenbaum Erez 		break;
720504937d4SKirshenbaum Erez 	case IPPROTO_UDP:
721504937d4SKirshenbaum Erez 		/* L4 header len: UDP header length */
722504937d4SKirshenbaum Erez 		d->dma.d0 |=
723504937d4SKirshenbaum Erez 		(sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
724504937d4SKirshenbaum Erez 		break;
725504937d4SKirshenbaum Erez 	default:
726504937d4SKirshenbaum Erez 		return -EINVAL;
727504937d4SKirshenbaum Erez 	}
728504937d4SKirshenbaum Erez 
729504937d4SKirshenbaum Erez 	d->dma.ip_length = skb_network_header_len(skb);
730504937d4SKirshenbaum Erez 	/* Enable TCP/UDP checksum */
731504937d4SKirshenbaum Erez 	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
732504937d4SKirshenbaum Erez 	/* Calculate pseudo-header */
733504937d4SKirshenbaum Erez 	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
734504937d4SKirshenbaum Erez 
735504937d4SKirshenbaum Erez 	return 0;
736504937d4SKirshenbaum Erez }
737504937d4SKirshenbaum Erez 
7382be7d22fSVladimir Kondratiev static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
7392be7d22fSVladimir Kondratiev 			struct sk_buff *skb)
7402be7d22fSVladimir Kondratiev {
7412be7d22fSVladimir Kondratiev 	struct device *dev = wil_to_dev(wil);
74268ada71eSVladimir Kondratiev 	struct vring_tx_desc dd, *d = &dd;
74368ada71eSVladimir Kondratiev 	volatile struct vring_tx_desc *_d;
7442be7d22fSVladimir Kondratiev 	u32 swhead = vring->swhead;
7452be7d22fSVladimir Kondratiev 	int avail = wil_vring_avail_tx(vring);
7462be7d22fSVladimir Kondratiev 	int nr_frags = skb_shinfo(skb)->nr_frags;
747504937d4SKirshenbaum Erez 	uint f = 0;
7482be7d22fSVladimir Kondratiev 	int vring_index = vring - wil->vring_tx;
7492be7d22fSVladimir Kondratiev 	uint i = swhead;
7502be7d22fSVladimir Kondratiev 	dma_addr_t pa;
7512be7d22fSVladimir Kondratiev 
7527743882dSVladimir Kondratiev 	wil_dbg_txrx(wil, "%s()\n", __func__);
7532be7d22fSVladimir Kondratiev 
7542be7d22fSVladimir Kondratiev 	if (avail < vring->size/8)
7552be7d22fSVladimir Kondratiev 		netif_tx_stop_all_queues(wil_to_ndev(wil));
7562be7d22fSVladimir Kondratiev 	if (avail < 1 + nr_frags) {
7572be7d22fSVladimir Kondratiev 		wil_err(wil, "Tx ring full. No space for %d fragments\n",
7582be7d22fSVladimir Kondratiev 			1 + nr_frags);
7592be7d22fSVladimir Kondratiev 		return -ENOMEM;
7602be7d22fSVladimir Kondratiev 	}
76168ada71eSVladimir Kondratiev 	_d = &(vring->va[i].tx);
7622be7d22fSVladimir Kondratiev 
7632be7d22fSVladimir Kondratiev 	pa = dma_map_single(dev, skb->data,
7642be7d22fSVladimir Kondratiev 			skb_headlen(skb), DMA_TO_DEVICE);
7652be7d22fSVladimir Kondratiev 
7667743882dSVladimir Kondratiev 	wil_dbg_txrx(wil, "Tx skb %d bytes %p -> %#08llx\n", skb_headlen(skb),
7672be7d22fSVladimir Kondratiev 		     skb->data, (unsigned long long)pa);
7687743882dSVladimir Kondratiev 	wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
7692be7d22fSVladimir Kondratiev 			  skb->data, skb_headlen(skb), false);
7702be7d22fSVladimir Kondratiev 
7712be7d22fSVladimir Kondratiev 	if (unlikely(dma_mapping_error(dev, pa)))
7722be7d22fSVladimir Kondratiev 		return -EINVAL;
7732be7d22fSVladimir Kondratiev 	/* 1-st segment */
77499b55bd2SKirshenbaum Erez 	wil_tx_desc_map(d, pa, skb_headlen(skb), vring_index);
775504937d4SKirshenbaum Erez 	/* Process TCP/UDP checksum offloading */
776504937d4SKirshenbaum Erez 	if (wil_tx_desc_offload_cksum_set(wil, d, skb)) {
777504937d4SKirshenbaum Erez 		wil_err(wil, "VRING #%d Failed to set cksum, drop packet\n",
778504937d4SKirshenbaum Erez 			vring_index);
779504937d4SKirshenbaum Erez 		goto dma_error;
780504937d4SKirshenbaum Erez 	}
781504937d4SKirshenbaum Erez 
7822be7d22fSVladimir Kondratiev 	d->mac.d[2] |= ((nr_frags + 1) <<
7832be7d22fSVladimir Kondratiev 		       MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
78468ada71eSVladimir Kondratiev 	if (nr_frags)
78568ada71eSVladimir Kondratiev 		*_d = *d;
78668ada71eSVladimir Kondratiev 
7872be7d22fSVladimir Kondratiev 	/* middle segments */
788504937d4SKirshenbaum Erez 	for (; f < nr_frags; f++) {
7892be7d22fSVladimir Kondratiev 		const struct skb_frag_struct *frag =
7902be7d22fSVladimir Kondratiev 				&skb_shinfo(skb)->frags[f];
7912be7d22fSVladimir Kondratiev 		int len = skb_frag_size(frag);
7922be7d22fSVladimir Kondratiev 		i = (swhead + f + 1) % vring->size;
79368ada71eSVladimir Kondratiev 		_d = &(vring->va[i].tx);
7942be7d22fSVladimir Kondratiev 		pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
7952be7d22fSVladimir Kondratiev 				DMA_TO_DEVICE);
7962be7d22fSVladimir Kondratiev 		if (unlikely(dma_mapping_error(dev, pa)))
7972be7d22fSVladimir Kondratiev 			goto dma_error;
79899b55bd2SKirshenbaum Erez 		wil_tx_desc_map(d, pa, len, vring_index);
799f88f113aSVladimir Kondratiev 		vring->ctx[i].mapped_as_page = 1;
80068ada71eSVladimir Kondratiev 		*_d = *d;
8012be7d22fSVladimir Kondratiev 	}
8022be7d22fSVladimir Kondratiev 	/* for the last seg only */
8032be7d22fSVladimir Kondratiev 	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
804668b2bbdSKirshenbaum Erez 	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
8052be7d22fSVladimir Kondratiev 	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
80668ada71eSVladimir Kondratiev 	*_d = *d;
8072be7d22fSVladimir Kondratiev 
8086cdadd4dSVladimir Kondratiev 	/* hold reference to skb
8096cdadd4dSVladimir Kondratiev 	 * to prevent skb release before accounting
8106cdadd4dSVladimir Kondratiev 	 * in case of immediate "tx done"
8116cdadd4dSVladimir Kondratiev 	 */
8126cdadd4dSVladimir Kondratiev 	vring->ctx[i].skb = skb_get(skb);
8136cdadd4dSVladimir Kondratiev 
8147743882dSVladimir Kondratiev 	wil_hex_dump_txrx("Tx ", DUMP_PREFIX_NONE, 32, 4,
8152be7d22fSVladimir Kondratiev 			  (const void *)d, sizeof(*d), false);
8162be7d22fSVladimir Kondratiev 
8172be7d22fSVladimir Kondratiev 	/* advance swhead */
8182be7d22fSVladimir Kondratiev 	wil_vring_advance_head(vring, nr_frags + 1);
8197743882dSVladimir Kondratiev 	wil_dbg_txrx(wil, "Tx swhead %d -> %d\n", swhead, vring->swhead);
82098658095SVladimir Kondratiev 	trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
8212be7d22fSVladimir Kondratiev 	iowrite32(vring->swhead, wil->csr + HOSTADDR(vring->hwtail));
8222be7d22fSVladimir Kondratiev 
8232be7d22fSVladimir Kondratiev 	return 0;
8242be7d22fSVladimir Kondratiev  dma_error:
8252be7d22fSVladimir Kondratiev 	/* unmap what we have mapped */
826c2a146f6SVladimir Kondratiev 	nr_frags = f + 1; /* frags mapped + one for skb head */
827c2a146f6SVladimir Kondratiev 	for (f = 0; f < nr_frags; f++) {
8287e594444SVladimir Kondratiev 		u16 dmalen;
829c2a146f6SVladimir Kondratiev 		struct wil_ctx *ctx;
8307e594444SVladimir Kondratiev 
8312be7d22fSVladimir Kondratiev 		i = (swhead + f) % vring->size;
832c2a146f6SVladimir Kondratiev 		ctx = &vring->ctx[i];
83368ada71eSVladimir Kondratiev 		_d = &(vring->va[i].tx);
83468ada71eSVladimir Kondratiev 		*d = *_d;
83568ada71eSVladimir Kondratiev 		_d->dma.status = TX_DMA_STATUS_DU;
83668ada71eSVladimir Kondratiev 		pa = wil_desc_addr(&d->dma.addr);
8377e594444SVladimir Kondratiev 		dmalen = le16_to_cpu(d->dma.length);
838f88f113aSVladimir Kondratiev 		if (ctx->mapped_as_page)
8397e594444SVladimir Kondratiev 			dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
840f88f113aSVladimir Kondratiev 		else
841f88f113aSVladimir Kondratiev 			dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
842f88f113aSVladimir Kondratiev 
843f88f113aSVladimir Kondratiev 		if (ctx->skb)
844f88f113aSVladimir Kondratiev 			dev_kfree_skb_any(ctx->skb);
845f88f113aSVladimir Kondratiev 
846f88f113aSVladimir Kondratiev 		memset(ctx, 0, sizeof(*ctx));
8472be7d22fSVladimir Kondratiev 	}
8482be7d22fSVladimir Kondratiev 
8492be7d22fSVladimir Kondratiev 	return -EINVAL;
8502be7d22fSVladimir Kondratiev }
8512be7d22fSVladimir Kondratiev 
8522be7d22fSVladimir Kondratiev 
8532be7d22fSVladimir Kondratiev netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
8542be7d22fSVladimir Kondratiev {
8552be7d22fSVladimir Kondratiev 	struct wil6210_priv *wil = ndev_to_wil(ndev);
8563df2cd36SVladimir Kondratiev 	struct ethhdr *eth = (void *)skb->data;
8572be7d22fSVladimir Kondratiev 	struct vring *vring;
8582be7d22fSVladimir Kondratiev 	int rc;
8592be7d22fSVladimir Kondratiev 
8607743882dSVladimir Kondratiev 	wil_dbg_txrx(wil, "%s()\n", __func__);
8612be7d22fSVladimir Kondratiev 	if (!test_bit(wil_status_fwready, &wil->status)) {
8622be7d22fSVladimir Kondratiev 		wil_err(wil, "FW not ready\n");
8632be7d22fSVladimir Kondratiev 		goto drop;
8642be7d22fSVladimir Kondratiev 	}
8652be7d22fSVladimir Kondratiev 	if (!test_bit(wil_status_fwconnected, &wil->status)) {
8662be7d22fSVladimir Kondratiev 		wil_err(wil, "FW not connected\n");
8672be7d22fSVladimir Kondratiev 		goto drop;
8682be7d22fSVladimir Kondratiev 	}
8692be7d22fSVladimir Kondratiev 	if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
8702be7d22fSVladimir Kondratiev 		wil_err(wil, "Xmit in monitor mode not supported\n");
8712be7d22fSVladimir Kondratiev 		goto drop;
8722be7d22fSVladimir Kondratiev 	}
873d58db4e4SVladimir Kondratiev 
8742be7d22fSVladimir Kondratiev 	/* find vring */
8753df2cd36SVladimir Kondratiev 	if (is_unicast_ether_addr(eth->h_dest)) {
8762be7d22fSVladimir Kondratiev 		vring = wil_find_tx_vring(wil, skb);
8773df2cd36SVladimir Kondratiev 	} else {
8783df2cd36SVladimir Kondratiev 		int i = 0;
8793df2cd36SVladimir Kondratiev 		/* TODO: duplicate for all CID's */
8803df2cd36SVladimir Kondratiev 		vring = &wil->vring_tx[i];
8813df2cd36SVladimir Kondratiev 		if (vring->va) {
8823df2cd36SVladimir Kondratiev 			int cid = wil->vring2cid_tid[i][0];
8833df2cd36SVladimir Kondratiev 			/* FIXME FW can accept only unicast frames */
8843df2cd36SVladimir Kondratiev 			memcpy(skb->data, wil->sta[cid].addr, ETH_ALEN);
8853df2cd36SVladimir Kondratiev 		} else {
8863df2cd36SVladimir Kondratiev 			vring = NULL;
8873df2cd36SVladimir Kondratiev 		}
8883df2cd36SVladimir Kondratiev 	}
8892be7d22fSVladimir Kondratiev 	if (!vring) {
8903df2cd36SVladimir Kondratiev 		wil_err(wil, "No Tx VRING found for %pM\n", eth->h_dest);
8912be7d22fSVladimir Kondratiev 		goto drop;
8922be7d22fSVladimir Kondratiev 	}
8932be7d22fSVladimir Kondratiev 	/* set up vring entry */
8942be7d22fSVladimir Kondratiev 	rc = wil_tx_vring(wil, vring, skb);
895d58db4e4SVladimir Kondratiev 
8962be7d22fSVladimir Kondratiev 	switch (rc) {
8972be7d22fSVladimir Kondratiev 	case 0:
898795ce734SVladimir Kondratiev 		/* statistics will be updated on the tx_complete */
8992be7d22fSVladimir Kondratiev 		dev_kfree_skb_any(skb);
9002be7d22fSVladimir Kondratiev 		return NETDEV_TX_OK;
9012be7d22fSVladimir Kondratiev 	case -ENOMEM:
9022be7d22fSVladimir Kondratiev 		return NETDEV_TX_BUSY;
9032be7d22fSVladimir Kondratiev 	default:
904afda8bb5SVladimir Kondratiev 		break; /* goto drop; */
9052be7d22fSVladimir Kondratiev 	}
9062be7d22fSVladimir Kondratiev  drop:
9072be7d22fSVladimir Kondratiev 	ndev->stats.tx_dropped++;
9082be7d22fSVladimir Kondratiev 	dev_kfree_skb_any(skb);
9092be7d22fSVladimir Kondratiev 
9102be7d22fSVladimir Kondratiev 	return NET_XMIT_DROP;
9112be7d22fSVladimir Kondratiev }
9122be7d22fSVladimir Kondratiev 
9132be7d22fSVladimir Kondratiev /**
9142be7d22fSVladimir Kondratiev  * Clean up transmitted skb's from the Tx VRING
9152be7d22fSVladimir Kondratiev  *
916e0287c4aSVladimir Kondratiev  * Return number of descriptors cleared
917e0287c4aSVladimir Kondratiev  *
9182be7d22fSVladimir Kondratiev  * Safe to call from IRQ
9192be7d22fSVladimir Kondratiev  */
920e0287c4aSVladimir Kondratiev int wil_tx_complete(struct wil6210_priv *wil, int ringid)
9212be7d22fSVladimir Kondratiev {
922795ce734SVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
9232be7d22fSVladimir Kondratiev 	struct device *dev = wil_to_dev(wil);
9242be7d22fSVladimir Kondratiev 	struct vring *vring = &wil->vring_tx[ringid];
925e0287c4aSVladimir Kondratiev 	int done = 0;
9262be7d22fSVladimir Kondratiev 
9272be7d22fSVladimir Kondratiev 	if (!vring->va) {
9282be7d22fSVladimir Kondratiev 		wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
929e0287c4aSVladimir Kondratiev 		return 0;
9302be7d22fSVladimir Kondratiev 	}
9312be7d22fSVladimir Kondratiev 
9327743882dSVladimir Kondratiev 	wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
9332be7d22fSVladimir Kondratiev 
9342be7d22fSVladimir Kondratiev 	while (!wil_vring_is_empty(vring)) {
93568ada71eSVladimir Kondratiev 		volatile struct vring_tx_desc *_d =
9364de41befSVladimir Kondratiev 					      &vring->va[vring->swtail].tx;
9374de41befSVladimir Kondratiev 		struct vring_tx_desc dd, *d = &dd;
9382be7d22fSVladimir Kondratiev 		dma_addr_t pa;
9397e594444SVladimir Kondratiev 		u16 dmalen;
940f88f113aSVladimir Kondratiev 		struct wil_ctx *ctx = &vring->ctx[vring->swtail];
941f88f113aSVladimir Kondratiev 		struct sk_buff *skb = ctx->skb;
9424de41befSVladimir Kondratiev 
94368ada71eSVladimir Kondratiev 		*d = *_d;
9444de41befSVladimir Kondratiev 
9452be7d22fSVladimir Kondratiev 		if (!(d->dma.status & TX_DMA_STATUS_DU))
9462be7d22fSVladimir Kondratiev 			break;
9472be7d22fSVladimir Kondratiev 
9487e594444SVladimir Kondratiev 		dmalen = le16_to_cpu(d->dma.length);
94998658095SVladimir Kondratiev 		trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
95098658095SVladimir Kondratiev 				      d->dma.error);
9517743882dSVladimir Kondratiev 		wil_dbg_txrx(wil,
9522be7d22fSVladimir Kondratiev 			     "Tx[%3d] : %d bytes, status 0x%02x err 0x%02x\n",
9537e594444SVladimir Kondratiev 			     vring->swtail, dmalen, d->dma.status,
9542be7d22fSVladimir Kondratiev 			     d->dma.error);
9557743882dSVladimir Kondratiev 		wil_hex_dump_txrx("TxC ", DUMP_PREFIX_NONE, 32, 4,
9562be7d22fSVladimir Kondratiev 				  (const void *)d, sizeof(*d), false);
9572be7d22fSVladimir Kondratiev 
95868ada71eSVladimir Kondratiev 		pa = wil_desc_addr(&d->dma.addr);
959f88f113aSVladimir Kondratiev 		if (ctx->mapped_as_page)
960f88f113aSVladimir Kondratiev 			dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
961f88f113aSVladimir Kondratiev 		else
962f88f113aSVladimir Kondratiev 			dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
963f88f113aSVladimir Kondratiev 
9642be7d22fSVladimir Kondratiev 		if (skb) {
965795ce734SVladimir Kondratiev 			if (d->dma.error == 0) {
966795ce734SVladimir Kondratiev 				ndev->stats.tx_packets++;
967795ce734SVladimir Kondratiev 				ndev->stats.tx_bytes += skb->len;
968795ce734SVladimir Kondratiev 			} else {
969795ce734SVladimir Kondratiev 				ndev->stats.tx_errors++;
970795ce734SVladimir Kondratiev 			}
971795ce734SVladimir Kondratiev 
9722be7d22fSVladimir Kondratiev 			dev_kfree_skb_any(skb);
9732be7d22fSVladimir Kondratiev 		}
974f88f113aSVladimir Kondratiev 		memset(ctx, 0, sizeof(*ctx));
97503269c65SVladimir Kondratiev 		/*
97603269c65SVladimir Kondratiev 		 * There is no need to touch HW descriptor:
97703269c65SVladimir Kondratiev 		 * - ststus bit TX_DMA_STATUS_DU is set by design,
97803269c65SVladimir Kondratiev 		 *   so hardware will not try to process this desc.,
97903269c65SVladimir Kondratiev 		 * - rest of descriptor will be initialized on Tx.
98003269c65SVladimir Kondratiev 		 */
9812be7d22fSVladimir Kondratiev 		vring->swtail = wil_vring_next_tail(vring);
982e0287c4aSVladimir Kondratiev 		done++;
9832be7d22fSVladimir Kondratiev 	}
9842be7d22fSVladimir Kondratiev 	if (wil_vring_avail_tx(vring) > vring->size/4)
9852be7d22fSVladimir Kondratiev 		netif_tx_wake_all_queues(wil_to_ndev(wil));
986e0287c4aSVladimir Kondratiev 
987e0287c4aSVladimir Kondratiev 	return done;
9882be7d22fSVladimir Kondratiev }
989