txrx.c 56.7 KB
Newer Older
1
/*
2
 * Copyright (c) 2012-2017 Qualcomm Atheros, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * 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>
21 22 23
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <net/ipv6.h>
24
#include <linux/prefetch.h>
25 26 27 28

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

static bool rtap_include_phy_info;
32
module_param(rtap_include_phy_info, bool, 0444);
33 34 35
MODULE_PARM_DESC(rtap_include_phy_info,
		 " Include PHY info in the radiotap header, default - no");

36
bool rx_align_2;
37
module_param(rx_align_2, bool, 0444);
38 39
MODULE_PARM_DESC(rx_align_2, " align Rx buffers on 4*n+2, default - no");

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

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

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
static inline int wil_vring_is_empty(struct vring *vring)
{
	return vring->swhead == vring->swtail;
}

static inline u32 wil_vring_next_tail(struct vring *vring)
{
	return (vring->swtail + 1) % vring->size;
}

static inline void wil_vring_advance_head(struct vring *vring, int n)
{
	vring->swhead = (vring->swhead + n) % vring->size;
}

static inline int wil_vring_is_full(struct vring *vring)
{
	return wil_vring_next_tail(vring) == vring->swhead;
}
68

69 70
/* Used space in Tx Vring */
static inline int wil_vring_used_tx(struct vring *vring)
71 72 73
{
	u32 swhead = vring->swhead;
	u32 swtail = vring->swtail;
74 75
	return (vring->size + swhead - swtail) % vring->size;
}
76

77 78 79 80
/* Available space in Tx Vring */
static inline int wil_vring_avail_tx(struct vring *vring)
{
	return vring->size - wil_vring_used_tx(vring) - 1;
81 82
}

83
/* wil_vring_wmark_low - low watermark for available descriptor space */
84 85 86 87 88
static inline int wil_vring_wmark_low(struct vring *vring)
{
	return vring->size/8;
}

89
/* wil_vring_wmark_high - high watermark for available descriptor space */
90 91 92 93 94
static inline int wil_vring_wmark_high(struct vring *vring)
{
	return vring->size/4;
}

D
Dedy Lansky 已提交
95 96 97 98 99 100 101 102 103 104 105 106
/* returns true if num avail descriptors is lower than wmark_low */
static inline int wil_vring_avail_low(struct vring *vring)
{
	return wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring);
}

/* returns true if num avail descriptors is higher than wmark_high */
static inline int wil_vring_avail_high(struct vring *vring)
{
	return wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring);
}

107 108 109 110 111 112
/* wil_val_in_range - check if value in [min,max) */
static inline bool wil_val_in_range(int val, int min, int max)
{
	return val >= min && val < max;
}

113 114 115 116 117 118
static int wil_vring_alloc(struct wil6210_priv *wil, struct vring *vring)
{
	struct device *dev = wil_to_dev(wil);
	size_t sz = vring->size * sizeof(vring->va[0]);
	uint i;

119
	wil_dbg_misc(wil, "vring_alloc:\n");
120

121 122 123 124
	BUILD_BUG_ON(sizeof(vring->va[0]) != 32);

	vring->swhead = 0;
	vring->swtail = 0;
125
	vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
126 127 128 129
	if (!vring->ctx) {
		vring->va = NULL;
		return -ENOMEM;
	}
130

131
	/* vring->va should be aligned on its size rounded up to power of 2
132 133 134 135 136 137 138 139 140 141
	 * 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,
	 * if we are using 48 bit addresses switch to 32 bit allocation
	 * before allocating vring memory.
	 *
	 * 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
142
	 */
143 144 145
	if (wil->use_extended_dma_addr)
		dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));

146 147 148 149 150 151
	vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
	if (!vring->va) {
		kfree(vring->ctx);
		vring->ctx = NULL;
		return -ENOMEM;
	}
152 153 154 155

	if (wil->use_extended_dma_addr)
		dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48));

156 157 158 159 160
	/* 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++) {
161 162
		volatile struct vring_tx_desc *_d = &vring->va[i].tx;

163
		_d->dma.status = TX_DMA_STATUS_DU;
164 165
	}

166 167
	wil_dbg_misc(wil, "vring[%d] 0x%p:%pad 0x%p\n", vring->size,
		     vring->va, &vring->pa, vring->ctx);
168 169 170 171

	return 0;
}

172 173 174 175 176
static void wil_txdesc_unmap(struct device *dev, struct vring_tx_desc *d,
			     struct wil_ctx *ctx)
{
	dma_addr_t pa = wil_desc_addr(&d->dma.addr);
	u16 dmalen = le16_to_cpu(d->dma.length);
177

178 179 180 181 182 183 184 185 186 187 188 189
	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;
	}
}

190 191 192 193 194 195
static void wil_vring_free(struct wil6210_priv *wil, struct vring *vring,
			   int tx)
{
	struct device *dev = wil_to_dev(wil);
	size_t sz = vring->size * sizeof(vring->va[0]);

196
	lockdep_assert_held(&wil->mutex);
197 198 199 200 201 202 203 204 205 206 207 208
	if (tx) {
		int vring_index = vring - wil->vring_tx;

		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);
	}

209
	while (!wil_vring_is_empty(vring)) {
210
		dma_addr_t pa;
211
		u16 dmalen;
212
		struct wil_ctx *ctx;
213

214
		if (tx) {
215 216
			struct vring_tx_desc dd, *d = &dd;
			volatile struct vring_tx_desc *_d =
217
					&vring->va[vring->swtail].tx;
218

219
			ctx = &vring->ctx[vring->swtail];
220 221 222 223 224 225 226
			if (!ctx) {
				wil_dbg_txrx(wil,
					     "ctx(%d) was already completed\n",
					     vring->swtail);
				vring->swtail = wil_vring_next_tail(vring);
				continue;
			}
227
			*d = *_d;
228
			wil_txdesc_unmap(dev, d, ctx);
229 230
			if (ctx->skb)
				dev_kfree_skb_any(ctx->skb);
231 232
			vring->swtail = wil_vring_next_tail(vring);
		} else { /* rx */
233 234
			struct vring_rx_desc dd, *d = &dd;
			volatile struct vring_rx_desc *_d =
235
					&vring->va[vring->swhead].rx;
236

237
			ctx = &vring->ctx[vring->swhead];
238 239
			*d = *_d;
			pa = wil_desc_addr(&d->dma.addr);
240 241
			dmalen = le16_to_cpu(d->dma.length);
			dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
242
			kfree_skb(ctx->skb);
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
			wil_vring_advance_head(vring, 1);
		}
	}
	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
 */
