blob: 0113dac3a9a9f33b6190609e26057777a35aa8ff [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 Kondratiev2be7d222012-12-20 13:13:19 -0800361/**
362 * reap 1 frame from @swhead
363 *
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300364 * Rx descriptor copied to skb->cb
365 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800366 * Safe to call from IRQ
367 */
368static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
369 struct vring *vring)
370{
371 struct device *dev = wil_to_dev(wil);
372 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300373 volatile struct vring_rx_desc *_d;
374 struct vring_rx_desc *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800375 struct sk_buff *skb;
376 dma_addr_t pa;
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200377 unsigned int snaplen = wil_rx_snaplen();
378 unsigned int sz = mtu_max + ETH_HLEN + snaplen;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300379 u16 dmalen;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800380 u8 ftype;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200381 int cid;
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200382 int i = (int)vring->swhead;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200383 struct wil_net_stats *stats;
384
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300385 BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
386
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200387 if (unlikely(wil_vring_is_empty(vring)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800388 return NULL;
389
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200390 _d = &vring->va[i].rx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200391 if (unlikely(!(_d->dma.status & RX_DMA_STATUS_DU))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800392 /* it is not error, we just reached end of Rx done area */
393 return NULL;
394 }
395
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200396 skb = vring->ctx[i].skb;
397 vring->ctx[i].skb = NULL;
398 wil_vring_advance_head(vring, 1);
399 if (!skb) {
400 wil_err(wil, "No Rx skb at [%d]\n", i);
401 return NULL;
402 }
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300403 d = wil_skb_rxdesc(skb);
404 *d = *_d;
405 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300406
407 dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
408 dmalen = le16_to_cpu(d->dma.length);
409
Vladimir Kondratiev148416a2015-03-15 16:00:16 +0200410 trace_wil6210_rx(i, d);
411 wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", i, dmalen);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300412 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_NONE, 32, 4,
413 (const void *)d, sizeof(*d), false);
414
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200415 if (unlikely(dmalen > sz)) {
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300416 wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
Wei Yongjun110dea02013-05-23 17:10:43 +0800417 kfree_skb(skb);
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300418 return NULL;
419 }
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300420 skb_trim(skb, dmalen);
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300421
Vladimir Kondratiev1cbbcb02014-01-08 11:50:49 +0200422 prefetch(skb->data);
423
Vladimir Kondratievc0d37712013-05-12 14:43:34 +0300424 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
425 skb->data, skb_headlen(skb), false);
426
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200427 cid = wil_rxdesc_cid(d);
428 stats = &wil->sta[cid].stats;
429 stats->last_mcs_rx = wil_rxdesc_mcs(d);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800430
431 /* use radiotap header only if required */
432 if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300433 wil_rx_add_radiotap_header(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800434
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800435 /* no extra checks if in sniffer mode */
436 if (ndev->type != ARPHRD_ETHER)
437 return skb;
438 /*
439 * Non-data frames may be delivered through Rx DMA channel (ex: BAR)
440 * Driver should recognize it by frame type, that is found
441 * in Rx descriptor. If type is not data, it is 802.11 frame as is
442 */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300443 ftype = wil_rxdesc_ftype(d) << 2;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200444 if (unlikely(ftype != IEEE80211_FTYPE_DATA)) {
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200445 wil_dbg_txrx(wil, "Non-data frame ftype 0x%08x\n", ftype);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800446 /* TODO: process it */
447 kfree_skb(skb);
448 return NULL;
449 }
450
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200451 if (unlikely(skb->len < ETH_HLEN + snaplen)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800452 wil_err(wil, "Short frame, len = %d\n", skb->len);
453 /* TODO: process it (i.e. BAR) */
454 kfree_skb(skb);
455 return NULL;
456 }
457
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300458 /* L4 IDENT is on when HW calculated checksum, check status
459 * and in case of error drop the packet
460 * higher stack layers will handle retransmission (if required)
461 */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200462 if (likely(d->dma.status & RX_DMA_STATUS_L4I)) {
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300463 /* L4 protocol identified, csum calculated */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200464 if (likely((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0))
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300465 skb->ip_summed = CHECKSUM_UNNECESSARY;
Vladimir Kondratiev4a68ab102013-08-13 15:25:32 +0300466 /* If HW reports bad checksum, let IP stack re-check it
467 * For example, HW don't understand Microsoft IP stack that
468 * mis-calculates TCP checksum - if it should be 0x0,
469 * it writes 0xffff in violation of RFC 1624
470 */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300471 }
472
Vladimir Kondratievc406ea72015-03-15 16:00:19 +0200473 if (snaplen) {
474 /* Packet layout
475 * +-------+-------+---------+------------+------+
476 * | SA(6) | DA(6) | SNAP(6) | ETHTYPE(2) | DATA |
477 * +-------+-------+---------+------------+------+
478 * Need to remove SNAP, shifting SA and DA forward
479 */
480 memmove(skb->data + snaplen, skb->data, 2 * ETH_ALEN);
481 skb_pull(skb, snaplen);
482 }
483
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800484 return skb;
485}
486
487/**
488 * allocate and fill up to @count buffers in rx ring
489 * buffers posted at @swtail
490 */
491static int wil_rx_refill(struct wil6210_priv *wil, int count)
492{
493 struct net_device *ndev = wil_to_ndev(wil);
494 struct vring *v = &wil->vring_rx;
495 u32 next_tail;
496 int rc = 0;
497 int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
498 WIL6210_RTAP_SIZE : 0;
499
500 for (; next_tail = wil_vring_next_tail(v),
501 (next_tail != v->swhead) && (count-- > 0);
502 v->swtail = next_tail) {
503 rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200504 if (unlikely(rc)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800505 wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
506 rc, v->swtail);
507 break;
508 }
509 }
510 iowrite32(v->swtail, wil->csr + HOSTADDR(v->hwtail));
511
512 return rc;
513}
514
515/*
516 * Pass Rx packet to the netif. Update statistics.
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300517 * Called in softirq context (NAPI poll).
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800518 */
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200519void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800520{
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200521 gro_result_t rc = GRO_NORMAL;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200522 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200523 struct wireless_dev *wdev = wil_to_wdev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800524 unsigned int len = skb->len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200525 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200526 int cid = wil_rxdesc_cid(d); /* always 0..7, no need to check */
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200527 struct ethhdr *eth = (void *)skb->data;
528 /* here looking for DA, not A1, thus Rxdesc's 'mcast' indication
529 * is not suitable, need to look at data
530 */
531 int mcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200532 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200533 struct sk_buff *xmit_skb = NULL;
534 static const char * const gro_res_str[] = {
535 [GRO_MERGED] = "GRO_MERGED",
536 [GRO_MERGED_FREE] = "GRO_MERGED_FREE",
537 [GRO_HELD] = "GRO_HELD",
538 [GRO_NORMAL] = "GRO_NORMAL",
539 [GRO_DROP] = "GRO_DROP",
540 };
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800541
Vladimir Kondratiev241804c2013-01-28 18:31:02 +0200542 skb_orphan(skb);
543
Vladimir Kondratiev02beaf12015-03-08 15:42:03 +0200544 if (wdev->iftype == NL80211_IFTYPE_AP && !wil->ap_isolate) {
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200545 if (mcast) {
546 /* send multicast frames both to higher layers in
547 * local net stack and back to the wireless medium
548 */
549 xmit_skb = skb_copy(skb, GFP_ATOMIC);
550 } else {
551 int xmit_cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800552
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200553 if (xmit_cid >= 0) {
554 /* The destination station is associated to
555 * this AP (in this VLAN), so send the frame
556 * directly to it and do not pass it to local
557 * net stack.
558 */
559 xmit_skb = skb;
560 skb = NULL;
561 }
562 }
563 }
564 if (xmit_skb) {
565 /* Send to wireless media and increase priority by 256 to
566 * keep the received priority instead of reclassifying
567 * the frame (see cfg80211_classify8021d).
568 */
569 xmit_skb->dev = ndev;
570 xmit_skb->priority += 256;
571 xmit_skb->protocol = htons(ETH_P_802_3);
572 skb_reset_network_header(xmit_skb);
573 skb_reset_mac_header(xmit_skb);
574 wil_dbg_txrx(wil, "Rx -> Tx %d bytes\n", len);
575 dev_queue_xmit(xmit_skb);
576 }
577
578 if (skb) { /* deliver to local stack */
579
580 skb->protocol = eth_type_trans(skb, ndev);
581 rc = napi_gro_receive(&wil->napi_rx, skb);
582 wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
583 len, gro_res_str[rc]);
584 }
585 /* statistics. rc set to GRO_NORMAL for AP bridging */
Vladimir Kondratievb5998e62014-03-17 15:34:22 +0200586 if (unlikely(rc == GRO_DROP)) {
587 ndev->stats.rx_dropped++;
588 stats->rx_dropped++;
589 wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
590 } else {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800591 ndev->stats.rx_packets++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200592 stats->rx_packets++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800593 ndev->stats.rx_bytes += len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200594 stats->rx_bytes += len;
Vladimir Kondratievc42da992015-03-08 15:42:02 +0200595 if (mcast)
596 ndev->stats.multicast++;
Vladimir Kondratiev194b4822014-06-16 19:37:14 +0300597 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800598}
599
600/**
601 * Proceed all completed skb's from Rx VRING
602 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300603 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800604 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300605void wil_rx_handle(struct wil6210_priv *wil, int *quota)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800606{
607 struct net_device *ndev = wil_to_ndev(wil);
608 struct vring *v = &wil->vring_rx;
609 struct sk_buff *skb;
610
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +0200611 if (unlikely(!v->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800612 wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
613 return;
614 }
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200615 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300616 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
617 (*quota)--;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800618
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800619 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
620 skb->dev = ndev;
621 skb_reset_mac_header(skb);
622 skb->ip_summed = CHECKSUM_UNNECESSARY;
623 skb->pkt_type = PACKET_OTHERHOST;
624 skb->protocol = htons(ETH_P_802_2);
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200625 wil_netif_rx_any(skb, ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800626 } else {
Vladimir Kondratieve4373d82014-12-23 09:47:21 +0200627 wil_rx_reorder(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800628 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800629 }
630 wil_rx_refill(wil, v->size);
631}
632
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200633int wil_rx_init(struct wil6210_priv *wil, u16 size)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800634{
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800635 struct vring *vring = &wil->vring_rx;
636 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800637
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300638 wil_dbg_misc(wil, "%s()\n", __func__);
639
Vladimir Kondratiev8bf6adb2014-03-17 15:34:17 +0200640 if (vring->va) {
641 wil_err(wil, "Rx ring already allocated\n");
642 return -EINVAL;
643 }
644
Vladimir Kondratievd3762b42014-12-01 15:35:02 +0200645 vring->size = size;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800646 rc = wil_vring_alloc(wil, vring);
647 if (rc)
648 return rc;
649
Vladimir Kondratiev47e19af2013-01-28 18:30:59 +0200650 rc = wmi_rx_chain_add(wil, vring);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800651 if (rc)
652 goto err_free;
653
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800654 rc = wil_rx_refill(wil, vring->size);
655 if (rc)
656 goto err_free;
657
658 return 0;
659 err_free:
660 wil_vring_free(wil, vring, 0);
661
662 return rc;
663}
664
665void wil_rx_fini(struct wil6210_priv *wil)
666{
667 struct vring *vring = &wil->vring_rx;
668
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300669 wil_dbg_misc(wil, "%s()\n", __func__);
670
Vladimir Kondratiev2acb4222013-01-28 18:31:08 +0200671 if (vring->va)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800672 wil_vring_free(wil, vring, 0);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800673}
674
675int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
676 int cid, int tid)
677{
678 int rc;
679 struct wmi_vring_cfg_cmd cmd = {
680 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
681 .vring_cfg = {
682 .tx_sw_ring = {
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +0200683 .max_mpdu_size =
Vladimir Kondratievc44690a2014-12-23 09:47:11 +0200684 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
Vladimir Kondratievb5d98e92013-04-18 14:33:51 +0300685 .ring_size = cpu_to_le16(size),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800686 },
687 .ringid = id,
Vladimir Kondratieva70abea2014-03-17 15:34:05 +0200688 .cidxtid = mk_cidxtid(cid, tid),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800689 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
690 .mac_ctrl = 0,
691 .to_resolution = 0,
Vladimir Kondratiev32772132014-12-23 09:47:03 +0200692 .agg_max_wsize = 0,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800693 .schd_params = {
694 .priority = cpu_to_le16(0),
695 .timeslot_us = cpu_to_le16(0xfff),
696 },
697 },
698 };
699 struct {
700 struct wil6210_mbox_hdr_wmi wmi;
701 struct wmi_vring_cfg_done_event cmd;
702 } __packed reply;
703 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200704 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800705
Vladimir Kondratieve0106ad2014-09-10 16:34:45 +0300706 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
707 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300708
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800709 if (vring->va) {
710 wil_err(wil, "Tx ring [%d] already allocated\n", id);
711 rc = -EINVAL;
712 goto out;
713 }
714
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200715 memset(txdata, 0, sizeof(*txdata));
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200716 spin_lock_init(&txdata->lock);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800717 vring->size = size;
718 rc = wil_vring_alloc(wil, vring);
719 if (rc)
720 goto out;
721
Vladimir Kondratiev93ae6d42014-02-27 16:20:51 +0200722 wil->vring2cid_tid[id][0] = cid;
723 wil->vring2cid_tid[id][1] = tid;
724
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800725 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800726
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300727 if (!wil->privacy)
728 txdata->dot1x_open = true;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800729 rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
730 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
731 if (rc)
732 goto out_free;
733
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200734 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800735 wil_err(wil, "Tx config failed, status 0x%02x\n",
736 reply.cmd.status);
Vladimir Kondratievc3319972013-01-28 18:31:09 +0200737 rc = -EINVAL;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800738 goto out_free;
739 }
740 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
741
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200742 txdata->enabled = 1;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300743 if (txdata->dot1x_open && (agg_wsize >= 0))
Vladimir Kondratiev3a3def82014-12-23 09:47:05 +0200744 wil_addba_tx_request(wil, id, agg_wsize);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200745
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800746 return 0;
747 out_free:
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300748 txdata->dot1x_open = false;
749 txdata->enabled = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800750 wil_vring_free(wil, vring, 1);
751 out:
752
753 return rc;
754}
755
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200756int wil_vring_init_bcast(struct wil6210_priv *wil, int id, int size)
757{
758 int rc;
759 struct wmi_bcast_vring_cfg_cmd cmd = {
760 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
761 .vring_cfg = {
762 .tx_sw_ring = {
763 .max_mpdu_size =
764 cpu_to_le16(wil_mtu2macbuf(mtu_max)),
765 .ring_size = cpu_to_le16(size),
766 },
767 .ringid = id,
768 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
769 },
770 };
771 struct {
772 struct wil6210_mbox_hdr_wmi wmi;
773 struct wmi_vring_cfg_done_event cmd;
774 } __packed reply;
775 struct vring *vring = &wil->vring_tx[id];
776 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
777
778 wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
779 cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
780
781 if (vring->va) {
782 wil_err(wil, "Tx ring [%d] already allocated\n", id);
783 rc = -EINVAL;
784 goto out;
785 }
786
787 memset(txdata, 0, sizeof(*txdata));
788 spin_lock_init(&txdata->lock);
789 vring->size = size;
790 rc = wil_vring_alloc(wil, vring);
791 if (rc)
792 goto out;
793
794 wil->vring2cid_tid[id][0] = WIL6210_MAX_CID; /* CID */
795 wil->vring2cid_tid[id][1] = 0; /* TID */
796
797 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
798
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300799 if (!wil->privacy)
800 txdata->dot1x_open = true;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200801 rc = wmi_call(wil, WMI_BCAST_VRING_CFG_CMDID, &cmd, sizeof(cmd),
802 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
803 if (rc)
804 goto out_free;
805
806 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
807 wil_err(wil, "Tx config failed, status 0x%02x\n",
808 reply.cmd.status);
809 rc = -EINVAL;
810 goto out_free;
811 }
812 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
813
814 txdata->enabled = 1;
815
816 return 0;
817 out_free:
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300818 txdata->enabled = 0;
819 txdata->dot1x_open = false;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200820 wil_vring_free(wil, vring, 1);
821 out:
822
823 return rc;
824}
825
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800826void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
827{
828 struct vring *vring = &wil->vring_tx[id];
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200829 struct vring_tx_data *txdata = &wil->vring_tx_data[id];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800830
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200831 WARN_ON(!mutex_is_locked(&wil->mutex));
832
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800833 if (!vring->va)
834 return;
835
Vladimir Kondratiev9cf10d62014-09-10 16:34:36 +0300836 wil_dbg_misc(wil, "%s() id=%d\n", __func__, id);
837
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200838 spin_lock_bh(&txdata->lock);
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300839 txdata->dot1x_open = false;
Vladimir Kondratiev5933a062015-02-01 10:55:13 +0200840 txdata->enabled = 0; /* no Tx can be in progress or start anew */
841 spin_unlock_bh(&txdata->lock);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200842 /* make sure NAPI won't touch this vring */
Vladimir Kondratiev9419b6a2014-12-23 09:47:14 +0200843 if (test_bit(wil_status_napi_en, wil->status))
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200844 napi_synchronize(&wil->napi_tx);
845
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800846 wil_vring_free(wil, vring, 1);
Vladimir Kondratiev3a124ed2014-12-23 09:47:04 +0200847 memset(txdata, 0, sizeof(*txdata));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800848}
849
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200850static struct vring *wil_find_tx_ucast(struct wil6210_priv *wil,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800851 struct sk_buff *skb)
852{
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200853 int i;
854 struct ethhdr *eth = (void *)skb->data;
855 int cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800856
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200857 if (cid < 0)
858 return NULL;
859
860 /* TODO: fix for multiple TID */
861 for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300862 if (!wil->vring_tx_data[i].dot1x_open &&
863 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
864 continue;
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200865 if (wil->vring2cid_tid[i][0] == cid) {
866 struct vring *v = &wil->vring_tx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +0300867
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200868 wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
869 __func__, eth->h_dest, i);
870 if (v->va) {
871 return v;
872 } else {
873 wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
874 return NULL;
875 }
876 }
877 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800878
879 return NULL;
880}
881
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200882static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
883 struct sk_buff *skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200884
885static struct vring *wil_find_tx_vring_sta(struct wil6210_priv *wil,
886 struct sk_buff *skb)
887{
888 struct vring *v;
889 int i;
890 u8 cid;
891
892 /* In the STA mode, it is expected to have only 1 VRING
893 * for the AP we connected to.
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300894 * find 1-st vring eligible for this skb and use it.
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200895 */
896 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
897 v = &wil->vring_tx[i];
898 if (!v->va)
899 continue;
900
901 cid = wil->vring2cid_tid[i][0];
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200902 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
903 continue;
904
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300905 if (!wil->vring_tx_data[i].dot1x_open &&
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200906 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300907 continue;
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +0200908
909 wil_dbg_txrx(wil, "Tx -> ring %d\n", i);
910
911 return v;
912 }
913
914 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
915
916 return NULL;
917}
918
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200919/* Use one of 2 strategies:
920 *
921 * 1. New (real broadcast):
922 * use dedicated broadcast vring
923 * 2. Old (pseudo-DMS):
924 * Find 1-st vring and return it;
925 * duplicate skb and send it to other active vrings;
926 * in all cases override dest address to unicast peer's address
927 * Use old strategy when new is not supported yet:
928 * - for PBSS
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200929 */
930static struct vring *wil_find_tx_bcast_1(struct wil6210_priv *wil,
931 struct sk_buff *skb)
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200932{
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200933 struct vring *v;
934 int i = wil->bcast_vring;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200935
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +0200936 if (i < 0)
937 return NULL;
938 v = &wil->vring_tx[i];
939 if (!v->va)
940 return NULL;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300941 if (!wil->vring_tx_data[i].dot1x_open &&
942 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
943 return NULL;
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200944
945 return v;
946}
947
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200948static void wil_set_da_for_vring(struct wil6210_priv *wil,
949 struct sk_buff *skb, int vring_index)
950{
951 struct ethhdr *eth = (void *)skb->data;
952 int cid = wil->vring2cid_tid[vring_index][0];
953
954 ether_addr_copy(eth->h_dest, wil->sta[cid].addr);
955}
956
957static struct vring *wil_find_tx_bcast_2(struct wil6210_priv *wil,
958 struct sk_buff *skb)
959{
960 struct vring *v, *v2;
961 struct sk_buff *skb2;
962 int i;
963 u8 cid;
964 struct ethhdr *eth = (void *)skb->data;
965 char *src = eth->h_source;
966
967 /* find 1-st vring eligible for data */
968 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
969 v = &wil->vring_tx[i];
970 if (!v->va)
971 continue;
972
973 cid = wil->vring2cid_tid[i][0];
974 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
975 continue;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +0300976 if (!wil->vring_tx_data[i].dot1x_open &&
977 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev70812422015-03-15 16:00:24 +0200978 continue;
979
980 /* don't Tx back to source when re-routing Rx->Tx at the AP */
981 if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
982 continue;
983
984 goto found;
985 }
986
987 wil_dbg_txrx(wil, "Tx while no vrings active?\n");
988
989 return NULL;
990
991found:
992 wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
993 wil_set_da_for_vring(wil, skb, i);
994
995 /* find other active vrings and duplicate skb for each */
996 for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
997 v2 = &wil->vring_tx[i];
998 if (!v2->va)
999 continue;
1000 cid = wil->vring2cid_tid[i][0];
1001 if (cid >= WIL6210_MAX_CID) /* skip BCAST */
1002 continue;
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001003 if (!wil->vring_tx_data[i].dot1x_open &&
1004 (skb->protocol != cpu_to_be16(ETH_P_PAE)))
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001005 continue;
1006
1007 if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
1008 continue;
1009
1010 skb2 = skb_copy(skb, GFP_ATOMIC);
1011 if (skb2) {
1012 wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
1013 wil_set_da_for_vring(wil, skb2, i);
1014 wil_tx_vring(wil, v2, skb2);
1015 } else {
1016 wil_err(wil, "skb_copy failed\n");
1017 }
1018 }
1019
1020 return v;
1021}
1022
1023static struct vring *wil_find_tx_bcast(struct wil6210_priv *wil,
1024 struct sk_buff *skb)
1025{
1026 struct wireless_dev *wdev = wil->wdev;
1027
1028 if (wdev->iftype != NL80211_IFTYPE_AP)
1029 return wil_find_tx_bcast_2(wil, skb);
1030
Vladimir Kondratiev70812422015-03-15 16:00:24 +02001031 return wil_find_tx_bcast_1(wil, skb);
1032}
1033
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001034static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
1035 int vring_index)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001036{
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001037 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001038 d->dma.ip_length = 0;
1039 /* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
1040 d->dma.b11 = 0/*14 | BIT(7)*/;
1041 d->dma.error = 0;
1042 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001043 d->dma.length = cpu_to_le16((u16)len);
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001044 d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001045 d->mac.d[0] = 0;
1046 d->mac.d[1] = 0;
1047 d->mac.d[2] = 0;
1048 d->mac.ucode_cmd = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001049 /* translation type: 0 - bypass; 1 - 802.3; 2 - native wifi */
1050 d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
1051 (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
1052
1053 return 0;
1054}
1055
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001056static inline
1057void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
1058{
1059 d->mac.d[2] |= ((nr_frags + 1) <<
1060 MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
1061}
1062
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001063static int wil_tx_desc_offload_cksum_set(struct wil6210_priv *wil,
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001064 struct vring_tx_desc *d,
1065 struct sk_buff *skb)
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001066{
1067 int protocol;
1068
1069 if (skb->ip_summed != CHECKSUM_PARTIAL)
1070 return 0;
1071
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +02001072 d->dma.b11 = ETH_HLEN; /* MAC header length */
1073
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001074 switch (skb->protocol) {
1075 case cpu_to_be16(ETH_P_IP):
1076 protocol = ip_hdr(skb)->protocol;
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +02001077 d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001078 break;
1079 case cpu_to_be16(ETH_P_IPV6):
1080 protocol = ipv6_hdr(skb)->nexthdr;
1081 break;
1082 default:
1083 return -EINVAL;
1084 }
1085
1086 switch (protocol) {
1087 case IPPROTO_TCP:
1088 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
1089 /* L4 header len: TCP header length */
1090 d->dma.d0 |=
1091 (tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1092 break;
1093 case IPPROTO_UDP:
1094 /* L4 header len: UDP header length */
1095 d->dma.d0 |=
1096 (sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
1097 break;
1098 default:
1099 return -EINVAL;
1100 }
1101
1102 d->dma.ip_length = skb_network_header_len(skb);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001103 /* Enable TCP/UDP checksum */
1104 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
1105 /* Calculate pseudo-header */
1106 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
1107
1108 return 0;
1109}
1110
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001111static int __wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1112 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001113{
1114 struct device *dev = wil_to_dev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001115 struct vring_tx_desc dd, *d = &dd;
1116 volatile struct vring_tx_desc *_d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001117 u32 swhead = vring->swhead;
1118 int avail = wil_vring_avail_tx(vring);
1119 int nr_frags = skb_shinfo(skb)->nr_frags;
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001120 uint f = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001121 int vring_index = vring - wil->vring_tx;
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001122 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001123 uint i = swhead;
1124 dma_addr_t pa;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001125 int used;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001126 bool mcast = (vring_index == wil->bcast_vring);
1127 uint len = skb_headlen(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001128
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001129 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001130
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001131 if (unlikely(!txdata->enabled))
1132 return -EINVAL;
1133
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001134 if (unlikely(avail < 1 + nr_frags)) {
Vladimir Kondratiev70801e12014-12-01 15:36:03 +02001135 wil_err_ratelimited(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001136 "Tx ring[%2d] full. No space for %d fragments\n",
1137 vring_index, 1 + nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001138 return -ENOMEM;
1139 }
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001140 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001141
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001142 pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001143
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001144 wil_dbg_txrx(wil, "Tx[%2d] skb %d bytes 0x%p -> %pad\n", vring_index,
1145 skb_headlen(skb), skb->data, &pa);
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001146 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001147 skb->data, skb_headlen(skb), false);
1148
1149 if (unlikely(dma_mapping_error(dev, pa)))
1150 return -EINVAL;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001151 vring->ctx[i].mapped_as = wil_mapped_as_single;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001152 /* 1-st segment */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001153 wil_tx_desc_map(d, pa, len, vring_index);
1154 if (unlikely(mcast)) {
1155 d->mac.d[0] |= BIT(MAC_CFG_DESC_TX_0_MCS_EN_POS); /* MCS 0 */
Vladimir Kondratiev230d8442015-04-30 16:25:10 +03001156 if (unlikely(len > WIL_BCAST_MCS0_LIMIT)) /* set MCS 1 */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001157 d->mac.d[0] |= (1 << MAC_CFG_DESC_TX_0_MCS_INDEX_POS);
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001158 }
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001159 /* Process TCP/UDP checksum offloading */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001160 if (unlikely(wil_tx_desc_offload_cksum_set(wil, d, skb))) {
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001161 wil_err(wil, "Tx[%2d] Failed to set cksum, drop packet\n",
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001162 vring_index);
1163 goto dma_error;
1164 }
1165
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001166 vring->ctx[i].nr_frags = nr_frags;
1167 wil_tx_desc_set_nr_frags(d, nr_frags);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001168
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001169 /* middle segments */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +03001170 for (; f < nr_frags; f++) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001171 const struct skb_frag_struct *frag =
1172 &skb_shinfo(skb)->frags[f];
1173 int len = skb_frag_size(frag);
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001174
Vladimir Kondratieve59d16c2015-02-01 10:55:12 +02001175 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001176 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1177 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1178 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001179 i = (swhead + f + 1) % vring->size;
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001180 _d = &vring->va[i].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001181 pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001182 DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001183 if (unlikely(dma_mapping_error(dev, pa)))
1184 goto dma_error;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001185 vring->ctx[i].mapped_as = wil_mapped_as_page;
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +03001186 wil_tx_desc_map(d, pa, len, vring_index);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001187 /* no need to check return code -
1188 * if it succeeded for 1-st descriptor,
1189 * it will succeed here too
1190 */
1191 wil_tx_desc_offload_cksum_set(wil, d, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001192 }
1193 /* for the last seg only */
1194 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
Kirshenbaum Erez668b2bb2013-06-23 12:59:35 +03001195 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001196 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001197 *_d = *d;
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001198 wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
1199 wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
1200 (const void *)d, sizeof(*d), false);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001201
Vladimir Kondratiev6cdadd42013-07-11 18:03:41 +03001202 /* hold reference to skb
1203 * to prevent skb release before accounting
1204 * in case of immediate "tx done"
1205 */
1206 vring->ctx[i].skb = skb_get(skb);
1207
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001208 /* performance monitoring */
1209 used = wil_vring_used_tx(vring);
1210 if (wil_val_in_range(vring_idle_trsh,
1211 used, used + nr_frags + 1)) {
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001212 txdata->idle += get_cycles() - txdata->last_idle;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001213 wil_dbg_txrx(wil, "Ring[%2d] not idle %d -> %d\n",
1214 vring_index, used, used + nr_frags + 1);
1215 }
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001216
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001217 /* advance swhead */
1218 wil_vring_advance_head(vring, nr_frags + 1);
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001219 wil_dbg_txrx(wil, "Tx[%2d] swhead %d -> %d\n", vring_index, swhead,
1220 vring->swhead);
Vladimir Kondratiev98658092013-05-12 14:43:35 +03001221 trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001222 iowrite32(vring->swhead, wil->csr + HOSTADDR(vring->hwtail));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001223
1224 return 0;
1225 dma_error:
1226 /* unmap what we have mapped */
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001227 nr_frags = f + 1; /* frags mapped + one for skb head */
1228 for (f = 0; f < nr_frags; f++) {
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001229 struct wil_ctx *ctx;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001230
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001231 i = (swhead + f) % vring->size;
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +03001232 ctx = &vring->ctx[i];
Vladimir Kondratiev8fe59622014-09-10 16:34:34 +03001233 _d = &vring->va[i].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001234 *d = *_d;
1235 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001236 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001237
1238 if (ctx->skb)
1239 dev_kfree_skb_any(ctx->skb);
1240
1241 memset(ctx, 0, sizeof(*ctx));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001242 }
1243
1244 return -EINVAL;
1245}
1246
Vladimir Kondratiev5933a062015-02-01 10:55:13 +02001247static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
1248 struct sk_buff *skb)
1249{
1250 int vring_index = vring - wil->vring_tx;
1251 struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1252 int rc;
1253
1254 spin_lock(&txdata->lock);
1255 rc = __wil_tx_vring(wil, vring, skb);
1256 spin_unlock(&txdata->lock);
1257 return rc;
1258}
1259
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001260netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1261{
1262 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +02001263 struct ethhdr *eth = (void *)skb->data;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001264 bool bcast = is_multicast_ether_addr(eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001265 struct vring *vring;
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001266 static bool pr_once_fw;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001267 int rc;
1268
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001269 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001270 if (unlikely(!test_bit(wil_status_fwready, wil->status))) {
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001271 if (!pr_once_fw) {
1272 wil_err(wil, "FW not ready\n");
1273 pr_once_fw = true;
1274 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001275 goto drop;
1276 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001277 if (unlikely(!test_bit(wil_status_fwconnected, wil->status))) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001278 wil_err(wil, "FW not connected\n");
1279 goto drop;
1280 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001281 if (unlikely(wil->wdev->iftype == NL80211_IFTYPE_MONITOR)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001282 wil_err(wil, "Xmit in monitor mode not supported\n");
1283 goto drop;
1284 }
Vladimir Kondratievaa27dea2014-03-17 15:34:11 +02001285 pr_once_fw = false;
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001286
1287 /* find vring */
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001288 if (wil->wdev->iftype == NL80211_IFTYPE_STATION) {
1289 /* in STA mode (ESS), all to same VRING */
1290 vring = wil_find_tx_vring_sta(wil, skb);
1291 } else { /* direct communication, find matching VRING */
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001292 vring = bcast ? wil_find_tx_bcast(wil, skb) :
1293 wil_find_tx_ucast(wil, skb);
Vladimir Kondratiev54ed90a2014-12-23 09:47:15 +02001294 }
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001295 if (unlikely(!vring)) {
Vladimir Kondratiev5aed1392014-06-16 19:37:15 +03001296 wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001297 goto drop;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001298 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +03001299 /* set up vring entry */
1300 rc = wil_tx_vring(wil, vring, skb);
1301
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001302 /* do we still have enough room in the vring? */
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001303 if (unlikely(wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring))) {
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001304 netif_tx_stop_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001305 wil_dbg_txrx(wil, "netif_tx_stop : ring full\n");
1306 }
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001307
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001308 switch (rc) {
1309 case 0:
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001310 /* statistics will be updated on the tx_complete */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001311 dev_kfree_skb_any(skb);
1312 return NETDEV_TX_OK;
1313 case -ENOMEM:
1314 return NETDEV_TX_BUSY;
1315 default:
Vladimir Kondratievafda8bb2013-01-28 18:31:07 +02001316 break; /* goto drop; */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001317 }
1318 drop:
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001319 ndev->stats.tx_dropped++;
1320 dev_kfree_skb_any(skb);
1321
1322 return NET_XMIT_DROP;
1323}
1324
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001325static inline bool wil_need_txstat(struct sk_buff *skb)
1326{
1327 struct ethhdr *eth = (void *)skb->data;
1328
1329 return is_unicast_ether_addr(eth->h_dest) && skb->sk &&
1330 (skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS);
1331}
1332
1333static inline void wil_consume_skb(struct sk_buff *skb, bool acked)
1334{
1335 if (unlikely(wil_need_txstat(skb)))
1336 skb_complete_wifi_ack(skb, acked);
1337 else
1338 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb);
1339}
1340
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001341/**
1342 * Clean up transmitted skb's from the Tx VRING
1343 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001344 * Return number of descriptors cleared
1345 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001346 * Safe to call from IRQ
1347 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001348int wil_tx_complete(struct wil6210_priv *wil, int ringid)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001349{
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001350 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001351 struct device *dev = wil_to_dev(wil);
1352 struct vring *vring = &wil->vring_tx[ringid];
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001353 struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001354 int done = 0;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001355 int cid = wil->vring2cid_tid[ringid][0];
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001356 struct wil_net_stats *stats = NULL;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001357 volatile struct vring_tx_desc *_d;
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001358 int used_before_complete;
1359 int used_new;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001360
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001361 if (unlikely(!vring->va)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001362 wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001363 return 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001364 }
1365
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001366 if (unlikely(!txdata->enabled)) {
Vladimir Kondratiev097638a2014-03-17 15:34:25 +02001367 wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
1368 return 0;
1369 }
1370
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001371 wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001372
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001373 used_before_complete = wil_vring_used_tx(vring);
1374
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001375 if (cid < WIL6210_MAX_CID)
1376 stats = &wil->sta[cid].stats;
1377
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001378 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001379 int new_swtail;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001380 struct wil_ctx *ctx = &vring->ctx[vring->swtail];
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001381 /**
1382 * For the fragmented skb, HW will set DU bit only for the
1383 * last fragment. look for it
1384 */
1385 int lf = (vring->swtail + ctx->nr_frags) % vring->size;
1386 /* TODO: check we are not past head */
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001387
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001388 _d = &vring->va[lf].tx;
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001389 if (unlikely(!(_d->dma.status & TX_DMA_STATUS_DU)))
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001390 break;
1391
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001392 new_swtail = (lf + 1) % vring->size;
1393 while (vring->swtail != new_swtail) {
1394 struct vring_tx_desc dd, *d = &dd;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001395 u16 dmalen;
Vladimir Kondratiev76dfa4b2014-07-14 09:49:39 +03001396 struct sk_buff *skb;
1397
1398 ctx = &vring->ctx[vring->swtail];
1399 skb = ctx->skb;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001400 _d = &vring->va[vring->swtail].tx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001401
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001402 *d = *_d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001403
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001404 dmalen = le16_to_cpu(d->dma.length);
1405 trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
1406 d->dma.error);
1407 wil_dbg_txrx(wil,
Vladimir Kondratiev5b29c572015-02-01 10:55:14 +02001408 "TxC[%2d][%3d] : %d bytes, status 0x%02x err 0x%02x\n",
1409 ringid, vring->swtail, dmalen,
1410 d->dma.status, d->dma.error);
1411 wil_hex_dump_txrx("TxCD ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001412 (const void *)d, sizeof(*d), false);
1413
Vladimir Kondratiev2232abd2014-03-17 15:34:09 +02001414 wil_txdesc_unmap(dev, d, ctx);
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001415
1416 if (skb) {
Vladimir Kondratiev33c477f2015-02-15 14:02:33 +02001417 if (likely(d->dma.error == 0)) {
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001418 ndev->stats.tx_packets++;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001419 ndev->stats.tx_bytes += skb->len;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001420 if (stats) {
1421 stats->tx_packets++;
1422 stats->tx_bytes += skb->len;
1423 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001424 } else {
1425 ndev->stats.tx_errors++;
Vladimir Kondratiev41d6b092015-03-15 16:00:23 +02001426 if (stats)
1427 stats->tx_errors++;
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001428 }
Vladimir Kondratiev713c8a22015-01-25 10:52:49 +02001429 wil_consume_skb(skb, d->dma.error == 0);
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001430 }
Vladimir Kondratievc2366582014-03-17 15:34:08 +02001431 memset(ctx, 0, sizeof(*ctx));
1432 /* There is no need to touch HW descriptor:
1433 * - ststus bit TX_DMA_STATUS_DU is set by design,
1434 * so hardware will not try to process this desc.,
1435 * - rest of descriptor will be initialized on Tx.
1436 */
1437 vring->swtail = wil_vring_next_tail(vring);
1438 done++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001439 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001440 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001441
Vladimir Shulman0436fd92015-02-15 14:02:34 +02001442 /* performance monitoring */
1443 used_new = wil_vring_used_tx(vring);
1444 if (wil_val_in_range(vring_idle_trsh,
1445 used_new, used_before_complete)) {
1446 wil_dbg_txrx(wil, "Ring[%2d] idle %d -> %d\n",
1447 ringid, used_before_complete, used_new);
Vladimir Kondratiev7c0acf82014-06-16 19:37:05 +03001448 txdata->last_idle = get_cycles();
1449 }
Vladimir Kondratiev67c3e1b2014-06-16 19:37:04 +03001450
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001451 if (wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring)) {
1452 wil_dbg_txrx(wil, "netif_tx_wake : ring not full\n");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001453 netif_tx_wake_all_queues(wil_to_ndev(wil));
Vladimir Kondratiev55f8f682014-06-16 19:37:23 +03001454 }
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001455
1456 return done;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001457}