]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
x86: qemu: Implement PIRQ routing
authorBin Meng <bmeng.cn@gmail.com>
Wed, 3 Jun 2015 01:20:06 +0000 (09:20 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 20:48:16 +0000 (22:48 +0200)
Support QEMU PIRQ routing via device tree on both i440fx and q35
platforms. With this commit, Linux booting on QEMU from U-Boot
has working ATA/SATA, USB and ethernet.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/coreboot/coreboot.c
arch/x86/cpu/qemu/qemu.c
arch/x86/dts/qemu-x86_i440fx.dts
arch/x86/dts/qemu-x86_q35.dts
configs/qemu-x86_defconfig
include/configs/qemu-x86.h

index c4cac045b2906df2a556675b286a229a5bde6765..0e9f15fef68a7eec36421645e2af511280cd05fb 100644 (file)
@@ -89,3 +89,8 @@ int misc_init_r(void)
 {
        return 0;
 }
+
+int arch_misc_init(void)
+{
+       return 0;
+}
index 0f984768e9cb96b59075284c8918ec943235fc16..930d2b6c9d11f2e6d6be03c9db9d7875560d51a6 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include <common.h>
+#include <asm/irq.h>
 #include <asm/post.h>
 #include <asm/processor.h>
 
@@ -35,3 +36,10 @@ void reset_cpu(ulong addr)
        /* cold reset */
        x86_full_reset();
 }
+
+int arch_misc_init(void)
+{
+       pirq_init();
+
+       return 0;
+}
index 4cf843b813447dc1d6767294bead7fec5f580f8f..557428a459c6d55765c14d75a351a4b8f354ef7c 100644 (file)
@@ -6,6 +6,8 @@
 
 /dts-v1/;
 
+#include <dt-bindings/interrupt-router/intel-irq.h>
+
 /include/ "skeleton.dtsi"
 /include/ "serial.dtsi"
 
                ranges = <0x02000000 0x0 0xc0000000 0xc0000000 0 0x10000000
                        0x42000000 0x0 0xd0000000 0xd0000000 0 0x10000000
                        0x01000000 0x0 0x2000 0x2000 0 0xe000>;
+
+               irq-router@1,0 {
+                       reg = <0x00000800 0 0 0 0>;
+                       compatible = "intel,irq-router";
+                       intel,pirq-config = "pci";
+                       intel,pirq-link = <0x60 4>;
+                       intel,pirq-mask = <0x0e40>;
+                       intel,pirq-routing = <
+                               /* PIIX UHCI */
+                               PCI_BDF(0, 1, 2) INTD PIRQD
+                               /* e1000 NIC */
+                               PCI_BDF(0, 3, 0) INTA PIRQC
+                       >;
+               };
        };
 
 };
index 02a483cd37aa2d02f4edec07e6e83a8140017b5e..c259f2a3d296d2f8a40ee8db3801262cc16424d6 100644 (file)
@@ -6,6 +6,18 @@
 
 /dts-v1/;
 
+#include <dt-bindings/interrupt-router/intel-irq.h>
+
+/* ICH9 IRQ router has discrete PIRQ control registers */
+#undef PIRQE
+#undef PIRQF
+#undef PIRQG
+#undef PIRQH
+#define PIRQE  8
+#define PIRQF  9
+#define PIRQG  10
+#define PIRQH  11
+
 /include/ "skeleton.dtsi"
 /include/ "serial.dtsi"
 
                ranges = <0x02000000 0x0 0xc0000000 0xc0000000 0 0x10000000
                        0x42000000 0x0 0xd0000000 0xd0000000 0 0x10000000
                        0x01000000 0x0 0x2000 0x2000 0 0xe000>;
+
+               irq-router@1f,0 {
+                       reg = <0x0000f800 0 0 0 0>;
+                       compatible = "intel,irq-router";
+                       intel,pirq-config = "pci";
+                       intel,pirq-link = <0x60 8>;
+                       intel,pirq-mask = <0x0e40>;
+                       intel,pirq-routing = <
+                               /* e1000 NIC */
+                               PCI_BDF(0, 2, 0) INTA PIRQG
+                               /* ICH9 UHCI */
+                               PCI_BDF(0, 29, 0) INTA PIRQA
+                               PCI_BDF(0, 29, 1) INTB PIRQB
+                               PCI_BDF(0, 29, 2) INTC PIRQC
+                               /* ICH9 EHCI */
+                               PCI_BDF(0, 29, 7) INTD PIRQD
+                               /* ICH9 SATA */
+                               PCI_BDF(0, 31, 2) INTA PIRQA
+                       >;
+               };
        };
 
 };
index 0959a98283f5d77fe5f46562c3c53f6f8e2883d4..901cbd72a9d176f958d6ed5deecffd7d5694b0f8 100644 (file)
@@ -2,6 +2,7 @@ CONFIG_X86=y
 CONFIG_VENDOR_EMULATION=y
 CONFIG_DEFAULT_DEVICE_TREE="qemu-x86_i440fx"
 CONFIG_TARGET_QEMU_X86=y
+CONFIG_GENERATE_PIRQ_TABLE=y
 CONFIG_CMD_NET=y
 CONFIG_OF_CONTROL=y
 CONFIG_VIDEO_VESA=y
index d01936b47b4b4778cab21530dc3132e447dfabd9..78c296f5ad6ac3f16e41e54aafb1c7b29ec0bba7 100644 (file)
@@ -14,6 +14,7 @@
 #include <configs/x86-common.h>
 
 #define CONFIG_SYS_MONITOR_LEN         (1 << 20)
+#define CONFIG_ARCH_MISC_INIT
 
 #define CONFIG_X86_SERIAL