dhd_linux.c 29.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright (c) 2010 Broadcom Corporation
 *
 * 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.
 */

17 18
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/kthread.h>
#include <linux/slab.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/mmc/sdio_func.h>
#include <linux/random.h>
#include <linux/spinlock.h>
#include <linux/ethtool.h>
#include <linux/fcntl.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#include <linux/hardirq.h>
#include <linux/mutex.h>
#include <linux/wait.h>
36
#include <linux/module.h>
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
#include <net/cfg80211.h>
#include <net/rtnetlink.h>
#include <defs.h>
#include <brcmu_utils.h>
#include <brcmu_wifi.h>

#include "dhd.h"
#include "dhd_bus.h"
#include "dhd_proto.h"
#include "dhd_dbg.h"
#include "wl_cfg80211.h"

MODULE_AUTHOR("Broadcom Corporation");
MODULE_DESCRIPTION("Broadcom 802.11n wireless LAN fullmac driver.");
MODULE_SUPPORTED_DEVICE("Broadcom 802.11n WLAN fullmac cards");
MODULE_LICENSE("Dual BSD/GPL");


/* Interface control information */
struct brcmf_if {
57
	struct brcmf_pub *drvr;	/* back pointer to brcmf_pub */
58 59 60 61 62 63 64 65
	/* OS/stack specifics */
	struct net_device *ndev;
	struct net_device_stats stats;
	int idx;		/* iface idx in dongle */
	u8 mac_addr[ETH_ALEN];	/* assigned MAC address */
};

/* Error bits */
66
int brcmf_msg_level = BRCMF_ERROR_VAL;
67 68
module_param(brcmf_msg_level, int, 0);

69
int brcmf_ifname2idx(struct brcmf_pub *drvr, char *name)
70 71 72 73 74 75 76 77
{
	int i = BRCMF_MAX_IFS;
	struct brcmf_if *ifp;

	if (name == NULL || *name == '\0')
		return 0;

	while (--i > 0) {
78
		ifp = drvr->iflist[i];
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
		if (ifp && !strncmp(ifp->ndev->name, name, IFNAMSIZ))
			break;
	}

	brcmf_dbg(TRACE, "return idx %d for \"%s\"\n", i, name);

	return i;		/* default - the primary interface */
}

char *brcmf_ifname(struct brcmf_pub *drvr, int ifidx)
{
	if (ifidx < 0 || ifidx >= BRCMF_MAX_IFS) {
		brcmf_dbg(ERROR, "ifidx %d out of range\n", ifidx);
		return "<if_bad>";
	}

95
	if (drvr->iflist[ifidx] == NULL) {
96 97 98 99
		brcmf_dbg(ERROR, "null i/f %d\n", ifidx);
		return "<if_null>";
	}

100 101
	if (drvr->iflist[ifidx]->ndev)
		return drvr->iflist[ifidx]->ndev->name;
102 103 104 105 106 107 108 109

	return "<if_none>";
}

static void _brcmf_set_multicast_list(struct work_struct *work)
{
	struct net_device *ndev;
	struct netdev_hw_addr *ha;
110
	u32 dcmd_value, cnt;
111
	__le32 cnt_le;
112
	__le32 dcmd_le_value;
113 114 115 116 117 118

	struct brcmf_dcmd dcmd;
	char *buf, *bufp;
	uint buflen;
	int ret;

119
	struct brcmf_pub *drvr = container_of(work, struct brcmf_pub,
120 121
						    multicast_work);

122
	ndev = drvr->iflist[0]->ndev;
123 124 125
	cnt = netdev_mc_count(ndev);

	/* Determine initial value of allmulti flag */
126
	dcmd_value = (ndev->flags & IFF_ALLMULTI) ? true : false;
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

	/* Send down the multicast list first. */

	buflen = sizeof("mcast_list") + sizeof(cnt) + (cnt * ETH_ALEN);
	bufp = buf = kmalloc(buflen, GFP_ATOMIC);
	if (!bufp)
		return;

	strcpy(bufp, "mcast_list");
	bufp += strlen("mcast_list") + 1;

	cnt_le = cpu_to_le32(cnt);
	memcpy(bufp, &cnt_le, sizeof(cnt));
	bufp += sizeof(cnt_le);

	netdev_for_each_mc_addr(ha, ndev) {
		if (!cnt)
			break;
		memcpy(bufp, ha->addr, ETH_ALEN);
		bufp += ETH_ALEN;
		cnt--;
	}

	memset(&dcmd, 0, sizeof(dcmd));
	dcmd.cmd = BRCMF_C_SET_VAR;
	dcmd.buf = buf;
	dcmd.len = buflen;
	dcmd.set = true;

156
	ret = brcmf_proto_dcmd(drvr, 0, &dcmd, dcmd.len);
157 158
	if (ret < 0) {
		brcmf_dbg(ERROR, "%s: set mcast_list failed, cnt %d\n",
159
			  brcmf_ifname(drvr, 0), cnt);
160
		dcmd_value = cnt ? true : dcmd_value;
161 162 163 164 165 166 167 168 169
	}

	kfree(buf);

	/* Now send the allmulti setting.  This is based on the setting in the
	 * net_device flags, but might be modified above to be turned on if we
	 * were trying to set some addresses and dongle rejected it...
	 */

170
	buflen = sizeof("allmulti") + sizeof(dcmd_value);
171 172 173 174
	buf = kmalloc(buflen, GFP_ATOMIC);
	if (!buf)
		return;

175
	dcmd_le_value = cpu_to_le32(dcmd_value);
176

177
	if (!brcmf_c_mkiovar
178 179
	    ("allmulti", (void *)&dcmd_le_value,
	    sizeof(dcmd_le_value), buf, buflen)) {
180
		brcmf_dbg(ERROR, "%s: mkiovar failed for allmulti, datalen %d buflen %u\n",
181
			  brcmf_ifname(drvr, 0),
182
			  (int)sizeof(dcmd_value), buflen);
183 184 185 186 187 188 189 190 191 192
		kfree(buf);
		return;
	}

	memset(&dcmd, 0, sizeof(dcmd));
	dcmd.cmd = BRCMF_C_SET_VAR;
	dcmd.buf = buf;
	dcmd.len = buflen;
	dcmd.set = true;

193
	ret = brcmf_proto_dcmd(drvr, 0, &dcmd, dcmd.len);
194 195
	if (ret < 0) {
		brcmf_dbg(ERROR, "%s: set allmulti %d failed\n",
196
			  brcmf_ifname(drvr, 0),
197
			  le32_to_cpu(dcmd_le_value));
198 199 200 201 202 203 204
	}

	kfree(buf);

	/* Finally, pick up the PROMISC flag as well, like the NIC
		 driver does */

205 206
	dcmd_value = (ndev->flags & IFF_PROMISC) ? true : false;
	dcmd_le_value = cpu_to_le32(dcmd_value);
207 208 209

	memset(&dcmd, 0, sizeof(dcmd));
	dcmd.cmd = BRCMF_C_SET_PROMISC;
210 211
	dcmd.buf = &dcmd_le_value;
	dcmd.len = sizeof(dcmd_le_value);
212 213
	dcmd.set = true;

214
	ret = brcmf_proto_dcmd(drvr, 0, &dcmd, dcmd.len);
215 216
	if (ret < 0) {
		brcmf_dbg(ERROR, "%s: set promisc %d failed\n",
217
			  brcmf_ifname(drvr, 0),
218
			  le32_to_cpu(dcmd_le_value));
219 220 221 222 223 224 225 226 227 228
	}
}

