dhd_linux.c 21.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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.
 */

#include <linux/kernel.h>
#include <linux/etherdevice.h>
19
#include <linux/module.h>
20 21 22 23 24 25 26 27 28
#include <net/cfg80211.h>
#include <net/rtnetlink.h>
#include <brcmu_utils.h>
#include <brcmu_wifi.h>

#include "dhd.h"
#include "dhd_bus.h"
#include "dhd_proto.h"
#include "dhd_dbg.h"
29
#include "p2p.h"
30
#include "wl_cfg80211.h"
31
#include "fwil.h"
32 33

MODULE_AUTHOR("Broadcom Corporation");
H
Hante Meuleman 已提交
34 35
MODULE_DESCRIPTION("Broadcom 802.11 wireless LAN fullmac driver.");
MODULE_SUPPORTED_DEVICE("Broadcom 802.11 WLAN fullmac cards");
36 37
MODULE_LICENSE("Dual BSD/GPL");

38
#define MAX_WAIT_FOR_8021X_TX		50	/* msecs */
39 40

/* Error bits */
41
int brcmf_msg_level;
42 43 44 45 46 47
module_param(brcmf_msg_level, int, 0);


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

52
	if (drvr->iflist[ifidx] == NULL) {
53
		brcmf_err("null i/f %d\n", ifidx);
54 55 56
		return "<if_null>";
	}

57 58
	if (drvr->iflist[ifidx]->ndev)
		return drvr->iflist[ifidx]->ndev->name;
59 60 61 62 63 64

	return "<if_none>";
}

static void _brcmf_set_multicast_list(struct work_struct *work)
{
65
	struct brcmf_if *ifp;
66 67
	struct net_device *ndev;
	struct netdev_hw_addr *ha;
68
	u32 cmd_value, cnt;
69 70
	__le32 cnt_le;
	char *buf, *bufp;
71 72
	u32 buflen;
	s32 err;
73

74
	ifp = container_of(work, struct brcmf_if, multicast_work);
75

76
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
77

78
	ndev = ifp->ndev;
79 80

	/* Determine initial value of allmulti flag */
81
	cmd_value = (ndev->flags & IFF_ALLMULTI) ? true : false;
82 83

	/* Send down the multicast list first. */
84 85 86 87
	cnt = netdev_mc_count(ndev);
	buflen = sizeof(cnt) + (cnt * ETH_ALEN);
	buf = kmalloc(buflen, GFP_ATOMIC);
	if (!buf)
88
		return;
89
	bufp = buf;
90 91

	cnt_le = cpu_to_le32(cnt);
92
	memcpy(bufp, &cnt_le, sizeof(cnt_le));
93 94 95 96 97 98 99 100 101 102
	bufp += sizeof(cnt_le);

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

103 104
	err = brcmf_fil_iovar_data_set(ifp, "mcast_list", buf, buflen);
	if (err < 0) {
105
		brcmf_err("Setting mcast_list failed, %d\n", err);
106
		cmd_value = cnt ? true : cmd_value;
107 108 109 110
	}

	kfree(buf);

111 112
	/*
	 * Now send the allmulti setting.  This is based on the setting in the
113 114 115
	 * net_device flags, but might be modified above to be turned on if we
	 * were trying to set some addresses and dongle rejected it...
	 */
116 117
	err = brcmf_fil_iovar_int_set(ifp, "allmulti", cmd_value);
	if (err < 0)
118
		brcmf_err("Setting allmulti failed, %d\n", err);
119 120 121 122 123

	/*Finally, pick up the PROMISC flag */
	cmd_value = (ndev->flags & IFF_PROMISC) ? true : false;
	err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PROMISC, cmd_value);
	if (err < 0)
124
		brcmf_err("Setting BRCMF_C_SET_PROMISC failed, %d\n",
125
			  err);
126 127 128 129 130
}

