blob: 7afaa5e5c42e438f7bb1fcd07469e4ca67cd37e0 [file] [log] [blame]
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001/*
2 * Copyright (c) 2012 Qualcomm Atheros, Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080017#include <linux/etherdevice.h>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080018#include <net/ieee80211_radiotap.h>
19#include <linux/if_arp.h>
20#include <linux/moduleparam.h>
Kirshenbaum Erez504937d2013-07-21 11:34:37 +030021#include <linux/ip.h>
22#include <linux/ipv6.h>
23#include <net/ipv6.h>
Vladimir Kondratiev0786dc42014-01-14 20:31:26 +020024#include <linux/prefetch.h>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080025
26#include "wil6210.h"
27#include "wmi.h"
28#include "txrx.h"
Vladimir Kondratiev98658092013-05-12 14:43:35 +030029#include "trace.h"
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080030
31static bool rtap_include_phy_info;
32module_param(rtap_include_phy_info, bool, S_IRUGO);
33MODULE_PARM_DESC(rtap_include_phy_info,
34 " Include PHY info in the radiotap header, default - no");
35
36static inline int wil_vring_is_empty(struct vring *vring)
37{
38 return vring->swhead == vring->swtail;
39}
40
41static inline u32 wil_vring_next_tail(struct vring *vring)
42{
43 return (vring->swtail + 1) % vring->size;
44}
45
46static inline void wil_vring_advance_head(struct vring *vring, int n)
47{
48 vring->swhead = (vring->swhead + n) % vring->size;
49}
50
51static inline int wil_vring_is_full(struct vring *vring)
52{
53 return wil_vring_next_tail(vring) == vring->swhead;
54}
55/*
56 * Available space in Tx Vring
57 */
58static inline int wil_vring_avail_tx(struct vring *vring)
59{
60 u32 swhead = vring->swhead;
61 u32 swtail = vring->swtail;
62 int used = (vring->size + swhead - swtail) % vring->size;
63
64 return vring->size - used - 1;
65}
66
67static int wil_vring_alloc(struct wil6210_priv *wil, struct vring *vring)
68{
69 struct device *dev = wil_to_dev(wil);
70 size_t sz = vring->size * sizeof(vring->va[0]);
71 uint i;
72
73 BUILD_BUG_ON(sizeof(vring->va[0]) != 32);
74
75 vring->swhead = 0;
76 vring->swtail = 0;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +030077 vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080078 if (!vring->ctx) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080079 vring->va = NULL;
80 return -ENOMEM;
81 }
82 /*
83 * vring->va should be aligned on its size rounded up to power of 2
84 * This is granted by the dma_alloc_coherent
85 */
86 vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
87 if (!vring->va) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080088 kfree(vring->ctx);
89 vring->ctx = NULL;
90 return -ENOMEM;
91 }
92 /* initially, all descriptors are SW owned
93 * For Tx and Rx, ownership bit is at the same location, thus
94 * we can use any
95 */
96 for (i = 0; i < vring->size; i++) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +030097 volatile struct vring_tx_desc *_d = &(vring->va[i].tx);
98 _d->dma.status = TX_DMA_STATUS_DU;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080099 }
100
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200101 wil_dbg_misc(wil, "vring[%d] 0x%p:0x%016llx 0x%p\n", vring->size,
Vladimir Kondratiev2057ebb2013-01-28 18:30:58 +0200102 vring->va, (unsigned long long)vring->pa, vring->ctx);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800103
104 return 0;
105}
106
107static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
108 int tx)
109{
110 struct device *dev = wil_to_dev(wil);
111 size_t sz = vring->size * sizeof(vring->va[0]);
112
113 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300114 dma_addr_t pa;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300115 u16 dmalen;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300116 struct wil_ctx *ctx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300117
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800118 if (tx) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300119 struct vring_tx_desc dd, *d = &dd;
120 volatile struct vring_tx_desc *_d =
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800121 &vring->va[vring->swtail].tx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300122
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300123 ctx = &vring->ctx[vring->swtail];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300124 *d = *_d;
125 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300126 dmalen = le16_to_cpu(d->dma.length);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300127 if (vring->ctx[vring->swtail].mapped_as_page) {
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300128 dma_unmap_page(dev, pa, dmalen,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800129 DMA_TO_DEVICE);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300130 } else {
131 dma_unmap_single(dev, pa, dmalen,
132 DMA_TO_DEVICE);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800133 }
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300134 if (ctx->skb)
135 dev_kfree_skb_any(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800136 vring->swtail = wil_vring_next_tail(vring);
137 } else { /* rx */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300138 struct vring_rx_desc dd, *d = &dd;
139 volatile struct vring_rx_desc *_d =
Vladimir Kondratiev4d1ac072013-07-11 18:03:38 +0300140 &vring->va[vring->swhead].rx;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300141
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300142 ctx = &vring->ctx[vring->swhead];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300143 *d = *_d;
144 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300145 dmalen = le16_to_cpu(d->dma.length);
146 dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300147 kfree_skb(ctx->skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800148 wil_vring_advance_head(vring, 1);
149 }
150 }
151 dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
152 kfree(vring->ctx);
153 vring->pa = 0;
154 vring->va = NULL;
155 vring->ctx = NULL;
156}
157
158/**
159 * Allocate one skb for Rx VRING
160 *
161 * Safe to call from IRQ
162 */
163static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
164 u32 i, int headroom)
165{
166 struct device *dev = wil_to_dev(wil);
167 unsigned int sz = RX_BUF_LEN;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300168 struct vring_rx_desc dd, *d = &dd;
169 volatile struct vring_rx_desc *_d = &(vring->va[i].rx);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800170 dma_addr_t pa;
171
172 /* TODO align */
173 struct sk_buff *skb = dev_alloc_skb(sz + headroom);
174 if (unlikely(!skb))
175 return -ENOMEM;
176
177 skb_reserve(skb, headroom);
178 skb_put(skb, sz);
179
180 pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
181 if (unlikely(dma_mapping_error(dev, pa))) {
182 kfree_skb(skb);
183 return -ENOMEM;
184 }
185
186 d->dma.d0 = BIT(9) | RX_DMA_D0_CMD_DMA_IT;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300187 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800188 /* ip_length don't care */
189 /* b11 don't care */
190 /* error don't care */
191 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300192 d->dma.length = cpu_to_le16(sz);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300193 *_d = *d;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300194 vring->ctx[i].skb = skb;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800195
196 return 0;
197}
198
199/**
200 * Adds radiotap header
201 *
202 * Any error indicated as "Bad FCS"
203 *
204 * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
205 * - Rx descriptor: 32 bytes
206 * - Phy info
207 */
208static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300209 struct sk_buff *skb)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800210{
211 struct wireless_dev *wdev = wil->wdev;
212 struct wil6210_rtap {
213 struct ieee80211_radiotap_header rthdr;
214 /* fields should be in the order of bits in rthdr.it_present */
215 /* flags */
216 u8 flags;
217 /* channel */
218 __le16 chnl_freq __aligned(2);
219 __le16 chnl_flags;
220 /* MCS */
221 u8 mcs_present;
222 u8 mcs_flags;
223 u8 mcs_index;
224 } __packed;
225 struct wil6210_rtap_vendor {
226 struct wil6210_rtap rtap;
227 /* vendor */
228 u8 vendor_oui[3] __aligned(2);
229 u8 vendor_ns;
230 __le16 vendor_skip;
231 u8 vendor_data[0];
232 } __packed;
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300233 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800234 struct wil6210_rtap_vendor *rtap_vendor;
235 int rtap_len = sizeof(struct wil6210_rtap);
236 int phy_length = 0; /* phy info header size, bytes */
237 static char phy_data[128];
238 struct ieee80211_channel *ch = wdev->preset_chandef.chan;
239
240 if (rtap_include_phy_info) {
241 rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
242 /* calculate additional length */
243 if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
244 /**
245 * PHY info starts from 8-byte boundary
246 * there are 8-byte lines, last line may be partially
247 * written (HW bug), thus FW configures for last line
248 * to be excessive. Driver skips this last line.
249 */
250 int len = min_t(int, 8 + sizeof(phy_data),
251 wil_rxdesc_phy_length(d));
252 if (len > 8) {
253 void *p = skb_tail_pointer(skb);
254 void *pa = PTR_ALIGN(p, 8);
255 if (skb_tailroom(skb) >= len + (pa - p)) {
256 phy_length = len - 8;
257 memcpy(phy_data, pa, phy_length);
258 }
259 }
260 }
261 rtap_len += phy_length;
262 }
263
264 if (skb_headroom(skb) < rtap_len &&
265 pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
266 wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
267 return;
268 }
269
270 rtap_vendor = (void *)skb_push(skb, rtap_len);
271 memset(rtap_vendor, 0, rtap_len);
272
273 rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
274 rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
275 rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
276 (1 << IEEE80211_RADIOTAP_FLAGS) |
277 (1 << IEEE80211_RADIOTAP_CHANNEL) |
278 (1 << IEEE80211_RADIOTAP_MCS));
279 if (d->dma.status & RX_DMA_STATUS_ERROR)
280 rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;
281
282 rtap_vendor->rtap.chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
283 rtap_vendor->rtap.chnl_flags = cpu_to_le16(0);
284
285 rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
286 rtap_vendor->rtap.mcs_flags = 0;
287 rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);
288
289 if (rtap_include_phy_info) {
290 rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
291 IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
292 /* OUI for Wilocity 04:ce:14 */
293 rtap_vendor->vendor_oui[0] = 0x04;
294 rtap_vendor->vendor_oui[1] = 0xce;
295 rtap_vendor->vendor_oui[2] = 0x14;
296 rtap_vendor->vendor_ns = 1;
297 /* Rx descriptor + PHY data */
298 rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
299 phy_length);
300 memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
301 memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
302 phy_length);
303 }
304}
305
306/*
307 * Fast swap in place between 2 registers
308 */
309static void wil_swap_u16(u16 *a, u16 *b)
310{
311 *a ^= *b;
312 *b ^= *a;
313 *a ^= *b;
314}
315
316static void wil_swap_ethaddr(void *data)
317{
318 struct ethhdr *eth = data;
319 u16 *s = (u16 *)eth->h_source;
320 u16 *d = (u16 *)eth->h_dest;
321
322 wil_swap_u16(s++, d++);
323 wil_swap_u16(s++, d++);
324 wil_swap_u16(s, d);
325}
326
327/**
328 * reap 1 frame from @swhead
329 *
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300330 * Rx descriptor copied to skb->cb
331 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800332 * Safe to call from IRQ
333 */
334static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
335 struct vring *vring)
336{
337 struct device *dev = wil_to_dev(wil);
338 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300339 volatile struct vring_rx_desc *_d;
340 struct vring_rx_desc *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800341 struct sk_buff *skb;
342 dma_addr_t pa;
343 unsigned int sz = RX_BUF_LEN;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300344 u16 dmalen;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800345 u8 ftype;
346 u8 ds_bits;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200347 int cid;
348 struct wil_net_stats *stats;
349
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800350
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300351 BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));
352
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800353 if (wil_vring_is_empty(vring))
354 return NULL;
355
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300356 _d = &(vring->va[vring->swhead].rx);
357 if (!(_d->dma.status & RX_DMA_STATUS_DU)) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800358 /* it is not error, we just reached end of Rx done area */
359 return NULL;
360 }
361
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300362 skb = vring->ctx[vring->swhead].skb;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300363 d = wil_skb_rxdesc(skb);
364 *d = *_d;
365 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300366 vring->ctx[vring->swhead].skb = NULL;
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300367 wil_vring_advance_head(vring, 1);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300368
369 dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
370 dmalen = le16_to_cpu(d->dma.length);
371
372 trace_wil6210_rx(vring->swhead, d);
373 wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", vring->swhead, dmalen);
374 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_NONE, 32, 4,
375 (const void *)d, sizeof(*d), false);
376
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300377 if (dmalen > sz) {
378 wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
Wei Yongjun110dea02013-05-23 17:10:43 +0800379 kfree_skb(skb);
Vladimir Kondratieve2700452013-05-12 14:43:33 +0300380 return NULL;
381 }
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300382 skb_trim(skb, dmalen);
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300383
Vladimir Kondratiev1cbbcb02014-01-08 11:50:49 +0200384 prefetch(skb->data);
385
Vladimir Kondratievc0d37712013-05-12 14:43:34 +0300386 wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
387 skb->data, skb_headlen(skb), false);
388
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200389 cid = wil_rxdesc_cid(d);
390 stats = &wil->sta[cid].stats;
391 stats->last_mcs_rx = wil_rxdesc_mcs(d);
392 wil->stats.last_mcs_rx = stats->last_mcs_rx;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800393
394 /* use radiotap header only if required */
395 if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300396 wil_rx_add_radiotap_header(wil, skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800397
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800398 /* no extra checks if in sniffer mode */
399 if (ndev->type != ARPHRD_ETHER)
400 return skb;
401 /*
402 * Non-data frames may be delivered through Rx DMA channel (ex: BAR)
403 * Driver should recognize it by frame type, that is found
404 * in Rx descriptor. If type is not data, it is 802.11 frame as is
405 */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300406 ftype = wil_rxdesc_ftype(d) << 2;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800407 if (ftype != IEEE80211_FTYPE_DATA) {
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200408 wil_dbg_txrx(wil, "Non-data frame ftype 0x%08x\n", ftype);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800409 /* TODO: process it */
410 kfree_skb(skb);
411 return NULL;
412 }
413
414 if (skb->len < ETH_HLEN) {
415 wil_err(wil, "Short frame, len = %d\n", skb->len);
416 /* TODO: process it (i.e. BAR) */
417 kfree_skb(skb);
418 return NULL;
419 }
420
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300421 /* L4 IDENT is on when HW calculated checksum, check status
422 * and in case of error drop the packet
423 * higher stack layers will handle retransmission (if required)
424 */
425 if (d->dma.status & RX_DMA_STATUS_L4_IDENT) {
426 /* L4 protocol identified, csum calculated */
Vladimir Kondratiev4a68ab102013-08-13 15:25:32 +0300427 if ((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0)
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300428 skb->ip_summed = CHECKSUM_UNNECESSARY;
Vladimir Kondratiev4a68ab102013-08-13 15:25:32 +0300429 /* If HW reports bad checksum, let IP stack re-check it
430 * For example, HW don't understand Microsoft IP stack that
431 * mis-calculates TCP checksum - if it should be 0x0,
432 * it writes 0xffff in violation of RFC 1624
433 */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300434 }
435
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300436 ds_bits = wil_rxdesc_ds_bits(d);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800437 if (ds_bits == 1) {
438 /*
439 * HW bug - in ToDS mode, i.e. Rx on AP side,
440 * addresses get swapped
441 */
442 wil_swap_ethaddr(skb->data);
443 }
444
445 return skb;
446}
447
448/**
449 * allocate and fill up to @count buffers in rx ring
450 * buffers posted at @swtail
451 */
452static int wil_rx_refill(struct wil6210_priv *wil, int count)
453{
454 struct net_device *ndev = wil_to_ndev(wil);
455 struct vring *v = &wil->vring_rx;
456 u32 next_tail;
457 int rc = 0;
458 int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
459 WIL6210_RTAP_SIZE : 0;
460
461 for (; next_tail = wil_vring_next_tail(v),
462 (next_tail != v->swhead) && (count-- > 0);
463 v->swtail = next_tail) {
464 rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
465 if (rc) {
466 wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
467 rc, v->swtail);
468 break;
469 }
470 }
471 iowrite32(v->swtail, wil->csr + HOSTADDR(v->hwtail));
472
473 return rc;
474}
475
476/*
477 * Pass Rx packet to the netif. Update statistics.
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300478 * Called in softirq context (NAPI poll).
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800479 */
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200480void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800481{
482 int rc;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200483 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800484 unsigned int len = skb->len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200485 struct vring_rx_desc *d = wil_skb_rxdesc(skb);
486 int cid = wil_rxdesc_cid(d);
487 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800488
Vladimir Kondratiev241804c2013-01-28 18:31:02 +0200489 skb_orphan(skb);
490
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300491 rc = netif_receive_skb(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800492
493 if (likely(rc == NET_RX_SUCCESS)) {
494 ndev->stats.rx_packets++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200495 stats->rx_packets++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800496 ndev->stats.rx_bytes += len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200497 stats->rx_bytes += len;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800498
499 } else {
500 ndev->stats.rx_dropped++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200501 stats->rx_dropped++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800502 }
503}
504
505/**
506 * Proceed all completed skb's from Rx VRING
507 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300508 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800509 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300510void wil_rx_handle(struct wil6210_priv *wil, int *quota)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800511{
512 struct net_device *ndev = wil_to_ndev(wil);
513 struct vring *v = &wil->vring_rx;
514 struct sk_buff *skb;
515
516 if (!v->va) {
517 wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
518 return;
519 }
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200520 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300521 while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
522 (*quota)--;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800523
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800524 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
525 skb->dev = ndev;
526 skb_reset_mac_header(skb);
527 skb->ip_summed = CHECKSUM_UNNECESSARY;
528 skb->pkt_type = PACKET_OTHERHOST;
529 skb->protocol = htons(ETH_P_802_2);
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200530 wil_netif_rx_any(skb, ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800531 } else {
Vladimir Kondratiev0bbc4ad2014-02-27 16:20:55 +0200532 struct ethhdr *eth = (void *)skb->data;
533
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800534 skb->protocol = eth_type_trans(skb, ndev);
Vladimir Kondratiev0bbc4ad2014-02-27 16:20:55 +0200535
536 if (is_unicast_ether_addr(eth->h_dest))
537 wil_rx_reorder(wil, skb);
538 else
539 wil_netif_rx_any(skb, ndev);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800540 }
541
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800542 }
543 wil_rx_refill(wil, v->size);
544}
545
546int wil_rx_init(struct wil6210_priv *wil)
547{
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800548 struct vring *vring = &wil->vring_rx;
549 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800550
551 vring->size = WIL6210_RX_RING_SIZE;
552 rc = wil_vring_alloc(wil, vring);
553 if (rc)
554 return rc;
555
Vladimir Kondratiev47e19af2013-01-28 18:30:59 +0200556 rc = wmi_rx_chain_add(wil, vring);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800557 if (rc)
558 goto err_free;
559
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800560 rc = wil_rx_refill(wil, vring->size);
561 if (rc)
562 goto err_free;
563
564 return 0;
565 err_free:
566 wil_vring_free(wil, vring, 0);
567
568 return rc;
569}
570
571void wil_rx_fini(struct wil6210_priv *wil)
572{
573 struct vring *vring = &wil->vring_rx;
574
Vladimir Kondratiev2acb4222013-01-28 18:31:08 +0200575 if (vring->va)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800576 wil_vring_free(wil, vring, 0);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800577}
578
579int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
580 int cid, int tid)
581{
582 int rc;
583 struct wmi_vring_cfg_cmd cmd = {
584 .action = cpu_to_le32(WMI_VRING_CMD_ADD),
585 .vring_cfg = {
586 .tx_sw_ring = {
587 .max_mpdu_size = cpu_to_le16(TX_BUF_LEN),
Vladimir Kondratievb5d98e92013-04-18 14:33:51 +0300588 .ring_size = cpu_to_le16(size),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800589 },
590 .ringid = id,
Vladimir Kondratieva70abea2014-03-17 15:34:05 +0200591 .cidxtid = mk_cidxtid(cid, tid),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800592 .encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
593 .mac_ctrl = 0,
594 .to_resolution = 0,
595 .agg_max_wsize = 16,
596 .schd_params = {
597 .priority = cpu_to_le16(0),
598 .timeslot_us = cpu_to_le16(0xfff),
599 },
600 },
601 };
602 struct {
603 struct wil6210_mbox_hdr_wmi wmi;
604 struct wmi_vring_cfg_done_event cmd;
605 } __packed reply;
606 struct vring *vring = &wil->vring_tx[id];
607
608 if (vring->va) {
609 wil_err(wil, "Tx ring [%d] already allocated\n", id);
610 rc = -EINVAL;
611 goto out;
612 }
613
614 vring->size = size;
615 rc = wil_vring_alloc(wil, vring);
616 if (rc)
617 goto out;
618
Vladimir Kondratiev93ae6d42014-02-27 16:20:51 +0200619 wil->vring2cid_tid[id][0] = cid;
620 wil->vring2cid_tid[id][1] = tid;
621
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800622 cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800623
624 rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
625 WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
626 if (rc)
627 goto out_free;
628
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200629 if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800630 wil_err(wil, "Tx config failed, status 0x%02x\n",
631 reply.cmd.status);
Vladimir Kondratievc3319972013-01-28 18:31:09 +0200632 rc = -EINVAL;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800633 goto out_free;
634 }
635 vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
636
637 return 0;
638 out_free:
639 wil_vring_free(wil, vring, 1);
640 out:
641
642 return rc;
643}
644
645void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
646{
647 struct vring *vring = &wil->vring_tx[id];
648
649 if (!vring->va)
650 return;
651
652 wil_vring_free(wil, vring, 1);
653}
654
655static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
656 struct sk_buff *skb)
657{
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200658 int i;
659 struct ethhdr *eth = (void *)skb->data;
660 int cid = wil_find_cid(wil, eth->h_dest);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800661
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200662 if (cid < 0)
663 return NULL;
664
665 /* TODO: fix for multiple TID */
666 for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
667 if (wil->vring2cid_tid[i][0] == cid) {
668 struct vring *v = &wil->vring_tx[i];
669 wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
670 __func__, eth->h_dest, i);
671 if (v->va) {
672 return v;
673 } else {
674 wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
675 return NULL;
676 }
677 }
678 }
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800679
680 return NULL;
681}
682
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200683static void wil_set_da_for_vring(struct wil6210_priv *wil,
684 struct sk_buff *skb, int vring_index)
685{
686 struct ethhdr *eth = (void *)skb->data;
687 int cid = wil->vring2cid_tid[vring_index][0];
688 memcpy(eth->h_dest, wil->sta[cid].addr, ETH_ALEN);
689}
690
691static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
692 struct sk_buff *skb);
693/*
694 * Find 1-st vring and return it; set dest address for this vring in skb
695 * duplicate skb and send it to other active vrings
696 */
697static struct vring *wil_tx_bcast(struct wil6210_priv *wil,
698 struct sk_buff *skb)
699{
700 struct vring *v, *v2;
701 struct sk_buff *skb2;
702 int i;
703
704 /* find 1-st vring */
705 for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
706 v = &wil->vring_tx[i];
707 if (v->va)
708 goto found;
709 }
710
711 wil_err(wil, "Tx while no vrings active?\n");
712
713 return NULL;
714
715found:
716 wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
717 wil_set_da_for_vring(wil, skb, i);
718
719 /* find other active vrings and duplicate skb for each */
720 for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
721 v2 = &wil->vring_tx[i];
722 if (!v2->va)
723 continue;
724 skb2 = skb_copy(skb, GFP_ATOMIC);
725 if (skb2) {
726 wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
727 wil_set_da_for_vring(wil, skb2, i);
728 wil_tx_vring(wil, v2, skb2);
729 } else {
730 wil_err(wil, "skb_copy failed\n");
731 }
732 }
733
734 return v;
735}
736
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +0300737static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
738 int vring_index)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800739{
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300740 wil_desc_addr_set(&d->dma.addr, pa);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800741 d->dma.ip_length = 0;
742 /* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
743 d->dma.b11 = 0/*14 | BIT(7)*/;
744 d->dma.error = 0;
745 d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300746 d->dma.length = cpu_to_le16((u16)len);
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +0300747 d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800748 d->mac.d[0] = 0;
749 d->mac.d[1] = 0;
750 d->mac.d[2] = 0;
751 d->mac.ucode_cmd = 0;
752 /* use dst index 0 */
753 d->mac.d[1] |= BIT(MAC_CFG_DESC_TX_1_DST_INDEX_EN_POS) |
754 (0 << MAC_CFG_DESC_TX_1_DST_INDEX_POS);
755 /* translation type: 0 - bypass; 1 - 802.3; 2 - native wifi */
756 d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
757 (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);
758
759 return 0;
760}
761
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300762static int wil_tx_desc_offload_cksum_set(struct wil6210_priv *wil,
763 struct vring_tx_desc *d,
764 struct sk_buff *skb)
765{
766 int protocol;
767
768 if (skb->ip_summed != CHECKSUM_PARTIAL)
769 return 0;
770
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +0200771 d->dma.b11 = ETH_HLEN; /* MAC header length */
772
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300773 switch (skb->protocol) {
774 case cpu_to_be16(ETH_P_IP):
775 protocol = ip_hdr(skb)->protocol;
Vladimir Kondratievdf2d08e2014-01-08 11:50:48 +0200776 d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300777 break;
778 case cpu_to_be16(ETH_P_IPV6):
779 protocol = ipv6_hdr(skb)->nexthdr;
780 break;
781 default:
782 return -EINVAL;
783 }
784
785 switch (protocol) {
786 case IPPROTO_TCP:
787 d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
788 /* L4 header len: TCP header length */
789 d->dma.d0 |=
790 (tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
791 break;
792 case IPPROTO_UDP:
793 /* L4 header len: UDP header length */
794 d->dma.d0 |=
795 (sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
796 break;
797 default:
798 return -EINVAL;
799 }
800
801 d->dma.ip_length = skb_network_header_len(skb);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300802 /* Enable TCP/UDP checksum */
803 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
804 /* Calculate pseudo-header */
805 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
806
807 return 0;
808}
809
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800810static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
811 struct sk_buff *skb)
812{
813 struct device *dev = wil_to_dev(wil);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300814 struct vring_tx_desc dd, *d = &dd;
815 volatile struct vring_tx_desc *_d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800816 u32 swhead = vring->swhead;
817 int avail = wil_vring_avail_tx(vring);
818 int nr_frags = skb_shinfo(skb)->nr_frags;
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300819 uint f = 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800820 int vring_index = vring - wil->vring_tx;
821 uint i = swhead;
822 dma_addr_t pa;
823
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200824 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800825
826 if (avail < vring->size/8)
827 netif_tx_stop_all_queues(wil_to_ndev(wil));
828 if (avail < 1 + nr_frags) {
829 wil_err(wil, "Tx ring full. No space for %d fragments\n",
830 1 + nr_frags);
831 return -ENOMEM;
832 }
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300833 _d = &(vring->va[i].tx);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800834
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800835 pa = dma_map_single(dev, skb->data,
836 skb_headlen(skb), DMA_TO_DEVICE);
837
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200838 wil_dbg_txrx(wil, "Tx skb %d bytes %p -> %#08llx\n", skb_headlen(skb),
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800839 skb->data, (unsigned long long)pa);
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200840 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800841 skb->data, skb_headlen(skb), false);
842
843 if (unlikely(dma_mapping_error(dev, pa)))
844 return -EINVAL;
845 /* 1-st segment */
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +0300846 wil_tx_desc_map(d, pa, skb_headlen(skb), vring_index);
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300847 /* Process TCP/UDP checksum offloading */
848 if (wil_tx_desc_offload_cksum_set(wil, d, skb)) {
849 wil_err(wil, "VRING #%d Failed to set cksum, drop packet\n",
850 vring_index);
851 goto dma_error;
852 }
853
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800854 d->mac.d[2] |= ((nr_frags + 1) <<
855 MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300856 if (nr_frags)
857 *_d = *d;
858
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800859 /* middle segments */
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300860 for (; f < nr_frags; f++) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800861 const struct skb_frag_struct *frag =
862 &skb_shinfo(skb)->frags[f];
863 int len = skb_frag_size(frag);
864 i = (swhead + f + 1) % vring->size;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300865 _d = &(vring->va[i].tx);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800866 pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
867 DMA_TO_DEVICE);
868 if (unlikely(dma_mapping_error(dev, pa)))
869 goto dma_error;
Kirshenbaum Erez99b55bd2013-06-23 12:59:34 +0300870 wil_tx_desc_map(d, pa, len, vring_index);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300871 vring->ctx[i].mapped_as_page = 1;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300872 *_d = *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800873 }
874 /* for the last seg only */
875 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
Kirshenbaum Erez668b2bb2013-06-23 12:59:35 +0300876 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800877 d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300878 *_d = *d;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800879
Vladimir Kondratiev6cdadd42013-07-11 18:03:41 +0300880 /* hold reference to skb
881 * to prevent skb release before accounting
882 * in case of immediate "tx done"
883 */
884 vring->ctx[i].skb = skb_get(skb);
885
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200886 wil_hex_dump_txrx("Tx ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800887 (const void *)d, sizeof(*d), false);
888
889 /* advance swhead */
890 wil_vring_advance_head(vring, nr_frags + 1);
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200891 wil_dbg_txrx(wil, "Tx swhead %d -> %d\n", swhead, vring->swhead);
Vladimir Kondratiev98658092013-05-12 14:43:35 +0300892 trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800893 iowrite32(vring->swhead, wil->csr + HOSTADDR(vring->hwtail));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800894
895 return 0;
896 dma_error:
897 /* unmap what we have mapped */
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +0300898 nr_frags = f + 1; /* frags mapped + one for skb head */
899 for (f = 0; f < nr_frags; f++) {
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300900 u16 dmalen;
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +0300901 struct wil_ctx *ctx;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300902
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800903 i = (swhead + f) % vring->size;
Vladimir Kondratievc2a146f2013-07-21 11:34:36 +0300904 ctx = &vring->ctx[i];
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300905 _d = &(vring->va[i].tx);
906 *d = *_d;
907 _d->dma.status = TX_DMA_STATUS_DU;
908 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300909 dmalen = le16_to_cpu(d->dma.length);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300910 if (ctx->mapped_as_page)
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300911 dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +0300912 else
913 dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
914
915 if (ctx->skb)
916 dev_kfree_skb_any(ctx->skb);
917
918 memset(ctx, 0, sizeof(*ctx));
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800919 }
920
921 return -EINVAL;
922}
923
924
925netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
926{
927 struct wil6210_priv *wil = ndev_to_wil(ndev);
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200928 struct ethhdr *eth = (void *)skb->data;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800929 struct vring *vring;
930 int rc;
931
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200932 wil_dbg_txrx(wil, "%s()\n", __func__);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800933 if (!test_bit(wil_status_fwready, &wil->status)) {
934 wil_err(wil, "FW not ready\n");
935 goto drop;
936 }
937 if (!test_bit(wil_status_fwconnected, &wil->status)) {
938 wil_err(wil, "FW not connected\n");
939 goto drop;
940 }
941 if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
942 wil_err(wil, "Xmit in monitor mode not supported\n");
943 goto drop;
944 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +0300945
946 /* find vring */
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200947 if (is_unicast_ether_addr(eth->h_dest)) {
948 vring = wil_find_tx_vring(wil, skb);
949 } else {
Vladimir Kondratievfb3cac52014-02-27 16:20:46 +0200950 vring = wil_tx_bcast(wil, skb);
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200951 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +0300952 if (!vring) {
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200953 wil_err(wil, "No Tx VRING found for %pM\n", eth->h_dest);
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +0300954 goto drop;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800955 }
Vladimir Kondratievd58db4e2013-06-09 09:12:54 +0300956 /* set up vring entry */
957 rc = wil_tx_vring(wil, vring, skb);
958
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800959 switch (rc) {
960 case 0:
Vladimir Kondratiev795ce732013-01-28 18:31:00 +0200961 /* statistics will be updated on the tx_complete */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800962 dev_kfree_skb_any(skb);
963 return NETDEV_TX_OK;
964 case -ENOMEM:
965 return NETDEV_TX_BUSY;
966 default:
Vladimir Kondratievafda8bb2013-01-28 18:31:07 +0200967 break; /* goto drop; */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800968 }
969 drop:
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800970 ndev->stats.tx_dropped++;
971 dev_kfree_skb_any(skb);
972
973 return NET_XMIT_DROP;
974}
975
976/**
977 * Clean up transmitted skb's from the Tx VRING
978 *
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300979 * Return number of descriptors cleared
980 *
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800981 * Safe to call from IRQ
982 */
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300983int wil_tx_complete(struct wil6210_priv *wil, int ringid)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800984{
Vladimir Kondratiev795ce732013-01-28 18:31:00 +0200985 struct net_device *ndev = wil_to_ndev(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800986 struct device *dev = wil_to_dev(wil);
987 struct vring *vring = &wil->vring_tx[ringid];
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300988 int done = 0;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200989 int cid = wil->vring2cid_tid[ringid][0];
990 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800991
992 if (!vring->va) {
993 wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +0300994 return 0;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800995 }
996
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200997 wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800998
999 while (!wil_vring_is_empty(vring)) {
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001000 volatile struct vring_tx_desc *_d =
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001001 &vring->va[vring->swtail].tx;
1002 struct vring_tx_desc dd, *d = &dd;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001003 dma_addr_t pa;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001004 u16 dmalen;
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001005 struct wil_ctx *ctx = &vring->ctx[vring->swtail];
1006 struct sk_buff *skb = ctx->skb;
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001007
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001008 *d = *_d;
Vladimir Kondratiev4de41be2013-04-18 14:33:52 +03001009
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001010 if (!(d->dma.status & TX_DMA_STATUS_DU))
1011 break;
1012
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001013 dmalen = le16_to_cpu(d->dma.length);
Vladimir Kondratiev98658092013-05-12 14:43:35 +03001014 trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
1015 d->dma.error);
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001016 wil_dbg_txrx(wil,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001017 "Tx[%3d] : %d bytes, status 0x%02x err 0x%02x\n",
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +03001018 vring->swtail, dmalen, d->dma.status,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001019 d->dma.error);
Vladimir Kondratiev77438822013-01-28 18:31:06 +02001020 wil_hex_dump_txrx("TxC ", DUMP_PREFIX_NONE, 32, 4,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001021 (const void *)d, sizeof(*d), false);
1022
Vladimir Kondratiev68ada712013-05-12 14:43:37 +03001023 pa = wil_desc_addr(&d->dma.addr);
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001024 if (ctx->mapped_as_page)
1025 dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
1026 else
1027 dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
1028
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001029 if (skb) {
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001030 if (d->dma.error == 0) {
1031 ndev->stats.tx_packets++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001032 stats->tx_packets++;
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001033 ndev->stats.tx_bytes += skb->len;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001034 stats->tx_bytes += skb->len;
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001035 } else {
1036 ndev->stats.tx_errors++;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +02001037 stats->tx_errors++;
Vladimir Kondratiev795ce732013-01-28 18:31:00 +02001038 }
1039
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001040 dev_kfree_skb_any(skb);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001041 }
Vladimir Kondratievf88f1132013-07-11 18:03:40 +03001042 memset(ctx, 0, sizeof(*ctx));
Vladimir Kondratiev03269c62013-07-11 18:03:39 +03001043 /*
1044 * There is no need to touch HW descriptor:
1045 * - ststus bit TX_DMA_STATUS_DU is set by design,
1046 * so hardware will not try to process this desc.,
1047 * - rest of descriptor will be initialized on Tx.
1048 */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001049 vring->swtail = wil_vring_next_tail(vring);
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001050 done++;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001051 }
1052 if (wil_vring_avail_tx(vring) > vring->size/4)
1053 netif_tx_wake_all_queues(wil_to_ndev(wil));
Vladimir Kondratieve0287c42013-05-12 14:43:36 +03001054
1055 return done;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001056}