RE: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Arnon Gilboa
Thanks, Paul. The attached updated patch seems to fix this bug. Comments? -Original Message- From: Paul Brook [mailto:[EMAIL PROTECTED] Sent: Monday, October 22, 2007 1:53 PM To: qemu-devel@nongnu.org Cc: Arnon Gilboa Subject: Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers

RE: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Arnon Gilboa
Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support So this is isochronous for usb 2.0? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arnon Gilboa Sent: Monday, October 22, 2007 12:19 PM To: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH,

Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Hetz Ben Hamo
Hi Itamar, On 22/10/2007, Itamar Heim <[EMAIL PROTECTED]> wrote: > > So this is isochronous for usb 2.0? > last I checked, OHCI is for USB 1.x, EHCI was for 2.0. Thanks, Hetz -- Skepticism is the lazy person's default position. my blog (hebrew): http://benhamo.org

RE: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Itamar Heim
So this is isochronous for usb 2.0? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arnon Gilboa Sent: Monday, October 22, 2007 12:19 PM To: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support Hi, The attached

Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Paul Brook
On Monday 22 October 2007, Arnon Gilboa wrote: > Hi, > > The attached patch adds isochronous transfers support to the OHCI > emulation, similarly to the UHCI patch pushed two weeks ago. > +uint16_t offset[8]; > +}; > +static inline int ohci_read_iso_td(uint32_t addr, struct ohci_iso_td *td) >

Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Michal Schulz
On Monday 22 October 2007, Arnon Gilboa wrote: > Good idea Let me quote my ancient email (sent on this list on 29.03.2007 23:34): > Hello. I've made small patch for qemu, which adds a new command line > option - > the "-ohci". It instructs qemu that the OHCI controller should be > emulated inste

RE: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Arnon Gilboa
Good idea -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dor Laor Sent: Monday, October 22, 2007 12:45 PM To: qemu-devel@nongnu.org Subject: Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support Arnon Gilboa wrote: > > Hi, &

Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Dor Laor
Arnon Gilboa wrote: Hi, The attached patch adds isochronous transfers support to the OHCI emulation, similarly to the UHCI patch pushed two weeks ago. In order to use ohci instead of uhci, replace the following line in pc.c: usb_uhci_piix3_init(pci_bus, piix3_devfn + 2); With: usb_ohci_init_p

[Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Arnon Gilboa
Hi, The attached patch adds isochronous transfers support to the OHCI emulation, similarly to the UHCI patch pushed two weeks ago. In order to use ohci instead of uhci, replace the following line in pc.c: usb_uhci_piix3_init(pci_bus, piix3_devfn + 2); With: usb_ohci_init_pci(pci_bus, 3, piix3_de