[linux-usb-devel] Still Problems with USB Remote control

2007-02-20 Thread Guenther Sohler
Some weeks before I have already reported about problems with my USB Remote control. I got a remote control and a IR Receiver with an USB cable, which I plug into my computer. I expect receiving the events through /dev/input/eventx but it does not work out. The only time, i get an event is * i pl

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Robert Marquardt
Alan Stern wrote: > It depends what you want to use it for. For some purposes it is better to > use the maxpacket value instead of the report size. > > Alan Stern In this case definitely the report size is needed. I will change the variable name to reflect that. As soon as i know where to get

Re: [linux-usb-devel] [PATCH] EHCI interrupt transactions failing during CPU frequency changes

2007-02-20 Thread David Brownell
On Tuesday 20 February 2007 12:27 pm, [EMAIL PROTECTED] wrote: > > This patch turns off periodic list processing in the EHCI controller for > the duration of processor frequency changes. Did you test this with any kind of isochronous device active, like a set of USB speakers playing? ISO transfe

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Greg KH
On Tue, Feb 20, 2007 at 03:48:03PM +0100, Robert Marquardt wrote: > I just found a bug in the IOWarrior hardware. It can report a wrong > wMaxPacketSize on interface 0. The diff fixes that in the driver. > > 781a782,784 > > if((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && >

[linux-usb-devel] Warning: message 1HJTHF-0006gl-Me delayed 10 hours

2007-02-20 Thread Mail Delivery System
This message was created automatically by mail delivery software. A message that you sent has not yet been delivered to one or more of its recipients after more than 10 hours on the queue on externalmx-1.sourceforge.net. The message identifier is: 1HJTHF-0006gl-Me The subject of the message i

[linux-usb-devel] Warning: message 1HJW66-0006ER-CA delayed 10 hours

2007-02-20 Thread Mail Delivery System
This message was created automatically by mail delivery software. A message that you sent has not yet been delivered to one or more of its recipients after more than 10 hours on the queue on externalmx-1.sourceforge.net. The message identifier is: 1HJW66-0006ER-CA The subject of the message i

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Pete Zaitcev wrote: > What are we going to do about iowarror specifically? It would not be the > first time we work around broken descriptors. Until/unless other examples show up, I'd say to use the patch written by Robert Marquardt (provided he submits it in the proper forma

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Pete Zaitcev
On Tue, 20 Feb 2007 14:36:33 -0500 (EST), Alan Stern <[EMAIL PROTECTED]> wrote: > Here's the argument for using the maxpacket size: I am not completely persuaded... But at least I see what you're thinking, thanks for the explanation. What are we going to do about iowarror specifically? It would

[linux-usb-devel] [PATCH] EHCI interrupt transactions failing during CPU frequency changes

2007-02-20 Thread Stuart_Hayes
Many interrupt transactions to low/full speed devices are getting QTD_STS_MMF from the EHCI controller because the split transaction isn't completed in time. This happens when the EHCI controller tries to read main memory during a CPU frequency change, and it can't get the data back in time, pres

[linux-usb-devel] [PATCH 4/4] USB: export autosuspend delay in sysfs

2007-02-20 Thread Alan Stern
This patch (as861) adds sysfs attributes to expose the autosuspend delay value for each USB device. If the user changes the delay from 0 (no autosuspend) to a positive value, an autosuspend is attempted. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> --- Index: usb-2.6/drivers/usb/core/sysfs.c =

[linux-usb-devel] [PATCH 3/4] sysfs: allow attributes to be added to groups

2007-02-20 Thread Alan Stern
This patch (as860) adds two new sysfs routines: sysfs_add_file_to_group() and sysfs_remove_file_from_group(). A later patch adds code that uses the new routines. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Cc: Maneesh Soni <[EMAIL PROTECTED]> --- Index: usb-2.6/fs/sysfs/file.c

[linux-usb-devel] [PATCH 2/4] USB: make autosuspend delay a module parameter

2007-02-20 Thread Alan Stern
This patch (as859) makes the default USB autosuspend delay a module parameter of usbcore. By setting the delay value at boot time, users will be able to prevent the system from autosuspending devices which for some reason can't handle it. The patch also stores the autosuspend delay as a per-devic

[linux-usb-devel] [PATCH 1/4] USB: minor cleanups for sysfs.c

2007-02-20 Thread Alan Stern
This patch (as858) makes some minor cleanups to sysfs.c in usbcore. Unnecessary tests are removed and a few temp variables are added. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> --- This isn't directly related to the autosuspend changes in the rest of the patch series in terms of functionalit

[linux-usb-devel] [PATCH 0/4] USB: autosuspend management

2007-02-20 Thread Alan Stern
Greg: Experience with 2.6.20 has shown that there is some buggy USB equipment out there which doesn't like to be suspended and resumed. This means that users need a way to manage the newly-added autosuspend/autoresume facilities. At the very least, it has to be possible to prevent certain device

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Pete Zaitcev wrote: > On Tue, 20 Feb 2007 11:57:14 -0500 (EST), Alan Stern <[EMAIL PROTECTED]> > wrote: > > On Tue, 20 Feb 2007, Guido Körber wrote: > > > > There is no situation where a USB device sends multiple reports in > > > the same packet. > > > > I've never seen

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Pete Zaitcev
On Tue, 20 Feb 2007 11:57:14 -0500 (EST), Alan Stern <[EMAIL PROTECTED]> wrote: > On Tue, 20 Feb 2007, Guido Körber wrote: > > There is no situation where a USB device sends multiple reports in > > the same packet. > > I've never seen it happen myself, but Pete Zaitcev says he has: > > http://

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Guido Körber wrote: > OK, I am starting to understand where that comes from. > > First of all USB does not allow to send two reports in a single > transfer. That's right. Section 8.4 of the USB HID specification explicitly says: Only one report is allowed in a si

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Guido Körber
OK, I am starting to understand where that comes from. First of all USB does not allow to send two reports in a single transfer. The effect that was described in the forum is likely something that happens in the buffers of the host controller. Since he writes that he had to ignore interrupt

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Guido Körber wrote: > There is no situation where a USB device sends multiple reports in > the same packet. I've never seen it happen myself, but Pete Zaitcev says he has: http://marc.theaimsgroup.com/?l=linux-usb-devel&m=116545264427365&w=2 Alan Stern -

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Guido Körber
Am 20.02.2007 um 17:17 schrieb Alan Stern: > On Tue, 20 Feb 2007, Guido Körber wrote: > >> Using maxPacketSize instead of ReportSize is never an option. >> >> maxPacketSize signifies the maximum physical transfer size supported >> by an individual endpoint. This value may be lower, equal, or highe

Re: [linux-usb-devel] USB Storage: data transfer failing with Status code -71

2007-02-20 Thread Alan Stern
Please configure your email client to wrap long lines after about 75 columns. On Mon, 19 Feb 2007, Mukesh Kohli wrote: > > After seeing the transactions by hooking analyzer in between I am seeing > > the failure happening due to ACK not being sent by the controller in > > response to data (512 b

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Guido Körber wrote: > Using maxPacketSize instead of ReportSize is never an option. > > maxPacketSize signifies the maximum physical transfer size supported > by an individual endpoint. This value may be lower, equal, or higher > than ReportSize. In the last case multiple

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Guido Körber
Using maxPacketSize instead of ReportSize is never an option. maxPacketSize signifies the maximum physical transfer size supported by an individual endpoint. This value may be lower, equal, or higher than ReportSize. In the last case multiple transfers will be conducted to transfer a single

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Robert Marquardt wrote: > Robert Marquardt wrote: > > I just found a bug in the IOWarrior hardware. It can report a wrong > > wMaxPacketSize on interface 0. The diff fixes that in the driver. > > To clarify. This is not a bug in the hardware. It is an inconsistency, > but i

Re: [linux-usb-devel] Problems with USB port and a dongle + recompilation with USB support

2007-02-20 Thread Alan Stern
On Tue, 20 Feb 2007, Thibaud Hulin wrote: > Hi, > > > I don't know what you did wrong. CONFIG_4KSTACKS is that last item on the > > Kernel Hacking menu when you run "make menuconfig". > > I've changed too the file drivers/usb/core/usb.h to HZ*60. Then, I've > verified that CONFIG_4KSTACKS is

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Robert Marquardt
Robert Marquardt wrote: > I just found a bug in the IOWarrior hardware. It can report a wrong > wMaxPacketSize on interface 0. The diff fixes that in the driver. To clarify. This is not a bug in the hardware. It is an inconsistency, but it is valid. The problem is that the driver uses wMaxPacket

Re: [linux-usb-devel] patch usb-iowarrior.patch added to gregkh-2.6 tree

2007-02-20 Thread Robert Marquardt
I just found a bug in the IOWarrior hardware. It can report a wrong wMaxPacketSize on interface 0. The diff fixes that in the driver. 781a782,784 > if((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56)) > dev->pa

Re: [linux-usb-devel] Problems with USB port and a dongle + recompilation with USB support

2007-02-20 Thread Thibaud Hulin
Hi, > I don't know what you did wrong. CONFIG_4KSTACKS is that last item on the > Kernel Hacking menu when you run "make menuconfig". I've changed too the file drivers/usb/core/usb.h to HZ*60. Then, I've verified that CONFIG_4KSTACKS is not active in my .config. So, it's good, because it mean

[linux-usb-devel] [PATCH] asix.c - Add JVC-PRX1 ids

2007-02-20 Thread David Hollis
Add device IDs for the JVC-PRX1 port replicator. Additionally cleans up the tabs on a few of other IDs in the list. Reported by: Reuben Thomas <[EMAIL PROTECTED]> Signed-off-by: David Hollis <[EMAIL PROTECTED]> -- David Hollis <[EMAIL PROTECTED]> --- a/drivers/usb/net/asix.c 2007-02-20 07:57:4

[linux-usb-devel] MIMEDefang Notification

2007-02-20 Thread MIMEDefang
An e-mail you sent with message-id NOQUEUE was modified by our mail scanning software. The recipients were: <[EMAIL PROTECTED]> Here are the details of the modification: The attachment 'website.pif' was deleted due to a virus. The output of the virus scanner was: Found the W32/Sality.x