static int wil_vring_alloc_skb(struct wil6210_priv *wil, struct vring *vring,
			       u32 i, int headroom)
{
	struct device *dev = wil_to_dev(wil);
L
Lior David 已提交
262
	unsigned int sz = wil->rx_buf_len + ETH_HLEN + wil_rx_snaplen();
263
	struct vring_rx_desc dd, *d = &dd;
264
	volatile struct vring_rx_desc *_d = &vring->va[i].rx;
265 266
	dma_addr_t pa;
	struct sk_buff *skb = dev_alloc_skb(sz + headroom);
267

268 269 270 271 272 273 274 275 276 277 278 279
	if (unlikely(!skb))
		return -ENOMEM;

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

	pa = dma_map_single(dev, skb->data, skb->len, DMA_FROM_DEVICE);
	if (unlikely(dma_mapping_error(dev, pa))) {
		kfree_skb(skb);
		return -ENOMEM;
	}

280
	d->dma.d0 = RX_DMA_D0_CMD_DMA_RT | RX_DMA_D0_CMD_DMA_IT;
281
	wil_desc_addr_set(&d->dma.addr, pa);
282 283 284 285
	/* 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 */
286
	d->dma.length = cpu_to_le16(sz);
287
	*_d = *d;
288
	vring->ctx[i].skb = skb;
289 290 291 292 293 294 295 296 297 298 299 300 301 302

	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,
303
				       struct sk_buff *skb)
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
{
	struct wireless_dev *wdev = wil->wdev;
	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;
	struct wil6210_rtap_vendor {
		struct wil6210_rtap rtap;
		/* vendor */
		u8 vendor_oui[3] __aligned(2);
		u8 vendor_ns;
		__le16 vendor_skip;
		u8 vendor_data[0];
	} __packed;
327
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	struct wil6210_rtap_vendor *rtap_vendor;
	int rtap_len = sizeof(struct wil6210_rtap);
	int phy_length = 0; /* phy info header size, bytes */
	static char phy_data[128];
	struct ieee80211_channel *ch = wdev->preset_chandef.chan;

	if (rtap_include_phy_info) {
		rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
		/* calculate additional length */
		if (d->dma.status & RX_DMA_STATUS_PHY_INFO) {
			/**
			 * PHY info starts from 8-byte boundary
			 * there are 8-byte lines, last line may be partially
			 * written (HW bug), thus FW configures for last line
			 * to be excessive. Driver skips this last line.
			 */
			int len = min_t(int, 8 + sizeof(phy_data),
					wil_rxdesc_phy_length(d));
346

347 348 349
			if (len > 8) {
				void *p = skb_tail_pointer(skb);
				void *pa = PTR_ALIGN(p, 8);
350

351 352 353 354 355 356 357 358 359 360 361
				if (skb_tailroom(skb) >= len + (pa - p)) {
					phy_length = len - 8;
					memcpy(phy_data, pa, phy_length);
				}
			}
		}
		rtap_len += phy_length;
	}

	if (skb_headroom(skb) < rtap_len &&
	    pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
362
		wil_err(wil, "Unable to expand headroom to %d\n", rtap_len);
363 364 365 366 367 368 369 370 371 372 373 374 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
		return;
	}

	rtap_vendor = (void *)skb_push(skb, rtap_len);
	memset(rtap_vendor, 0, rtap_len);

	rtap_vendor->rtap.rthdr.it_version = PKTHDR_RADIOTAP_VERSION;
	rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
	rtap_vendor->rtap.rthdr.it_present = cpu_to_le32(
			(1 << IEEE80211_RADIOTAP_FLAGS) |
			(1 << IEEE80211_RADIOTAP_CHANNEL) |
			(1 << IEEE80211_RADIOTAP_MCS));
	if (d->dma.status & RX_DMA_STATUS_ERROR)
		rtap_vendor->rtap.flags |= IEEE80211_RADIOTAP_F_BADFCS;

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

	rtap_vendor->rtap.mcs_present = IEEE80211_RADIOTAP_MCS_HAVE_MCS;
	rtap_vendor->rtap.mcs_flags = 0;
	rtap_vendor->rtap.mcs_index = wil_rxdesc_mcs(d);

	if (rtap_include_phy_info) {
		rtap_vendor->rtap.rthdr.it_present |= cpu_to_le32(1 <<
				IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
		/* OUI for Wilocity 04:ce:14 */
		rtap_vendor->vendor_oui[0] = 0x04;
		rtap_vendor->vendor_oui[1] = 0xce;
		rtap_vendor->vendor_oui[2] = 0x14;
		rtap_vendor->vendor_ns = 1;
		/* Rx descriptor + PHY data  */
		rtap_vendor->vendor_skip = cpu_to_le16(sizeof(*d) +
						       phy_length);
		memcpy(rtap_vendor->vendor_data, (void *)d, sizeof(*d));
		memcpy(rtap_vendor->vendor_data + sizeof(*d), phy_data,
		       phy_length);
	}
}

402 403 404 405 406 407 408
/* similar to ieee80211_ version, but FC contain only 1-st byte */
static inline int wil_is_back_req(u8 fc)
{
	return (fc & (IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
	       (IEEE80211_FTYPE_CTL | IEEE80211_STYPE_BACK_REQ);
}

409 410 411
/**
 * reap 1 frame from @swhead
 *
412 413
 * Rx descriptor copied to skb->cb
 *
414 415 416 417 418 419 420
 * Safe to call from IRQ
 */
static struct sk_buff *wil_vring_reap_rx(struct wil6210_priv *wil,
					 struct vring *vring)
{
	struct device *dev = wil_to_dev(wil);
	struct net_device *ndev = wil_to_ndev(wil);
421 422
	volatile struct vring_rx_desc *_d;
	struct vring_rx_desc *d;
423 424
	struct sk_buff *skb;
	dma_addr_t pa;
425
	unsigned int snaplen = wil_rx_snaplen();
L
Lior David 已提交
426
	unsigned int sz = wil->rx_buf_len + ETH_HLEN + snaplen;
427
	u16 dmalen;
428
	u8 ftype;
429
	int cid;
430
	int i;
431 432
	struct wil_net_stats *stats;

433 434
	BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));

435
again:
436
	if (unlikely(wil_vring_is_empty(vring)))
437 438
		return NULL;

439
	i = (int)vring->swhead;
440
	_d = &vring->va[i].rx;
441
	if (unlikely(!(_d->dma.status & RX_DMA_STATUS_DU))) {
442 443 444 445
		/* it is not error, we just reached end of Rx done area */
		return NULL;
	}

446 447 448 449 450
	skb = vring->ctx[i].skb;
	vring->ctx[i].skb = NULL;
	wil_vring_advance_head(vring, 1);
	if (!skb) {
		wil_err(wil, "No Rx skb at [%d]\n", i);
451
		goto again;
452
	}
453 454 455 456
	d = wil_skb_rxdesc(skb);
	*d = *_d;
	pa = wil_desc_addr(&d->dma.addr);

457
	dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
458 459
	dmalen = le16_to_cpu(d->dma.length);

460 461
	trace_wil6210_rx(i, d);
	wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", i, dmalen);
462
	wil_hex_dump_txrx("RxD ", DUMP_PREFIX_NONE, 32, 4,
463
			  (const void *)d, sizeof(*d), false);
464

465 466 467
	cid = wil_rxdesc_cid(d);
	stats = &wil->sta[cid].stats;

468
	if (unlikely(dmalen > sz)) {
469
		wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
470
		stats->rx_large_frame++;
471
		kfree_skb(skb);
472
		goto again;
473
	}
474
	skb_trim(skb, dmalen);
475

476 477
	prefetch(skb->data);

478 479 480
	wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
			  skb->data, skb_headlen(skb), false);

481
	stats->last_mcs_rx = wil_rxdesc_mcs(d);
482 483
	if (stats->last_mcs_rx < ARRAY_SIZE(stats->rx_per_mcs))
		stats->rx_per_mcs[stats->last_mcs_rx]++;
484 485 486

	/* use radiotap header only if required */
	if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
487
		wil_rx_add_radiotap_header(wil, skb);
488 489 490 491

	/* no extra checks if in sniffer mode */
	if (ndev->type != ARPHRD_ETHER)
		return skb;
492
	/* Non-data frames may be delivered through Rx DMA channel (ex: BAR)
493 494 495
	 * 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
	 */
496
	ftype = wil_rxdesc_ftype(d) << 2;
497
	if (unlikely(ftype != IEEE80211_FTYPE_DATA)) {
498 499 500 501 502 503 504 505
		u8 fc1 = wil_rxdesc_fc1(d);
		int mid = wil_rxdesc_mid(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);
506
		stats->rx_non_data_frame++;
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
		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);
			wil_rx_bar(wil, cid, tid, seq);
		} 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);
		}
