txrx.c 64.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2012-2017 Qualcomm Atheros, Inc.
3
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <linux/etherdevice.h>
#include <net/ieee80211_radiotap.h>
#include <linux/if_arp.h>
#include <linux/moduleparam.h>
22 23 24
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <net/ipv6.h>
25
#include <linux/prefetch.h>
26 27 28 29

#include "wil6210.h"
#include "wmi.h"
#include "txrx.h"
V
Vladimir Kondratiev 已提交
30
#include "trace.h"
31
#include "txrx_edma.h"
32

33
bool rx_align_2;
34
module_param(rx_align_2, bool, 0444);
35 36
MODULE_PARM_DESC(rx_align_2, " align Rx buffers on 4*n+2, default - no");

L
Lior David 已提交
37 38 39 40
bool rx_large_buf;
module_param(rx_large_buf, bool, 0444);
MODULE_PARM_DESC(rx_large_buf, " allocate 8KB RX buffers, default - no");

41 42 43
/* Drop Tx packets in case Tx ring is full */
bool drop_if_ring_full;

44 45 46 47 48
static inline uint wil_rx_snaplen(void)
{
	return rx_align_2 ? 6 : 0;
}

49 50
/* wil_ring_wmark_low - low watermark for available descriptor space */
static inline int wil_ring_wmark_low(struct wil_ring *ring)
51
{
52
	return ring->size / 8;
53 54
}

55 56
/* wil_ring_wmark_high - high watermark for available descriptor space */
static inline int wil_ring_wmark_high(struct wil_ring *ring)
57
{
58
	return ring->size / 4;
59 60
}

D
Dedy Lansky 已提交
61
/* returns true if num avail descriptors is lower than wmark_low */
62
static inline int wil_ring_avail_low(struct wil_ring *ring)
D
Dedy Lansky 已提交
63
{
64
	return wil_ring_avail_tx(ring) < wil_ring_wmark_low(ring);
D
Dedy Lansky 已提交
65 66 67
}

/* returns true if num avail descriptors is higher than wmark_high */
68
static inline int wil_ring_avail_high(struct wil_ring *ring)
D
Dedy Lansky 已提交
69
{
70
	return wil_ring_avail_tx(ring) > wil_ring_wmark_high(ring);
D
Dedy Lansky 已提交
71 72
}

73 74 75 76 77
/* returns true when all tx vrings are empty */
bool wil_is_tx_idle(struct wil6210_priv *wil)
{
	int i;
	unsigned long data_comp_to;
78
	int min_ring_id = wil_get_min_tx_ring_id(wil);
79

80
	for (i = min_ring_id; i < WIL6210_MAX_TX_RINGS; i++) {
81 82 83 84
		struct wil_ring *vring = &wil->ring_tx[i];
		int vring_index = vring - wil->ring_tx;
		struct wil_ring_tx_data *txdata =
			&wil->ring_tx_data[vring_index];
85 86 87 88 89 90 91 92 93 94 95

		spin_lock(&txdata->lock);

		if (!vring->va || !txdata->enabled) {
			spin_unlock(&txdata->lock);
			continue;
		}

		data_comp_to = jiffies + msecs_to_jiffies(
					WIL_DATA_COMPLETION_TO_MS);
		if (test_bit(wil_status_napi_en, wil->status)) {
96
			while (!wil_ring_is_empty(vring)) {
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
				if (time_after(jiffies, data_comp_to)) {
					wil_dbg_pm(wil,
						   "TO waiting for idle tx\n");
					spin_unlock(&txdata->lock);
					return false;
				}
				wil_dbg_ratelimited(wil,
						    "tx vring is not empty -> NAPI\n");
				spin_unlock(&txdata->lock);
				napi_synchronize(&wil->napi_tx);
				msleep(20);
				spin_lock(&txdata->lock);
				if (!vring->va || !txdata->enabled)
					break;
			}
		}

		spin_unlock(&txdata->lock);
	}

	return true;
}

120
static int wil_vring_alloc(struct wil6210_priv *wil, struct wil_ring *vring)
121 122 123 124 125
{
	struct device *dev = wil_to_dev(wil);
	size_t sz = vring->size * sizeof(vring->va[0]);
	uint i;

126
	wil_dbg_misc(wil, "vring_alloc:\n");
127

128 129 130 131
	BUILD_BUG_ON(sizeof(vring->va[0]) != 32);

	vring->swhead = 0;
	vring->swtail = 0;
132
	vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
133 134 135 136
	if (!vring->ctx) {
		vring->va = NULL;
		return -ENOMEM;
	}
137

138
	/* vring->va should be aligned on its size rounded up to power of 2
139 140 141 142
	 * This is granted by the dma_alloc_coherent.
	 *
	 * HW has limitation that all vrings addresses must share the same
	 * upper 16 msb bits part of 48 bits address. To workaround that,
143 144
	 * if we are using more than 32 bit addresses switch to 32 bit
	 * allocation before allocating vring memory.
145 146 147 148
	 *
	 * There's no check for the return value of dma_set_mask_and_coherent,
	 * since we assume if we were able to set the mask during
	 * initialization in this system it will not fail if we set it again
149
	 */
150
	if (wil->dma_addr_size > 32)
151 152
		dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));

153 154 155 156 157 158
	vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
	if (!vring->va) {
		kfree(vring->ctx);
		vring->ctx = NULL;
		return -ENOMEM;
	}
159

160 161 162
	if (wil->dma_addr_size > 32)
		dma_set_mask_and_coherent(dev,
					  DMA_BIT_MASK(wil->dma_addr_size));
163

164 165 166 167 168
	/* initially, all descriptors are SW owned
	 * For Tx and Rx, ownership bit is at the same location, thus
	 * we can use any
	 */
	for (i = 0; i < vring->size; i++) {
169 170
		volatile struct vring_tx_desc *_d =
			&vring->va[i].tx.legacy;
171

172
		_d->dma.status = TX_DMA_STATUS_DU;
173 174
	}

175 176
	wil_dbg_misc(wil, "vring[%d] 0x%p:%pad 0x%p\n", vring->size,
		     vring->va, &vring->pa, vring->ctx);
177 178 179 180

	return 0;
}

181
static void wil_txdesc_unmap(struct device *dev, union wil_tx_desc *desc,
182 183
			     struct wil_ctx *ctx)
{
184
	struct vring_tx_desc *d = &desc->legacy;
185 186
	dma_addr_t pa = wil_desc_addr(&d->dma.addr);
	u16 dmalen = le16_to_cpu(d->dma.length);
187

188 189 190 191 192 193 194 195 196 197 198 199
	switch (ctx->mapped_as) {
	case wil_mapped_as_single:
		dma_unmap_single(dev, pa, dmalen, DMA_TO_DEVICE);
		break;
	case wil_mapped_as_page:
		dma_unmap_page(dev, pa, dmalen, DMA_TO_DEVICE);
		break;
	default:
		break;
	}
}

200
static void wil_vring_free(struct wil6210_priv *wil, struct wil_ring *vring)
201 202 203 204
{
	struct device *dev = wil_to_dev(wil);
	size_t sz = vring->size * sizeof(vring->va[0]);

205
	lockdep_assert_held(&wil->mutex);
206
	if (!vring->is_rx) {
207
		int vring_index = vring - wil->ring_tx;
208 209 210 211 212 213 214 215 216 217

		wil_dbg_misc(wil, "free Tx vring %d [%d] 0x%p:%pad 0x%p\n",
			     vring_index, vring->size, vring->va,
			     &vring->pa, vring->ctx);
	} else {
		wil_dbg_misc(wil, "free Rx vring [%d] 0x%p:%pad 0x%p\n",
			     vring->size, vring->va,
			     &vring->pa, vring->ctx);
	}

218
	while (!wil_ring_is_empty(vring)) {
219
		dma_addr_t pa;
220
		u16 dmalen;
221
		struct wil_ctx *ctx;
222

223
		if (!vring->is_rx) {
224 225
			struct vring_tx_desc dd, *d = &dd;
			volatile struct vring_tx_desc *_d =
226
					&vring->va[vring->swtail].tx.legacy;
227

228
			ctx = &vring->ctx[vring->swtail];
229 230 231 232
			if (!ctx) {
				wil_dbg_txrx(wil,
					     "ctx(%d) was already completed\n",
					     vring->swtail);
233
				vring->swtail = wil_ring_next_tail(vring);
234 235
				continue;
			}
236
			*d = *_d;
237
			wil_txdesc_unmap(dev, (union wil_tx_desc *)d, ctx);
238 239
			if (ctx->skb)
				dev_kfree_skb_any(ctx->skb);
240
			vring->swtail = wil_ring_next_tail(vring);
241
		} else { /* rx */
242 243
			struct vring_rx_desc dd, *d = &dd;
			volatile struct vring_rx_desc *_d =
244
				&vring->va[vring->swhead].rx.legacy;
245

246
			ctx = &vring->ctx[vring->swhead];
247 248
			*d = *_d;
			pa = wil_desc_addr(&d->dma.addr);
249 250
			dmalen = le16_to_cpu(d->dma.length);
			dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
251
			kfree_skb(ctx->skb);
252
			wil_ring_advance_head(vring, 1);
253 254 255 256 257 258 259 260 261 262 263 264 265 266
		}
	}
	dma_free_coherent(dev, sz, (void *)vring->va, vring->pa);
	kfree(vring->ctx);
	vring->pa = 0;
	vring->va = NULL;
	vring->ctx = NULL;
}

/**
 * Allocate one skb for Rx VRING
 *
 * Safe to call from IRQ
 */
267
static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct wil_ring *vring,
268 269 270
			       u32 i, int headroom)
{
	struct device *dev = wil_to_dev(wil);
L
Lior David 已提交
271
	unsigned int sz = wil->rx_buf_len + ETH_HLEN + wil_rx_snaplen();
272
	struct vring_rx_desc dd, *d = &dd;
273
	volatile struct vring_rx_desc *_d = &vring->va[i].rx.legacy;
274 275
	dma_addr_t pa;
	struct sk_buff *skb = dev_alloc_skb(sz + headroom);
276

277 278 279 280 281 282
	if (unlikely(!skb))
		return -ENOMEM;

	skb_reserve(skb, headroom);
	skb_put(skb, sz);

283 284 285 286 287 288
	/**
	 * Make sure that the network stack calculates checksum for packets
	 * which failed the HW checksum calculation
	 */
	skb->ip_summed = CHECKSUM_NONE;

289 290 291 292 293 294
	pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
	if (unlikely(dma_mapping_error(dev, pa))) {
		kfree_skb(skb);
		return -ENOMEM;
	}

295
	d->dma.d0 = RX_DMA_D0_CMD_DMA_RT | RX_DMA_D0_CMD_DMA_IT;
296
	wil_desc_addr_set(&d->dma.addr, pa);
297 298 299 300
	/* ip_length don't care */
	/* b11 don't care */
	/* error don't care */
	d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
301
	d->dma.length = cpu_to_le16(sz);
302
	*_d = *d;
303
	vring->ctx[i].skb = skb;
304 305 306 307 308 309 310 311 312 313 314 315 316 317

	return 0;
}

/**
 * Adds radiotap header
 *
 * Any error indicated as "Bad FCS"
 *
 * Vendor data for 04:ce:14-1 (Wilocity-1) consists of:
 *  - Rx descriptor: 32 bytes
 *  - Phy info
 */
static void wil_rx_add_radiotap_header(struct wil6210_priv *wil,
318
				       struct sk_buff *skb)
