summaryrefslogtreecommitdiffstats
path: root/sys/sparc64/include
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/include
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/include')
-rw-r--r--sys/sparc64/include/ofw_bus.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sparc64/include/ofw_bus.h b/sys/sparc64/include/ofw_bus.h
index 2f67b24..9f07183 100644
--- a/sys/sparc64/include/ofw_bus.h
+++ b/sys/sparc64/include/ofw_bus.h
@@ -32,8 +32,8 @@
#define ORIR_NOTFOUND 0xffffffff
typedef int obr_callback_t(phandle_t, u_int8_t *, int, u_int8_t *, int,
- u_int8_t **, int *);
+ u_int8_t **, int *, void *);
-u_int32_t ofw_bus_route_intr(phandle_t, int, obr_callback_t *);
+u_int32_t ofw_bus_route_intr(phandle_t, int, obr_callback_t *, void *);
#endif /* !_MACHINE_OFW_BUS_H_ */
OpenPOWER on IntegriCloud