1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/init.h>
5 #include <linux/types.h>
9 int pcibios_map_platform_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
13 /* The complication here is that the PCI IRQ lines from the Cayman's 2
14 5V slots get into the CPU via a different path from the IRQ lines
15 from the 3 3.3V slots. Thus, we have to detect whether the card's
16 interrupts go via the 5V or 3.3V path, i.e. the 'bridge swizzling'
17 at the point where we cross from 5V to 3.3V is not the normal case.
19 The added complication is that we don't know that the 5V slots are
20 always bus 2, because a card containing a PCI-PCI bridge may be
21 plugged into a 3.3V slot, and this changes the bus numbering.
23 Also, the Cayman has an intermediate PCI bus that goes a custom
24 expansion board header (and to the secondary bridge). This bus has
25 never been used in practice.
27 The 1ary onboard PCI-PCI bridge is device 3 on bus 0
28 The 2ary onboard PCI-PCI bridge is device 0 on the 2ary bus of
38 while (dev
->bus
->number
> 0) {
40 slot
= path
[i
].slot
= PCI_SLOT(dev
->devfn
);
41 pin
= path
[i
].pin
= pci_swizzle_interrupt_pin(dev
, pin
);
44 if (i
> 3) panic("PCI path to root bus too long!\n");
47 slot
= PCI_SLOT(dev
->devfn
);
48 /* This is the slot on bus 0 through which the device is eventually
51 /* Now work back up. */
52 if ((slot
< 3) || (i
== 0)) {
53 /* Bus 0 (incl. PCI-PCI bridge itself) : perform the final
55 result
= IRQ_INTA
+ pci_swizzle_interrupt_pin(dev
, pin
) - 1;
61 panic("PCI expansion bus device found - not handled!\n");
68 /* 'pin' was swizzled earlier wrt slot, don't do it again. */
69 result
= IRQ_P2INTA
+ (pin
- 1);
71 /* IRQ for 2ary PCI-PCI bridge : unused */