static void
_brcmf_set_mac_address(struct work_struct *work)
{
	char buf[32];
	struct brcmf_dcmd dcmd;
	int ret;

229
	struct brcmf_pub *drvr = container_of(work, struct brcmf_pub,
230 231 232
						    setmacaddr_work);

	brcmf_dbg(TRACE, "enter\n");
233
	if (!brcmf_c_mkiovar("cur_etheraddr", (char *)drvr->macvalue,
234 235
			   ETH_ALEN, buf, 32)) {
		brcmf_dbg(ERROR, "%s: mkiovar failed for cur_etheraddr\n",
236
			  brcmf_ifname(drvr, 0));
237 238 239 240 241 242 243 244
		return;
	}
	memset(&dcmd, 0, sizeof(dcmd));
	dcmd.cmd = BRCMF_C_SET_VAR;
	dcmd.buf = buf;
	dcmd.len = 32;
	dcmd.set = true;

245
	ret = brcmf_proto_dcmd(drvr, 0, &dcmd, dcmd.len);
246 247
	if (ret < 0)
		brcmf_dbg(ERROR, "%s: set cur_etheraddr failed\n",
248
			  brcmf_ifname(drvr, 0));
249
	else
250 251
		memcpy(drvr->iflist[0]->ndev->dev_addr,
		       drvr->macvalue, ETH_ALEN);
252 253 254 255 256 257

	return;
}

static int brcmf_netdev_set_mac_address(struct net_device *ndev, void *addr)
{
258
	struct brcmf_if *ifp = netdev_priv(ndev);
259
	struct brcmf_pub *drvr = ifp->drvr;
260 261
	struct sockaddr *sa = (struct sockaddr *)addr;

262 263
	memcpy(&drvr->macvalue, sa->sa_data, ETH_ALEN);
	schedule_work(&drvr->setmacaddr_work);
264 265 266 267 268
	return 0;
}

static void brcmf_netdev_set_multicast_list(struct net_device *ndev)
{
269
	struct brcmf_if *ifp = netdev_priv(ndev);
270
	struct brcmf_pub *drvr = ifp->drvr;
271

272
	schedule_work(&drvr->multicast_work);
273 274 275 276 277
}

int brcmf_sendpkt(struct brcmf_pub *drvr, int ifidx, struct sk_buff *pktbuf)
{
	/* Reject if down */
278
	if (!drvr->bus_if->drvr_up || (drvr->bus_if->state == BRCMF_BUS_DOWN))
279 280 281 282 283 284 285 286 287 288
		return -ENODEV;

	/* Update multicast statistic */
	if (pktbuf->len >= ETH_ALEN) {
		u8 *pktdata = (u8 *) (pktbuf->data);
		struct ethhdr *eh = (struct ethhdr *)pktdata;

		if (is_multicast_ether_addr(eh->h_dest))
			drvr->tx_multicast++;
		if (ntohs(eh->h_proto) == ETH_P_PAE)
289
			atomic_inc(&drvr->pend_8021x_cnt);
290 291 292 293 294 295
	}

	/* If the protocol uses a data header, apply it */
	brcmf_proto_hdrpush(drvr, ifidx, pktbuf);

	/* Use bus module to send data frame */
296
	return drvr->bus_if->brcmf_bus_txdata(drvr->dev, pktbuf);
297 298 299 300 301
}

static int brcmf_netdev_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
	int ret;
302
	struct brcmf_if *ifp = netdev_priv(ndev);
303
	struct brcmf_pub *drvr = ifp->drvr;
304 305 306 307

	brcmf_dbg(TRACE, "Enter\n");

	/* Reject if down */
308
	if (!drvr->bus_if->drvr_up ||
309
	    (drvr->bus_if->state == BRCMF_BUS_DOWN)) {
310 311
		brcmf_dbg(ERROR, "xmit rejected drvup=%d state=%d\n",
			  drvr->bus_if->drvr_up,
312
			  drvr->bus_if->state);
313 314 315 316
		netif_stop_queue(ndev);
		return -ENODEV;
	}