319 320 321 322 323 324 325 326 327 328 329 330 331 332
{
	struct wil6210_rtap {
		struct ieee80211_radiotap_header rthdr;
		/* fields should be in the order of bits in rthdr.it_present */
		/* flags */
		u8 flags;
		/* channel */
		__le16 chnl_freq __aligned(2);
		__le16 chnl_flags;
		/* MCS */
		u8 mcs_present;
		u8 mcs_flags;
		u8 mcs_index;
	} __packed;
333
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
334
	struct wil6210_rtap *rtap;
335
	int rtap_len = sizeof(struct wil6210_rtap);
336
	struct ieee80211_channel *ch = wil->monitor_chandef.chan;
337 338 339

	if (skb_headroom(skb) < rtap_len &&
	    pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
340
		wil_err(wil, "Unable to expand headroom to %d\n", rtap_len);
341 342 343
		return;
	}

344 345
	rtap = skb_push(skb, rtap_len);
	memset(rtap, 0, rtap_len);
346

347 348 349
	rtap->rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
	rtap->rthdr.it_len = cpu_to_le16(rtap_len);
	rtap->rthdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
350 351 352
			(1 << IEEE80211_RADIOTAP_CHANNEL) |
			(1 << IEEE80211_RADIOTAP_MCS));
	if (d->dma.status & RX_DMA_STATUS_ERROR)
353 354 355 356 357 358 359 360
		rtap->flags |= IEEE80211_RADIOTAP_F_BADFCS;

	rtap->chnl_freq = cpu_to_le16(ch ? ch->center_freq : 58320);
	rtap->chnl_flags = cpu_to_le16(0);

	rtap->mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
	rtap->mcs_flags = 0;
	rtap->mcs_index = wil_rxdesc_mcs(d);
361 362
}

363
static bool wil_is_rx_idle(struct wil6210_priv *wil)
364 365
{
	struct vring_rx_desc *_d;
366
	struct wil_ring *ring = &wil->ring_rx;
367

368
	_d = (struct vring_rx_desc *)&ring->va[ring->swhead].rx.legacy;
369 370 371 372 373 374
	if (_d->dma.status & RX_DMA_STATUS_DU)
		return false;

	return true;
}

375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
static int wil_rx_get_cid_by_skb(struct wil6210_priv *wil, struct sk_buff *skb)
{
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
	int mid = wil_rxdesc_mid(d);
	struct wil6210_vif *vif = wil->vifs[mid];
	/* cid from DMA descriptor is limited to 3 bits.
	 * In case of cid>=8, the value would be cid modulo 8 and we need to
	 * find real cid by locating the transmitter (ta) inside sta array
	 */
	int cid = wil_rxdesc_cid(d);
	unsigned int snaplen = wil_rx_snaplen();
	struct ieee80211_hdr_3addr *hdr;
	int i;
	unsigned char *ta;
	u8 ftype;

	/* in monitor mode there are no connections */
	if (vif->wdev.iftype == NL80211_IFTYPE_MONITOR)
		return cid;

	ftype = wil_rxdesc_ftype(d) << 2;
	if (likely(ftype == IEEE80211_FTYPE_DATA)) {
		if (unlikely(skb->len < ETH_HLEN + snaplen)) {
			wil_err_ratelimited(wil,
					    "Short data frame, len = %d\n",
					    skb->len);
			return -ENOENT;
		}
403
		ta = wil_skb_get_sa(skb);
404 405 406 407 408 409 410 411 412 413
	} else {
		if (unlikely(skb->len < sizeof(struct ieee80211_hdr_3addr))) {
			wil_err_ratelimited(wil, "Short frame, len = %d\n",
					    skb->len);
			return -ENOENT;
		}
		hdr = (void *)skb->data;
		ta = hdr->addr2;
	}

414
	if (wil->max_assoc_sta <= WIL6210_RX_DESC_MAX_CID)
415 416 417 418 419 420 421 422 423 424 425 426 427 428
		return cid;

	/* assuming no concurrency between AP interfaces and STA interfaces.
	 * multista is used only in P2P_GO or AP mode. In other modes return
	 * cid from the rx descriptor
	 */
	if (vif->wdev.iftype != NL80211_IFTYPE_P2P_GO &&
	    vif->wdev.iftype != NL80211_IFTYPE_AP)
		return cid;

	/* For Rx packets cid from rx descriptor is limited to 3 bits (0..7),
	 * to find the real cid, compare transmitter address with the stored
	 * stations mac address in the driver sta array
	 */
429
	for (i = cid; i < wil->max_assoc_sta; i += WIL6210_RX_DESC_MAX_CID) {
430 431 432 433 434 435
		if (wil->sta[i].status != wil_sta_unused &&
		    ether_addr_equal(wil->sta[i].addr, ta)) {
			cid = i;
			break;
		}
	}
436
	if (i >= wil->max_assoc_sta) {
437 438 439 440 441 442 443 444
		wil_err_ratelimited(wil, "Could not find cid for frame with transmit addr = %pM, iftype = %d, frametype = %d, len = %d\n",
				    ta, vif->wdev.iftype, ftype, skb->len);
		cid = -ENOENT;
	}

	return cid;
}

445 446 447
/**
 * reap 1 frame from @swhead
 *
448 449
 * Rx descriptor copied to skb->cb
 *
450 451 452
 * Safe to call from IRQ
 */
static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
453
					 struct wil_ring *vring)
454 455
{
	struct device *dev = wil_to_dev(wil);
456 457
	struct wil6210_vif *vif;
	struct net_device *ndev;
458 459
	volatile struct vring_rx_desc *_d;
	struct vring_rx_desc *d;
460 461
	struct sk_buff *skb;
	dma_addr_t pa;
462
	unsigned int snaplen = wil_rx_snaplen();
L
Lior David 已提交
463
	unsigned int sz = wil->rx_buf_len + ETH_HLEN + snaplen;
464
	u16 dmalen;
465
	u8 ftype;
466
	int cid, mid;
467
	int i;
468 469
	struct wil_net_stats *stats;

470
	BUILD_BUG_ON(sizeof(struct skb_rx_info) > sizeof(skb->cb));
471

472
again:
473
	if (unlikely(wil_ring_is_empty(vring)))
474 475
		return NULL;

476
	i = (int)vring->swhead;
477
	_d = &vring->va[i].rx.legacy;
478
	if (unlikely(!(_d->dma.status & RX_DMA_STATUS_DU))) {
479 480 481 482
		/* it is not error, we just reached end of Rx done area */
		return NULL;
	}

483 484
	skb = vring->ctx[i].skb;
	vring->ctx[i].skb = NULL;
485
	wil_ring_advance_head(vring, 1);
486 487
	if (!skb) {
		wil_err(wil, "No Rx skb at [%d]\n", i);
488
		goto again;
489
	}
490 491 492 493
	d = wil_skb_rxdesc(skb);
	*d = *_d;
	pa = wil_desc_addr(&d->dma.addr);

494
	dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
495 496
	dmalen = le16_to_cpu(d->dma.length);

497 498
	trace_wil6210_rx(i, d);
	wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", i, dmalen);
499
	wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
500
			  (const void *)d, sizeof(*d), false);
501

502 503 504 505 506 507 508 509 510 511
	mid = wil_rxdesc_mid(d);
	vif = wil->vifs[mid];

	if (unlikely(!vif)) {
		wil_dbg_txrx(wil, "skipped RX descriptor with invalid mid %d",
			     mid);
		kfree_skb(skb);
		goto again;
	}
	ndev = vif_to_ndev(vif);
512
	if (unlikely(dmalen > sz)) {
513 514
		wil_err_ratelimited(wil, "Rx size too large: %d bytes!\n",
				    dmalen);
515
		kfree_skb(skb);
516
		goto again;
517
	}
518
	skb_trim(skb, dmalen);
519

520 521
	prefetch(skb->data);

522 523 524
	wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
			  skb->data, skb_headlen(skb), false);

525 526 527 528 529 530 531 532
	cid = wil_rx_get_cid_by_skb(wil, skb);
	if (cid == -ENOENT) {
		kfree_skb(skb);
		goto again;
	}
	wil_skb_set_cid(skb, (u8)cid);
	stats = &wil->sta[cid].stats;

533
	stats->last_mcs_rx = wil_rxdesc_mcs(d);
534 535
	if (stats->last_mcs_rx < ARRAY_SIZE(stats->rx_per_mcs))
		stats->rx_per_mcs[stats->last_mcs_rx]++;
536 537 538

	/* use radiotap header only if required */
	if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
539
		wil_rx_add_radiotap_header(wil, skb);
540 541 542 543

	/* no extra checks if in sniffer mode */
	if (ndev->type != ARPHRD_ETHER)
		return skb;
544
	/* Non-data frames may be delivered through Rx DMA channel (ex: BAR)
545 546 547
	 * Driver should recognize it by frame type, that is found
	 * in Rx descriptor. If type is not data, it is 802.11 frame as is
	 */
548
	ftype = wil_rxdesc_ftype(d) << 2;
549
	if (unlikely(ftype != IEEE80211_FTYPE_DATA)) {
550 551 552 553 554 555 556
		u8 fc1 = wil_rxdesc_fc1(d);
		int tid = wil_rxdesc_tid(d);
		u16 seq = wil_rxdesc_seq(d);

		wil_dbg_txrx(wil,
			     "Non-data frame FC[7:0] 0x%02x MID %d CID %d TID %d Seq 0x%03x\n",
			     fc1, mid, cid, tid, seq);
557
		stats->rx_non_data_frame++;
558 559 560 561
		if (wil_is_back_req(fc1)) {
			wil_dbg_txrx(wil,
				     "BAR: MID %d CID %d TID %d Seq 0x%03x\n",
				     mid, cid, tid, seq);
562
			wil_rx_bar(wil, vif, cid, tid, seq);
563 564 565 566 567 568 569 570 571 572 573 574
		} else {
			/* print again all info. One can enable only this
			 * without overhead for printing every Rx frame
			 */
			wil_dbg_txrx(wil,
				     "Unhandled non-data frame FC[7:0] 0x%02x MID %d CID %d TID %d Seq 0x%03x\n",
				     fc1, mid, cid, tid, seq);
			wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
					  (const void *)d, sizeof(*d), false);
			wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
					  skb->data, skb_headlen(skb), false);
		}
575
		kfree_skb(skb);
576
		goto again;
577 578
	}

579 580 581 582
	/* L4 IDENT is on when HW calculated checksum, check status
	 * and in case of error drop the packet
	 * higher stack layers will handle retransmission (if required)
	 */
583
	if (likely(d->dma.status & RX_DMA_STATUS_L4I)) {
584
		/* L4 protocol identified, csum calculated */
585
		if (likely((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0))
586
			skb->ip_summed = CHECKSUM_UNNECESSARY;
587 588 589 590 591
		/* If HW reports bad checksum, let IP stack re-check it
		 * For example, HW don't understand Microsoft IP stack that
		 * mis-calculates TCP checksum - if it should be 0x0,
		 * it writes 0xffff in violation of RFC 1624
		 */
592 593
		else
			stats->rx_csum_err++;
594 595
	}

596 597 598 599 600 601 602 603 604 605 606
	if (snaplen) {
		/* Packet layout
		 * +-------+-------+---------+------------+------+
		 * | SA(6) | DA(6) | SNAP(6) | ETHTYPE(2) | DATA |
		 * +-------+-------+---------+------------+------+
		 * Need to remove SNAP, shifting SA and DA forward
		 */
		memmove(skb->data + snaplen, skb->data, 2 * ETH_ALEN);
		skb_pull(skb, snaplen);
	}

607 608 609 610 611 612
	return skb;
}

/**
 * allocate and fill up to @count buffers in rx ring
 * buffers posted at @swtail
613 614 615 616 617
 * Note: we have a single RX queue for servicing all VIFs, but we
 * allocate skbs with headroom according to main interface only. This
 * means it will not work with monitor interface together with other VIFs.
 * Currently we only support monitor interface on its own without other VIFs,
 * and we will need to fix this code once we add support.
618 619 620
 */
