2 * Atheros AR9170 driver
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2009, Christian Lamparter <chunkeey@web.de>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; see the file COPYING. If not, see
21 * http://www.gnu.org/licenses/.
23 * This file incorporates work covered by the following copyright and
25 * Copyright (c) 2007-2008 Atheros Communications, Inc.
27 * Permission to use, copy, modify, and/or distribute this software for any
28 * purpose with or without fee is hereby granted, provided that the above
29 * copyright notice and this permission notice appear in all copies.
31 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
32 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
33 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
34 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
35 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
36 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
37 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 #include <linux/module.h>
41 #include <linux/usb.h>
42 #include <linux/firmware.h>
43 #include <linux/etherdevice.h>
44 #include <net/mac80211.h>
50 MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
51 MODULE_AUTHOR("Christian Lamparter <chunkeey@web.de>");
52 MODULE_LICENSE("GPL");
53 MODULE_DESCRIPTION("Atheros AR9170 802.11n USB wireless");
54 MODULE_FIRMWARE("ar9170.fw");
55 MODULE_FIRMWARE("ar9170-1.fw");
56 MODULE_FIRMWARE("ar9170-2.fw");
58 enum ar9170_requirements
{
59 AR9170_REQ_FW1_ONLY
= 1,
62 static struct usb_device_id ar9170_usb_ids
[] = {
64 { USB_DEVICE(0x0cf3, 0x9170) },
66 { USB_DEVICE(0x0cf3, 0x1001) },
67 /* TP-Link TL-WN821N v2 */
68 { USB_DEVICE(0x0cf3, 0x1002) },
70 { USB_DEVICE(0xcace, 0x0300) },
72 { USB_DEVICE(0x07d1, 0x3c10) },
73 /* Netgear WNDA3100 */
74 { USB_DEVICE(0x0846, 0x9010) },
75 /* Netgear WN111 v2 */
76 { USB_DEVICE(0x0846, 0x9001) },
78 { USB_DEVICE(0x0ace, 0x1221) },
80 { USB_DEVICE(0x0586, 0x3417) },
82 { USB_DEVICE(0x0cde, 0x0023) },
84 { USB_DEVICE(0x0cde, 0x0026) },
86 { USB_DEVICE(0x083a, 0xf522) },
88 { USB_DEVICE(0x2019, 0x5304) },
89 /* IO-Data WNGDNUS2 */
90 { USB_DEVICE(0x04bb, 0x093f) },
91 /* AVM FRITZ!WLAN USB Stick N */
92 { USB_DEVICE(0x057C, 0x8401) },
93 /* AVM FRITZ!WLAN USB Stick N 2.4 */
94 { USB_DEVICE(0x057C, 0x8402), .driver_info
= AR9170_REQ_FW1_ONLY
},
99 MODULE_DEVICE_TABLE(usb
, ar9170_usb_ids
);
101 static void ar9170_usb_submit_urb(struct ar9170_usb
*aru
)
107 if (unlikely(!IS_STARTED(&aru
->common
)))
110 spin_lock_irqsave(&aru
->tx_urb_lock
, flags
);
111 if (aru
->tx_submitted_urbs
>= AR9170_NUM_TX_URBS
) {
112 spin_unlock_irqrestore(&aru
->tx_urb_lock
, flags
);
115 aru
->tx_submitted_urbs
++;
117 urb
= usb_get_from_anchor(&aru
->tx_pending
);
119 aru
->tx_submitted_urbs
--;
120 spin_unlock_irqrestore(&aru
->tx_urb_lock
, flags
);
124 spin_unlock_irqrestore(&aru
->tx_urb_lock
, flags
);
126 aru
->tx_pending_urbs
--;
127 usb_anchor_urb(urb
, &aru
->tx_submitted
);
129 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
131 if (ar9170_nag_limiter(&aru
->common
))
132 dev_err(&aru
->udev
->dev
, "submit_urb failed (%d).\n",
135 usb_unanchor_urb(urb
);
136 aru
->tx_submitted_urbs
--;
137 ar9170_tx_callback(&aru
->common
, urb
->context
);
143 static void ar9170_usb_tx_urb_complete_frame(struct urb
*urb
)
145 struct sk_buff
*skb
= urb
->context
;
146 struct ar9170_usb
*aru
= (struct ar9170_usb
*)
147 usb_get_intfdata(usb_ifnum_to_if(urb
->dev
, 0));
149 if (unlikely(!aru
)) {
150 dev_kfree_skb_irq(skb
);
154 aru
->tx_submitted_urbs
--;
156 ar9170_tx_callback(&aru
->common
, skb
);
158 ar9170_usb_submit_urb(aru
);
161 static void ar9170_usb_tx_urb_complete(struct urb
*urb
)
165 static void ar9170_usb_irq_completed(struct urb
*urb
)
167 struct ar9170_usb
*aru
= urb
->context
;
169 switch (urb
->status
) {
170 /* everything is fine */
185 ar9170_handle_command_response(&aru
->common
, urb
->transfer_buffer
,
189 usb_anchor_urb(urb
, &aru
->rx_submitted
);
190 if (usb_submit_urb(urb
, GFP_ATOMIC
)) {
191 usb_unanchor_urb(urb
);
198 usb_buffer_free(aru
->udev
, 64, urb
->transfer_buffer
, urb
->transfer_dma
);
201 static void ar9170_usb_rx_completed(struct urb
*urb
)
203 struct sk_buff
*skb
= urb
->context
;
204 struct ar9170_usb
*aru
= (struct ar9170_usb
*)
205 usb_get_intfdata(usb_ifnum_to_if(urb
->dev
, 0));
211 switch (urb
->status
) {
212 /* everything is fine */
227 skb_put(skb
, urb
->actual_length
);
228 ar9170_rx(&aru
->common
, skb
);
231 skb_reset_tail_pointer(skb
);
234 usb_anchor_urb(urb
, &aru
->rx_submitted
);
235 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
237 usb_unanchor_urb(urb
);
244 dev_kfree_skb_irq(skb
);
247 static int ar9170_usb_prep_rx_urb(struct ar9170_usb
*aru
,
248 struct urb
*urb
, gfp_t gfp
)
252 skb
= __dev_alloc_skb(AR9170_MAX_RX_BUFFER_SIZE
+ 32, gfp
);
256 /* reserve some space for mac80211's radiotap */
257 skb_reserve(skb
, 32);
259 usb_fill_bulk_urb(urb
, aru
->udev
,
260 usb_rcvbulkpipe(aru
->udev
, AR9170_EP_RX
),
261 skb
->data
, min(skb_tailroom(skb
),
262 AR9170_MAX_RX_BUFFER_SIZE
),
263 ar9170_usb_rx_completed
, skb
);
268 static int ar9170_usb_alloc_rx_irq_urb(struct ar9170_usb
*aru
)
270 struct urb
*urb
= NULL
;
274 /* initialize interrupt endpoint */
275 urb
= usb_alloc_urb(0, GFP_KERNEL
);
279 ibuf
= usb_buffer_alloc(aru
->udev
, 64, GFP_KERNEL
, &urb
->transfer_dma
);
283 usb_fill_int_urb(urb
, aru
->udev
,
284 usb_rcvintpipe(aru
->udev
, AR9170_EP_IRQ
), ibuf
,
285 64, ar9170_usb_irq_completed
, aru
, 1);
286 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
288 usb_anchor_urb(urb
, &aru
->rx_submitted
);
289 err
= usb_submit_urb(urb
, GFP_KERNEL
);
291 usb_unanchor_urb(urb
);
292 usb_buffer_free(aru
->udev
, 64, urb
->transfer_buffer
,
301 static int ar9170_usb_alloc_rx_bulk_urbs(struct ar9170_usb
*aru
)
307 for (i
= 0; i
< AR9170_NUM_RX_URBS
; i
++) {
309 urb
= usb_alloc_urb(0, GFP_KERNEL
);
313 err
= ar9170_usb_prep_rx_urb(aru
, urb
, GFP_KERNEL
);
319 usb_anchor_urb(urb
, &aru
->rx_submitted
);
320 err
= usb_submit_urb(urb
, GFP_KERNEL
);
322 usb_unanchor_urb(urb
);
323 dev_kfree_skb_any((void *) urb
->transfer_buffer
);
330 /* the device now waiting for a firmware. */
331 aru
->common
.state
= AR9170_IDLE
;
336 usb_kill_anchored_urbs(&aru
->rx_submitted
);
340 static int ar9170_usb_flush(struct ar9170
*ar
)
342 struct ar9170_usb
*aru
= (void *) ar
;
347 aru
->common
.state
= AR9170_IDLE
;
349 usb_wait_anchor_empty_timeout(&aru
->tx_pending
,
350 msecs_to_jiffies(800));
351 while ((urb
= usb_get_from_anchor(&aru
->tx_pending
))) {
352 ar9170_tx_callback(&aru
->common
, (void *) urb
->context
);
356 /* lets wait a while until the tx - queues are dried out */
357 ret
= usb_wait_anchor_empty_timeout(&aru
->tx_submitted
,
358 msecs_to_jiffies(100));
362 usb_kill_anchored_urbs(&aru
->tx_submitted
);
364 if (IS_ACCEPTING_CMD(ar
))
365 aru
->common
.state
= AR9170_STARTED
;
370 static void ar9170_usb_cancel_urbs(struct ar9170_usb
*aru
)
374 aru
->common
.state
= AR9170_UNKNOWN_STATE
;
376 err
= ar9170_usb_flush(&aru
->common
);
378 dev_err(&aru
->udev
->dev
, "stuck tx urbs!\n");
380 usb_poison_anchored_urbs(&aru
->tx_submitted
);
381 usb_poison_anchored_urbs(&aru
->rx_submitted
);
384 static int ar9170_usb_exec_cmd(struct ar9170
*ar
, enum ar9170_cmd cmd
,
385 unsigned int plen
, void *payload
,
386 unsigned int outlen
, void *out
)
388 struct ar9170_usb
*aru
= (void *) ar
;
389 struct urb
*urb
= NULL
;
393 if (unlikely(!IS_ACCEPTING_CMD(ar
)))
396 if (WARN_ON(plen
> AR9170_MAX_CMD_LEN
- 4))
399 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
403 ar
->cmdbuf
[0] = cpu_to_le32(plen
);
404 ar
->cmdbuf
[0] |= cpu_to_le32(cmd
<< 8);
405 /* writing multiple regs fills this buffer already */
406 if (plen
&& payload
!= (u8
*)(&ar
->cmdbuf
[1]))
407 memcpy(&ar
->cmdbuf
[1], payload
, plen
);
409 spin_lock_irqsave(&aru
->common
.cmdlock
, flags
);
410 aru
->readbuf
= (u8
*)out
;
411 aru
->readlen
= outlen
;
412 spin_unlock_irqrestore(&aru
->common
.cmdlock
, flags
);
414 usb_fill_int_urb(urb
, aru
->udev
,
415 usb_sndbulkpipe(aru
->udev
, AR9170_EP_CMD
),
416 aru
->common
.cmdbuf
, plen
+ 4,
417 ar9170_usb_tx_urb_complete
, NULL
, 1);
419 usb_anchor_urb(urb
, &aru
->tx_submitted
);
420 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
422 usb_unanchor_urb(urb
);
428 err
= wait_for_completion_timeout(&aru
->cmd_wait
, HZ
);
434 if (aru
->readlen
!= outlen
) {
442 /* Maybe the device was removed in the second we were waiting? */
443 if (IS_STARTED(ar
)) {
444 dev_err(&aru
->udev
->dev
, "no command feedback "
445 "received (%d).\n", err
);
447 /* provide some maybe useful debug information */
448 print_hex_dump_bytes("ar9170 cmd: ", DUMP_PREFIX_NONE
,
449 aru
->common
.cmdbuf
, plen
+ 4);
453 /* invalidate to avoid completing the next prematurely */
454 spin_lock_irqsave(&aru
->common
.cmdlock
, flags
);
457 spin_unlock_irqrestore(&aru
->common
.cmdlock
, flags
);
464 static int ar9170_usb_tx(struct ar9170
*ar
, struct sk_buff
*skb
)
466 struct ar9170_usb
*aru
= (struct ar9170_usb
*) ar
;
469 if (unlikely(!IS_STARTED(ar
))) {
470 /* Seriously, what were you drink... err... thinking!? */
474 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
478 usb_fill_bulk_urb(urb
, aru
->udev
,
479 usb_sndbulkpipe(aru
->udev
, AR9170_EP_TX
),
481 ar9170_usb_tx_urb_complete_frame
, skb
);
482 urb
->transfer_flags
|= URB_ZERO_PACKET
;
484 usb_anchor_urb(urb
, &aru
->tx_pending
);
485 aru
->tx_pending_urbs
++;
489 ar9170_usb_submit_urb(aru
);
493 static void ar9170_usb_callback_cmd(struct ar9170
*ar
, u32 len
, void *buffer
)
495 struct ar9170_usb
*aru
= (void *) ar
;
499 if (unlikely(!buffer
))
502 in
= le32_to_cpup((__le32
*)buffer
);
503 out
= le32_to_cpu(ar
->cmdbuf
[0]);
505 /* mask off length byte */
508 if (aru
->readlen
>= 0) {
509 /* add expected length */
512 /* add obtained length */
517 * Some commands (e.g: AR9170_CMD_FREQUENCY) have a variable response
518 * length and we cannot predict the correct length in advance.
519 * So we only check if we provided enough space for the data.
521 if (unlikely(out
< in
)) {
522 dev_warn(&aru
->udev
->dev
, "received invalid command response "
523 "got %d bytes, instead of %d bytes "
524 "and the resp length is %d bytes\n",
526 print_hex_dump_bytes("ar9170 invalid resp: ",
527 DUMP_PREFIX_OFFSET
, buffer
, len
);
529 * Do not complete, then the command times out,
530 * and we get a stack trace from there.
535 spin_lock_irqsave(&aru
->common
.cmdlock
, flags
);
536 if (aru
->readbuf
&& len
> 0) {
537 memcpy(aru
->readbuf
, buffer
+ 4, len
- 4);
540 complete(&aru
->cmd_wait
);
541 spin_unlock_irqrestore(&aru
->common
.cmdlock
, flags
);
544 static int ar9170_usb_upload(struct ar9170_usb
*aru
, const void *data
,
545 size_t len
, u32 addr
, bool complete
)
548 u8
*buf
= kmalloc(4096, GFP_KERNEL
);
554 transfer
= min_t(int, len
, 4096);
555 memcpy(buf
, data
, transfer
);
557 err
= usb_control_msg(aru
->udev
, usb_sndctrlpipe(aru
->udev
, 0),
558 0x30 /* FW DL */, 0x40 | USB_DIR_OUT
,
559 addr
>> 8, 0, buf
, transfer
, 1000);
573 err
= usb_control_msg(aru
->udev
, usb_sndctrlpipe(aru
->udev
, 0),
574 0x31 /* FW DL COMPLETE */,
575 0x40 | USB_DIR_OUT
, 0, 0, NULL
, 0, 5000);
581 static int ar9170_usb_request_firmware(struct ar9170_usb
*aru
)
585 err
= request_firmware(&aru
->firmware
, "ar9170.fw",
588 aru
->init_values
= NULL
;
592 if (aru
->req_one_stage_fw
) {
593 dev_err(&aru
->udev
->dev
, "ar9170.fw firmware file "
594 "not found and is required for this device\n");
598 dev_err(&aru
->udev
->dev
, "ar9170.fw firmware file "
599 "not found, trying old firmware...\n");
601 err
= request_firmware(&aru
->init_values
, "ar9170-1.fw",
604 dev_err(&aru
->udev
->dev
, "file with init values not found.\n");
608 err
= request_firmware(&aru
->firmware
, "ar9170-2.fw", &aru
->udev
->dev
);
610 release_firmware(aru
->init_values
);
611 dev_err(&aru
->udev
->dev
, "firmware file not found.\n");
618 static int ar9170_usb_reset(struct ar9170_usb
*aru
)
620 int ret
, lock
= (aru
->intf
->condition
!= USB_INTERFACE_BINDING
);
623 ret
= usb_lock_device_for_reset(aru
->udev
, aru
->intf
);
625 dev_err(&aru
->udev
->dev
, "unable to lock device "
626 "for reset (%d).\n", ret
);
631 ret
= usb_reset_device(aru
->udev
);
633 usb_unlock_device(aru
->udev
);
635 /* let it rest - for a second - */
641 static int ar9170_usb_upload_firmware(struct ar9170_usb
*aru
)
645 if (!aru
->init_values
)
646 goto upload_fw_start
;
648 /* First, upload initial values to device RAM */
649 err
= ar9170_usb_upload(aru
, aru
->init_values
->data
,
650 aru
->init_values
->size
, 0x102800, false);
652 dev_err(&aru
->udev
->dev
, "firmware part 1 "
653 "upload failed (%d).\n", err
);
659 /* Then, upload the firmware itself and start it */
660 return ar9170_usb_upload(aru
, aru
->firmware
->data
, aru
->firmware
->size
,
664 static int ar9170_usb_init_transport(struct ar9170_usb
*aru
)
666 struct ar9170
*ar
= (void *) &aru
->common
;
669 ar9170_regwrite_begin(ar
);
671 /* Set USB Rx stream mode MAX packet number to 2 */
672 ar9170_regwrite(AR9170_USB_REG_MAX_AGG_UPLOAD
, 0x4);
674 /* Set USB Rx stream mode timeout to 10us */
675 ar9170_regwrite(AR9170_USB_REG_UPLOAD_TIME_CTL
, 0x80);
677 ar9170_regwrite_finish();
679 err
= ar9170_regwrite_result();
681 dev_err(&aru
->udev
->dev
, "USB setup failed (%d).\n", err
);
686 static void ar9170_usb_stop(struct ar9170
*ar
)
688 struct ar9170_usb
*aru
= (void *) ar
;
691 if (IS_ACCEPTING_CMD(ar
))
692 aru
->common
.state
= AR9170_STOPPED
;
694 ret
= ar9170_usb_flush(ar
);
696 dev_err(&aru
->udev
->dev
, "kill pending tx urbs.\n");
698 usb_poison_anchored_urbs(&aru
->tx_submitted
);
702 * So far we freed all tx urbs, but we won't dare to touch any rx urbs.
703 * Else we would end up with a unresponsive device...
707 static int ar9170_usb_open(struct ar9170
*ar
)
709 struct ar9170_usb
*aru
= (void *) ar
;
712 usb_unpoison_anchored_urbs(&aru
->tx_submitted
);
713 err
= ar9170_usb_init_transport(aru
);
715 usb_poison_anchored_urbs(&aru
->tx_submitted
);
719 aru
->common
.state
= AR9170_IDLE
;
723 static int ar9170_usb_init_device(struct ar9170_usb
*aru
)
727 err
= ar9170_usb_alloc_rx_irq_urb(aru
);
731 err
= ar9170_usb_alloc_rx_bulk_urbs(aru
);
735 err
= ar9170_usb_upload_firmware(aru
);
737 err
= ar9170_echo_test(&aru
->common
, 0x60d43110);
739 /* force user invention, by disabling the device */
740 err
= usb_driver_set_configuration(aru
->udev
, -1);
741 dev_err(&aru
->udev
->dev
, "device is in a bad state. "
742 "please reconnect it!\n");
750 ar9170_usb_cancel_urbs(aru
);
756 static bool ar9170_requires_one_stage(const struct usb_device_id
*id
)
758 if (!id
->driver_info
)
760 if (id
->driver_info
== AR9170_REQ_FW1_ONLY
)
765 static int ar9170_usb_probe(struct usb_interface
*intf
,
766 const struct usb_device_id
*id
)
768 struct ar9170_usb
*aru
;
770 struct usb_device
*udev
;
773 aru
= ar9170_alloc(sizeof(*aru
));
779 udev
= interface_to_usbdev(intf
);
785 aru
->req_one_stage_fw
= ar9170_requires_one_stage(id
);
787 usb_set_intfdata(intf
, aru
);
788 SET_IEEE80211_DEV(ar
->hw
, &intf
->dev
);
790 init_usb_anchor(&aru
->rx_submitted
);
791 init_usb_anchor(&aru
->tx_pending
);
792 init_usb_anchor(&aru
->tx_submitted
);
793 init_completion(&aru
->cmd_wait
);
794 spin_lock_init(&aru
->tx_urb_lock
);
796 aru
->tx_pending_urbs
= 0;
797 aru
->tx_submitted_urbs
= 0;
799 aru
->common
.stop
= ar9170_usb_stop
;
800 aru
->common
.flush
= ar9170_usb_flush
;
801 aru
->common
.open
= ar9170_usb_open
;
802 aru
->common
.tx
= ar9170_usb_tx
;
803 aru
->common
.exec_cmd
= ar9170_usb_exec_cmd
;
804 aru
->common
.callback_cmd
= ar9170_usb_callback_cmd
;
807 udev
->reset_resume
= 1;
808 #endif /* CONFIG_PM */
809 err
= ar9170_usb_reset(aru
);
813 err
= ar9170_usb_request_firmware(aru
);
817 err
= ar9170_usb_init_device(aru
);
821 err
= ar9170_usb_open(ar
);
825 err
= ar9170_register(ar
, &udev
->dev
);
834 ar9170_usb_cancel_urbs(aru
);
837 release_firmware(aru
->init_values
);
838 release_firmware(aru
->firmware
);
841 usb_set_intfdata(intf
, NULL
);
843 ieee80211_free_hw(ar
->hw
);
848 static void ar9170_usb_disconnect(struct usb_interface
*intf
)
850 struct ar9170_usb
*aru
= usb_get_intfdata(intf
);
855 aru
->common
.state
= AR9170_IDLE
;
856 ar9170_unregister(&aru
->common
);
857 ar9170_usb_cancel_urbs(aru
);
859 release_firmware(aru
->init_values
);
860 release_firmware(aru
->firmware
);
862 usb_put_dev(aru
->udev
);
863 usb_set_intfdata(intf
, NULL
);
864 ieee80211_free_hw(aru
->common
.hw
);
868 static int ar9170_suspend(struct usb_interface
*intf
,
869 pm_message_t message
)
871 struct ar9170_usb
*aru
= usb_get_intfdata(intf
);
876 aru
->common
.state
= AR9170_IDLE
;
877 ar9170_usb_cancel_urbs(aru
);
882 static int ar9170_resume(struct usb_interface
*intf
)
884 struct ar9170_usb
*aru
= usb_get_intfdata(intf
);
890 usb_unpoison_anchored_urbs(&aru
->rx_submitted
);
891 usb_unpoison_anchored_urbs(&aru
->tx_submitted
);
893 err
= ar9170_usb_init_device(aru
);
897 err
= ar9170_usb_open(&aru
->common
);
904 aru
->common
.state
= AR9170_IDLE
;
905 ar9170_usb_cancel_urbs(aru
);
909 #endif /* CONFIG_PM */
911 static struct usb_driver ar9170_driver
= {
913 .probe
= ar9170_usb_probe
,
914 .disconnect
= ar9170_usb_disconnect
,
915 .id_table
= ar9170_usb_ids
,
918 .suspend
= ar9170_suspend
,
919 .resume
= ar9170_resume
,
920 .reset_resume
= ar9170_resume
,
921 #endif /* CONFIG_PM */
924 static int __init
ar9170_init(void)
926 return usb_register(&ar9170_driver
);
929 static void __exit
ar9170_exit(void)
931 usb_deregister(&ar9170_driver
);
934 module_init(ar9170_init
);
935 module_exit(ar9170_exit
);