524
		kfree_skb(skb);
525
		goto again;
526 527
	}

528
	if (unlikely(skb->len < ETH_HLEN + snaplen)) {
529
		wil_err(wil, "Short frame, len = %d\n", skb->len);
530
		stats->rx_short_frame++;
531
		kfree_skb(skb);
532
		goto again;
533 534
	}

535 536 537 538
	/* 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)
	 */
539
	if (likely(d->dma.status & RX_DMA_STATUS_L4I)) {
540
		/* L4 protocol identified, csum calculated */
541
		if (likely((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0))
542
			skb->ip_summed = CHECKSUM_UNNECESSARY;
543 544 545 546 547
		/* 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
		 */
548 549
	}

550 551 552 553 554 555 556 557 558 559 560
	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);
	}

561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
	return skb;
}

/**
 * allocate and fill up to @count buffers in rx ring
 * buffers posted at @swtail
 */
static int wil_rx_refill(struct wil6210_priv *wil, int count)
{
	struct net_device *ndev = wil_to_ndev(wil);
	struct vring *v = &wil->vring_rx;
	u32 next_tail;
	int rc = 0;
	int headroom = ndev->type == ARPHRD_IEEE80211_RADIOTAP ?
			WIL6210_RTAP_SIZE : 0;

	for (; next_tail = wil_vring_next_tail(v),
			(next_tail != v->swhead) && (count-- > 0);
			v->swtail = next_tail) {
		rc = wil_vring_alloc_skb(wil, v, v->swtail, headroom);
581
		if (unlikely(rc)) {
582 583 584 585 586
			wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
				rc, v->swtail);
			break;
		}
	}
587 588 589 590 591 592

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

593
	wil_w(wil, v->hwtail, v->swtail);
594 595 596 597

	return rc;
}

598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
/**
 * 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
 */
static int reverse_memcmp(const void *cs, const void *ct, size_t count)
{
	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);
	int cid = wil_rxdesc_cid(d);
	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;
}

652 653
/*
 * Pass Rx packet to the netif. Update statistics.
V
Vladimir Kondratiev 已提交
654
 * Called in softirq context (NAPI poll).
655
 */
V
Vladimir Kondratiev 已提交
656
void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
657
{
658
	gro_result_t rc = GRO_NORMAL;
659
	struct wil6210_priv *wil = ndev_to_wil(ndev);
660
	struct wireless_dev *wdev = wil_to_wdev(wil);
661
	unsigned int len = skb->len;
662
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
663
	int cid = wil_rxdesc_cid(d); /* always 0..7, no need to check */
664
	int security = wil_rxdesc_security(d);
665 666 667 668 669
	struct ethhdr *eth = (void *)skb->data;
	/* here looking for DA, not A1, thus Rxdesc's 'mcast' indication
	 * is not suitable, need to look at data
	 */
	int mcast = is_multicast_ether_addr(eth->h_dest);
670
	struct wil_net_stats *stats = &wil->sta[cid].stats;
671 672 673 674 675 676 677 678
	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",
	};
679

680 681 682 683 684 685 686 687
	if (ndev->features & NETIF_F_RXHASH)
		/* fake L4 to ensure it won't be re-calculated later
		 * set hash to any non-zero value to activate rps
		 * mechanism, core will be chosen according
		 * to user-level rps configuration.
		 */
		skb_set_hash(skb, 1, PKT_HASH_TYPE_L4);

688 689
	skb_orphan(skb);

690 691 692 693 694 695 696
	if (security && (wil_rx_crypto_check(wil, skb) != 0)) {
		rc = GRO_DROP;
		dev_kfree_skb(skb);
		stats->rx_replay++;
		goto stats;
	}

697
	if (wdev->iftype == NL80211_IFTYPE_AP && !wil->ap_isolate) {
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
		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 {
			int xmit_cid = wil_find_cid(wil, eth->h_dest);

			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);
	}
730

731 732 733 734 735 736 737
	if (skb) { /* deliver to local stack */

		skb->protocol = eth_type_trans(skb, ndev);
		rc = napi_gro_receive(&wil->napi_rx, skb);
		wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
			     len, gro_res_str[rc]);
	}
738
stats:
739
	/* statistics. rc set to GRO_NORMAL for AP bridging */
V
Vladimir Kondratiev 已提交
740 741 742 743 744
	if (unlikely(rc == GRO_DROP)) {
		ndev->stats.rx_dropped++;
		stats->rx_dropped++;
		wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
	} else {
745
		ndev->stats.rx_packets++;
746
		stats->rx_packets++;
747
		ndev->stats.rx_bytes += len;
748
		stats->rx_bytes += len;
749 750
		if (mcast)
			ndev->stats.multicast++;
751
	}
752 753 754 755 756
}

/**
 * Proceed all completed skb's from Rx VRING
 *
V
Vladimir Kondratiev 已提交
757
 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
758
 */
