txrx.c 29.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2012-2014 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

static bool rtap_include_phy_info;
module_param(rtap_include_phy_info, bool, S_IRUGO);
MODULE_PARM_DESC(rtap_include_phy_info,
		 " Include PHY info in the radiotap header, default - no");

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

56 57 58 59 60 61 62 63 64 65 66 67
/*
 * Available space in Tx Vring
 */
static inline int wil_vring_avail_tx(struct vring *vring)
{
	u32 swhead = vring->swhead;
	u32 swtail = vring->swtail;
	int used = (vring->size + swhead - swtail) % vring->size;

	return vring->size - used - 1;
}

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
/**
 * wil_vring_wmark_low - low watermark for available descriptor space
 */
static inline int wil_vring_wmark_low(struct vring *vring)
{
	return vring->size/8;
}

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

84 85 86 87 88 89
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;

90 91
	wil_dbg_misc(wil, "%s()\n", __func__);

92 93 94 95
	BUILD_BUG_ON(sizeof(vring->va[0]) != 32);

	vring->swhead = 0;
	vring->swtail = 0;
96
	vring->ctx = kcalloc(vring->size, sizeof(vring->ctx[0]), GFP_KERNEL);
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	if (!vring->ctx) {
		vring->va = NULL;
		return -ENOMEM;
	}
	/*
	 * vring->va should be aligned on its size rounded up to power of 2
	 * This is granted by the dma_alloc_coherent
	 */
	vring->va = dma_alloc_coherent(dev, sz, &vring->pa, GFP_KERNEL);
	if (!vring->va) {
		kfree(vring->ctx);
		vring->ctx = NULL;
		return -ENOMEM;
	}
	/* 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++) {
116 117
		volatile struct vring_tx_desc *_d = &vring->va[i].tx;

118
		_d->dma.status = TX_DMA_STATUS_DU;
119 120
	}

121 122
	wil_dbg_misc(wil, "vring[%d] 0x%p:%pad 0x%p\n", vring->size,
		     vring->va, &vring->pa, vring->ctx);
123 124 125 126

	return 0;
}

127 128 129 130 131
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);
132

133 134 135 136 137 138 139 140 141 142 143 144
	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;
	}
}

145 146 147 148 149 150
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]);

151 152 153 154 155 156 157 158 159 160 161 162
	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);
	}

163
	while (!wil_vring_is_empty(vring)) {
164
		dma_addr_t pa;
165
		u16 dmalen;
166
		struct wil_ctx *ctx;
167

168
		if (tx) {
169 170
			struct vring_tx_desc dd, *d = &dd;
			volatile struct vring_tx_desc *_d =
171
					&vring->va[vring->swtail].tx;
172

173
			ctx = &vring->ctx[vring->swtail];
174
			*d = *_d;
175
			wil_txdesc_unmap(dev, d, ctx);
176 177
			if (ctx->skb)
				dev_kfree_skb_any(ctx->skb);
178 179
			vring->swtail = wil_vring_next_tail(vring);
		} else { /* rx */
180 181
			struct vring_rx_desc dd, *d = &dd;
			volatile struct vring_rx_desc *_d =
182
					&vring->va[vring->swhead].rx;
183

184
			ctx = &vring->ctx[vring->swhead];
185 186
			*d = *_d;
			pa = wil_desc_addr(&d->dma.addr);
187 188
			dmalen = le16_to_cpu(d->dma.length);
			dma_unmap_single(dev, pa, dmalen, DMA_FROM_DEVICE);
189
			kfree_skb(ctx->skb);
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
			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);
209
	unsigned int sz = mtu_max + ETH_HLEN;
210
	struct vring_rx_desc dd, *d = &dd;
211
	volatile struct vring_rx_desc *_d = &vring->va[i].rx;
212 213
	dma_addr_t pa;
	struct sk_buff *skb = dev_alloc_skb(sz + headroom);
214

215 216 217 218 219 220 221 222 223 224 225 226 227
	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;
	}

	d->dma.d0 = BIT(9) | RX_DMA_D0_CMD_DMA_IT;
