summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/irq.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-01-19 21:32:27 -0700
committerBin Meng <bmeng.cn@gmail.com>2016-01-24 12:07:18 +0800
commitd3b884b294f1927d6599ddb243a7e6c7bb9aaef3 (patch)
treec942eb4f11d008a6e64ee026aac1dba9e8453db7 /arch/x86/include/asm/irq.h
parent12d6929e1f70da7bdbd7ac1de3db33fdff50a716 (diff)
downloadu-boot-imx-d3b884b294f1927d6599ddb243a7e6c7bb9aaef3.zip
u-boot-imx-d3b884b294f1927d6599ddb243a7e6c7bb9aaef3.tar.gz
u-boot-imx-d3b884b294f1927d6599ddb243a7e6c7bb9aaef3.tar.bz2
dm: x86: Add a common PIRQ init function
Most x86 interrupt drivers will want to use the standard PIRQ routing and table setup. Put this code in a common function so it can be used by those drivers that want it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include/asm/irq.h')
-rw-r--r--arch/x86/include/asm/irq.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/include/asm/irq.h b/arch/x86/include/asm/irq.h
index 74da66e..46e1c31 100644
--- a/arch/x86/include/asm/irq.h
+++ b/arch/x86/include/asm/irq.h
@@ -65,4 +65,11 @@ struct pirq_routing {
*/
void cpu_irq_init(void);
+/**
+ * irq_router_common_init() - Perform common x86 interrupt init
+ *
+ * This creates the PIRQ routing table and routes the IRQs
+ */
+int irq_router_common_init(struct udevice *dev);
+
#endif /* _ARCH_IRQ_H_ */