V
Vladimir Kondratiev 已提交
759
void wil_rx_handle(struct wil6210_priv *wil, int *quota)
760 761 762 763 764
{
	struct net_device *ndev = wil_to_ndev(wil);
	struct vring *v = &wil->vring_rx;
	struct sk_buff *skb;

765
	if (unlikely(!v->va)) {
766 767 768
		wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
		return;
	}
769
	wil_dbg_txrx(wil, "rx_handle\n");
V
Vladimir Kondratiev 已提交
770 771
	while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
		(*quota)--;
772 773 774 775 776 777 778

		if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
			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 已提交
779
			wil_netif_rx_any(skb, ndev);
780
		} else {
781
			wil_rx_reorder(wil, skb);
782 783 784 785 786
		}
	}
	wil_rx_refill(wil, v->size);
}

L
Lior David 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800
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;
	}
}

801
int wil_rx_init(struct wil6210_priv *wil, u16 size)
802 803 804 805
{
	struct vring *vring = &wil->vring_rx;
	int rc;

806
	wil_dbg_misc(wil, "rx_init\n");
807

808 809 810 811 812
	if (vring->va) {
		wil_err(wil, "Rx ring already allocated\n");
		return -EINVAL;
	}

L
Lior David 已提交
813 814
	wil_rx_buf_len_init(wil);

815
	vring->size = size;
816 817 818 819
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		return rc;

820
	rc = wmi_rx_chain_add(wil, vring);
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
	if (rc)
		goto err_free;

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

	return 0;
 err_free:
	wil_vring_free(wil, vring, 0);

	return rc;
}

void wil_rx_fini(struct wil6210_priv *wil)
{
	struct vring *vring = &wil->vring_rx;

839
	wil_dbg_misc(wil, "rx_fini\n");
840

841
	if (vring->va)
842 843 844
		wil_vring_free(wil, vring, 0);
}

845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
static inline void wil_tx_data_init(struct vring_tx_data *txdata)
{
	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;
	spin_unlock_bh(&txdata->lock);
}

860 861 862 863 864 865 866 867
int wil_vring_init_tx(struct wil6210_priv *wil, int id, int size,
		      int cid, int tid)
{
	int rc;
	struct wmi_vring_cfg_cmd cmd = {
		.action = cpu_to_le32(WMI_VRING_CMD_ADD),
		.vring_cfg = {
			.tx_sw_ring = {
868
				.max_mpdu_size =
869
					cpu_to_le16(wil_mtu2macbuf(mtu_max)),
870
				.ring_size = cpu_to_le16(size),
871 872
			},
			.ringid = id,
873
			.cidxtid = mk_cidxtid(cid, tid),
874 875 876
			.encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
			.mac_ctrl = 0,
			.to_resolution = 0,
V
Vladimir Kondratiev 已提交
877
			.agg_max_wsize = 0,
878 879 880 881 882 883 884
			.schd_params = {
				.priority = cpu_to_le16(0),
				.timeslot_us = cpu_to_le16(0xfff),
			},
		},
	};
	struct {
L
Lior David 已提交
885
		struct wmi_cmd_hdr wmi;
886 887 888
		struct wmi_vring_cfg_done_event cmd;
	} __packed reply;
	struct vring *vring = &wil->vring_tx[id];
889
	struct vring_tx_data *txdata = &wil->vring_tx_data[id];
890

891
	wil_dbg_misc(wil, "vring_init_tx: max_mpdu_size %d\n",
892
		     cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
893
	lockdep_assert_held(&wil->mutex);
894

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

901
	wil_tx_data_init(txdata);
902 903 904 905 906
	vring->size = size;
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		goto out;

907 908 909
	wil->vring2cid_tid[id][0] = cid;
	wil->vring2cid_tid[id][1] = tid;

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

912 913
	if (!wil->privacy)
		txdata->dot1x_open = true;
914 915 916 917 918
	rc = wmi_call(wil, WMI_VRING_CFG_CMDID, &cmd, sizeof(cmd),
		      WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
	if (rc)
		goto out_free;

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

926 927
	spin_lock_bh(&txdata->lock);
	vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
928
	txdata->enabled = 1;
929 930
	spin_unlock_bh(&txdata->lock);

931
	if (txdata->dot1x_open && (agg_wsize >= 0))
932
		wil_addba_tx_request(wil, id, agg_wsize);
933

934 935
	return 0;
 out_free:
936
	spin_lock_bh(&txdata->lock);
937 938
	txdata->dot1x_open = false;
	txdata->enabled = 0;
939
	spin_unlock_bh(&txdata->lock);
940
	wil_vring_free(wil, vring, 1);
941 942 943
	wil->vring2cid_tid[id][0] = WIL6210_MAX_CID;
	wil->vring2cid_tid[id][1] = 0;

944 945 946 947 948
 out:

	return rc;
}

949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
int wil_vring_init_bcast(struct wil6210_priv *wil, int id, int size)
{
	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 已提交
965
		struct wmi_cmd_hdr wmi;
966 967 968 969 970
		struct wmi_vring_cfg_done_event cmd;
	} __packed reply;
	struct vring *vring = &wil->vring_tx[id];
	struct vring_tx_data *txdata = &wil->vring_tx_data[id];

971
	wil_dbg_misc(wil, "vring_init_bcast: max_mpdu_size %d\n",
972
		     cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
973
	lockdep_assert_held(&wil->mutex);
974 975 976 977 978 979 980

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

981
	wil_tx_data_init(txdata);
982 983 984 985 986 987 988 989 990 991
	vring->size = size;
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		goto out;

	wil->vring2cid_tid[id][0] = WIL6210_MAX_CID; /* CID */
	wil->vring2cid_tid[id][1] = 0; /* TID */

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

992 993
	if (!wil->privacy)
		txdata->dot1x_open = true;
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
	rc = wmi_call(wil, WMI_BCAST_VRING_CFG_CMDID, &cmd, sizeof(cmd),
		      WMI_VRING_CFG_DONE_EVENTID, &reply, sizeof(reply), 100);
	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;
	}

1006 1007
	spin_lock_bh(&txdata->lock);
	vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);
1008
	txdata->enabled = 1;
1009
	spin_unlock_bh(&txdata->lock);
1010 1011 1012

	return 0;
 out_free:
1013
	spin_lock_bh(&txdata->lock);
1014 1015
	txdata->enabled = 0;
	txdata->dot1x_open = false;
1016
	spin_unlock_bh(&txdata->lock);
1017 1018 1019 1020 1021 1022
	wil_vring_free(wil, vring, 1);
 out:

	return rc;
}

