aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/include
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-09-30 22:40:53 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-10-02 20:13:55 +0000
commit85b6c66c834502989bbbcb2a696452b72ce4f1aa (patch)
tree72ce63bfdfa1f87455d222c863cc08fa698fb3e1 /src/soc/intel/skylake/include
parent0b4298c24288f65a6b315864bf5b44ef54cfb30b (diff)
intel/skylake: Refactor IRQ assignments
When creating the IRQ routing, referenced device and function number are always of the same PCI device. Change-Id: Ifc4795245187f8d70650242a56e6ce771ef2167a Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35735 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/skylake/include')
-rw-r--r--src/soc/intel/skylake/include/soc/interrupt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/skylake/include/soc/interrupt.h b/src/soc/intel/skylake/include/soc/interrupt.h
index 015ea76ec6..bc654981f1 100644
--- a/src/soc/intel/skylake/include/soc/interrupt.h
+++ b/src/soc/intel/skylake/include/soc/interrupt.h
@@ -31,11 +31,11 @@
#define PCH_PHRC 7
#define PCH_MAX_IRQ_CONFIG 8
-#define DEVICE_INT_CONFIG(dev, func, line, irqno) {\
- .Device = dev, \
- .Function = func, \
- .IntX = line, \
- .Irq = irqno }
+#define DEVICE_INT_CONFIG(devfn, line, irqno) {\
+ .Device = PCI_SLOT(devfn), \
+ .Function = PCI_FUNC(devfn), \
+ .IntX = (line), \
+ .Irq = (irqno) }
#define no_int 0
#define int_A 1