Re: [linux-usb-devel] new unusual_devs entry

2005-09-21 Thread Phil Dibowitz
Stefan Werner wrote: > Hi, > I had to add the following code to unusual_devs in order to get my device > (flash mp3 player) working! I hope it is correct, but works for me like a > charm! > > UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, > "TrekStor", > "i.Beat Jo

[linux-usb-devel] Regarding wMaxPacketSize

2005-09-21 Thread Savita H. Neelannava
Hi All, I have a Scanner device which has 3 Endpoints. wMaxPacketSize of all 3 is 0x200. In the driver also i was allocating memory of 0x200 bytes for each Endpoint. i have bulk-in Endpoint where i will get scanned image data. Earlier i was recieving this data in chunks of 0x200 bytes. But the

[linux-usb-devel] bmAttributes USB_CONFIG_ATT_WAKEUP bit significance

2005-09-21 Thread Greg Lee
What is the significance of the bmAttributes USB_CONFIG_ATT_WAKEUP bit? I recently received a firmware update to one of the devices I use and now it does not work with my 2.4.19 and 2.4.31 based embedded targets, however, it does work on a 2.6.12 based PC system. The symptom that I am seeing on m

Re: [linux-usb-devel] Non-pci ehci

2005-09-21 Thread Matt Porter
On Wed, Sep 21, 2005 at 07:20:38PM -0700, Vivek wrote: > Matt > > Thanks for pointing me to the template. Is this template available for usb > driver for linux 2.6.12 kernel ? BTW, I am using linux 2.6.12 kernel. The The patch was just made/posted against the latest version of Linus' git tree so

RE: [linux-usb-devel] Non-pci ehci

2005-09-21 Thread Vivek
Matt Thanks for pointing me to the template. Is this template available for usb driver for linux 2.6.12 kernel ? BTW, I am using linux 2.6.12 kernel. The usb host controller is from synopsys. I am not quite sure if ohci/ehci are independent of each other in this core. Regards Vivek -Original

Re: [linux-usb-devel] Non-pci ehci

2005-09-21 Thread Matt Porter
On Wed, Sep 21, 2005 at 12:56:22PM -0700, Vivek wrote: > Hi > > I am porting linux2.6 usb driver to our custom platform consisting of a > mips processor. The mips processor has a in-core usb 2.0 host controller > which supports ehci and ohci. The operational registers for ehci and ohci > are at c

[linux-usb-devel] g_ether over pxa27x_udc (no bulk transfers)

2005-09-21 Thread Harold Toler
I am attempting to get g_ether running on a Triton270 (small PXA270 module). I have backported pxa27x_udc to the supplied 2.6.10 based kernel, and ep0 appears to be working correctly. A WinXP box sees it as a RNDIS device. I cannot, however, enable the device in WinXP. I can ifconfig on the PXA

[linux-usb-devel] Non-pci ehci

2005-09-21 Thread Vivek
Hi I am porting linux2.6 usb driver to our custom platform consisting of a mips processor. The mips processor has a in-core usb 2.0 host controller which supports ehci and ohci. The operational registers for ehci and ohci are at certain set locations in the core. I want to first port ehci driver

[linux-usb-devel] new unusual_devs entry

2005-09-21 Thread Stefan Werner
Hi, I had to add the following code to unusual_devs in order to get my device (flash mp3 player) working! I hope it is correct, but works for me like a charm! UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, "TrekStor", "i.Beat Joy 2.0", US_SC_DEVICE,

[linux-usb-devel] Re: [patch 2.6.14-rc1, 3/5] remove usb_suspend_device() parameter

2005-09-21 Thread Alan Stern
On Wed, 21 Sep 2005, David Brownell wrote: > Another way to look at it: "hub" is the only driver in the whole > tree that's so confused about the difference between "device" and > "interface". It's not IMO worth the pile of special cases needed to > maintain that confusion, scattering hub class

Re: [linux-usb-devel] Re: CDC-ACM class driver/driver development

2005-09-21 Thread Randy.Dunlap
On Wed, 21 Sep 2005, David Kubicek wrote: > On Wed, Sep 21, 2005 at 06:32:05PM +0200, Oliver Neukum wrote: > > Am Mittwoch, 21. September 2005 14:51 schrieb David Kubicek: > > > Hello all, > > > > > > I am sorry for being so slow with the new patch - didn't really have > > > time for hacking on th

Re: [linux-usb-devel] Re: CDC-ACM class driver/driver development

2005-09-21 Thread David Kubicek
On Wed, Sep 21, 2005 at 06:32:05PM +0200, Oliver Neukum wrote: > Am Mittwoch, 21. September 2005 14:51 schrieb David Kubicek: > > Hello all, > > > > I am sorry for being so slow with the new patch - didn't really have > > time for hacking on that last month. This patch is against the latest > > st

[linux-usb-devel] Re: [patch 2.6.14-rc1, 3/5] remove usb_suspend_device() parameter

2005-09-21 Thread David Brownell
> > > ... Suspending an external hub's interface won't > > > have any effect on the downstream ports; they will be affected only when > > > you call usb_suspend_device for the children. > > > > True, but that must always have happened before the interface can suspend > > in any case... > > Not so

Re: [linux-usb-devel] Re: CDC-ACM class driver/driver development

