summaryrefslogtreecommitdiffstats
path: root/sys/sparc64/pci/psychovar.h
diff options
context:
space:
mode:
authortmm <tmm@FreeBSD.org>2003-05-30 20:48:05 +0000
committertmm <tmm@FreeBSD.org>2003-05-30 20:48:05 +0000
commiteb82b142f6d42d9f687e455b8122c5bbb26233d9 (patch)
treeb3748dbbeeb2759bf1814445e13fe3f7a6e03800 /sys/sparc64/pci/psychovar.h
parentd48f3818ad991429ac22904f641e2aaa48eeb89a (diff)
downloadFreeBSD-src-eb82b142f6d42d9f687e455b8122c5bbb26233d9.zip
FreeBSD-src-eb82b142f6d42d9f687e455b8122c5bbb26233d9.tar.gz
Fix interrupt assignment for non-builtin PCI devices on e450s.
This machine uses a non-standard scheme to specify the interrupts to be assigned for devices in PCI slots; instead of giving the INO or full interrupt number (which is done for the other devices in this box), the firmware interrupt properties contain intpin numbers, which have to be swizzled as usual on PCI-PCI bridges; however, the PCI host bridge nodes have no interrupt map, so we need to guess the correct INO by slot number of the device or the closest PCI-PCI bridge leading to it, and the intpin. To do this, this fix makes the following changes: - Add a newbus method for sparc64 PCI host bridges to guess the INO, and glue code in ofw_pci_orb_callback() to invoke it based on a new quirk entry. The guessing is only done for interrupt numbers too low to contain any IGN found on e450s. - Create another new quirk entry was created to prevent mapping of EBus interrupts at PCI level; the e450 has full INOs in the interrupt properties of EBus devices, so trying to remap them could cause problems. - Set both quirk entries for e450s; remove the no-swizzle entry. - Determine the psycho half (bus A or B) a driver instance manages in psycho_attach() - Implement the new guessing method for psycho, using the slot number, psycho half and property value (intpin). Thanks go to the testers, especially Brian Denehy, who tested many kernels for me until I had found the right workaround. Tested by: Brian Denehy <B.Denehy@90east.com>, jake, fenner, Marius Strobl <marius@alchemy.franken.de>, Marian Dobre <mari@onix.ro> Approved by: re (scottl)
Diffstat (limited to 'sys/sparc64/pci/psychovar.h')
-rw-r--r--sys/sparc64/pci/psychovar.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/sparc64/pci/psychovar.h b/sys/sparc64/pci/psychovar.h
index 3b8fa73..2a77b15 100644
--- a/sys/sparc64/pci/psychovar.h
+++ b/sys/sparc64/pci/psychovar.h
@@ -61,6 +61,9 @@ struct psycho_softc {
#define PSYCHO_MODE_SABRE 1
#define PSYCHO_MODE_PSYCHO 2
+ /* Bus A or B of a psycho pair? */
+ int sc_half;
+
struct iommu_state *sc_is;
u_int32_t sc_dvmabase;
OpenPOWER on IntegriCloud