static int wil_rx_refill(struct wil6210_priv *wil, int count)
{
621
	struct net_device *ndev = wil->main_ndev;
622
	struct wil_ring *v = &wil->ring_rx;
623 624 625 626 627
	u32 next_tail;
	int rc = 0;
	int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
			WIL6210_RTAP_SIZE : 0;

628 629 630
	for (; next_tail = wil_ring_next_tail(v),
	     (next_tail != v->swhead) && (count-- > 0);
	     v->swtail = next_tail) {
631
		rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
632
		if (unlikely(rc)) {
633 634
			wil_err_ratelimited(wil, "Error %d in rx refill[%d]\n",
					    rc, v->swtail);
635 636 637
			break;
		}
	}
638 639 640 641 642 643

	/* make sure all writes to descriptors (shared memory) are done before
	 * committing them to HW
	 */
	wmb();

644
	wil_w(wil, v->hwtail, v->swtail);
645 646 647 648

	return rc;
}

649 650 651 652 653 654 655 656 657
/**
 * reverse_memcmp - Compare two areas of memory, in reverse order
 * @cs: One area of memory
 * @ct: Another area of memory
 * @count: The size of the area.
 *
 * Cut'n'paste from original memcmp (see lib/string.c)
 * with minimal modifications
 */
658
int reverse_memcmp(const void *cs, const void *ct, size_t count)
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
{
	const unsigned char *su1, *su2;
	int res = 0;

	for (su1 = cs + count - 1, su2 = ct + count - 1; count > 0;
	     --su1, --su2, count--) {
		res = *su1 - *su2;
		if (res)
			break;
	}
	return res;
}

static int wil_rx_crypto_check(struct wil6210_priv *wil, struct sk_buff *skb)
{
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
675
	int cid = wil_skb_get_cid(skb);
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
	int tid = wil_rxdesc_tid(d);
	int key_id = wil_rxdesc_key_id(d);
	int mc = wil_rxdesc_mcast(d);
	struct wil_sta_info *s = &wil->sta[cid];
	struct wil_tid_crypto_rx *c = mc ? &s->group_crypto_rx :
				      &s->tid_crypto_rx[tid];
	struct wil_tid_crypto_rx_single *cc = &c->key_id[key_id];
	const u8 *pn = (u8 *)&d->mac.pn_15_0;

	if (!cc->key_set) {
		wil_err_ratelimited(wil,
				    "Key missing. CID %d TID %d MCast %d KEY_ID %d\n",
				    cid, tid, mc, key_id);
		return -EINVAL;
	}

	if (reverse_memcmp(pn, cc->pn, IEEE80211_GCMP_PN_LEN) <= 0) {
		wil_err_ratelimited(wil,
				    "Replay attack. CID %d TID %d MCast %d KEY_ID %d PN %6phN last %6phN\n",
				    cid, tid, mc, key_id, pn, cc->pn);
		return -EINVAL;
	}
	memcpy(cc->pn, pn, IEEE80211_GCMP_PN_LEN);

	return 0;
}

703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
static int wil_rx_error_check(struct wil6210_priv *wil, struct sk_buff *skb,
			      struct wil_net_stats *stats)
{
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);

	if ((d->dma.status & RX_DMA_STATUS_ERROR) &&
	    (d->dma.error & RX_DMA_ERROR_MIC)) {
		stats->rx_mic_error++;
		wil_dbg_txrx(wil, "MIC error, dropping packet\n");
		return -EFAULT;
	}

	return 0;
}

718 719 720 721 722
static void wil_get_netif_rx_params(struct sk_buff *skb, int *cid,
				    int *security)
{
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);

723
	*cid = wil_skb_get_cid(skb);
724 725 726
	*security = wil_rxdesc_security(d);
}

727 728
/*
 * Pass Rx packet to the netif. Update statistics.
V
Vladimir Kondratiev 已提交
729
 * Called in softirq context (NAPI poll).
730
 */
V
Vladimir Kondratiev 已提交
731
void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
732
{
733
	gro_result_t rc = GRO_NORMAL;
734
	struct wil6210_vif *vif = ndev_to_vif(ndev);
735
	struct wil6210_priv *wil = ndev_to_wil(ndev);
736
	struct wireless_dev *wdev = vif_to_wdev(vif);
737
	unsigned int len = skb->len;
738 739
	int cid;
	int security;
740
	u8 *sa, *da = wil_skb_get_da(skb);
741 742 743
	/* here looking for DA, not A1, thus Rxdesc's 'mcast' indication
	 * is not suitable, need to look at data
	 */
744
	int mcast = is_multicast_ether_addr(da);
745
	struct wil_net_stats *stats;
746 747 748 749 750 751 752
	struct sk_buff *xmit_skb = NULL;
	static const char * const gro_res_str[] = {
		[GRO_MERGED]		= "GRO_MERGED",
		[GRO_MERGED_FREE]	= "GRO_MERGED_FREE",
		[GRO_HELD]		= "GRO_HELD",
		[GRO_NORMAL]		= "GRO_NORMAL",
		[GRO_DROP]		= "GRO_DROP",
753
		[GRO_CONSUMED]		= "GRO_CONSUMED",
754
	};
755

756 757 758 759
	wil->txrx_ops.get_netif_rx_params(skb, &cid, &security);

	stats = &wil->sta[cid].stats;

760 761
	skb_orphan(skb);

762
	if (security && (wil->txrx_ops.rx_crypto_check(wil, skb) != 0)) {
763 764 765 766 767 768
		rc = GRO_DROP;
		dev_kfree_skb(skb);
		stats->rx_replay++;
		goto stats;
	}

769 770 771 772 773 774
	/* check errors reported by HW and update statistics */
	if (unlikely(wil->txrx_ops.rx_error_check(wil, skb, stats))) {
		dev_kfree_skb(skb);
		return;
	}

775
	if (wdev->iftype == NL80211_IFTYPE_STATION) {
776 777
		sa = wil_skb_get_sa(skb);
		if (mcast && ether_addr_equal(sa, ndev->dev_addr)) {
778 779 780 781 782 783
			/* mcast packet looped back to us */
			rc = GRO_DROP;
			dev_kfree_skb(skb);
			goto stats;
		}
	} else if (wdev->iftype == NL80211_IFTYPE_AP && !vif->ap_isolate) {
784 785 786 787 788 789
		if (mcast) {
			/* send multicast frames both to higher layers in
			 * local net stack and back to the wireless medium
			 */
			xmit_skb = skb_copy(skb, GFP_ATOMIC);
		} else {
790
			int xmit_cid = wil_find_cid(wil, vif->mid, da);
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815

			if (xmit_cid >= 0) {
				/* The destination station is associated to
				 * this AP (in this VLAN), so send the frame
				 * directly to it and do not pass it to local
				 * net stack.
				 */
				xmit_skb = skb;
				skb = NULL;
			}
		}
	}
	if (xmit_skb) {
		/* Send to wireless media and increase priority by 256 to
		 * keep the received priority instead of reclassifying
		 * the frame (see cfg80211_classify8021d).
		 */
		xmit_skb->dev = ndev;
		xmit_skb->priority += 256;
		xmit_skb->protocol = htons(ETH_P_802_3);
		skb_reset_network_header(xmit_skb);
		skb_reset_mac_header(xmit_skb);
		wil_dbg_txrx(wil, "Rx -> Tx %d bytes\n", len);
		dev_queue_xmit(xmit_skb);
	}
816

817 818
	if (skb) { /* deliver to local stack */
		skb->protocol = eth_type_trans(skb, ndev);
819
		skb->dev = ndev;
820 821 822 823
		rc = napi_gro_receive(&wil->napi_rx, skb);
		wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
			     len, gro_res_str[rc]);
	}
824
stats:
825
	/* statistics. rc set to GRO_NORMAL for AP bridging */
V
Vladimir Kondratiev 已提交
826 827 828 829 830
	if (unlikely(rc == GRO_DROP)) {
		ndev->stats.rx_dropped++;
		stats->rx_dropped++;
		wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
	} else {
831
		ndev->stats.rx_packets++;
832
		stats->rx_packets++;
833
		ndev->stats.rx_bytes += len;
834
		stats->rx_bytes += len;
835 836
		if (mcast)
			ndev->stats.multicast++;
837
	}
838 839 840 841 842
}

/**
 * Proceed all completed skb's from Rx VRING
 *
V
Vladimir Kondratiev 已提交
843
 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
844
 */
V
Vladimir Kondratiev 已提交
845
void wil_rx_handle(struct wil6210_priv *wil, int *quota)
846
{
847 848
	struct net_device *ndev = wil->main_ndev;
	struct wireless_dev *wdev = ndev->ieee80211_ptr;
849
	struct wil_ring *v = &wil->ring_rx;
850 851
	struct sk_buff *skb;

852
	if (unlikely(!v->va)) {
853 854 855
		wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
		return;
	}
856
	wil_dbg_txrx(wil, "rx_handle\n");
V
Vladimir Kondratiev 已提交
857 858
	while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
		(*quota)--;
859

860 861
		/* monitor is currently supported on main interface only */
		if (wdev->iftype == NL80211_IFTYPE_MONITOR) {
862 863 864 865 866
			skb->dev = ndev;
			skb_reset_mac_header(skb);
			skb->ip_summed = CHECKSUM_UNNECESSARY;
			skb->pkt_type = PACKET_OTHERHOST;
			skb->protocol = htons(ETH_P_802_2);
V
Vladimir Kondratiev 已提交
867
			wil_netif_rx_any(skb, ndev);
868
		} else {
869
			wil_rx_reorder(wil, skb);
870 871 872 873 874
		}
	}
	wil_rx_refill(wil, v->size);
}

L
Lior David 已提交
875 876 877 878 879 880 881 882 883 884 885 886 887 888
static void wil_rx_buf_len_init(struct wil6210_priv *wil)
{
	wil->rx_buf_len = rx_large_buf ?
		WIL_MAX_ETH_MTU : TXRX_BUF_LEN_DEFAULT - WIL_MAX_MPDU_OVERHEAD;
	if (mtu_max > wil->rx_buf_len) {
		/* do not allow RX buffers to be smaller than mtu_max, for
		 * backward compatibility (mtu_max parameter was also used
		 * to support receiving large packets)
		 */
		wil_info(wil, "Override RX buffer to mtu_max(%d)\n", mtu_max);
		wil->rx_buf_len = mtu_max;
	}
}

889
static int wil_rx_init(struct wil6210_priv *wil, uint order)
890
{
891
	struct wil_ring *vring = &wil->ring_rx;
892 893
	int rc;

894
	wil_dbg_misc(wil, "rx_init\n");
895

896 897 898 899 900
	if (vring->va) {
		wil_err(wil, "Rx ring already allocated\n");
		return -EINVAL;
	}

L
Lior David 已提交
901 902
	wil_rx_buf_len_init(wil);

903
	vring->size = 1 << order;
904
	vring->is_rx = true;
905 906 907 908
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		return rc;

909
	rc = wmi_rx_chain_add(wil, vring);
910 911 912 913 914 915 916 917 918
	if (rc)
		goto err_free;

	rc = wil_rx_refill(wil, vring->size);
	if (rc)
		goto err_free;

	return 0;
 err_free:
919
	wil_vring_free(wil, vring);
920 921 922 923

	return rc;
}

924
static void wil_rx_fini(struct wil6210_priv *wil)
925
{
926
	struct wil_ring *vring = &wil->ring_rx;
927

928
	wil_dbg_misc(wil, "rx_fini\n");
929

930
	if (vring->va)
931
		wil_vring_free(wil, vring);
932 933
}

934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
static int wil_tx_desc_map(union wil_tx_desc *desc, dma_addr_t pa,
			   u32 len, int vring_index)
{
	struct vring_tx_desc *d = &desc->legacy;

	wil_desc_addr_set(&d->dma.addr, pa);
	d->dma.ip_length = 0;
	/* 0..6: mac_length; 7:ip_version 0-IP6 1-IP4*/
	d->dma.b11 = 0/*14 | BIT(7)*/;
	d->dma.error = 0;
	d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
	d->dma.length = cpu_to_le16((u16)len);
	d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
	d->mac.d[0] = 0;
	d->mac.d[1] = 0;
	d->mac.d[2] = 0;
	d->mac.ucode_cmd = 0;
	/* translation type:  0 - bypass; 1 - 802.3; 2 - native wifi */
	d->mac.d[2] = BIT(MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS) |
		      (1 << MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS);

	return 0;
}