317
	if (!drvr->iflist[ifp->idx]) {
318
		brcmf_dbg(ERROR, "bad ifidx %d\n", ifp->idx);
319 320 321 322 323
		netif_stop_queue(ndev);
		return -ENODEV;
	}

	/* Make sure there's enough room for any header */
324
	if (skb_headroom(skb) < drvr->hdrlen) {
325 326 327
		struct sk_buff *skb2;

		brcmf_dbg(INFO, "%s: insufficient headroom\n",
328
			  brcmf_ifname(drvr, ifp->idx));
329
		drvr->bus_if->tx_realloc++;
330
		skb2 = skb_realloc_headroom(skb, drvr->hdrlen);
331 332 333 334
		dev_kfree_skb(skb);
		skb = skb2;
		if (skb == NULL) {
			brcmf_dbg(ERROR, "%s: skb_realloc_headroom failed\n",
335
				  brcmf_ifname(drvr, ifp->idx));
336 337 338 339 340
			ret = -ENOMEM;
			goto done;
		}
	}

341
	ret = brcmf_sendpkt(drvr, ifp->idx, skb);
342 343 344

done:
	if (ret)
345
		drvr->bus_if->dstats.tx_dropped++;
346
	else
347
		drvr->bus_if->dstats.tx_packets++;
348 349 350 351 352

	/* Return ok: we always eat the packet */
	return 0;
}

353
void brcmf_txflowcontrol(struct device *dev, int ifidx, bool state)
354 355
{
	struct net_device *ndev;
356 357
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
358 359 360

	brcmf_dbg(TRACE, "Enter\n");

361
	ndev = drvr->iflist[ifidx]->ndev;
362 363 364 365 366 367
	if (state == ON)
		netif_stop_queue(ndev);
	else
		netif_wake_queue(ndev);
}

368
static int brcmf_host_event(struct brcmf_pub *drvr, int *ifidx,
369 370 371 372 373
			    void *pktdata, struct brcmf_event_msg *event,
			    void **data)
{
	int bcmerror = 0;

374
	bcmerror = brcmf_c_host_event(drvr, ifidx, pktdata, event, data);
375 376 377
	if (bcmerror != 0)
		return bcmerror;

378 379
	if (drvr->iflist[*ifidx]->ndev)
		brcmf_cfg80211_event(drvr->iflist[*ifidx]->ndev,
380 381 382 383 384
				     event, *data);

	return bcmerror;
}

385
void brcmf_rx_frame(struct device *dev, int ifidx,
386
		    struct sk_buff_head *skb_list)
387 388 389 390
{
	unsigned char *eth;
	uint len;
	void *data;
391
	struct sk_buff *skb, *pnext;
392 393
	struct brcmf_if *ifp;
	struct brcmf_event_msg event;
394 395
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
396 397 398

	brcmf_dbg(TRACE, "Enter\n");

399 400
	skb_queue_walk_safe(skb_list, skb, pnext) {
		skb_unlink(skb, skb_list);
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

		/* Get the protocol, maintain skb around eth_type_trans()
		 * The main reason for this hack is for the limitation of
		 * Linux 2.4 where 'eth_type_trans' uses the
		 * 'net->hard_header_len'
		 * to perform skb_pull inside vs ETH_HLEN. Since to avoid
		 * coping of the packet coming from the network stack to add
		 * BDC, Hardware header etc, during network interface
		 * registration
		 * we set the 'net->hard_header_len' to ETH_HLEN + extra space
		 * required
		 * for BDC, Hardware header etc. and not just the ETH_HLEN
		 */
		eth = skb->data;
		len = skb->len;

417
		ifp = drvr->iflist[ifidx];
418
		if (ifp == NULL)
419
			ifp = drvr->iflist[0];
420

421 422 423 424 425 426
		if (!ifp || !ifp->ndev ||
		    ifp->ndev->reg_state != NETREG_REGISTERED) {
			brcmu_pkt_buf_free_skb(skb);
			continue;
		}

427 428 429 430
		skb->dev = ifp->ndev;
		skb->protocol = eth_type_trans(skb, skb->dev);

		if (skb->pkt_type == PACKET_MULTICAST)
431
			bus_if->dstats.multicast++;
432 433 434 435 436 437 438 439 440

		skb->data = eth;
		skb->len = len;

		/* Strip header, count, deliver upward */
		skb_pull(skb, ETH_HLEN);

		/* Process special event packets and then discard them */
		if (ntohs(skb->protocol) == ETH_P_LINK_CTL)
441
			brcmf_host_event(drvr, &ifidx,
442 443 444
					  skb_mac_header(skb),
					  &event, &data);

445 446
		if (drvr->iflist[ifidx]) {
			ifp = drvr->iflist[ifidx];
447
			ifp->ndev->last_rx = jiffies;
448
		}
449

450 451
		bus_if->dstats.rx_bytes += skb->len;
		bus_if->dstats.rx_packets++;	/* Local count */
452 453 454 455 456 457 458 459 460 461 462 463 464 465

		if (in_interrupt())
			netif_rx(skb);
		else
			/* If the receive is not processed inside an ISR,
			 * the softirqd must be woken explicitly to service
			 * the NET_RX_SOFTIRQ.  In 2.6 kernels, this is handled
			 * by netif_rx_ni(), but in earlier kernels, we need
			 * to do it manually.
			 */
			netif_rx_ni(skb);
	}
}

466
void brcmf_txcomplete(struct device *dev, struct sk_buff *txp, bool success)
467 468 469 470
{
	uint ifidx;
	struct ethhdr *eh;
	u16 type;
471 472
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
473

474
	brcmf_proto_hdrpull(dev, &ifidx, txp);
475 476 477 478 479

	eh = (struct ethhdr *)(txp->data);
	type = ntohs(eh->h_proto);

	if (type == ETH_P_PAE)
480
		atomic_dec(&drvr->pend_8021x_cnt);
481 482 483 484 485

}

