Re: [linux-usb-devel] USB "client" mode support?

2006-01-29 Thread David Brownell
On Sunday 29 January 2006 7:43 am, Libor Vanek wrote: > > You need special hardware to be a usb "client" (we call it "gadget") > > mode. Without that, it will not work. > > OK, I supposed something like that. What kind of HW it should be (read - > do you recommend some chip(set)?)? Start readin

Re: [linux-usb-devel] USB "client" mode support?

2006-01-29 Thread Libor Vanek
Greg KH wrote: On Sun, Jan 29, 2006 at 02:08:09AM +0100, Libor Vanek wrote: Hi, is there any way how can I switch/enable USB "client" mode? The idea is to connect 2 computers through USB and one (with modified Linux kernel) should report itself as mass storage device (I don't want "ethernet

Re: [linux-usb-devel] USB "client" mode support?

2006-01-28 Thread Greg KH
On Sun, Jan 29, 2006 at 02:08:09AM +0100, Libor Vanek wrote: > Hi, > is there any way how can I switch/enable USB "client" mode? The idea is > to connect 2 computers through USB and one (with modified Linux kernel) > should report itself as mass storage device (I don't want "ethernet over > USB/

[linux-usb-devel] USB "client" mode support?

2006-01-28 Thread Libor Vanek
Hi, is there any way how can I switch/enable USB "client" mode? The idea is to connect 2 computers through USB and one (with modified Linux kernel) should report itself as mass storage device (I don't want "ethernet over USB/FireWire" - using mass storage device you can boot from "client" mach

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-22 Thread David Brownell
On the other hand, I'm looking forward to seeing Alan's code. It should be a bit more usable "out of the box" for talking to MSFT hosts. That's the reason I have chosen to implement mass storage - I need to be able to demonstrate the device with a Windows host and mass storage is the only useful

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-21 Thread David Brownell
Alan Stern wrote: On Wed, 20 Aug 2003, David Brownell wrote: When enough such drivers are available, we might want to assemble them into multi-function devices. PXA based gadgets could very easily talk Ethernet, usb-storage, TTY, and other device protocols all at the same time! If there are en

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-20 Thread Alan Stern
On Wed, 20 Aug 2003, David Brownell wrote: > When enough such drivers are available, we might want to assemble > them into multi-function devices. PXA based gadgets could very > easily talk Ethernet, usb-storage, TTY, and other device protocols > all at the same time! If there are enough endpoin

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-20 Thread Greg KH
On Wed, Aug 20, 2003 at 10:31:53AM +0100, Julian Back wrote: > >There used to be a "generic" usb-serial driver that came included with > >all Windows systems (back around Win2k time). All that you had to do > >was modify a .inf file to add some product and vendor ids to it in order > >to have a wo

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-20 Thread Julian Back
Greg KH wrote: On Tue, Aug 19, 2003 at 08:51:05AM +0100, Julian Back wrote: David Brownell wrote: Julian Back wrote: My mass storage driver is intended as a demonstration so I was planning to implement it as a user application using the GadgetFS, is there any reason (other than performance) w

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-19 Thread Greg KH
On Tue, Aug 19, 2003 at 08:51:05AM +0100, Julian Back wrote: > David Brownell wrote: > >Julian Back wrote: > > > >> > >>My mass storage driver is intended as a demonstration so I was > >>planning to implement it as a user application using the GadgetFS, is > >>there any reason (other than perform

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-19 Thread Julian Back
David Brownell wrote: Julian Back wrote: My mass storage driver is intended as a demonstration so I was planning to implement it as a user application using the GadgetFS, is there any reason (other than performance) why I shouldn't do that? Another demonstration would of course be run NFS in t

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-18 Thread David Brownell
Julian Back wrote: My mass storage driver is intended as a demonstration so I was planning to implement it as a user application using the GadgetFS, is there any reason (other than performance) why I shouldn't do that? Another demonstration would of course be run NFS in the device, accessing the

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-18 Thread Alan Stern
On Mon, 18 Aug 2003, Julian Back wrote: > Hi, > > I'm writing a USB Device Controller driver for the onboard UDC of Renesas SuperH > devices (specifically the SH7705 but should also work on SH7727). When I have > got that working I was also planning to write a USB Mass-Storage gadget driver >

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-18 Thread Julian Back
Hi, I'm writing a USB Device Controller driver for the onboard UDC of Renesas SuperH devices (specifically the SH7705 but should also work on SH7727). When I have got that working I was also planning to write a USB Mass-Storage gadget driver to sit on top of it. I would be starting the mass s

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-18 Thread David Brownell
agikor M wrote: Hi,David I need to implement usb client(such as a mass-storage) on PXA255 based on linux-2.4.18-rmk7-pxa3.But I have no idea about how to start it.Can you help me? There are some existing drivers to look at for examples of driver structure and how to talk through the "gadget" API

Re: [linux-usb-devel] usb client on PXA255,Please help me

2003-08-18 Thread Alan Stern
On Mon, 18 Aug 2003, agikor M wrote: > Hi,David > I need to implement usb client(such as a mass-storage) on PXA255 based on > linux-2.4.18-rmk7-pxa3.But I have no idea about how to start it.Can you > help me? > > Someone told me that the code(usb_ctl.c,usb_ep0.c...) in arch/arm/mach-pxa/ > is

[linux-usb-devel] usb client on PXA255,Please help me

2003-08-17 Thread agikor M
Hi,David I need to implement usb client(such as a mass-storage) on PXA255 based on linux-2.4.18-rmk7-pxa3.But I have no idea about how to start it.Can you help me? Someone told me that the code(usb_ctl.c,usb_ep0.c...) in arch/arm/mach-pxa/ is a old stuff and you are maintaining a new gadget.But

RE: [linux-usb-devel] usb client

2003-07-21 Thread Toly Kotlarsky
Thank you, Dave, I'll look into it. -- Toly -Original Message- From: David Brownell [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2003 12:34 PM To: Toly Kotlarsky Cc: '[EMAIL PROTECTED]' Subject: Re: [linux-usb-devel] usb client Toly Kotlarsky wrote: > Hi, >

Re: [linux-usb-devel] usb client

2003-07-21 Thread David Brownell
Toly Kotlarsky wrote: Hi, I need to implement the usb HID and mass-storage client on Intel PXA2xx running Linux 2.4.19-rmk2-pxa2. Looks to me that the kernel configuration supports only the usb host-controller, but not the client. I hope I am wrong... See http://www.linux-usb.org/gadget/ ... th

RE: [linux-usb-devel] usb client

2003-07-21 Thread Toly Kotlarsky
' Subject: Re: [linux-usb-devel] usb client On Mon, Jul 21, 2003 at 10:28:16AM -0400, Toly Kotlarsky wrote: > I need to implement the usb HID and mass-storage client on Intel > PXA2xx running Linux 2.4.19-rmk2-pxa2. Looks to me that the kernel > configuration supports only the usb h

Re: [linux-usb-devel] usb client

2003-07-21 Thread Robert Schwebel
On Mon, Jul 21, 2003 at 10:28:16AM -0400, Toly Kotlarsky wrote: > I need to implement the usb HID and mass-storage client on Intel > PXA2xx running Linux 2.4.19-rmk2-pxa2. Looks to me that the kernel > configuration supports only the usb host-controller, but not the > client. I hope I am wrong...

[linux-usb-devel] usb client

2003-07-21 Thread Toly Kotlarsky
Hi, I need to implement the usb HID and mass-storage client on Intel PXA2xx running Linux 2.4.19-rmk2-pxa2. Looks to me that the kernel configuration supports only the usb host-controller, but not the client. I hope I am wrong... Could someone please provide any guidance on where I should start