958
void wil_tx_data_init(struct wil_ring_tx_data *txdata)
959 960 961 962 963 964 965 966 967 968 969
{
	spin_lock_bh(&txdata->lock);
	txdata->dot1x_open = 0;
	txdata->enabled = 0;
	txdata->idle = 0;
	txdata->last_idle = 0;
	txdata->begin = 0;
	txdata->agg_wsize = 0;
	txdata->agg_timeout = 0;
	txdata->agg_amsdu = 0;
	txdata->addba_in_progress = false;
970
	txdata->mid = U8_MAX;
971 972 973
	spin_unlock_bh(&txdata->lock);
}

974 975
static int wil_vring_init_tx(struct wil6210_vif *vif, int id, int size,
			     int cid, int tid)
976
{
977
	struct wil6210_priv *wil = vif_to_wil(vif);
978 979 980 981 982
	int rc;
	struct wmi_vring_cfg_cmd cmd = {
		.action = cpu_to_le32(WMI_VRING_CMD_ADD),
		.vring_cfg = {
			.tx_sw_ring = {
983
				.max_mpdu_size =
984
					cpu_to_le16(wil_mtu2macbuf(mtu_max)),
985
				.ring_size = cpu_to_le16(size),
986 987 988 989 990
			},
			.ringid = id,
			.encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
			.mac_ctrl = 0,
			.to_resolution = 0,
V
Vladimir Kondratiev 已提交
991
			.agg_max_wsize = 0,
992 993 994 995 996 997 998
			.schd_params = {
				.priority = cpu_to_le16(0),
				.timeslot_us = cpu_to_le16(0xfff),
			},
		},
	};
	struct {
L
Lior David 已提交
999
		struct wmi_cmd_hdr wmi;
1000
		struct wmi_vring_cfg_done_event cmd;
1001 1002 1003
	} __packed reply = {
		.cmd = {.status = WMI_FW_STATUS_FAILURE},
	};
1004 1005
	struct wil_ring *vring = &wil->ring_tx[id];
	struct wil_ring_tx_data *txdata = &wil->ring_tx_data[id];
1006

1007 1008 1009 1010 1011 1012 1013 1014
	if (cid >= WIL6210_RX_DESC_MAX_CID) {
		cmd.vring_cfg.cidxtid = CIDXTID_EXTENDED_CID_TID;
		cmd.vring_cfg.cid = cid;
		cmd.vring_cfg.tid = tid;
	} else {
		cmd.vring_cfg.cidxtid = mk_cidxtid(cid, tid);
	}

1015
	wil_dbg_misc(wil, "vring_init_tx: max_mpdu_size %d\n",
1016
		     cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
1017
	lockdep_assert_held(&wil->mutex);
1018

1019 1020 1021 1022 1023 1024
	if (vring->va) {
		wil_err(wil, "Tx ring [%d] already allocated\n", id);
		rc = -EINVAL;
		goto out;
	}

1025
	wil_tx_data_init(txdata);
1026
	vring->is_rx = false;
1027 1028 1029 1030 1031
	vring->size = size;
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		goto out;

1032 1033
	wil->ring2cid_tid[id][0] = cid;
	wil->ring2cid_tid[id][1] = tid;
1034

1035 1036
	cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);

1037
	if (!vif->privacy)
1038
		txdata->dot1x_open = true;
1039
	rc = wmi_call(wil, WMI_VRING_CFG_CMDID, vif->mid, &cmd, sizeof(cmd),
1040 1041
		      WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply),
		      WIL_WMI_CALL_GENERAL_TO_MS);
1042 1043 1044
	if (rc)
		goto out_free;

1045
	if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
1046 1047
		wil_err(wil, "Tx config failed, status 0x%02x\n",
			reply.cmd.status);
1048
		rc = -EINVAL;
1049 1050 1051
		goto out_free;
	}

1052 1053
	spin_lock_bh(&txdata->lock);
	vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
1054
	txdata->mid = vif->mid;
1055
	txdata->enabled = 1;
1056 1057
	spin_unlock_bh(&txdata->lock);

1058
	if (txdata->dot1x_open && (agg_wsize >= 0))
1059
		wil_addba_tx_request(wil, id, agg_wsize);
1060

1061 1062
	return 0;
 out_free:
1063
	spin_lock_bh(&txdata->lock);
1064 1065
	txdata->dot1x_open = false;
	txdata->enabled = 0;
1066
	spin_unlock_bh(&txdata->lock);
1067
	wil_vring_free(wil, vring);
1068
	wil->ring2cid_tid[id][0] = wil->max_assoc_sta;
1069
	wil->ring2cid_tid[id][1] = 0;
1070

1071 1072 1073 1074 1075
 out:

	return rc;
}

1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
static int wil_tx_vring_modify(struct wil6210_vif *vif, int ring_id, int cid,
			       int tid)
{
	struct wil6210_priv *wil = vif_to_wil(vif);
	int rc;
	struct wmi_vring_cfg_cmd cmd = {
		.action = cpu_to_le32(WMI_VRING_CMD_MODIFY),
		.vring_cfg = {
			.tx_sw_ring = {
				.max_mpdu_size =
					cpu_to_le16(wil_mtu2macbuf(mtu_max)),
				.ring_size = 0,
			},
			.ringid = ring_id,
			.cidxtid = mk_cidxtid(cid, tid),
			.encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
			.mac_ctrl = 0,
			.to_resolution = 0,
			.agg_max_wsize = 0,
			.schd_params = {
				.priority = cpu_to_le16(0),
				.timeslot_us = cpu_to_le16(0xfff),
			},
		},
	};
	struct {
		struct wmi_cmd_hdr wmi;
		struct wmi_vring_cfg_done_event cmd;
	} __packed reply = {
		.cmd = {.status = WMI_FW_STATUS_FAILURE},
	};
	struct wil_ring *vring = &wil->ring_tx[ring_id];
	struct wil_ring_tx_data *txdata = &wil->ring_tx_data[ring_id];

	wil_dbg_misc(wil, "vring_modify: ring %d cid %d tid %d\n", ring_id,
		     cid, tid);
	lockdep_assert_held(&wil->mutex);

	if (!vring->va) {
		wil_err(wil, "Tx ring [%d] not allocated\n", ring_id);
		return -EINVAL;
	}

	if (wil->ring2cid_tid[ring_id][0] != cid ||
	    wil->ring2cid_tid[ring_id][1] != tid) {
		wil_err(wil, "ring info does not match cid=%u tid=%u\n",
			wil->ring2cid_tid[ring_id][0],
			wil->ring2cid_tid[ring_id][1]);
	}

	cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);

	rc = wmi_call(wil, WMI_VRING_CFG_CMDID, vif->mid, &cmd, sizeof(cmd),
1129 1130
		      WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply),
		      WIL_WMI_CALL_GENERAL_TO_MS);
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
	if (rc)
		goto fail;

	if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
		wil_err(wil, "Tx modify failed, status 0x%02x\n",
			reply.cmd.status);
		rc = -EINVAL;
		goto fail;
	}

	/* set BA aggregation window size to 0 to force a new BA with the
	 * new AP
	 */
	txdata->agg_wsize = 0;
	if (txdata->dot1x_open && agg_wsize >= 0)
		wil_addba_tx_request(wil, ring_id, agg_wsize);

	return 0;
fail:
	spin_lock_bh(&txdata->lock);
	txdata->dot1x_open = false;
	txdata->enabled = 0;
	spin_unlock_bh(&txdata->lock);
1154
	wil->ring2cid_tid[ring_id][0] = wil->max_assoc_sta;
1155 1156 1157 1158
	wil->ring2cid_tid[ring_id][1] = 0;
	return rc;
}

1159
int wil_vring_init_bcast(struct wil6210_vif *vif, int id, int size)
1160
{
1161
	struct wil6210_priv *wil = vif_to_wil(vif);
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
	int rc;
	struct wmi_bcast_vring_cfg_cmd cmd = {
		.action = cpu_to_le32(WMI_VRING_CMD_ADD),
		.vring_cfg = {
			.tx_sw_ring = {
				.max_mpdu_size =
					cpu_to_le16(wil_mtu2macbuf(mtu_max)),
				.ring_size = cpu_to_le16(size),
			},
			.ringid = id,
			.encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
		},
	};
	struct {
L
Lior David 已提交
1176
		struct wmi_cmd_hdr wmi;
1177
		struct wmi_vring_cfg_done_event cmd;
1178 1179 1180
	} __packed reply = {
		.cmd = {.status = WMI_FW_STATUS_FAILURE},
	};
1181 1182
	struct wil_ring *vring = &wil->ring_tx[id];
	struct wil_ring_tx_data *txdata = &wil->ring_tx_data[id];
1183

1184
	wil_dbg_misc(wil, "vring_init_bcast: max_mpdu_size %d\n",
1185
		     cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
1186
	lockdep_assert_held(&wil->mutex);
1187 1188 1189 1190 1191 1192 1193

	if (vring->va) {
		wil_err(wil, "Tx ring [%d] already allocated\n", id);
		rc = -EINVAL;
		goto out;
	}

1194
	wil_tx_data_init(txdata);
1195
	vring->is_rx = false;
1196 1197 1198 1199 1200
	vring->size = size;
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		goto out;

1201
	wil->ring2cid_tid[id][0] = wil->max_assoc_sta; /* CID */
1202
	wil->ring2cid_tid[id][1] = 0; /* TID */
1203 1204 1205

	cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);

1206
	if (!vif->privacy)
1207
		txdata->dot1x_open = true;
1208 1209
	rc = wmi_call(wil, WMI_BCAST_VRING_CFG_CMDID, vif->mid,
		      &cmd, sizeof(cmd),
1210 1211
		      WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply),
		      WIL_WMI_CALL_GENERAL_TO_MS);
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
	if (rc)
		goto out_free;

	if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
		wil_err(wil, "Tx config failed, status 0x%02x\n",
			reply.cmd.status);
		rc = -EINVAL;
		goto out_free;
	}

1222 1223
	spin_lock_bh(&txdata->lock);
	vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
1224
	txdata->mid = vif->mid;
1225
	txdata->enabled = 1;
1226
	spin_unlock_bh(&txdata->lock);
1227 1228 1229

	return 0;
 out_free:
1230
	spin_lock_bh(&txdata->lock);
1231 1232
	txdata->enabled = 0;
	txdata->dot1x_open = false;
1233
	spin_unlock_bh(&txdata->lock);
1234
	wil_vring_free(wil, vring);
1235 1236 1237 1238 1239
 out:

	return rc;
}

1240 1241 1242
static struct wil_ring *wil_find_tx_ucast(struct wil6210_priv *wil,
					  struct wil6210_vif *vif,
					  struct sk_buff *skb)
1243
{
1244 1245
	int i, cid;
	const u8 *da = wil_skb_get_da(skb);
1246
	int min_ring_id = wil_get_min_tx_ring_id(wil);
1247

1248 1249
	cid = wil_find_cid(wil, vif->mid, da);

1250
	if (cid < 0 || cid >= wil->max_assoc_sta)
1251
		return NULL;
1252

1253
	/* TODO: fix for multiple TID */
1254
	for (i = min_ring_id; i < ARRAY_SIZE(wil->ring2cid_tid); i++) {
1255 1256
		if (!wil->ring_tx_data[i].dot1x_open &&
		    skb->protocol != cpu_to_be16(ETH_P_PAE))
1257
			continue;
1258 1259 1260
		if (wil->ring2cid_tid[i][0] == cid) {
			struct wil_ring *v = &wil->ring_tx[i];
			struct wil_ring_tx_data *txdata = &wil->ring_tx_data[i];
1261

1262
			wil_dbg_txrx(wil, "find_tx_ucast: (%pM) -> [%d]\n",
1263
				     da, i);
1264
			if (v->va && txdata->enabled) {
1265 1266
				return v;
			} else {
1267 1268 1269
				wil_dbg_txrx(wil,
					     "find_tx_ucast: vring[%d] not valid\n",
					     i);
1270 1271 1272 1273
				return NULL;
			}
		}
	}
1274 1275 1276 1277

	return NULL;
}