1023 1024 1025
void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
{
	struct vring *vring = &wil->vring_tx[id];
1026
	struct vring_tx_data *txdata = &wil->vring_tx_data[id];
1027

1028
	lockdep_assert_held(&wil->mutex);
1029

1030 1031 1032
	if (!vring->va)
		return;

1033
	wil_dbg_misc(wil, "vring_fini_tx: id=%d\n", id);
1034

1035
	spin_lock_bh(&txdata->lock);
1036
	txdata->dot1x_open = false;
1037 1038
	txdata->enabled = 0; /* no Tx can be in progress or start anew */
	spin_unlock_bh(&txdata->lock);
1039 1040 1041 1042 1043 1044 1045
	/* napi_synchronize waits for completion of the current NAPI but will
	 * not prevent the next NAPI run.
	 * Add a memory barrier to guarantee that txdata->enabled is zeroed
	 * before napi_synchronize so that the next scheduled NAPI will not
	 * handle this vring
	 */
	wmb();
1046
	/* make sure NAPI won't touch this vring */
1047
	if (test_bit(wil_status_napi_en, wil->status))
1048 1049
		napi_synchronize(&wil->napi_tx);

1050 1051 1052
	wil_vring_free(wil, vring, 1);
}

1053
static struct vring *wil_find_tx_ucast(struct wil6210_priv *wil,
1054 1055
				       struct sk_buff *skb)
{
1056 1057 1058 1059 1060 1061
	int i;
	struct ethhdr *eth = (void *)skb->data;
	int cid = wil_find_cid(wil, eth->h_dest);

	if (cid < 0)
		return NULL;
1062

1063 1064
	/* TODO: fix for multiple TID */
	for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
1065 1066 1067
		if (!wil->vring_tx_data[i].dot1x_open &&
		    (skb->protocol != cpu_to_be16(ETH_P_PAE)))
			continue;
1068 1069
		if (wil->vring2cid_tid[i][0] == cid) {
			struct vring *v = &wil->vring_tx[i];
1070
			struct vring_tx_data *txdata = &wil->vring_tx_data[i];
1071

1072 1073
			wil_dbg_txrx(wil, "find_tx_ucast: (%pM) -> [%d]\n",
				     eth->h_dest, i);
1074
			if (v->va && txdata->enabled) {
1075 1076
				return v;
			} else {
1077 1078 1079
				wil_dbg_txrx(wil,
					     "find_tx_ucast: vring[%d] not valid\n",
					     i);
1080 1081 1082 1083
				return NULL;
			}
		}
	}
1084 1085 1086 1087

	return NULL;
}

V
Vladimir Kondratiev 已提交
1088 1089
static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
			struct sk_buff *skb);
1090 1091 1092 1093 1094 1095 1096

static struct vring *wil_find_tx_vring_sta(struct wil6210_priv *wil,
					   struct sk_buff *skb)
{
	struct vring *v;
	int i;
	u8 cid;
1097
	struct vring_tx_data *txdata;
1098 1099 1100

	/* In the STA mode, it is expected to have only 1 VRING
	 * for the AP we connected to.
1101
	 * find 1-st vring eligible for this skb and use it.
1102 1103 1104
	 */
	for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
		v = &wil->vring_tx[i];
1105 1106
		txdata = &wil->vring_tx_data[i];
		if (!v->va || !txdata->enabled)
1107 1108 1109
			continue;

		cid = wil->vring2cid_tid[i][0];
1110 1111 1112
		if (cid >= WIL6210_MAX_CID) /* skip BCAST */
			continue;

1113
		if (!wil->vring_tx_data[i].dot1x_open &&
1114
		    (skb->protocol != cpu_to_be16(ETH_P_PAE)))
1115
			continue;
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126

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

		return v;
	}

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

	return NULL;
}

1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
/* 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
 */
static struct vring *wil_find_tx_bcast_1(struct wil6210_priv *wil,
					 struct sk_buff *skb)
V
Vladimir Kondratiev 已提交
1140
{
1141
	struct vring *v;
1142
	struct vring_tx_data *txdata;
1143
	int i = wil->bcast_vring;
1144

1145 1146 1147
	if (i < 0)
		return NULL;
	v = &wil->vring_tx[i];
1148 1149
	txdata = &wil->vring_tx_data[i];
	if (!v->va || !txdata->enabled)
1150
		return NULL;
1151 1152 1153
	if (!wil->vring_tx_data[i].dot1x_open &&
	    (skb->protocol != cpu_to_be16(ETH_P_PAE)))
		return NULL;
V
Vladimir Kondratiev 已提交
1154 1155 1156 1157

	return v;
}

1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
static void wil_set_da_for_vring(struct wil6210_priv *wil,
				 struct sk_buff *skb, int vring_index)
{
	struct ethhdr *eth = (void *)skb->data;
	int cid = wil->vring2cid_tid[vring_index][0];

	ether_addr_copy(eth->h_dest, wil->sta[cid].addr);
}

static struct vring *wil_find_tx_bcast_2(struct wil6210_priv *wil,
					 struct sk_buff *skb)
{
	struct vring *v, *v2;
	struct sk_buff *skb2;
	int i;
	u8 cid;
	struct ethhdr *eth = (void *)skb->data;
	char *src = eth->h_source;
1176
	struct vring_tx_data *txdata;
1177 1178 1179 1180

	/* find 1-st vring eligible for data */
	for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
		v = &wil->vring_tx[i];
1181 1182
		txdata = &wil->vring_tx_data[i];
		if (!v->va || !txdata->enabled)
1183 1184 1185 1186 1187
			continue;

		cid = wil->vring2cid_tid[i][0];
		if (cid >= WIL6210_MAX_CID) /* skip BCAST */
			continue;
1188 1189
		if (!wil->vring_tx_data[i].dot1x_open &&
		    (skb->protocol != cpu_to_be16(ETH_P_PAE)))
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
			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++) {
		v2 = &wil->vring_tx[i];
		if (!v2->va)
			continue;
		cid = wil->vring2cid_tid[i][0];
		if (cid >= WIL6210_MAX_CID) /* skip BCAST */
			continue;
1215 1216
		if (!wil->vring_tx_data[i].dot1x_open &&
		    (skb->protocol != cpu_to_be16(ETH_P_PAE)))
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
			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);
			wil_tx_vring(wil, v2, skb2);
		} else {
			wil_err(wil, "skb_copy failed\n");
		}
	}

	return v;
}

1235 1236
static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
			   int vring_index)
1237
{
1238
	wil_desc_addr_set(&d->dma.addr, pa);
1239 1240 1241 1242 1243
	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 */
1244
	d->dma.length = cpu_to_le16((u16)len);
1245
	d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
	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;
}