static struct net_device_stats *brcmf_netdev_get_stats(struct net_device *ndev)
{
486
	struct brcmf_if *ifp = netdev_priv(ndev);
487
	struct brcmf_bus *bus_if = ifp->drvr->bus_if;
488 489 490 491

	brcmf_dbg(TRACE, "Enter\n");

	/* Copy dongle stats to net device stats */
492 493 494 495 496 497 498 499 500
	ifp->stats.rx_packets = bus_if->dstats.rx_packets;
	ifp->stats.tx_packets = bus_if->dstats.tx_packets;
	ifp->stats.rx_bytes = bus_if->dstats.rx_bytes;
	ifp->stats.tx_bytes = bus_if->dstats.tx_bytes;
	ifp->stats.rx_errors = bus_if->dstats.rx_errors;
	ifp->stats.tx_errors = bus_if->dstats.tx_errors;
	ifp->stats.rx_dropped = bus_if->dstats.rx_dropped;
	ifp->stats.tx_dropped = bus_if->dstats.tx_dropped;
	ifp->stats.multicast = bus_if->dstats.multicast;
501 502 503 504 505 506

	return &ifp->stats;
}

/* Retrieve current toe component enables, which are kept
	 as a bitmap in toe_ol iovar */
507
static int brcmf_toe_get(struct brcmf_pub *drvr, int ifidx, u32 *toe_ol)
508 509
{
	struct brcmf_dcmd dcmd;
510
	__le32 toe_le;
511 512 513 514 515 516 517 518 519 520 521
	char buf[32];
	int ret;

	memset(&dcmd, 0, sizeof(dcmd));

	dcmd.cmd = BRCMF_C_GET_VAR;
	dcmd.buf = buf;
	dcmd.len = (uint) sizeof(buf);
	dcmd.set = false;

	strcpy(buf, "toe_ol");
522
	ret = brcmf_proto_dcmd(drvr, ifidx, &dcmd, dcmd.len);
523 524 525 526
	if (ret < 0) {
		/* Check for older dongle image that doesn't support toe_ol */
		if (ret == -EIO) {
			brcmf_dbg(ERROR, "%s: toe not supported by device\n",
527
				  brcmf_ifname(drvr, ifidx));
528 529 530 531
			return -EOPNOTSUPP;
		}

		brcmf_dbg(INFO, "%s: could not get toe_ol: ret=%d\n",
532
			  brcmf_ifname(drvr, ifidx), ret);
533 534 535
		return ret;
	}

536 537
	memcpy(&toe_le, buf, sizeof(u32));
	*toe_ol = le32_to_cpu(toe_le);
538 539 540 541 542
	return 0;
}

/* Set current toe component enables in toe_ol iovar,
	 and set toe global enable iovar */
543
static int brcmf_toe_set(struct brcmf_pub *drvr, int ifidx, u32 toe_ol)
544 545 546
{
	struct brcmf_dcmd dcmd;
	char buf[32];
547 548
	int ret;
	__le32 toe_le = cpu_to_le32(toe_ol);
549 550 551 552 553 554 555 556 557 558

	memset(&dcmd, 0, sizeof(dcmd));

	dcmd.cmd = BRCMF_C_SET_VAR;
	dcmd.buf = buf;
	dcmd.len = (uint) sizeof(buf);
	dcmd.set = true;

	/* Set toe_ol as requested */
	strcpy(buf, "toe_ol");
559
	memcpy(&buf[sizeof("toe_ol")], &toe_le, sizeof(u32));
560

561
	ret = brcmf_proto_dcmd(drvr, ifidx, &dcmd, dcmd.len);
562 563
	if (ret < 0) {
		brcmf_dbg(ERROR, "%s: could not set toe_ol: ret=%d\n",
564
			  brcmf_ifname(drvr, ifidx), ret);
565 566 567 568
		return ret;
	}

	/* Enable toe globally only if any components are enabled. */
569
	toe_le = cpu_to_le32(toe_ol != 0);
570 571

	strcpy(buf, "toe");
572
	memcpy(&buf[sizeof("toe")], &toe_le, sizeof(u32));
573

574
	ret = brcmf_proto_dcmd(drvr, ifidx, &dcmd, dcmd.len);
575 576
	if (ret < 0) {
		brcmf_dbg(ERROR, "%s: could not set toe: ret=%d\n",
577
			  brcmf_ifname(drvr, ifidx), ret);
578 579 580 581 582 583 584 585 586
		return ret;
	}

	return 0;
}

static void brcmf_ethtool_get_drvinfo(struct net_device *ndev,
				    struct ethtool_drvinfo *info)
{
587
	struct brcmf_if *ifp = netdev_priv(ndev);
588
	struct brcmf_pub *drvr = ifp->drvr;
589 590

	sprintf(info->driver, KBUILD_MODNAME);
591 592
	sprintf(info->version, "%lu", drvr->drv_version);
	sprintf(info->bus_info, "%s", dev_name(drvr->dev));
593 594
}

595 596
static const struct ethtool_ops brcmf_ethtool_ops = {
	.get_drvinfo = brcmf_ethtool_get_drvinfo,
597 598
};