2005-09-21 Thread David Kubicek
On Wed, Aug 31, 2005 at 02:02:23PM +0200, Oliver Neukum wrote: > On Wed, 31 Aug 2005, Petr Pisar wrote: > > Oliver Neukum neukum.org> writes: > > > > > Do you happen to have an URL? > > > > > I'd like to include it in 2.6.14. > > > > > > > > > > > informed. The latest version is at > > > > [htt

Re: [linux-usb-devel] Powering off an USB device

2005-09-21 Thread Alan Stern
On Tue, 20 Sep 2005, Greg KH wrote: > On Mon, Sep 19, 2005 at 01:40:50PM +0200, Clemens Ladisch wrote: > > Powering off seems to work fine (when I throw in an extra > > CLEAR_FEATURE(ENABLE) for UHCI controllers), but USB drivers don't get > > disconnected. So far, this program serves as a tool f

RE: [linux-usb-devel] A better way to load the pheripheral controller driver during developement time?

2005-09-21 Thread Alan Stern
On Wed, 21 Sep 2005, Andy Chuo wrote: > Hi Alan, > > Thanks for the info. So far, I can't change the kernel to 2.6, any chance > for this to happen on 2.4.21? Inside my init() section I basically did three > things: > 1. request_mem_region() > 2. initialize driver data. > 3. request irq. > > Th

Re: [linux-usb-devel] High speed usb device attached to ohci hub

2005-09-21 Thread Jason D. Sommerville
Sorry about the previous message: what I meant to send follows... On Monday 19 September 2005 01:47 pm, you wrote: > > No, I mean full speed as opposed to low speed. It never connects as a > > high speed device. (Otherwise I'd just use the working plug and not > > bother you guys!) > > Oh, okay.

Re: [linux-usb-devel] High speed usb device attached to ohci hub

2005-09-21 Thread Jason D. Sommerville
On Monday 19 September 2005 01:47 pm, you wrote: > On Mon, 19 Sep 2005, Jason D. Sommerville wrote: > > On Monday 19 September 2005 09:09 am, you wrote: > > > > I've done a little more testing, and if I plug the drive into ports > > > > 0,1 or 4 (my own arbitrary numbering) it is recognized as a US

Re: [linux-usb-devel] USB Serial adapter 1.1 connected to a 2.0 Hub - usb_submit_urb fails with error -28

2005-09-21 Thread Greg KH
On Wed, Sep 21, 2005 at 06:14:44PM +0530, [EMAIL PROTECTED] wrote: > > > Hello Greg , > Once again thanks for the reply . This time thanks for your sympathies > too :) > > I did try with 2.6.12 and found this is fixed . Great. I recommend you stick with 2.6.13 or greater for your development.

RE: [linux-usb-devel] USB Serial adapter 1.1 connected to a 2.0 Hub - usb_submit_urb fails with error -28

2005-09-21 Thread monali.katkar
Hello Greg , Once again thanks for the reply . This time thanks for your sympathies too :) I did try with 2.6.12 and found this is fixed . Regards, Monali. > -Original Message- > From: Greg KH [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 21, 2005 5:52 PM > To: Monali Vishnu

Re: [linux-usb-devel] USB Serial adapter 1.1 connected to a 2.0 Hub - usb_submit_urb fails with error -28

2005-09-21 Thread Greg KH
On Wed, Sep 21, 2005 at 05:26:21PM +0530, [EMAIL PROTECTED] wrote: > > Hello Greg , > Thanks for the reply . > > The driver in question is still in development stages and is yet not > released . > I am developing and testing this on 2.6.9 kernel My sympathies. > I have one more query - > With t

RE: [linux-usb-devel] USB Serial adapter 1.1 connected to a 2.0 Hub - usb_submit_urb fails with error -28

2005-09-21 Thread monali.katkar
Hello Greg , Thanks for the reply . The driver in question is still in development stages and is yet not released . I am developing and testing this on 2.6.9 kernel I have one more query - With the driver open() having error handling code for usb_submit_urb as result = usb_subm

[linux-usb-devel] FW: USB Serial adapter 1.1 connected to a 2.0 Hub - usb_submit_urb fails with error -28

2005-09-21 Thread monali.katkar
Hello all , Got the mailing list id wrong in my post. Forwarding reply of Alan. This may sometime help somebody ,when google engine gets this in the search. Regards, Monali. -Original Message- From: Alan Stern [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 20, 2005 7:41 PM To: Mo

[linux-usb-devel] Unable to initialize USB when device works at (or less than) 4MHZ clock speed

2005-09-21 Thread Yu Zhenshen
Hi I've been designing a USB device (P18F2455) to communicate with PC(running Linux OS), when the USB peripheral clock speed is 48MHZ and CPU works at 16MHZ, the device works fine, and the Enumeration process is very fast. But, if the CPU clock speed is changed to 4MHZ and the USB peripheral clo

Re: [linux-usb-devel] Re: experience/performance with ub (was Re: 2.6.14-rc1 load average calculation broken?)

2005-09-21 Thread Jan Dittmer
Pete Zaitcev wrote: > On Tue, 20 Sep 2005 23:03:30 +0200, Jan Dittmer <[EMAIL PROTECTED]> wrote: > > >>You got this mini performance test of mine? (100mb files) >>SD: SD-Card, HD: external 2.5" HD, IP: iPod Mini > > > I saw the version without the Mini when Mini was not available. > > >>