4 * Copyright (c) 2003 Manuel Estrada Sainz
6 * The contents of this file are subject to the Mozilla Public License
7 * Version 1.1 (the "License"); you may not use this file except in
8 * compliance with the License. You may obtain a copy of the License
9 * at http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS"
12 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
13 * the License for the specific language governing rights and
14 * limitations under the License.
16 * Alternatively, the contents of this file may be used under the
17 * terms of the GNU General Public License version 2 (the "GPL"), in
18 * which case the provisions of the GPL are applicable instead of the
19 * above. If you wish to allow the use of your version of this file
20 * only under the terms of the GPL and not to allow others to use your
21 * version of this file under the MPL, indicate your decision by
22 * deleting the provisions above and replace them with the notice and
23 * other provisions required by the GPL. If you do not delete the
24 * provisions above, a recipient may use your version of this file
25 * under either the MPL or the GPL.
27 * Queueing code based on linux-wlan-ng 0.2.1-pre5
29 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
31 * The license is the same as above.
33 * Initialy based on USB Skeleton driver - 0.7
35 * Copyright (c) 2001 Greg Kroah-Hartman (greg@kroah.com)
37 * This program is free software; you can redistribute it and/or
38 * modify it under the terms of the GNU General Public License as
39 * published by the Free Software Foundation; either version 2 of
40 * the License, or (at your option) any later version.
42 * NOTE: The original USB Skeleton driver is GPL, but all that code is
43 * gone so MPL/GPL applies.
46 #define DRIVER_NAME "orinoco_usb"
47 #define PFX DRIVER_NAME ": "
49 #include <linux/module.h>
50 #include <linux/kernel.h>
51 #include <linux/sched.h>
52 #include <linux/signal.h>
53 #include <linux/errno.h>
54 #include <linux/poll.h>
55 #include <linux/init.h>
56 #include <linux/slab.h>
57 #include <linux/fcntl.h>
58 #include <linux/spinlock.h>
59 #include <linux/list.h>
60 #include <linux/usb.h>
61 #include <linux/timer.h>
63 #include <linux/netdevice.h>
64 #include <linux/if_arp.h>
65 #include <linux/etherdevice.h>
66 #include <linux/wireless.h>
67 #include <linux/firmware.h>
72 #ifndef URB_ASYNC_UNLINK
73 #define URB_ASYNC_UNLINK 0
76 /* 802.2 LLC/SNAP header used for Ethernet encapsulation over 802.11 */
77 static const u8 encaps_hdr
[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
78 #define ENCAPS_OVERHEAD (sizeof(encaps_hdr) + 2)
80 struct header_struct
{
99 static struct ez_usb_fw firmware
= {
104 #ifdef CONFIG_USB_DEBUG
105 static int debug
= 1;
110 /* Debugging macros */
112 #define dbg(format, arg...) \
113 do { if (debug) printk(KERN_DEBUG PFX "%s: " format "\n", \
114 __func__ , ## arg); } while (0)
116 #define err(format, arg...) \
117 do { printk(KERN_ERR PFX format "\n", ## arg); } while (0)
119 /* Module paramaters */
120 module_param(debug
, int, 0644);
121 MODULE_PARM_DESC(debug
, "Debug enabled or not");
123 MODULE_FIRMWARE("orinoco_ezusb_fw");
126 * Under some conditions, the card gets stuck and stops paying attention
127 * to the world (i.e. data communication stalls) until we do something to
128 * it. Sending an INQ_TALLIES command seems to be enough and should be
129 * harmless otherwise. This behaviour has been observed when using the
130 * driver on a systemimager client during installation. In the past a
131 * timer was used to send INQ_TALLIES commands when there was no other
132 * activity, but it was troublesome and was removed.
135 #define USB_COMPAQ_VENDOR_ID 0x049f /* Compaq Computer Corp. */
136 #define USB_COMPAQ_WL215_ID 0x001f /* Compaq WL215 USB Adapter */
137 #define USB_COMPAQ_W200_ID 0x0076 /* Compaq W200 USB Adapter */
138 #define USB_HP_WL215_ID 0x0082 /* Compaq WL215 USB Adapter */
140 #define USB_MELCO_VENDOR_ID 0x0411
141 #define USB_BUFFALO_L11_ID 0x0006 /* BUFFALO WLI-USB-L11 */
142 #define USB_BUFFALO_L11G_WR_ID 0x000B /* BUFFALO WLI-USB-L11G-WR */
143 #define USB_BUFFALO_L11G_ID 0x000D /* BUFFALO WLI-USB-L11G */
145 #define USB_LUCENT_VENDOR_ID 0x047E /* Lucent Technologies */
146 #define USB_LUCENT_ORINOCO_ID 0x0300 /* Lucent/Agere Orinoco USB Client */
148 #define USB_AVAYA8_VENDOR_ID 0x0D98
149 #define USB_AVAYAE_VENDOR_ID 0x0D9E
150 #define USB_AVAYA_WIRELESS_ID 0x0300 /* Avaya Wireless USB Card */
152 #define USB_AGERE_VENDOR_ID 0x0D4E /* Agere Systems */
153 #define USB_AGERE_MODEL0801_ID 0x1000 /* Wireless USB Card Model 0801 */
154 #define USB_AGERE_MODEL0802_ID 0x1001 /* Wireless USB Card Model 0802 */
155 #define USB_AGERE_REBRANDED_ID 0x047A /* WLAN USB Card */
157 #define USB_ELSA_VENDOR_ID 0x05CC
158 #define USB_ELSA_AIRLANCER_ID 0x3100 /* ELSA AirLancer USB-11 */
160 #define USB_LEGEND_VENDOR_ID 0x0E7C
161 #define USB_LEGEND_JOYNET_ID 0x0300 /* Joynet WLAN USB Card */
163 #define USB_SAMSUNG_VENDOR_ID 0x04E8
164 #define USB_SAMSUNG_SEW2001U1_ID 0x5002 /* Samsung SEW-2001u Card */
165 #define USB_SAMSUNG_SEW2001U2_ID 0x5B11 /* Samsung SEW-2001u Card */
166 #define USB_SAMSUNG_SEW2003U_ID 0x7011 /* Samsung SEW-2003U Card */
168 #define USB_IGATE_VENDOR_ID 0x0681
169 #define USB_IGATE_IGATE_11M_ID 0x0012 /* I-GATE 11M USB Card */
171 #define USB_FUJITSU_VENDOR_ID 0x0BF8
172 #define USB_FUJITSU_E1100_ID 0x1002 /* connect2AIR WLAN E-1100 USB */
174 #define USB_2WIRE_VENDOR_ID 0x1630
175 #define USB_2WIRE_WIRELESS_ID 0xff81 /* 2Wire Wireless USB adapter */
178 #define EZUSB_REQUEST_FW_TRANS 0xA0
179 #define EZUSB_REQUEST_TRIGER 0xAA
180 #define EZUSB_REQUEST_TRIG_AC 0xAC
181 #define EZUSB_CPUCS_REG 0x7F92
183 #define EZUSB_RID_TX 0x0700
184 #define EZUSB_RID_RX 0x0701
185 #define EZUSB_RID_INIT1 0x0702
186 #define EZUSB_RID_ACK 0x0710
187 #define EZUSB_RID_READ_PDA 0x0800
188 #define EZUSB_RID_PROG_INIT 0x0852
189 #define EZUSB_RID_PROG_SET_ADDR 0x0853
190 #define EZUSB_RID_PROG_BYTES 0x0854
191 #define EZUSB_RID_PROG_END 0x0855
192 #define EZUSB_RID_DOCMD 0x0860
194 /* Recognize info frames */
195 #define EZUSB_IS_INFO(id) ((id >= 0xF000) && (id <= 0xF2FF))
197 #define EZUSB_MAGIC 0x0210
199 #define EZUSB_FRAME_DATA 1
200 #define EZUSB_FRAME_CONTROL 2
202 #define DEF_TIMEOUT (3 * HZ)
204 #define BULK_BUF_SIZE 2048
206 #define MAX_DL_SIZE (BULK_BUF_SIZE - sizeof(struct ezusb_packet))
208 #define FW_BUF_SIZE 64
209 #define FW_VAR_OFFSET_PTR 0x359
210 #define FW_VAR_VALUE 0
211 #define FW_HOLE_START 0x100
212 #define FW_HOLE_END 0x300
214 struct ezusb_packet
{
215 __le16 magic
; /* 0x0210 */
218 __le16 frame_type
; /* 0x01 for data frames, 0x02 otherwise */
219 __le16 size
; /* transport size */
220 __le16 crc
; /* CRC up to here */
226 /* Table of devices that work or may work with this driver */
227 static struct usb_device_id ezusb_table
[] = {
228 {USB_DEVICE(USB_COMPAQ_VENDOR_ID
, USB_COMPAQ_WL215_ID
)},
229 {USB_DEVICE(USB_COMPAQ_VENDOR_ID
, USB_HP_WL215_ID
)},
230 {USB_DEVICE(USB_COMPAQ_VENDOR_ID
, USB_COMPAQ_W200_ID
)},
231 {USB_DEVICE(USB_MELCO_VENDOR_ID
, USB_BUFFALO_L11_ID
)},
232 {USB_DEVICE(USB_MELCO_VENDOR_ID
, USB_BUFFALO_L11G_WR_ID
)},
233 {USB_DEVICE(USB_MELCO_VENDOR_ID
, USB_BUFFALO_L11G_ID
)},
234 {USB_DEVICE(USB_LUCENT_VENDOR_ID
, USB_LUCENT_ORINOCO_ID
)},
235 {USB_DEVICE(USB_AVAYA8_VENDOR_ID
, USB_AVAYA_WIRELESS_ID
)},
236 {USB_DEVICE(USB_AVAYAE_VENDOR_ID
, USB_AVAYA_WIRELESS_ID
)},
237 {USB_DEVICE(USB_AGERE_VENDOR_ID
, USB_AGERE_MODEL0801_ID
)},
238 {USB_DEVICE(USB_AGERE_VENDOR_ID
, USB_AGERE_MODEL0802_ID
)},
239 {USB_DEVICE(USB_ELSA_VENDOR_ID
, USB_ELSA_AIRLANCER_ID
)},
240 {USB_DEVICE(USB_LEGEND_VENDOR_ID
, USB_LEGEND_JOYNET_ID
)},
241 {USB_DEVICE_VER(USB_SAMSUNG_VENDOR_ID
, USB_SAMSUNG_SEW2001U1_ID
,
243 {USB_DEVICE(USB_SAMSUNG_VENDOR_ID
, USB_SAMSUNG_SEW2001U2_ID
)},
244 {USB_DEVICE(USB_SAMSUNG_VENDOR_ID
, USB_SAMSUNG_SEW2003U_ID
)},
245 {USB_DEVICE(USB_IGATE_VENDOR_ID
, USB_IGATE_IGATE_11M_ID
)},
246 {USB_DEVICE(USB_FUJITSU_VENDOR_ID
, USB_FUJITSU_E1100_ID
)},
247 {USB_DEVICE(USB_2WIRE_VENDOR_ID
, USB_2WIRE_WIRELESS_ID
)},
248 {USB_DEVICE(USB_AGERE_VENDOR_ID
, USB_AGERE_REBRANDED_ID
)},
249 {} /* Terminating entry */
252 MODULE_DEVICE_TABLE(usb
, ezusb_table
);
254 /* Structure to hold all of our device specific stuff */
256 struct usb_device
*udev
;
257 struct net_device
*dev
;
260 struct list_head req_pending
;
261 struct list_head req_active
;
262 spinlock_t reply_count_lock
;
263 u16 hermes_reg_fake
[0x40];
265 struct urb
*read_urb
;
274 EZUSB_CTX_REQ_SUBMITTED
,
275 EZUSB_CTX_REQ_COMPLETE
,
276 EZUSB_CTX_RESP_RECEIVED
,
277 EZUSB_CTX_REQ_TIMEOUT
,
278 EZUSB_CTX_REQ_FAILED
,
279 EZUSB_CTX_RESP_TIMEOUT
,
280 EZUSB_CTX_REQSUBMIT_FAIL
,
284 struct request_context
{
285 struct list_head list
;
287 struct completion done
; /* Signals that CTX is dead */
289 struct urb
*outurb
; /* OUT for req pkt */
290 struct ezusb_priv
*upriv
;
291 struct ezusb_packet
*buf
;
293 struct timer_list timer
; /* Timeout handling */
294 enum ezusb_state state
; /* Current state */
295 /* the RID that we will wait for */
301 /* Forward declarations */
302 static void ezusb_ctx_complete(struct request_context
*ctx
);
303 static void ezusb_req_queue_run(struct ezusb_priv
*upriv
);
304 static void ezusb_bulk_in_callback(struct urb
*urb
);
306 static inline u8
ezusb_reply_inc(u8 count
)
314 static void ezusb_request_context_put(struct request_context
*ctx
)
316 if (!atomic_dec_and_test(&ctx
->refcount
))
319 WARN_ON(!ctx
->done
.done
);
320 BUG_ON(ctx
->outurb
->status
== -EINPROGRESS
);
321 BUG_ON(timer_pending(&ctx
->timer
));
322 usb_free_urb(ctx
->outurb
);
327 static inline void ezusb_mod_timer(struct ezusb_priv
*upriv
,
328 struct timer_list
*timer
,
329 unsigned long expire
)
333 mod_timer(timer
, expire
);
336 static void ezusb_request_timerfn(u_long _ctx
)
338 struct request_context
*ctx
= (void *) _ctx
;
340 ctx
->outurb
->transfer_flags
|= URB_ASYNC_UNLINK
;
341 if (usb_unlink_urb(ctx
->outurb
) == -EINPROGRESS
) {
342 ctx
->state
= EZUSB_CTX_REQ_TIMEOUT
;
344 ctx
->state
= EZUSB_CTX_RESP_TIMEOUT
;
345 dbg("couldn't unlink");
346 atomic_inc(&ctx
->refcount
);
348 ezusb_ctx_complete(ctx
);
349 ezusb_request_context_put(ctx
);
353 static struct request_context
*ezusb_alloc_ctx(struct ezusb_priv
*upriv
,
354 u16 out_rid
, u16 in_rid
)
356 struct request_context
*ctx
;
358 ctx
= kzalloc(sizeof(*ctx
), GFP_ATOMIC
);
362 ctx
->buf
= kmalloc(BULK_BUF_SIZE
, GFP_ATOMIC
);
367 ctx
->outurb
= usb_alloc_urb(0, GFP_ATOMIC
);
375 ctx
->state
= EZUSB_CTX_START
;
376 ctx
->out_rid
= out_rid
;
377 ctx
->in_rid
= in_rid
;
379 atomic_set(&ctx
->refcount
, 1);
380 init_completion(&ctx
->done
);
382 init_timer(&ctx
->timer
);
383 ctx
->timer
.function
= ezusb_request_timerfn
;
384 ctx
->timer
.data
= (u_long
) ctx
;
389 /* Hopefully the real complete_all will soon be exported, in the mean
390 * while this should work. */
391 static inline void ezusb_complete_all(struct completion
*comp
)
399 static void ezusb_ctx_complete(struct request_context
*ctx
)
401 struct ezusb_priv
*upriv
= ctx
->upriv
;
404 spin_lock_irqsave(&upriv
->req_lock
, flags
);
406 list_del_init(&ctx
->list
);
408 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
409 ezusb_req_queue_run(upriv
);
410 spin_lock_irqsave(&upriv
->req_lock
, flags
);
413 switch (ctx
->state
) {
414 case EZUSB_CTX_COMPLETE
:
415 case EZUSB_CTX_REQSUBMIT_FAIL
:
416 case EZUSB_CTX_REQ_FAILED
:
417 case EZUSB_CTX_REQ_TIMEOUT
:
418 case EZUSB_CTX_RESP_TIMEOUT
:
419 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
421 if ((ctx
->out_rid
== EZUSB_RID_TX
) && upriv
->dev
) {
422 struct net_device
*dev
= upriv
->dev
;
423 struct orinoco_private
*priv
= ndev_priv(dev
);
424 struct net_device_stats
*stats
= &priv
->stats
;
426 if (ctx
->state
!= EZUSB_CTX_COMPLETE
)
431 netif_wake_queue(dev
);
433 ezusb_complete_all(&ctx
->done
);
434 ezusb_request_context_put(ctx
);
438 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
440 /* This is normal, as all request contexts get flushed
441 * when the device is disconnected */
442 err("Called, CTX not terminating, but device gone");
443 ezusb_complete_all(&ctx
->done
);
444 ezusb_request_context_put(ctx
);
448 err("Called, CTX not in terminating state.");
449 /* Things are really bad if this happens. Just leak
450 * the CTX because it may still be linked to the
451 * queue or the OUT urb may still be active.
452 * Just leaking at least prevents an Oops or Panic.
459 * ezusb_req_queue_run:
461 * Note: Only one active CTX at any one time, because there's no
462 * other (reliable) way to match the response URB to the correct
465 static void ezusb_req_queue_run(struct ezusb_priv
*upriv
)
468 struct request_context
*ctx
;
471 spin_lock_irqsave(&upriv
->req_lock
, flags
);
473 if (!list_empty(&upriv
->req_active
))
476 if (list_empty(&upriv
->req_pending
))
480 list_entry(upriv
->req_pending
.next
, struct request_context
,
483 if (!ctx
->upriv
->udev
)
486 /* We need to split this off to avoid a race condition */
487 list_move_tail(&ctx
->list
, &upriv
->req_active
);
489 if (ctx
->state
== EZUSB_CTX_QUEUED
) {
490 atomic_inc(&ctx
->refcount
);
491 result
= usb_submit_urb(ctx
->outurb
, GFP_ATOMIC
);
493 ctx
->state
= EZUSB_CTX_REQSUBMIT_FAIL
;
495 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
497 err("Fatal, failed to submit command urb."
498 " error=%d\n", result
);
500 ezusb_ctx_complete(ctx
);
501 ezusb_request_context_put(ctx
);
505 ctx
->state
= EZUSB_CTX_REQ_SUBMITTED
;
506 ezusb_mod_timer(ctx
->upriv
, &ctx
->timer
,
507 jiffies
+ DEF_TIMEOUT
);
511 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
517 static void ezusb_req_enqueue_run(struct ezusb_priv
*upriv
,
518 struct request_context
*ctx
)
522 spin_lock_irqsave(&upriv
->req_lock
, flags
);
524 if (!ctx
->upriv
->udev
) {
525 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
528 atomic_inc(&ctx
->refcount
);
529 list_add_tail(&ctx
->list
, &upriv
->req_pending
);
530 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
532 ctx
->state
= EZUSB_CTX_QUEUED
;
533 ezusb_req_queue_run(upriv
);
539 static void ezusb_request_out_callback(struct urb
*urb
)
542 enum ezusb_state state
;
543 struct request_context
*ctx
= urb
->context
;
544 struct ezusb_priv
*upriv
= ctx
->upriv
;
546 spin_lock_irqsave(&upriv
->req_lock
, flags
);
548 del_timer(&ctx
->timer
);
551 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
552 pr_warning("interrupt called with dead ctx");
558 if (urb
->status
== 0) {
560 case EZUSB_CTX_REQ_SUBMITTED
:
562 ctx
->state
= EZUSB_CTX_REQ_COMPLETE
;
563 /* reply URB still pending */
564 ezusb_mod_timer(upriv
, &ctx
->timer
,
565 jiffies
+ DEF_TIMEOUT
);
566 spin_unlock_irqrestore(&upriv
->req_lock
,
571 case EZUSB_CTX_RESP_RECEIVED
:
572 /* IN already received before this OUT-ACK */
573 ctx
->state
= EZUSB_CTX_COMPLETE
;
574 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
575 ezusb_ctx_complete(ctx
);
579 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
580 err("Unexpected state(0x%x, %d) in OUT URB",
585 /* If someone cancels the OUT URB then its status
586 * should be either -ECONNRESET or -ENOENT.
589 case EZUSB_CTX_REQ_SUBMITTED
:
590 case EZUSB_CTX_RESP_RECEIVED
:
591 ctx
->state
= EZUSB_CTX_REQ_FAILED
;
594 case EZUSB_CTX_REQ_FAILED
:
595 case EZUSB_CTX_REQ_TIMEOUT
:
596 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
598 ezusb_ctx_complete(ctx
);
602 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
604 err("Unexpected state(0x%x, %d) in OUT URB",
610 ezusb_request_context_put(ctx
);
613 static void ezusb_request_in_callback(struct ezusb_priv
*upriv
,
616 struct ezusb_packet
*ans
= urb
->transfer_buffer
;
617 struct request_context
*ctx
= NULL
;
618 enum ezusb_state state
;
621 /* Find the CTX on the active queue that requested this URB */
622 spin_lock_irqsave(&upriv
->req_lock
, flags
);
624 struct list_head
*item
;
626 list_for_each(item
, &upriv
->req_active
) {
627 struct request_context
*c
;
630 c
= list_entry(item
, struct request_context
, list
);
632 ezusb_reply_inc(c
->buf
->req_reply_count
);
633 if ((ans
->ans_reply_count
== reply_count
)
634 && (le16_to_cpu(ans
->hermes_rid
) == c
->in_rid
)) {
638 dbg("Skipped (0x%x/0x%x) (%d/%d)",
639 le16_to_cpu(ans
->hermes_rid
),
640 c
->in_rid
, ans
->ans_reply_count
, reply_count
);
645 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
646 err("%s: got unexpected RID: 0x%04X", __func__
,
647 le16_to_cpu(ans
->hermes_rid
));
648 ezusb_req_queue_run(upriv
);
652 /* The data we want is in the in buffer, exchange */
653 urb
->transfer_buffer
= ctx
->buf
;
654 ctx
->buf
= (void *) ans
;
655 ctx
->buf_length
= urb
->actual_length
;
659 case EZUSB_CTX_REQ_SUBMITTED
:
660 /* We have received our response URB before
661 * our request has been acknowledged. Do NOT
662 * destroy our CTX yet, because our OUT URB
665 ctx
->state
= EZUSB_CTX_RESP_RECEIVED
;
666 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
668 /* Let the machine continue running. */
671 case EZUSB_CTX_REQ_COMPLETE
:
672 /* This is the usual path: our request
673 * has already been acknowledged, and
674 * we have now received the reply.
676 ctx
->state
= EZUSB_CTX_COMPLETE
;
678 /* Stop the intimer */
679 del_timer(&ctx
->timer
);
680 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
682 /* Call the completion handler */
683 ezusb_ctx_complete(ctx
);
687 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
689 pr_warning("Matched IN URB, unexpected context state(0x%x)",
691 /* Throw this CTX away and try submitting another */
692 del_timer(&ctx
->timer
);
693 ctx
->outurb
->transfer_flags
|= URB_ASYNC_UNLINK
;
694 usb_unlink_urb(ctx
->outurb
);
695 ezusb_req_queue_run(upriv
);
701 static void ezusb_req_ctx_wait(struct ezusb_priv
*upriv
,
702 struct request_context
*ctx
)
704 switch (ctx
->state
) {
705 case EZUSB_CTX_QUEUED
:
706 case EZUSB_CTX_REQ_SUBMITTED
:
707 case EZUSB_CTX_REQ_COMPLETE
:
708 case EZUSB_CTX_RESP_RECEIVED
:
710 /* If we get called from a timer, timeout timers don't
711 * get the chance to run themselves. So we make sure
712 * that we don't sleep for ever */
713 int msecs
= DEF_TIMEOUT
* (1000 / HZ
);
714 while (!ctx
->done
.done
&& msecs
--)
717 wait_event_interruptible(ctx
->done
.wait
,
722 /* Done or failed - nothing to wait for */
727 static inline u16
build_crc(struct ezusb_packet
*data
)
730 u8
*bytes
= (u8
*)data
;
733 for (i
= 0; i
< 8; i
++)
734 crc
= (crc
<< 1) + bytes
[i
];
742 * if data == NULL and length > 0 the data is assumed to be already in
743 * the target buffer and only the header is filled.
746 static int ezusb_fill_req(struct ezusb_packet
*req
, u16 length
, u16 rid
,
747 const void *data
, u16 frame_type
, u8 reply_count
)
749 int total_size
= sizeof(*req
) + length
;
751 BUG_ON(total_size
> BULK_BUF_SIZE
);
753 req
->magic
= cpu_to_le16(EZUSB_MAGIC
);
754 req
->req_reply_count
= reply_count
;
755 req
->ans_reply_count
= 0;
756 req
->frame_type
= cpu_to_le16(frame_type
);
757 req
->size
= cpu_to_le16(length
+ 4);
758 req
->crc
= cpu_to_le16(build_crc(req
));
759 req
->hermes_len
= cpu_to_le16(HERMES_BYTES_TO_RECLEN(length
));
760 req
->hermes_rid
= cpu_to_le16(rid
);
762 memcpy(req
->data
, data
, length
);
766 static int ezusb_submit_in_urb(struct ezusb_priv
*upriv
)
769 void *cur_buf
= upriv
->read_urb
->transfer_buffer
;
771 if (upriv
->read_urb
->status
== -EINPROGRESS
) {
772 dbg("urb busy, not resubmiting");
776 usb_fill_bulk_urb(upriv
->read_urb
, upriv
->udev
, upriv
->read_pipe
,
777 cur_buf
, BULK_BUF_SIZE
,
778 ezusb_bulk_in_callback
, upriv
);
779 upriv
->read_urb
->transfer_flags
= 0;
780 retval
= usb_submit_urb(upriv
->read_urb
, GFP_ATOMIC
);
782 err("%s submit failed %d", __func__
, retval
);
788 static inline int ezusb_8051_cpucs(struct ezusb_priv
*upriv
, int reset
)
790 u8 res_val
= reset
; /* avoid argument promotion */
793 err("%s: !upriv->udev", __func__
);
796 return usb_control_msg(upriv
->udev
,
797 usb_sndctrlpipe(upriv
->udev
, 0),
798 EZUSB_REQUEST_FW_TRANS
,
799 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
|
800 USB_DIR_OUT
, EZUSB_CPUCS_REG
, 0, &res_val
,
801 sizeof(res_val
), DEF_TIMEOUT
);
804 static int ezusb_firmware_download(struct ezusb_priv
*upriv
,
805 struct ez_usb_fw
*fw
)
807 u8 fw_buffer
[FW_BUF_SIZE
];
812 * This byte is 1 and should be replaced with 0. The offset is
813 * 0x10AD in version 0.0.6. The byte in question should follow
814 * the end of the code pointed to by the jump in the beginning
815 * of the firmware. Also, it is read by code located at 0x358.
817 variant_offset
= be16_to_cpup((__be16
*) &fw
->code
[FW_VAR_OFFSET_PTR
]);
818 if (variant_offset
>= fw
->size
) {
819 printk(KERN_ERR PFX
"Invalid firmware variant offset: "
820 "0x%04x\n", variant_offset
);
825 retval
= ezusb_8051_cpucs(upriv
, 1);
828 for (addr
= 0; addr
< fw
->size
; addr
+= FW_BUF_SIZE
) {
829 /* 0x100-0x300 should be left alone, it contains card
830 * specific data, like USB enumeration information */
831 if ((addr
>= FW_HOLE_START
) && (addr
< FW_HOLE_END
))
834 memcpy(fw_buffer
, &fw
->code
[addr
], FW_BUF_SIZE
);
835 if (variant_offset
>= addr
&&
836 variant_offset
< addr
+ FW_BUF_SIZE
) {
837 dbg("Patching card_variant byte at 0x%04X",
839 fw_buffer
[variant_offset
- addr
] = FW_VAR_VALUE
;
841 retval
= usb_control_msg(upriv
->udev
,
842 usb_sndctrlpipe(upriv
->udev
, 0),
843 EZUSB_REQUEST_FW_TRANS
,
844 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
847 fw_buffer
, FW_BUF_SIZE
,
853 retval
= ezusb_8051_cpucs(upriv
, 0);
859 printk(KERN_ERR PFX
"Firmware download failed, error %d\n",
865 static int ezusb_access_ltv(struct ezusb_priv
*upriv
,
866 struct request_context
*ctx
,
867 u16 length
, const void *data
, u16 frame_type
,
868 void *ans_buff
, int ans_size
, u16
*ans_length
)
872 enum ezusb_state state
;
877 dbg("Device disconnected");
881 if (upriv
->read_urb
->status
!= -EINPROGRESS
)
882 err("%s: in urb not pending", __func__
);
884 /* protect upriv->reply_count, guarantee sequential numbers */
885 spin_lock_bh(&upriv
->reply_count_lock
);
886 req_size
= ezusb_fill_req(ctx
->buf
, length
, ctx
->out_rid
, data
,
887 frame_type
, upriv
->reply_count
);
888 usb_fill_bulk_urb(ctx
->outurb
, upriv
->udev
, upriv
->write_pipe
,
890 ezusb_request_out_callback
, ctx
);
893 upriv
->reply_count
= ezusb_reply_inc(upriv
->reply_count
);
895 ezusb_req_enqueue_run(upriv
, ctx
);
897 spin_unlock_bh(&upriv
->reply_count_lock
);
900 ezusb_req_ctx_wait(upriv
, ctx
);
904 case EZUSB_CTX_COMPLETE
:
905 retval
= ctx
->outurb
->status
;
908 case EZUSB_CTX_QUEUED
:
909 case EZUSB_CTX_REQ_SUBMITTED
:
913 err("%s: Unexpected context state %d", __func__
,
916 case EZUSB_CTX_REQ_TIMEOUT
:
917 case EZUSB_CTX_REQ_FAILED
:
918 case EZUSB_CTX_RESP_TIMEOUT
:
919 case EZUSB_CTX_REQSUBMIT_FAIL
:
920 printk(KERN_ERR PFX
"Access failed, resetting (state %d,"
921 " reply_count %d)\n", state
, upriv
->reply_count
);
922 upriv
->reply_count
= 0;
923 if (state
== EZUSB_CTX_REQ_TIMEOUT
924 || state
== EZUSB_CTX_RESP_TIMEOUT
) {
925 printk(KERN_ERR PFX
"ctx timed out\n");
928 printk(KERN_ERR PFX
"ctx failed\n");
935 struct ezusb_packet
*ans
= ctx
->buf
;
938 if (ans
->hermes_len
!= 0)
939 exp_len
= le16_to_cpu(ans
->hermes_len
) * 2 + 12;
943 if (exp_len
!= ctx
->buf_length
) {
944 err("%s: length mismatch for RID 0x%04x: "
945 "expected %d, got %d", __func__
,
946 ctx
->in_rid
, exp_len
, ctx
->buf_length
);
952 memcpy(ans_buff
, ans
->data
,
953 min_t(int, exp_len
, ans_size
));
955 *ans_length
= le16_to_cpu(ans
->hermes_len
);
958 ezusb_request_context_put(ctx
);
962 static int ezusb_write_ltv(struct hermes
*hw
, int bap
, u16 rid
,
963 u16 length
, const void *data
)
965 struct ezusb_priv
*upriv
= hw
->priv
;
967 struct request_context
*ctx
;
972 length
= HERMES_RECLEN_TO_BYTES(length
);
974 /* On memory mapped devices HERMES_RID_CNFGROUPADDRESSES can be
975 * set to be empty, but the USB bridge doesn't like it */
979 ctx
= ezusb_alloc_ctx(upriv
, rid
, EZUSB_RID_ACK
);
983 if (rid
== EZUSB_RID_TX
)
984 frame_type
= EZUSB_FRAME_DATA
;
986 frame_type
= EZUSB_FRAME_CONTROL
;
988 return ezusb_access_ltv(upriv
, ctx
, length
, data
, frame_type
,
992 static int ezusb_read_ltv(struct hermes
*hw
, int bap
, u16 rid
,
993 unsigned bufsize
, u16
*length
, void *buf
)
995 struct ezusb_priv
*upriv
= hw
->priv
;
996 struct request_context
*ctx
;
998 if ((bufsize
< 0) || (bufsize
% 2))
1001 ctx
= ezusb_alloc_ctx(upriv
, rid
, rid
);
1005 return ezusb_access_ltv(upriv
, ctx
, 0, NULL
, EZUSB_FRAME_CONTROL
,
1006 buf
, bufsize
, length
);
1009 static int ezusb_doicmd_wait(struct hermes
*hw
, u16 cmd
, u16 parm0
, u16 parm1
,
1010 u16 parm2
, struct hermes_response
*resp
)
1012 struct ezusb_priv
*upriv
= hw
->priv
;
1013 struct request_context
*ctx
;
1021 dbg("0x%04X, parm0 0x%04X, parm1 0x%04X, parm2 0x%04X",
1022 cmd
, parm0
, parm1
, parm2
);
1023 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_DOCMD
, EZUSB_RID_ACK
);
1027 return ezusb_access_ltv(upriv
, ctx
, sizeof(data
), &data
,
1028 EZUSB_FRAME_CONTROL
, NULL
, 0, NULL
);
1031 static int ezusb_docmd_wait(struct hermes
*hw
, u16 cmd
, u16 parm0
,
1032 struct hermes_response
*resp
)
1034 struct ezusb_priv
*upriv
= hw
->priv
;
1035 struct request_context
*ctx
;
1043 dbg("0x%04X, parm0 0x%04X", cmd
, parm0
);
1044 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_DOCMD
, EZUSB_RID_ACK
);
1048 return ezusb_access_ltv(upriv
, ctx
, sizeof(data
), &data
,
1049 EZUSB_FRAME_CONTROL
, NULL
, 0, NULL
);
1052 static int ezusb_bap_pread(struct hermes
*hw
, int bap
,
1053 void *buf
, int len
, u16 id
, u16 offset
)
1055 struct ezusb_priv
*upriv
= hw
->priv
;
1056 struct ezusb_packet
*ans
= (void *) upriv
->read_urb
->transfer_buffer
;
1057 int actual_length
= upriv
->read_urb
->actual_length
;
1059 if (id
== EZUSB_RID_RX
) {
1060 if ((sizeof(*ans
) + offset
+ len
) > actual_length
) {
1061 printk(KERN_ERR PFX
"BAP read beyond buffer end "
1065 memcpy(buf
, ans
->data
+ offset
, len
);
1069 if (EZUSB_IS_INFO(id
)) {
1070 /* Include 4 bytes for length/type */
1071 if ((sizeof(*ans
) + offset
+ len
- 4) > actual_length
) {
1072 printk(KERN_ERR PFX
"BAP read beyond buffer end "
1076 memcpy(buf
, ans
->data
+ offset
- 4, len
);
1078 printk(KERN_ERR PFX
"Unexpected fid 0x%04x\n", id
);
1085 static int ezusb_read_pda(struct hermes
*hw
, __le16
*pda
,
1086 u32 pda_addr
, u16 pda_len
)
1088 struct ezusb_priv
*upriv
= hw
->priv
;
1089 struct request_context
*ctx
;
1091 cpu_to_le16(pda_addr
& 0xffff),
1092 cpu_to_le16(pda_len
- 4)
1094 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_READ_PDA
, EZUSB_RID_READ_PDA
);
1098 /* wl_lkm does not include PDA size in the PDA area.
1099 * We will pad the information into pda, so other routines
1100 * don't have to be modified */
1101 pda
[0] = cpu_to_le16(pda_len
- 2);
1102 /* Includes CFG_PROD_DATA but not itself */
1103 pda
[1] = cpu_to_le16(0x0800); /* CFG_PROD_DATA */
1105 return ezusb_access_ltv(upriv
, ctx
, sizeof(data
), &data
,
1106 EZUSB_FRAME_CONTROL
, &pda
[2], pda_len
- 4,
1110 static int ezusb_program_init(struct hermes
*hw
, u32 entry_point
)
1112 struct ezusb_priv
*upriv
= hw
->priv
;
1113 struct request_context
*ctx
;
1114 __le32 data
= cpu_to_le32(entry_point
);
1116 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_PROG_INIT
, EZUSB_RID_ACK
);
1120 return ezusb_access_ltv(upriv
, ctx
, sizeof(data
), &data
,
1121 EZUSB_FRAME_CONTROL
, NULL
, 0, NULL
);
1124 static int ezusb_program_end(struct hermes
*hw
)
1126 struct ezusb_priv
*upriv
= hw
->priv
;
1127 struct request_context
*ctx
;
1129 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_PROG_END
, EZUSB_RID_ACK
);
1133 return ezusb_access_ltv(upriv
, ctx
, 0, NULL
,
1134 EZUSB_FRAME_CONTROL
, NULL
, 0, NULL
);
1137 static int ezusb_program_bytes(struct hermes
*hw
, const char *buf
,
1140 struct ezusb_priv
*upriv
= hw
->priv
;
1141 struct request_context
*ctx
;
1142 __le32 data
= cpu_to_le32(addr
);
1145 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_PROG_SET_ADDR
, EZUSB_RID_ACK
);
1149 err
= ezusb_access_ltv(upriv
, ctx
, sizeof(data
), &data
,
1150 EZUSB_FRAME_CONTROL
, NULL
, 0, NULL
);
1154 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_PROG_BYTES
, EZUSB_RID_ACK
);
1158 return ezusb_access_ltv(upriv
, ctx
, len
, buf
,
1159 EZUSB_FRAME_CONTROL
, NULL
, 0, NULL
);
1162 static int ezusb_program(struct hermes
*hw
, const char *buf
,
1169 /* We can only send 2048 bytes out of the bulk xmit at a time,
1170 * so we have to split any programming into chunks of <2048
1173 ch_len
= (len
< MAX_DL_SIZE
) ? len
: MAX_DL_SIZE
;
1176 while (ch_addr
< (addr
+ len
)) {
1177 pr_debug("Programming subblock of length %d "
1178 "to address 0x%08x. Data @ %p\n",
1179 ch_len
, ch_addr
, &buf
[ch_addr
- addr
]);
1181 err
= ezusb_program_bytes(hw
, &buf
[ch_addr
- addr
],
1187 ch_len
= ((addr
+ len
- ch_addr
) < MAX_DL_SIZE
) ?
1188 (addr
+ len
- ch_addr
) : MAX_DL_SIZE
;
1194 static netdev_tx_t
ezusb_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1196 struct orinoco_private
*priv
= ndev_priv(dev
);
1197 struct net_device_stats
*stats
= &priv
->stats
;
1198 struct ezusb_priv
*upriv
= priv
->card
;
1199 u8 mic
[MICHAEL_MIC_LEN
+ 1];
1202 unsigned long flags
;
1203 struct request_context
*ctx
;
1207 if (!netif_running(dev
)) {
1208 printk(KERN_ERR
"%s: Tx on stopped device!\n",
1210 return NETDEV_TX_BUSY
;
1213 if (netif_queue_stopped(dev
)) {
1214 printk(KERN_DEBUG
"%s: Tx while transmitter busy!\n",
1216 return NETDEV_TX_BUSY
;
1219 if (orinoco_lock(priv
, &flags
) != 0) {
1221 "%s: ezusb_xmit() called while hw_unavailable\n",
1223 return NETDEV_TX_BUSY
;
1226 if (!netif_carrier_ok(dev
) ||
1227 (priv
->iw_mode
== NL80211_IFTYPE_MONITOR
)) {
1228 /* Oops, the firmware hasn't established a connection,
1229 silently drop the packet (this seems to be the
1230 safest approach). */
1234 /* Check packet length */
1235 if (skb
->len
< ETH_HLEN
)
1238 ctx
= ezusb_alloc_ctx(upriv
, EZUSB_RID_TX
, 0);
1242 memset(ctx
->buf
, 0, BULK_BUF_SIZE
);
1243 buf
= ctx
->buf
->data
;
1247 err
= orinoco_process_xmit_skb(skb
, dev
, priv
, &tx_control
,
1253 __le16
*tx_cntl
= (__le16
*)buf
;
1254 *tx_cntl
= cpu_to_le16(tx_control
);
1255 buf
+= sizeof(*tx_cntl
);
1258 memcpy(buf
, skb
->data
, skb
->len
);
1261 if (tx_control
& HERMES_TXCTRL_MIC
) {
1263 /* Mic has been offset so it can be copied to an even
1264 * address. We're copying eveything anyway, so we
1265 * don't need to copy that first byte. */
1268 memcpy(buf
, m
, MICHAEL_MIC_LEN
);
1269 buf
+= MICHAEL_MIC_LEN
;
1272 /* Finally, we actually initiate the send */
1273 netif_stop_queue(dev
);
1275 /* The card may behave better if we send evenly sized usb transfers */
1276 tx_size
= ALIGN(buf
- ctx
->buf
->data
, 2);
1278 err
= ezusb_access_ltv(upriv
, ctx
, tx_size
, NULL
,
1279 EZUSB_FRAME_DATA
, NULL
, 0, NULL
);
1282 netif_start_queue(dev
);
1283 if (net_ratelimit())
1284 printk(KERN_ERR
"%s: Error %d transmitting packet\n",
1289 dev
->trans_start
= jiffies
;
1290 stats
->tx_bytes
+= skb
->len
;
1295 stats
->tx_dropped
++;
1298 orinoco_unlock(priv
, &flags
);
1300 return NETDEV_TX_OK
;
1303 orinoco_unlock(priv
, &flags
);
1304 return NETDEV_TX_BUSY
;
1307 static int ezusb_allocate(struct hermes
*hw
, u16 size
, u16
*fid
)
1309 *fid
= EZUSB_RID_TX
;
1314 static int ezusb_hard_reset(struct orinoco_private
*priv
)
1316 struct ezusb_priv
*upriv
= priv
->card
;
1317 int retval
= ezusb_8051_cpucs(upriv
, 1);
1320 err("Failed to reset");
1324 retval
= ezusb_8051_cpucs(upriv
, 0);
1326 err("Failed to unreset");
1330 dbg("sending control message");
1331 retval
= usb_control_msg(upriv
->udev
,
1332 usb_sndctrlpipe(upriv
->udev
, 0),
1333 EZUSB_REQUEST_TRIGER
,
1334 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
|
1335 USB_DIR_OUT
, 0x0, 0x0, NULL
, 0,
1338 err("EZUSB_REQUEST_TRIGER failed retval %d", retval
);
1342 dbg("Sending EZUSB_REQUEST_TRIG_AC");
1343 retval
= usb_control_msg(upriv
->udev
,
1344 usb_sndctrlpipe(upriv
->udev
, 0),
1345 EZUSB_REQUEST_TRIG_AC
,
1346 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
|
1347 USB_DIR_OUT
, 0x00FA, 0x0, NULL
, 0,
1350 err("EZUSB_REQUEST_TRIG_AC failed retval %d", retval
);
1359 static int ezusb_init(struct hermes
*hw
)
1361 struct ezusb_priv
*upriv
= hw
->priv
;
1364 BUG_ON(in_interrupt());
1367 upriv
->reply_count
= 0;
1368 /* Write the MAGIC number on the simulated registers to keep
1369 * orinoco.c happy */
1370 hermes_write_regn(hw
, SWSUPPORT0
, HERMES_MAGIC
);
1371 hermes_write_regn(hw
, RXFID
, EZUSB_RID_RX
);
1373 usb_kill_urb(upriv
->read_urb
);
1374 ezusb_submit_in_urb(upriv
);
1376 retval
= ezusb_write_ltv(hw
, 0, EZUSB_RID_INIT1
,
1377 HERMES_BYTES_TO_RECLEN(2), "\x10\x00");
1379 printk(KERN_ERR PFX
"EZUSB_RID_INIT1 error %d\n", retval
);
1383 retval
= ezusb_docmd_wait(hw
, HERMES_CMD_INIT
, 0, NULL
);
1385 printk(KERN_ERR PFX
"HERMES_CMD_INIT error %d\n", retval
);
1392 static void ezusb_bulk_in_callback(struct urb
*urb
)
1394 struct ezusb_priv
*upriv
= (struct ezusb_priv
*) urb
->context
;
1395 struct ezusb_packet
*ans
= urb
->transfer_buffer
;
1399 if (upriv
->udev
== NULL
) {
1400 dbg("disconnected");
1404 if (urb
->status
== -ETIMEDOUT
) {
1405 /* When a device gets unplugged we get this every time
1406 * we resubmit, flooding the logs. Since we don't use
1407 * USB timeouts, it shouldn't happen any other time*/
1408 pr_warning("%s: urb timed out, not resubmiting", __func__
);
1411 if (urb
->status
== -ECONNABORTED
) {
1412 pr_warning("%s: connection abort, resubmiting urb",
1416 if ((urb
->status
== -EILSEQ
)
1417 || (urb
->status
== -ENOENT
)
1418 || (urb
->status
== -ECONNRESET
)) {
1419 dbg("status %d, not resubmiting", urb
->status
);
1423 dbg("status: %d length: %d",
1424 urb
->status
, urb
->actual_length
);
1425 if (urb
->actual_length
< sizeof(*ans
)) {
1426 err("%s: short read, ignoring", __func__
);
1429 crc
= build_crc(ans
);
1430 if (le16_to_cpu(ans
->crc
) != crc
) {
1431 err("CRC error, ignoring packet");
1435 hermes_rid
= le16_to_cpu(ans
->hermes_rid
);
1436 if ((hermes_rid
!= EZUSB_RID_RX
) && !EZUSB_IS_INFO(hermes_rid
)) {
1437 ezusb_request_in_callback(upriv
, urb
);
1438 } else if (upriv
->dev
) {
1439 struct net_device
*dev
= upriv
->dev
;
1440 struct orinoco_private
*priv
= ndev_priv(dev
);
1441 struct hermes
*hw
= &priv
->hw
;
1443 if (hermes_rid
== EZUSB_RID_RX
) {
1444 __orinoco_ev_rx(dev
, hw
);
1446 hermes_write_regn(hw
, INFOFID
,
1447 le16_to_cpu(ans
->hermes_rid
));
1448 __orinoco_ev_info(dev
, hw
);
1454 ezusb_submit_in_urb(upriv
);
1457 static inline void ezusb_delete(struct ezusb_priv
*upriv
)
1459 struct net_device
*dev
;
1460 struct list_head
*item
;
1461 struct list_head
*tmp_item
;
1462 unsigned long flags
;
1464 BUG_ON(in_interrupt());
1468 mutex_lock(&upriv
->mtx
);
1470 upriv
->udev
= NULL
; /* No timer will be rearmed from here */
1472 usb_kill_urb(upriv
->read_urb
);
1474 spin_lock_irqsave(&upriv
->req_lock
, flags
);
1475 list_for_each_safe(item
, tmp_item
, &upriv
->req_active
) {
1476 struct request_context
*ctx
;
1479 ctx
= list_entry(item
, struct request_context
, list
);
1480 atomic_inc(&ctx
->refcount
);
1482 ctx
->outurb
->transfer_flags
|= URB_ASYNC_UNLINK
;
1483 err
= usb_unlink_urb(ctx
->outurb
);
1485 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
1486 if (err
== -EINPROGRESS
)
1487 wait_for_completion(&ctx
->done
);
1489 del_timer_sync(&ctx
->timer
);
1490 /* FIXME: there is an slight chance for the irq handler to
1492 if (!list_empty(&ctx
->list
))
1493 ezusb_ctx_complete(ctx
);
1495 ezusb_request_context_put(ctx
);
1496 spin_lock_irqsave(&upriv
->req_lock
, flags
);
1498 spin_unlock_irqrestore(&upriv
->req_lock
, flags
);
1500 list_for_each_safe(item
, tmp_item
, &upriv
->req_pending
)
1501 ezusb_ctx_complete(list_entry(item
,
1502 struct request_context
, list
));
1504 if (upriv
->read_urb
&& upriv
->read_urb
->status
== -EINPROGRESS
)
1505 printk(KERN_ERR PFX
"Some URB in progress\n");
1507 mutex_unlock(&upriv
->mtx
);
1509 if (upriv
->read_urb
) {
1510 kfree(upriv
->read_urb
->transfer_buffer
);
1511 usb_free_urb(upriv
->read_urb
);
1513 kfree(upriv
->bap_buf
);
1515 struct orinoco_private
*priv
= ndev_priv(upriv
->dev
);
1516 orinoco_if_del(priv
);
1517 free_orinocodev(priv
);
1521 static void ezusb_lock_irqsave(spinlock_t
*lock
,
1522 unsigned long *flags
) __acquires(lock
)
1527 static void ezusb_unlock_irqrestore(spinlock_t
*lock
,
1528 unsigned long *flags
) __releases(lock
)
1530 spin_unlock_bh(lock
);
1533 static void ezusb_lock_irq(spinlock_t
*lock
) __acquires(lock
)
1538 static void ezusb_unlock_irq(spinlock_t
*lock
) __releases(lock
)
1540 spin_unlock_bh(lock
);
1543 static const struct hermes_ops ezusb_ops
= {
1545 .cmd_wait
= ezusb_docmd_wait
,
1546 .init_cmd_wait
= ezusb_doicmd_wait
,
1547 .allocate
= ezusb_allocate
,
1548 .read_ltv
= ezusb_read_ltv
,
1549 .write_ltv
= ezusb_write_ltv
,
1550 .bap_pread
= ezusb_bap_pread
,
1551 .read_pda
= ezusb_read_pda
,
1552 .program_init
= ezusb_program_init
,
1553 .program_end
= ezusb_program_end
,
1554 .program
= ezusb_program
,
1555 .lock_irqsave
= ezusb_lock_irqsave
,
1556 .unlock_irqrestore
= ezusb_unlock_irqrestore
,
1557 .lock_irq
= ezusb_lock_irq
,
1558 .unlock_irq
= ezusb_unlock_irq
,
1561 static const struct net_device_ops ezusb_netdev_ops
= {
1562 .ndo_open
= orinoco_open
,
1563 .ndo_stop
= orinoco_stop
,
1564 .ndo_start_xmit
= ezusb_xmit
,
1565 .ndo_set_multicast_list
= orinoco_set_multicast_list
,
1566 .ndo_change_mtu
= orinoco_change_mtu
,
1567 .ndo_set_mac_address
= eth_mac_addr
,
1568 .ndo_validate_addr
= eth_validate_addr
,
1569 .ndo_tx_timeout
= orinoco_tx_timeout
,
1570 .ndo_get_stats
= orinoco_get_stats
,
1573 static int ezusb_probe(struct usb_interface
*interface
,
1574 const struct usb_device_id
*id
)
1576 struct usb_device
*udev
= interface_to_usbdev(interface
);
1577 struct orinoco_private
*priv
;
1579 struct ezusb_priv
*upriv
= NULL
;
1580 struct usb_interface_descriptor
*iface_desc
;
1581 struct usb_endpoint_descriptor
*ep
;
1582 const struct firmware
*fw_entry
;
1586 priv
= alloc_orinocodev(sizeof(*upriv
), &udev
->dev
,
1587 ezusb_hard_reset
, NULL
);
1589 err("Couldn't allocate orinocodev");
1597 mutex_init(&upriv
->mtx
);
1598 spin_lock_init(&upriv
->reply_count_lock
);
1600 spin_lock_init(&upriv
->req_lock
);
1601 INIT_LIST_HEAD(&upriv
->req_pending
);
1602 INIT_LIST_HEAD(&upriv
->req_active
);
1606 hw
->iobase
= (void __force __iomem
*) &upriv
->hermes_reg_fake
;
1607 hw
->reg_spacing
= HERMES_16BIT_REGSPACING
;
1609 hw
->ops
= &ezusb_ops
;
1611 /* set up the endpoint information */
1612 /* check out the endpoints */
1614 iface_desc
= &interface
->altsetting
[0].desc
;
1615 for (i
= 0; i
< iface_desc
->bNumEndpoints
; ++i
) {
1616 ep
= &interface
->altsetting
[0].endpoint
[i
].desc
;
1618 if (((ep
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
)
1620 ((ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
)
1621 == USB_ENDPOINT_XFER_BULK
)) {
1622 /* we found a bulk in endpoint */
1623 if (upriv
->read_urb
!= NULL
) {
1624 pr_warning("Found a second bulk in ep, ignored");
1628 upriv
->read_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1629 if (!upriv
->read_urb
) {
1630 err("No free urbs available");
1633 if (le16_to_cpu(ep
->wMaxPacketSize
) != 64)
1634 pr_warning("bulk in: wMaxPacketSize!= 64");
1635 if (ep
->bEndpointAddress
!= (2 | USB_DIR_IN
))
1636 pr_warning("bulk in: bEndpointAddress: %d",
1637 ep
->bEndpointAddress
);
1638 upriv
->read_pipe
= usb_rcvbulkpipe(udev
,
1641 upriv
->read_urb
->transfer_buffer
=
1642 kmalloc(BULK_BUF_SIZE
, GFP_KERNEL
);
1643 if (!upriv
->read_urb
->transfer_buffer
) {
1644 err("Couldn't allocate IN buffer");
1649 if (((ep
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
)
1651 ((ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
)
1652 == USB_ENDPOINT_XFER_BULK
)) {
1653 /* we found a bulk out endpoint */
1654 if (upriv
->bap_buf
!= NULL
) {
1655 pr_warning("Found a second bulk out ep, ignored");
1659 if (le16_to_cpu(ep
->wMaxPacketSize
) != 64)
1660 pr_warning("bulk out: wMaxPacketSize != 64");
1661 if (ep
->bEndpointAddress
!= 2)
1662 pr_warning("bulk out: bEndpointAddress: %d",
1663 ep
->bEndpointAddress
);
1664 upriv
->write_pipe
= usb_sndbulkpipe(udev
,
1667 upriv
->bap_buf
= kmalloc(BULK_BUF_SIZE
, GFP_KERNEL
);
1668 if (!upriv
->bap_buf
) {
1669 err("Couldn't allocate bulk_out_buffer");
1674 if (!upriv
->bap_buf
|| !upriv
->read_urb
) {
1675 err("Didn't find the required bulk endpoints");
1679 if (request_firmware(&fw_entry
, "orinoco_ezusb_fw",
1680 &interface
->dev
) == 0) {
1681 firmware
.size
= fw_entry
->size
;
1682 firmware
.code
= fw_entry
->data
;
1684 if (firmware
.size
&& firmware
.code
) {
1685 ezusb_firmware_download(upriv
, &firmware
);
1687 err("No firmware to download");
1691 if (ezusb_hard_reset(priv
) < 0) {
1692 err("Cannot reset the device");
1696 /* If the firmware is already downloaded orinoco.c will call
1697 * ezusb_init but if the firmware is not already there, that will make
1698 * the kernel very unstable, so we try initializing here and quit in
1700 if (ezusb_init(hw
) < 0) {
1701 err("Couldn't initialize the device");
1702 err("Firmware may not be downloaded or may be wrong.");
1706 /* Initialise the main driver */
1707 if (orinoco_init(priv
) != 0) {
1708 err("orinoco_init() failed\n");
1712 if (orinoco_if_add(priv
, 0, 0, &ezusb_netdev_ops
) != 0) {
1714 err("%s: orinoco_if_add() failed", __func__
);
1717 upriv
->dev
= priv
->ndev
;
1722 ezusb_delete(upriv
);
1724 /* upriv->dev was 0, so ezusb_delete() didn't free it */
1725 free_orinocodev(priv
);
1731 firmware
.code
= NULL
;
1733 release_firmware(fw_entry
);
1735 usb_set_intfdata(interface
, upriv
);
1740 static void ezusb_disconnect(struct usb_interface
*intf
)
1742 struct ezusb_priv
*upriv
= usb_get_intfdata(intf
);
1743 usb_set_intfdata(intf
, NULL
);
1744 ezusb_delete(upriv
);
1745 printk(KERN_INFO PFX
"Disconnected\n");
1749 /* usb specific object needed to register this driver with the usb subsystem */
1750 static struct usb_driver orinoco_driver
= {
1751 .name
= DRIVER_NAME
,
1752 .probe
= ezusb_probe
,
1753 .disconnect
= ezusb_disconnect
,
1754 .id_table
= ezusb_table
,
1757 /* Can't be declared "const" or the whole __initdata section will
1759 static char version
[] __initdata
= DRIVER_NAME
" " DRIVER_VERSION
1760 " (Manuel Estrada Sainz)";
1762 static int __init
ezusb_module_init(void)
1766 printk(KERN_DEBUG
"%s\n", version
);
1768 /* register this driver with the USB subsystem */
1769 err
= usb_register(&orinoco_driver
);
1771 printk(KERN_ERR PFX
"usb_register failed, error %d\n",
1779 static void __exit
ezusb_module_exit(void)
1781 /* deregister this driver with the USB subsystem */
1782 usb_deregister(&orinoco_driver
);
1786 module_init(ezusb_module_init
);
1787 module_exit(ezusb_module_exit
);
1789 MODULE_AUTHOR("Manuel Estrada Sainz");
1790 MODULE_DESCRIPTION("Driver for Orinoco wireless LAN cards using EZUSB bridge");
1791 MODULE_LICENSE("Dual MPL/GPL");