228
	wil_desc_addr_set(&d->dma.addr, pa);
229 230 231 232
	/* 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 */
233
	d->dma.length = cpu_to_le16(sz);
234
	*_d = *d;
235
	vring->ctx[i].skb = skb;
236 237 238 239 240 241 242 243 244 245 246 247 248 249

	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,
250
				       struct sk_buff *skb)
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
{
	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;
274
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
	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));
293

294 295 296
			if (len > 8) {
				void *p = skb_tail_pointer(skb);
				void *pa = PTR_ALIGN(p, 8);
297

298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
				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)) {
		wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
		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);
	}
}

/*
 * Fast swap in place between 2 registers
 */
static void wil_swap_u16(u16 *a, u16 *b)
{
	*a ^= *b;
	*b ^= *a;
	*a ^= *b;
}

static void wil_swap_ethaddr(void *data)
{
	struct ethhdr *eth = data;
	u16 *s = (u16 *)eth->h_source;
	u16 *d = (u16 *)eth->h_dest;

	wil_swap_u16(s++, d++);
	wil_swap_u16(s++, d++);
	wil_swap_u16(s, d);
}

/**
 * reap 1 frame from @swhead
 *
373 374
 * Rx descriptor copied to skb->cb
 *
375 376 377 378 379 380 381
 * 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);
382 383
	volatile struct vring_rx_desc *_d;
	struct vring_rx_desc *d;
384 385
	struct sk_buff *skb;
	dma_addr_t pa;
386
	unsigned int sz = mtu_max + ETH_HLEN;
387
	u16 dmalen;
388 389
	u8 ftype;
	u8 ds_bits;
390 391 392
	int cid;
	struct wil_net_stats *stats;

393 394
	BUILD_BUG_ON(sizeof(struct vring_rx_desc) > sizeof(skb->cb));

395 396 397
	if (wil_vring_is_empty(vring))
		return NULL;

398
	_d = &vring->va[vring->swhead].rx;
399
	if (!(_d->dma.status & RX_DMA_STATUS_DU)) {
400 401 402 403
		/* it is not error, we just reached end of Rx done area */
		return NULL;
	}

404
	skb = vring->ctx[vring->swhead].skb;
405 406 407
	d = wil_skb_rxdesc(skb);
	*d = *_d;
	pa = wil_desc_addr(&d->dma.addr);
408
	vring->ctx[vring->swhead].skb = NULL;
409 410
	wil_vring_advance_head(vring, 1);

411
	dma_unmap_single(dev, pa, sz, DMA_FROM_DEVICE);
412 413 414 415 416 417
	dmalen = le16_to_cpu(d->dma.length);

	trace_wil6210_rx(vring->swhead, d);
	wil_dbg_txrx(wil, "Rx[%3d] : %d bytes\n", vring->swhead, dmalen);
	wil_hex_dump_txrx("Rx ", DUMP_PREFIX_NONE, 32, 4,
			  (const void *)d, sizeof(*d), false);
418

419 420
	if (dmalen > sz) {
		wil_err(wil, "Rx size too large: %d bytes!\n", dmalen);
421
		kfree_skb(skb);
422 423
		return NULL;
	}
424
	skb_trim(skb, dmalen);
425

426 427
	prefetch(skb->data);

428 429 430
	wil_hex_dump_txrx("Rx ", DUMP_PREFIX_OFFSET, 16, 1,
			  skb->data, skb_headlen(skb), false);

431 432 433
	cid = wil_rxdesc_cid(d);
	stats = &wil->sta[cid].stats;
	stats->last_mcs_rx = wil_rxdesc_mcs(d);
434 435 436

	/* use radiotap header only if required */
	if (ndev->type == ARPHRD_IEEE80211_RADIOTAP)
437
		wil_rx_add_radiotap_header(wil, skb);
438 439 440 441 442 443 444 445 446

	/* no extra checks if in sniffer mode */
	if (ndev->type != ARPHRD_ETHER)
		return skb;
	/*
	 * Non-data frames may be delivered through Rx DMA channel (ex: BAR)
	 * 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
	 */