1278 1279
static int wil_tx_ring(struct wil6210_priv *wil, struct wil6210_vif *vif,
		       struct wil_ring *ring, struct sk_buff *skb);
1280

1281 1282 1283
static struct wil_ring *wil_find_tx_ring_sta(struct wil6210_priv *wil,
					     struct wil6210_vif *vif,
					     struct sk_buff *skb)
1284
{
1285
	struct wil_ring *ring;
1286 1287
	int i;
	u8 cid;
1288
	struct wil_ring_tx_data  *txdata;
1289
	int min_ring_id = wil_get_min_tx_ring_id(wil);
1290 1291 1292

	/* In the STA mode, it is expected to have only 1 VRING
	 * for the AP we connected to.
1293
	 * find 1-st vring eligible for this skb and use it.
1294
	 */
1295
	for (i = min_ring_id; i < WIL6210_MAX_TX_RINGS; i++) {
1296 1297 1298
		ring = &wil->ring_tx[i];
		txdata = &wil->ring_tx_data[i];
		if (!ring->va || !txdata->enabled || txdata->mid != vif->mid)
1299 1300
			continue;

1301
		cid = wil->ring2cid_tid[i][0];
1302
		if (cid >= wil->max_assoc_sta) /* skip BCAST */
1303 1304
			continue;

1305 1306
		if (!wil->ring_tx_data[i].dot1x_open &&
		    skb->protocol != cpu_to_be16(ETH_P_PAE))
1307
			continue;
1308 1309 1310

		wil_dbg_txrx(wil, "Tx -> ring %d\n", i);

1311
		return ring;
1312 1313
	}

1314
	wil_dbg_txrx(wil, "Tx while no rings active?\n");
1315 1316 1317 1318

	return NULL;
}

1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
/* Use one of 2 strategies:
 *
 * 1. New (real broadcast):
 *    use dedicated broadcast vring
 * 2. Old (pseudo-DMS):
 *    Find 1-st vring and return it;
 *    duplicate skb and send it to other active vrings;
 *    in all cases override dest address to unicast peer's address
 * Use old strategy when new is not supported yet:
 *  - for PBSS
 */
1330 1331 1332
static struct wil_ring *wil_find_tx_bcast_1(struct wil6210_priv *wil,
					    struct wil6210_vif *vif,
					    struct sk_buff *skb)
V
Vladimir Kondratiev 已提交
1333
{
1334 1335 1336
	struct wil_ring *v;
	struct wil_ring_tx_data *txdata;
	int i = vif->bcast_ring;
1337

1338 1339
	if (i < 0)
		return NULL;
1340 1341
	v = &wil->ring_tx[i];
	txdata = &wil->ring_tx_data[i];
1342
	if (!v->va || !txdata->enabled)
1343
		return NULL;
1344 1345
	if (!wil->ring_tx_data[i].dot1x_open &&
	    skb->protocol != cpu_to_be16(ETH_P_PAE))
1346
		return NULL;
V
Vladimir Kondratiev 已提交
1347 1348 1349 1350

	return v;
}

1351 1352 1353
static void wil_set_da_for_vring(struct wil6210_priv *wil,
				 struct sk_buff *skb, int vring_index)
{
1354
	u8 *da = wil_skb_get_da(skb);
1355
	int cid = wil->ring2cid_tid[vring_index][0];
1356

1357
	ether_addr_copy(da, wil->sta[cid].addr);
1358 1359
}

1360 1361 1362
static struct wil_ring *wil_find_tx_bcast_2(struct wil6210_priv *wil,
					    struct wil6210_vif *vif,
					    struct sk_buff *skb)
1363
{
1364
	struct wil_ring *v, *v2;
1365 1366 1367
	struct sk_buff *skb2;
	int i;
	u8 cid;
1368
	const u8 *src = wil_skb_get_sa(skb);
1369
	struct wil_ring_tx_data *txdata, *txdata2;
1370
	int min_ring_id = wil_get_min_tx_ring_id(wil);
1371 1372

	/* find 1-st vring eligible for data */
1373
	for (i = min_ring_id; i < WIL6210_MAX_TX_RINGS; i++) {
1374 1375
		v = &wil->ring_tx[i];
		txdata = &wil->ring_tx_data[i];
1376
		if (!v->va || !txdata->enabled || txdata->mid != vif->mid)
1377 1378
			continue;

1379
		cid = wil->ring2cid_tid[i][0];
1380
		if (cid >= wil->max_assoc_sta) /* skip BCAST */
1381
			continue;
1382 1383
		if (!wil->ring_tx_data[i].dot1x_open &&
		    skb->protocol != cpu_to_be16(ETH_P_PAE))
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
			continue;

		/* don't Tx back to source when re-routing Rx->Tx at the AP */
		if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
			continue;

		goto found;
	}

	wil_dbg_txrx(wil, "Tx while no vrings active?\n");

	return NULL;

found:
	wil_dbg_txrx(wil, "BCAST -> ring %d\n", i);
	wil_set_da_for_vring(wil, skb, i);

	/* find other active vrings and duplicate skb for each */
	for (i++; i < WIL6210_MAX_TX_RINGS; i++) {
1403 1404
		v2 = &wil->ring_tx[i];
		txdata2 = &wil->ring_tx_data[i];
1405
		if (!v2->va || txdata2->mid != vif->mid)
1406
			continue;
1407
		cid = wil->ring2cid_tid[i][0];
1408
		if (cid >= wil->max_assoc_sta) /* skip BCAST */
1409
			continue;
1410 1411
		if (!wil->ring_tx_data[i].dot1x_open &&
		    skb->protocol != cpu_to_be16(ETH_P_PAE))
1412 1413 1414 1415 1416 1417 1418 1419 1420
			continue;

		if (0 == memcmp(wil->sta[cid].addr, src, ETH_ALEN))
			continue;

		skb2 = skb_copy(skb, GFP_ATOMIC);
		if (skb2) {
			wil_dbg_txrx(wil, "BCAST DUP -> ring %d\n", i);
			wil_set_da_for_vring(wil, skb2, i);
1421
			wil_tx_ring(wil, vif, v2, skb2);
1422 1423
			/* successful call to wil_tx_ring takes skb2 ref */
			dev_kfree_skb_any(skb2);
1424 1425 1426 1427 1428 1429 1430 1431
		} else {
			wil_err(wil, "skb_copy failed\n");
		}
	}

	return v;
}

1432 1433 1434
static inline
void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
{
1435
	d->mac.d[2] |= (nr_frags << MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
1436 1437
}

1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
/**
 * Sets the descriptor @d up for csum and/or TSO offloading. The corresponding
 * @skb is used to obtain the protocol and headers length.
 * @tso_desc_type is a descriptor type for TSO: 0 - a header, 1 - first data,
 * 2 - middle, 3 - last descriptor.
 */

static void wil_tx_desc_offload_setup_tso(struct vring_tx_desc *d,
					  struct sk_buff *skb,
					  int tso_desc_type, bool is_ipv4,
					  int tcp_hdr_len, int skb_net_hdr_len)
1449
{
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
	d->dma.b11 = ETH_HLEN; /* MAC header length */
	d->dma.b11 |= is_ipv4 << DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS;

	d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
	/* L4 header len: TCP header length */
	d->dma.d0 |= (tcp_hdr_len & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);

	/* Setup TSO: bit and desc type */
	d->dma.d0 |= (BIT(DMA_CFG_DESC_TX_0_TCP_SEG_EN_POS)) |
		(tso_desc_type << DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS);
	d->dma.d0 |= (is_ipv4 << DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_POS);

	d->dma.ip_length = skb_net_hdr_len;
	/* Enable TCP/UDP checksum */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
	/* Calculate pseudo-header */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);
}

/**
 * Sets the descriptor @d up for csum. The corresponding
 * @skb is used to obtain the protocol and headers length.
 * Returns the protocol: 0 - not TCP, 1 - TCPv4, 2 - TCPv6.
 * Note, if d==NULL, the function only returns the protocol result.
 *
 * It is very similar to previous wil_tx_desc_offload_setup_tso. This
 * is "if unrolling" to optimize the critical path.
 */

static int wil_tx_desc_offload_setup(struct vring_tx_desc *d,
				     struct sk_buff *skb){
1481 1482 1483 1484 1485
	int protocol;

	if (skb->ip_summed != CHECKSUM_PARTIAL)
		return 0;

1486 1487
	d->dma.b11 = ETH_HLEN; /* MAC header length */

1488 1489 1490
	switch (skb->protocol) {
	case cpu_to_be16(ETH_P_IP):
		protocol = ip_hdr(skb)->protocol;
1491
		d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
		break;
	case cpu_to_be16(ETH_P_IPV6):
		protocol = ipv6_hdr(skb)->nexthdr;
		break;
	default:
		return -EINVAL;
	}

	switch (protocol) {
	case IPPROTO_TCP:
		d->dma.d0 |= (2 << DMA_CFG_DESC_TX_0_L4_TYPE_POS);
		/* L4 header len: TCP header length */
		d->dma.d0 |=
		(tcp_hdrlen(skb) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
		break;
	case IPPROTO_UDP:
		/* L4 header len: UDP header length */
		d->dma.d0 |=
		(sizeof(struct udphdr) & DMA_CFG_DESC_TX_0_L4_LENGTH_MSK);
		break;
	default:
		return -EINVAL;
	}

	d->dma.ip_length = skb_network_header_len(skb);
	/* Enable TCP/UDP checksum */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS);
	/* Calculate pseudo-header */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS);

	return 0;
}

1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
static inline void wil_tx_last_desc(struct vring_tx_desc *d)
{
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS) |
	      BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS) |
	      BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
}

static inline void wil_set_tx_desc_last_tso(volatile struct vring_tx_desc *d)
{
	d->dma.d0 |= wil_tso_type_lst <<
		  DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS;
}

