PCI devices behind bridges in APIC Full Table mode
John Baldwin
jhb at FreeBSD.org
Fri Apr 18 11:37:57 PDT 2003
On 18-Apr-2003 Cagle, John (ISS-Houston) wrote:
> With 4.8-stable, I'm having a problem with IRQ routing when a device is
> behind a PCI-to-PCI bridge in a PCI slot (like a dual-port NIC), when
> using APIC "full-table" mode. It appears that the kernel is not looking
> at the mptable to determine the proper interrupt pin routing for these
> devices.
>
> Does anyone know if FreeBSD has support for this? Can someone direct me
> to the area of the kernel to examine?
Eyuck. The APIC PCI interrupt routing is a hack in 4.x (and still is in
current as well). It is spread between sys/i386/i386/mpapic.c and this
evilness in sys/pci/pci.c:
static struct pci_devinfo *
pci_readcfg(pcicfgregs *probe)
{
...
#ifdef APIC_IO
if (cfg->intpin != 0) {
int airq;
airq = pci_apic_irq(cfg->bus, cfg->slot, cfg->intpin);
...
#endif /* APIC_IO */
--
John Baldwin <jhb at FreeBSD.org> <>< http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve!" - http://www.FreeBSD.org/
More information about the freebsd-smp
mailing list