Re: [Qemu-devel] [PATCH] IRQ sharing in PCI bus

2006-09-24 Thread Blue Swirl
As mentioned in the comments for the new code it looks like sparc64 IRQs are totally busted. I couldn't figure out out what the correct implementation was supposed to be, so I made something up. Sparc64 IRQs are completely unimplemented. I've postponed that until I get OpenBIOS to the point

[Qemu-devel] [PATCH] IRQ sharing in PCI bus

2006-09-23 Thread andrzej zaborowski
This allows multiple PCI devices on a bus to use the same IRQ lines. The signals from all devices are ORed. It will only work if the guest OS'es drivers supports that. Linux guest required that to have scsi disks and usb devices working at the same time on an emulated Versatile PB machine.

Re: [Qemu-devel] [PATCH] IRQ sharing in PCI bus

2006-09-23 Thread Fabrice Bellard
andrzej zaborowski wrote: This allows multiple PCI devices on a bus to use the same IRQ lines. The signals from all devices are ORed. It will only work if the guest OS'es drivers supports that. Linux guest required that to have scsi disks and usb devices working at the same time on an emulated

Re: [Qemu-devel] [PATCH] IRQ sharing in PCI bus

2006-09-23 Thread Paul Brook
On Saturday 23 September 2006 18:38, Fabrice Bellard wrote: andrzej zaborowski wrote: This allows multiple PCI devices on a bus to use the same IRQ lines. The signals from all devices are ORed. It will only work if the guest OS'es drivers supports that. Linux guest required that to have

Re: [Qemu-devel] [PATCH] IRQ sharing in PCI bus

2006-09-23 Thread Fabrice Bellard
Paul Brook wrote: On Saturday 23 September 2006 18:38, Fabrice Bellard wrote: andrzej zaborowski wrote: This allows multiple PCI devices on a bus to use the same IRQ lines. The signals from all devices are ORed. It will only work if the guest OS'es drivers supports that. Linux guest