599
static int brcmf_ethtool(struct brcmf_pub *drvr, void __user *uaddr)
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
{
	struct ethtool_drvinfo info;
	char drvname[sizeof(info.driver)];
	u32 cmd;
	struct ethtool_value edata;
	u32 toe_cmpnt, csum_dir;
	int ret;

	brcmf_dbg(TRACE, "Enter\n");

	/* all ethtool calls start with a cmd word */
	if (copy_from_user(&cmd, uaddr, sizeof(u32)))
		return -EFAULT;

	switch (cmd) {
	case ETHTOOL_GDRVINFO:
		/* Copy out any request driver name */
		if (copy_from_user(&info, uaddr, sizeof(info)))
			return -EFAULT;
		strncpy(drvname, info.driver, sizeof(info.driver));
		drvname[sizeof(info.driver) - 1] = '\0';

		/* clear struct for return */
		memset(&info, 0, sizeof(info));
		info.cmd = cmd;

		/* if requested, identify ourselves */
		if (strcmp(drvname, "?dhd") == 0) {
			sprintf(info.driver, "dhd");
			strcpy(info.version, BRCMF_VERSION_STR);
		}

		/* otherwise, require dongle to be up */
633
		else if (!drvr->bus_if->drvr_up) {
634 635 636 637 638
			brcmf_dbg(ERROR, "dongle is not up\n");
			return -ENODEV;
		}

		/* finally, report dongle driver type */
639
		else if (drvr->iswl)
640 641 642 643
			sprintf(info.driver, "wl");
		else
			sprintf(info.driver, "xx");

644
		sprintf(info.version, "%lu", drvr->drv_version);
645 646 647 648 649 650 651 652 653
		if (copy_to_user(uaddr, &info, sizeof(info)))
			return -EFAULT;
		brcmf_dbg(CTL, "given %*s, returning %s\n",
			  (int)sizeof(drvname), drvname, info.driver);
		break;

		/* Get toe offload components from dongle */
	case ETHTOOL_GRXCSUM:
	case ETHTOOL_GTXCSUM:
654
		ret = brcmf_toe_get(drvr, 0, &toe_cmpnt);
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
		if (ret < 0)
			return ret;

		csum_dir =
		    (cmd == ETHTOOL_GTXCSUM) ? TOE_TX_CSUM_OL : TOE_RX_CSUM_OL;

		edata.cmd = cmd;
		edata.data = (toe_cmpnt & csum_dir) ? 1 : 0;

		if (copy_to_user(uaddr, &edata, sizeof(edata)))
			return -EFAULT;
		break;

		/* Set toe offload components in dongle */
	case ETHTOOL_SRXCSUM:
	case ETHTOOL_STXCSUM:
		if (copy_from_user(&edata, uaddr, sizeof(edata)))
			return -EFAULT;

		/* Read the current settings, update and write back */
675
		ret = brcmf_toe_get(drvr, 0, &toe_cmpnt);
676 677 678 679 680 681 682 683 684 685 686
		if (ret < 0)
			return ret;

		csum_dir =
		    (cmd == ETHTOOL_STXCSUM) ? TOE_TX_CSUM_OL : TOE_RX_CSUM_OL;

		if (edata.data != 0)
			toe_cmpnt |= csum_dir;
		else
			toe_cmpnt &= ~csum_dir;

687
		ret = brcmf_toe_set(drvr, 0, toe_cmpnt);
688 689 690 691 692 693
		if (ret < 0)
			return ret;

		/* If setting TX checksum mode, tell Linux the new mode */
		if (cmd == ETHTOOL_STXCSUM) {
			if (edata.data)
694
				drvr->iflist[0]->ndev->features |=
695 696
				    NETIF_F_IP_CSUM;
			else
697
				drvr->iflist[0]->ndev->features &=
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
				    ~NETIF_F_IP_CSUM;
		}

		break;

	default:
		return -EOPNOTSUPP;
	}

	return 0;
}

static int brcmf_netdev_ioctl_entry(struct net_device *ndev, struct ifreq *ifr,
				    int cmd)
{
713
	struct brcmf_if *ifp = netdev_priv(ndev);
714
	struct brcmf_pub *drvr = ifp->drvr;
715

716
	brcmf_dbg(TRACE, "ifidx %d, cmd 0x%04x\n", ifp->idx, cmd);
717

718
	if (!drvr->iflist[ifp->idx])
719 720 721
		return -1;

	if (cmd == SIOCETHTOOL)
722
		return brcmf_ethtool(drvr, ifr->ifr_data);
723 724 725 726 727 728 729 730 731 732 733

	return -EOPNOTSUPP;
}

/* called only from within this driver. Sends a command to the dongle. */
s32 brcmf_exec_dcmd(struct net_device *ndev, u32 cmd, void *arg, u32 len)
{
	struct brcmf_dcmd dcmd;
	s32 err = 0;
	int buflen = 0;
	bool is_set_key_cmd;
734
	struct brcmf_if *ifp = netdev_priv(ndev);
735
	struct brcmf_pub *drvr = ifp->drvr;
736 737 738 739 740 741 742 743 744 745

	memset(&dcmd, 0, sizeof(dcmd));
	dcmd.cmd = cmd;
	dcmd.buf = arg;
	dcmd.len = len;

	if (dcmd.buf != NULL)
		buflen = min_t(uint, dcmd.len, BRCMF_DCMD_MAXLEN);

	/* send to dongle (must be up, and wl) */
746
	if ((drvr->bus_if->state != BRCMF_BUS_DATA)) {
747 748 749 750 751
		brcmf_dbg(ERROR, "DONGLE_DOWN\n");
		err = -EIO;
		goto done;
	}

752
	if (!drvr->iswl) {
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
		err = -EIO;
		goto done;
	}

	/*
	 * Intercept BRCMF_C_SET_KEY CMD - serialize M4 send and
	 * set key CMD to prevent M4 encryption.
	 */
	is_set_key_cmd = ((dcmd.cmd == BRCMF_C_SET_KEY) ||
			  ((dcmd.cmd == BRCMF_C_SET_VAR) &&
			   !(strncmp("wsec_key", dcmd.buf, 9))) ||
			  ((dcmd.cmd == BRCMF_C_SET_VAR) &&
			   !(strncmp("bsscfg:wsec_key", dcmd.buf, 15))));
	if (is_set_key_cmd)
		brcmf_netdev_wait_pend8021x(ndev);

769
	err = brcmf_proto_dcmd(drvr, ifp->idx, &dcmd, buflen);
770 771 772 773 774 775 776 777 778 779

done:
	if (err > 0)
		err = 0;

	return err;
}

