blob: 3feb86c4779556829a16b0a6985f0cd9f8593284 [file] [log] [blame]
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001/*
Vladimir Kondratiev02525a72014-08-06 10:31:51 +03002 * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08003 *
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
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080017#include <linux/etherdevice.h>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080018#include <net/ieee80211_radiotap.h>
19#include <linux/if_arp.h>
20#include <linux/moduleparam.h>
Kirshenbaum Erez504937d2013-07-21 11:34:37 +030021#include <linux/ip.h>
22#include <linux/ipv6.h>
23#include <net/ipv6.h>
Vladimir Kondratiev0786dc42014-01-14 20:31:26 +020024#include <linux/prefetch.h>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080025
26#include "wil6210.h"
27#include "wmi.h"
28#include "txrx.h"
Vladimir Kondratiev98658092013-05-12 14:43:35 +030029#include "trace.h"
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080030
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}
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +030055
Vladimir Shulman0436fd92015-02-15 14:02:34 +020056/* Used space in Tx Vring */
57static inline int wil_vring_used_tx(struct vring *vring)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080058{
59 u32 swhead = vring->swhead;
60 u32 swtail = vring->swtail;
Vladimir Shulman0436fd92015-02-15 14:02:34 +020061 return (vring->size + swhead - swtail) % vring->size;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080062}
63
Vladimir Shulman0436fd92015-02-15 14:02:34 +020064/* Available space in Tx Vring */
65static inline int wil_vring_avail_tx(struct vring *vring)
66{
67 return vring->size - wil_vring_used_tx(vring) - 1;
68}
69
70/* wil_vring_wmark_low - low watermark for available descriptor space */
Vladimir Kondratiev5bb64232014-05-27 14:45:46 +030071static inline int wil_vring_wmark_low(struct vring *vring)
72{
73 return vring->size/8;
74}
75
Vladimir Shulman0436fd92015-02-15 14:02:34 +020076/* wil_vring_wmark_high - high watermark for available descriptor space */
Vladimir Kondratiev5bb64232014-05-27 14:45:46 +030077static inline int wil_vring_wmark_high(struct vring *vring)
78{
79 return vring->size/4;
80}
81
Vladimir Shulman0436fd92015-02-15 14:02:34 +020082/* wil_val_in_range - check if value in [min,max) */
83static inline bool wil_val_in_range(int val, int min, int max)
84{
85 return val >= min && val < max;
86}
87
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080088static int wil_vring_alloc(struct wil6210_priv *wil, struct vring *vring)
89{
90 struct device *dev = wil_to_dev(wil);
91 size_t sz = vring->size * sizeof(vring->va[0]);
92 uint i;
93
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +030094 wil_dbg_misc(wil, "%s()\n", __func__);
95
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080096 BUILD_BUG_ON(sizeof(vring->va[0]) != 32);
97
98 vring->swhead = 0;
99 vring->swtail = 0;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300100 vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800101 if (!vring->ctx) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800102 vring->va = NULL;
103 return -ENOMEM;
104 }
Vladimir Shulman0436fd92015-02-15 14:02:34 +0200105 /* vring->va should be aligned on its size rounded up to power of 2
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800106 * This is granted by the dma_alloc_coherent
107 */
108 vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
109 if (!vring->va) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800110 kfree(vring->ctx);
111 vring->ctx = NULL;
112 return -ENOMEM;
113 }
114 /* initially, all descriptors are SW owned
115 * For Tx and Rx, ownership bit is at the same location, thus
116 * we can use any
117 */
118 for (i = 0; i < vring->size; i++) {
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300119 volatile struct vring_tx_desc *_d = &vring->va[i].tx;
120
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300121 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800122 }
123
Vladimir Kondratiev39c52ee2014-05-27 14:45:49 +0300124 wil_dbg_misc(wil, "vring[%d] 0x%p:%pad 0x%p\n", vring->size,
125 vring->va, &vring->pa, vring->ctx);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800126
127 return 0;
128}
129
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200130static void wil_txdesc_unmap(struct device *dev, struct vring_tx_desc *d,
131 struct wil_ctx *ctx)
132{
133 dma_addr_t pa = wil_desc_addr(&d->dma.addr);
134 u16 dmalen = le16_to_cpu(d->dma.length);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300135
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200136 switch (ctx->mapped_as) {
137 case wil_mapped_as_single:
138 dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
139 break;
140 case wil_mapped_as_page:
141 dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
142 break;
143 default:
144 break;
145 }
146}
147
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800148static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
149 int tx)
150{
151 struct device *dev = wil_to_dev(wil);
152 size_t sz = vring->size * sizeof(vring->va[0]);
153
Vladimir Kondratievef772852014-09-10 16:34:31 +0300154 if (tx) {
155 int vring_index = vring - wil->vring_tx;
156
157 wil_dbg_misc(wil, "free Tx vring %d [%d] 0x%p:%pad 0x%p\n",
158 vring_index, vring->size, vring->va,
159 &vring->pa, vring->ctx);
160 } else {
161 wil_dbg_misc(wil, "free Rx vring [%d] 0x%p:%pad 0x%p\n",
162 vring->size, vring->va,
163 &vring->pa, vring->ctx);
164 }
165
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800166 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300167 dma_addr_t pa;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300168 u16 dmalen;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300169 struct wil_ctx *ctx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300170
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800171 if (tx) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300172 struct vring_tx_desc dd, *d = &dd;
173 volatile struct vring_tx_desc *_d =
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800174 &vring->va[vring->swtail].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300175
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300176 ctx = &vring->ctx[vring->swtail];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300177 *d = *_d;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200178 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300179 if (ctx->skb)
180 dev_kfree_skb_any(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800181 vring->swtail = wil_vring_next_tail(vring);
182 } else { /* rx */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300183 struct vring_rx_desc dd, *d = &dd;
184 volatile struct vring_rx_desc *_d =
Vladimir Kondratiev4d1ac072013-07-11 18:03:38 +0300185 &vring->va[vring->swhead].rx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300186
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300187 ctx = &vring->ctx[vring->swhead];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300188 *d = *_d;
189 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300190 dmalen = le16_to_cpu(d->dma.length);
191 dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300192 kfree_skb(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800193 wil_vring_advance_head(vring, 1);
194 }
195 }
196 dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
197 kfree(vring->ctx);
198 vring->pa = 0;
199 vring->va = NULL;
200 vring->ctx = NULL;
201}
202
203/**
204 * Allocate one skb for Rx VRING
205 *
206 * Safe to call from IRQ
207 */
208static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
209 u32 i, int headroom)
210{
211 struct device *dev = wil_to_dev(wil);
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +0200212 unsigned int sz = mtu_max + ETH_HLEN;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300213 struct vring_rx_desc dd, *d = &dd;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300214 volatile struct vring_rx_desc *_d = &vring->va[i].rx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800215 dma_addr_t pa;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800216 struct sk_buff *skb = dev_alloc_skb(sz + headroom);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300217
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800218 if (unlikely(!skb))
219 return -ENOMEM;
220
221 skb_reserve(skb, headroom);
222 skb_put(skb, sz);
223
224 pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
225 if (unlikely(dma_mapping_error(dev, pa))) {
226 kfree_skb(skb);
227 return -ENOMEM;
228 }
229
230 d->dma.d0 = BIT(9) | RX_DMA_D0_CMD_DMA_IT;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300231 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800232 /* ip_length don't care */
233 /* b11 don't care */
234 /* error don't care */
235 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300236 d->dma.length = cpu_to_le16(sz);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300237 *_d = *d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300238 vring->ctx[i].skb = skb;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800239
240 return 0;
241}
242
243/**
244 * Adds radiotap header
245 *
246 * Any error indicated as "Bad FCS"
247 *
248 * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
249 * - Rx descriptor: 32 bytes
250 * - Phy info
251 */
252static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300253 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800254{
255 struct wireless_dev *wdev = wil->wdev;
256 struct wil6210_rtap {
257 struct ieee80211_radiotap_header rthdr;
258 /* fields should be in the order of bits in rthdr.it_present */
259 /* flags */
260 u8 flags;
261 /* channel */
262 __le16 chnl_freq __aligned(2);
263 __le16 chnl_flags;
264 /* MCS */
265 u8 mcs_present;
266 u8 mcs_flags;
267 u8 mcs_index;
268 } __packed;
269 struct wil6210_rtap_vendor {
270 struct wil6210_rtap rtap;
271 /* vendor */
272 u8 vendor_oui[3] __aligned(2);
273 u8 vendor_ns;
274 __le16 vendor_skip;
275 u8 vendor_data[0];
276 } __packed;
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300277 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800278 struct wil6210_rtap_vendor *rtap_vendor;
279 int rtap_len = sizeof(struct wil6210_rtap);
280 int phy_length = 0; /* phy info header size, bytes */
281 static char phy_data[128];
282 struct ieee80211_channel *ch = wdev->preset_chandef.chan;
283
284 if (rtap_include_phy_info) {
285 rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
286 /* calculate additional length */
287 if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
288 /**
289 * PHY info starts from 8-byte boundary
290 * there are 8-byte lines, last line may be partially
291 * written (HW bug), thus FW configures for last line
292 * to be excessive. Driver skips this last line.
293 */
294 int len = min_t(int, 8 + sizeof(phy_data),
295 wil_rxdesc_phy_length(d));
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300296
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800297 if (len > 8) {
298 void *p = skb_tail_pointer(skb);
299 void *pa = PTR_ALIGN(p, 8);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300300
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800301 if (skb_tailroom(skb) >= len + (pa - p)) {
302 phy_length = len - 8;
303 memcpy(phy_data, pa, phy_length);
304 }
305 }
306 }
307 rtap_len += phy_length;
308 }
309
310 if (skb_headroom(skb) < rtap_len &&
311 pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
312 wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
313 return;
314 }
315
316 rtap_vendor = (void *)skb_push(skb, rtap_len);
317 memset(rtap_vendor, 0, rtap_len);
318
319 rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
320 rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
321 rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
322 (1 << IEEE80211_RADIOTAP_FLAGS) |
323 (1 << IEEE80211_RADIOTAP_CHANNEL) |
324 (1 << IEEE80211_RADIOTAP_MCS));
325 if (d->dma.status & RX_DMA_STATUS_ERROR)
326 rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;
327
328 rtap_vendor->rtap.chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
329 rtap_vendor->rtap.chnl_flags = cpu_to_le16(0);
330
331 rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
332 rtap_vendor->rtap.mcs_flags = 0;
333 rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);
334
335 if (rtap_include_phy_info) {
336 rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
337 IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
338 /* OUI for Wilocity 04:ce:14 */
339 rtap_vendor->vendor_oui[0] = 0x04;
340 rtap_vendor->vendor_oui[1] = 0xce;
341 rtap_vendor->vendor_oui[2] = 0x14;
342 rtap_vendor->vendor_ns = 1;
343 /* Rx descriptor + PHY data */
344 rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
345 phy_length);
346 memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
347 memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
348 phy_length);
349 }
350}
351
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800352/**
353 * reap 1 frame from @swhead
354 *
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300355 * Rx descriptor copied to skb->cb
356 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800357 * Safe to call from IRQ
358 */
359static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
360 struct vring *vring)
361{
362 struct device *dev = wil_to_dev(wil);
363 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300364 volatile struct vring_rx_desc *_d;
365 struct vring_rx_desc *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800366 struct sk_buff *skb;
367 dma_addr_t pa;
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +0200368 unsigned int sz = mtu_max + ETH_HLEN;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300369 u16 dmalen;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800370 u8 ftype;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200371 int cid;
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200372 int i = (int)vring->swhead;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200373 struct wil_net_stats *stats;
374
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300375 BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
376
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200377 if (unlikely(wil_vring_is_empty(vring)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800378 return NULL;
379
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200380 _d = &vring->va[i].rx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200381 if (unlikely(!(_d->dma.status & RX_DMA_STATUS_DU))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800382 /* it is not error, we just reached end of Rx done area */
383 return NULL;
384 }
385
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200386 skb = vring->ctx[i].skb;
387 vring->ctx[i].skb = NULL;
388 wil_vring_advance_head(vring, 1);
389 if (!skb) {
390 wil_err(wil, "No Rx skb at [%d]\n", i);
391 return NULL;
392 }
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300393 d = wil_skb_rxdesc(skb);
394 *d = *_d;
395 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300396
397 dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
398 dmalen = le16_to_cpu(d->dma.length);
399
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200400 trace_wil6210_rx(i, d);
401 wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", i, dmalen);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300402 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_NONE, 32, 4,
403 (const void *)d, sizeof(*d), false);
404
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200405 if (unlikely(dmalen > sz)) {
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300406 wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
Wei Yongjun110dea02013-05-23 17:10:43 +0800407 kfree_skb(skb);
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300408 return NULL;
409 }
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300410 skb_trim(skb, dmalen);
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300411
Vladimir Kondratiev1cbbcb02014-01-08 11:50:49 +0200412 prefetch(skb->data);
413
Vladimir Kondratievc0d37712013-05-12 14:43:34 +0300414 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
415 skb->data, skb_headlen(skb), false);
416
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200417 cid = wil_rxdesc_cid(d);
418 stats = &wil->sta[cid].stats;
419 stats->last_mcs_rx = wil_rxdesc_mcs(d);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800420
421 /* use radiotap header only if required */
422 if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300423 wil_rx_add_radiotap_header(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800424
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800425 /* no extra checks if in sniffer mode */
426 if (ndev->type != ARPHRD_ETHER)
427 return skb;
428 /*
429 * Non-data frames may be delivered through Rx DMA channel (ex: BAR)
430 * Driver should recognize it by frame type, that is found
431 * in Rx descriptor. If type is not data, it is 802.11 frame as is
432 */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300433 ftype = wil_rxdesc_ftype(d) << 2;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200434 if (unlikely(ftype != IEEE80211_FTYPE_DATA)) {
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200435 wil_dbg_txrx(wil, "Non-data frame ftype 0x%08x\n", ftype);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800436 /* TODO: process it */
437 kfree_skb(skb);
438 return NULL;
439 }
440
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200441 if (unlikely(skb->len < ETH_HLEN)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800442 wil_err(wil, "Short frame, len = %d\n", skb->len);
443 /* TODO: process it (i.e. BAR) */
444 kfree_skb(skb);
445 return NULL;
446 }
447
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300448 /* L4 IDENT is on when HW calculated checksum, check status
449 * and in case of error drop the packet
450 * higher stack layers will handle retransmission (if required)
451 */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200452 if (likely(d->dma.status & RX_DMA_STATUS_L4I)) {
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300453 /* L4 protocol identified, csum calculated */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200454 if (likely((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0))
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300455 skb->ip_summed = CHECKSUM_UNNECESSARY;
Vladimir Kondratiev4a68ab102013-08-13 15:25:32 +0300456 /* If HW reports bad checksum, let IP stack re-check it
457 * For example, HW don't understand Microsoft IP stack that
458 * mis-calculates TCP checksum - if it should be 0x0,
459 * it writes 0xffff in violation of RFC 1624
460 */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300461 }
462
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800463 return skb;
464}
465
466/**
467 * allocate and fill up to @count buffers in rx ring
468 * buffers posted at @swtail
469 */
470static int wil_rx_refill(struct wil6210_priv *wil, int count)
471{
472 struct net_device *ndev = wil_to_ndev(wil);
473 struct vring *v = &wil->vring_rx;
474 u32 next_tail;
475 int rc = 0;
476 int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
477 WIL6210_RTAP_SIZE : 0;
478
479 for (; next_tail = wil_vring_next_tail(v),
480 (next_tail != v->swhead) && (count-- > 0);
481 v->swtail = next_tail) {
482 rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200483 if (unlikely(rc)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800484 wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
485 rc, v->swtail);
486 break;
487 }
488 }
489 iowrite32(v->swtail, wil->csr + HOSTADDR(v->hwtail));
490
491 return rc;
492}
493
494/*
495 * Pass Rx packet to the netif. Update statistics.
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300496 * Called in softirq context (NAPI poll).
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800497 */
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200498void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800499{
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200500 gro_result_t rc = GRO_NORMAL;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200501 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200502 struct wireless_dev *wdev = wil_to_wdev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800503 unsigned int len = skb->len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200504 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
505 int cid = wil_rxdesc_cid(d);
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200506 struct ethhdr *eth = (void *)skb->data;
507 /* here looking for DA, not A1, thus Rxdesc's 'mcast' indication
508 * is not suitable, need to look at data
509 */
510 int mcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200511 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200512 struct sk_buff *xmit_skb = NULL;
513 static const char * const gro_res_str[] = {
514 [GRO_MERGED] = "GRO_MERGED",
515 [GRO_MERGED_FREE] = "GRO_MERGED_FREE",
516 [GRO_HELD] = "GRO_HELD",
517 [GRO_NORMAL] = "GRO_NORMAL",
518 [GRO_DROP] = "GRO_DROP",
519 };
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800520
Vladimir Kondratiev241804c2013-01-28 18:31:02 +0200521 skb_orphan(skb);
522
Vladimir Kondratiev02beaf12015-03-08 15:42:03 +0200523 if (wdev->iftype == NL80211_IFTYPE_AP && !wil->ap_isolate) {
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200524 if (mcast) {
525 /* send multicast frames both to higher layers in
526 * local net stack and back to the wireless medium
527 */
528 xmit_skb = skb_copy(skb, GFP_ATOMIC);
529 } else {
530 int xmit_cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800531
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200532 if (xmit_cid >= 0) {
533 /* The destination station is associated to
534 * this AP (in this VLAN), so send the frame
535 * directly to it and do not pass it to local
536 * net stack.
537 */
538 xmit_skb = skb;
539 skb = NULL;
540 }
541 }
542 }
543 if (xmit_skb) {
544 /* Send to wireless media and increase priority by 256 to
545 * keep the received priority instead of reclassifying
546 * the frame (see cfg80211_classify8021d).
547 */
548 xmit_skb->dev = ndev;
549 xmit_skb->priority += 256;
550 xmit_skb->protocol = htons(ETH_P_802_3);
551 skb_reset_network_header(xmit_skb);
552 skb_reset_mac_header(xmit_skb);
553 wil_dbg_txrx(wil, "Rx -> Tx %d bytes\n", len);
554 dev_queue_xmit(xmit_skb);
555 }
556
557 if (skb) { /* deliver to local stack */
558
559 skb->protocol = eth_type_trans(skb, ndev);
560 rc = napi_gro_receive(&wil->napi_rx, skb);
561 wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
562 len, gro_res_str[rc]);
563 }
564 /* statistics. rc set to GRO_NORMAL for AP bridging */
Vladimir Kondratievb5998e62014-03-17 15:34:22 +0200565 if (unlikely(rc == GRO_DROP)) {
566 ndev->stats.rx_dropped++;
567 stats->rx_dropped++;
568 wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
569 } else {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800570 ndev->stats.rx_packets++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200571 stats->rx_packets++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800572 ndev->stats.rx_bytes += len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200573 stats->rx_bytes += len;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200574 if (mcast)
575 ndev->stats.multicast++;
Vladimir Kondratiev194b4822014-06-16 19:37:14 +0300576 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800577}
578
579/**
580 * Proceed all completed skb's from Rx VRING
581 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300582 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800583 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300584void wil_rx_handle(struct wil6210_priv *wil, int *quota)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800585{
586 struct net_device *ndev = wil_to_ndev(wil);
587 struct vring *v = &wil->vring_rx;
588 struct sk_buff *skb;
589
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200590 if (unlikely(!v->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800591 wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
592 return;
593 }
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200594 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300595 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
596 (*quota)--;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800597
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800598 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
599 skb->dev = ndev;
600 skb_reset_mac_header(skb);
601 skb->ip_summed = CHECKSUM_UNNECESSARY;
602 skb->pkt_type = PACKET_OTHERHOST;
603 skb->protocol = htons(ETH_P_802_2);
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200604 wil_netif_rx_any(skb, ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800605 } else {
Vladimir Kondratieve4373d82014-12-23 09:47:21 +0200606 wil_rx_reorder(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800607 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800608 }
609 wil_rx_refill(wil, v->size);
610}
611
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200612int wil_rx_init(struct wil6210_priv *wil, u16 size)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800613{
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800614 struct vring *vring = &wil->vring_rx;
615 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800616
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300617 wil_dbg_misc(wil, "%s()\n", __func__);
618
Vladimir Kondratiev8bf6adb2014-03-17 15:34:17 +0200619 if (vring->va) {
620 wil_err(wil, "Rx ring already allocated\n");
621 return -EINVAL;
622 }
623
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200624 vring->size = size;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800625 rc = wil_vring_alloc(wil, vring);
626 if (rc)
627 return rc;
628
Vladimir Kondratiev47e19af2013-01-28 18:30:59 +0200629 rc = wmi_rx_chain_add(wil, vring);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800630 if (rc)
631 goto err_free;
632
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800633 rc = wil_rx_refill(wil, vring->size);
634 if (rc)
635 goto err_free;
636
637 return 0;
638 err_free:
639 wil_vring_free(wil, vring, 0);
640
641 return rc;
642}
643
644void wil_rx_fini(struct wil6210_priv *wil)
645{
646 struct vring *vring = &wil->vring_rx;
647
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300648 wil_dbg_misc(wil, "%s()\n", __func__);
649
Vladimir Kondratiev2acb4222013-01-28 18:31:08 +0200650 if (vring->va)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800651 wil_vring_free(wil, vring, 0);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800652}
653
654int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
655 int cid, int tid)
656{
657 int rc;
658 struct wmi_vring_cfg_cmd cmd = {
659 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
660 .vring_cfg = {
661 .tx_sw_ring = {
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +0200662 .max_mpdu_size =
Vladimir Kondratievc44690a2014-12-23 09:47:11 +0200663 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
Vladimir Kondratievb5d98e92013-04-18 14:33:51 +0300664 .ring_size = cpu_to_le16(size),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800665 },
666 .ringid = id,
Vladimir Kondratieva70abea2014-03-17 15:34:05 +0200667 .cidxtid = mk_cidxtid(cid, tid),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800668 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
669 .mac_ctrl = 0,
670 .to_resolution = 0,
Vladimir Kondratiev32772132014-12-23 09:47:03 +0200671 .agg_max_wsize = 0,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800672 .schd_params = {
673 .priority = cpu_to_le16(0),
674 .timeslot_us = cpu_to_le16(0xfff),
675 },
676 },
677 };
678 struct {
679 struct wil6210_mbox_hdr_wmi wmi;
680 struct wmi_vring_cfg_done_event cmd;
681 } __packed reply;
682 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200683 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800684
Vladimir Kondratieve0106ad2014-09-10 16:34:45 +0300685 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
686 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300687
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800688 if (vring->va) {
689 wil_err(wil, "Tx ring [%d] already allocated\n", id);
690 rc = -EINVAL;
691 goto out;
692 }
693
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200694 memset(txdata, 0, sizeof(*txdata));
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200695 spin_lock_init(&txdata->lock);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800696 vring->size = size;
697 rc = wil_vring_alloc(wil, vring);
698 if (rc)
699 goto out;
700
Vladimir Kondratiev93ae6d42014-02-27 16:20:51 +0200701 wil->vring2cid_tid[id][0] = cid;
702 wil->vring2cid_tid[id][1] = tid;
703
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800704 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800705
706 rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
707 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
708 if (rc)
709 goto out_free;
710
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200711 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800712 wil_err(wil, "Tx config failed, status 0x%02x\n",
713 reply.cmd.status);
Vladimir Kondratievc3319972013-01-28 18:31:09 +0200714 rc = -EINVAL;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800715 goto out_free;
716 }
717 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
718
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200719 txdata->enabled = 1;
Vladimir Kondratiev3a3def82014-12-23 09:47:05 +0200720 if (wil->sta[cid].data_port_open && (agg_wsize >= 0))
721 wil_addba_tx_request(wil, id, agg_wsize);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200722
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800723 return 0;
724 out_free:
725 wil_vring_free(wil, vring, 1);
726 out:
727
728 return rc;
729}
730
731void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
732{
733 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200734 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800735
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200736 WARN_ON(!mutex_is_locked(&wil->mutex));
737
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800738 if (!vring->va)
739 return;
740
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300741 wil_dbg_misc(wil, "%s() id=%d\n", __func__, id);
742
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200743 spin_lock_bh(&txdata->lock);
744 txdata->enabled = 0; /* no Tx can be in progress or start anew */
745 spin_unlock_bh(&txdata->lock);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200746 /* make sure NAPI won't touch this vring */
Vladimir Kondratiev9419b6a2014-12-23 09:47:14 +0200747 if (test_bit(wil_status_napi_en, wil->status))
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200748 napi_synchronize(&wil->napi_tx);
749
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800750 wil_vring_free(wil, vring, 1);
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200751 memset(txdata, 0, sizeof(*txdata));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800752}
753
754static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
755 struct sk_buff *skb)
756{
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200757 int i;
758 struct ethhdr *eth = (void *)skb->data;
759 int cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800760
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200761 if (cid < 0)
762 return NULL;
763
Vladimir Kondratieve58c9f72014-03-17 15:34:06 +0200764 if (!wil->sta[cid].data_port_open &&
765 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
766 return NULL;
767
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200768 /* TODO: fix for multiple TID */
769 for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
770 if (wil->vring2cid_tid[i][0] == cid) {
771 struct vring *v = &wil->vring_tx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300772
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200773 wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
774 __func__, eth->h_dest, i);
775 if (v->va) {
776 return v;
777 } else {
778 wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
779 return NULL;
780 }
781 }
782 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800783
784 return NULL;
785}
786
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200787static void wil_set_da_for_vring(struct wil6210_priv *wil,
788 struct sk_buff *skb, int vring_index)
789{
790 struct ethhdr *eth = (void *)skb->data;
791 int cid = wil->vring2cid_tid[vring_index][0];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300792
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200793 memcpy(eth->h_dest, wil->sta[cid].addr, ETH_ALEN);
794}
795
796static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
797 struct sk_buff *skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200798
799static struct vring *wil_find_tx_vring_sta(struct wil6210_priv *wil,
800 struct sk_buff *skb)
801{
802 struct vring *v;
803 int i;
804 u8 cid;
805
806 /* In the STA mode, it is expected to have only 1 VRING
807 * for the AP we connected to.
808 * find 1-st vring and see whether it is eligible for data
809 */
810 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
811 v = &wil->vring_tx[i];
812 if (!v->va)
813 continue;
814
815 cid = wil->vring2cid_tid[i][0];
816 if (!wil->sta[cid].data_port_open &&
817 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
818 break;
819
820 wil_dbg_txrx(wil, "Tx -> ring %d\n", i);
821
822 return v;
823 }
824
825 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
826
827 return NULL;
828}
829
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200830/*
831 * Find 1-st vring and return it; set dest address for this vring in skb
832 * duplicate skb and send it to other active vrings
833 */
834static struct vring *wil_tx_bcast(struct wil6210_priv *wil,
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300835 struct sk_buff *skb)
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200836{
837 struct vring *v, *v2;
838 struct sk_buff *skb2;
839 int i;
Vladimir Kondratieve58c9f72014-03-17 15:34:06 +0200840 u8 cid;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200841
Vladimir Kondratieve58c9f72014-03-17 15:34:06 +0200842 /* find 1-st vring eligible for data */
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200843 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
844 v = &wil->vring_tx[i];
Vladimir Kondratieve58c9f72014-03-17 15:34:06 +0200845 if (!v->va)
846 continue;
847
848 cid = wil->vring2cid_tid[i][0];
849 if (!wil->sta[cid].data_port_open)
850 continue;
851
852 goto found;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200853 }
854
Vladimir Kondratiev5aed1392014-06-16 19:37:15 +0300855 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200856
857 return NULL;
858
859found:
860 wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
861 wil_set_da_for_vring(wil, skb, i);
862
863 /* find other active vrings and duplicate skb for each */
864 for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
865 v2 = &wil->vring_tx[i];
866 if (!v2->va)
867 continue;
Vladimir Kondratieve58c9f72014-03-17 15:34:06 +0200868 cid = wil->vring2cid_tid[i][0];
869 if (!wil->sta[cid].data_port_open)
870 continue;
871
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200872 skb2 = skb_copy(skb, GFP_ATOMIC);
873 if (skb2) {
874 wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
875 wil_set_da_for_vring(wil, skb2, i);
876 wil_tx_vring(wil, v2, skb2);
877 } else {
878 wil_err(wil, "skb_copy failed\n");
879 }
880 }
881
882 return v;
883}
884
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +0300885static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
886 int vring_index)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800887{
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300888 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800889 d->dma.ip_length = 0;
890 /* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
891 d->dma.b11 = 0/*14 | BIT(7)*/;
892 d->dma.error = 0;
893 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300894 d->dma.length = cpu_to_le16((u16)len);
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +0300895 d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800896 d->mac.d[0] = 0;
897 d->mac.d[1] = 0;
898 d->mac.d[2] = 0;
899 d->mac.ucode_cmd = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800900 /* translation type: 0 - bypass; 1 - 802.3; 2 - native wifi */
901 d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
902 (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
903
904 return 0;
905}
906
Vladimir Kondratievc2366582014-03-17 15:34:08 +0200907static inline
908void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
909{
910 d->mac.d[2] |= ((nr_frags + 1) <<
911 MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
912}
913
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300914static int wil_tx_desc_offload_cksum_set(struct wil6210_priv *wil,
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300915 struct vring_tx_desc *d,
916 struct sk_buff *skb)
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300917{
918 int protocol;
919
920 if (skb->ip_summed != CHECKSUM_PARTIAL)
921 return 0;
922
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +0200923 d->dma.b11 = ETH_HLEN; /* MAC header length */
924
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300925 switch (skb->protocol) {
926 case cpu_to_be16(ETH_P_IP):
927 protocol = ip_hdr(skb)->protocol;
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +0200928 d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300929 break;
930 case cpu_to_be16(ETH_P_IPV6):
931 protocol = ipv6_hdr(skb)->nexthdr;
932 break;
933 default:
934 return -EINVAL;
935 }
936
937 switch (protocol) {
938 case IPPROTO_TCP:
939 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
940 /* L4 header len: TCP header length */
941 d->dma.d0 |=
942 (tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
943 break;
944 case IPPROTO_UDP:
945 /* L4 header len: UDP header length */
946 d->dma.d0 |=
947 (sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
948 break;
949 default:
950 return -EINVAL;
951 }
952
953 d->dma.ip_length = skb_network_header_len(skb);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300954 /* Enable TCP/UDP checksum */
955 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
956 /* Calculate pseudo-header */
957 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
958
959 return 0;
960}
961
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200962static int __wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
963 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800964{
965 struct device *dev = wil_to_dev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300966 struct vring_tx_desc dd, *d = &dd;
967 volatile struct vring_tx_desc *_d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800968 u32 swhead = vring->swhead;
969 int avail = wil_vring_avail_tx(vring);
970 int nr_frags = skb_shinfo(skb)->nr_frags;
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300971 uint f = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800972 int vring_index = vring - wil->vring_tx;
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +0300973 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800974 uint i = swhead;
975 dma_addr_t pa;
Vladimir Shulman0436fd92015-02-15 14:02:34 +0200976 int used;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800977
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200978 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800979
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200980 if (unlikely(!txdata->enabled))
981 return -EINVAL;
982
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200983 if (unlikely(avail < 1 + nr_frags)) {
Vladimir Kondratiev70801e12014-12-01 15:36:03 +0200984 wil_err_ratelimited(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +0200985 "Tx ring[%2d] full. No space for %d fragments\n",
986 vring_index, 1 + nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800987 return -ENOMEM;
988 }
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300989 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800990
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300991 pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800992
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +0200993 wil_dbg_txrx(wil, "Tx[%2d] skb %d bytes 0x%p -> %pad\n", vring_index,
994 skb_headlen(skb), skb->data, &pa);
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200995 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800996 skb->data, skb_headlen(skb), false);
997
998 if (unlikely(dma_mapping_error(dev, pa)))
999 return -EINVAL;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001000 vring->ctx[i].mapped_as = wil_mapped_as_single;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001001 /* 1-st segment */
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001002 wil_tx_desc_map(d, pa, skb_headlen(skb), vring_index);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001003 /* Process TCP/UDP checksum offloading */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001004 if (unlikely(wil_tx_desc_offload_cksum_set(wil, d, skb))) {
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001005 wil_err(wil, "Tx[%2d] Failed to set cksum, drop packet\n",
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001006 vring_index);
1007 goto dma_error;
1008 }
1009
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001010 vring->ctx[i].nr_frags = nr_frags;
1011 wil_tx_desc_set_nr_frags(d, nr_frags);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001012
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001013 /* middle segments */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001014 for (; f < nr_frags; f++) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001015 const struct skb_frag_struct *frag =
1016 &skb_shinfo(skb)->frags[f];
1017 int len = skb_frag_size(frag);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001018
Vladimir Kondratieve59d16c2015-02-01 10:55:12 +02001019 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001020 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1021 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1022 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001023 i = (swhead + f + 1) % vring->size;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001024 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001025 pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001026 DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001027 if (unlikely(dma_mapping_error(dev, pa)))
1028 goto dma_error;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001029 vring->ctx[i].mapped_as = wil_mapped_as_page;
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001030 wil_tx_desc_map(d, pa, len, vring_index);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001031 /* no need to check return code -
1032 * if it succeeded for 1-st descriptor,
1033 * it will succeed here too
1034 */
1035 wil_tx_desc_offload_cksum_set(wil, d, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001036 }
1037 /* for the last seg only */
1038 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
Kirshenbaum Erez668b2bb2013-06-23 12:59:35 +03001039 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001040 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001041 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001042 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1043 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1044 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001045
Vladimir Kondratiev6cdadd42013-07-11 18:03:41 +03001046 /* hold reference to skb
1047 * to prevent skb release before accounting
1048 * in case of immediate "tx done"
1049 */
1050 vring->ctx[i].skb = skb_get(skb);
1051
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001052 /* performance monitoring */
1053 used = wil_vring_used_tx(vring);
1054 if (wil_val_in_range(vring_idle_trsh,
1055 used, used + nr_frags + 1)) {
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001056 txdata->idle += get_cycles() - txdata->last_idle;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001057 wil_dbg_txrx(wil, "Ring[%2d] not idle %d -> %d\n",
1058 vring_index, used, used + nr_frags + 1);
1059 }
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001060
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001061 /* advance swhead */
1062 wil_vring_advance_head(vring, nr_frags + 1);
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001063 wil_dbg_txrx(wil, "Tx[%2d] swhead %d -> %d\n", vring_index, swhead,
1064 vring->swhead);
Vladimir Kondratiev98658092013-05-12 14:43:35 +03001065 trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001066 iowrite32(vring->swhead, wil->csr + HOSTADDR(vring->hwtail));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001067
1068 return 0;
1069 dma_error:
1070 /* unmap what we have mapped */
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001071 nr_frags = f + 1; /* frags mapped + one for skb head */
1072 for (f = 0; f < nr_frags; f++) {
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001073 struct wil_ctx *ctx;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001074
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001075 i = (swhead + f) % vring->size;
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001076 ctx = &vring->ctx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001077 _d = &vring->va[i].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001078 *d = *_d;
1079 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001080 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001081
1082 if (ctx->skb)
1083 dev_kfree_skb_any(ctx->skb);
1084
1085 memset(ctx, 0, sizeof(*ctx));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001086 }
1087
1088 return -EINVAL;
1089}
1090
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001091static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1092 struct sk_buff *skb)
1093{
1094 int vring_index = vring - wil->vring_tx;
1095 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1096 int rc;
1097
1098 spin_lock(&txdata->lock);
1099 rc = __wil_tx_vring(wil, vring, skb);
1100 spin_unlock(&txdata->lock);
1101 return rc;
1102}
1103
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001104netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1105{
1106 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001107 struct ethhdr *eth = (void *)skb->data;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001108 struct vring *vring;
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001109 static bool pr_once_fw;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001110 int rc;
1111
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001112 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001113 if (unlikely(!test_bit(wil_status_fwready, wil->status))) {
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001114 if (!pr_once_fw) {
1115 wil_err(wil, "FW not ready\n");
1116 pr_once_fw = true;
1117 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001118 goto drop;
1119 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001120 if (unlikely(!test_bit(wil_status_fwconnected, wil->status))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001121 wil_err(wil, "FW not connected\n");
1122 goto drop;
1123 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001124 if (unlikely(wil->wdev->iftype == NL80211_IFTYPE_MONITOR)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001125 wil_err(wil, "Xmit in monitor mode not supported\n");
1126 goto drop;
1127 }
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001128 pr_once_fw = false;
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001129
1130 /* find vring */
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001131 if (wil->wdev->iftype == NL80211_IFTYPE_STATION) {
1132 /* in STA mode (ESS), all to same VRING */
1133 vring = wil_find_tx_vring_sta(wil, skb);
1134 } else { /* direct communication, find matching VRING */
1135 if (is_unicast_ether_addr(eth->h_dest))
1136 vring = wil_find_tx_vring(wil, skb);
1137 else
1138 vring = wil_tx_bcast(wil, skb);
1139 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001140 if (unlikely(!vring)) {
Vladimir Kondratiev5aed1392014-06-16 19:37:15 +03001141 wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001142 goto drop;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001143 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001144 /* set up vring entry */
1145 rc = wil_tx_vring(wil, vring, skb);
1146
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001147 /* do we still have enough room in the vring? */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001148 if (unlikely(wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring))) {
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001149 netif_tx_stop_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001150 wil_dbg_txrx(wil, "netif_tx_stop : ring full\n");
1151 }
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001152
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001153 switch (rc) {
1154 case 0:
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001155 /* statistics will be updated on the tx_complete */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001156 dev_kfree_skb_any(skb);
1157 return NETDEV_TX_OK;
1158 case -ENOMEM:
1159 return NETDEV_TX_BUSY;
1160 default:
Vladimir Kondratievafda8bb2013-01-28 18:31:07 +02001161 break; /* goto drop; */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001162 }
1163 drop:
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001164 ndev->stats.tx_dropped++;
1165 dev_kfree_skb_any(skb);
1166
1167 return NET_XMIT_DROP;
1168}
1169
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001170static inline bool wil_need_txstat(struct sk_buff *skb)
1171{
1172 struct ethhdr *eth = (void *)skb->data;
1173
1174 return is_unicast_ether_addr(eth->h_dest) && skb->sk &&
1175 (skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS);
1176}
1177
1178static inline void wil_consume_skb(struct sk_buff *skb, bool acked)
1179{
1180 if (unlikely(wil_need_txstat(skb)))
1181 skb_complete_wifi_ack(skb, acked);
1182 else
1183 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb);
1184}
1185
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001186/**
1187 * Clean up transmitted skb's from the Tx VRING
1188 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001189 * Return number of descriptors cleared
1190 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001191 * Safe to call from IRQ
1192 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001193int wil_tx_complete(struct wil6210_priv *wil, int ringid)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001194{
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001195 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001196 struct device *dev = wil_to_dev(wil);
1197 struct vring *vring = &wil->vring_tx[ringid];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001198 struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001199 int done = 0;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001200 int cid = wil->vring2cid_tid[ringid][0];
1201 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001202 volatile struct vring_tx_desc *_d;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001203 int used_before_complete;
1204 int used_new;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001205
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001206 if (unlikely(!vring->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001207 wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001208 return 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001209 }
1210
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001211 if (unlikely(!txdata->enabled)) {
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001212 wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
1213 return 0;
1214 }
1215
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001216 wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001217
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001218 used_before_complete = wil_vring_used_tx(vring);
1219
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001220 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001221 int new_swtail;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001222 struct wil_ctx *ctx = &vring->ctx[vring->swtail];
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001223 /**
1224 * For the fragmented skb, HW will set DU bit only for the
1225 * last fragment. look for it
1226 */
1227 int lf = (vring->swtail + ctx->nr_frags) % vring->size;
1228 /* TODO: check we are not past head */
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001229
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001230 _d = &vring->va[lf].tx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001231 if (unlikely(!(_d->dma.status & TX_DMA_STATUS_DU)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001232 break;
1233
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001234 new_swtail = (lf + 1) % vring->size;
1235 while (vring->swtail != new_swtail) {
1236 struct vring_tx_desc dd, *d = &dd;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001237 u16 dmalen;
Vladimir Kondratiev76dfa4b2014-07-14 09:49:39 +03001238 struct sk_buff *skb;
1239
1240 ctx = &vring->ctx[vring->swtail];
1241 skb = ctx->skb;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001242 _d = &vring->va[vring->swtail].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001243
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001244 *d = *_d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001245
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001246 dmalen = le16_to_cpu(d->dma.length);
1247 trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
1248 d->dma.error);
1249 wil_dbg_txrx(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001250 "TxC[%2d][%3d] : %d bytes, status 0x%02x err 0x%02x\n",
1251 ringid, vring->swtail, dmalen,
1252 d->dma.status, d->dma.error);
1253 wil_hex_dump_txrx("TxCD ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001254 (const void *)d, sizeof(*d), false);
1255
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001256 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001257
1258 if (skb) {
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001259 if (likely(d->dma.error == 0)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001260 ndev->stats.tx_packets++;
1261 stats->tx_packets++;
1262 ndev->stats.tx_bytes += skb->len;
1263 stats->tx_bytes += skb->len;
1264 } else {
1265 ndev->stats.tx_errors++;
1266 stats->tx_errors++;
1267 }
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001268 wil_consume_skb(skb, d->dma.error == 0);
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001269 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001270 memset(ctx, 0, sizeof(*ctx));
1271 /* There is no need to touch HW descriptor:
1272 * - ststus bit TX_DMA_STATUS_DU is set by design,
1273 * so hardware will not try to process this desc.,
1274 * - rest of descriptor will be initialized on Tx.
1275 */
1276 vring->swtail = wil_vring_next_tail(vring);
1277 done++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001278 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001279 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001280
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001281 /* performance monitoring */
1282 used_new = wil_vring_used_tx(vring);
1283 if (wil_val_in_range(vring_idle_trsh,
1284 used_new, used_before_complete)) {
1285 wil_dbg_txrx(wil, "Ring[%2d] idle %d -> %d\n",
1286 ringid, used_before_complete, used_new);
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001287 txdata->last_idle = get_cycles();
1288 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001289
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001290 if (wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring)) {
1291 wil_dbg_txrx(wil, "netif_tx_wake : ring not full\n");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001292 netif_tx_wake_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001293 }
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001294
1295 return done;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001296}