2 * Copyright (c) 2011 Broadcom Corporation
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/firmware.h>
20 #include <linux/usb.h>
21 #include <linux/vmalloc.h>
23 #include <brcmu_utils.h>
24 #include <brcmu_wifi.h>
31 #define IOCTL_RESP_TIMEOUT 2000
33 #define BRCMF_USB_RESET_GETVER_SPINWAIT 100 /* in unit of ms */
34 #define BRCMF_USB_RESET_GETVER_LOOP_CNT 10
36 #define BRCMF_POSTBOOT_ID 0xA123 /* ID to detect if dongle
38 #define BRCMF_USB_NRXQ 50
39 #define BRCMF_USB_NTXQ 50
41 #define CONFIGDESC(usb) (&((usb)->actconfig)->desc)
42 #define IFPTR(usb, idx) ((usb)->actconfig->interface[(idx)])
43 #define IFALTS(usb, idx) (IFPTR((usb), (idx))->altsetting[0])
44 #define IFDESC(usb, idx) IFALTS((usb), (idx)).desc
45 #define IFEPDESC(usb, idx, ep) (IFALTS((usb), (idx)).endpoint[(ep)]).desc
50 #define BRCMF_USB_CBCTL_WRITE 0
51 #define BRCMF_USB_CBCTL_READ 1
52 #define BRCMF_USB_MAX_PKT_SIZE 1600
54 #define BRCMF_USB_43143_FW_NAME "brcm/brcmfmac43143.bin"
55 #define BRCMF_USB_43236_FW_NAME "brcm/brcmfmac43236b.bin"
56 #define BRCMF_USB_43242_FW_NAME "brcm/brcmfmac43242a.bin"
58 struct brcmf_usb_image
{
59 struct list_head list
;
64 static struct list_head fw_image_list
;
66 struct intr_transfer_buf
{
71 struct brcmf_usbdev_info
{
72 struct brcmf_usbdev bus_pub
; /* MUST BE FIRST */
74 struct list_head rx_freeq
;
75 struct list_head rx_postq
;
76 struct list_head tx_freeq
;
77 struct list_head tx_postq
;
78 uint rx_pipe
, tx_pipe
, intr_pipe
, rx_pipe2
;
82 int tx_high_watermark
;
85 spinlock_t tx_flowblock_lock
;
87 struct brcmf_usbreq
*tx_reqs
;
88 struct brcmf_usbreq
*rx_reqs
;
90 u8
*image
; /* buffer for combine fw and nvram */
93 struct usb_device
*usbdev
;
96 int ctl_in_pipe
, ctl_out_pipe
;
97 struct urb
*ctl_urb
; /* URB for control endpoint */
98 struct usb_ctrlrequest ctl_write
;
99 struct usb_ctrlrequest ctl_read
;
100 u32 ctl_urb_actual_length
;
103 wait_queue_head_t ioctl_resp_wait
;
106 struct urb
*bulk_urb
; /* used for FW download */
107 struct urb
*intr_urb
; /* URB for interrupt endpoint */
108 int intr_size
; /* Size of interrupt message */
109 int interval
; /* Interrupt polling interval */
110 struct intr_transfer_buf intr
; /* Data buffer for interrupt endpoint */
113 static void brcmf_usb_rx_refill(struct brcmf_usbdev_info
*devinfo
,
114 struct brcmf_usbreq
*req
);
116 static struct brcmf_usbdev
*brcmf_usb_get_buspub(struct device
*dev
)
118 struct brcmf_bus
*bus_if
= dev_get_drvdata(dev
);
119 return bus_if
->bus_priv
.usb
;
122 static struct brcmf_usbdev_info
*brcmf_usb_get_businfo(struct device
*dev
)
124 return brcmf_usb_get_buspub(dev
)->devinfo
;
127 static int brcmf_usb_ioctl_resp_wait(struct brcmf_usbdev_info
*devinfo
)
129 return wait_event_timeout(devinfo
->ioctl_resp_wait
,
130 devinfo
->ctl_completed
,
131 msecs_to_jiffies(IOCTL_RESP_TIMEOUT
));
134 static void brcmf_usb_ioctl_resp_wake(struct brcmf_usbdev_info
*devinfo
)
136 if (waitqueue_active(&devinfo
->ioctl_resp_wait
))
137 wake_up(&devinfo
->ioctl_resp_wait
);
141 brcmf_usb_ctl_complete(struct brcmf_usbdev_info
*devinfo
, int type
, int status
)
143 brcmf_dbg(USB
, "Enter, status=%d\n", status
);
145 if (unlikely(devinfo
== NULL
))
148 if (type
== BRCMF_USB_CBCTL_READ
) {
150 devinfo
->bus_pub
.stats
.rx_ctlpkts
++;
152 devinfo
->bus_pub
.stats
.rx_ctlerrs
++;
153 } else if (type
== BRCMF_USB_CBCTL_WRITE
) {
155 devinfo
->bus_pub
.stats
.tx_ctlpkts
++;
157 devinfo
->bus_pub
.stats
.tx_ctlerrs
++;
160 devinfo
->ctl_urb_status
= status
;
161 devinfo
->ctl_completed
= true;
162 brcmf_usb_ioctl_resp_wake(devinfo
);
166 brcmf_usb_ctlread_complete(struct urb
*urb
)
168 struct brcmf_usbdev_info
*devinfo
=
169 (struct brcmf_usbdev_info
*)urb
->context
;
171 brcmf_dbg(USB
, "Enter\n");
172 devinfo
->ctl_urb_actual_length
= urb
->actual_length
;
173 brcmf_usb_ctl_complete(devinfo
, BRCMF_USB_CBCTL_READ
,
178 brcmf_usb_ctlwrite_complete(struct urb
*urb
)
180 struct brcmf_usbdev_info
*devinfo
=
181 (struct brcmf_usbdev_info
*)urb
->context
;
183 brcmf_dbg(USB
, "Enter\n");
184 brcmf_usb_ctl_complete(devinfo
, BRCMF_USB_CBCTL_WRITE
,
189 brcmf_usb_send_ctl(struct brcmf_usbdev_info
*devinfo
, u8
*buf
, int len
)
194 brcmf_dbg(USB
, "Enter\n");
195 if (devinfo
== NULL
|| buf
== NULL
||
196 len
== 0 || devinfo
->ctl_urb
== NULL
)
200 devinfo
->ctl_write
.wLength
= cpu_to_le16p(&size
);
201 devinfo
->ctl_urb
->transfer_buffer_length
= size
;
202 devinfo
->ctl_urb_status
= 0;
203 devinfo
->ctl_urb_actual_length
= 0;
205 usb_fill_control_urb(devinfo
->ctl_urb
,
207 devinfo
->ctl_out_pipe
,
208 (unsigned char *) &devinfo
->ctl_write
,
210 (usb_complete_t
)brcmf_usb_ctlwrite_complete
,
213 ret
= usb_submit_urb(devinfo
->ctl_urb
, GFP_ATOMIC
);
215 brcmf_err("usb_submit_urb failed %d\n", ret
);
221 brcmf_usb_recv_ctl(struct brcmf_usbdev_info
*devinfo
, u8
*buf
, int len
)
226 brcmf_dbg(USB
, "Enter\n");
227 if ((devinfo
== NULL
) || (buf
== NULL
) || (len
== 0)
228 || (devinfo
->ctl_urb
== NULL
))
232 devinfo
->ctl_read
.wLength
= cpu_to_le16p(&size
);
233 devinfo
->ctl_urb
->transfer_buffer_length
= size
;
235 devinfo
->ctl_read
.bRequestType
= USB_DIR_IN
236 | USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
237 devinfo
->ctl_read
.bRequest
= 1;
239 usb_fill_control_urb(devinfo
->ctl_urb
,
241 devinfo
->ctl_in_pipe
,
242 (unsigned char *) &devinfo
->ctl_read
,
244 (usb_complete_t
)brcmf_usb_ctlread_complete
,
247 ret
= usb_submit_urb(devinfo
->ctl_urb
, GFP_ATOMIC
);
249 brcmf_err("usb_submit_urb failed %d\n", ret
);
254 static int brcmf_usb_tx_ctlpkt(struct device
*dev
, u8
*buf
, u32 len
)
258 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(dev
);
260 brcmf_dbg(USB
, "Enter\n");
261 if (devinfo
->bus_pub
.state
!= BRCMFMAC_USB_STATE_UP
)
264 if (test_and_set_bit(0, &devinfo
->ctl_op
))
267 devinfo
->ctl_completed
= false;
268 err
= brcmf_usb_send_ctl(devinfo
, buf
, len
);
270 brcmf_err("fail %d bytes: %d\n", err
, len
);
271 clear_bit(0, &devinfo
->ctl_op
);
274 timeout
= brcmf_usb_ioctl_resp_wait(devinfo
);
275 clear_bit(0, &devinfo
->ctl_op
);
277 brcmf_err("Txctl wait timed out\n");
283 static int brcmf_usb_rx_ctlpkt(struct device
*dev
, u8
*buf
, u32 len
)
287 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(dev
);
289 brcmf_dbg(USB
, "Enter\n");
290 if (devinfo
->bus_pub
.state
!= BRCMFMAC_USB_STATE_UP
)
293 if (test_and_set_bit(0, &devinfo
->ctl_op
))
296 devinfo
->ctl_completed
= false;
297 err
= brcmf_usb_recv_ctl(devinfo
, buf
, len
);
299 brcmf_err("fail %d bytes: %d\n", err
, len
);
300 clear_bit(0, &devinfo
->ctl_op
);
303 timeout
= brcmf_usb_ioctl_resp_wait(devinfo
);
304 err
= devinfo
->ctl_urb_status
;
305 clear_bit(0, &devinfo
->ctl_op
);
307 brcmf_err("rxctl wait timed out\n");
311 return devinfo
->ctl_urb_actual_length
;
316 static struct brcmf_usbreq
*brcmf_usb_deq(struct brcmf_usbdev_info
*devinfo
,
317 struct list_head
*q
, int *counter
)
320 struct brcmf_usbreq
*req
;
321 spin_lock_irqsave(&devinfo
->qlock
, flags
);
323 spin_unlock_irqrestore(&devinfo
->qlock
, flags
);
326 req
= list_entry(q
->next
, struct brcmf_usbreq
, list
);
327 list_del_init(q
->next
);
330 spin_unlock_irqrestore(&devinfo
->qlock
, flags
);
335 static void brcmf_usb_enq(struct brcmf_usbdev_info
*devinfo
,
336 struct list_head
*q
, struct brcmf_usbreq
*req
,
340 spin_lock_irqsave(&devinfo
->qlock
, flags
);
341 list_add_tail(&req
->list
, q
);
344 spin_unlock_irqrestore(&devinfo
->qlock
, flags
);
347 static struct brcmf_usbreq
*
348 brcmf_usbdev_qinit(struct list_head
*q
, int qsize
)
351 struct brcmf_usbreq
*req
, *reqs
;
353 reqs
= kcalloc(qsize
, sizeof(struct brcmf_usbreq
), GFP_ATOMIC
);
359 for (i
= 0; i
< qsize
; i
++) {
360 req
->urb
= usb_alloc_urb(0, GFP_ATOMIC
);
364 INIT_LIST_HEAD(&req
->list
);
365 list_add_tail(&req
->list
, q
);
370 brcmf_err("fail!\n");
371 while (!list_empty(q
)) {
372 req
= list_entry(q
->next
, struct brcmf_usbreq
, list
);
374 usb_free_urb(req
->urb
);
381 static void brcmf_usb_free_q(struct list_head
*q
, bool pending
)
383 struct brcmf_usbreq
*req
, *next
;
385 list_for_each_entry_safe(req
, next
, q
, list
) {
387 brcmf_err("bad req\n");
392 usb_kill_urb(req
->urb
);
394 usb_free_urb(req
->urb
);
395 list_del_init(&req
->list
);
400 static void brcmf_usb_del_fromq(struct brcmf_usbdev_info
*devinfo
,
401 struct brcmf_usbreq
*req
)
405 spin_lock_irqsave(&devinfo
->qlock
, flags
);
406 list_del_init(&req
->list
);
407 spin_unlock_irqrestore(&devinfo
->qlock
, flags
);
411 static void brcmf_usb_tx_complete(struct urb
*urb
)
413 struct brcmf_usbreq
*req
= (struct brcmf_usbreq
*)urb
->context
;
414 struct brcmf_usbdev_info
*devinfo
= req
->devinfo
;
417 brcmf_dbg(USB
, "Enter, urb->status=%d, skb=%p\n", urb
->status
,
419 brcmf_usb_del_fromq(devinfo
, req
);
421 brcmf_txcomplete(devinfo
->dev
, req
->skb
, urb
->status
== 0);
423 brcmf_usb_enq(devinfo
, &devinfo
->tx_freeq
, req
, &devinfo
->tx_freecount
);
424 spin_lock_irqsave(&devinfo
->tx_flowblock_lock
, flags
);
425 if (devinfo
->tx_freecount
> devinfo
->tx_high_watermark
&&
426 devinfo
->tx_flowblock
) {
427 brcmf_txflowblock(devinfo
->dev
, false);
428 devinfo
->tx_flowblock
= false;
430 spin_unlock_irqrestore(&devinfo
->tx_flowblock_lock
, flags
);
433 static void brcmf_usb_rx_complete(struct urb
*urb
)
435 struct brcmf_usbreq
*req
= (struct brcmf_usbreq
*)urb
->context
;
436 struct brcmf_usbdev_info
*devinfo
= req
->devinfo
;
438 struct sk_buff_head skbq
;
440 brcmf_dbg(USB
, "Enter, urb->status=%d\n", urb
->status
);
441 brcmf_usb_del_fromq(devinfo
, req
);
445 /* zero lenght packets indicate usb "failure". Do not refill */
446 if (urb
->status
!= 0 || !urb
->actual_length
) {
447 brcmu_pkt_buf_free_skb(skb
);
448 brcmf_usb_enq(devinfo
, &devinfo
->rx_freeq
, req
, NULL
);
452 if (devinfo
->bus_pub
.state
== BRCMFMAC_USB_STATE_UP
) {
453 skb_queue_head_init(&skbq
);
454 skb_queue_tail(&skbq
, skb
);
455 skb_put(skb
, urb
->actual_length
);
456 brcmf_rx_frames(devinfo
->dev
, &skbq
);
457 brcmf_usb_rx_refill(devinfo
, req
);
459 brcmu_pkt_buf_free_skb(skb
);
460 brcmf_usb_enq(devinfo
, &devinfo
->rx_freeq
, req
, NULL
);
466 static void brcmf_usb_rx_refill(struct brcmf_usbdev_info
*devinfo
,
467 struct brcmf_usbreq
*req
)
472 if (!req
|| !devinfo
)
475 skb
= dev_alloc_skb(devinfo
->bus_pub
.bus_mtu
);
477 brcmf_usb_enq(devinfo
, &devinfo
->rx_freeq
, req
, NULL
);
482 usb_fill_bulk_urb(req
->urb
, devinfo
->usbdev
, devinfo
->rx_pipe
,
483 skb
->data
, skb_tailroom(skb
), brcmf_usb_rx_complete
,
485 req
->devinfo
= devinfo
;
486 brcmf_usb_enq(devinfo
, &devinfo
->rx_postq
, req
, NULL
);
488 ret
= usb_submit_urb(req
->urb
, GFP_ATOMIC
);
490 brcmf_usb_del_fromq(devinfo
, req
);
491 brcmu_pkt_buf_free_skb(req
->skb
);
493 brcmf_usb_enq(devinfo
, &devinfo
->rx_freeq
, req
, NULL
);
498 static void brcmf_usb_rx_fill_all(struct brcmf_usbdev_info
*devinfo
)
500 struct brcmf_usbreq
*req
;
502 if (devinfo
->bus_pub
.state
!= BRCMFMAC_USB_STATE_UP
) {
503 brcmf_err("bus is not up=%d\n", devinfo
->bus_pub
.state
);
506 while ((req
= brcmf_usb_deq(devinfo
, &devinfo
->rx_freeq
, NULL
)) != NULL
)
507 brcmf_usb_rx_refill(devinfo
, req
);
511 brcmf_usb_state_change(struct brcmf_usbdev_info
*devinfo
, int state
)
513 struct brcmf_bus
*bcmf_bus
= devinfo
->bus_pub
.bus
;
516 brcmf_dbg(USB
, "Enter, current state=%d, new state=%d\n",
517 devinfo
->bus_pub
.state
, state
);
519 if (devinfo
->bus_pub
.state
== state
)
522 old_state
= devinfo
->bus_pub
.state
;
523 devinfo
->bus_pub
.state
= state
;
525 /* update state of upper layer */
526 if (state
== BRCMFMAC_USB_STATE_DOWN
) {
527 brcmf_dbg(USB
, "DBUS is down\n");
528 bcmf_bus
->state
= BRCMF_BUS_DOWN
;
529 } else if (state
== BRCMFMAC_USB_STATE_UP
) {
530 brcmf_dbg(USB
, "DBUS is up\n");
531 bcmf_bus
->state
= BRCMF_BUS_DATA
;
533 brcmf_dbg(USB
, "DBUS current state=%d\n", state
);
538 brcmf_usb_intr_complete(struct urb
*urb
)
540 struct brcmf_usbdev_info
*devinfo
=
541 (struct brcmf_usbdev_info
*)urb
->context
;
544 brcmf_dbg(USB
, "Enter, urb->status=%d\n", urb
->status
);
549 if (unlikely(urb
->status
)) {
550 if (urb
->status
== -ENOENT
||
551 urb
->status
== -ESHUTDOWN
||
552 urb
->status
== -ENODEV
) {
553 brcmf_usb_state_change(devinfo
,
554 BRCMFMAC_USB_STATE_DOWN
);
558 if (devinfo
->bus_pub
.state
== BRCMFMAC_USB_STATE_DOWN
) {
559 brcmf_err("intr cb when DBUS down, ignoring\n");
563 if (devinfo
->bus_pub
.state
== BRCMFMAC_USB_STATE_UP
) {
564 err
= usb_submit_urb(devinfo
->intr_urb
, GFP_ATOMIC
);
566 brcmf_err("usb_submit_urb, err=%d\n", err
);
570 static int brcmf_usb_tx(struct device
*dev
, struct sk_buff
*skb
)
572 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(dev
);
573 struct brcmf_usbreq
*req
;
577 brcmf_dbg(USB
, "Enter, skb=%p\n", skb
);
578 if (devinfo
->bus_pub
.state
!= BRCMFMAC_USB_STATE_UP
) {
583 req
= brcmf_usb_deq(devinfo
, &devinfo
->tx_freeq
,
584 &devinfo
->tx_freecount
);
586 brcmf_err("no req to send\n");
592 req
->devinfo
= devinfo
;
593 usb_fill_bulk_urb(req
->urb
, devinfo
->usbdev
, devinfo
->tx_pipe
,
594 skb
->data
, skb
->len
, brcmf_usb_tx_complete
, req
);
595 req
->urb
->transfer_flags
|= URB_ZERO_PACKET
;
596 brcmf_usb_enq(devinfo
, &devinfo
->tx_postq
, req
, NULL
);
597 ret
= usb_submit_urb(req
->urb
, GFP_ATOMIC
);
599 brcmf_err("brcmf_usb_tx usb_submit_urb FAILED\n");
600 brcmf_usb_del_fromq(devinfo
, req
);
602 brcmf_usb_enq(devinfo
, &devinfo
->tx_freeq
, req
,
603 &devinfo
->tx_freecount
);
607 spin_lock_irqsave(&devinfo
->tx_flowblock_lock
, flags
);
608 if (devinfo
->tx_freecount
< devinfo
->tx_low_watermark
&&
609 !devinfo
->tx_flowblock
) {
610 brcmf_txflowblock(dev
, true);
611 devinfo
->tx_flowblock
= true;
613 spin_unlock_irqrestore(&devinfo
->tx_flowblock_lock
, flags
);
621 static int brcmf_usb_up(struct device
*dev
)
623 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(dev
);
627 brcmf_dbg(USB
, "Enter\n");
628 if (devinfo
->bus_pub
.state
== BRCMFMAC_USB_STATE_UP
)
631 /* Success, indicate devinfo is fully up */
632 brcmf_usb_state_change(devinfo
, BRCMFMAC_USB_STATE_UP
);
634 if (devinfo
->intr_urb
) {
635 usb_fill_int_urb(devinfo
->intr_urb
, devinfo
->usbdev
,
639 (usb_complete_t
)brcmf_usb_intr_complete
,
643 ret
= usb_submit_urb(devinfo
->intr_urb
, GFP_ATOMIC
);
645 brcmf_err("USB_SUBMIT_URB failed with status %d\n",
651 if (devinfo
->ctl_urb
) {
652 devinfo
->ctl_in_pipe
= usb_rcvctrlpipe(devinfo
->usbdev
, 0);
653 devinfo
->ctl_out_pipe
= usb_sndctrlpipe(devinfo
->usbdev
, 0);
655 ifnum
= IFDESC(devinfo
->usbdev
, CONTROL_IF
).bInterfaceNumber
;
658 devinfo
->ctl_write
.bRequestType
=
659 USB_DIR_OUT
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
660 devinfo
->ctl_write
.bRequest
= 0;
661 devinfo
->ctl_write
.wValue
= cpu_to_le16(0);
662 devinfo
->ctl_write
.wIndex
= cpu_to_le16p(&ifnum
);
665 devinfo
->ctl_read
.bRequestType
=
666 USB_DIR_IN
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
667 devinfo
->ctl_read
.bRequest
= 1;
668 devinfo
->ctl_read
.wValue
= cpu_to_le16(0);
669 devinfo
->ctl_read
.wIndex
= cpu_to_le16p(&ifnum
);
671 brcmf_usb_rx_fill_all(devinfo
);
675 static void brcmf_usb_down(struct device
*dev
)
677 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(dev
);
679 brcmf_dbg(USB
, "Enter\n");
683 if (devinfo
->bus_pub
.state
== BRCMFMAC_USB_STATE_DOWN
)
686 brcmf_usb_state_change(devinfo
, BRCMFMAC_USB_STATE_DOWN
);
687 if (devinfo
->intr_urb
)
688 usb_kill_urb(devinfo
->intr_urb
);
690 if (devinfo
->ctl_urb
)
691 usb_kill_urb(devinfo
->ctl_urb
);
693 if (devinfo
->bulk_urb
)
694 usb_kill_urb(devinfo
->bulk_urb
);
695 brcmf_usb_free_q(&devinfo
->tx_postq
, true);
697 brcmf_usb_free_q(&devinfo
->rx_postq
, true);
701 brcmf_usb_sync_complete(struct urb
*urb
)
703 struct brcmf_usbdev_info
*devinfo
=
704 (struct brcmf_usbdev_info
*)urb
->context
;
706 devinfo
->ctl_completed
= true;
707 brcmf_usb_ioctl_resp_wake(devinfo
);
710 static bool brcmf_usb_dl_cmd(struct brcmf_usbdev_info
*devinfo
, u8 cmd
,
711 void *buffer
, int buflen
)
717 if ((!devinfo
) || (devinfo
->ctl_urb
== NULL
))
720 tmpbuf
= kmalloc(buflen
, GFP_ATOMIC
);
725 devinfo
->ctl_urb
->transfer_buffer_length
= size
;
727 devinfo
->ctl_read
.wLength
= cpu_to_le16p(&size
);
728 devinfo
->ctl_read
.bRequestType
= USB_DIR_IN
| USB_TYPE_VENDOR
|
730 devinfo
->ctl_read
.bRequest
= cmd
;
732 usb_fill_control_urb(devinfo
->ctl_urb
,
734 usb_rcvctrlpipe(devinfo
->usbdev
, 0),
735 (unsigned char *) &devinfo
->ctl_read
,
736 (void *) tmpbuf
, size
,
737 (usb_complete_t
)brcmf_usb_sync_complete
, devinfo
);
739 devinfo
->ctl_completed
= false;
740 ret
= usb_submit_urb(devinfo
->ctl_urb
, GFP_ATOMIC
);
742 brcmf_err("usb_submit_urb failed %d\n", ret
);
747 ret
= brcmf_usb_ioctl_resp_wait(devinfo
);
748 memcpy(buffer
, tmpbuf
, buflen
);
755 brcmf_usb_dlneeded(struct brcmf_usbdev_info
*devinfo
)
757 struct bootrom_id_le id
;
760 brcmf_dbg(USB
, "Enter\n");
765 /* Check if firmware downloaded already by querying runtime ID */
766 id
.chip
= cpu_to_le32(0xDEAD);
767 brcmf_usb_dl_cmd(devinfo
, DL_GETVER
, &id
, sizeof(id
));
769 chipid
= le32_to_cpu(id
.chip
);
770 chiprev
= le32_to_cpu(id
.chiprev
);
772 if ((chipid
& 0x4300) == 0x4300)
773 brcmf_dbg(USB
, "chip %x rev 0x%x\n", chipid
, chiprev
);
775 brcmf_dbg(USB
, "chip %d rev 0x%x\n", chipid
, chiprev
);
776 if (chipid
== BRCMF_POSTBOOT_ID
) {
777 brcmf_dbg(USB
, "firmware already downloaded\n");
778 brcmf_usb_dl_cmd(devinfo
, DL_RESETCFG
, &id
, sizeof(id
));
781 devinfo
->bus_pub
.devid
= chipid
;
782 devinfo
->bus_pub
.chiprev
= chiprev
;
788 brcmf_usb_resetcfg(struct brcmf_usbdev_info
*devinfo
)
790 struct bootrom_id_le id
;
793 brcmf_dbg(USB
, "Enter\n");
797 mdelay(BRCMF_USB_RESET_GETVER_SPINWAIT
);
799 id
.chip
= cpu_to_le32(0xDEAD); /* Get the ID */
800 brcmf_usb_dl_cmd(devinfo
, DL_GETVER
, &id
, sizeof(id
));
801 if (id
.chip
== cpu_to_le32(BRCMF_POSTBOOT_ID
))
803 } while (loop_cnt
< BRCMF_USB_RESET_GETVER_LOOP_CNT
);
805 if (id
.chip
== cpu_to_le32(BRCMF_POSTBOOT_ID
)) {
806 brcmf_dbg(USB
, "postboot chip 0x%x/rev 0x%x\n",
807 le32_to_cpu(id
.chip
), le32_to_cpu(id
.chiprev
));
809 brcmf_usb_dl_cmd(devinfo
, DL_RESETCFG
, &id
, sizeof(id
));
812 brcmf_err("Cannot talk to Dongle. Firmware is not UP, %d ms\n",
813 BRCMF_USB_RESET_GETVER_SPINWAIT
* loop_cnt
);
820 brcmf_usb_dl_send_bulk(struct brcmf_usbdev_info
*devinfo
, void *buffer
, int len
)
824 if ((devinfo
== NULL
) || (devinfo
->bulk_urb
== NULL
))
827 /* Prepare the URB */
828 usb_fill_bulk_urb(devinfo
->bulk_urb
, devinfo
->usbdev
,
829 devinfo
->tx_pipe
, buffer
, len
,
830 (usb_complete_t
)brcmf_usb_sync_complete
, devinfo
);
832 devinfo
->bulk_urb
->transfer_flags
|= URB_ZERO_PACKET
;
834 devinfo
->ctl_completed
= false;
835 ret
= usb_submit_urb(devinfo
->bulk_urb
, GFP_ATOMIC
);
837 brcmf_err("usb_submit_urb failed %d\n", ret
);
840 ret
= brcmf_usb_ioctl_resp_wait(devinfo
);
845 brcmf_usb_dl_writeimage(struct brcmf_usbdev_info
*devinfo
, u8
*fw
, int fwlen
)
847 unsigned int sendlen
, sent
, dllen
;
848 char *bulkchunk
= NULL
, *dlpos
;
849 struct rdl_state_le state
;
850 u32 rdlstate
, rdlbytes
;
853 brcmf_dbg(USB
, "Enter, fw %p, len %d\n", fw
, fwlen
);
855 bulkchunk
= kmalloc(RDL_CHUNK
, GFP_ATOMIC
);
856 if (bulkchunk
== NULL
) {
861 /* 1) Prepare USB boot loader for runtime image */
862 brcmf_usb_dl_cmd(devinfo
, DL_START
, &state
,
863 sizeof(struct rdl_state_le
));
865 rdlstate
= le32_to_cpu(state
.state
);
866 rdlbytes
= le32_to_cpu(state
.bytes
);
868 /* 2) Check we are in the Waiting state */
869 if (rdlstate
!= DL_WAITING
) {
870 brcmf_err("Failed to DL_START\n");
878 /* Get chip id and rev */
879 while (rdlbytes
!= dllen
) {
880 /* Wait until the usb device reports it received all
881 * the bytes we sent */
882 if ((rdlbytes
== sent
) && (rdlbytes
!= dllen
)) {
883 if ((dllen
-sent
) < RDL_CHUNK
)
884 sendlen
= dllen
-sent
;
888 /* simply avoid having to send a ZLP by ensuring we
896 memcpy(bulkchunk
, dlpos
, sendlen
);
897 if (brcmf_usb_dl_send_bulk(devinfo
, bulkchunk
,
899 brcmf_err("send_bulk failed\n");
907 if (!brcmf_usb_dl_cmd(devinfo
, DL_GETSTATE
, &state
,
908 sizeof(struct rdl_state_le
))) {
909 brcmf_err("DL_GETSTATE Failed xxxx\n");
914 rdlstate
= le32_to_cpu(state
.state
);
915 rdlbytes
= le32_to_cpu(state
.bytes
);
917 /* restart if an error is reported */
918 if (rdlstate
== DL_BAD_HDR
|| rdlstate
== DL_BAD_CRC
) {
919 brcmf_err("Bad Hdr or Bad CRC state %d\n",
928 brcmf_dbg(USB
, "Exit, err=%d\n", err
);
932 static int brcmf_usb_dlstart(struct brcmf_usbdev_info
*devinfo
, u8
*fw
, int len
)
936 brcmf_dbg(USB
, "Enter\n");
941 if (devinfo
->bus_pub
.devid
== 0xDEAD)
944 err
= brcmf_usb_dl_writeimage(devinfo
, fw
, len
);
946 devinfo
->bus_pub
.state
= BRCMFMAC_USB_STATE_DL_DONE
;
948 devinfo
->bus_pub
.state
= BRCMFMAC_USB_STATE_DL_FAIL
;
949 brcmf_dbg(USB
, "Exit, err=%d\n", err
);
954 static int brcmf_usb_dlrun(struct brcmf_usbdev_info
*devinfo
)
956 struct rdl_state_le state
;
958 brcmf_dbg(USB
, "Enter\n");
962 if (devinfo
->bus_pub
.devid
== 0xDEAD)
965 /* Check we are runnable */
966 brcmf_usb_dl_cmd(devinfo
, DL_GETSTATE
, &state
,
967 sizeof(struct rdl_state_le
));
969 /* Start the image */
970 if (state
.state
== cpu_to_le32(DL_RUNNABLE
)) {
971 if (!brcmf_usb_dl_cmd(devinfo
, DL_GO
, &state
,
972 sizeof(struct rdl_state_le
)))
974 if (brcmf_usb_resetcfg(devinfo
))
976 /* The Dongle may go for re-enumeration. */
978 brcmf_err("Dongle not runnable\n");
981 brcmf_dbg(USB
, "Exit\n");
985 static bool brcmf_usb_chip_support(int chipid
, int chiprev
)
993 return (chiprev
== 3);
1003 brcmf_usb_fw_download(struct brcmf_usbdev_info
*devinfo
)
1008 brcmf_dbg(USB
, "Enter\n");
1009 if (devinfo
== NULL
)
1012 devid
= devinfo
->bus_pub
.devid
;
1013 chiprev
= devinfo
->bus_pub
.chiprev
;
1015 if (!brcmf_usb_chip_support(devid
, chiprev
)) {
1016 brcmf_err("unsupported chip %d rev %d\n",
1021 if (!devinfo
->image
) {
1022 brcmf_err("No firmware!\n");
1026 err
= brcmf_usb_dlstart(devinfo
,
1027 devinfo
->image
, devinfo
->image_len
);
1029 err
= brcmf_usb_dlrun(devinfo
);
1034 static void brcmf_usb_detach(struct brcmf_usbdev_info
*devinfo
)
1036 brcmf_dbg(USB
, "Enter, devinfo %p\n", devinfo
);
1039 brcmf_usb_free_q(&devinfo
->rx_freeq
, false);
1040 brcmf_usb_free_q(&devinfo
->tx_freeq
, false);
1042 usb_free_urb(devinfo
->intr_urb
);
1043 usb_free_urb(devinfo
->ctl_urb
);
1044 usb_free_urb(devinfo
->bulk_urb
);
1046 kfree(devinfo
->tx_reqs
);
1047 kfree(devinfo
->rx_reqs
);
1050 #define TRX_MAGIC 0x30524448 /* "HDR0" */
1051 #define TRX_VERSION 1 /* Version 1 */
1052 #define TRX_MAX_LEN 0x3B0000 /* Max length */
1053 #define TRX_NO_HEADER 1 /* Do not write TRX header */
1054 #define TRX_MAX_OFFSET 3 /* Max number of individual files */
1055 #define TRX_UNCOMP_IMAGE 0x20 /* Trx contains uncompressed image */
1057 struct trx_header_le
{
1058 __le32 magic
; /* "HDR0" */
1059 __le32 len
; /* Length of file including header */
1060 __le32 crc32
; /* CRC from flag_version to end of file */
1061 __le32 flag_version
; /* 0:15 flags, 16:31 version */
1062 __le32 offsets
[TRX_MAX_OFFSET
]; /* Offsets of partitions from start of
1066 static int check_file(const u8
*headers
)
1068 struct trx_header_le
*trx
;
1069 int actual_len
= -1;
1071 brcmf_dbg(USB
, "Enter\n");
1072 /* Extract trx header */
1073 trx
= (struct trx_header_le
*) headers
;
1074 if (trx
->magic
!= cpu_to_le32(TRX_MAGIC
))
1077 headers
+= sizeof(struct trx_header_le
);
1079 if (le32_to_cpu(trx
->flag_version
) & TRX_UNCOMP_IMAGE
) {
1080 actual_len
= le32_to_cpu(trx
->offsets
[TRX_OFFSETS_DLFWLEN_IDX
]);
1081 return actual_len
+ sizeof(struct trx_header_le
);
1086 static int brcmf_usb_get_fw(struct brcmf_usbdev_info
*devinfo
)
1089 const struct firmware
*fw
;
1090 struct brcmf_usb_image
*fw_image
;
1093 brcmf_dbg(USB
, "Enter\n");
1094 switch (devinfo
->bus_pub
.devid
) {
1096 fwname
= BRCMF_USB_43143_FW_NAME
;
1101 fwname
= BRCMF_USB_43236_FW_NAME
;
1104 fwname
= BRCMF_USB_43242_FW_NAME
;
1110 brcmf_dbg(USB
, "Loading FW %s\n", fwname
);
1111 list_for_each_entry(fw_image
, &fw_image_list
, list
) {
1112 if (fw_image
->fwname
== fwname
) {
1113 devinfo
->image
= fw_image
->image
;
1114 devinfo
->image_len
= fw_image
->image_len
;
1118 /* fw image not yet loaded. Load it now and add to list */
1119 err
= request_firmware(&fw
, fwname
, devinfo
->dev
);
1121 brcmf_err("fail to request firmware %s\n", fwname
);
1124 if (check_file(fw
->data
) < 0) {
1125 brcmf_err("invalid firmware %s\n", fwname
);
1129 fw_image
= kzalloc(sizeof(*fw_image
), GFP_ATOMIC
);
1132 INIT_LIST_HEAD(&fw_image
->list
);
1133 list_add_tail(&fw_image
->list
, &fw_image_list
);
1134 fw_image
->fwname
= fwname
;
1135 fw_image
->image
= vmalloc(fw
->size
);
1136 if (!fw_image
->image
)
1139 memcpy(fw_image
->image
, fw
->data
, fw
->size
);
1140 fw_image
->image_len
= fw
->size
;
1142 release_firmware(fw
);
1144 devinfo
->image
= fw_image
->image
;
1145 devinfo
->image_len
= fw_image
->image_len
;
1152 struct brcmf_usbdev
*brcmf_usb_attach(struct brcmf_usbdev_info
*devinfo
,
1155 brcmf_dbg(USB
, "Enter\n");
1157 devinfo
->bus_pub
.nrxq
= nrxq
;
1158 devinfo
->rx_low_watermark
= nrxq
/ 2;
1159 devinfo
->bus_pub
.devinfo
= devinfo
;
1160 devinfo
->bus_pub
.ntxq
= ntxq
;
1161 devinfo
->bus_pub
.state
= BRCMFMAC_USB_STATE_DOWN
;
1163 /* flow control when too many tx urbs posted */
1164 devinfo
->tx_low_watermark
= ntxq
/ 4;
1165 devinfo
->tx_high_watermark
= devinfo
->tx_low_watermark
* 3;
1166 devinfo
->bus_pub
.bus_mtu
= BRCMF_USB_MAX_PKT_SIZE
;
1168 /* Initialize other structure content */
1169 init_waitqueue_head(&devinfo
->ioctl_resp_wait
);
1171 /* Initialize the spinlocks */
1172 spin_lock_init(&devinfo
->qlock
);
1173 spin_lock_init(&devinfo
->tx_flowblock_lock
);
1175 INIT_LIST_HEAD(&devinfo
->rx_freeq
);
1176 INIT_LIST_HEAD(&devinfo
->rx_postq
);
1178 INIT_LIST_HEAD(&devinfo
->tx_freeq
);
1179 INIT_LIST_HEAD(&devinfo
->tx_postq
);
1181 devinfo
->tx_flowblock
= false;
1183 devinfo
->rx_reqs
= brcmf_usbdev_qinit(&devinfo
->rx_freeq
, nrxq
);
1184 if (!devinfo
->rx_reqs
)
1187 devinfo
->tx_reqs
= brcmf_usbdev_qinit(&devinfo
->tx_freeq
, ntxq
);
1188 if (!devinfo
->tx_reqs
)
1190 devinfo
->tx_freecount
= ntxq
;
1192 devinfo
->intr_urb
= usb_alloc_urb(0, GFP_ATOMIC
);
1193 if (!devinfo
->intr_urb
) {
1194 brcmf_err("usb_alloc_urb (intr) failed\n");
1197 devinfo
->ctl_urb
= usb_alloc_urb(0, GFP_ATOMIC
);
1198 if (!devinfo
->ctl_urb
) {
1199 brcmf_err("usb_alloc_urb (ctl) failed\n");
1202 devinfo
->bulk_urb
= usb_alloc_urb(0, GFP_ATOMIC
);
1203 if (!devinfo
->bulk_urb
) {
1204 brcmf_err("usb_alloc_urb (bulk) failed\n");
1208 if (!brcmf_usb_dlneeded(devinfo
))
1209 return &devinfo
->bus_pub
;
1211 brcmf_dbg(USB
, "Start fw downloading\n");
1212 if (brcmf_usb_get_fw(devinfo
))
1215 if (brcmf_usb_fw_download(devinfo
))
1218 return &devinfo
->bus_pub
;
1221 brcmf_err("failed!\n");
1222 brcmf_usb_detach(devinfo
);
1226 static struct brcmf_bus_ops brcmf_usb_bus_ops
= {
1227 .txdata
= brcmf_usb_tx
,
1228 .init
= brcmf_usb_up
,
1229 .stop
= brcmf_usb_down
,
1230 .txctl
= brcmf_usb_tx_ctlpkt
,
1231 .rxctl
= brcmf_usb_rx_ctlpkt
,
1234 static int brcmf_usb_probe_cb(struct brcmf_usbdev_info
*devinfo
)
1236 struct brcmf_bus
*bus
= NULL
;
1237 struct brcmf_usbdev
*bus_pub
= NULL
;
1239 struct device
*dev
= devinfo
->dev
;
1241 brcmf_dbg(USB
, "Enter\n");
1242 bus_pub
= brcmf_usb_attach(devinfo
, BRCMF_USB_NRXQ
, BRCMF_USB_NTXQ
);
1246 bus
= kzalloc(sizeof(struct brcmf_bus
), GFP_ATOMIC
);
1254 bus
->bus_priv
.usb
= bus_pub
;
1255 dev_set_drvdata(dev
, bus
);
1256 bus
->ops
= &brcmf_usb_bus_ops
;
1257 bus
->chip
= bus_pub
->devid
;
1258 bus
->chiprev
= bus_pub
->chiprev
;
1260 /* Attach to the common driver interface */
1261 ret
= brcmf_attach(0, dev
);
1263 brcmf_err("brcmf_attach failed\n");
1267 ret
= brcmf_bus_start(dev
);
1269 brcmf_err("dongle is not responding\n");
1276 /* Release resources in reverse order */
1278 brcmf_usb_detach(devinfo
);
1283 brcmf_usb_disconnect_cb(struct brcmf_usbdev_info
*devinfo
)
1287 brcmf_dbg(USB
, "Enter, bus_pub %p\n", devinfo
);
1289 brcmf_detach(devinfo
->dev
);
1290 kfree(devinfo
->bus_pub
.bus
);
1291 brcmf_usb_detach(devinfo
);
1295 brcmf_usb_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
1298 struct usb_endpoint_descriptor
*endpoint
;
1300 struct usb_device
*usb
= interface_to_usbdev(intf
);
1303 struct brcmf_usbdev_info
*devinfo
;
1305 brcmf_dbg(USB
, "Enter\n");
1307 devinfo
= kzalloc(sizeof(*devinfo
), GFP_ATOMIC
);
1308 if (devinfo
== NULL
)
1311 devinfo
->usbdev
= usb
;
1312 devinfo
->dev
= &usb
->dev
;
1314 usb_set_intfdata(intf
, devinfo
);
1316 /* Check that the device supports only one configuration */
1317 if (usb
->descriptor
.bNumConfigurations
!= 1) {
1322 if (usb
->descriptor
.bDeviceClass
!= USB_CLASS_VENDOR_SPEC
) {
1328 * Only the BDC interface configuration is supported:
1329 * Device class: USB_CLASS_VENDOR_SPEC
1330 * if0 class: USB_CLASS_VENDOR_SPEC
1333 * if0/ep2: bulk out (ok if swapped with bulk in)
1335 if (CONFIGDESC(usb
)->bNumInterfaces
!= 1) {
1340 /* Check interface */
1341 if (IFDESC(usb
, CONTROL_IF
).bInterfaceClass
!= USB_CLASS_VENDOR_SPEC
||
1342 IFDESC(usb
, CONTROL_IF
).bInterfaceSubClass
!= 2 ||
1343 IFDESC(usb
, CONTROL_IF
).bInterfaceProtocol
!= 0xff) {
1344 brcmf_err("invalid control interface: class %d, subclass %d, proto %d\n",
1345 IFDESC(usb
, CONTROL_IF
).bInterfaceClass
,
1346 IFDESC(usb
, CONTROL_IF
).bInterfaceSubClass
,
1347 IFDESC(usb
, CONTROL_IF
).bInterfaceProtocol
);
1352 /* Check control endpoint */
1353 endpoint
= &IFEPDESC(usb
, CONTROL_IF
, 0);
1354 if ((endpoint
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
)
1355 != USB_ENDPOINT_XFER_INT
) {
1356 brcmf_err("invalid control endpoint %d\n",
1357 endpoint
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
);
1362 endpoint_num
= endpoint
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
1363 devinfo
->intr_pipe
= usb_rcvintpipe(usb
, endpoint_num
);
1365 devinfo
->rx_pipe
= 0;
1366 devinfo
->rx_pipe2
= 0;
1367 devinfo
->tx_pipe
= 0;
1368 num_of_eps
= IFDESC(usb
, BULK_IF
).bNumEndpoints
- 1;
1370 /* Check data endpoints and get pipes */
1371 for (ep
= 1; ep
<= num_of_eps
; ep
++) {
1372 endpoint
= &IFEPDESC(usb
, BULK_IF
, ep
);
1373 if ((endpoint
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) !=
1374 USB_ENDPOINT_XFER_BULK
) {
1375 brcmf_err("invalid data endpoint %d\n", ep
);
1380 endpoint_num
= endpoint
->bEndpointAddress
&
1381 USB_ENDPOINT_NUMBER_MASK
;
1382 if ((endpoint
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
)
1384 if (!devinfo
->rx_pipe
) {
1386 usb_rcvbulkpipe(usb
, endpoint_num
);
1389 usb_rcvbulkpipe(usb
, endpoint_num
);
1392 devinfo
->tx_pipe
= usb_sndbulkpipe(usb
, endpoint_num
);
1396 /* Allocate interrupt URB and data buffer */
1397 /* RNDIS says 8-byte intr, our old drivers used 4-byte */
1398 if (IFEPDESC(usb
, CONTROL_IF
, 0).wMaxPacketSize
== cpu_to_le16(16))
1399 devinfo
->intr_size
= 8;
1401 devinfo
->intr_size
= 4;
1403 devinfo
->interval
= IFEPDESC(usb
, CONTROL_IF
, 0).bInterval
;
1405 if (usb
->speed
== USB_SPEED_HIGH
)
1406 brcmf_dbg(USB
, "Broadcom high speed USB wireless device detected\n");
1408 brcmf_dbg(USB
, "Broadcom full speed USB wireless device detected\n");
1410 ret
= brcmf_usb_probe_cb(devinfo
);
1418 brcmf_err("failed with errno %d\n", ret
);
1420 usb_set_intfdata(intf
, NULL
);
1426 brcmf_usb_disconnect(struct usb_interface
*intf
)
1428 struct brcmf_usbdev_info
*devinfo
;
1430 brcmf_dbg(USB
, "Enter\n");
1431 devinfo
= (struct brcmf_usbdev_info
*)usb_get_intfdata(intf
);
1432 brcmf_usb_disconnect_cb(devinfo
);
1434 brcmf_dbg(USB
, "Exit\n");
1438 * only need to signal the bus being down and update the state.
1440 static int brcmf_usb_suspend(struct usb_interface
*intf
, pm_message_t state
)
1442 struct usb_device
*usb
= interface_to_usbdev(intf
);
1443 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(&usb
->dev
);
1445 brcmf_dbg(USB
, "Enter\n");
1446 devinfo
->bus_pub
.state
= BRCMFMAC_USB_STATE_SLEEP
;
1447 brcmf_detach(&usb
->dev
);
1452 * (re-) start the bus.
1454 static int brcmf_usb_resume(struct usb_interface
*intf
)
1456 struct usb_device
*usb
= interface_to_usbdev(intf
);
1457 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(&usb
->dev
);
1459 brcmf_dbg(USB
, "Enter\n");
1460 if (!brcmf_attach(0, devinfo
->dev
))
1461 return brcmf_bus_start(&usb
->dev
);
1466 static int brcmf_usb_reset_resume(struct usb_interface
*intf
)
1468 struct usb_device
*usb
= interface_to_usbdev(intf
);
1469 struct brcmf_usbdev_info
*devinfo
= brcmf_usb_get_businfo(&usb
->dev
);
1471 brcmf_dbg(USB
, "Enter\n");
1473 if (!brcmf_usb_fw_download(devinfo
))
1474 return brcmf_usb_resume(intf
);
1479 #define BRCMF_USB_VENDOR_ID_BROADCOM 0x0a5c
1480 #define BRCMF_USB_DEVICE_ID_43143 0xbd1e
1481 #define BRCMF_USB_DEVICE_ID_43236 0xbd17
1482 #define BRCMF_USB_DEVICE_ID_43242 0xbd1f
1483 #define BRCMF_USB_DEVICE_ID_BCMFW 0x0bdc
1485 static struct usb_device_id brcmf_usb_devid_table
[] = {
1486 { USB_DEVICE(BRCMF_USB_VENDOR_ID_BROADCOM
, BRCMF_USB_DEVICE_ID_43143
) },
1487 { USB_DEVICE(BRCMF_USB_VENDOR_ID_BROADCOM
, BRCMF_USB_DEVICE_ID_43236
) },
1488 { USB_DEVICE(BRCMF_USB_VENDOR_ID_BROADCOM
, BRCMF_USB_DEVICE_ID_43242
) },
1489 /* special entry for device with firmware loaded and running */
1490 { USB_DEVICE(BRCMF_USB_VENDOR_ID_BROADCOM
, BRCMF_USB_DEVICE_ID_BCMFW
) },
1494 MODULE_DEVICE_TABLE(usb
, brcmf_usb_devid_table
);
1495 MODULE_FIRMWARE(BRCMF_USB_43143_FW_NAME
);
1496 MODULE_FIRMWARE(BRCMF_USB_43236_FW_NAME
);
1497 MODULE_FIRMWARE(BRCMF_USB_43242_FW_NAME
);
1499 static struct usb_driver brcmf_usbdrvr
= {
1500 .name
= KBUILD_MODNAME
,
1501 .probe
= brcmf_usb_probe
,
1502 .disconnect
= brcmf_usb_disconnect
,
1503 .id_table
= brcmf_usb_devid_table
,
1504 .suspend
= brcmf_usb_suspend
,
1505 .resume
= brcmf_usb_resume
,
1506 .reset_resume
= brcmf_usb_reset_resume
,
1507 .supports_autosuspend
= 1,
1508 .disable_hub_initiated_lpm
= 1,
1511 static void brcmf_release_fw(struct list_head
*q
)
1513 struct brcmf_usb_image
*fw_image
, *next
;
1515 list_for_each_entry_safe(fw_image
, next
, q
, list
) {
1516 vfree(fw_image
->image
);
1517 list_del_init(&fw_image
->list
);
1521 static int brcmf_usb_reset_device(struct device
*dev
, void *notused
)
1523 /* device past is the usb interface so we
1524 * need to use parent here.
1526 brcmf_dev_reset(dev
->parent
);
1530 void brcmf_usb_exit(void)
1532 struct device_driver
*drv
= &brcmf_usbdrvr
.drvwrap
.driver
;
1535 brcmf_dbg(USB
, "Enter\n");
1536 ret
= driver_for_each_device(drv
, NULL
, NULL
,
1537 brcmf_usb_reset_device
);
1538 usb_deregister(&brcmf_usbdrvr
);
1539 brcmf_release_fw(&fw_image_list
);
1542 void brcmf_usb_register(void)
1544 brcmf_dbg(USB
, "Enter\n");
1545 INIT_LIST_HEAD(&fw_image_list
);
1546 usb_register(&brcmf_usbdrvr
);