1538
static int __wil_tx_vring_tso(struct wil6210_priv *wil, struct wil6210_vif *vif,
1539
			      struct wil_ring *vring, struct sk_buff *skb)
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
{
	struct device *dev = wil_to_dev(wil);

	/* point to descriptors in shared memory */
	volatile struct vring_tx_desc *_desc = NULL, *_hdr_desc,
				      *_first_desc = NULL;

	/* pointers to shadow descriptors */
	struct vring_tx_desc desc_mem, hdr_desc_mem, first_desc_mem,
			     *d = &hdr_desc_mem, *hdr_desc = &hdr_desc_mem,
			     *first_desc = &first_desc_mem;

	/* pointer to shadow descriptors' context */
	struct wil_ctx *hdr_ctx, *first_ctx = NULL;

	int descs_used = 0; /* total number of used descriptors */
	int sg_desc_cnt = 0; /* number of descriptors for current mss*/

	u32 swhead = vring->swhead;
1559
	int used, avail = wil_ring_avail_tx(vring);
1560 1561 1562 1563
	int nr_frags = skb_shinfo(skb)->nr_frags;
	int min_desc_required = nr_frags + 1;
	int mss = skb_shinfo(skb)->gso_size;	/* payload size w/o headers */
	int f, len, hdrlen, headlen;
1564 1565
	int vring_index = vring - wil->ring_tx;
	struct wil_ring_tx_data *txdata = &wil->ring_tx_data[vring_index];
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
	uint i = swhead;
	dma_addr_t pa;
	const skb_frag_t *frag = NULL;
	int rem_data = mss;
	int lenmss;
	int hdr_compensation_need = true;
	int desc_tso_type = wil_tso_type_first;
	bool is_ipv4;
	int tcp_hdr_len;
	int skb_net_hdr_len;
	int gso_type;
H
Hamad Kadmany 已提交
1577
	int rc = -EINVAL;
1578

1579 1580
	wil_dbg_txrx(wil, "tx_vring_tso: %d bytes to vring %d\n", skb->len,
		     vring_index);
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632

	if (unlikely(!txdata->enabled))
		return -EINVAL;

	/* A typical page 4K is 3-4 payloads, we assume each fragment
	 * is a full payload, that's how min_desc_required has been
	 * calculated. In real we might need more or less descriptors,
	 * this is the initial check only.
	 */
	if (unlikely(avail < min_desc_required)) {
		wil_err_ratelimited(wil,
				    "TSO: Tx ring[%2d] full. No space for %d fragments\n",
				    vring_index, min_desc_required);
		return -ENOMEM;
	}

	/* Header Length = MAC header len + IP header len + TCP header len*/
	hdrlen = ETH_HLEN +
		(int)skb_network_header_len(skb) +
		tcp_hdrlen(skb);

	gso_type = skb_shinfo(skb)->gso_type & (SKB_GSO_TCPV6 | SKB_GSO_TCPV4);
	switch (gso_type) {
	case SKB_GSO_TCPV4:
		/* TCP v4, zero out the IP length and IPv4 checksum fields
		 * as required by the offloading doc
		 */
		ip_hdr(skb)->tot_len = 0;
		ip_hdr(skb)->check = 0;
		is_ipv4 = true;
		break;
	case SKB_GSO_TCPV6:
		/* TCP v6, zero out the payload length */
		ipv6_hdr(skb)->payload_len = 0;
		is_ipv4 = false;
		break;
	default:
		/* other than TCPv4 or TCPv6 types are not supported for TSO.
		 * It is also illegal for both to be set simultaneously
		 */
		return -EINVAL;
	}

	if (skb->ip_summed != CHECKSUM_PARTIAL)
		return -EINVAL;

	/* tcp header length and skb network header length are fixed for all
	 * packet's descriptors - read then once here
	 */
	tcp_hdr_len = tcp_hdrlen(skb);
	skb_net_hdr_len = skb_network_header_len(skb);

1633
	_hdr_desc = &vring->va[i].tx.legacy;
1634 1635 1636 1637 1638 1639 1640

	pa = dma_map_single(dev, skb->data, hdrlen, DMA_TO_DEVICE);
	if (unlikely(dma_mapping_error(dev, pa))) {
		wil_err(wil, "TSO: Skb head DMA map error\n");
		goto err_exit;
	}

1641 1642
	wil->txrx_ops.tx_desc_map((union wil_tx_desc *)hdr_desc, pa,
				  hdrlen, vring_index);
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
	wil_tx_desc_offload_setup_tso(hdr_desc, skb, wil_tso_type_hdr, is_ipv4,
				      tcp_hdr_len, skb_net_hdr_len);
	wil_tx_last_desc(hdr_desc);

	vring->ctx[i].mapped_as = wil_mapped_as_single;
	hdr_ctx = &vring->ctx[i];

	descs_used++;
	headlen = skb_headlen(skb) - hdrlen;

	for (f = headlen ? -1 : 0; f < nr_frags; f++)  {
		if (headlen) {
			len = headlen;
			wil_dbg_txrx(wil, "TSO: process skb head, len %u\n",
				     len);
		} else {
			frag = &skb_shinfo(skb)->frags[f];
1660
			len = skb_frag_size(frag);
1661 1662 1663 1664 1665 1666 1667 1668 1669
			wil_dbg_txrx(wil, "TSO: frag[%d]: len %u\n", f, len);
		}

		while (len) {
			wil_dbg_txrx(wil,
				     "TSO: len %d, rem_data %d, descs_used %d\n",
				     len, rem_data, descs_used);

			if (descs_used == avail)  {
H
Hamad Kadmany 已提交
1670 1671 1672
				wil_err_ratelimited(wil, "TSO: ring overflow\n");
				rc = -ENOMEM;
				goto mem_error;
1673 1674 1675 1676 1677 1678 1679 1680
			}

			lenmss = min_t(int, rem_data, len);
			i = (swhead + descs_used) % vring->size;
			wil_dbg_txrx(wil, "TSO: lenmss %d, i %d\n", lenmss, i);

			if (!headlen) {
				pa = skb_frag_dma_map(dev, frag,
1681 1682
						      skb_frag_size(frag) - len,
						      lenmss, DMA_TO_DEVICE);
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
				vring->ctx[i].mapped_as = wil_mapped_as_page;
			} else {
				pa = dma_map_single(dev,
						    skb->data +
						    skb_headlen(skb) - headlen,
						    lenmss,
						    DMA_TO_DEVICE);
				vring->ctx[i].mapped_as = wil_mapped_as_single;
				headlen -= lenmss;
			}

H
Hamad Kadmany 已提交
1694 1695 1696 1697
			if (unlikely(dma_mapping_error(dev, pa))) {
				wil_err(wil, "TSO: DMA map page error\n");
				goto mem_error;
			}
1698

1699
			_desc = &vring->va[i].tx.legacy;
1700 1701 1702 1703 1704 1705 1706 1707 1708

			if (!_first_desc) {
				_first_desc = _desc;
				first_ctx = &vring->ctx[i];
				d = first_desc;
			} else {
				d = &desc_mem;
			}

1709 1710
			wil->txrx_ops.tx_desc_map((union wil_tx_desc *)d,
						  pa, lenmss, vring_index);
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
			wil_tx_desc_offload_setup_tso(d, skb, desc_tso_type,
						      is_ipv4, tcp_hdr_len,
						      skb_net_hdr_len);

			/* use tso_type_first only once */
			desc_tso_type = wil_tso_type_mid;

			descs_used++;  /* desc used so far */
			sg_desc_cnt++; /* desc used for this segment */
			len -= lenmss;
			rem_data -= lenmss;

			wil_dbg_txrx(wil,
				     "TSO: len %d, rem_data %d, descs_used %d, sg_desc_cnt %d,\n",
				     len, rem_data, descs_used, sg_desc_cnt);

			/* Close the segment if reached mss size or last frag*/
			if (rem_data == 0 || (f == nr_frags - 1 && len == 0)) {
				if (hdr_compensation_need) {
					/* first segment include hdr desc for
					 * release
					 */
					hdr_ctx->nr_frags = sg_desc_cnt;
					wil_tx_desc_set_nr_frags(first_desc,
								 sg_desc_cnt +
								 1);
					hdr_compensation_need = false;
				} else {
					wil_tx_desc_set_nr_frags(first_desc,
								 sg_desc_cnt);
				}
				first_ctx->nr_frags = sg_desc_cnt - 1;

				wil_tx_last_desc(d);

				/* first descriptor may also be the last
				 * for this mss - make sure not to copy
				 * it twice
				 */
				if (first_desc != d)
					*_first_desc = *first_desc;

				/*last descriptor will be copied at the end
				 * of this TS processing
				 */
				if (f < nr_frags - 1 || len > 0)
					*_desc = *d;

				rem_data = mss;
				_first_desc = NULL;
				sg_desc_cnt = 0;
			} else if (first_desc != d) /* update mid descriptor */
					*_desc = *d;
		}
	}

1767 1768 1769
	if (!_desc)
		goto mem_error;

1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
	/* first descriptor may also be the last.
	 * in this case d pointer is invalid
	 */
	if (_first_desc == _desc)
		d = first_desc;

	/* Last data descriptor */
	wil_set_tx_desc_last_tso(d);
	*_desc = *d;

	/* Fill the total number of descriptors in first desc (hdr)*/
	wil_tx_desc_set_nr_frags(hdr_desc, descs_used);
	*_hdr_desc = *hdr_desc;

	/* hold reference to skb
	 * to prevent skb release before accounting
	 * in case of immediate "tx done"
	 */
	vring->ctx[i].skb = skb_get(skb);

	/* performance monitoring */
1791 1792
	used = wil_ring_used_tx(vring);
	if (wil_val_in_range(wil->ring_idle_trsh,
1793 1794 1795 1796 1797 1798
			     used, used + descs_used)) {
		txdata->idle += get_cycles() - txdata->last_idle;
		wil_dbg_txrx(wil,  "Ring[%2d] not idle %d -> %d\n",
			     vring_index, used, used + descs_used);
	}

1799 1800 1801 1802 1803 1804 1805
	/* Make sure to advance the head only after descriptor update is done.
	 * This will prevent a race condition where the completion thread
	 * will see the DU bit set from previous run and will handle the
	 * skb before it was completed.
	 */
	wmb();

1806
	/* advance swhead */
1807
	wil_ring_advance_head(vring, descs_used);
H
Hamad Kadmany 已提交
1808
	wil_dbg_txrx(wil, "TSO: Tx swhead %d -> %d\n", swhead, vring->swhead);
1809 1810 1811 1812 1813 1814

	/* make sure all writes to descriptors (shared memory) are done before
	 * committing them to HW
	 */
	wmb();

D
Dedy Lansky 已提交
1815 1816 1817 1818 1819
	if (wil->tx_latency)
		*(ktime_t *)&skb->cb = ktime_get();
	else
		memset(skb->cb, 0, sizeof(ktime_t));

1820
	wil_w(wil, vring->hwtail, vring->swhead);
1821 1822
	return 0;

H
Hamad Kadmany 已提交
1823
mem_error:
1824 1825 1826
	while (descs_used > 0) {
		struct wil_ctx *ctx;

1827
		i = (swhead + descs_used - 1) % vring->size;
1828 1829
		d = (struct vring_tx_desc *)&vring->va[i].tx.legacy;
		_desc = &vring->va[i].tx.legacy;
1830 1831 1832
		*d = *_desc;
		_desc->dma.status = TX_DMA_STATUS_DU;
		ctx = &vring->ctx[i];
1833
		wil_txdesc_unmap(dev, (union wil_tx_desc *)d, ctx);
1834 1835 1836 1837
		memset(ctx, 0, sizeof(*ctx));
		descs_used--;
	}
err_exit:
H
Hamad Kadmany 已提交
1838
	return rc;
1839 1840
}

1841 1842
static int __wil_tx_ring(struct wil6210_priv *wil, struct wil6210_vif *vif,
			 struct wil_ring *ring, struct sk_buff *skb)
1843 1844
{
	struct device *dev = wil_to_dev(wil);
1845 1846
	struct vring_tx_desc dd, *d = &dd;
	volatile struct vring_tx_desc *_d;
1847 1848
	u32 swhead = ring->swhead;
	int avail = wil_ring_avail_tx(ring);
1849
	int nr_frags = skb_shinfo(skb)->nr_frags;
1850
	uint f = 0;
1851 1852
	int ring_index = ring - wil->ring_tx;
	struct wil_ring_tx_data  *txdata = &wil->ring_tx_data[ring_index];
1853 1854
	uint i = swhead;
	dma_addr_t pa;
1855
	int used;
1856
	bool mcast = (ring_index == vif->bcast_ring);
1857
	uint len = skb_headlen(skb);
1858

1859
	wil_dbg_txrx(wil, "tx_ring: %d bytes to ring %d, nr_frags %d\n",
1860
		     skb->len, ring_index, nr_frags);
1861

1862 1863 1864
	if (unlikely(!txdata->enabled))
		return -EINVAL;

1865
	if (unlikely(avail < 1 + nr_frags)) {
1866
		wil_err_ratelimited(wil,
V
Vladimir Kondratiev 已提交
1867
				    "Tx ring[%2d] full. No space for %d fragments\n",
1868
				    ring_index, 1 + nr_frags);
1869 1870
		return -ENOMEM;
	}
1871
	_d = &ring->va[i].tx.legacy;
1872

1873
	pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
1874

1875
	wil_dbg_txrx(wil, "Tx[%2d] skb %d bytes 0x%p -> %pad\n", ring_index,
V
Vladimir Kondratiev 已提交
1876
		     skb_headlen(skb), skb->data, &pa);
1877
	wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
1878 1879 1880 1881
			  skb->data, skb_headlen(skb), false);

	if (unlikely(dma_mapping_error(dev, pa)))
		return -EINVAL;