447
	ftype = wil_rxdesc_ftype(d) << 2;
448
	if (ftype != IEEE80211_FTYPE_DATA) {
449
		wil_dbg_txrx(wil, "Non-data frame ftype 0x%08x\n", ftype);
450 451 452 453 454 455 456 457 458 459 460 461
		/* TODO: process it */
		kfree_skb(skb);
		return NULL;
	}

	if (skb->len < ETH_HLEN) {
		wil_err(wil, "Short frame, len = %d\n", skb->len);
		/* TODO: process it (i.e. BAR) */
		kfree_skb(skb);
		return NULL;
	}

462 463 464 465 466 467
	/* 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)
	 */
	if (d->dma.status & RX_DMA_STATUS_L4_IDENT) {
		/* L4 protocol identified, csum calculated */
468
		if ((d->dma.error & RX_DMA_ERROR_L4_ERR) == 0)
469
			skb->ip_summed = CHECKSUM_UNNECESSARY;
470 471 472 473 474
		/* 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
		 */
475 476
	}

477
	ds_bits = wil_rxdesc_ds_bits(d);
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
	if (ds_bits == 1) {
		/*
		 * HW bug - in ToDS mode, i.e. Rx on AP side,
		 * addresses get swapped
		 */
		wil_swap_ethaddr(skb->data);
	}

	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);
		if (rc) {
			wil_err(wil, "Error %d in wil_rx_refill[%d]\n",
				rc, v->swtail);
			break;
		}
	}
	iowrite32(v->swtail, wil->csr + HOSTADDR(v->hwtail));

	return rc;
}

/*
 * Pass Rx packet to the netif. Update statistics.
V
Vladimir Kondratiev 已提交
519
 * Called in softirq context (NAPI poll).
520
 */
V
Vladimir Kondratiev 已提交
521
void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev)
522
{
V
Vladimir Kondratiev 已提交
523
	gro_result_t rc;
524
	struct wil6210_priv *wil = ndev_to_wil(ndev);
525
	unsigned int len = skb->len;
526 527 528
	struct vring_rx_desc *d = wil_skb_rxdesc(skb);
	int cid = wil_rxdesc_cid(d);
	struct wil_net_stats *stats = &wil->sta[cid].stats;
529

530 531
	skb_orphan(skb);

V
Vladimir Kondratiev 已提交
532
	rc = napi_gro_receive(&wil->napi_rx, skb);
533

V
Vladimir Kondratiev 已提交
534 535 536 537 538
	if (unlikely(rc == GRO_DROP)) {
		ndev->stats.rx_dropped++;
		stats->rx_dropped++;
		wil_dbg_txrx(wil, "Rx drop %d bytes\n", len);
	} else {
539
		ndev->stats.rx_packets++;
540
		stats->rx_packets++;
541
		ndev->stats.rx_bytes += len;
542
		stats->rx_bytes += len;
543
	}
544 545 546 547 548 549 550 551
	{
		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",
		};
552
		wil_dbg_txrx(wil, "Rx complete %d bytes => %s\n",
553 554
			     len, gro_res_str[rc]);
	}
555 556 557 558 559
}

/**
 * Proceed all completed skb's from Rx VRING
 *
V
Vladimir Kondratiev 已提交
560
 * Safe to call from NAPI poll, i.e. softirq with interrupts enabled
561
 */