static void
_brcmf_set_mac_address(struct work_struct *work)
{
131 132
	struct brcmf_if *ifp;
	s32 err;
133

134
	ifp = container_of(work, struct brcmf_if, setmacaddr_work);
135

136
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
137

138
	err = brcmf_fil_iovar_data_set(ifp, "cur_etheraddr", ifp->mac_addr,
139 140
				       ETH_ALEN);
	if (err < 0) {
141
		brcmf_err("Setting cur_etheraddr failed, %d\n", err);
142 143
	} else {
		brcmf_dbg(TRACE, "MAC address updated to %pM\n",
144 145
			  ifp->mac_addr);
		memcpy(ifp->ndev->dev_addr, ifp->mac_addr, ETH_ALEN);
146
	}
147 148 149 150
}

static int brcmf_netdev_set_mac_address(struct net_device *ndev, void *addr)
{
151
	struct brcmf_if *ifp = netdev_priv(ndev);
152 153
	struct sockaddr *sa = (struct sockaddr *)addr;

154 155
	memcpy(&ifp->mac_addr, sa->sa_data, ETH_ALEN);
	schedule_work(&ifp->setmacaddr_work);
156 157 158 159 160
	return 0;
}

static void brcmf_netdev_set_multicast_list(struct net_device *ndev)
{
161
	struct brcmf_if *ifp = netdev_priv(ndev);
162

163
	schedule_work(&ifp->multicast_work);
164 165
}

166 167
static netdev_tx_t brcmf_netdev_start_xmit(struct sk_buff *skb,
					   struct net_device *ndev)
168 169
{
	int ret;
170
	struct brcmf_if *ifp = netdev_priv(ndev);
171
	struct brcmf_pub *drvr = ifp->drvr;
172
	struct ethhdr *eh;
173

174
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
175

176 177 178
	/* Can the device send data? */
	if (drvr->bus_if->state != BRCMF_BUS_DATA) {
		brcmf_err("xmit rejected state=%d\n", drvr->bus_if->state);
179
		netif_stop_queue(ndev);
180 181 182
		dev_kfree_skb(skb);
		ret = -ENODEV;
		goto done;
183 184
	}

185 186
	if (!drvr->iflist[ifp->bssidx]) {
		brcmf_err("bad ifidx %d\n", ifp->bssidx);
187
		netif_stop_queue(ndev);
188 189 190
		dev_kfree_skb(skb);
		ret = -ENODEV;
		goto done;
191 192 193
	}

	/* Make sure there's enough room for any header */
194
	if (skb_headroom(skb) < drvr->hdrlen) {
195 196 197
		struct sk_buff *skb2;

		brcmf_dbg(INFO, "%s: insufficient headroom\n",
198
			  brcmf_ifname(drvr, ifp->bssidx));
199
		drvr->bus_if->tx_realloc++;
200
		skb2 = skb_realloc_headroom(skb, drvr->hdrlen);
201 202 203
		dev_kfree_skb(skb);
		skb = skb2;
		if (skb == NULL) {
204
			brcmf_err("%s: skb_realloc_headroom failed\n",
205
				  brcmf_ifname(drvr, ifp->bssidx));
206 207 208 209 210
			ret = -ENOMEM;
			goto done;
		}
	}

211 212 213 214 215
	/* validate length for ether packet */
	if (skb->len < sizeof(*eh)) {
		ret = -EINVAL;
		dev_kfree_skb(skb);
		goto done;
216 217
	}

218 219 220 221 222
	/* handle ethernet header */
	eh = (struct ethhdr *)(skb->data);
	if (is_multicast_ether_addr(eh->h_dest))
		drvr->tx_multicast++;
	if (ntohs(eh->h_proto) == ETH_P_PAE)
223
		atomic_inc(&ifp->pend_8021x_cnt);
224

225
	/* If the protocol uses a data header, apply it */
226
	brcmf_proto_hdrpush(drvr, ifp->ifidx, skb);
227 228

	/* Use bus module to send data frame */
A
Arend van Spriel 已提交
229
	ret =  brcmf_bus_txdata(drvr->bus_if, skb);
230 231

done:
232 233 234 235 236 237
	if (ret) {
		ifp->stats.tx_dropped++;
	} else {
		ifp->stats.tx_packets++;
		ifp->stats.tx_bytes += skb->len;
	}
238 239

	/* Return ok: we always eat the packet */
240
	return NETDEV_TX_OK;
241 242
}