1257 1258 1259
static inline
void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
{
1260
	d->mac.d[2] |= (nr_frags << MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
1261 1262
}

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
/**
 * 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)
1274
{
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
	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){
1306 1307 1308 1309 1310
	int protocol;

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

1311 1312
	d->dma.b11 = ETH_HLEN; /* MAC header length */

1313 1314 1315
	switch (skb->protocol) {
	case cpu_to_be16(ETH_P_IP):
		protocol = ip_hdr(skb)->protocol;
1316
		d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
		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;
}

1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
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;
}

static int __wil_tx_vring_tso(struct wil6210_priv *wil, struct vring *vring,
			      struct sk_buff *skb)
{
	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;
	int used, avail = wil_vring_avail_tx(vring);
	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;
	int vring_index = vring - wil->vring_tx;
	struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
	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 已提交
1402
	int rc = -EINVAL;
1403

1404 1405
	wil_dbg_txrx(wil, "tx_vring_tso: %d bytes to vring %d\n", skb->len,
		     vring_index);
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 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 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493

	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);

	_hdr_desc = &vring->va[i].tx;

	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;
	}

	wil_tx_desc_map(hdr_desc, pa, hdrlen, vring_index);
	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];
			len = frag->size;
			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 已提交
1494 1495 1496
				wil_err_ratelimited(wil, "TSO: ring overflow\n");
				rc = -ENOMEM;
				goto mem_error;
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
			}

			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,
						      frag->size - len, lenmss,
						      DMA_TO_DEVICE);
				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 已提交
1518 1519 1520 1521
			if (unlikely(dma_mapping_error(dev, pa))) {
				wil_err(wil, "TSO: DMA map page error\n");
				goto mem_error;
			}
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 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

			_desc = &vring->va[i].tx;

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

			wil_tx_desc_map(d, pa, lenmss, vring_index);
			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;
		}
	}

	/* 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 */
	used = wil_vring_used_tx(vring);
	if (wil_val_in_range(vring_idle_trsh,
			     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);
	}

1619 1620 1621 1622 1623 1624 1625
	/* 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();

1626 1627
	/* advance swhead */
	wil_vring_advance_head(vring, descs_used);
H
Hamad Kadmany 已提交
1628
	wil_dbg_txrx(wil, "TSO: Tx swhead %d -> %d\n", swhead, vring->swhead);
1629 1630 1631 1632 1633 1634

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

1635
	wil_w(wil, vring->hwtail, vring->swhead);
1636 1637
	return 0;

H
Hamad Kadmany 已提交
1638
mem_error:
1639 1640 1641
	while (descs_used > 0) {
		struct wil_ctx *ctx;

1642
		i = (swhead + descs_used - 1) % vring->size;
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
		d = (struct vring_tx_desc *)&vring->va[i].tx;
		_desc = &vring->va[i].tx;
		*d = *_desc;
		_desc->dma.status = TX_DMA_STATUS_DU;
		ctx = &vring->ctx[i];
		wil_txdesc_unmap(dev, d, ctx);
		memset(ctx, 0, sizeof(*ctx));
		descs_used--;
	}
err_exit:
H
Hamad Kadmany 已提交
1653
	return rc;
1654 1655
}

1656 1657
static int __wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
			  struct sk_buff *skb)
1658 1659
{
	struct device *dev = wil_to_dev(wil);
1660 1661
	struct vring_tx_desc dd, *d = &dd;
	volatile struct vring_tx_desc *_d;
1662 1663 1664
	u32 swhead = vring->swhead;
	int avail = wil_vring_avail_tx(vring);
	int nr_frags = skb_shinfo(skb)->nr_frags;
1665
	uint f = 0;
1666
	int vring_index = vring - wil->vring_tx;
1667
	struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
1668 1669
	uint i = swhead;
	dma_addr_t pa;
1670
	int used;
1671 1672
	bool mcast = (vring_index == wil->bcast_vring);
	uint len = skb_headlen(skb);
1673

1674 1675
	wil_dbg_txrx(wil, "tx_vring: %d bytes to vring %d\n", skb->len,
		     vring_index);
1676

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

1680
	if (unlikely(avail < 1 + nr_frags)) {
1681
		wil_err_ratelimited(wil,
V
Vladimir Kondratiev 已提交
1682 1683
				    "Tx ring[%2d] full. No space for %d fragments\n",
				    vring_index, 1 + nr_frags);
1684 1685
		return -ENOMEM;
	}
1686
	_d = &vring->va[i].tx;
1687

1688
	pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
1689

V
Vladimir Kondratiev 已提交
1690 1691
	wil_dbg_txrx(wil, "Tx[%2d] skb %d bytes 0x%p -> %pad\n", vring_index,
		     skb_headlen(skb), skb->data, &pa);
1692
	wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
1693 1694 1695 1696
			  skb->data, skb_headlen(skb), false);

	if (unlikely(dma_mapping_error(dev, pa)))
		return -EINVAL;
1697
	vring->ctx[i].mapped_as = wil_mapped_as_single;
1698
	/* 1-st segment */
1699 1700 1701
	wil_tx_desc_map(d, pa, len, vring_index);
	if (unlikely(mcast)) {
		d->mac.d[0] |= BIT(MAC_CFG_DESC_TX_0_MCS_EN_POS); /* MCS 0 */
1702
		if (unlikely(len > WIL_BCAST_MCS0_LIMIT)) /* set MCS 1 */
1703 1704
			d->mac.d[0] |= (1 << MAC_CFG_DESC_TX_0_MCS_INDEX_POS);
	}
1705
	/* Process TCP/UDP checksum offloading */
1706
	if (unlikely(wil_tx_desc_offload_setup(d, skb))) {
V
Vladimir Kondratiev 已提交
1707
		wil_err(wil, "Tx[%2d] Failed to set cksum, drop packet\n",
1708 1709 1710 1711
			vring_index);
		goto dma_error;
	}

1712
	vring->ctx[i].nr_frags = nr_frags;
1713
	wil_tx_desc_set_nr_frags(d, nr_frags + 1);
1714

1715
	/* middle segments */
1716
	for (; f < nr_frags; f++) {
1717 1718 1719
		const struct skb_frag_struct *frag =
				&skb_shinfo(skb)->frags[f];
		int len = skb_frag_size(frag);
1720

1721
		*_d = *d;
V
Vladimir Kondratiev 已提交
1722 1723 1724
		wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
		wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
				  (const void *)d, sizeof(*d), false);
1725
		i = (swhead + f + 1) % vring->size;
1726
		_d = &vring->va[i].tx;
1727
		pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
1728
				      DMA_TO_DEVICE);
H
Hamad Kadmany 已提交
1729 1730 1731
		if (unlikely(dma_mapping_error(dev, pa))) {
			wil_err(wil, "Tx[%2d] failed to map fragment\n",
				vring_index);
1732
			goto dma_error;
H
Hamad Kadmany 已提交
1733
		}
