* linuxbios@mikebell.org linuxbios@mikebell.org [040916 05:14]:
On Wed, Sep 15, 2004 at 10:47:21PM +0900, linuxbios@mikebell.org wrote:
Is it as simple as adding the missing pci_assign_irqs for device 0x13?
Anyone who's curious, this would seem to have done it.
Sorry I don't have values for B, C and D.
They are often cyclic.
In case anyone can explain this in more detail: How tight are these interrupt numbers connected to the real hardware. In a system with lots of local and IOi APICs the wiring should be purely virtual anyways, should it not?
static const unsigned char usbIrqs[4] = { 11, 10, 12, 5 }; static const unsigned char enetIrqs[4] = { 11, 5, 10, 12 }; static const unsigned char slotIrqs[4] = { 10, 12, 5, 11 }; +static const unsigned char slot2Irqs[4] = { 11, 0, 0, 0 }; static const unsigned char firewireIrqs[4] = {10, 12, 5, 11 }; static const unsigned char vt8235Irqs[4] = { 5,10, 12, 11 }; static const unsigned char vgaIrqs[4] = { 11, 5, 12, 10 };
Stefan