static int brcmf_netdev_stop(struct net_device *ndev)
{
780
	struct brcmf_if *ifp = netdev_priv(ndev);
781
	struct brcmf_pub *drvr = ifp->drvr;
782 783 784

	brcmf_dbg(TRACE, "Enter\n");
	brcmf_cfg80211_down(drvr->config);
785
	if (drvr->bus_if->drvr_up == 0)
786 787 788
		return 0;

	/* Set state and stop OS transmissions */
J
John W. Linville 已提交
789
	drvr->bus_if->drvr_up = false;
790 791 792 793 794 795 796
	netif_stop_queue(ndev);

	return 0;
}

static int brcmf_netdev_open(struct net_device *ndev)
{
797
	struct brcmf_if *ifp = netdev_priv(ndev);
798
	struct brcmf_pub *drvr = ifp->drvr;
799
	struct brcmf_bus *bus_if = drvr->bus_if;
800 801
	u32 toe_ol;
	s32 ret = 0;
802
	uint up = 0;
803

804
	brcmf_dbg(TRACE, "ifidx %d\n", ifp->idx);
805

806
	if (ifp->idx == 0) {	/* do it only for primary eth0 */
807 808 809 810
		/* If bus is not ready, can't continue */
		if (bus_if->state != BRCMF_BUS_DATA) {
			brcmf_dbg(ERROR, "failed bus is not ready\n");
			return -EAGAIN;
811
		}
812

813
		atomic_set(&drvr->pend_8021x_cnt, 0);
814

815
		memcpy(ndev->dev_addr, drvr->mac, ETH_ALEN);
816 817

		/* Get current TOE mode from dongle */
818
		if (brcmf_toe_get(drvr, ifp->idx, &toe_ol) >= 0
819
		    && (toe_ol & TOE_TX_CSUM_OL) != 0)
820
			drvr->iflist[ifp->idx]->ndev->features |=
821 822
				NETIF_F_IP_CSUM;
		else
823
			drvr->iflist[ifp->idx]->ndev->features &=
824 825
				~NETIF_F_IP_CSUM;
	}
826 827 828 829

	/* make sure RF is ready for work */
	brcmf_proto_cdc_set_dcmd(drvr, 0, BRCMF_C_UP, (char *)&up, sizeof(up));

830 831
	/* Allow transmit calls */
	netif_start_queue(ndev);
J
John W. Linville 已提交
832
	drvr->bus_if->drvr_up = true;
833
	if (brcmf_cfg80211_up(drvr->config)) {
834 835 836 837 838 839 840
		brcmf_dbg(ERROR, "failed to bring up cfg80211\n");
		return -1;
	}

	return ret;
}

841 842 843 844 845 846 847 848 849 850
static const struct net_device_ops brcmf_netdev_ops_pri = {
	.ndo_open = brcmf_netdev_open,
	.ndo_stop = brcmf_netdev_stop,
	.ndo_get_stats = brcmf_netdev_get_stats,
	.ndo_do_ioctl = brcmf_netdev_ioctl_entry,
	.ndo_start_xmit = brcmf_netdev_start_xmit,
	.ndo_set_mac_address = brcmf_netdev_set_mac_address,
	.ndo_set_rx_mode = brcmf_netdev_set_multicast_list
};

851
static int brcmf_net_attach(struct brcmf_if *ifp)
852
{
853
	struct brcmf_pub *drvr = ifp->drvr;
854
	struct net_device *ndev;
855
	u8 temp_addr[ETH_ALEN];
856

857
	brcmf_dbg(TRACE, "ifidx %d\n", ifp->idx);
858

859
	ndev = drvr->iflist[ifp->idx]->ndev;
860 861 862
	ndev->netdev_ops = &brcmf_netdev_ops_pri;

	/*
863
	 * determine mac address to use
864
	 */
865 866 867
	if (is_valid_ether_addr(ifp->mac_addr))
		memcpy(temp_addr, ifp->mac_addr, ETH_ALEN);
	else
868 869
		memcpy(temp_addr, drvr->mac, ETH_ALEN);

870
	if (ifp->idx == 1) {
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
		brcmf_dbg(TRACE, "ACCESS POINT MAC:\n");
		/*  ACCESSPOINT INTERFACE CASE */
		temp_addr[0] |= 0X02;	/* set bit 2 ,
			 - Locally Administered address  */

	}
	ndev->hard_header_len = ETH_HLEN + drvr->hdrlen;
	ndev->ethtool_ops = &brcmf_ethtool_ops;

	drvr->rxsz = ndev->mtu + ndev->hard_header_len +
			      drvr->hdrlen;

	memcpy(ndev->dev_addr, temp_addr, ETH_ALEN);

	/* attach to cfg80211 for primary interface */
886
	if (!ifp->idx) {
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
		drvr->config = brcmf_cfg80211_attach(ndev, drvr->dev, drvr);
		if (drvr->config == NULL) {
			brcmf_dbg(ERROR, "wl_cfg80211_attach failed\n");
			goto fail;
		}
	}

	if (register_netdev(ndev) != 0) {
		brcmf_dbg(ERROR, "couldn't register the net device\n");
		goto fail;
	}

	brcmf_dbg(INFO, "%s: Broadcom Dongle Host Driver\n", ndev->name);

	return 0;

fail:
	ndev->netdev_ops = NULL;
	return -EBADE;
}