1734
		vring->ctx[i].mapped_as = wil_mapped_as_page;
1735
		wil_tx_desc_map(d, pa, len, vring_index);
1736 1737 1738 1739
		/* no need to check return code -
		 * if it succeeded for 1-st descriptor,
		 * it will succeed here too
		 */
1740
		wil_tx_desc_offload_setup(d, skb);
1741 1742 1743
	}
	/* for the last seg only */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
1744
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
1745
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
1746
	*_d = *d;
V
Vladimir Kondratiev 已提交
1747 1748 1749
	wil_dbg_txrx(wil, "Tx[%2d] desc[%4d]\n", vring_index, i);
	wil_hex_dump_txrx("TxD ", DUMP_PREFIX_NONE, 32, 4,
			  (const void *)d, sizeof(*d), false);
1750

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

1757 1758 1759 1760
	/* performance monitoring */
	used = wil_vring_used_tx(vring);
	if (wil_val_in_range(vring_idle_trsh,
			     used, used + nr_frags + 1)) {
1761
		txdata->idle += get_cycles() - txdata->last_idle;
1762 1763 1764
		wil_dbg_txrx(wil,  "Ring[%2d] not idle %d -> %d\n",
			     vring_index, used, used + nr_frags + 1);
	}
1765

1766 1767 1768 1769 1770 1771 1772
	/* 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();

1773 1774
	/* advance swhead */
	wil_vring_advance_head(vring, nr_frags + 1);
V
Vladimir Kondratiev 已提交
1775 1776
	wil_dbg_txrx(wil, "Tx[%2d] swhead %d -> %d\n", vring_index, swhead,
		     vring->swhead);
V
Vladimir Kondratiev 已提交
1777
	trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
1778 1779 1780 1781 1782 1783

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

1784
	wil_w(wil, vring->hwtail, vring->swhead);
1785 1786 1787 1788

	return 0;
 dma_error:
	/* unmap what we have mapped */
1789 1790 1791
	nr_frags = f + 1; /* frags mapped + one for skb head */
	for (f = 0; f < nr_frags; f++) {
		struct wil_ctx *ctx;
1792

1793
		i = (swhead + f) % vring->size;
1794
		ctx = &vring->ctx[i];
1795
		_d = &vring->va[i].tx;
1796 1797
		*d = *_d;
		_d->dma.status = TX_DMA_STATUS_DU;
1798
		wil_txdesc_unmap(dev, d, ctx);
1799 1800

		memset(ctx, 0, sizeof(*ctx));
1801 1802 1803 1804 1805
	}

	return -EINVAL;
}

1806 1807 1808 1809 1810 1811 1812 1813
static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
			struct sk_buff *skb)
{
	int vring_index = vring - wil->vring_tx;
	struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
	int rc;

	spin_lock(&txdata->lock);
1814 1815 1816 1817

	rc = (skb_is_gso(skb) ? __wil_tx_vring_tso : __wil_tx_vring)
	     (wil, vring, skb);

1818
	spin_unlock(&txdata->lock);
1819

1820 1821 1822
	return rc;
}

D
Dedy Lansky 已提交
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905
/**
 * Check status of tx vrings and stop/wake net queues if needed
 *
 * 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,
					   struct vring *vring,
					   bool check_stop)
{
	int i;

	if (vring)
		wil_dbg_txrx(wil, "vring %d, check_stop=%d, stopped=%d",
			     (int)(vring - wil->vring_tx), check_stop,
			     wil->net_queue_stopped);
	else
		wil_dbg_txrx(wil, "check_stop=%d, stopped=%d",
			     check_stop, wil->net_queue_stopped);

	if (check_stop == wil->net_queue_stopped)
		/* net queues already in desired state */
		return;

	if (check_stop) {
		if (!vring || unlikely(wil_vring_avail_low(vring))) {
			/* not enough room in the vring */
			netif_tx_stop_all_queues(wil_to_ndev(wil));
			wil->net_queue_stopped = true;
			wil_dbg_txrx(wil, "netif_tx_stop called\n");
		}
		return;
	}

	/* check wake */
	for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
		struct vring *cur_vring = &wil->vring_tx[i];
		struct vring_tx_data *txdata = &wil->vring_tx_data[i];

		if (!cur_vring->va || !txdata->enabled || cur_vring == vring)
			continue;

		if (wil_vring_avail_low(cur_vring)) {
			wil_dbg_txrx(wil, "vring %d full, can't wake\n",
				     (int)(cur_vring - wil->vring_tx));
			return;
		}
	}

	if (!vring || wil_vring_avail_high(vring)) {
		/* enough room in the vring */
		wil_dbg_txrx(wil, "calling netif_tx_wake\n");
		netif_tx_wake_all_queues(wil_to_ndev(wil));
		wil->net_queue_stopped = false;
	}
}

void wil_update_net_queues(struct wil6210_priv *wil, struct vring *vring,
			   bool check_stop)
{
	spin_lock(&wil->net_queue_lock);
	__wil_update_net_queues(wil, vring, check_stop);
	spin_unlock(&wil->net_queue_lock);
}

void wil_update_net_queues_bh(struct wil6210_priv *wil, struct vring *vring,
			      bool check_stop)
{
	spin_lock_bh(&wil->net_queue_lock);
	__wil_update_net_queues(wil, vring, check_stop);
	spin_unlock_bh(&wil->net_queue_lock);
}

1906 1907 1908
netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
	struct wil6210_priv *wil = ndev_to_wil(ndev);
1909
	struct ethhdr *eth = (void *)skb->data;
1910
	bool bcast = is_multicast_ether_addr(eth->h_dest);
1911
	struct vring *vring;
1912
	static bool pr_once_fw;
1913 1914
	int rc;

1915
	wil_dbg_txrx(wil, "start_xmit\n");
1916
	if (unlikely(!test_bit(wil_status_fwready, wil->status))) {
1917 1918 1919 1920
		if (!pr_once_fw) {
			wil_err(wil, "FW not ready\n");
			pr_once_fw = true;
		}
1921 1922
		goto drop;
	}
1923
	if (unlikely(!test_bit(wil_status_fwconnected, wil->status))) {
1924
		wil_dbg_ratelimited(wil, "FW not connected, packet dropped\n");
1925 1926
		goto drop;
	}
1927
	if (unlikely(wil->wdev->iftype == NL80211_IFTYPE_MONITOR)) {
1928 1929 1930
		wil_err(wil, "Xmit in monitor mode not supported\n");
		goto drop;
	}
1931
	pr_once_fw = false;
1932 1933

	/* find vring */