243
void brcmf_txflowblock(struct device *dev, bool state)
244 245
{
	struct net_device *ndev;
246 247
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
248
	int i;
249 250 251

	brcmf_dbg(TRACE, "Enter\n");

252 253 254 255 256 257 258 259
	for (i = 0; i < BRCMF_MAX_IFS; i++)
		if (drvr->iflist[i]) {
			ndev = drvr->iflist[i]->ndev;
			if (state)
				netif_stop_queue(ndev);
			else
				netif_wake_queue(ndev);
		}
260 261
}

262
void brcmf_rx_frames(struct device *dev, struct sk_buff_head *skb_list)
263 264 265
{
	unsigned char *eth;
	uint len;
266
	struct sk_buff *skb, *pnext;
267
	struct brcmf_if *ifp;
268 269
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
270 271
	u8 ifidx;
	int ret;
272 273 274

	brcmf_dbg(TRACE, "Enter\n");

275 276
	skb_queue_walk_safe(skb_list, skb, pnext) {
		skb_unlink(skb, skb_list);
277

278
		/* process and remove protocol-specific header */
279
		ret = brcmf_proto_hdrpull(drvr, &ifidx, skb);
280 281 282 283 284
		ifp = drvr->iflist[ifidx];

		if (ret || !ifp || !ifp->ndev) {
			if ((ret != -ENODATA) && ifp)
				ifp->stats.rx_errors++;
285 286 287 288
			brcmu_pkt_buf_free_skb(skb);
			continue;
		}

289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
		/* 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;

		skb->dev = ifp->ndev;
		skb->protocol = eth_type_trans(skb, skb->dev);

		if (skb->pkt_type == PACKET_MULTICAST)
308
			ifp->stats.multicast++;
309 310 311 312 313 314 315 316

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

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

		/* Process special event packets and then discard them */
317
		brcmf_fweh_process_skb(drvr, skb, &ifidx);
318

319 320
		if (drvr->iflist[ifidx]) {
			ifp = drvr->iflist[ifidx];
321
			ifp->ndev->last_rx = jiffies;
322
		}
323

324 325 326 327 328 329 330
		if (!(ifp->ndev->flags & IFF_UP)) {
			brcmu_pkt_buf_free_skb(skb);
			continue;
		}

		ifp->stats.rx_bytes += skb->len;
		ifp->stats.rx_packets++;
331 332 333 334 335 336 337 338 339 340 341 342 343 344

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

345
void brcmf_txcomplete(struct device *dev, struct sk_buff *txp, bool success)
346
{
347
	u8 ifidx;
348 349
	struct ethhdr *eh;
	u16 type;
350 351
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
352
	struct brcmf_if *ifp;
353

354
	brcmf_proto_hdrpull(drvr, &ifidx, txp);
355

356 357 358 359
	ifp = drvr->iflist[ifidx];
	if (!ifp)
		return;

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

363
	if (type == ETH_P_PAE) {
364 365 366
		atomic_dec(&ifp->pend_8021x_cnt);
		if (waitqueue_active(&ifp->pend_8021x_wait))
			wake_up(&ifp->pend_8021x_wait);
367
	}
368 369
	if (!success)
		ifp->stats.tx_errors++;
370 371 372 373
}

static struct net_device_stats *brcmf_netdev_get_stats(struct net_device *ndev)
{
374
	struct brcmf_if *ifp = netdev_priv(ndev);
375

376
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
377 378 379 380

	return &ifp->stats;
}

381 382 383 384 385
/*
 * Set current toe component enables in toe_ol iovar,
 * and set toe global enable iovar
 */
static int brcmf_toe_set(struct brcmf_if *ifp, u32 toe_ol)
386
{
387
	s32 err;
388

389 390
	err = brcmf_fil_iovar_int_set(ifp, "toe_ol", toe_ol);
	if (err < 0) {
391
		brcmf_err("Setting toe_ol failed, %d\n", err);
392
		return err;
393 394
	}

395 396
	err = brcmf_fil_iovar_int_set(ifp, "toe", (toe_ol != 0));
	if (err < 0)
397
		brcmf_err("Setting toe failed, %d\n", err);
398

399
	return err;
400 401 402 403 404 405

}

static void brcmf_ethtool_get_drvinfo(struct net_device *ndev,
				    struct ethtool_drvinfo *info)
{
406
	struct brcmf_if *ifp = netdev_priv(ndev);
407
	struct brcmf_pub *drvr = ifp->drvr;
408 409

	sprintf(info->driver, KBUILD_MODNAME);
410
	sprintf(info->version, "%lu", drvr->drv_version);
A
Arend van Spriel 已提交
411
	sprintf(info->bus_info, "%s", dev_name(drvr->bus_if->dev));
412 413
}

414 415
static const struct ethtool_ops brcmf_ethtool_ops = {
	.get_drvinfo = brcmf_ethtool_get_drvinfo,
416 417
};

418
static int brcmf_ethtool(struct brcmf_if *ifp, void __user *uaddr)
419
{
420
	struct brcmf_pub *drvr = ifp->drvr;
421 422 423 424 425 426 427
	struct ethtool_drvinfo info;
	char drvname[sizeof(info.driver)];
	u32 cmd;
	struct ethtool_value edata;
	u32 toe_cmpnt, csum_dir;
	int ret;

428
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450

	/* 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);
		}
451
		/* report dongle driver type */
452
		else
453
			sprintf(info.driver, "wl");
454

455
		sprintf(info.version, "%lu", drvr->drv_version);
456 457
		if (copy_to_user(uaddr, &info, sizeof(info)))
			return -EFAULT;
458
		brcmf_dbg(TRACE, "given %*s, returning %s\n",
459 460 461 462 463 464
			  (int)sizeof(drvname), drvname, info.driver);
		break;

		/* Get toe offload components from dongle */
	case ETHTOOL_GRXCSUM:
	case ETHTOOL_GTXCSUM:
465
		ret = brcmf_fil_iovar_int_get(ifp, "toe_ol", &toe_cmpnt);
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
		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 */
486
		ret = brcmf_fil_iovar_int_get(ifp, "toe_ol", &toe_cmpnt);
487 488 489 490 491 492 493 494 495 496 497
		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;

498
		ret = brcmf_toe_set(ifp, toe_cmpnt);
499 500 501 502 503 504
		if (ret < 0)
			return ret;

		/* If setting TX checksum mode, tell Linux the new mode */
		if (cmd == ETHTOOL_STXCSUM) {
			if (edata.data)
505
				ifp->ndev->features |= NETIF_F_IP_CSUM;
506
			else
507
				ifp->ndev->features &= ~NETIF_F_IP_CSUM;
508 509 510 511 512 513 514 515 516 517 518 519 520 521
		}

		break;

	default:
		return -EOPNOTSUPP;
	}

	return 0;
}

static int brcmf_netdev_ioctl_entry(struct net_device *ndev, struct ifreq *ifr,
				    int cmd)
{
522
	struct brcmf_if *ifp = netdev_priv(ndev);
523
	struct brcmf_pub *drvr = ifp->drvr;
524

525
	brcmf_dbg(TRACE, "Enter, idx=%d, cmd=0x%04x\n", ifp->bssidx, cmd);
526

527
	if (!drvr->iflist[ifp->bssidx])
528 529 530
		return -1;

	if (cmd == SIOCETHTOOL)
531
		return brcmf_ethtool(ifp, ifr->ifr_data);
532 533 534 535 536 537

	return -EOPNOTSUPP;
}

static int brcmf_netdev_stop(struct net_device *ndev)
{
538 539
	struct brcmf_if *ifp = netdev_priv(ndev);

540
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
541

542
	brcmf_cfg80211_down(ndev);
543

544 545 546 547 548 549 550 551
	/* Set state and stop OS transmissions */
	netif_stop_queue(ndev);

	return 0;
}

static int brcmf_netdev_open(struct net_device *ndev)
{
552
	struct brcmf_if *ifp = netdev_priv(ndev);
553
	struct brcmf_pub *drvr = ifp->drvr;
554
	struct brcmf_bus *bus_if = drvr->bus_if;
555 556 557
	u32 toe_ol;
	s32 ret = 0;

558
	brcmf_dbg(TRACE, "Enter, idx=%d\n", ifp->bssidx);
559

560 561
	/* If bus is not ready, can't continue */
	if (bus_if->state != BRCMF_BUS_DATA) {
562
		brcmf_err("failed bus is not ready\n");
563 564
		return -EAGAIN;
	}
565

566
	atomic_set(&ifp->pend_8021x_cnt, 0);
567

568 569 570
	/* Get current TOE mode from dongle */
	if (brcmf_fil_iovar_int_get(ifp, "toe_ol", &toe_ol) >= 0
	    && (toe_ol & TOE_TX_CSUM_OL) != 0)
571
		ndev->features |= NETIF_F_IP_CSUM;
572
	else
573
		ndev->features &= ~NETIF_F_IP_CSUM;
574

575 576
	/* Allow transmit calls */
	netif_start_queue(ndev);
577
	if (brcmf_cfg80211_up(ndev)) {
578
		brcmf_err("failed to bring up cfg80211\n");
579 580 581 582 583 584
		return -1;
	}

	return ret;
}

585 586 587 588 589 590 591 592 593 594
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
};