908
int
909
brcmf_add_if(struct device *dev, int ifidx, char *name, u8 *mac_addr)
910 911
{
	struct brcmf_if *ifp;
912
	struct net_device *ndev;
913 914
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
915

916
	brcmf_dbg(TRACE, "idx %d\n", ifidx);
917

918
	ifp = drvr->iflist[ifidx];
919 920 921 922 923 924 925 926 927 928
	/*
	 * Delete the existing interface before overwriting it
	 * in case we missed the BRCMF_E_IF_DEL event.
	 */
	if (ifp) {
		brcmf_dbg(ERROR, "ERROR: netdev:%s already exists, try free & unregister\n",
			  ifp->ndev->name);
		netif_stop_queue(ifp->ndev);
		unregister_netdev(ifp->ndev);
		free_netdev(ifp->ndev);
929
		drvr->iflist[ifidx] = NULL;
930
	}
931

932
	/* Allocate netdev, including space for private structure */
933 934
	ndev = alloc_netdev(sizeof(struct brcmf_if), name, ether_setup);
	if (!ndev) {
935
		brcmf_dbg(ERROR, "OOM - alloc_netdev\n");
936
		return -ENOMEM;
937
	}
938

939 940
	ifp = netdev_priv(ndev);
	ifp->ndev = ndev;
941 942
	ifp->drvr = drvr;
	drvr->iflist[ifidx] = ifp;
943
	ifp->idx = ifidx;
944 945
	if (mac_addr != NULL)
		memcpy(&ifp->mac_addr, mac_addr, ETH_ALEN);
946

947
	if (brcmf_net_attach(ifp)) {
948 949
		brcmf_dbg(ERROR, "brcmf_net_attach failed");
		free_netdev(ifp->ndev);
950
		drvr->iflist[ifidx] = NULL;
951
		return -EOPNOTSUPP;
952
	}
953

954 955
	brcmf_dbg(TRACE, " ==== pid:%x, net_device for if:%s created ===\n",
		  current->pid, ifp->ndev->name);
956 957 958 959

	return 0;
}

960
void brcmf_del_if(struct brcmf_pub *drvr, int ifidx)
961 962 963 964 965
{
	struct brcmf_if *ifp;

	brcmf_dbg(TRACE, "idx %d\n", ifidx);

966
	ifp = drvr->iflist[ifidx];
967 968 969 970
	if (!ifp) {
		brcmf_dbg(ERROR, "Null interface\n");
		return;
	}
971 972 973 974 975 976 977 978 979 980 981
	if (ifp->ndev) {
		if (ifidx == 0) {
			if (ifp->ndev->netdev_ops == &brcmf_netdev_ops_pri) {
				rtnl_lock();
				brcmf_netdev_stop(ifp->ndev);
				rtnl_unlock();
			}
		} else {
			netif_stop_queue(ifp->ndev);
		}

982
		unregister_netdev(ifp->ndev);
983
		drvr->iflist[ifidx] = NULL;
984
		if (ifidx == 0)
985
			brcmf_cfg80211_detach(drvr->config);
986
		free_netdev(ifp->ndev);
987 988 989
	}
}

990
int brcmf_attach(uint bus_hdrlen, struct device *dev)
991
{
992
	struct brcmf_pub *drvr = NULL;
993
	int ret = 0;
994 995 996 997

	brcmf_dbg(TRACE, "Enter\n");

	/* Allocate primary brcmf_info */
998 999
	drvr = kzalloc(sizeof(struct brcmf_pub), GFP_ATOMIC);
	if (!drvr)
1000
		return -ENOMEM;
1001

1002
	mutex_init(&drvr->proto_block);
1003 1004

	/* Link to bus module */
1005 1006
	drvr->hdrlen = bus_hdrlen;
	drvr->bus_if = dev_get_drvdata(dev);
1007
	drvr->bus_if->drvr = drvr;
1008
	drvr->dev = dev;
1009 1010

	/* Attach and link in the protocol */
1011 1012
	ret = brcmf_proto_attach(drvr);
	if (ret != 0) {
1013 1014 1015 1016
		brcmf_dbg(ERROR, "brcmf_prot_attach failed\n");
		goto fail;
	}

1017 1018
	INIT_WORK(&drvr->setmacaddr_work, _brcmf_set_mac_address);
	INIT_WORK(&drvr->multicast_work, _brcmf_set_multicast_list);
1019

1020
	return ret;
1021 1022

fail:
1023
	brcmf_detach(dev);
1024

1025
	return ret;
1026 1027
}

1028
int brcmf_bus_start(struct device *dev)
1029 1030 1031 1032
{
	int ret = -1;
	/* Room for "event_msgs" + '\0' + bitvec */
	char iovbuf[BRCMF_EVENTING_MASK_LEN + 12];
1033 1034
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
1035 1036 1037 1038

	brcmf_dbg(TRACE, "\n");

	/* Bring up the bus */
1039
	ret = bus_if->brcmf_bus_init(dev);
1040 1041 1042 1043 1044
	if (ret != 0) {
		brcmf_dbg(ERROR, "brcmf_sdbrcm_bus_init failed %d\n", ret);
		return ret;
	}

1045
	brcmf_c_mkiovar("event_msgs", drvr->eventmask, BRCMF_EVENTING_MASK_LEN,
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
		      iovbuf, sizeof(iovbuf));
	brcmf_proto_cdc_query_dcmd(drvr, 0, BRCMF_C_GET_VAR, iovbuf,
				    sizeof(iovbuf));
	memcpy(drvr->eventmask, iovbuf, BRCMF_EVENTING_MASK_LEN);

	setbit(drvr->eventmask, BRCMF_E_SET_SSID);
	setbit(drvr->eventmask, BRCMF_E_PRUNE);
	setbit(drvr->eventmask, BRCMF_E_AUTH);
	setbit(drvr->eventmask, BRCMF_E_REASSOC);
	setbit(drvr->eventmask, BRCMF_E_REASSOC_IND);
	setbit(drvr->eventmask, BRCMF_E_DEAUTH_IND);
	setbit(drvr->eventmask, BRCMF_E_DISASSOC_IND);
	setbit(drvr->eventmask, BRCMF_E_DISASSOC);
	setbit(drvr->eventmask, BRCMF_E_JOIN);
	setbit(drvr->eventmask, BRCMF_E_ASSOC_IND);
	setbit(drvr->eventmask, BRCMF_E_PSK_SUP);
	setbit(drvr->eventmask, BRCMF_E_LINK);
	setbit(drvr->eventmask, BRCMF_E_NDIS_LINK);
	setbit(drvr->eventmask, BRCMF_E_MIC_ERROR);
	setbit(drvr->eventmask, BRCMF_E_PMKID_CACHE);
	setbit(drvr->eventmask, BRCMF_E_TXFAIL);
	setbit(drvr->eventmask, BRCMF_E_JOIN_START);
	setbit(drvr->eventmask, BRCMF_E_SCAN_COMPLETE);

/* enable dongle roaming event */

	drvr->pktfilter_count = 1;
	/* Setup filter to allow only unicast */
	drvr->pktfilter[0] = "100 0 0 0 0x01 0x00";

	/* Bus is ready, do any protocol initialization */
1077
	ret = brcmf_proto_init(drvr);
1078 1079 1080
	if (ret < 0)
		return ret;

1081 1082 1083 1084 1085
	/* add primary networking interface */
	ret = brcmf_add_if(dev, 0, "wlan%d", drvr->mac);
	if (ret < 0)
		return ret;

1086 1087
	/* signal bus ready */
	bus_if->state = BRCMF_BUS_DATA;
1088 1089 1090 1091 1092 1093 1094 1095
	return 0;
}

