Hi!
The Sequans company who produce WiMAX chips provides the USB driver and kthp
addon driver. However the USB device doesn't work correctly.
Here is more true hack for Sequans SQN11x0 based modem.
P.S. For more details, please, ask Sequans staff (see Signed-off-by lines).
Signed-off-by: Andy Shevchenko <andy@smile.org.ua>
Signed-off-by: Gosne Stephane <sgosne@sequans.com>
--- a/drivers/usb/host/ehci-q.c.orig 2008-02-07 16:53:18.000000000 +0200
+++ b/drivers/usb/host/ehci-q.c 2008-02-07 16:53:18.000000000 +0200
@@ -750,8 +750,14 @@
info1 |= 1 << 14; /* toggle from qtd */
info2 |= (EHCI_TUNE_MULT_HS << 30);
} else if (type == PIPE_BULK) {
+ struct usb_device_descriptor *desc = &urb->dev->descriptor;
info1 |= (EHCI_TUNE_RL_HS << 28);
- info1 |= 512 << 16; /* usb2 fixed maxpacket */
+ /* Special hook for SQN11x0 */
+ if (desc->idVendor == 0x148e && desc->idProduct == 0x0900) {
+ info1 |= max_packet (maxp) << 16;
+ } else {
+ info1 |= 512 << 16; /* usb2 fixed maxpacket */
+ }
info2 |= (EHCI_TUNE_MULT_HS << 30);
} else { /* PIPE_INTERRUPT */
info1 |= max_packet (maxp) << 16;
--
With best regards,
Andy Shevchenko. mailto: andy@smile.org.ua
--
| Al Viro | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Greg KH | [2.6.22.2 review 05/84] Fix deadlocks in sparc serial console. |
| Linus Torvalds | Linux 2.6.27-rc8 |
| Greg Kroah-Hartman | [PATCH 006/196] Chinese: add translation of oops-tracing.txt |
git: | |
| Natalie Protasevich | [BUG] New Kernel Bugs |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Linus Torvalds | Re: [GIT]: Networking |
| Gerrit Renker | [PATCH 0/37] dccp: Feature negotiation - last call for comments |
| Manuel Bouyer | Re: Interactive performance in -current |
| YAMAMOTO Takashi | Re: statvfs(2) replacement for statfs(2) patch |
| Nathan Langford | microkernels |
| Garrett D'Amore | Re: wsmux inject |