1882
	ring->ctx[i].mapped_as = wil_mapped_as_single;
1883
	/* 1-st segment */
1884 1885
	wil->txrx_ops.tx_desc_map((union wil_tx_desc *)d, pa, len,
				   ring_index);
1886 1887
	if (unlikely(mcast)) {
		d->mac.d[0] |= BIT(MAC_CFG_DESC_TX_0_MCS_EN_POS); /* MCS 0 */
1888
		if (unlikely(len > WIL_BCAST_MCS0_LIMIT)) /* set MCS 1 */
1889 1890
			d->mac.d[0] |= (1 << MAC_CFG_DESC_TX_0_MCS_INDEX_POS);
	}
1891
	/* Process TCP/UDP checksum offloading */
1892
	if (unlikely(wil_tx_desc_offload_setup(d, skb))) {
V
Vladimir Kondratiev 已提交
1893
		wil_err(wil, "Tx[%2d] Failed to set cksum, drop packet\n",
1894
			ring_index);
1895 1896 1897
		goto dma_error;
	}

1898
	ring->ctx[i].nr_frags = nr_frags;
1899
	wil_tx_desc_set_nr_frags(d, nr_frags + 1);
1900

1901
	/* middle segments */
1902
	for (; f < nr_frags; f++) {
1903
		const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1904
		int len = skb_frag_size(frag);
1905

1906
		*_d = *d;
1907
		wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", ring_index, i);
V
Vladimir Kondratiev 已提交
1908 1909
		wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
				  (const void *)d, sizeof(*d), false);
1910 1911
		i = (swhead + f + 1) % ring->size;
		_d = &ring->va[i].tx.legacy;
1912
		pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
1913
				      DMA_TO_DEVICE);
H
Hamad Kadmany 已提交
1914 1915
		if (unlikely(dma_mapping_error(dev, pa))) {
			wil_err(wil, "Tx[%2d] failed to map fragment\n",
1916
				ring_index);
1917
			goto dma_error;
H
Hamad Kadmany 已提交
1918
		}
1919 1920 1921
		ring->ctx[i].mapped_as = wil_mapped_as_page;
		wil->txrx_ops.tx_desc_map((union wil_tx_desc *)d,
					   pa, len, ring_index);
1922 1923 1924 1925
		/* no need to check return code -
		 * if it succeeded for 1-st descriptor,
		 * it will succeed here too
		 */
1926
		wil_tx_desc_offload_setup(d, skb);
1927 1928 1929
	}
	/* for the last seg only */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
1930
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
1931
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
1932
	*_d = *d;
1933
	wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", ring_index, i);
V
Vladimir Kondratiev 已提交
1934 1935
	wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
			  (const void *)d, sizeof(*d), false);
1936

1937 1938 1939 1940
	/* hold reference to skb
	 * to prevent skb release before accounting
	 * in case of immediate "tx done"
	 */
1941
	ring->ctx[i].skb = skb_get(skb);
1942

1943
	/* performance monitoring */
1944
	used = wil_ring_used_tx(ring);
1945
	if (wil_val_in_range(wil->ring_idle_trsh,
1946
			     used, used + nr_frags + 1)) {
1947
		txdata->idle += get_cycles() - txdata->last_idle;
1948
		wil_dbg_txrx(wil,  "Ring[%2d] not idle %d -> %d\n",
1949
			     ring_index, used, used + nr_frags + 1);
1950
	}
1951

1952 1953 1954 1955 1956 1957 1958
	/* Make sure to advance the head only after descriptor update is done.
	 * This will prevent a race condition where the completion thread
	 * will see the DU bit set from previous run and will handle the
	 * skb before it was completed.
	 */
	wmb();

1959
	/* advance swhead */
1960 1961 1962 1963
	wil_ring_advance_head(ring, nr_frags + 1);
	wil_dbg_txrx(wil, "Tx[%2d] swhead %d -> %d\n", ring_index, swhead,
		     ring->swhead);
	trace_wil6210_tx(ring_index, swhead, skb->len, nr_frags);
1964 1965 1966 1967 1968 1969

	/* make sure all writes to descriptors (shared memory) are done before
	 * committing them to HW
	 */
	wmb();

D
Dedy Lansky 已提交
1970 1971 1972 1973 1974
	if (wil->tx_latency)
		*(ktime_t *)&skb->cb = ktime_get();
	else
		memset(skb->cb, 0, sizeof(ktime_t));

1975
	wil_w(wil, ring->hwtail, ring->swhead);
1976 1977 1978 1979

	return 0;
 dma_error:
	/* unmap what we have mapped */
1980 1981 1982
	nr_frags = f + 1; /* frags mapped + one for skb head */
	for (f = 0; f < nr_frags; f++) {
		struct wil_ctx *ctx;
1983

1984 1985 1986
		i = (swhead + f) % ring->size;
		ctx = &ring->ctx[i];
		_d = &ring->va[i].tx.legacy;
1987 1988
		*d = *_d;
		_d->dma.status = TX_DMA_STATUS_DU;
1989 1990 1991
		wil->txrx_ops.tx_desc_unmap(dev,
					    (union wil_tx_desc *)d,
					    ctx);
1992 1993

		memset(ctx, 0, sizeof(*ctx));
1994 1995 1996 1997 1998
	}

	return -EINVAL;
}

1999 2000
static int wil_tx_ring(struct wil6210_priv *wil, struct wil6210_vif *vif,
		       struct wil_ring *ring, struct sk_buff *skb)
2001
{
2002
	int ring_index = ring - wil->ring_tx;
2003
	struct wil_ring_tx_data *txdata = &wil->ring_tx_data[ring_index];
2004 2005 2006
	int rc;

	spin_lock(&txdata->lock);
2007

2008 2009 2010 2011 2012 2013 2014 2015 2016
	if (test_bit(wil_status_suspending, wil->status) ||
	    test_bit(wil_status_suspended, wil->status) ||
	    test_bit(wil_status_resuming, wil->status)) {
		wil_dbg_txrx(wil,
			     "suspend/resume in progress. drop packet\n");
		spin_unlock(&txdata->lock);
		return -EINVAL;
	}

2017 2018
	rc = (skb_is_gso(skb) ? wil->txrx_ops.tx_ring_tso : __wil_tx_ring)
	     (wil, vif, ring, skb);
2019

2020
	spin_unlock(&txdata->lock);
2021

2022 2023 2024
	return rc;
}

D
Dedy Lansky 已提交
2025 2026
/**
 * Check status of tx vrings and stop/wake net queues if needed
2027
 * It will start/stop net queues of a specific VIF net_device.
D
Dedy Lansky 已提交
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042
 *
 * This function does one of two checks:
 * In case check_stop is true, will check if net queues need to be stopped. If
 * the conditions for stopping are met, netif_tx_stop_all_queues() is called.
 * In case check_stop is false, will check if net queues need to be waked. If
 * the conditions for waking are met, netif_tx_wake_all_queues() is called.
 * vring is the vring which is currently being modified by either adding
 * descriptors (tx) into it or removing descriptors (tx complete) from it. Can
 * be null when irrelevant (e.g. connect/disconnect events).
 *
 * The implementation is to stop net queues if modified vring has low
 * descriptor availability. Wake if all vrings are not in low descriptor
 * availability and modified vring has high descriptor availability.
 */
static inline void __wil_update_net_queues(struct wil6210_priv *wil,
2043
					   struct wil6210_vif *vif,
2044
					   struct wil_ring *ring,
D
Dedy Lansky 已提交
2045 2046 2047
					   bool check_stop)
{
	int i;
2048
	int min_ring_id = wil_get_min_tx_ring_id(wil);
D
Dedy Lansky 已提交
2049

2050 2051 2052
	if (unlikely(!vif))
		return;

2053
	if (ring)
2054
		wil_dbg_txrx(wil, "vring %d, mid %d, check_stop=%d, stopped=%d",
2055
			     (int)(ring - wil->ring_tx), vif->mid, check_stop,
2056
			     vif->net_queue_stopped);
D
Dedy Lansky 已提交
2057
	else
2058 2059
		wil_dbg_txrx(wil, "check_stop=%d, mid=%d, stopped=%d",
			     check_stop, vif->mid, vif->net_queue_stopped);
D
Dedy Lansky 已提交
2060

2061 2062 2063 2064
	if (ring && drop_if_ring_full)
		/* no need to stop/wake net queues */
		return;

2065
	if (check_stop == vif->net_queue_stopped)
D
Dedy Lansky 已提交
2066 2067 2068 2069
		/* net queues already in desired state */
		return;

	if (check_stop) {
2070
		if (!ring || unlikely(wil_ring_avail_low(ring))) {
D
Dedy Lansky 已提交
2071
			/* not enough room in the vring */
2072 2073
			netif_tx_stop_all_queues(vif_to_ndev(vif));
			vif->net_queue_stopped = true;
D
Dedy Lansky 已提交
2074 2075 2076 2077 2078
			wil_dbg_txrx(wil, "netif_tx_stop called\n");
		}
		return;
	}

2079 2080 2081 2082 2083
	/* Do not wake the queues in suspend flow */
	if (test_bit(wil_status_suspending, wil->status) ||
	    test_bit(wil_status_suspended, wil->status))
		return;

D
Dedy Lansky 已提交
2084
	/* check wake */
2085
	for (i = min_ring_id; i < WIL6210_MAX_TX_RINGS; i++) {
2086 2087
		struct wil_ring *cur_ring = &wil->ring_tx[i];
		struct wil_ring_tx_data  *txdata = &wil->ring_tx_data[i];
D
Dedy Lansky 已提交
2088

2089 2090
		if (txdata->mid != vif->mid || !cur_ring->va ||
		    !txdata->enabled || cur_ring == ring)
D
Dedy Lansky 已提交
2091 2092
			continue;

2093 2094 2095
		if (wil_ring_avail_low(cur_ring)) {
			wil_dbg_txrx(wil, "ring %d full, can't wake\n",
				     (int)(cur_ring - wil->ring_tx));
D
Dedy Lansky 已提交
2096 2097 2098 2099
			return;
		}
	}

2100 2101
	if (!ring || wil_ring_avail_high(ring)) {
		/* enough room in the ring */
D
Dedy Lansky 已提交
2102
		wil_dbg_txrx(wil, "calling netif_tx_wake\n");
2103 2104
		netif_tx_wake_all_queues(vif_to_ndev(vif));
		vif->net_queue_stopped = false;
D
Dedy Lansky 已提交
2105 2106 2107
	}
}

2108
void wil_update_net_queues(struct wil6210_priv *wil, struct wil6210_vif *vif,
2109
			   struct wil_ring *ring, bool check_stop)
D
Dedy Lansky 已提交
2110 2111
{
	spin_lock(&wil->net_queue_lock);
2112
	__wil_update_net_queues(wil, vif, ring, check_stop);
D
Dedy Lansky 已提交
2113 2114 2115
	spin_unlock(&wil->net_queue_lock);
}

2116
void wil_update_net_queues_bh(struct wil6210_priv *wil, struct wil6210_vif *vif,
2117
			      struct wil_ring *ring, bool check_stop)
D
Dedy Lansky 已提交
2118 2119
{
	spin_lock_bh(&wil->net_queue_lock);
2120
	__wil_update_net_queues(wil, vif, ring, check_stop);
D
Dedy Lansky 已提交
2121 2122 2123
	spin_unlock_bh(&wil->net_queue_lock);
}

2124 2125
netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
2126 2127
	struct wil6210_vif *vif = ndev_to_vif(ndev);
	struct wil6210_priv *wil = vif_to_wil(vif);
2128 2129
	const u8 *da = wil_skb_get_da(skb);
	bool bcast = is_multicast_ether_addr(da);
2130
	struct wil_ring *ring;
2131
	static bool pr_once_fw;
2132 2133
	int rc;

2134
	wil_dbg_txrx(wil, "start_xmit\n");