1934 1935
	if (wil->wdev->iftype == NL80211_IFTYPE_STATION && !wil->pbss) {
		/* in STA mode (ESS), all to same VRING (to AP) */
1936
		vring = wil_find_tx_vring_sta(wil, skb);
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
	} else if (bcast) {
		if (wil->pbss)
			/* in pbss, no bcast VRING - duplicate skb in
			 * all stations VRINGs
			 */
			vring = wil_find_tx_bcast_2(wil, skb);
		else if (wil->wdev->iftype == NL80211_IFTYPE_AP)
			/* AP has a dedicated bcast VRING */
			vring = wil_find_tx_bcast_1(wil, skb);
		else
			/* unexpected combination, fallback to duplicating
			 * the skb in all stations VRINGs
			 */
			vring = wil_find_tx_bcast_2(wil, skb);
	} else {
		/* unicast, find specific VRING by dest. address */
		vring = wil_find_tx_ucast(wil, skb);
1954
	}
1955
	if (unlikely(!vring)) {
1956
		wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
1957
		goto drop;
1958
	}
1959 1960 1961
	/* set up vring entry */
	rc = wil_tx_vring(wil, vring, skb);

1962 1963
	switch (rc) {
	case 0:
D
Dedy Lansky 已提交
1964 1965
		/* shall we stop net queues? */
		wil_update_net_queues_bh(wil, vring, true);
1966
		/* statistics will be updated on the tx_complete */
1967 1968 1969 1970 1971
		dev_kfree_skb_any(skb);
		return NETDEV_TX_OK;
	case -ENOMEM:
		return NETDEV_TX_BUSY;
	default:
1972
		break; /* goto drop; */
1973 1974 1975 1976 1977 1978 1979 1980
	}
 drop:
	ndev->stats.tx_dropped++;
	dev_kfree_skb_any(skb);

	return NET_XMIT_DROP;
}

1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996
static inline bool wil_need_txstat(struct sk_buff *skb)
{
	struct ethhdr *eth = (void *)skb->data;

	return is_unicast_ether_addr(eth->h_dest) && skb->sk &&
	       (skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS);
}

static inline void wil_consume_skb(struct sk_buff *skb, bool acked)
{
	if (unlikely(wil_need_txstat(skb)))
		skb_complete_wifi_ack(skb, acked);
	else
		acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb);
}

1997 1998 1999
/**
 * Clean up transmitted skb's from the Tx VRING
 *
V
Vladimir Kondratiev 已提交
2000 2001
 * Return number of descriptors cleared
 *
2002 2003
 * Safe to call from IRQ
 */
V
Vladimir Kondratiev 已提交
2004
int wil_tx_complete(struct wil6210_priv *wil, int ringid)
2005
{
2006
	struct net_device *ndev = wil_to_ndev(wil);
2007 2008
	struct device *dev = wil_to_dev(wil);
	struct vring *vring = &wil->vring_tx[ringid];
2009
	struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
V
Vladimir Kondratiev 已提交
2010
	int done = 0;
2011
	int cid = wil->vring2cid_tid[ringid][0];
2012
	struct wil_net_stats *stats = NULL;
2013
	volatile struct vring_tx_desc *_d;
2014 2015
	int used_before_complete;
	int used_new;
2016

2017
	if (unlikely(!vring->va)) {
2018
		wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
V
Vladimir Kondratiev 已提交
2019
		return 0;
2020 2021
	}

2022
	if (unlikely(!txdata->enabled)) {
2023 2024 2025 2026
		wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
		return 0;
	}

2027
	wil_dbg_txrx(wil, "tx_complete: (%d)\n", ringid);
2028

2029 2030
	used_before_complete = wil_vring_used_tx(vring);

2031 2032 2033
	if (cid < WIL6210_MAX_CID)
		stats = &wil->sta[cid].stats;

2034
	while (!wil_vring_is_empty(vring)) {
2035
		int new_swtail;
2036
		struct wil_ctx *ctx = &vring->ctx[vring->swtail];
2037 2038
		/**
		 * For the fragmented skb, HW will set DU bit only for the
2039 2040
		 * last fragment. look for it.
		 * In TSO the first DU will include hdr desc
2041 2042 2043
		 */
		int lf = (vring->swtail + ctx->nr_frags) % vring->size;
		/* TODO: check we are not past head */
2044

2045
		_d = &vring->va[lf].tx;
2046
		if (unlikely(!(_d->dma.status & TX_DMA_STATUS_DU)))
2047 2048
			break;

2049 2050 2051 2052
		new_swtail = (lf + 1) % vring->size;
		while (vring->swtail != new_swtail) {
			struct vring_tx_desc dd, *d = &dd;
			u16 dmalen;
2053 2054 2055 2056
			struct sk_buff *skb;

			ctx = &vring->ctx[vring->swtail];
			skb = ctx->skb;
2057
			_d = &vring->va[vring->swtail].tx;
2058

2059
			*d = *_d;
2060

2061 2062 2063 2064
			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 已提交
2065 2066 2067 2068
				     "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,
2069
					  (const void *)d, sizeof(*d), false);
2070

2071
			wil_txdesc_unmap(dev, d, ctx);
2072 2073

			if (skb) {
2074
				if (likely(d->dma.error == 0)) {
2075 2076
					ndev->stats.tx_packets++;
					ndev->stats.tx_bytes += skb->len;
2077 2078 2079 2080
					if (stats) {
						stats->tx_packets++;
						stats->tx_bytes += skb->len;
					}
2081 2082
				} else {
					ndev->stats.tx_errors++;
2083 2084
					if (stats)
						stats->tx_errors++;
2085
				}
2086
				wil_consume_skb(skb, d->dma.error == 0);
2087 2088
			}
			memset(ctx, 0, sizeof(*ctx));
2089 2090 2091 2092 2093 2094
			/* Make sure the ctx is zeroed before updating the tail
			 * to prevent a case where wil_tx_vring will see
			 * this descriptor as used and handle it before ctx zero
			 * is completed.
			 */
			wmb();
2095 2096 2097 2098 2099 2100 2101
			/* 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.
			 */
			vring->swtail = wil_vring_next_tail(vring);
			done++;
2102 2103
		}
	}
2104

2105 2106 2107 2108 2109 2110
	/* performance monitoring */
	used_new = wil_vring_used_tx(vring);
	if (wil_val_in_range(vring_idle_trsh,
			     used_new, used_before_complete)) {
		wil_dbg_txrx(wil, "Ring[%2d] idle %d -> %d\n",
			     ringid, used_before_complete, used_new);
2111 2112
		txdata->last_idle = get_cycles();
	}
2113

D
Dedy Lansky 已提交
2114 2115 2116
	/* shall we wake net queues? */
	if (done)
		wil_update_net_queues(wil, vring, false);
V
Vladimir Kondratiev 已提交
2117 2118

	return done;
2119
}