V
Vladimir Kondratiev 已提交
562
void wil_rx_handle(struct wil6210_priv *wil, int *quota)
563 564 565 566 567 568 569 570 571
{
	struct net_device *ndev = wil_to_ndev(wil);
	struct vring *v = &wil->vring_rx;
	struct sk_buff *skb;

	if (!v->va) {
		wil_err(wil, "Rx IRQ while Rx not yet initialized\n");
		return;
	}
572
	wil_dbg_txrx(wil, "%s()\n", __func__);
V
Vladimir Kondratiev 已提交
573 574
	while ((*quota > 0) && (NULL != (skb = wil_vring_reap_rx(wil, v)))) {
		(*quota)--;
575 576 577 578 579 580 581

		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 已提交
582
			wil_netif_rx_any(skb, ndev);
583
		} else {
584 585
			struct ethhdr *eth = (void *)skb->data;

586
			skb->protocol = eth_type_trans(skb, ndev);
587 588 589 590 591

			if (is_unicast_ether_addr(eth->h_dest))
				wil_rx_reorder(wil, skb);
			else
				wil_netif_rx_any(skb, ndev);
592 593 594 595 596
		}
	}
	wil_rx_refill(wil, v->size);
}

597
int wil_rx_init(struct wil6210_priv *wil, u16 size)
598 599 600 601
{
	struct vring *vring = &wil->vring_rx;
	int rc;

602 603
	wil_dbg_misc(wil, "%s()\n", __func__);

604 605 606 607 608
	if (vring->va) {
		wil_err(wil, "Rx ring already allocated\n");
		return -EINVAL;
	}

609
	vring->size = size;
610 611 612 613
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		return rc;

614
	rc = wmi_rx_chain_add(wil, vring);
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
	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;

633 634
	wil_dbg_misc(wil, "%s()\n", __func__);

635
	if (vring->va)
636 637 638 639 640 641 642 643 644 645 646
		wil_vring_free(wil, vring, 0);
}

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 = {
647 648
				.max_mpdu_size =
					cpu_to_le16(mtu_max + ETH_HLEN),
649
				.ring_size = cpu_to_le16(size),
650 651
			},
			.ringid = id,
652
			.cidxtid = mk_cidxtid(cid, tid),
653 654 655
			.encap_trans_type = WMI_VRING_ENC_TYPE_802_3,
			.mac_ctrl = 0,
			.to_resolution = 0,
V
Vladimir Kondratiev 已提交
656
			.agg_max_wsize = 0,
657 658 659 660 661 662 663 664 665 666 667
			.schd_params = {
				.priority = cpu_to_le16(0),
				.timeslot_us = cpu_to_le16(0xfff),
			},
		},
	};
	struct {
		struct wil6210_mbox_hdr_wmi wmi;
		struct wmi_vring_cfg_done_event cmd;
	} __packed reply;
	struct vring *vring = &wil->vring_tx[id];
668
	struct vring_tx_data *txdata = &wil->vring_tx_data[id];
669

670 671
	wil_dbg_misc(wil, "%s() max_mpdu_size %d\n", __func__,
		     cmd.vring_cfg.tx_sw_ring.max_mpdu_size);
672

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

679
	memset(txdata, 0, sizeof(*txdata));
680 681 682 683 684
	vring->size = size;
	rc = wil_vring_alloc(wil, vring);
	if (rc)
		goto out;

685 686 687
	wil->vring2cid_tid[id][0] = cid;
	wil->vring2cid_tid[id][1] = tid;

688 689 690 691 692 693 694
	cmd.vring_cfg.tx_sw_ring.ring_mem_base = cpu_to_le64(vring->pa);

	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;

695
	if (reply.cmd.status != WMI_FW_STATUS_SUCCESS) {
696 697
		wil_err(wil, "Tx config failed, status 0x%02x\n",
			reply.cmd.status);
698
		rc = -EINVAL;
699 700 701 702
		goto out_free;
	}
	vring->hwtail = le32_to_cpu(reply.cmd.tx_vring_tail_ptr);

703 704
	txdata->enabled = 1;

705 706 707 708 709 710 711 712 713 714 715 716
	return 0;
 out_free:
	wil_vring_free(wil, vring, 1);
 out:

	return rc;
}