2135
	if (unlikely(!test_bit(wil_status_fwready, wil->status))) {
2136 2137 2138 2139
		if (!pr_once_fw) {
			wil_err(wil, "FW not ready\n");
			pr_once_fw = true;
		}
2140 2141
		goto drop;
	}
2142 2143 2144
	if (unlikely(!test_bit(wil_vif_fwconnected, vif->status))) {
		wil_dbg_ratelimited(wil,
				    "VIF not connected, packet dropped\n");
2145 2146
		goto drop;
	}
2147
	if (unlikely(vif->wdev.iftype == NL80211_IFTYPE_MONITOR)) {
2148 2149 2150
		wil_err(wil, "Xmit in monitor mode not supported\n");
		goto drop;
	}
2151
	pr_once_fw = false;
2152 2153

	/* find vring */
2154
	if (vif->wdev.iftype == NL80211_IFTYPE_STATION && !vif->pbss) {
2155
		/* in STA mode (ESS), all to same VRING (to AP) */
2156
		ring = wil_find_tx_ring_sta(wil, vif, skb);
2157
	} else if (bcast) {
2158
		if (vif->pbss)
2159 2160 2161
			/* in pbss, no bcast VRING - duplicate skb in
			 * all stations VRINGs
			 */
2162
			ring = wil_find_tx_bcast_2(wil, vif, skb);
2163
		else if (vif->wdev.iftype == NL80211_IFTYPE_AP)
2164
			/* AP has a dedicated bcast VRING */
2165
			ring = wil_find_tx_bcast_1(wil, vif, skb);
2166 2167 2168 2169
		else
			/* unexpected combination, fallback to duplicating
			 * the skb in all stations VRINGs
			 */
2170
			ring = wil_find_tx_bcast_2(wil, vif, skb);
2171 2172
	} else {
		/* unicast, find specific VRING by dest. address */
2173
		ring = wil_find_tx_ucast(wil, vif, skb);
2174
	}
2175
	if (unlikely(!ring)) {
2176
		wil_dbg_txrx(wil, "No Tx RING found for %pM\n", da);
2177
		goto drop;
2178
	}
2179
	/* set up vring entry */
2180
	rc = wil_tx_ring(wil, vif, ring, skb);
2181

2182 2183
	switch (rc) {
	case 0:
D
Dedy Lansky 已提交
2184
		/* shall we stop net queues? */
2185
		wil_update_net_queues_bh(wil, vif, ring, true);
2186
		/* statistics will be updated on the tx_complete */
2187 2188 2189
		dev_kfree_skb_any(skb);
		return NETDEV_TX_OK;
	case -ENOMEM:
2190 2191
		if (drop_if_ring_full)
			goto drop;
2192 2193
		return NETDEV_TX_BUSY;
	default:
2194
		break; /* goto drop; */
2195 2196 2197 2198 2199 2200 2201 2202
	}
 drop:
	ndev->stats.tx_dropped++;
	dev_kfree_skb_any(skb);

	return NET_XMIT_DROP;
}

D
Dedy Lansky 已提交
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
void wil_tx_latency_calc(struct wil6210_priv *wil, struct sk_buff *skb,
			 struct wil_sta_info *sta)
{
	int skb_time_us;
	int bin;

	if (!wil->tx_latency)
		return;

	if (ktime_to_ms(*(ktime_t *)&skb->cb) == 0)
		return;

	skb_time_us = ktime_us_delta(ktime_get(), *(ktime_t *)&skb->cb);
	bin = skb_time_us / wil->tx_latency_res;
	bin = min_t(int, bin, WIL_NUM_LATENCY_BINS - 1);

	wil_dbg_txrx(wil, "skb time %dus => bin %d\n", skb_time_us, bin);
	sta->tx_latency_bins[bin]++;
	sta->stats.tx_latency_total_us += skb_time_us;
	if (skb_time_us < sta->stats.tx_latency_min_us)
		sta->stats.tx_latency_min_us = skb_time_us;
	if (skb_time_us > sta->stats.tx_latency_max_us)
		sta->stats.tx_latency_max_us = skb_time_us;
}

2228 2229 2230
/**
 * Clean up transmitted skb's from the Tx VRING
 *
V
Vladimir Kondratiev 已提交
2231 2232
 * Return number of descriptors cleared
 *
2233 2234
 * Safe to call from IRQ
 */
2235
int wil_tx_complete(struct wil6210_vif *vif, int ringid)
2236
{
2237 2238
	struct wil6210_priv *wil = vif_to_wil(vif);
	struct net_device *ndev = vif_to_ndev(vif);
2239
	struct device *dev = wil_to_dev(wil);
2240 2241
	struct wil_ring *vring = &wil->ring_tx[ringid];
	struct wil_ring_tx_data *txdata = &wil->ring_tx_data[ringid];
V
Vladimir Kondratiev 已提交
2242
	int done = 0;
2243
	int cid = wil->ring2cid_tid[ringid][0];
2244
	struct wil_net_stats *stats = NULL;
2245
	volatile struct vring_tx_desc *_d;
2246 2247
	int used_before_complete;
	int used_new;
2248

2249
	if (unlikely(!vring->va)) {
2250
		wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
V
Vladimir Kondratiev 已提交
2251
		return 0;
2252 2253
	}

2254
	if (unlikely(!txdata->enabled)) {
2255 2256 2257 2258
		wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
		return 0;
	}

2259
	wil_dbg_txrx(wil, "tx_complete: (%d)\n", ringid);
2260

2261
	used_before_complete = wil_ring_used_tx(vring);
2262

2263
	if (cid < wil->max_assoc_sta)
2264 2265
		stats = &wil->sta[cid].stats;

2266
	while (!wil_ring_is_empty(vring)) {
2267
		int new_swtail;
2268
		struct wil_ctx *ctx = &vring->ctx[vring->swtail];
2269 2270
		/**
		 * For the fragmented skb, HW will set DU bit only for the
2271 2272
		 * last fragment. look for it.
		 * In TSO the first DU will include hdr desc
2273 2274 2275
		 */
		int lf = (vring->swtail + ctx->nr_frags) % vring->size;
		/* TODO: check we are not past head */
2276

2277
		_d = &vring->va[lf].tx.legacy;
2278
		if (unlikely(!(_d->dma.status & TX_DMA_STATUS_DU)))
2279 2280
			break;

2281 2282 2283 2284
		new_swtail = (lf + 1) % vring->size;
		while (vring->swtail != new_swtail) {
			struct vring_tx_desc dd, *d = &dd;
			u16 dmalen;
2285 2286 2287 2288
			struct sk_buff *skb;

			ctx = &vring->ctx[vring->swtail];
			skb = ctx->skb;
2289
			_d = &vring->va[vring->swtail].tx.legacy;
2290

2291
			*d = *_d;
2292

2293 2294 2295 2296
			dmalen = le16_to_cpu(d->dma.length);
			trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
					      d->dma.error);
			wil_dbg_txrx(wil,
V
Vladimir Kondratiev 已提交
2297 2298 2299 2300
				     "TxC[%2d][%3d] : %d bytes, status 0x%02x err 0x%02x\n",
				     ringid, vring->swtail, dmalen,
				     d->dma.status, d->dma.error);
			wil_hex_dump_txrx("TxCD ", DUMP_PREFIX_NONE, 32, 4,
2301
					  (const void *)d, sizeof(*d), false);
2302

2303 2304 2305
			wil->txrx_ops.tx_desc_unmap(dev,
						    (union wil_tx_desc *)d,
						    ctx);
2306 2307

			if (skb) {
2308
				if (likely(d->dma.error == 0)) {
2309 2310
					ndev->stats.tx_packets++;
					ndev->stats.tx_bytes += skb->len;
2311 2312 2313
					if (stats) {
						stats->tx_packets++;
						stats->tx_bytes += skb->len;
D
Dedy Lansky 已提交
2314 2315 2316

						wil_tx_latency_calc(wil, skb,
							&wil->sta[cid]);
2317
					}
2318 2319
				} else {
					ndev->stats.tx_errors++;
2320 2321
					if (stats)
						stats->tx_errors++;
2322
				}
2323
				wil_consume_skb(skb, d->dma.error == 0);
2324 2325
			}
			memset(ctx, 0, sizeof(*ctx));
2326
			/* Make sure the ctx is zeroed before updating the tail
2327
			 * to prevent a case where wil_tx_ring will see
2328 2329 2330 2331
			 * this descriptor as used and handle it before ctx zero
			 * is completed.
			 */
			wmb();
2332 2333 2334 2335 2336
			/* There is no need to touch HW descriptor:
			 * - ststus bit TX_DMA_STATUS_DU is set by design,
			 *   so hardware will not try to process this desc.,
			 * - rest of descriptor will be initialized on Tx.
			 */
2337
			vring->swtail = wil_ring_next_tail(vring);
2338
			done++;
2339 2340
		}
	}
2341

2342
	/* performance monitoring */
2343 2344
	used_new = wil_ring_used_tx(vring);
	if (wil_val_in_range(wil->ring_idle_trsh,
2345 2346 2347
			     used_new, used_before_complete)) {
		wil_dbg_txrx(wil, "Ring[%2d] idle %d -> %d\n",
			     ringid, used_before_complete, used_new);
2348 2349
		txdata->last_idle = get_cycles();
	}
2350

D
Dedy Lansky 已提交
2351 2352
	/* shall we wake net queues? */
	if (done)
2353
		wil_update_net_queues(wil, vif, vring, false);
V
Vladimir Kondratiev 已提交
2354 2355

	return done;
2356
}
2357 2358 2359 2360 2361 2362 2363 2364

static inline int wil_tx_init(struct wil6210_priv *wil)
{
	return 0;
}

static inline void wil_tx_fini(struct wil6210_priv *wil) {}

2365 2366
static void wil_get_reorder_params(struct wil6210_priv *wil,
				   struct sk_buff *skb, int *tid, int *cid,
2367
				   int *mid, u16 *seq, int *mcast, int *retry)
2368 2369 2370 2371
{
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);

	*tid = wil_rxdesc_tid(d);
2372
	*cid = wil_skb_get_cid(skb);
2373 2374 2375
	*mid = wil_rxdesc_mid(d);
	*seq = wil_rxdesc_seq(d);
	*mcast = wil_rxdesc_mcast(d);
2376
	*retry = wil_rxdesc_retry(d);
2377 2378
}

2379 2380 2381 2382 2383
void wil_init_txrx_ops_legacy_dma(struct wil6210_priv *wil)
{
	wil->txrx_ops.configure_interrupt_moderation =
		wil_configure_interrupt_moderation;
	/* TX ops */
2384 2385 2386
	wil->txrx_ops.tx_desc_map = wil_tx_desc_map;
	wil->txrx_ops.tx_desc_unmap = wil_txdesc_unmap;
	wil->txrx_ops.tx_ring_tso =  __wil_tx_vring_tso;
2387 2388 2389 2390 2391
	wil->txrx_ops.ring_init_tx = wil_vring_init_tx;
	wil->txrx_ops.ring_fini_tx = wil_vring_free;
	wil->txrx_ops.ring_init_bcast = wil_vring_init_bcast;
	wil->txrx_ops.tx_init = wil_tx_init;
	wil->txrx_ops.tx_fini = wil_tx_fini;
2392
	wil->txrx_ops.tx_ring_modify = wil_tx_vring_modify;
2393 2394
	/* RX ops */
	wil->txrx_ops.rx_init = wil_rx_init;
2395 2396 2397 2398 2399
	wil->txrx_ops.wmi_addba_rx_resp = wmi_addba_rx_resp;
	wil->txrx_ops.get_reorder_params = wil_get_reorder_params;
	wil->txrx_ops.get_netif_rx_params =
		wil_get_netif_rx_params;
	wil->txrx_ops.rx_crypto_check = wil_rx_crypto_check;
2400
	wil->txrx_ops.rx_error_check = wil_rx_error_check;
2401
	wil->txrx_ops.is_rx_idle = wil_is_rx_idle;
2402 2403
	wil->txrx_ops.rx_fini = wil_rx_fini;
}