blob: c530c795f4ab6c9b1413db821623d6df3ebea748 [file] [log] [blame]
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001/*
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03002 * Copyright (c) 2012-2015 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
Vladimir Kondratievc406ea72015-03-15 16:00:19 +020036bool rx_align_2;
37module_param(rx_align_2, bool, S_IRUGO);
38MODULE_PARM_DESC(rx_align_2, " align Rx buffers on 4*n+2, default - no");
39
40static inline uint wil_rx_snaplen(void)
41{
42 return rx_align_2 ? 6 : 0;
43}
44
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080045static inline int wil_vring_is_empty(struct vring *vring)
46{
47 return vring->swhead == vring->swtail;
48}
49
50static inline u32 wil_vring_next_tail(struct vring *vring)
51{
52 return (vring->swtail + 1) % vring->size;
53}
54
55static inline void wil_vring_advance_head(struct vring *vring, int n)
56{
57 vring->swhead = (vring->swhead + n) % vring->size;
58}
59
60static inline int wil_vring_is_full(struct vring *vring)
61{
62 return wil_vring_next_tail(vring) == vring->swhead;
63}
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +030064
Vladimir Shulman0436fd92015-02-15 14:02:34 +020065/* Used space in Tx Vring */
66static inline int wil_vring_used_tx(struct vring *vring)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080067{
68 u32 swhead = vring->swhead;
69 u32 swtail = vring->swtail;
Vladimir Shulman0436fd92015-02-15 14:02:34 +020070 return (vring->size + swhead - swtail) % vring->size;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080071}
72
Vladimir Shulman0436fd92015-02-15 14:02:34 +020073/* Available space in Tx Vring */
74static inline int wil_vring_avail_tx(struct vring *vring)
75{
76 return vring->size - wil_vring_used_tx(vring) - 1;
77}
78
79/* wil_vring_wmark_low - low watermark for available descriptor space */
Vladimir Kondratiev5bb64232014-05-27 14:45:46 +030080static inline int wil_vring_wmark_low(struct vring *vring)
81{
82 return vring->size/8;
83}
84
Vladimir Shulman0436fd92015-02-15 14:02:34 +020085/* wil_vring_wmark_high - high watermark for available descriptor space */
Vladimir Kondratiev5bb64232014-05-27 14:45:46 +030086static inline int wil_vring_wmark_high(struct vring *vring)
87{
88 return vring->size/4;
89}
90
Vladimir Shulman0436fd92015-02-15 14:02:34 +020091/* wil_val_in_range - check if value in [min,max) */
92static inline bool wil_val_in_range(int val, int min, int max)
93{
94 return val >= min && val < max;
95}
96
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080097static int wil_vring_alloc(struct wil6210_priv *wil, struct vring *vring)
98{
99 struct device *dev = wil_to_dev(wil);
100 size_t sz = vring->size * sizeof(vring->va[0]);
101 uint i;
102
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300103 wil_dbg_misc(wil, "%s()\n", __func__);
104
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800105 BUILD_BUG_ON(sizeof(vring->va[0]) != 32);
106
107 vring->swhead = 0;
108 vring->swtail = 0;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300109 vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800110 if (!vring->ctx) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800111 vring->va = NULL;
112 return -ENOMEM;
113 }
Vladimir Shulman0436fd92015-02-15 14:02:34 +0200114 /* vring->va should be aligned on its size rounded up to power of 2
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800115 * This is granted by the dma_alloc_coherent
116 */
117 vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
118 if (!vring->va) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800119 kfree(vring->ctx);
120 vring->ctx = NULL;
121 return -ENOMEM;
122 }
123 /* initially, all descriptors are SW owned
124 * For Tx and Rx, ownership bit is at the same location, thus
125 * we can use any
126 */
127 for (i = 0; i < vring->size; i++) {
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300128 volatile struct vring_tx_desc *_d = &vring->va[i].tx;
129
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300130 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800131 }
132
Vladimir Kondratiev39c52ee2014-05-27 14:45:49 +0300133 wil_dbg_misc(wil, "vring[%d] 0x%p:%pad 0x%p\n", vring->size,
134 vring->va, &vring->pa, vring->ctx);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800135
136 return 0;
137}
138
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200139static void wil_txdesc_unmap(struct device *dev, struct vring_tx_desc *d,
140 struct wil_ctx *ctx)
141{
142 dma_addr_t pa = wil_desc_addr(&d->dma.addr);
143 u16 dmalen = le16_to_cpu(d->dma.length);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300144
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200145 switch (ctx->mapped_as) {
146 case wil_mapped_as_single:
147 dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
148 break;
149 case wil_mapped_as_page:
150 dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
151 break;
152 default:
153 break;
154 }
155}
156
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800157static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
158 int tx)
159{
160 struct device *dev = wil_to_dev(wil);
161 size_t sz = vring->size * sizeof(vring->va[0]);
162
Vladimir Kondratievef772852014-09-10 16:34:31 +0300163 if (tx) {
164 int vring_index = vring - wil->vring_tx;
165
166 wil_dbg_misc(wil, "free Tx vring %d [%d] 0x%p:%pad 0x%p\n",
167 vring_index, vring->size, vring->va,
168 &vring->pa, vring->ctx);
169 } else {
170 wil_dbg_misc(wil, "free Rx vring [%d] 0x%p:%pad 0x%p\n",
171 vring->size, vring->va,
172 &vring->pa, vring->ctx);
173 }
174
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800175 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300176 dma_addr_t pa;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300177 u16 dmalen;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300178 struct wil_ctx *ctx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300179
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800180 if (tx) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300181 struct vring_tx_desc dd, *d = &dd;
182 volatile struct vring_tx_desc *_d =
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800183 &vring->va[vring->swtail].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300184
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300185 ctx = &vring->ctx[vring->swtail];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300186 *d = *_d;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200187 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300188 if (ctx->skb)
189 dev_kfree_skb_any(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800190 vring->swtail = wil_vring_next_tail(vring);
191 } else { /* rx */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300192 struct vring_rx_desc dd, *d = &dd;
193 volatile struct vring_rx_desc *_d =
Vladimir Kondratiev4d1ac072013-07-11 18:03:38 +0300194 &vring->va[vring->swhead].rx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300195
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300196 ctx = &vring->ctx[vring->swhead];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300197 *d = *_d;
198 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300199 dmalen = le16_to_cpu(d->dma.length);
200 dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300201 kfree_skb(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800202 wil_vring_advance_head(vring, 1);
203 }
204 }
205 dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
206 kfree(vring->ctx);
207 vring->pa = 0;
208 vring->va = NULL;
209 vring->ctx = NULL;
210}
211
212/**
213 * Allocate one skb for Rx VRING
214 *
215 * Safe to call from IRQ
216 */
217static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
218 u32 i, int headroom)
219{
220 struct device *dev = wil_to_dev(wil);
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200221 unsigned int sz = mtu_max + ETH_HLEN + wil_rx_snaplen();
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300222 struct vring_rx_desc dd, *d = &dd;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300223 volatile struct vring_rx_desc *_d = &vring->va[i].rx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800224 dma_addr_t pa;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800225 struct sk_buff *skb = dev_alloc_skb(sz + headroom);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300226
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800227 if (unlikely(!skb))
228 return -ENOMEM;
229
230 skb_reserve(skb, headroom);
231 skb_put(skb, sz);
232
233 pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
234 if (unlikely(dma_mapping_error(dev, pa))) {
235 kfree_skb(skb);
236 return -ENOMEM;
237 }
238
Vladimir Kondratiev48c963a2015-04-30 16:25:06 +0300239 d->dma.d0 = RX_DMA_D0_CMD_DMA_RT | RX_DMA_D0_CMD_DMA_IT;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300240 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800241 /* ip_length don't care */
242 /* b11 don't care */
243 /* error don't care */
244 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300245 d->dma.length = cpu_to_le16(sz);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300246 *_d = *d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300247 vring->ctx[i].skb = skb;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800248
249 return 0;
250}
251
252/**
253 * Adds radiotap header
254 *
255 * Any error indicated as "Bad FCS"
256 *
257 * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
258 * - Rx descriptor: 32 bytes
259 * - Phy info
260 */
261static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300262 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800263{
264 struct wireless_dev *wdev = wil->wdev;
265 struct wil6210_rtap {
266 struct ieee80211_radiotap_header rthdr;
267 /* fields should be in the order of bits in rthdr.it_present */
268 /* flags */
269 u8 flags;
270 /* channel */
271 __le16 chnl_freq __aligned(2);
272 __le16 chnl_flags;
273 /* MCS */
274 u8 mcs_present;
275 u8 mcs_flags;
276 u8 mcs_index;
277 } __packed;
278 struct wil6210_rtap_vendor {
279 struct wil6210_rtap rtap;
280 /* vendor */
281 u8 vendor_oui[3] __aligned(2);
282 u8 vendor_ns;
283 __le16 vendor_skip;
284 u8 vendor_data[0];
285 } __packed;
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300286 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800287 struct wil6210_rtap_vendor *rtap_vendor;
288 int rtap_len = sizeof(struct wil6210_rtap);
289 int phy_length = 0; /* phy info header size, bytes */
290 static char phy_data[128];
291 struct ieee80211_channel *ch = wdev->preset_chandef.chan;
292
293 if (rtap_include_phy_info) {
294 rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
295 /* calculate additional length */
296 if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
297 /**
298 * PHY info starts from 8-byte boundary
299 * there are 8-byte lines, last line may be partially
300 * written (HW bug), thus FW configures for last line
301 * to be excessive. Driver skips this last line.
302 */
303 int len = min_t(int, 8 + sizeof(phy_data),
304 wil_rxdesc_phy_length(d));
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300305
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800306 if (len > 8) {
307 void *p = skb_tail_pointer(skb);
308 void *pa = PTR_ALIGN(p, 8);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300309
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800310 if (skb_tailroom(skb) >= len + (pa - p)) {
311 phy_length = len - 8;
312 memcpy(phy_data, pa, phy_length);
313 }
314 }
315 }
316 rtap_len += phy_length;
317 }
318
319 if (skb_headroom(skb) < rtap_len &&
320 pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
321 wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
322 return;
323 }
324
325 rtap_vendor = (void *)skb_push(skb, rtap_len);
326 memset(rtap_vendor, 0, rtap_len);
327
328 rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
329 rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
330 rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
331 (1 << IEEE80211_RADIOTAP_FLAGS) |
332 (1 << IEEE80211_RADIOTAP_CHANNEL) |
333 (1 << IEEE80211_RADIOTAP_MCS));
334 if (d->dma.status & RX_DMA_STATUS_ERROR)
335 rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;
336
337 rtap_vendor->rtap.chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
338 rtap_vendor->rtap.chnl_flags = cpu_to_le16(0);
339
340 rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
341 rtap_vendor->rtap.mcs_flags = 0;
342 rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);
343
344 if (rtap_include_phy_info) {
345 rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
346 IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
347 /* OUI for Wilocity 04:ce:14 */
348 rtap_vendor->vendor_oui[0] = 0x04;
349 rtap_vendor->vendor_oui[1] = 0xce;
350 rtap_vendor->vendor_oui[2] = 0x14;
351 rtap_vendor->vendor_ns = 1;
352 /* Rx descriptor + PHY data */
353 rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
354 phy_length);
355 memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
356 memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
357 phy_length);
358 }
359}
360
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300361/* similar to ieee80211_ version, but FC contain only 1-st byte */
362static inline int wil_is_back_req(u8 fc)
363{
364 return (fc & (IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
365 (IEEE80211_FTYPE_CTL | IEEE80211_STYPE_BACK_REQ);
366}
367
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800368/**
369 * reap 1 frame from @swhead
370 *
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300371 * Rx descriptor copied to skb->cb
372 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800373 * Safe to call from IRQ
374 */
375static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
376 struct vring *vring)
377{
378 struct device *dev = wil_to_dev(wil);
379 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300380 volatile struct vring_rx_desc *_d;
381 struct vring_rx_desc *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800382 struct sk_buff *skb;
383 dma_addr_t pa;
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200384 unsigned int snaplen = wil_rx_snaplen();
385 unsigned int sz = mtu_max + ETH_HLEN + snaplen;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300386 u16 dmalen;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800387 u8 ftype;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200388 int cid;
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300389 int i;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200390 struct wil_net_stats *stats;
391
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300392 BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
393
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300394again:
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200395 if (unlikely(wil_vring_is_empty(vring)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800396 return NULL;
397
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300398 i = (int)vring->swhead;
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200399 _d = &vring->va[i].rx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200400 if (unlikely(!(_d->dma.status & RX_DMA_STATUS_DU))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800401 /* it is not error, we just reached end of Rx done area */
402 return NULL;
403 }
404
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200405 skb = vring->ctx[i].skb;
406 vring->ctx[i].skb = NULL;
407 wil_vring_advance_head(vring, 1);
408 if (!skb) {
409 wil_err(wil, "No Rx skb at [%d]\n", i);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300410 goto again;
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200411 }
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300412 d = wil_skb_rxdesc(skb);
413 *d = *_d;
414 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300415
416 dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
417 dmalen = le16_to_cpu(d->dma.length);
418
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200419 trace_wil6210_rx(i, d);
420 wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", i, dmalen);
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300421 wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300422 (const void *)d, sizeof(*d), false);
423
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300424 cid = wil_rxdesc_cid(d);
425 stats = &wil->sta[cid].stats;
426
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200427 if (unlikely(dmalen > sz)) {
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300428 wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300429 stats->rx_large_frame++;
Wei Yongjun110dea02013-05-23 17:10:43 +0800430 kfree_skb(skb);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300431 goto again;
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300432 }
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300433 skb_trim(skb, dmalen);
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300434
Vladimir Kondratiev1cbbcb02014-01-08 11:50:49 +0200435 prefetch(skb->data);
436
Vladimir Kondratievc0d37712013-05-12 14:43:34 +0300437 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
438 skb->data, skb_headlen(skb), false);
439
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200440 stats->last_mcs_rx = wil_rxdesc_mcs(d);
Vladimir Kondratievc4a110d2015-06-09 14:11:18 +0300441 if (stats->last_mcs_rx < ARRAY_SIZE(stats->rx_per_mcs))
442 stats->rx_per_mcs[stats->last_mcs_rx]++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800443
444 /* use radiotap header only if required */
445 if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300446 wil_rx_add_radiotap_header(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800447
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800448 /* no extra checks if in sniffer mode */
449 if (ndev->type != ARPHRD_ETHER)
450 return skb;
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300451 /* Non-data frames may be delivered through Rx DMA channel (ex: BAR)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800452 * Driver should recognize it by frame type, that is found
453 * in Rx descriptor. If type is not data, it is 802.11 frame as is
454 */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300455 ftype = wil_rxdesc_ftype(d) << 2;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200456 if (unlikely(ftype != IEEE80211_FTYPE_DATA)) {
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300457 u8 fc1 = wil_rxdesc_fc1(d);
458 int mid = wil_rxdesc_mid(d);
459 int tid = wil_rxdesc_tid(d);
460 u16 seq = wil_rxdesc_seq(d);
461
462 wil_dbg_txrx(wil,
463 "Non-data frame FC[7:0] 0x%02x MID %d CID %d TID %d Seq 0x%03x\n",
464 fc1, mid, cid, tid, seq);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300465 stats->rx_non_data_frame++;
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300466 if (wil_is_back_req(fc1)) {
467 wil_dbg_txrx(wil,
468 "BAR: MID %d CID %d TID %d Seq 0x%03x\n",
469 mid, cid, tid, seq);
470 wil_rx_bar(wil, cid, tid, seq);
471 } else {
472 /* print again all info. One can enable only this
473 * without overhead for printing every Rx frame
474 */
475 wil_dbg_txrx(wil,
476 "Unhandled non-data frame FC[7:0] 0x%02x MID %d CID %d TID %d Seq 0x%03x\n",
477 fc1, mid, cid, tid, seq);
478 wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
479 (const void *)d, sizeof(*d), false);
480 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
481 skb->data, skb_headlen(skb), false);
482 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800483 kfree_skb(skb);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300484 goto again;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800485 }
486
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200487 if (unlikely(skb->len < ETH_HLEN + snaplen)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800488 wil_err(wil, "Short frame, len = %d\n", skb->len);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300489 stats->rx_short_frame++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800490 kfree_skb(skb);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300491 goto again;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800492 }
493
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300494 /* L4 IDENT is on when HW calculated checksum, check status
495 * and in case of error drop the packet
496 * higher stack layers will handle retransmission (if required)
497 */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200498 if (likely(d->dma.status & RX_DMA_STATUS_L4I)) {
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300499 /* L4 protocol identified, csum calculated */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200500 if (likely((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0))
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300501 skb->ip_summed = CHECKSUM_UNNECESSARY;
Vladimir Kondratiev4a68ab102013-08-13 15:25:32 +0300502 /* If HW reports bad checksum, let IP stack re-check it
503 * For example, HW don't understand Microsoft IP stack that
504 * mis-calculates TCP checksum - if it should be 0x0,
505 * it writes 0xffff in violation of RFC 1624
506 */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300507 }
508
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200509 if (snaplen) {
510 /* Packet layout
511 * +-------+-------+---------+------------+------+
512 * | SA(6) | DA(6) | SNAP(6) | ETHTYPE(2) | DATA |
513 * +-------+-------+---------+------------+------+
514 * Need to remove SNAP, shifting SA and DA forward
515 */
516 memmove(skb->data + snaplen, skb->data, 2 * ETH_ALEN);
517 skb_pull(skb, snaplen);
518 }
519
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800520 return skb;
521}
522
523/**
524 * allocate and fill up to @count buffers in rx ring
525 * buffers posted at @swtail
526 */
527static int wil_rx_refill(struct wil6210_priv *wil, int count)
528{
529 struct net_device *ndev = wil_to_ndev(wil);
530 struct vring *v = &wil->vring_rx;
531 u32 next_tail;
532 int rc = 0;
533 int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
534 WIL6210_RTAP_SIZE : 0;
535
536 for (; next_tail = wil_vring_next_tail(v),
537 (next_tail != v->swhead) && (count-- > 0);
538 v->swtail = next_tail) {
539 rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200540 if (unlikely(rc)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800541 wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
542 rc, v->swtail);
543 break;
544 }
545 }
Vladimir Kondratievb9eeb512015-07-30 13:52:03 +0300546 wil_w(wil, v->hwtail, v->swtail);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800547
548 return rc;
549}
550
551/*
552 * Pass Rx packet to the netif. Update statistics.
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300553 * Called in softirq context (NAPI poll).
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800554 */
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200555void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800556{
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200557 gro_result_t rc = GRO_NORMAL;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200558 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200559 struct wireless_dev *wdev = wil_to_wdev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800560 unsigned int len = skb->len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200561 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200562 int cid = wil_rxdesc_cid(d); /* always 0..7, no need to check */
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200563 struct ethhdr *eth = (void *)skb->data;
564 /* here looking for DA, not A1, thus Rxdesc's 'mcast' indication
565 * is not suitable, need to look at data
566 */
567 int mcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200568 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200569 struct sk_buff *xmit_skb = NULL;
570 static const char * const gro_res_str[] = {
571 [GRO_MERGED] = "GRO_MERGED",
572 [GRO_MERGED_FREE] = "GRO_MERGED_FREE",
573 [GRO_HELD] = "GRO_HELD",
574 [GRO_NORMAL] = "GRO_NORMAL",
575 [GRO_DROP] = "GRO_DROP",
576 };
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800577
Vladimir Shulman05536402015-07-30 13:52:04 +0300578 if (ndev->features & NETIF_F_RXHASH)
579 /* fake L4 to ensure it won't be re-calculated later
580 * set hash to any non-zero value to activate rps
581 * mechanism, core will be chosen according
582 * to user-level rps configuration.
583 */
584 skb_set_hash(skb, 1, PKT_HASH_TYPE_L4);
585
Vladimir Kondratiev241804c2013-01-28 18:31:02 +0200586 skb_orphan(skb);
587
Vladimir Kondratiev02beaf12015-03-08 15:42:03 +0200588 if (wdev->iftype == NL80211_IFTYPE_AP && !wil->ap_isolate) {
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200589 if (mcast) {
590 /* send multicast frames both to higher layers in
591 * local net stack and back to the wireless medium
592 */
593 xmit_skb = skb_copy(skb, GFP_ATOMIC);
594 } else {
595 int xmit_cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800596
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200597 if (xmit_cid >= 0) {
598 /* The destination station is associated to
599 * this AP (in this VLAN), so send the frame
600 * directly to it and do not pass it to local
601 * net stack.
602 */
603 xmit_skb = skb;
604 skb = NULL;
605 }
606 }
607 }
608 if (xmit_skb) {
609 /* Send to wireless media and increase priority by 256 to
610 * keep the received priority instead of reclassifying
611 * the frame (see cfg80211_classify8021d).
612 */
613 xmit_skb->dev = ndev;
614 xmit_skb->priority += 256;
615 xmit_skb->protocol = htons(ETH_P_802_3);
616 skb_reset_network_header(xmit_skb);
617 skb_reset_mac_header(xmit_skb);
618 wil_dbg_txrx(wil, "Rx -> Tx %d bytes\n", len);
619 dev_queue_xmit(xmit_skb);
620 }
621
622 if (skb) { /* deliver to local stack */
623
624 skb->protocol = eth_type_trans(skb, ndev);
625 rc = napi_gro_receive(&wil->napi_rx, skb);
626 wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
627 len, gro_res_str[rc]);
628 }
629 /* statistics. rc set to GRO_NORMAL for AP bridging */
Vladimir Kondratievb5998e62014-03-17 15:34:22 +0200630 if (unlikely(rc == GRO_DROP)) {
631 ndev->stats.rx_dropped++;
632 stats->rx_dropped++;
633 wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
634 } else {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800635 ndev->stats.rx_packets++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200636 stats->rx_packets++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800637 ndev->stats.rx_bytes += len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200638 stats->rx_bytes += len;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200639 if (mcast)
640 ndev->stats.multicast++;
Vladimir Kondratiev194b4822014-06-16 19:37:14 +0300641 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800642}
643
644/**
645 * Proceed all completed skb's from Rx VRING
646 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300647 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800648 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300649void wil_rx_handle(struct wil6210_priv *wil, int *quota)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800650{
651 struct net_device *ndev = wil_to_ndev(wil);
652 struct vring *v = &wil->vring_rx;
653 struct sk_buff *skb;
654
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200655 if (unlikely(!v->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800656 wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
657 return;
658 }
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200659 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300660 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
661 (*quota)--;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800662
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800663 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
664 skb->dev = ndev;
665 skb_reset_mac_header(skb);
666 skb->ip_summed = CHECKSUM_UNNECESSARY;
667 skb->pkt_type = PACKET_OTHERHOST;
668 skb->protocol = htons(ETH_P_802_2);
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200669 wil_netif_rx_any(skb, ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800670 } else {
Vladimir Kondratieve4373d82014-12-23 09:47:21 +0200671 wil_rx_reorder(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800672 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800673 }
674 wil_rx_refill(wil, v->size);
675}
676
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200677int wil_rx_init(struct wil6210_priv *wil, u16 size)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800678{
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800679 struct vring *vring = &wil->vring_rx;
680 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800681
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300682 wil_dbg_misc(wil, "%s()\n", __func__);
683
Vladimir Kondratiev8bf6adb2014-03-17 15:34:17 +0200684 if (vring->va) {
685 wil_err(wil, "Rx ring already allocated\n");
686 return -EINVAL;
687 }
688
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200689 vring->size = size;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800690 rc = wil_vring_alloc(wil, vring);
691 if (rc)
692 return rc;
693
Vladimir Kondratiev47e19af2013-01-28 18:30:59 +0200694 rc = wmi_rx_chain_add(wil, vring);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800695 if (rc)
696 goto err_free;
697
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800698 rc = wil_rx_refill(wil, vring->size);
699 if (rc)
700 goto err_free;
701
702 return 0;
703 err_free:
704 wil_vring_free(wil, vring, 0);
705
706 return rc;
707}
708
709void wil_rx_fini(struct wil6210_priv *wil)
710{
711 struct vring *vring = &wil->vring_rx;
712
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300713 wil_dbg_misc(wil, "%s()\n", __func__);
714
Vladimir Kondratiev2acb4222013-01-28 18:31:08 +0200715 if (vring->va)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800716 wil_vring_free(wil, vring, 0);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800717}
718
719int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
720 int cid, int tid)
721{
722 int rc;
723 struct wmi_vring_cfg_cmd cmd = {
724 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
725 .vring_cfg = {
726 .tx_sw_ring = {
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +0200727 .max_mpdu_size =
Vladimir Kondratievc44690a2014-12-23 09:47:11 +0200728 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
Vladimir Kondratievb5d98e92013-04-18 14:33:51 +0300729 .ring_size = cpu_to_le16(size),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800730 },
731 .ringid = id,
Vladimir Kondratieva70abea2014-03-17 15:34:05 +0200732 .cidxtid = mk_cidxtid(cid, tid),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800733 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
734 .mac_ctrl = 0,
735 .to_resolution = 0,
Vladimir Kondratiev32772132014-12-23 09:47:03 +0200736 .agg_max_wsize = 0,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800737 .schd_params = {
738 .priority = cpu_to_le16(0),
739 .timeslot_us = cpu_to_le16(0xfff),
740 },
741 },
742 };
743 struct {
744 struct wil6210_mbox_hdr_wmi wmi;
745 struct wmi_vring_cfg_done_event cmd;
746 } __packed reply;
747 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200748 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800749
Vladimir Kondratieve0106ad2014-09-10 16:34:45 +0300750 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
751 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300752
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800753 if (vring->va) {
754 wil_err(wil, "Tx ring [%d] already allocated\n", id);
755 rc = -EINVAL;
756 goto out;
757 }
758
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200759 memset(txdata, 0, sizeof(*txdata));
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200760 spin_lock_init(&txdata->lock);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800761 vring->size = size;
762 rc = wil_vring_alloc(wil, vring);
763 if (rc)
764 goto out;
765
Vladimir Kondratiev93ae6d42014-02-27 16:20:51 +0200766 wil->vring2cid_tid[id][0] = cid;
767 wil->vring2cid_tid[id][1] = tid;
768
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800769 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800770
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300771 if (!wil->privacy)
772 txdata->dot1x_open = true;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800773 rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
774 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
775 if (rc)
776 goto out_free;
777
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200778 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800779 wil_err(wil, "Tx config failed, status 0x%02x\n",
780 reply.cmd.status);
Vladimir Kondratievc3319972013-01-28 18:31:09 +0200781 rc = -EINVAL;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800782 goto out_free;
783 }
784 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
785
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200786 txdata->enabled = 1;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300787 if (txdata->dot1x_open && (agg_wsize >= 0))
Vladimir Kondratiev3a3def82014-12-23 09:47:05 +0200788 wil_addba_tx_request(wil, id, agg_wsize);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200789
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800790 return 0;
791 out_free:
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300792 txdata->dot1x_open = false;
793 txdata->enabled = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800794 wil_vring_free(wil, vring, 1);
795 out:
796
797 return rc;
798}
799
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200800int wil_vring_init_bcast(struct wil6210_priv *wil, int id, int size)
801{
802 int rc;
803 struct wmi_bcast_vring_cfg_cmd cmd = {
804 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
805 .vring_cfg = {
806 .tx_sw_ring = {
807 .max_mpdu_size =
808 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
809 .ring_size = cpu_to_le16(size),
810 },
811 .ringid = id,
812 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
813 },
814 };
815 struct {
816 struct wil6210_mbox_hdr_wmi wmi;
817 struct wmi_vring_cfg_done_event cmd;
818 } __packed reply;
819 struct vring *vring = &wil->vring_tx[id];
820 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
821
822 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
823 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
824
825 if (vring->va) {
826 wil_err(wil, "Tx ring [%d] already allocated\n", id);
827 rc = -EINVAL;
828 goto out;
829 }
830
831 memset(txdata, 0, sizeof(*txdata));
832 spin_lock_init(&txdata->lock);
833 vring->size = size;
834 rc = wil_vring_alloc(wil, vring);
835 if (rc)
836 goto out;
837
838 wil->vring2cid_tid[id][0] = WIL6210_MAX_CID; /* CID */
839 wil->vring2cid_tid[id][1] = 0; /* TID */
840
841 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
842
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300843 if (!wil->privacy)
844 txdata->dot1x_open = true;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200845 rc = wmi_call(wil, WMI_BCAST_VRING_CFG_CMDID, &cmd, sizeof(cmd),
846 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
847 if (rc)
848 goto out_free;
849
850 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
851 wil_err(wil, "Tx config failed, status 0x%02x\n",
852 reply.cmd.status);
853 rc = -EINVAL;
854 goto out_free;
855 }
856 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
857
858 txdata->enabled = 1;
859
860 return 0;
861 out_free:
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300862 txdata->enabled = 0;
863 txdata->dot1x_open = false;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200864 wil_vring_free(wil, vring, 1);
865 out:
866
867 return rc;
868}
869
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800870void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
871{
872 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200873 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800874
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200875 WARN_ON(!mutex_is_locked(&wil->mutex));
876
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800877 if (!vring->va)
878 return;
879
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300880 wil_dbg_misc(wil, "%s() id=%d\n", __func__, id);
881
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200882 spin_lock_bh(&txdata->lock);
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300883 txdata->dot1x_open = false;
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200884 txdata->enabled = 0; /* no Tx can be in progress or start anew */
885 spin_unlock_bh(&txdata->lock);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200886 /* make sure NAPI won't touch this vring */
Vladimir Kondratiev9419b6a2014-12-23 09:47:14 +0200887 if (test_bit(wil_status_napi_en, wil->status))
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200888 napi_synchronize(&wil->napi_tx);
889
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800890 wil_vring_free(wil, vring, 1);
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200891 memset(txdata, 0, sizeof(*txdata));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800892}
893
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200894static struct vring *wil_find_tx_ucast(struct wil6210_priv *wil,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800895 struct sk_buff *skb)
896{
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200897 int i;
898 struct ethhdr *eth = (void *)skb->data;
899 int cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800900
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200901 if (cid < 0)
902 return NULL;
903
904 /* TODO: fix for multiple TID */
905 for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300906 if (!wil->vring_tx_data[i].dot1x_open &&
907 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
908 continue;
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200909 if (wil->vring2cid_tid[i][0] == cid) {
910 struct vring *v = &wil->vring_tx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300911
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200912 wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
913 __func__, eth->h_dest, i);
914 if (v->va) {
915 return v;
916 } else {
917 wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
918 return NULL;
919 }
920 }
921 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800922
923 return NULL;
924}
925
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200926static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
927 struct sk_buff *skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200928
929static struct vring *wil_find_tx_vring_sta(struct wil6210_priv *wil,
930 struct sk_buff *skb)
931{
932 struct vring *v;
933 int i;
934 u8 cid;
935
936 /* In the STA mode, it is expected to have only 1 VRING
937 * for the AP we connected to.
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300938 * find 1-st vring eligible for this skb and use it.
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200939 */
940 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
941 v = &wil->vring_tx[i];
942 if (!v->va)
943 continue;
944
945 cid = wil->vring2cid_tid[i][0];
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200946 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
947 continue;
948
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300949 if (!wil->vring_tx_data[i].dot1x_open &&
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200950 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300951 continue;
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200952
953 wil_dbg_txrx(wil, "Tx -> ring %d\n", i);
954
955 return v;
956 }
957
958 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
959
960 return NULL;
961}
962
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200963/* Use one of 2 strategies:
964 *
965 * 1. New (real broadcast):
966 * use dedicated broadcast vring
967 * 2. Old (pseudo-DMS):
968 * Find 1-st vring and return it;
969 * duplicate skb and send it to other active vrings;
970 * in all cases override dest address to unicast peer's address
971 * Use old strategy when new is not supported yet:
972 * - for PBSS
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200973 */
974static struct vring *wil_find_tx_bcast_1(struct wil6210_priv *wil,
975 struct sk_buff *skb)
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200976{
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200977 struct vring *v;
978 int i = wil->bcast_vring;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200979
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200980 if (i < 0)
981 return NULL;
982 v = &wil->vring_tx[i];
983 if (!v->va)
984 return NULL;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300985 if (!wil->vring_tx_data[i].dot1x_open &&
986 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
987 return NULL;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200988
989 return v;
990}
991
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200992static void wil_set_da_for_vring(struct wil6210_priv *wil,
993 struct sk_buff *skb, int vring_index)
994{
995 struct ethhdr *eth = (void *)skb->data;
996 int cid = wil->vring2cid_tid[vring_index][0];
997
998 ether_addr_copy(eth->h_dest, wil->sta[cid].addr);
999}
1000
1001static struct vring *wil_find_tx_bcast_2(struct wil6210_priv *wil,
1002 struct sk_buff *skb)
1003{
1004 struct vring *v, *v2;
1005 struct sk_buff *skb2;
1006 int i;
1007 u8 cid;
1008 struct ethhdr *eth = (void *)skb->data;
1009 char *src = eth->h_source;
1010
1011 /* find 1-st vring eligible for data */
1012 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
1013 v = &wil->vring_tx[i];
1014 if (!v->va)
1015 continue;
1016
1017 cid = wil->vring2cid_tid[i][0];
1018 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
1019 continue;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001020 if (!wil->vring_tx_data[i].dot1x_open &&
1021 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001022 continue;
1023
1024 /* don't Tx back to source when re-routing Rx->Tx at the AP */
1025 if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
1026 continue;
1027
1028 goto found;
1029 }
1030
1031 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
1032
1033 return NULL;
1034
1035found:
1036 wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
1037 wil_set_da_for_vring(wil, skb, i);
1038
1039 /* find other active vrings and duplicate skb for each */
1040 for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
1041 v2 = &wil->vring_tx[i];
1042 if (!v2->va)
1043 continue;
1044 cid = wil->vring2cid_tid[i][0];
1045 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
1046 continue;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001047 if (!wil->vring_tx_data[i].dot1x_open &&
1048 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001049 continue;
1050
1051 if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
1052 continue;
1053
1054 skb2 = skb_copy(skb, GFP_ATOMIC);
1055 if (skb2) {
1056 wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
1057 wil_set_da_for_vring(wil, skb2, i);
1058 wil_tx_vring(wil, v2, skb2);
1059 } else {
1060 wil_err(wil, "skb_copy failed\n");
1061 }
1062 }
1063
1064 return v;
1065}
1066
1067static struct vring *wil_find_tx_bcast(struct wil6210_priv *wil,
1068 struct sk_buff *skb)
1069{
1070 struct wireless_dev *wdev = wil->wdev;
1071
1072 if (wdev->iftype != NL80211_IFTYPE_AP)
1073 return wil_find_tx_bcast_2(wil, skb);
1074
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001075 return wil_find_tx_bcast_1(wil, skb);
1076}
1077
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001078static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
1079 int vring_index)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001080{
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001081 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001082 d->dma.ip_length = 0;
1083 /* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
1084 d->dma.b11 = 0/*14 | BIT(7)*/;
1085 d->dma.error = 0;
1086 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001087 d->dma.length = cpu_to_le16((u16)len);
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001088 d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001089 d->mac.d[0] = 0;
1090 d->mac.d[1] = 0;
1091 d->mac.d[2] = 0;
1092 d->mac.ucode_cmd = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001093 /* translation type: 0 - bypass; 1 - 802.3; 2 - native wifi */
1094 d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
1095 (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
1096
1097 return 0;
1098}
1099
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001100static inline
1101void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
1102{
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001103 d->mac.d[2] |= (nr_frags << MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001104}
1105
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001106/**
1107 * Sets the descriptor @d up for csum and/or TSO offloading. The corresponding
1108 * @skb is used to obtain the protocol and headers length.
1109 * @tso_desc_type is a descriptor type for TSO: 0 - a header, 1 - first data,
1110 * 2 - middle, 3 - last descriptor.
1111 */
1112
1113static void wil_tx_desc_offload_setup_tso(struct vring_tx_desc *d,
1114 struct sk_buff *skb,
1115 int tso_desc_type, bool is_ipv4,
1116 int tcp_hdr_len, int skb_net_hdr_len)
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001117{
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001118 d->dma.b11 = ETH_HLEN; /* MAC header length */
1119 d->dma.b11 |= is_ipv4 << DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS;
1120
1121 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
1122 /* L4 header len: TCP header length */
1123 d->dma.d0 |= (tcp_hdr_len & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1124
1125 /* Setup TSO: bit and desc type */
1126 d->dma.d0 |= (BIT(DMA_CFG_DESC_TX_0_TCP_SEG_EN_POS)) |
1127 (tso_desc_type << DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS);
1128 d->dma.d0 |= (is_ipv4 << DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_POS);
1129
1130 d->dma.ip_length = skb_net_hdr_len;
1131 /* Enable TCP/UDP checksum */
1132 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
1133 /* Calculate pseudo-header */
1134 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
1135}
1136
1137/**
1138 * Sets the descriptor @d up for csum. The corresponding
1139 * @skb is used to obtain the protocol and headers length.
1140 * Returns the protocol: 0 - not TCP, 1 - TCPv4, 2 - TCPv6.
1141 * Note, if d==NULL, the function only returns the protocol result.
1142 *
1143 * It is very similar to previous wil_tx_desc_offload_setup_tso. This
1144 * is "if unrolling" to optimize the critical path.
1145 */
1146
1147static int wil_tx_desc_offload_setup(struct vring_tx_desc *d,
1148 struct sk_buff *skb){
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001149 int protocol;
1150
1151 if (skb->ip_summed != CHECKSUM_PARTIAL)
1152 return 0;
1153
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +02001154 d->dma.b11 = ETH_HLEN; /* MAC header length */
1155
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001156 switch (skb->protocol) {
1157 case cpu_to_be16(ETH_P_IP):
1158 protocol = ip_hdr(skb)->protocol;
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +02001159 d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001160 break;
1161 case cpu_to_be16(ETH_P_IPV6):
1162 protocol = ipv6_hdr(skb)->nexthdr;
1163 break;
1164 default:
1165 return -EINVAL;
1166 }
1167
1168 switch (protocol) {
1169 case IPPROTO_TCP:
1170 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
1171 /* L4 header len: TCP header length */
1172 d->dma.d0 |=
1173 (tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1174 break;
1175 case IPPROTO_UDP:
1176 /* L4 header len: UDP header length */
1177 d->dma.d0 |=
1178 (sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1179 break;
1180 default:
1181 return -EINVAL;
1182 }
1183
1184 d->dma.ip_length = skb_network_header_len(skb);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001185 /* Enable TCP/UDP checksum */
1186 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
1187 /* Calculate pseudo-header */
1188 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
1189
1190 return 0;
1191}
1192
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001193static inline void wil_tx_last_desc(struct vring_tx_desc *d)
1194{
1195 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS) |
1196 BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS) |
1197 BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
1198}
1199
1200static inline void wil_set_tx_desc_last_tso(volatile struct vring_tx_desc *d)
1201{
1202 d->dma.d0 |= wil_tso_type_lst <<
1203 DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS;
1204}
1205
1206static int __wil_tx_vring_tso(struct wil6210_priv *wil, struct vring *vring,
1207 struct sk_buff *skb)
1208{
1209 struct device *dev = wil_to_dev(wil);
1210
1211 /* point to descriptors in shared memory */
1212 volatile struct vring_tx_desc *_desc = NULL, *_hdr_desc,
1213 *_first_desc = NULL;
1214
1215 /* pointers to shadow descriptors */
1216 struct vring_tx_desc desc_mem, hdr_desc_mem, first_desc_mem,
1217 *d = &hdr_desc_mem, *hdr_desc = &hdr_desc_mem,
1218 *first_desc = &first_desc_mem;
1219
1220 /* pointer to shadow descriptors' context */
1221 struct wil_ctx *hdr_ctx, *first_ctx = NULL;
1222
1223 int descs_used = 0; /* total number of used descriptors */
1224 int sg_desc_cnt = 0; /* number of descriptors for current mss*/
1225
1226 u32 swhead = vring->swhead;
1227 int used, avail = wil_vring_avail_tx(vring);
1228 int nr_frags = skb_shinfo(skb)->nr_frags;
1229 int min_desc_required = nr_frags + 1;
1230 int mss = skb_shinfo(skb)->gso_size; /* payload size w/o headers */
1231 int f, len, hdrlen, headlen;
1232 int vring_index = vring - wil->vring_tx;
1233 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1234 uint i = swhead;
1235 dma_addr_t pa;
1236 const skb_frag_t *frag = NULL;
1237 int rem_data = mss;
1238 int lenmss;
1239 int hdr_compensation_need = true;
1240 int desc_tso_type = wil_tso_type_first;
1241 bool is_ipv4;
1242 int tcp_hdr_len;
1243 int skb_net_hdr_len;
1244 int gso_type;
1245
1246 wil_dbg_txrx(wil, "%s() %d bytes to vring %d\n",
1247 __func__, skb->len, vring_index);
1248
1249 if (unlikely(!txdata->enabled))
1250 return -EINVAL;
1251
1252 /* A typical page 4K is 3-4 payloads, we assume each fragment
1253 * is a full payload, that's how min_desc_required has been
1254 * calculated. In real we might need more or less descriptors,
1255 * this is the initial check only.
1256 */
1257 if (unlikely(avail < min_desc_required)) {
1258 wil_err_ratelimited(wil,
1259 "TSO: Tx ring[%2d] full. No space for %d fragments\n",
1260 vring_index, min_desc_required);
1261 return -ENOMEM;
1262 }
1263
1264 /* Header Length = MAC header len + IP header len + TCP header len*/
1265 hdrlen = ETH_HLEN +
1266 (int)skb_network_header_len(skb) +
1267 tcp_hdrlen(skb);
1268
1269 gso_type = skb_shinfo(skb)->gso_type & (SKB_GSO_TCPV6 | SKB_GSO_TCPV4);
1270 switch (gso_type) {
1271 case SKB_GSO_TCPV4:
1272 /* TCP v4, zero out the IP length and IPv4 checksum fields
1273 * as required by the offloading doc
1274 */
1275 ip_hdr(skb)->tot_len = 0;
1276 ip_hdr(skb)->check = 0;
1277 is_ipv4 = true;
1278 break;
1279 case SKB_GSO_TCPV6:
1280 /* TCP v6, zero out the payload length */
1281 ipv6_hdr(skb)->payload_len = 0;
1282 is_ipv4 = false;
1283 break;
1284 default:
1285 /* other than TCPv4 or TCPv6 types are not supported for TSO.
1286 * It is also illegal for both to be set simultaneously
1287 */
1288 return -EINVAL;
1289 }
1290
1291 if (skb->ip_summed != CHECKSUM_PARTIAL)
1292 return -EINVAL;
1293
1294 /* tcp header length and skb network header length are fixed for all
1295 * packet's descriptors - read then once here
1296 */
1297 tcp_hdr_len = tcp_hdrlen(skb);
1298 skb_net_hdr_len = skb_network_header_len(skb);
1299
1300 _hdr_desc = &vring->va[i].tx;
1301
1302 pa = dma_map_single(dev, skb->data, hdrlen, DMA_TO_DEVICE);
1303 if (unlikely(dma_mapping_error(dev, pa))) {
1304 wil_err(wil, "TSO: Skb head DMA map error\n");
1305 goto err_exit;
1306 }
1307
1308 wil_tx_desc_map(hdr_desc, pa, hdrlen, vring_index);
1309 wil_tx_desc_offload_setup_tso(hdr_desc, skb, wil_tso_type_hdr, is_ipv4,
1310 tcp_hdr_len, skb_net_hdr_len);
1311 wil_tx_last_desc(hdr_desc);
1312
1313 vring->ctx[i].mapped_as = wil_mapped_as_single;
1314 hdr_ctx = &vring->ctx[i];
1315
1316 descs_used++;
1317 headlen = skb_headlen(skb) - hdrlen;
1318
1319 for (f = headlen ? -1 : 0; f < nr_frags; f++) {
1320 if (headlen) {
1321 len = headlen;
1322 wil_dbg_txrx(wil, "TSO: process skb head, len %u\n",
1323 len);
1324 } else {
1325 frag = &skb_shinfo(skb)->frags[f];
1326 len = frag->size;
1327 wil_dbg_txrx(wil, "TSO: frag[%d]: len %u\n", f, len);
1328 }
1329
1330 while (len) {
1331 wil_dbg_txrx(wil,
1332 "TSO: len %d, rem_data %d, descs_used %d\n",
1333 len, rem_data, descs_used);
1334
1335 if (descs_used == avail) {
1336 wil_err(wil, "TSO: ring overflow\n");
1337 goto dma_error;
1338 }
1339
1340 lenmss = min_t(int, rem_data, len);
1341 i = (swhead + descs_used) % vring->size;
1342 wil_dbg_txrx(wil, "TSO: lenmss %d, i %d\n", lenmss, i);
1343
1344 if (!headlen) {
1345 pa = skb_frag_dma_map(dev, frag,
1346 frag->size - len, lenmss,
1347 DMA_TO_DEVICE);
1348 vring->ctx[i].mapped_as = wil_mapped_as_page;
1349 } else {
1350 pa = dma_map_single(dev,
1351 skb->data +
1352 skb_headlen(skb) - headlen,
1353 lenmss,
1354 DMA_TO_DEVICE);
1355 vring->ctx[i].mapped_as = wil_mapped_as_single;
1356 headlen -= lenmss;
1357 }
1358
1359 if (unlikely(dma_mapping_error(dev, pa)))
1360 goto dma_error;
1361
1362 _desc = &vring->va[i].tx;
1363
1364 if (!_first_desc) {
1365 _first_desc = _desc;
1366 first_ctx = &vring->ctx[i];
1367 d = first_desc;
1368 } else {
1369 d = &desc_mem;
1370 }
1371
1372 wil_tx_desc_map(d, pa, lenmss, vring_index);
1373 wil_tx_desc_offload_setup_tso(d, skb, desc_tso_type,
1374 is_ipv4, tcp_hdr_len,
1375 skb_net_hdr_len);
1376
1377 /* use tso_type_first only once */
1378 desc_tso_type = wil_tso_type_mid;
1379
1380 descs_used++; /* desc used so far */
1381 sg_desc_cnt++; /* desc used for this segment */
1382 len -= lenmss;
1383 rem_data -= lenmss;
1384
1385 wil_dbg_txrx(wil,
1386 "TSO: len %d, rem_data %d, descs_used %d, sg_desc_cnt %d,\n",
1387 len, rem_data, descs_used, sg_desc_cnt);
1388
1389 /* Close the segment if reached mss size or last frag*/
1390 if (rem_data == 0 || (f == nr_frags - 1 && len == 0)) {
1391 if (hdr_compensation_need) {
1392 /* first segment include hdr desc for
1393 * release
1394 */
1395 hdr_ctx->nr_frags = sg_desc_cnt;
1396 wil_tx_desc_set_nr_frags(first_desc,
1397 sg_desc_cnt +
1398 1);
1399 hdr_compensation_need = false;
1400 } else {
1401 wil_tx_desc_set_nr_frags(first_desc,
1402 sg_desc_cnt);
1403 }
1404 first_ctx->nr_frags = sg_desc_cnt - 1;
1405
1406 wil_tx_last_desc(d);
1407
1408 /* first descriptor may also be the last
1409 * for this mss - make sure not to copy
1410 * it twice
1411 */
1412 if (first_desc != d)
1413 *_first_desc = *first_desc;
1414
1415 /*last descriptor will be copied at the end
1416 * of this TS processing
1417 */
1418 if (f < nr_frags - 1 || len > 0)
1419 *_desc = *d;
1420
1421 rem_data = mss;
1422 _first_desc = NULL;
1423 sg_desc_cnt = 0;
1424 } else if (first_desc != d) /* update mid descriptor */
1425 *_desc = *d;
1426 }
1427 }
1428
1429 /* first descriptor may also be the last.
1430 * in this case d pointer is invalid
1431 */
1432 if (_first_desc == _desc)
1433 d = first_desc;
1434
1435 /* Last data descriptor */
1436 wil_set_tx_desc_last_tso(d);
1437 *_desc = *d;
1438
1439 /* Fill the total number of descriptors in first desc (hdr)*/
1440 wil_tx_desc_set_nr_frags(hdr_desc, descs_used);
1441 *_hdr_desc = *hdr_desc;
1442
1443 /* hold reference to skb
1444 * to prevent skb release before accounting
1445 * in case of immediate "tx done"
1446 */
1447 vring->ctx[i].skb = skb_get(skb);
1448
1449 /* performance monitoring */
1450 used = wil_vring_used_tx(vring);
1451 if (wil_val_in_range(vring_idle_trsh,
1452 used, used + descs_used)) {
1453 txdata->idle += get_cycles() - txdata->last_idle;
1454 wil_dbg_txrx(wil, "Ring[%2d] not idle %d -> %d\n",
1455 vring_index, used, used + descs_used);
1456 }
1457
1458 /* advance swhead */
1459 wil_dbg_txrx(wil, "TSO: Tx swhead %d -> %d\n", swhead, vring->swhead);
1460 wil_vring_advance_head(vring, descs_used);
1461
1462 /* make sure all writes to descriptors (shared memory) are done before
1463 * committing them to HW
1464 */
1465 wmb();
1466
Vladimir Kondratievb9eeb512015-07-30 13:52:03 +03001467 wil_w(wil, vring->hwtail, vring->swhead);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001468 return 0;
1469
1470dma_error:
1471 wil_err(wil, "TSO: DMA map page error\n");
1472 while (descs_used > 0) {
1473 struct wil_ctx *ctx;
1474
1475 i = (swhead + descs_used) % vring->size;
1476 d = (struct vring_tx_desc *)&vring->va[i].tx;
1477 _desc = &vring->va[i].tx;
1478 *d = *_desc;
1479 _desc->dma.status = TX_DMA_STATUS_DU;
1480 ctx = &vring->ctx[i];
1481 wil_txdesc_unmap(dev, d, ctx);
1482 if (ctx->skb)
1483 dev_kfree_skb_any(ctx->skb);
1484 memset(ctx, 0, sizeof(*ctx));
1485 descs_used--;
1486 }
1487
1488err_exit:
1489 return -EINVAL;
1490}
1491
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001492static int __wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1493 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001494{
1495 struct device *dev = wil_to_dev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001496 struct vring_tx_desc dd, *d = &dd;
1497 volatile struct vring_tx_desc *_d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001498 u32 swhead = vring->swhead;
1499 int avail = wil_vring_avail_tx(vring);
1500 int nr_frags = skb_shinfo(skb)->nr_frags;
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001501 uint f = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001502 int vring_index = vring - wil->vring_tx;
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001503 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001504 uint i = swhead;
1505 dma_addr_t pa;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001506 int used;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001507 bool mcast = (vring_index == wil->bcast_vring);
1508 uint len = skb_headlen(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001509
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001510 wil_dbg_txrx(wil, "%s() %d bytes to vring %d\n",
1511 __func__, skb->len, vring_index);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001512
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001513 if (unlikely(!txdata->enabled))
1514 return -EINVAL;
1515
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001516 if (unlikely(avail < 1 + nr_frags)) {
Vladimir Kondratiev70801e12014-12-01 15:36:03 +02001517 wil_err_ratelimited(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001518 "Tx ring[%2d] full. No space for %d fragments\n",
1519 vring_index, 1 + nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001520 return -ENOMEM;
1521 }
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001522 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001523
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001524 pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001525
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001526 wil_dbg_txrx(wil, "Tx[%2d] skb %d bytes 0x%p -> %pad\n", vring_index,
1527 skb_headlen(skb), skb->data, &pa);
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001528 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001529 skb->data, skb_headlen(skb), false);
1530
1531 if (unlikely(dma_mapping_error(dev, pa)))
1532 return -EINVAL;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001533 vring->ctx[i].mapped_as = wil_mapped_as_single;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001534 /* 1-st segment */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001535 wil_tx_desc_map(d, pa, len, vring_index);
1536 if (unlikely(mcast)) {
1537 d->mac.d[0] |= BIT(MAC_CFG_DESC_TX_0_MCS_EN_POS); /* MCS 0 */
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001538 if (unlikely(len > WIL_BCAST_MCS0_LIMIT)) /* set MCS 1 */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001539 d->mac.d[0] |= (1 << MAC_CFG_DESC_TX_0_MCS_INDEX_POS);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001540 }
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001541 /* Process TCP/UDP checksum offloading */
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001542 if (unlikely(wil_tx_desc_offload_setup(d, skb))) {
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001543 wil_err(wil, "Tx[%2d] Failed to set cksum, drop packet\n",
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001544 vring_index);
1545 goto dma_error;
1546 }
1547
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001548 vring->ctx[i].nr_frags = nr_frags;
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001549 wil_tx_desc_set_nr_frags(d, nr_frags + 1);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001550
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001551 /* middle segments */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001552 for (; f < nr_frags; f++) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001553 const struct skb_frag_struct *frag =
1554 &skb_shinfo(skb)->frags[f];
1555 int len = skb_frag_size(frag);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001556
Vladimir Kondratieve59d16c2015-02-01 10:55:12 +02001557 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001558 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1559 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1560 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001561 i = (swhead + f + 1) % vring->size;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001562 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001563 pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001564 DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001565 if (unlikely(dma_mapping_error(dev, pa)))
1566 goto dma_error;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001567 vring->ctx[i].mapped_as = wil_mapped_as_page;
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001568 wil_tx_desc_map(d, pa, len, vring_index);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001569 /* no need to check return code -
1570 * if it succeeded for 1-st descriptor,
1571 * it will succeed here too
1572 */
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001573 wil_tx_desc_offload_setup(d, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001574 }
1575 /* for the last seg only */
1576 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
Kirshenbaum Erez668b2bb2013-06-23 12:59:35 +03001577 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001578 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001579 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001580 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1581 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1582 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001583
Vladimir Kondratiev6cdadd42013-07-11 18:03:41 +03001584 /* hold reference to skb
1585 * to prevent skb release before accounting
1586 * in case of immediate "tx done"
1587 */
1588 vring->ctx[i].skb = skb_get(skb);
1589
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001590 /* performance monitoring */
1591 used = wil_vring_used_tx(vring);
1592 if (wil_val_in_range(vring_idle_trsh,
1593 used, used + nr_frags + 1)) {
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001594 txdata->idle += get_cycles() - txdata->last_idle;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001595 wil_dbg_txrx(wil, "Ring[%2d] not idle %d -> %d\n",
1596 vring_index, used, used + nr_frags + 1);
1597 }
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001598
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001599 /* advance swhead */
1600 wil_vring_advance_head(vring, nr_frags + 1);
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001601 wil_dbg_txrx(wil, "Tx[%2d] swhead %d -> %d\n", vring_index, swhead,
1602 vring->swhead);
Vladimir Kondratiev98658092013-05-12 14:43:35 +03001603 trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001604
1605 /* make sure all writes to descriptors (shared memory) are done before
1606 * committing them to HW
1607 */
1608 wmb();
1609
Vladimir Kondratievb9eeb512015-07-30 13:52:03 +03001610 wil_w(wil, vring->hwtail, vring->swhead);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001611
1612 return 0;
1613 dma_error:
1614 /* unmap what we have mapped */
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001615 nr_frags = f + 1; /* frags mapped + one for skb head */
1616 for (f = 0; f < nr_frags; f++) {
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001617 struct wil_ctx *ctx;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001618
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001619 i = (swhead + f) % vring->size;
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001620 ctx = &vring->ctx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001621 _d = &vring->va[i].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001622 *d = *_d;
1623 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001624 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001625
1626 if (ctx->skb)
1627 dev_kfree_skb_any(ctx->skb);
1628
1629 memset(ctx, 0, sizeof(*ctx));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001630 }
1631
1632 return -EINVAL;
1633}
1634
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001635static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1636 struct sk_buff *skb)
1637{
1638 int vring_index = vring - wil->vring_tx;
1639 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1640 int rc;
1641
1642 spin_lock(&txdata->lock);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001643
1644 rc = (skb_is_gso(skb) ? __wil_tx_vring_tso : __wil_tx_vring)
1645 (wil, vring, skb);
1646
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001647 spin_unlock(&txdata->lock);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001648
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001649 return rc;
1650}
1651
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001652netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1653{
1654 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001655 struct ethhdr *eth = (void *)skb->data;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001656 bool bcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001657 struct vring *vring;
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001658 static bool pr_once_fw;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001659 int rc;
1660
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001661 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001662 if (unlikely(!test_bit(wil_status_fwready, wil->status))) {
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001663 if (!pr_once_fw) {
1664 wil_err(wil, "FW not ready\n");
1665 pr_once_fw = true;
1666 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001667 goto drop;
1668 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001669 if (unlikely(!test_bit(wil_status_fwconnected, wil->status))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001670 wil_err(wil, "FW not connected\n");
1671 goto drop;
1672 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001673 if (unlikely(wil->wdev->iftype == NL80211_IFTYPE_MONITOR)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001674 wil_err(wil, "Xmit in monitor mode not supported\n");
1675 goto drop;
1676 }
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001677 pr_once_fw = false;
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001678
1679 /* find vring */
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001680 if (wil->wdev->iftype == NL80211_IFTYPE_STATION) {
1681 /* in STA mode (ESS), all to same VRING */
1682 vring = wil_find_tx_vring_sta(wil, skb);
1683 } else { /* direct communication, find matching VRING */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001684 vring = bcast ? wil_find_tx_bcast(wil, skb) :
1685 wil_find_tx_ucast(wil, skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001686 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001687 if (unlikely(!vring)) {
Vladimir Kondratiev5aed1392014-06-16 19:37:15 +03001688 wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001689 goto drop;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001690 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001691 /* set up vring entry */
1692 rc = wil_tx_vring(wil, vring, skb);
1693
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001694 /* do we still have enough room in the vring? */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001695 if (unlikely(wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring))) {
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001696 netif_tx_stop_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001697 wil_dbg_txrx(wil, "netif_tx_stop : ring full\n");
1698 }
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001699
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001700 switch (rc) {
1701 case 0:
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001702 /* statistics will be updated on the tx_complete */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001703 dev_kfree_skb_any(skb);
1704 return NETDEV_TX_OK;
1705 case -ENOMEM:
1706 return NETDEV_TX_BUSY;
1707 default:
Vladimir Kondratievafda8bb2013-01-28 18:31:07 +02001708 break; /* goto drop; */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001709 }
1710 drop:
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001711 ndev->stats.tx_dropped++;
1712 dev_kfree_skb_any(skb);
1713
1714 return NET_XMIT_DROP;
1715}
1716
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001717static inline bool wil_need_txstat(struct sk_buff *skb)
1718{
1719 struct ethhdr *eth = (void *)skb->data;
1720
1721 return is_unicast_ether_addr(eth->h_dest) && skb->sk &&
1722 (skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS);
1723}
1724
1725static inline void wil_consume_skb(struct sk_buff *skb, bool acked)
1726{
1727 if (unlikely(wil_need_txstat(skb)))
1728 skb_complete_wifi_ack(skb, acked);
1729 else
1730 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb);
1731}
1732
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001733/**
1734 * Clean up transmitted skb's from the Tx VRING
1735 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001736 * Return number of descriptors cleared
1737 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001738 * Safe to call from IRQ
1739 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001740int wil_tx_complete(struct wil6210_priv *wil, int ringid)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001741{
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001742 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001743 struct device *dev = wil_to_dev(wil);
1744 struct vring *vring = &wil->vring_tx[ringid];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001745 struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001746 int done = 0;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001747 int cid = wil->vring2cid_tid[ringid][0];
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001748 struct wil_net_stats *stats = NULL;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001749 volatile struct vring_tx_desc *_d;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001750 int used_before_complete;
1751 int used_new;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001752
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001753 if (unlikely(!vring->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001754 wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001755 return 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001756 }
1757
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001758 if (unlikely(!txdata->enabled)) {
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001759 wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
1760 return 0;
1761 }
1762
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001763 wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001764
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001765 used_before_complete = wil_vring_used_tx(vring);
1766
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001767 if (cid < WIL6210_MAX_CID)
1768 stats = &wil->sta[cid].stats;
1769
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001770 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001771 int new_swtail;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001772 struct wil_ctx *ctx = &vring->ctx[vring->swtail];
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001773 /**
1774 * For the fragmented skb, HW will set DU bit only for the
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001775 * last fragment. look for it.
1776 * In TSO the first DU will include hdr desc
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001777 */
1778 int lf = (vring->swtail + ctx->nr_frags) % vring->size;
1779 /* TODO: check we are not past head */
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001780
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001781 _d = &vring->va[lf].tx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001782 if (unlikely(!(_d->dma.status & TX_DMA_STATUS_DU)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001783 break;
1784
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001785 new_swtail = (lf + 1) % vring->size;
1786 while (vring->swtail != new_swtail) {
1787 struct vring_tx_desc dd, *d = &dd;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001788 u16 dmalen;
Vladimir Kondratiev76dfa4b2014-07-14 09:49:39 +03001789 struct sk_buff *skb;
1790
1791 ctx = &vring->ctx[vring->swtail];
1792 skb = ctx->skb;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001793 _d = &vring->va[vring->swtail].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001794
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001795 *d = *_d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001796
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001797 dmalen = le16_to_cpu(d->dma.length);
1798 trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
1799 d->dma.error);
1800 wil_dbg_txrx(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001801 "TxC[%2d][%3d] : %d bytes, status 0x%02x err 0x%02x\n",
1802 ringid, vring->swtail, dmalen,
1803 d->dma.status, d->dma.error);
1804 wil_hex_dump_txrx("TxCD ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001805 (const void *)d, sizeof(*d), false);
1806
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001807 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001808
1809 if (skb) {
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001810 if (likely(d->dma.error == 0)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001811 ndev->stats.tx_packets++;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001812 ndev->stats.tx_bytes += skb->len;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001813 if (stats) {
1814 stats->tx_packets++;
1815 stats->tx_bytes += skb->len;
1816 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001817 } else {
1818 ndev->stats.tx_errors++;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001819 if (stats)
1820 stats->tx_errors++;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001821 }
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001822 wil_consume_skb(skb, d->dma.error == 0);
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001823 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001824 memset(ctx, 0, sizeof(*ctx));
1825 /* There is no need to touch HW descriptor:
1826 * - ststus bit TX_DMA_STATUS_DU is set by design,
1827 * so hardware will not try to process this desc.,
1828 * - rest of descriptor will be initialized on Tx.
1829 */
1830 vring->swtail = wil_vring_next_tail(vring);
1831 done++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001832 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001833 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001834
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001835 /* performance monitoring */
1836 used_new = wil_vring_used_tx(vring);
1837 if (wil_val_in_range(vring_idle_trsh,
1838 used_new, used_before_complete)) {
1839 wil_dbg_txrx(wil, "Ring[%2d] idle %d -> %d\n",
1840 ringid, used_before_complete, used_new);
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001841 txdata->last_idle = get_cycles();
1842 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001843
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001844 if (wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring)) {
1845 wil_dbg_txrx(wil, "netif_tx_wake : ring not full\n");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001846 netif_tx_wake_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001847 }
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001848
1849 return done;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001850}