595 596 597 598 599 600 601 602 603 604
static const struct net_device_ops brcmf_netdev_ops_virt = {
	.ndo_open = brcmf_cfg80211_up,
	.ndo_stop = brcmf_cfg80211_down,
	.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
};

605
int brcmf_net_attach(struct brcmf_if *ifp)
606
{
607
	struct brcmf_pub *drvr = ifp->drvr;
608 609
	struct net_device *ndev;

610
	brcmf_dbg(TRACE, "Enter, idx=%d mac=%pM\n", ifp->bssidx,
611
		  ifp->mac_addr);
612
	ndev = ifp->ndev;
613

614
	/* set appropriate operations */
615
	if (!ifp->bssidx)
616 617 618
		ndev->netdev_ops = &brcmf_netdev_ops_pri;
	else
		ndev->netdev_ops = &brcmf_netdev_ops_virt;
619 620 621 622 623 624 625

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

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

626 627
	/* set the mac address */
	memcpy(ndev->dev_addr, ifp->mac_addr, ETH_ALEN);
628 629

	if (register_netdev(ndev) != 0) {
630
		brcmf_err("couldn't register the net device\n");
631 632 633 634 635 636 637 638 639 640 641 642
		goto fail;
	}

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

	return 0;

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

643 644
struct brcmf_if *brcmf_add_if(struct brcmf_pub *drvr, s32 bssidx, s32 ifidx,
			      char *name, u8 *mac_addr)
645 646
{
	struct brcmf_if *ifp;
647
	struct net_device *ndev;
648

649
	brcmf_dbg(TRACE, "Enter, idx=%d, ifidx=%d\n", bssidx, ifidx);
650

651
	ifp = drvr->iflist[bssidx];
652 653 654 655 656
	/*
	 * Delete the existing interface before overwriting it
	 * in case we missed the BRCMF_E_IF_DEL event.
	 */
	if (ifp) {
657
		brcmf_err("ERROR: netdev:%s already exists\n",
658
			  ifp->ndev->name);
659
		if (bssidx) {
660 661 662
			netif_stop_queue(ifp->ndev);
			unregister_netdev(ifp->ndev);
			free_netdev(ifp->ndev);
663
			drvr->iflist[bssidx] = NULL;
664
		} else {
665
			brcmf_err("ignore IF event\n");
666 667
			return ERR_PTR(-EINVAL);
		}
668
	}
669

670
	/* Allocate netdev, including space for private structure */
671 672
	ndev = alloc_netdev(sizeof(struct brcmf_if), name, ether_setup);
	if (!ndev) {
673
		brcmf_err("OOM - alloc_netdev\n");
674
		return ERR_PTR(-ENOMEM);
675
	}
676

677 678
	ifp = netdev_priv(ndev);
	ifp->ndev = ndev;
679
	ifp->drvr = drvr;
680 681
	drvr->iflist[bssidx] = ifp;
	ifp->ifidx = ifidx;
682
	ifp->bssidx = bssidx;
683 684 685 686

	INIT_WORK(&ifp->setmacaddr_work, _brcmf_set_mac_address);
	INIT_WORK(&ifp->multicast_work, _brcmf_set_multicast_list);

687 688
	init_waitqueue_head(&ifp->pend_8021x_wait);

689 690
	if (mac_addr != NULL)
		memcpy(ifp->mac_addr, mac_addr, ETH_ALEN);
691

692 693
	brcmf_dbg(TRACE, " ==== pid:%x, if:%s (%pM) created ===\n",
		  current->pid, ifp->ndev->name, ifp->mac_addr);
694

695
	return ifp;
696 697
}

698
void brcmf_del_if(struct brcmf_pub *drvr, s32 bssidx)
699 700 701
{
	struct brcmf_if *ifp;

702
	ifp = drvr->iflist[bssidx];
703
	if (!ifp) {
704
		brcmf_err("Null interface, idx=%d\n", bssidx);
705 706
		return;
	}
707
	brcmf_dbg(TRACE, "Enter, idx=%d, ifidx=%d\n", bssidx, ifp->ifidx);
708
	if (ifp->ndev) {
709
		if (bssidx == 0) {
710 711 712 713 714 715 716 717 718
			if (ifp->ndev->netdev_ops == &brcmf_netdev_ops_pri) {
				rtnl_lock();
				brcmf_netdev_stop(ifp->ndev);
				rtnl_unlock();
			}
		} else {
			netif_stop_queue(ifp->ndev);
		}

719 720 721
		cancel_work_sync(&ifp->setmacaddr_work);
		cancel_work_sync(&ifp->multicast_work);

722
		unregister_netdev(ifp->ndev);
723 724
		drvr->iflist[bssidx] = NULL;
		if (bssidx == 0)
725
			brcmf_cfg80211_detach(drvr->config);
726
		free_netdev(ifp->ndev);
727 728 729
	}
}

730
int brcmf_attach(uint bus_hdrlen, struct device *dev)
731
{
732
	struct brcmf_pub *drvr = NULL;
733
	int ret = 0;
734 735 736 737

	brcmf_dbg(TRACE, "Enter\n");

	/* Allocate primary brcmf_info */
738 739
	drvr = kzalloc(sizeof(struct brcmf_pub), GFP_ATOMIC);
	if (!drvr)
740
		return -ENOMEM;
741

742
	mutex_init(&drvr->proto_block);
743 744

	/* Link to bus module */
745 746
	drvr->hdrlen = bus_hdrlen;
	drvr->bus_if = dev_get_drvdata(dev);
747
	drvr->bus_if->drvr = drvr;
748

749 750 751
	/* create device debugfs folder */
	brcmf_debugfs_attach(drvr);

752
	/* Attach and link in the protocol */
753 754
	ret = brcmf_proto_attach(drvr);
	if (ret != 0) {
755
		brcmf_err("brcmf_prot_attach failed\n");
756 757 758
		goto fail;
	}

759 760 761
	/* attach firmware event handler */
	brcmf_fweh_attach(drvr);

762 763
	INIT_LIST_HEAD(&drvr->bus_if->dcmd_list);

764
	return ret;
765 766

fail:
767
	brcmf_detach(dev);
768

769
	return ret;
770 771
}

772
int brcmf_bus_start(struct device *dev)
773 774
{
	int ret = -1;
775 776
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
777
	struct brcmf_if *ifp;
778 779 780 781

	brcmf_dbg(TRACE, "\n");

	/* Bring up the bus */
A
Arend van Spriel 已提交
782
	ret = brcmf_bus_init(bus_if);
783
	if (ret != 0) {
784
		brcmf_err("brcmf_sdbrcm_bus_init failed %d\n", ret);
785 786 787
		return ret;
	}

788
	/* add primary networking interface */
789
	ifp = brcmf_add_if(drvr, 0, 0, "wlan%d", NULL);
790 791 792
	if (IS_ERR(ifp))
		return PTR_ERR(ifp);

793 794 795 796 797
	/* signal bus ready */
	bus_if->state = BRCMF_BUS_DATA;

	/* Bus is ready, do any initialization */
	ret = brcmf_c_preinit_dcmds(ifp);
798
	if (ret < 0)
799
		goto fail;
800

A
Arend van Spriel 已提交
801
	drvr->config = brcmf_cfg80211_attach(drvr, bus_if->dev);
802 803 804 805
	if (drvr->config == NULL) {
		ret = -ENOMEM;
		goto fail;
	}
806

807 808 809 810
	ret = brcmf_fweh_activate_events(ifp);
	if (ret < 0)
		goto fail;

811
	ret = brcmf_net_attach(ifp);
812
fail:
813
	if (ret < 0) {
814
		brcmf_err("failed: %d\n", ret);
815 816
		if (drvr->config)
			brcmf_cfg80211_detach(drvr->config);
817
		free_netdev(ifp->ndev);
818
		drvr->iflist[0] = NULL;
819
		return ret;
820 821
	}

822 823 824 825 826 827 828 829
	return 0;
}

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

	if (drvr) {
830 831
		/* Stop the protocol module */
		brcmf_proto_stop(drvr);
832

833
		/* Stop the bus module */
A
Arend van Spriel 已提交
834
		brcmf_bus_stop(drvr->bus_if);
835 836 837
	}
}