void wil_vring_fini_tx(struct wil6210_priv *wil, int id)
{
	struct vring *vring = &wil->vring_tx[id];

717 718
	WARN_ON(!mutex_is_locked(&wil->mutex));

719 720 721
	if (!vring->va)
		return;

722 723
	wil_dbg_misc(wil, "%s() id=%d\n", __func__, id);

724 725 726 727 728
	/* make sure NAPI won't touch this vring */
	wil->vring_tx_data[id].enabled = 0;
	if (test_bit(wil_status_napi_en, &wil->status))
		napi_synchronize(&wil->napi_tx);

729 730 731 732 733 734
	wil_vring_free(wil, vring, 1);
}

static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
				       struct sk_buff *skb)
{
735 736 737 738 739 740
	int i;
	struct ethhdr *eth = (void *)skb->data;
	int cid = wil_find_cid(wil, eth->h_dest);

	if (cid < 0)
		return NULL;
741

742 743 744 745
	if (!wil->sta[cid].data_port_open &&
	    (skb->protocol != cpu_to_be16(ETH_P_PAE)))
		return NULL;

746 747 748 749
	/* TODO: fix for multiple TID */
	for (i = 0; i < ARRAY_SIZE(wil->vring2cid_tid); i++) {
		if (wil->vring2cid_tid[i][0] == cid) {
			struct vring *v = &wil->vring_tx[i];
750

751 752 753 754 755 756 757 758 759 760
			wil_dbg_txrx(wil, "%s(%pM) -> [%d]\n",
				     __func__, eth->h_dest, i);
			if (v->va) {
				return v;
			} else {
				wil_dbg_txrx(wil, "vring[%d] not valid\n", i);
				return NULL;
			}
		}
	}
761 762 763 764

	return NULL;
}

V
Vladimir Kondratiev 已提交
765 766 767 768 769
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];
770

V
Vladimir Kondratiev 已提交
771 772 773 774 775 776 777 778 779 780
	memcpy(eth->h_dest, wil->sta[cid].addr, ETH_ALEN);
}

static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
			struct sk_buff *skb);
/*
 * Find 1-st vring and return it; set dest address for this vring in skb
 * duplicate skb and send it to other active vrings
 */
static struct vring *wil_tx_bcast(struct wil6210_priv *wil,
781
				  struct sk_buff *skb)
V
Vladimir Kondratiev 已提交
782 783 784 785
{
	struct vring *v, *v2;
	struct sk_buff *skb2;
	int i;
786
	u8 cid;
V
Vladimir Kondratiev 已提交
787

788
	/* find 1-st vring eligible for data */
V
Vladimir Kondratiev 已提交
789 790
	for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
		v = &wil->vring_tx[i];
791 792 793 794 795 796 797 798
		if (!v->va)
			continue;

		cid = wil->vring2cid_tid[i][0];
		if (!wil->sta[cid].data_port_open)
			continue;

		goto found;
V
Vladimir Kondratiev 已提交
799 800
	}

801
	wil_dbg_txrx(wil, "Tx while no vrings active?\n");
V
Vladimir Kondratiev 已提交
802 803 804 805 806 807 808 809 810 811 812 813

	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;
814 815 816 817
		cid = wil->vring2cid_tid[i][0];
		if (!wil->sta[cid].data_port_open)
			continue;

V
Vladimir Kondratiev 已提交
818 819 820 821 822 823 824 825 826 827 828 829 830
		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;
}

831 832
static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
			   int vring_index)