static void brcmf_bus_detach(struct brcmf_pub *drvr)
{
	brcmf_dbg(TRACE, "Enter\n");

	if (drvr) {
1096 1097
		/* Stop the protocol module */
		brcmf_proto_stop(drvr);
1098

1099
		/* Stop the bus module */
1100
		drvr->bus_if->brcmf_bus_stop(drvr->dev);
1101 1102 1103
	}
}

1104
void brcmf_detach(struct device *dev)
1105
{
1106 1107 1108
	int i;
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
1109 1110 1111 1112

	brcmf_dbg(TRACE, "Enter\n");


1113 1114 1115 1116
	/* make sure primary interface removed last */
	for (i = BRCMF_MAX_IFS-1; i > -1; i--)
		if (drvr->iflist[i])
			brcmf_del_if(drvr, i);
1117

1118
	brcmf_bus_detach(drvr);
1119

1120 1121 1122
	if (drvr->prot) {
		cancel_work_sync(&drvr->setmacaddr_work);
		cancel_work_sync(&drvr->multicast_work);
1123
		brcmf_proto_detach(drvr);
1124
	}
1125

1126 1127
	bus_if->drvr = NULL;
	kfree(drvr);
1128 1129
}

1130
static int brcmf_get_pend_8021x_cnt(struct brcmf_pub *drvr)
1131
{
1132
	return atomic_read(&drvr->pend_8021x_cnt);
1133 1134 1135 1136 1137 1138
}

#define MAX_WAIT_FOR_8021X_TX	10

int brcmf_netdev_wait_pend8021x(struct net_device *ndev)
{
1139
	struct brcmf_if *ifp = netdev_priv(ndev);
1140
	struct brcmf_pub *drvr = ifp->drvr;
1141 1142
	int timeout = 10 * HZ / 1000;
	int ntimes = MAX_WAIT_FOR_8021X_TX;
1143
	int pend = brcmf_get_pend_8021x_cnt(drvr);
1144 1145 1146 1147 1148 1149 1150 1151

	while (ntimes && pend) {
		if (pend) {
			set_current_state(TASK_INTERRUPTIBLE);
			schedule_timeout(timeout);
			set_current_state(TASK_RUNNING);
			ntimes--;
		}
1152
		pend = brcmf_get_pend_8021x_cnt(drvr);
1153 1154 1155 1156
	}
	return pend;
}

J
Joe Perches 已提交
1157
#ifdef DEBUG
1158
int brcmf_write_to_file(struct brcmf_pub *drvr, const u8 *buf, int size)
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
{
	int ret = 0;
	struct file *fp;
	mm_segment_t old_fs;
	loff_t pos = 0;

	/* change to KERNEL_DS address limit */
	old_fs = get_fs();
	set_fs(KERNEL_DS);

	/* open file to write */
	fp = filp_open("/tmp/mem_dump", O_WRONLY | O_CREAT, 0640);
	if (!fp) {
		brcmf_dbg(ERROR, "open file error\n");
		ret = -1;
		goto exit;
	}

	/* Write buf to file */
1178
	fp->f_op->write(fp, (char __user *)buf, size, &pos);
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190

exit:
	/* free buf before return */
	kfree(buf);
	/* close file before return */
	if (fp)
		filp_close(fp, current->files);
	/* restore previous address limit */
	set_fs(old_fs);

	return ret;
}
J
Joe Perches 已提交
1191
#endif				/* DEBUG */
1192

1193
static void brcmf_driver_init(struct work_struct *work)
1194 1195
{
#ifdef CONFIG_BRCMFMAC_SDIO
1196
	brcmf_sdio_init();
1197
#endif
1198
#ifdef CONFIG_BRCMFMAC_USB
1199
	brcmf_usb_init();
1200
#endif
1201 1202 1203 1204 1205 1206 1207 1208
}
static DECLARE_WORK(brcmf_driver_work, brcmf_driver_init);

static int __init brcmfmac_module_init(void)
{
	if (!schedule_work(&brcmf_driver_work))
		return -EBUSY;

1209
	return 0;
1210 1211
}

1212
static void __exit brcmfmac_module_exit(void)
1213
{
1214 1215
	cancel_work_sync(&brcmf_driver_work);

1216 1217 1218
#ifdef CONFIG_BRCMFMAC_SDIO
	brcmf_sdio_exit();
#endif
1219 1220 1221
#ifdef CONFIG_BRCMFMAC_USB
	brcmf_usb_exit();
#endif
1222 1223
}

1224 1225
module_init(brcmfmac_module_init);
module_exit(brcmfmac_module_exit);