838 839 840 841 842 843 844 845
void brcmf_dev_reset(struct device *dev)
{
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;

	if (drvr == NULL)
		return;

846 847
	if (drvr->iflist[0])
		brcmf_fil_cmd_int_set(drvr->iflist[0], BRCMF_C_TERMINATED, 1);
848 849
}

850
void brcmf_detach(struct device *dev)
851
{
852
	s32 i;
853 854
	struct brcmf_bus *bus_if = dev_get_drvdata(dev);
	struct brcmf_pub *drvr = bus_if->drvr;
855 856 857

	brcmf_dbg(TRACE, "Enter\n");

858 859
	if (drvr == NULL)
		return;
860

861 862 863
	/* stop firmware event handling */
	brcmf_fweh_detach(drvr);

864 865 866 867
	/* make sure primary interface removed last */
	for (i = BRCMF_MAX_IFS-1; i > -1; i--)
		if (drvr->iflist[i])
			brcmf_del_if(drvr, i);
868

869
	brcmf_bus_detach(drvr);
870

871
	if (drvr->prot)
872
		brcmf_proto_detach(drvr);
873

874
	brcmf_debugfs_detach(drvr);
875 876
	bus_if->drvr = NULL;
	kfree(drvr);
877 878
}

879
static int brcmf_get_pend_8021x_cnt(struct brcmf_if *ifp)
880
{
881
	return atomic_read(&ifp->pend_8021x_cnt);
882 883 884 885
}

