]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
x86: qemu: Turn on PCIe ECAM address range decoding on Q35
authorBin Meng <bmeng.cn@gmail.com>
Wed, 22 Jul 2015 08:21:14 +0000 (01:21 -0700)
committerLothar Waßmann <LW@KARO-electronics.de>
Wed, 9 Sep 2015 11:50:52 +0000 (13:50 +0200)
Turn on PCIe ECAM address range decoding on Q35.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/qemu/pci.c
arch/x86/include/asm/arch-qemu/qemu.h

index acbd9227479186450ccfd0483f176397fce8939c..2e944569b5be3da8d02e5182ee21c0b4cd9a8573 100644 (file)
@@ -90,6 +90,10 @@ int board_pci_post_scan(struct pci_controller *hose)
                xbcs = x86_pci_read_config16(PIIX_ISA, XBCS);
                xbcs |= APIC_EN;
                x86_pci_write_config16(PIIX_ISA, XBCS, xbcs);
+       } else {
+               /* Configure PCIe ECAM base address */
+               x86_pci_write_config32(PCI_BDF(0, 0, 0), PCIEX_BAR,
+                                      CONFIG_PCIE_ECAM_BASE | BAR_EN);
        }
 
        /*
index 8c8e4ac1f609416c3091ad9c421720134706191b..b67d3428ee69711f5e469aa70ebd13146e073fa7 100644 (file)
 #define IDE1_TIM               0x42
 #define IDE_DECODE_EN          (1 << 15)
 
+/* PCIe ECAM Base Address Register */
+#define PCIEX_BAR              0x60
+#define BAR_EN                 (1 << 0)
+
 /* I/O Ports */
 #define CMOS_ADDR_PORT         0x70
 #define CMOS_DATA_PORT         0x71