833
{
834
	wil_desc_addr_set(&d->dma.addr, pa);
835 836 837 838 839
	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 */
840
	d->dma.length = cpu_to_le16((u16)len);
841
	d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
842 843 844 845 846 847 848 849 850 851 852 853 854 855
	d->mac.d[0] = 0;
	d->mac.d[1] = 0;
	d->mac.d[2] = 0;
	d->mac.ucode_cmd = 0;
	/* use dst index 0 */
	d->mac.d[1] |= BIT(MAC_CFG_DESC_TX_1_DST_INDEX_EN_POS) |
		       (0 << MAC_CFG_DESC_TX_1_DST_INDEX_POS);
	/* 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;
}

856 857 858 859 860 861 862
static inline
void wil_tx_desc_set_nr_frags(struct vring_tx_desc *d, int nr_frags)
{
	d->mac.d[2] |= ((nr_frags + 1) <<
		       MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
}

863
static int wil_tx_desc_offload_cksum_set(struct wil6210_priv *wil,
864 865
					 struct vring_tx_desc *d,
					 struct sk_buff *skb)
866 867 868 869 870 871
{
	int protocol;

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

872 873
	d->dma.b11 = ETH_HLEN; /* MAC header length */

874 875 876
	switch (skb->protocol) {
	case cpu_to_be16(ETH_P_IP):
		protocol = ip_hdr(skb)->protocol;
877
		d->dma.b11 |= BIT(DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS);
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
		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;
}

911 912 913 914
static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
			struct sk_buff *skb)
{
	struct device *dev = wil_to_dev(wil);
915 916
	struct vring_tx_desc dd, *d = &dd;
	volatile struct vring_tx_desc *_d;
917 918 919
	u32 swhead = vring->swhead;
	int avail = wil_vring_avail_tx(vring);
	int nr_frags = skb_shinfo(skb)->nr_frags;
920
	uint f = 0;
921
	int vring_index = vring - wil->vring_tx;
922
	struct vring_tx_data *txdata = &wil->vring_tx_data[vring_index];
923 924 925
	uint i = swhead;
	dma_addr_t pa;

926
	wil_dbg_txrx(wil, "%s()\n", __func__);
927 928

	if (avail < 1 + nr_frags) {
929 930 931
		wil_err_ratelimited(wil,
				    "Tx ring full. No space for %d fragments\n",
				    1 + nr_frags);
932 933
		return -ENOMEM;
	}
934
	_d = &vring->va[i].tx;
935

936
	pa = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
937

938 939
	wil_dbg_txrx(wil, "Tx skb %d bytes 0x%p -> %pad\n", skb_headlen(skb),
		     skb->data, &pa);
940
	wil_hex_dump_txrx("Tx ", DUMP_PREFIX_OFFSET, 16, 1,
941 942 943 944
			  skb->data, skb_headlen(skb), false);

	if (unlikely(dma_mapping_error(dev, pa)))
		return -EINVAL;
945
	vring->ctx[i].mapped_as = wil_mapped_as_single;
946
	/* 1-st segment */
947
	wil_tx_desc_map(d, pa, skb_headlen(skb), vring_index);
948 949 950 951 952 953 954
	/* Process TCP/UDP checksum offloading */
	if (wil_tx_desc_offload_cksum_set(wil, d, skb)) {
		wil_err(wil, "VRING #%d Failed to set cksum, drop packet\n",
			vring_index);
		goto dma_error;
	}

955 956
	vring->ctx[i].nr_frags = nr_frags;
	wil_tx_desc_set_nr_frags(d, nr_frags);
957 958 959
	if (nr_frags)
		*_d = *d;

960
	/* middle segments */
961
	for (; f < nr_frags; f++) {
962 963 964
		const struct skb_frag_struct *frag =
				&skb_shinfo(skb)->frags[f];
		int len = skb_frag_size(frag);
965

966
		i = (swhead + f + 1) % vring->size;
967
		_d = &vring->va[i].tx;
968
		pa = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag),
969
				      DMA_TO_DEVICE);
970 971
		if (unlikely(dma_mapping_error(dev, pa)))
			goto dma_error;
972
		vring->ctx[i].mapped_as = wil_mapped_as_page;
973
		wil_tx_desc_map(d, pa, len, vring_index);
974 975 976 977 978
		/* no need to check return code -
		 * if it succeeded for 1-st descriptor,
		 * it will succeed here too
		 */
		wil_tx_desc_offload_cksum_set(wil, d, skb);
979
		*_d = *d;
980 981 982
	}
	/* for the last seg only */
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
983
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
984
	d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
985
	*_d = *d;
986

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

993
	wil_hex_dump_txrx("Tx ", DUMP_PREFIX_NONE, 32, 4,
994 995
			  (const void *)d, sizeof(*d), false);