int brcmf_netdev_wait_pend8021x(struct net_device *ndev)
{
886
	struct brcmf_if *ifp = netdev_priv(ndev);
887 888
	int err;

889 890
	err = wait_event_timeout(ifp->pend_8021x_wait,
				 !brcmf_get_pend_8021x_cnt(ifp),
891 892 893 894 895
				 msecs_to_jiffies(MAX_WAIT_FOR_8021X_TX));

	WARN_ON(!err);

	return !err;
896 897
}

898 899 900 901 902 903 904 905 906 907
/*
 * return chip id and rev of the device encoded in u32.
 */
u32 brcmf_get_chip_info(struct brcmf_if *ifp)
{
	struct brcmf_bus *bus = ifp->drvr->bus_if;

	return bus->chip << 4 | bus->chiprev;
}

908
static void brcmf_driver_init(struct work_struct *work)
909
{
910 911
	brcmf_debugfs_init();

912
#ifdef CONFIG_BRCMFMAC_SDIO
913
	brcmf_sdio_init();
914
#endif
915
#ifdef CONFIG_BRCMFMAC_USB
916
	brcmf_usb_init();
917
#endif
918 919 920 921 922 923 924 925
}
static DECLARE_WORK(brcmf_driver_work, brcmf_driver_init);

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

926
	return 0;
927 928
}

929
static void __exit brcmfmac_module_exit(void)
930
{
931 932
	cancel_work_sync(&brcmf_driver_work);

933 934 935
#ifdef CONFIG_BRCMFMAC_SDIO
	brcmf_sdio_exit();
#endif
936 937 938
#ifdef CONFIG_BRCMFMAC_USB
	brcmf_usb_exit();
#endif
939
	brcmf_debugfs_exit();
940 941
}

942 943
module_init(brcmfmac_module_init);
module_exit(brcmfmac_module_exit);