blob: 3909af171badee2e62cb20b750be0aa1f7e36862 [file] [log] [blame]
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001/*
Maya Erezb729aaf2016-01-17 12:39:09 +02002 * Copyright (c) 2012-2016 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 Kondratiev9b1ba7b2015-11-06 12:50:44 +0200163 lockdep_assert_held(&wil->mutex);
Vladimir Kondratievef772852014-09-10 16:34:31 +0300164 if (tx) {
165 int vring_index = vring - wil->vring_tx;
166
167 wil_dbg_misc(wil, "free Tx vring %d [%d] 0x%p:%pad 0x%p\n",
168 vring_index, vring->size, vring->va,
169 &vring->pa, vring->ctx);
170 } else {
171 wil_dbg_misc(wil, "free Rx vring [%d] 0x%p:%pad 0x%p\n",
172 vring->size, vring->va,
173 &vring->pa, vring->ctx);
174 }
175
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800176 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300177 dma_addr_t pa;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300178 u16 dmalen;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300179 struct wil_ctx *ctx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300180
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800181 if (tx) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300182 struct vring_tx_desc dd, *d = &dd;
183 volatile struct vring_tx_desc *_d =
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800184 &vring->va[vring->swtail].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300185
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300186 ctx = &vring->ctx[vring->swtail];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300187 *d = *_d;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +0200188 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300189 if (ctx->skb)
190 dev_kfree_skb_any(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800191 vring->swtail = wil_vring_next_tail(vring);
192 } else { /* rx */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300193 struct vring_rx_desc dd, *d = &dd;
194 volatile struct vring_rx_desc *_d =
Vladimir Kondratiev4d1ac072013-07-11 18:03:38 +0300195 &vring->va[vring->swhead].rx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300196
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300197 ctx = &vring->ctx[vring->swhead];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300198 *d = *_d;
199 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300200 dmalen = le16_to_cpu(d->dma.length);
201 dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300202 kfree_skb(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800203 wil_vring_advance_head(vring, 1);
204 }
205 }
206 dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
207 kfree(vring->ctx);
208 vring->pa = 0;
209 vring->va = NULL;
210 vring->ctx = NULL;
211}
212
213/**
214 * Allocate one skb for Rx VRING
215 *
216 * Safe to call from IRQ
217 */
218static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
219 u32 i, int headroom)
220{
221 struct device *dev = wil_to_dev(wil);
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200222 unsigned int sz = mtu_max + ETH_HLEN + wil_rx_snaplen();
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300223 struct vring_rx_desc dd, *d = &dd;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300224 volatile struct vring_rx_desc *_d = &vring->va[i].rx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800225 dma_addr_t pa;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800226 struct sk_buff *skb = dev_alloc_skb(sz + headroom);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300227
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800228 if (unlikely(!skb))
229 return -ENOMEM;
230
231 skb_reserve(skb, headroom);
232 skb_put(skb, sz);
233
234 pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
235 if (unlikely(dma_mapping_error(dev, pa))) {
236 kfree_skb(skb);
237 return -ENOMEM;
238 }
239
Vladimir Kondratiev48c963a2015-04-30 16:25:06 +0300240 d->dma.d0 = RX_DMA_D0_CMD_DMA_RT | RX_DMA_D0_CMD_DMA_IT;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300241 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800242 /* ip_length don't care */
243 /* b11 don't care */
244 /* error don't care */
245 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300246 d->dma.length = cpu_to_le16(sz);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300247 *_d = *d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300248 vring->ctx[i].skb = skb;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800249
250 return 0;
251}
252
253/**
254 * Adds radiotap header
255 *
256 * Any error indicated as "Bad FCS"
257 *
258 * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
259 * - Rx descriptor: 32 bytes
260 * - Phy info
261 */
262static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300263 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800264{
265 struct wireless_dev *wdev = wil->wdev;
266 struct wil6210_rtap {
267 struct ieee80211_radiotap_header rthdr;
268 /* fields should be in the order of bits in rthdr.it_present */
269 /* flags */
270 u8 flags;
271 /* channel */
272 __le16 chnl_freq __aligned(2);
273 __le16 chnl_flags;
274 /* MCS */
275 u8 mcs_present;
276 u8 mcs_flags;
277 u8 mcs_index;
278 } __packed;
279 struct wil6210_rtap_vendor {
280 struct wil6210_rtap rtap;
281 /* vendor */
282 u8 vendor_oui[3] __aligned(2);
283 u8 vendor_ns;
284 __le16 vendor_skip;
285 u8 vendor_data[0];
286 } __packed;
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300287 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800288 struct wil6210_rtap_vendor *rtap_vendor;
289 int rtap_len = sizeof(struct wil6210_rtap);
290 int phy_length = 0; /* phy info header size, bytes */
291 static char phy_data[128];
292 struct ieee80211_channel *ch = wdev->preset_chandef.chan;
293
294 if (rtap_include_phy_info) {
295 rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
296 /* calculate additional length */
297 if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
298 /**
299 * PHY info starts from 8-byte boundary
300 * there are 8-byte lines, last line may be partially
301 * written (HW bug), thus FW configures for last line
302 * to be excessive. Driver skips this last line.
303 */
304 int len = min_t(int, 8 + sizeof(phy_data),
305 wil_rxdesc_phy_length(d));
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300306
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800307 if (len > 8) {
308 void *p = skb_tail_pointer(skb);
309 void *pa = PTR_ALIGN(p, 8);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300310
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800311 if (skb_tailroom(skb) >= len + (pa - p)) {
312 phy_length = len - 8;
313 memcpy(phy_data, pa, phy_length);
314 }
315 }
316 }
317 rtap_len += phy_length;
318 }
319
320 if (skb_headroom(skb) < rtap_len &&
321 pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
322 wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
323 return;
324 }
325
326 rtap_vendor = (void *)skb_push(skb, rtap_len);
327 memset(rtap_vendor, 0, rtap_len);
328
329 rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
330 rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
331 rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
332 (1 << IEEE80211_RADIOTAP_FLAGS) |
333 (1 << IEEE80211_RADIOTAP_CHANNEL) |
334 (1 << IEEE80211_RADIOTAP_MCS));
335 if (d->dma.status & RX_DMA_STATUS_ERROR)
336 rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;
337
338 rtap_vendor->rtap.chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
339 rtap_vendor->rtap.chnl_flags = cpu_to_le16(0);
340
341 rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
342 rtap_vendor->rtap.mcs_flags = 0;
343 rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);
344
345 if (rtap_include_phy_info) {
346 rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
347 IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
348 /* OUI for Wilocity 04:ce:14 */
349 rtap_vendor->vendor_oui[0] = 0x04;
350 rtap_vendor->vendor_oui[1] = 0xce;
351 rtap_vendor->vendor_oui[2] = 0x14;
352 rtap_vendor->vendor_ns = 1;
353 /* Rx descriptor + PHY data */
354 rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
355 phy_length);
356 memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
357 memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
358 phy_length);
359 }
360}
361
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300362/* similar to ieee80211_ version, but FC contain only 1-st byte */
363static inline int wil_is_back_req(u8 fc)
364{
365 return (fc & (IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
366 (IEEE80211_FTYPE_CTL | IEEE80211_STYPE_BACK_REQ);
367}
368
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800369/**
370 * reap 1 frame from @swhead
371 *
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300372 * Rx descriptor copied to skb->cb
373 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800374 * Safe to call from IRQ
375 */
376static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
377 struct vring *vring)
378{
379 struct device *dev = wil_to_dev(wil);
380 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300381 volatile struct vring_rx_desc *_d;
382 struct vring_rx_desc *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800383 struct sk_buff *skb;
384 dma_addr_t pa;
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200385 unsigned int snaplen = wil_rx_snaplen();
386 unsigned int sz = mtu_max + ETH_HLEN + snaplen;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300387 u16 dmalen;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800388 u8 ftype;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200389 int cid;
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300390 int i;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200391 struct wil_net_stats *stats;
392
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300393 BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
394
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300395again:
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200396 if (unlikely(wil_vring_is_empty(vring)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800397 return NULL;
398
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300399 i = (int)vring->swhead;
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200400 _d = &vring->va[i].rx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200401 if (unlikely(!(_d->dma.status & RX_DMA_STATUS_DU))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800402 /* it is not error, we just reached end of Rx done area */
403 return NULL;
404 }
405
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200406 skb = vring->ctx[i].skb;
407 vring->ctx[i].skb = NULL;
408 wil_vring_advance_head(vring, 1);
409 if (!skb) {
410 wil_err(wil, "No Rx skb at [%d]\n", i);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300411 goto again;
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200412 }
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300413 d = wil_skb_rxdesc(skb);
414 *d = *_d;
415 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300416
417 dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
418 dmalen = le16_to_cpu(d->dma.length);
419
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200420 trace_wil6210_rx(i, d);
421 wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", i, dmalen);
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300422 wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300423 (const void *)d, sizeof(*d), false);
424
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300425 cid = wil_rxdesc_cid(d);
426 stats = &wil->sta[cid].stats;
427
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200428 if (unlikely(dmalen > sz)) {
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300429 wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300430 stats->rx_large_frame++;
Wei Yongjun110dea02013-05-23 17:10:43 +0800431 kfree_skb(skb);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300432 goto again;
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300433 }
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300434 skb_trim(skb, dmalen);
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300435
Vladimir Kondratiev1cbbcb02014-01-08 11:50:49 +0200436 prefetch(skb->data);
437
Vladimir Kondratievc0d37712013-05-12 14:43:34 +0300438 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
439 skb->data, skb_headlen(skb), false);
440
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200441 stats->last_mcs_rx = wil_rxdesc_mcs(d);
Vladimir Kondratievc4a110d2015-06-09 14:11:18 +0300442 if (stats->last_mcs_rx < ARRAY_SIZE(stats->rx_per_mcs))
443 stats->rx_per_mcs[stats->last_mcs_rx]++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800444
445 /* use radiotap header only if required */
446 if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300447 wil_rx_add_radiotap_header(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800448
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800449 /* no extra checks if in sniffer mode */
450 if (ndev->type != ARPHRD_ETHER)
451 return skb;
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300452 /* Non-data frames may be delivered through Rx DMA channel (ex: BAR)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800453 * Driver should recognize it by frame type, that is found
454 * in Rx descriptor. If type is not data, it is 802.11 frame as is
455 */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300456 ftype = wil_rxdesc_ftype(d) << 2;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200457 if (unlikely(ftype != IEEE80211_FTYPE_DATA)) {
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300458 u8 fc1 = wil_rxdesc_fc1(d);
459 int mid = wil_rxdesc_mid(d);
460 int tid = wil_rxdesc_tid(d);
461 u16 seq = wil_rxdesc_seq(d);
462
463 wil_dbg_txrx(wil,
464 "Non-data frame FC[7:0] 0x%02x MID %d CID %d TID %d Seq 0x%03x\n",
465 fc1, mid, cid, tid, seq);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300466 stats->rx_non_data_frame++;
Vladimir Kondratieva8313342015-10-04 10:23:23 +0300467 if (wil_is_back_req(fc1)) {
468 wil_dbg_txrx(wil,
469 "BAR: MID %d CID %d TID %d Seq 0x%03x\n",
470 mid, cid, tid, seq);
471 wil_rx_bar(wil, cid, tid, seq);
472 } else {
473 /* print again all info. One can enable only this
474 * without overhead for printing every Rx frame
475 */
476 wil_dbg_txrx(wil,
477 "Unhandled non-data frame FC[7:0] 0x%02x MID %d CID %d TID %d Seq 0x%03x\n",
478 fc1, mid, cid, tid, seq);
479 wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
480 (const void *)d, sizeof(*d), false);
481 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
482 skb->data, skb_headlen(skb), false);
483 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800484 kfree_skb(skb);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300485 goto again;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800486 }
487
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200488 if (unlikely(skb->len < ETH_HLEN + snaplen)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800489 wil_err(wil, "Short frame, len = %d\n", skb->len);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300490 stats->rx_short_frame++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800491 kfree_skb(skb);
Vladimir Kondratiev3b282bc2015-10-04 10:23:19 +0300492 goto again;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800493 }
494
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300495 /* L4 IDENT is on when HW calculated checksum, check status
496 * and in case of error drop the packet
497 * higher stack layers will handle retransmission (if required)
498 */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200499 if (likely(d->dma.status & RX_DMA_STATUS_L4I)) {
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300500 /* L4 protocol identified, csum calculated */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200501 if (likely((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0))
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300502 skb->ip_summed = CHECKSUM_UNNECESSARY;
Vladimir Kondratiev4a68ab102013-08-13 15:25:32 +0300503 /* If HW reports bad checksum, let IP stack re-check it
504 * For example, HW don't understand Microsoft IP stack that
505 * mis-calculates TCP checksum - if it should be 0x0,
506 * it writes 0xffff in violation of RFC 1624
507 */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300508 }
509
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200510 if (snaplen) {
511 /* Packet layout
512 * +-------+-------+---------+------------+------+
513 * | SA(6) | DA(6) | SNAP(6) | ETHTYPE(2) | DATA |
514 * +-------+-------+---------+------------+------+
515 * Need to remove SNAP, shifting SA and DA forward
516 */
517 memmove(skb->data + snaplen, skb->data, 2 * ETH_ALEN);
518 skb_pull(skb, snaplen);
519 }
520
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800521 return skb;
522}
523
524/**
525 * allocate and fill up to @count buffers in rx ring
526 * buffers posted at @swtail
527 */
528static int wil_rx_refill(struct wil6210_priv *wil, int count)
529{
530 struct net_device *ndev = wil_to_ndev(wil);
531 struct vring *v = &wil->vring_rx;
532 u32 next_tail;
533 int rc = 0;
534 int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
535 WIL6210_RTAP_SIZE : 0;
536
537 for (; next_tail = wil_vring_next_tail(v),
538 (next_tail != v->swhead) && (count-- > 0);
539 v->swtail = next_tail) {
540 rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200541 if (unlikely(rc)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800542 wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
543 rc, v->swtail);
544 break;
545 }
546 }
Maya Erezab6d7cc2016-05-16 22:23:31 +0300547
548 /* make sure all writes to descriptors (shared memory) are done before
549 * committing them to HW
550 */
551 wmb();
552
Vladimir Kondratievb9eeb512015-07-30 13:52:03 +0300553 wil_w(wil, v->hwtail, v->swtail);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800554
555 return rc;
556}
557
Vladimir Kondratiev58527422016-03-01 19:18:07 +0200558/**
559 * reverse_memcmp - Compare two areas of memory, in reverse order
560 * @cs: One area of memory
561 * @ct: Another area of memory
562 * @count: The size of the area.
563 *
564 * Cut'n'paste from original memcmp (see lib/string.c)
565 * with minimal modifications
566 */
567static int reverse_memcmp(const void *cs, const void *ct, size_t count)
568{
569 const unsigned char *su1, *su2;
570 int res = 0;
571
572 for (su1 = cs + count - 1, su2 = ct + count - 1; count > 0;
573 --su1, --su2, count--) {
574 res = *su1 - *su2;
575 if (res)
576 break;
577 }
578 return res;
579}
580
581static int wil_rx_crypto_check(struct wil6210_priv *wil, struct sk_buff *skb)
582{
583 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
584 int cid = wil_rxdesc_cid(d);
585 int tid = wil_rxdesc_tid(d);
586 int key_id = wil_rxdesc_key_id(d);
587 int mc = wil_rxdesc_mcast(d);
588 struct wil_sta_info *s = &wil->sta[cid];
589 struct wil_tid_crypto_rx *c = mc ? &s->group_crypto_rx :
590 &s->tid_crypto_rx[tid];
591 struct wil_tid_crypto_rx_single *cc = &c->key_id[key_id];
592 const u8 *pn = (u8 *)&d->mac.pn_15_0;
593
594 if (!cc->key_set) {
595 wil_err_ratelimited(wil,
596 "Key missing. CID %d TID %d MCast %d KEY_ID %d\n",
597 cid, tid, mc, key_id);
598 return -EINVAL;
599 }
600
601 if (reverse_memcmp(pn, cc->pn, IEEE80211_GCMP_PN_LEN) <= 0) {
602 wil_err_ratelimited(wil,
603 "Replay attack. CID %d TID %d MCast %d KEY_ID %d PN %6phN last %6phN\n",
604 cid, tid, mc, key_id, pn, cc->pn);
605 return -EINVAL;
606 }
607 memcpy(cc->pn, pn, IEEE80211_GCMP_PN_LEN);
608
609 return 0;
610}
611
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800612/*
613 * Pass Rx packet to the netif. Update statistics.
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300614 * Called in softirq context (NAPI poll).
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800615 */
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200616void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800617{
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200618 gro_result_t rc = GRO_NORMAL;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200619 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200620 struct wireless_dev *wdev = wil_to_wdev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800621 unsigned int len = skb->len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200622 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200623 int cid = wil_rxdesc_cid(d); /* always 0..7, no need to check */
Vladimir Kondratiev58527422016-03-01 19:18:07 +0200624 int security = wil_rxdesc_security(d);
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200625 struct ethhdr *eth = (void *)skb->data;
626 /* here looking for DA, not A1, thus Rxdesc's 'mcast' indication
627 * is not suitable, need to look at data
628 */
629 int mcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200630 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200631 struct sk_buff *xmit_skb = NULL;
632 static const char * const gro_res_str[] = {
633 [GRO_MERGED] = "GRO_MERGED",
634 [GRO_MERGED_FREE] = "GRO_MERGED_FREE",
635 [GRO_HELD] = "GRO_HELD",
636 [GRO_NORMAL] = "GRO_NORMAL",
637 [GRO_DROP] = "GRO_DROP",
638 };
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800639
Vladimir Shulman05536402015-07-30 13:52:04 +0300640 if (ndev->features & NETIF_F_RXHASH)
641 /* fake L4 to ensure it won't be re-calculated later
642 * set hash to any non-zero value to activate rps
643 * mechanism, core will be chosen according
644 * to user-level rps configuration.
645 */
646 skb_set_hash(skb, 1, PKT_HASH_TYPE_L4);
647
Vladimir Kondratiev241804c2013-01-28 18:31:02 +0200648 skb_orphan(skb);
649
Vladimir Kondratiev58527422016-03-01 19:18:07 +0200650 if (security && (wil_rx_crypto_check(wil, skb) != 0)) {
651 rc = GRO_DROP;
652 dev_kfree_skb(skb);
653 stats->rx_replay++;
654 goto stats;
655 }
656
Vladimir Kondratiev02beaf12015-03-08 15:42:03 +0200657 if (wdev->iftype == NL80211_IFTYPE_AP && !wil->ap_isolate) {
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200658 if (mcast) {
659 /* send multicast frames both to higher layers in
660 * local net stack and back to the wireless medium
661 */
662 xmit_skb = skb_copy(skb, GFP_ATOMIC);
663 } else {
664 int xmit_cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800665
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200666 if (xmit_cid >= 0) {
667 /* The destination station is associated to
668 * this AP (in this VLAN), so send the frame
669 * directly to it and do not pass it to local
670 * net stack.
671 */
672 xmit_skb = skb;
673 skb = NULL;
674 }
675 }
676 }
677 if (xmit_skb) {
678 /* Send to wireless media and increase priority by 256 to
679 * keep the received priority instead of reclassifying
680 * the frame (see cfg80211_classify8021d).
681 */
682 xmit_skb->dev = ndev;
683 xmit_skb->priority += 256;
684 xmit_skb->protocol = htons(ETH_P_802_3);
685 skb_reset_network_header(xmit_skb);
686 skb_reset_mac_header(xmit_skb);
687 wil_dbg_txrx(wil, "Rx -> Tx %d bytes\n", len);
688 dev_queue_xmit(xmit_skb);
689 }
690
691 if (skb) { /* deliver to local stack */
692
693 skb->protocol = eth_type_trans(skb, ndev);
694 rc = napi_gro_receive(&wil->napi_rx, skb);
695 wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
696 len, gro_res_str[rc]);
697 }
Vladimir Kondratiev58527422016-03-01 19:18:07 +0200698stats:
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200699 /* statistics. rc set to GRO_NORMAL for AP bridging */
Vladimir Kondratievb5998e62014-03-17 15:34:22 +0200700 if (unlikely(rc == GRO_DROP)) {
701 ndev->stats.rx_dropped++;
702 stats->rx_dropped++;
703 wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
704 } else {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800705 ndev->stats.rx_packets++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200706 stats->rx_packets++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800707 ndev->stats.rx_bytes += len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200708 stats->rx_bytes += len;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200709 if (mcast)
710 ndev->stats.multicast++;
Vladimir Kondratiev194b4822014-06-16 19:37:14 +0300711 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800712}
713
714/**
715 * Proceed all completed skb's from Rx VRING
716 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300717 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800718 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300719void wil_rx_handle(struct wil6210_priv *wil, int *quota)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800720{
721 struct net_device *ndev = wil_to_ndev(wil);
722 struct vring *v = &wil->vring_rx;
723 struct sk_buff *skb;
724
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200725 if (unlikely(!v->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800726 wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
727 return;
728 }
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200729 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300730 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
731 (*quota)--;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800732
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800733 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
734 skb->dev = ndev;
735 skb_reset_mac_header(skb);
736 skb->ip_summed = CHECKSUM_UNNECESSARY;
737 skb->pkt_type = PACKET_OTHERHOST;
738 skb->protocol = htons(ETH_P_802_2);
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200739 wil_netif_rx_any(skb, ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800740 } else {
Vladimir Kondratieve4373d82014-12-23 09:47:21 +0200741 wil_rx_reorder(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800742 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800743 }
744 wil_rx_refill(wil, v->size);
745}
746
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200747int wil_rx_init(struct wil6210_priv *wil, u16 size)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800748{
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800749 struct vring *vring = &wil->vring_rx;
750 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800751
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300752 wil_dbg_misc(wil, "%s()\n", __func__);
753
Vladimir Kondratiev8bf6adb2014-03-17 15:34:17 +0200754 if (vring->va) {
755 wil_err(wil, "Rx ring already allocated\n");
756 return -EINVAL;
757 }
758
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200759 vring->size = size;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800760 rc = wil_vring_alloc(wil, vring);
761 if (rc)
762 return rc;
763
Vladimir Kondratiev47e19af2013-01-28 18:30:59 +0200764 rc = wmi_rx_chain_add(wil, vring);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800765 if (rc)
766 goto err_free;
767
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800768 rc = wil_rx_refill(wil, vring->size);
769 if (rc)
770 goto err_free;
771
772 return 0;
773 err_free:
774 wil_vring_free(wil, vring, 0);
775
776 return rc;
777}
778
779void wil_rx_fini(struct wil6210_priv *wil)
780{
781 struct vring *vring = &wil->vring_rx;
782
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300783 wil_dbg_misc(wil, "%s()\n", __func__);
784
Vladimir Kondratiev2acb4222013-01-28 18:31:08 +0200785 if (vring->va)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800786 wil_vring_free(wil, vring, 0);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800787}
788
Maya Erez875e9432016-01-28 19:24:02 +0200789static inline void wil_tx_data_init(struct vring_tx_data *txdata)
790{
791 spin_lock_bh(&txdata->lock);
792 txdata->dot1x_open = 0;
793 txdata->enabled = 0;
794 txdata->idle = 0;
795 txdata->last_idle = 0;
796 txdata->begin = 0;
797 txdata->agg_wsize = 0;
798 txdata->agg_timeout = 0;
799 txdata->agg_amsdu = 0;
800 txdata->addba_in_progress = false;
801 spin_unlock_bh(&txdata->lock);
802}
803
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800804int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
805 int cid, int tid)
806{
807 int rc;
808 struct wmi_vring_cfg_cmd cmd = {
809 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
810 .vring_cfg = {
811 .tx_sw_ring = {
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +0200812 .max_mpdu_size =
Vladimir Kondratievc44690a2014-12-23 09:47:11 +0200813 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
Vladimir Kondratievb5d98e92013-04-18 14:33:51 +0300814 .ring_size = cpu_to_le16(size),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800815 },
816 .ringid = id,
Vladimir Kondratieva70abea2014-03-17 15:34:05 +0200817 .cidxtid = mk_cidxtid(cid, tid),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800818 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
819 .mac_ctrl = 0,
820 .to_resolution = 0,
Vladimir Kondratiev32772132014-12-23 09:47:03 +0200821 .agg_max_wsize = 0,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800822 .schd_params = {
823 .priority = cpu_to_le16(0),
824 .timeslot_us = cpu_to_le16(0xfff),
825 },
826 },
827 };
828 struct {
Lior Davidb874dde2016-03-01 19:18:09 +0200829 struct wmi_cmd_hdr wmi;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800830 struct wmi_vring_cfg_done_event cmd;
831 } __packed reply;
832 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200833 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800834
Vladimir Kondratieve0106ad2014-09-10 16:34:45 +0300835 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
836 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
Vladimir Kondratiev9b1ba7b2015-11-06 12:50:44 +0200837 lockdep_assert_held(&wil->mutex);
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300838
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800839 if (vring->va) {
840 wil_err(wil, "Tx ring [%d] already allocated\n", id);
841 rc = -EINVAL;
842 goto out;
843 }
844
Maya Erez875e9432016-01-28 19:24:02 +0200845 wil_tx_data_init(txdata);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800846 vring->size = size;
847 rc = wil_vring_alloc(wil, vring);
848 if (rc)
849 goto out;
850
Vladimir Kondratiev93ae6d42014-02-27 16:20:51 +0200851 wil->vring2cid_tid[id][0] = cid;
852 wil->vring2cid_tid[id][1] = tid;
853
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800854 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800855
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300856 if (!wil->privacy)
857 txdata->dot1x_open = true;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800858 rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
859 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
860 if (rc)
861 goto out_free;
862
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200863 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800864 wil_err(wil, "Tx config failed, status 0x%02x\n",
865 reply.cmd.status);
Vladimir Kondratievc3319972013-01-28 18:31:09 +0200866 rc = -EINVAL;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800867 goto out_free;
868 }
869 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
870
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200871 txdata->enabled = 1;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300872 if (txdata->dot1x_open && (agg_wsize >= 0))
Vladimir Kondratiev3a3def82014-12-23 09:47:05 +0200873 wil_addba_tx_request(wil, id, agg_wsize);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200874
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800875 return 0;
876 out_free:
Maya Erez875e9432016-01-28 19:24:02 +0200877 spin_lock_bh(&txdata->lock);
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300878 txdata->dot1x_open = false;
879 txdata->enabled = 0;
Maya Erez875e9432016-01-28 19:24:02 +0200880 spin_unlock_bh(&txdata->lock);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800881 wil_vring_free(wil, vring, 1);
Maya Erez0916d9f2016-01-17 12:39:10 +0200882 wil->vring2cid_tid[id][0] = WIL6210_MAX_CID;
883 wil->vring2cid_tid[id][1] = 0;
884
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800885 out:
886
887 return rc;
888}
889
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200890int wil_vring_init_bcast(struct wil6210_priv *wil, int id, int size)
891{
892 int rc;
893 struct wmi_bcast_vring_cfg_cmd cmd = {
894 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
895 .vring_cfg = {
896 .tx_sw_ring = {
897 .max_mpdu_size =
898 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
899 .ring_size = cpu_to_le16(size),
900 },
901 .ringid = id,
902 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
903 },
904 };
905 struct {
Lior Davidb874dde2016-03-01 19:18:09 +0200906 struct wmi_cmd_hdr wmi;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200907 struct wmi_vring_cfg_done_event cmd;
908 } __packed reply;
909 struct vring *vring = &wil->vring_tx[id];
910 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
911
912 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
913 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
Vladimir Kondratiev9b1ba7b2015-11-06 12:50:44 +0200914 lockdep_assert_held(&wil->mutex);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200915
916 if (vring->va) {
917 wil_err(wil, "Tx ring [%d] already allocated\n", id);
918 rc = -EINVAL;
919 goto out;
920 }
921
Maya Erez875e9432016-01-28 19:24:02 +0200922 wil_tx_data_init(txdata);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200923 vring->size = size;
924 rc = wil_vring_alloc(wil, vring);
925 if (rc)
926 goto out;
927
928 wil->vring2cid_tid[id][0] = WIL6210_MAX_CID; /* CID */
929 wil->vring2cid_tid[id][1] = 0; /* TID */
930
931 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
932
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300933 if (!wil->privacy)
934 txdata->dot1x_open = true;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200935 rc = wmi_call(wil, WMI_BCAST_VRING_CFG_CMDID, &cmd, sizeof(cmd),
936 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
937 if (rc)
938 goto out_free;
939
940 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
941 wil_err(wil, "Tx config failed, status 0x%02x\n",
942 reply.cmd.status);
943 rc = -EINVAL;
944 goto out_free;
945 }
946 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
947
948 txdata->enabled = 1;
949
950 return 0;
951 out_free:
Maya Erez875e9432016-01-28 19:24:02 +0200952 spin_lock_bh(&txdata->lock);
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300953 txdata->enabled = 0;
954 txdata->dot1x_open = false;
Maya Erez875e9432016-01-28 19:24:02 +0200955 spin_unlock_bh(&txdata->lock);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200956 wil_vring_free(wil, vring, 1);
957 out:
958
959 return rc;
960}
961
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800962void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
963{
964 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200965 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800966
Vladimir Kondratiev9b1ba7b2015-11-06 12:50:44 +0200967 lockdep_assert_held(&wil->mutex);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200968
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800969 if (!vring->va)
970 return;
971
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300972 wil_dbg_misc(wil, "%s() id=%d\n", __func__, id);
973
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200974 spin_lock_bh(&txdata->lock);
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300975 txdata->dot1x_open = false;
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200976 txdata->enabled = 0; /* no Tx can be in progress or start anew */
977 spin_unlock_bh(&txdata->lock);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200978 /* make sure NAPI won't touch this vring */
Vladimir Kondratiev9419b6a2014-12-23 09:47:14 +0200979 if (test_bit(wil_status_napi_en, wil->status))
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200980 napi_synchronize(&wil->napi_tx);
981
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800982 wil_vring_free(wil, vring, 1);
983}
984
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200985static struct vring *wil_find_tx_ucast(struct wil6210_priv *wil,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800986 struct sk_buff *skb)
987{
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200988 int i;
989 struct ethhdr *eth = (void *)skb->data;
990 int cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800991
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200992 if (cid < 0)
993 return NULL;
994
995 /* TODO: fix for multiple TID */
996 for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300997 if (!wil->vring_tx_data[i].dot1x_open &&
998 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
999 continue;
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001000 if (wil->vring2cid_tid[i][0] == cid) {
1001 struct vring *v = &wil->vring_tx[i];
Maya Erezb729aaf2016-01-17 12:39:09 +02001002 struct vring_tx_data *txdata = &wil->vring_tx_data[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001003
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001004 wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
1005 __func__, eth->h_dest, i);
Maya Erezb729aaf2016-01-17 12:39:09 +02001006 if (v->va && txdata->enabled) {
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001007 return v;
1008 } else {
1009 wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
1010 return NULL;
1011 }
1012 }
1013 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001014
1015 return NULL;
1016}
1017
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +02001018static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1019 struct sk_buff *skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001020
1021static struct vring *wil_find_tx_vring_sta(struct wil6210_priv *wil,
1022 struct sk_buff *skb)
1023{
1024 struct vring *v;
1025 int i;
1026 u8 cid;
Maya Erezb729aaf2016-01-17 12:39:09 +02001027 struct vring_tx_data *txdata;
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001028
1029 /* In the STA mode, it is expected to have only 1 VRING
1030 * for the AP we connected to.
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001031 * find 1-st vring eligible for this skb and use it.
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001032 */
1033 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
1034 v = &wil->vring_tx[i];
Maya Erezb729aaf2016-01-17 12:39:09 +02001035 txdata = &wil->vring_tx_data[i];
1036 if (!v->va || !txdata->enabled)
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001037 continue;
1038
1039 cid = wil->vring2cid_tid[i][0];
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001040 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
1041 continue;
1042
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001043 if (!wil->vring_tx_data[i].dot1x_open &&
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001044 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001045 continue;
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001046
1047 wil_dbg_txrx(wil, "Tx -> ring %d\n", i);
1048
1049 return v;
1050 }
1051
1052 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
1053
1054 return NULL;
1055}
1056
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001057/* Use one of 2 strategies:
1058 *
1059 * 1. New (real broadcast):
1060 * use dedicated broadcast vring
1061 * 2. Old (pseudo-DMS):
1062 * Find 1-st vring and return it;
1063 * duplicate skb and send it to other active vrings;
1064 * in all cases override dest address to unicast peer's address
1065 * Use old strategy when new is not supported yet:
1066 * - for PBSS
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001067 */
1068static struct vring *wil_find_tx_bcast_1(struct wil6210_priv *wil,
1069 struct sk_buff *skb)
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +02001070{
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001071 struct vring *v;
Maya Erezb729aaf2016-01-17 12:39:09 +02001072 struct vring_tx_data *txdata;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001073 int i = wil->bcast_vring;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +02001074
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001075 if (i < 0)
1076 return NULL;
1077 v = &wil->vring_tx[i];
Maya Erezb729aaf2016-01-17 12:39:09 +02001078 txdata = &wil->vring_tx_data[i];
1079 if (!v->va || !txdata->enabled)
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001080 return NULL;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001081 if (!wil->vring_tx_data[i].dot1x_open &&
1082 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
1083 return NULL;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +02001084
1085 return v;
1086}
1087
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001088static void wil_set_da_for_vring(struct wil6210_priv *wil,
1089 struct sk_buff *skb, int vring_index)
1090{
1091 struct ethhdr *eth = (void *)skb->data;
1092 int cid = wil->vring2cid_tid[vring_index][0];
1093
1094 ether_addr_copy(eth->h_dest, wil->sta[cid].addr);
1095}
1096
1097static struct vring *wil_find_tx_bcast_2(struct wil6210_priv *wil,
1098 struct sk_buff *skb)
1099{
1100 struct vring *v, *v2;
1101 struct sk_buff *skb2;
1102 int i;
1103 u8 cid;
1104 struct ethhdr *eth = (void *)skb->data;
1105 char *src = eth->h_source;
Maya Erezb729aaf2016-01-17 12:39:09 +02001106 struct vring_tx_data *txdata;
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001107
1108 /* find 1-st vring eligible for data */
1109 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
1110 v = &wil->vring_tx[i];
Maya Erezb729aaf2016-01-17 12:39:09 +02001111 txdata = &wil->vring_tx_data[i];
1112 if (!v->va || !txdata->enabled)
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001113 continue;
1114
1115 cid = wil->vring2cid_tid[i][0];
1116 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
1117 continue;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001118 if (!wil->vring_tx_data[i].dot1x_open &&
1119 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001120 continue;
1121
1122 /* don't Tx back to source when re-routing Rx->Tx at the AP */
1123 if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
1124 continue;
1125
1126 goto found;
1127 }
1128
1129 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
1130
1131 return NULL;
1132
1133found:
1134 wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
1135 wil_set_da_for_vring(wil, skb, i);
1136
1137 /* find other active vrings and duplicate skb for each */
1138 for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
1139 v2 = &wil->vring_tx[i];
1140 if (!v2->va)
1141 continue;
1142 cid = wil->vring2cid_tid[i][0];
1143 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
1144 continue;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001145 if (!wil->vring_tx_data[i].dot1x_open &&
1146 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001147 continue;
1148
1149 if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
1150 continue;
1151
1152 skb2 = skb_copy(skb, GFP_ATOMIC);
1153 if (skb2) {
1154 wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
1155 wil_set_da_for_vring(wil, skb2, i);
1156 wil_tx_vring(wil, v2, skb2);
1157 } else {
1158 wil_err(wil, "skb_copy failed\n");
1159 }
1160 }
1161
1162 return v;
1163}
1164
1165static struct vring *wil_find_tx_bcast(struct wil6210_priv *wil,
1166 struct sk_buff *skb)
1167{
1168 struct wireless_dev *wdev = wil->wdev;
1169
1170 if (wdev->iftype != NL80211_IFTYPE_AP)
1171 return wil_find_tx_bcast_2(wil, skb);
1172
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001173 return wil_find_tx_bcast_1(wil, skb);
1174}
1175
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001176static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
1177 int vring_index)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001178{
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001179 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001180 d->dma.ip_length = 0;
1181 /* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
1182 d->dma.b11 = 0/*14 | BIT(7)*/;
1183 d->dma.error = 0;
1184 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001185 d->dma.length = cpu_to_le16((u16)len);
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001186 d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001187 d->mac.d[0] = 0;
1188 d->mac.d[1] = 0;
1189 d->mac.d[2] = 0;
1190 d->mac.ucode_cmd = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001191 /* translation type: 0 - bypass; 1 - 802.3; 2 - native wifi */
1192 d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
1193 (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
1194
1195 return 0;
1196}
1197
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001198static inline
1199void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
1200{
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001201 d->mac.d[2] |= (nr_frags << MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001202}
1203
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001204/**
1205 * Sets the descriptor @d up for csum and/or TSO offloading. The corresponding
1206 * @skb is used to obtain the protocol and headers length.
1207 * @tso_desc_type is a descriptor type for TSO: 0 - a header, 1 - first data,
1208 * 2 - middle, 3 - last descriptor.
1209 */
1210
1211static void wil_tx_desc_offload_setup_tso(struct vring_tx_desc *d,
1212 struct sk_buff *skb,
1213 int tso_desc_type, bool is_ipv4,
1214 int tcp_hdr_len, int skb_net_hdr_len)
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001215{
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001216 d->dma.b11 = ETH_HLEN; /* MAC header length */
1217 d->dma.b11 |= is_ipv4 << DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS;
1218
1219 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
1220 /* L4 header len: TCP header length */
1221 d->dma.d0 |= (tcp_hdr_len & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1222
1223 /* Setup TSO: bit and desc type */
1224 d->dma.d0 |= (BIT(DMA_CFG_DESC_TX_0_TCP_SEG_EN_POS)) |
1225 (tso_desc_type << DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS);
1226 d->dma.d0 |= (is_ipv4 << DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_POS);
1227
1228 d->dma.ip_length = skb_net_hdr_len;
1229 /* Enable TCP/UDP checksum */
1230 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
1231 /* Calculate pseudo-header */
1232 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
1233}
1234
1235/**
1236 * Sets the descriptor @d up for csum. The corresponding
1237 * @skb is used to obtain the protocol and headers length.
1238 * Returns the protocol: 0 - not TCP, 1 - TCPv4, 2 - TCPv6.
1239 * Note, if d==NULL, the function only returns the protocol result.
1240 *
1241 * It is very similar to previous wil_tx_desc_offload_setup_tso. This
1242 * is "if unrolling" to optimize the critical path.
1243 */
1244
1245static int wil_tx_desc_offload_setup(struct vring_tx_desc *d,
1246 struct sk_buff *skb){
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001247 int protocol;
1248
1249 if (skb->ip_summed != CHECKSUM_PARTIAL)
1250 return 0;
1251
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +02001252 d->dma.b11 = ETH_HLEN; /* MAC header length */
1253
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001254 switch (skb->protocol) {
1255 case cpu_to_be16(ETH_P_IP):
1256 protocol = ip_hdr(skb)->protocol;
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +02001257 d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001258 break;
1259 case cpu_to_be16(ETH_P_IPV6):
1260 protocol = ipv6_hdr(skb)->nexthdr;
1261 break;
1262 default:
1263 return -EINVAL;
1264 }
1265
1266 switch (protocol) {
1267 case IPPROTO_TCP:
1268 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
1269 /* L4 header len: TCP header length */
1270 d->dma.d0 |=
1271 (tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1272 break;
1273 case IPPROTO_UDP:
1274 /* L4 header len: UDP header length */
1275 d->dma.d0 |=
1276 (sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1277 break;
1278 default:
1279 return -EINVAL;
1280 }
1281
1282 d->dma.ip_length = skb_network_header_len(skb);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001283 /* Enable TCP/UDP checksum */
1284 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
1285 /* Calculate pseudo-header */
1286 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
1287
1288 return 0;
1289}
1290
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001291static inline void wil_tx_last_desc(struct vring_tx_desc *d)
1292{
1293 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS) |
1294 BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS) |
1295 BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
1296}
1297
1298static inline void wil_set_tx_desc_last_tso(volatile struct vring_tx_desc *d)
1299{
1300 d->dma.d0 |= wil_tso_type_lst <<
1301 DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS;
1302}
1303
1304static int __wil_tx_vring_tso(struct wil6210_priv *wil, struct vring *vring,
1305 struct sk_buff *skb)
1306{
1307 struct device *dev = wil_to_dev(wil);
1308
1309 /* point to descriptors in shared memory */
1310 volatile struct vring_tx_desc *_desc = NULL, *_hdr_desc,
1311 *_first_desc = NULL;
1312
1313 /* pointers to shadow descriptors */
1314 struct vring_tx_desc desc_mem, hdr_desc_mem, first_desc_mem,
1315 *d = &hdr_desc_mem, *hdr_desc = &hdr_desc_mem,
1316 *first_desc = &first_desc_mem;
1317
1318 /* pointer to shadow descriptors' context */
1319 struct wil_ctx *hdr_ctx, *first_ctx = NULL;
1320
1321 int descs_used = 0; /* total number of used descriptors */
1322 int sg_desc_cnt = 0; /* number of descriptors for current mss*/
1323
1324 u32 swhead = vring->swhead;
1325 int used, avail = wil_vring_avail_tx(vring);
1326 int nr_frags = skb_shinfo(skb)->nr_frags;
1327 int min_desc_required = nr_frags + 1;
1328 int mss = skb_shinfo(skb)->gso_size; /* payload size w/o headers */
1329 int f, len, hdrlen, headlen;
1330 int vring_index = vring - wil->vring_tx;
1331 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1332 uint i = swhead;
1333 dma_addr_t pa;
1334 const skb_frag_t *frag = NULL;
1335 int rem_data = mss;
1336 int lenmss;
1337 int hdr_compensation_need = true;
1338 int desc_tso_type = wil_tso_type_first;
1339 bool is_ipv4;
1340 int tcp_hdr_len;
1341 int skb_net_hdr_len;
1342 int gso_type;
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001343 int rc = -EINVAL;
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001344
1345 wil_dbg_txrx(wil, "%s() %d bytes to vring %d\n",
1346 __func__, skb->len, vring_index);
1347
1348 if (unlikely(!txdata->enabled))
1349 return -EINVAL;
1350
1351 /* A typical page 4K is 3-4 payloads, we assume each fragment
1352 * is a full payload, that's how min_desc_required has been
1353 * calculated. In real we might need more or less descriptors,
1354 * this is the initial check only.
1355 */
1356 if (unlikely(avail < min_desc_required)) {
1357 wil_err_ratelimited(wil,
1358 "TSO: Tx ring[%2d] full. No space for %d fragments\n",
1359 vring_index, min_desc_required);
1360 return -ENOMEM;
1361 }
1362
1363 /* Header Length = MAC header len + IP header len + TCP header len*/
1364 hdrlen = ETH_HLEN +
1365 (int)skb_network_header_len(skb) +
1366 tcp_hdrlen(skb);
1367
1368 gso_type = skb_shinfo(skb)->gso_type & (SKB_GSO_TCPV6 | SKB_GSO_TCPV4);
1369 switch (gso_type) {
1370 case SKB_GSO_TCPV4:
1371 /* TCP v4, zero out the IP length and IPv4 checksum fields
1372 * as required by the offloading doc
1373 */
1374 ip_hdr(skb)->tot_len = 0;
1375 ip_hdr(skb)->check = 0;
1376 is_ipv4 = true;
1377 break;
1378 case SKB_GSO_TCPV6:
1379 /* TCP v6, zero out the payload length */
1380 ipv6_hdr(skb)->payload_len = 0;
1381 is_ipv4 = false;
1382 break;
1383 default:
1384 /* other than TCPv4 or TCPv6 types are not supported for TSO.
1385 * It is also illegal for both to be set simultaneously
1386 */
1387 return -EINVAL;
1388 }
1389
1390 if (skb->ip_summed != CHECKSUM_PARTIAL)
1391 return -EINVAL;
1392
1393 /* tcp header length and skb network header length are fixed for all
1394 * packet's descriptors - read then once here
1395 */
1396 tcp_hdr_len = tcp_hdrlen(skb);
1397 skb_net_hdr_len = skb_network_header_len(skb);
1398
1399 _hdr_desc = &vring->va[i].tx;
1400
1401 pa = dma_map_single(dev, skb->data, hdrlen, DMA_TO_DEVICE);
1402 if (unlikely(dma_mapping_error(dev, pa))) {
1403 wil_err(wil, "TSO: Skb head DMA map error\n");
1404 goto err_exit;
1405 }
1406
1407 wil_tx_desc_map(hdr_desc, pa, hdrlen, vring_index);
1408 wil_tx_desc_offload_setup_tso(hdr_desc, skb, wil_tso_type_hdr, is_ipv4,
1409 tcp_hdr_len, skb_net_hdr_len);
1410 wil_tx_last_desc(hdr_desc);
1411
1412 vring->ctx[i].mapped_as = wil_mapped_as_single;
1413 hdr_ctx = &vring->ctx[i];
1414
1415 descs_used++;
1416 headlen = skb_headlen(skb) - hdrlen;
1417
1418 for (f = headlen ? -1 : 0; f < nr_frags; f++) {
1419 if (headlen) {
1420 len = headlen;
1421 wil_dbg_txrx(wil, "TSO: process skb head, len %u\n",
1422 len);
1423 } else {
1424 frag = &skb_shinfo(skb)->frags[f];
1425 len = frag->size;
1426 wil_dbg_txrx(wil, "TSO: frag[%d]: len %u\n", f, len);
1427 }
1428
1429 while (len) {
1430 wil_dbg_txrx(wil,
1431 "TSO: len %d, rem_data %d, descs_used %d\n",
1432 len, rem_data, descs_used);
1433
1434 if (descs_used == avail) {
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001435 wil_err_ratelimited(wil, "TSO: ring overflow\n");
1436 rc = -ENOMEM;
1437 goto mem_error;
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001438 }
1439
1440 lenmss = min_t(int, rem_data, len);
1441 i = (swhead + descs_used) % vring->size;
1442 wil_dbg_txrx(wil, "TSO: lenmss %d, i %d\n", lenmss, i);
1443
1444 if (!headlen) {
1445 pa = skb_frag_dma_map(dev, frag,
1446 frag->size - len, lenmss,
1447 DMA_TO_DEVICE);
1448 vring->ctx[i].mapped_as = wil_mapped_as_page;
1449 } else {
1450 pa = dma_map_single(dev,
1451 skb->data +
1452 skb_headlen(skb) - headlen,
1453 lenmss,
1454 DMA_TO_DEVICE);
1455 vring->ctx[i].mapped_as = wil_mapped_as_single;
1456 headlen -= lenmss;
1457 }
1458
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001459 if (unlikely(dma_mapping_error(dev, pa))) {
1460 wil_err(wil, "TSO: DMA map page error\n");
1461 goto mem_error;
1462 }
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001463
1464 _desc = &vring->va[i].tx;
1465
1466 if (!_first_desc) {
1467 _first_desc = _desc;
1468 first_ctx = &vring->ctx[i];
1469 d = first_desc;
1470 } else {
1471 d = &desc_mem;
1472 }
1473
1474 wil_tx_desc_map(d, pa, lenmss, vring_index);
1475 wil_tx_desc_offload_setup_tso(d, skb, desc_tso_type,
1476 is_ipv4, tcp_hdr_len,
1477 skb_net_hdr_len);
1478
1479 /* use tso_type_first only once */
1480 desc_tso_type = wil_tso_type_mid;
1481
1482 descs_used++; /* desc used so far */
1483 sg_desc_cnt++; /* desc used for this segment */
1484 len -= lenmss;
1485 rem_data -= lenmss;
1486
1487 wil_dbg_txrx(wil,
1488 "TSO: len %d, rem_data %d, descs_used %d, sg_desc_cnt %d,\n",
1489 len, rem_data, descs_used, sg_desc_cnt);
1490
1491 /* Close the segment if reached mss size or last frag*/
1492 if (rem_data == 0 || (f == nr_frags - 1 && len == 0)) {
1493 if (hdr_compensation_need) {
1494 /* first segment include hdr desc for
1495 * release
1496 */
1497 hdr_ctx->nr_frags = sg_desc_cnt;
1498 wil_tx_desc_set_nr_frags(first_desc,
1499 sg_desc_cnt +
1500 1);
1501 hdr_compensation_need = false;
1502 } else {
1503 wil_tx_desc_set_nr_frags(first_desc,
1504 sg_desc_cnt);
1505 }
1506 first_ctx->nr_frags = sg_desc_cnt - 1;
1507
1508 wil_tx_last_desc(d);
1509
1510 /* first descriptor may also be the last
1511 * for this mss - make sure not to copy
1512 * it twice
1513 */
1514 if (first_desc != d)
1515 *_first_desc = *first_desc;
1516
1517 /*last descriptor will be copied at the end
1518 * of this TS processing
1519 */
1520 if (f < nr_frags - 1 || len > 0)
1521 *_desc = *d;
1522
1523 rem_data = mss;
1524 _first_desc = NULL;
1525 sg_desc_cnt = 0;
1526 } else if (first_desc != d) /* update mid descriptor */
1527 *_desc = *d;
1528 }
1529 }
1530
1531 /* first descriptor may also be the last.
1532 * in this case d pointer is invalid
1533 */
1534 if (_first_desc == _desc)
1535 d = first_desc;
1536
1537 /* Last data descriptor */
1538 wil_set_tx_desc_last_tso(d);
1539 *_desc = *d;
1540
1541 /* Fill the total number of descriptors in first desc (hdr)*/
1542 wil_tx_desc_set_nr_frags(hdr_desc, descs_used);
1543 *_hdr_desc = *hdr_desc;
1544
1545 /* hold reference to skb
1546 * to prevent skb release before accounting
1547 * in case of immediate "tx done"
1548 */
1549 vring->ctx[i].skb = skb_get(skb);
1550
1551 /* performance monitoring */
1552 used = wil_vring_used_tx(vring);
1553 if (wil_val_in_range(vring_idle_trsh,
1554 used, used + descs_used)) {
1555 txdata->idle += get_cycles() - txdata->last_idle;
1556 wil_dbg_txrx(wil, "Ring[%2d] not idle %d -> %d\n",
1557 vring_index, used, used + descs_used);
1558 }
1559
Maya Erezeb26cff2016-05-16 22:23:30 +03001560 /* Make sure to advance the head only after descriptor update is done.
1561 * This will prevent a race condition where the completion thread
1562 * will see the DU bit set from previous run and will handle the
1563 * skb before it was completed.
1564 */
1565 wmb();
1566
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001567 /* advance swhead */
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001568 wil_vring_advance_head(vring, descs_used);
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001569 wil_dbg_txrx(wil, "TSO: Tx swhead %d -> %d\n", swhead, vring->swhead);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001570
1571 /* make sure all writes to descriptors (shared memory) are done before
1572 * committing them to HW
1573 */
1574 wmb();
1575
Vladimir Kondratievb9eeb512015-07-30 13:52:03 +03001576 wil_w(wil, vring->hwtail, vring->swhead);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001577 return 0;
1578
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001579mem_error:
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001580 while (descs_used > 0) {
1581 struct wil_ctx *ctx;
1582
1583 i = (swhead + descs_used) % vring->size;
1584 d = (struct vring_tx_desc *)&vring->va[i].tx;
1585 _desc = &vring->va[i].tx;
1586 *d = *_desc;
1587 _desc->dma.status = TX_DMA_STATUS_DU;
1588 ctx = &vring->ctx[i];
1589 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001590 memset(ctx, 0, sizeof(*ctx));
1591 descs_used--;
1592 }
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001593err_exit:
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001594 return rc;
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001595}
1596
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001597static int __wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1598 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001599{
1600 struct device *dev = wil_to_dev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001601 struct vring_tx_desc dd, *d = &dd;
1602 volatile struct vring_tx_desc *_d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001603 u32 swhead = vring->swhead;
1604 int avail = wil_vring_avail_tx(vring);
1605 int nr_frags = skb_shinfo(skb)->nr_frags;
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001606 uint f = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001607 int vring_index = vring - wil->vring_tx;
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001608 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001609 uint i = swhead;
1610 dma_addr_t pa;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001611 int used;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001612 bool mcast = (vring_index == wil->bcast_vring);
1613 uint len = skb_headlen(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001614
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001615 wil_dbg_txrx(wil, "%s() %d bytes to vring %d\n",
1616 __func__, skb->len, vring_index);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001617
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001618 if (unlikely(!txdata->enabled))
1619 return -EINVAL;
1620
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001621 if (unlikely(avail < 1 + nr_frags)) {
Vladimir Kondratiev70801e12014-12-01 15:36:03 +02001622 wil_err_ratelimited(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001623 "Tx ring[%2d] full. No space for %d fragments\n",
1624 vring_index, 1 + nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001625 return -ENOMEM;
1626 }
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001627 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001628
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001629 pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001630
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001631 wil_dbg_txrx(wil, "Tx[%2d] skb %d bytes 0x%p -> %pad\n", vring_index,
1632 skb_headlen(skb), skb->data, &pa);
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001633 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001634 skb->data, skb_headlen(skb), false);
1635
1636 if (unlikely(dma_mapping_error(dev, pa)))
1637 return -EINVAL;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001638 vring->ctx[i].mapped_as = wil_mapped_as_single;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001639 /* 1-st segment */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001640 wil_tx_desc_map(d, pa, len, vring_index);
1641 if (unlikely(mcast)) {
1642 d->mac.d[0] |= BIT(MAC_CFG_DESC_TX_0_MCS_EN_POS); /* MCS 0 */
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001643 if (unlikely(len > WIL_BCAST_MCS0_LIMIT)) /* set MCS 1 */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001644 d->mac.d[0] |= (1 << MAC_CFG_DESC_TX_0_MCS_INDEX_POS);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001645 }
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001646 /* Process TCP/UDP checksum offloading */
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001647 if (unlikely(wil_tx_desc_offload_setup(d, skb))) {
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001648 wil_err(wil, "Tx[%2d] Failed to set cksum, drop packet\n",
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001649 vring_index);
1650 goto dma_error;
1651 }
1652
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001653 vring->ctx[i].nr_frags = nr_frags;
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001654 wil_tx_desc_set_nr_frags(d, nr_frags + 1);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001655
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001656 /* middle segments */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001657 for (; f < nr_frags; f++) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001658 const struct skb_frag_struct *frag =
1659 &skb_shinfo(skb)->frags[f];
1660 int len = skb_frag_size(frag);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001661
Vladimir Kondratieve59d16c2015-02-01 10:55:12 +02001662 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001663 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1664 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1665 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001666 i = (swhead + f + 1) % vring->size;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001667 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001668 pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001669 DMA_TO_DEVICE);
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001670 if (unlikely(dma_mapping_error(dev, pa))) {
1671 wil_err(wil, "Tx[%2d] failed to map fragment\n",
1672 vring_index);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001673 goto dma_error;
Hamad Kadmanye3d2ed92015-10-25 15:59:22 +02001674 }
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001675 vring->ctx[i].mapped_as = wil_mapped_as_page;
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001676 wil_tx_desc_map(d, pa, len, vring_index);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001677 /* no need to check return code -
1678 * if it succeeded for 1-st descriptor,
1679 * it will succeed here too
1680 */
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001681 wil_tx_desc_offload_setup(d, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001682 }
1683 /* for the last seg only */
1684 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
Kirshenbaum Erez668b2bb2013-06-23 12:59:35 +03001685 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001686 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001687 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001688 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1689 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1690 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001691
Vladimir Kondratiev6cdadd42013-07-11 18:03:41 +03001692 /* hold reference to skb
1693 * to prevent skb release before accounting
1694 * in case of immediate "tx done"
1695 */
1696 vring->ctx[i].skb = skb_get(skb);
1697
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001698 /* performance monitoring */
1699 used = wil_vring_used_tx(vring);
1700 if (wil_val_in_range(vring_idle_trsh,
1701 used, used + nr_frags + 1)) {
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001702 txdata->idle += get_cycles() - txdata->last_idle;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001703 wil_dbg_txrx(wil, "Ring[%2d] not idle %d -> %d\n",
1704 vring_index, used, used + nr_frags + 1);
1705 }
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001706
Maya Erezeb26cff2016-05-16 22:23:30 +03001707 /* Make sure to advance the head only after descriptor update is done.
1708 * This will prevent a race condition where the completion thread
1709 * will see the DU bit set from previous run and will handle the
1710 * skb before it was completed.
1711 */
1712 wmb();
1713
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001714 /* advance swhead */
1715 wil_vring_advance_head(vring, nr_frags + 1);
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001716 wil_dbg_txrx(wil, "Tx[%2d] swhead %d -> %d\n", vring_index, swhead,
1717 vring->swhead);
Vladimir Kondratiev98658092013-05-12 14:43:35 +03001718 trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001719
1720 /* make sure all writes to descriptors (shared memory) are done before
1721 * committing them to HW
1722 */
1723 wmb();
1724
Vladimir Kondratievb9eeb512015-07-30 13:52:03 +03001725 wil_w(wil, vring->hwtail, vring->swhead);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001726
1727 return 0;
1728 dma_error:
1729 /* unmap what we have mapped */
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001730 nr_frags = f + 1; /* frags mapped + one for skb head */
1731 for (f = 0; f < nr_frags; f++) {
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001732 struct wil_ctx *ctx;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001733
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001734 i = (swhead + f) % vring->size;
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001735 ctx = &vring->ctx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001736 _d = &vring->va[i].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001737 *d = *_d;
1738 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001739 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001740
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001741 memset(ctx, 0, sizeof(*ctx));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001742 }
1743
1744 return -EINVAL;
1745}
1746
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001747static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1748 struct sk_buff *skb)
1749{
1750 int vring_index = vring - wil->vring_tx;
1751 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1752 int rc;
1753
1754 spin_lock(&txdata->lock);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001755
1756 rc = (skb_is_gso(skb) ? __wil_tx_vring_tso : __wil_tx_vring)
1757 (wil, vring, skb);
1758
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001759 spin_unlock(&txdata->lock);
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001760
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001761 return rc;
1762}
1763
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001764netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1765{
1766 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001767 struct ethhdr *eth = (void *)skb->data;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001768 bool bcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001769 struct vring *vring;
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001770 static bool pr_once_fw;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001771 int rc;
1772
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001773 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001774 if (unlikely(!test_bit(wil_status_fwready, wil->status))) {
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001775 if (!pr_once_fw) {
1776 wil_err(wil, "FW not ready\n");
1777 pr_once_fw = true;
1778 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001779 goto drop;
1780 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001781 if (unlikely(!test_bit(wil_status_fwconnected, wil->status))) {
Maya Erezd8ed0432016-04-26 14:41:39 +03001782 wil_dbg_ratelimited(wil, "FW not connected, packet dropped\n");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001783 goto drop;
1784 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001785 if (unlikely(wil->wdev->iftype == NL80211_IFTYPE_MONITOR)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001786 wil_err(wil, "Xmit in monitor mode not supported\n");
1787 goto drop;
1788 }
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001789 pr_once_fw = false;
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001790
1791 /* find vring */
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001792 if (wil->wdev->iftype == NL80211_IFTYPE_STATION) {
1793 /* in STA mode (ESS), all to same VRING */
1794 vring = wil_find_tx_vring_sta(wil, skb);
1795 } else { /* direct communication, find matching VRING */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001796 vring = bcast ? wil_find_tx_bcast(wil, skb) :
1797 wil_find_tx_ucast(wil, skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001798 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001799 if (unlikely(!vring)) {
Vladimir Kondratiev5aed1392014-06-16 19:37:15 +03001800 wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001801 goto drop;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001802 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001803 /* set up vring entry */
1804 rc = wil_tx_vring(wil, vring, skb);
1805
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001806 /* do we still have enough room in the vring? */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001807 if (unlikely(wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring))) {
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001808 netif_tx_stop_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001809 wil_dbg_txrx(wil, "netif_tx_stop : ring full\n");
1810 }
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001811
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001812 switch (rc) {
1813 case 0:
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001814 /* statistics will be updated on the tx_complete */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001815 dev_kfree_skb_any(skb);
1816 return NETDEV_TX_OK;
1817 case -ENOMEM:
1818 return NETDEV_TX_BUSY;
1819 default:
Vladimir Kondratievafda8bb2013-01-28 18:31:07 +02001820 break; /* goto drop; */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001821 }
1822 drop:
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001823 ndev->stats.tx_dropped++;
1824 dev_kfree_skb_any(skb);
1825
1826 return NET_XMIT_DROP;
1827}
1828
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001829static inline bool wil_need_txstat(struct sk_buff *skb)
1830{
1831 struct ethhdr *eth = (void *)skb->data;
1832
1833 return is_unicast_ether_addr(eth->h_dest) && skb->sk &&
1834 (skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS);
1835}
1836
1837static inline void wil_consume_skb(struct sk_buff *skb, bool acked)
1838{
1839 if (unlikely(wil_need_txstat(skb)))
1840 skb_complete_wifi_ack(skb, acked);
1841 else
1842 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb);
1843}
1844
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001845/**
1846 * Clean up transmitted skb's from the Tx VRING
1847 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001848 * Return number of descriptors cleared
1849 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001850 * Safe to call from IRQ
1851 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001852int wil_tx_complete(struct wil6210_priv *wil, int ringid)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001853{
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001854 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001855 struct device *dev = wil_to_dev(wil);
1856 struct vring *vring = &wil->vring_tx[ringid];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001857 struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001858 int done = 0;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001859 int cid = wil->vring2cid_tid[ringid][0];
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001860 struct wil_net_stats *stats = NULL;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001861 volatile struct vring_tx_desc *_d;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001862 int used_before_complete;
1863 int used_new;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001864
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001865 if (unlikely(!vring->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001866 wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001867 return 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001868 }
1869
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001870 if (unlikely(!txdata->enabled)) {
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001871 wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
1872 return 0;
1873 }
1874
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001875 wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001876
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001877 used_before_complete = wil_vring_used_tx(vring);
1878
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001879 if (cid < WIL6210_MAX_CID)
1880 stats = &wil->sta[cid].stats;
1881
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001882 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001883 int new_swtail;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001884 struct wil_ctx *ctx = &vring->ctx[vring->swtail];
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001885 /**
1886 * For the fragmented skb, HW will set DU bit only for the
Vladimir Kondratiev3d4bde12015-07-30 13:51:56 +03001887 * last fragment. look for it.
1888 * In TSO the first DU will include hdr desc
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001889 */
1890 int lf = (vring->swtail + ctx->nr_frags) % vring->size;
1891 /* TODO: check we are not past head */
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001892
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001893 _d = &vring->va[lf].tx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001894 if (unlikely(!(_d->dma.status & TX_DMA_STATUS_DU)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001895 break;
1896
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001897 new_swtail = (lf + 1) % vring->size;
1898 while (vring->swtail != new_swtail) {
1899 struct vring_tx_desc dd, *d = &dd;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001900 u16 dmalen;
Vladimir Kondratiev76dfa4b2014-07-14 09:49:39 +03001901 struct sk_buff *skb;
1902
1903 ctx = &vring->ctx[vring->swtail];
1904 skb = ctx->skb;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001905 _d = &vring->va[vring->swtail].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001906
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001907 *d = *_d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001908
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001909 dmalen = le16_to_cpu(d->dma.length);
1910 trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
1911 d->dma.error);
1912 wil_dbg_txrx(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001913 "TxC[%2d][%3d] : %d bytes, status 0x%02x err 0x%02x\n",
1914 ringid, vring->swtail, dmalen,
1915 d->dma.status, d->dma.error);
1916 wil_hex_dump_txrx("TxCD ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001917 (const void *)d, sizeof(*d), false);
1918
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001919 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001920
1921 if (skb) {
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001922 if (likely(d->dma.error == 0)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001923 ndev->stats.tx_packets++;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001924 ndev->stats.tx_bytes += skb->len;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001925 if (stats) {
1926 stats->tx_packets++;
1927 stats->tx_bytes += skb->len;
1928 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001929 } else {
1930 ndev->stats.tx_errors++;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001931 if (stats)
1932 stats->tx_errors++;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001933 }
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001934 wil_consume_skb(skb, d->dma.error == 0);
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001935 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001936 memset(ctx, 0, sizeof(*ctx));
Maya Erezeb26cff2016-05-16 22:23:30 +03001937 /* Make sure the ctx is zeroed before updating the tail
1938 * to prevent a case where wil_tx_vring will see
1939 * this descriptor as used and handle it before ctx zero
1940 * is completed.
1941 */
1942 wmb();
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001943 /* There is no need to touch HW descriptor:
1944 * - ststus bit TX_DMA_STATUS_DU is set by design,
1945 * so hardware will not try to process this desc.,
1946 * - rest of descriptor will be initialized on Tx.
1947 */
1948 vring->swtail = wil_vring_next_tail(vring);
1949 done++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001950 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001951 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001952
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001953 /* performance monitoring */
1954 used_new = wil_vring_used_tx(vring);
1955 if (wil_val_in_range(vring_idle_trsh,
1956 used_new, used_before_complete)) {
1957 wil_dbg_txrx(wil, "Ring[%2d] idle %d -> %d\n",
1958 ringid, used_before_complete, used_new);
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001959 txdata->last_idle = get_cycles();
1960 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001961
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001962 if (wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring)) {
1963 wil_dbg_txrx(wil, "netif_tx_wake : ring not full\n");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001964 netif_tx_wake_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001965 }
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001966
1967 return done;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001968}