996 997 998
	if (wil_vring_is_empty(vring)) /* performance monitoring */
		txdata->idle += get_cycles() - txdata->last_idle;

999 1000
	/* advance swhead */
	wil_vring_advance_head(vring, nr_frags + 1);
1001
	wil_dbg_txrx(wil, "Tx swhead %d -> %d\n", swhead, vring->swhead);
V
Vladimir Kondratiev 已提交
1002
	trace_wil6210_tx(vring_index, swhead, skb->len, nr_frags);
1003 1004 1005 1006 1007
	iowrite32(vring->swhead, wil->csr + HOSTADDR(vring->hwtail));

	return 0;
 dma_error:
	/* unmap what we have mapped */
1008 1009 1010
	nr_frags = f + 1; /* frags mapped + one for skb head */
	for (f = 0; f < nr_frags; f++) {
		struct wil_ctx *ctx;
1011

1012
		i = (swhead + f) % vring->size;
1013
		ctx = &vring->ctx[i];
1014
		_d = &vring->va[i].tx;
1015 1016
		*d = *_d;
		_d->dma.status = TX_DMA_STATUS_DU;
1017
		wil_txdesc_unmap(dev, d, ctx);
1018 1019 1020 1021 1022

		if (ctx->skb)
			dev_kfree_skb_any(ctx->skb);

		memset(ctx, 0, sizeof(*ctx));
1023 1024 1025 1026 1027 1028 1029 1030
	}

	return -EINVAL;
}

netdev_tx_t wil_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
	struct wil6210_priv *wil = ndev_to_wil(ndev);
1031
	struct ethhdr *eth = (void *)skb->data;
1032
	struct vring *vring;
1033
	static bool pr_once_fw;
1034 1035
	int rc;

1036
	wil_dbg_txrx(wil, "%s()\n", __func__);
1037
	if (!test_bit(wil_status_fwready, &wil->status)) {
1038 1039 1040 1041
		if (!pr_once_fw) {
			wil_err(wil, "FW not ready\n");
			pr_once_fw = true;
		}
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
		goto drop;
	}
	if (!test_bit(wil_status_fwconnected, &wil->status)) {
		wil_err(wil, "FW not connected\n");
		goto drop;
	}
	if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR) {
		wil_err(wil, "Xmit in monitor mode not supported\n");
		goto drop;
	}
1052
	pr_once_fw = false;
1053 1054

	/* find vring */
1055
	if (is_unicast_ether_addr(eth->h_dest))
1056
		vring = wil_find_tx_vring(wil, skb);
1057
	else
V
Vladimir Kondratiev 已提交
1058
		vring = wil_tx_bcast(wil, skb);
1059
	if (!vring) {
1060
		wil_dbg_txrx(wil, "No Tx VRING found for %pM\n", eth->h_dest);
1061
		goto drop;
1062
	}
1063

1064 1065 1066
	/* set up vring entry */
	rc = wil_tx_vring(wil, vring, skb);

1067
	/* do we still have enough room in the vring? */
1068
	if (wil_vring_avail_tx(vring) < wil_vring_wmark_low(vring)) {
1069
		netif_tx_stop_all_queues(wil_to_ndev(wil));
1070 1071
		wil_dbg_txrx(wil, "netif_tx_stop : ring full\n");
	}
1072

1073 1074
	switch (rc) {
	case 0:
1075
		/* statistics will be updated on the tx_complete */
1076 1077 1078 1079 1080
		dev_kfree_skb_any(skb);
		return NETDEV_TX_OK;
	case -ENOMEM:
		return NETDEV_TX_BUSY;
	default:
1081
		break; /* goto drop; */
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
	}
 drop:
	ndev->stats.tx_dropped++;
	dev_kfree_skb_any(skb);

	return NET_XMIT_DROP;
}

/**
 * Clean up transmitted skb's from the Tx VRING
 *
V
Vladimir Kondratiev 已提交
1093 1094
 * Return number of descriptors cleared
 *
1095 1096
 * Safe to call from IRQ
 */
V
Vladimir Kondratiev 已提交
1097
int wil_tx_complete(struct wil6210_priv *wil, int ringid)
1098
{
1099
	struct net_device *ndev = wil_to_ndev(wil);
1100 1101
	struct device *dev = wil_to_dev(wil);
	struct vring *vring = &wil->vring_tx[ringid];
1102
	struct vring_tx_data *txdata = &wil->vring_tx_data[ringid];
V
Vladimir Kondratiev 已提交
1103
	int done = 0;
1104 1105
	int cid = wil->vring2cid_tid[ringid][0];
	struct wil_net_stats *stats = &wil->sta[cid].stats;
1106
	volatile struct vring_tx_desc *_d;
1107 1108 1109

	if (!vring->va) {
		wil_err(wil, "Tx irq[%d]: vring not initialized\n", ringid);
V
Vladimir Kondratiev 已提交
1110
		return 0;
1111 1112
	}

1113 1114 1115 1116 1117
	if (!txdata->enabled) {
		wil_info(wil, "Tx irq[%d]: vring disabled\n", ringid);
		return 0;
	}

1118
	wil_dbg_txrx(wil, "%s(%d)\n", __func__, ringid);
1119 1120

	while (!wil_vring_is_empty(vring)) {
1121
		int new_swtail;
1122
		struct wil_ctx *ctx = &vring->ctx[vring->swtail];
1123 1124 1125 1126 1127 1128
		/**
		 * For the fragmented skb, HW will set DU bit only for the
		 * last fragment. look for it
		 */
		int lf = (vring->swtail + ctx->nr_frags) % vring->size;
		/* TODO: check we are not past head */
1129

1130 1131
		_d = &vring->va[lf].tx;
		if (!(_d->dma.status & TX_DMA_STATUS_DU))
1132 1133
			break;

1134 1135 1136 1137
		new_swtail = (lf + 1) % vring->size;
		while (vring->swtail != new_swtail) {
			struct vring_tx_desc dd, *d = &dd;
			u16 dmalen;
1138 1139 1140 1141
			struct sk_buff *skb;

			ctx = &vring->ctx[vring->swtail];
			skb = ctx->skb;
1142
			_d = &vring->va[vring->swtail].tx;
1143

1144
			*d = *_d;
1145

1146 1147 1148 1149 1150 1151 1152 1153 1154
			dmalen = le16_to_cpu(d->dma.length);
			trace_wil6210_tx_done(ringid, vring->swtail, dmalen,
					      d->dma.error);
			wil_dbg_txrx(wil,
				     "Tx[%3d] : %d bytes, status 0x%02x err 0x%02x\n",
				     vring->swtail, dmalen, d->dma.status,
				     d->dma.error);
			wil_hex_dump_txrx("TxC ", DUMP_PREFIX_NONE, 32, 4,
					  (const void *)d, sizeof(*d), false);
1155

1156
			wil_txdesc_unmap(dev, d, ctx);
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178

			if (skb) {
				if (d->dma.error == 0) {
					ndev->stats.tx_packets++;
					stats->tx_packets++;
					ndev->stats.tx_bytes += skb->len;
					stats->tx_bytes += skb->len;
				} else {
					ndev->stats.tx_errors++;
					stats->tx_errors++;
				}

				dev_kfree_skb_any(skb);
			}
			memset(ctx, 0, sizeof(*ctx));
			/* 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++;
1179 1180
		}
	}
1181

1182
	if (wil_vring_is_empty(vring)) { /* performance monitoring */
1183
		wil_dbg_txrx(wil, "Ring[%2d] empty\n", ringid);
1184 1185
		txdata->last_idle = get_cycles();
	}
1186

1187 1188
	if (wil_vring_avail_tx(vring) > wil_vring_wmark_high(vring)) {
		wil_dbg_txrx(wil, "netif_tx_wake : ring not full\n");
1189
		netif_tx_wake_all_queues(wil_to_ndev(wil));
1190
	}
V
Vladimir Kondratiev 已提交
1191 1192

	return done;
1193
}