x86: Add the root-complex block to common intel registers
authorSimon Glass <sjg@chromium.org>
Sat, 12 Mar 2016 05:06:56 +0000 (22:06 -0700)
committerBin Meng <bmeng.cn@gmail.com>
Thu, 17 Mar 2016 02:27:24 +0000 (10:27 +0800)
This is similar to MCH in that it is used in various drivers. Add it to
the common header.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/x86/cpu/ivybridge/bd82x6x.c
arch/x86/cpu/ivybridge/lpc.c
arch/x86/include/asm/arch-ivybridge/pch.h
arch/x86/include/asm/intel_regs.h

index 9972b0ae7ffe8cfcc2ff2fa865a9ecdd0454d8c6..55057e017c5bfbbb89de1ffc0965b2f306b39723 100644 (file)
@@ -11,6 +11,7 @@
 #include <pch.h>
 #include <syscon.h>
 #include <asm/cpu.h>
+#include <asm/intel_regs.h>
 #include <asm/io.h>
 #include <asm/lapic.h>
 #include <asm/pci.h>
index 9ab5ed3ff97bb998e16bda391e7cfdff599e2d48..26ffaa08d73e46098d85755bed51a4305a8b406e 100644 (file)
@@ -13,6 +13,7 @@
 #include <rtc.h>
 #include <pci.h>
 #include <asm/acpi.h>
+#include <asm/intel_regs.h>
 #include <asm/interrupt.h>
 #include <asm/io.h>
 #include <asm/ioapic.h>
@@ -420,7 +421,7 @@ static void enable_spi_prefetch(struct udevice *pch)
 static void enable_port80_on_lpc(struct udevice *pch)
 {
        /* Enable port 80 POST on LPC */
-       dm_pci_write_config32(pch, PCH_RCBA_BASE, DEFAULT_RCBA | 1);
+       dm_pci_write_config32(pch, PCH_RCBA_BASE, RCB_BASE_ADDRESS | 1);
        clrbits_le32(RCB_REG(GCS), 4);
 }
 
@@ -552,7 +553,8 @@ static int bd82x6x_lpc_early_init(struct udevice *dev)
 {
        /* Setting up Southbridge. In the northbridge code. */
        debug("Setting up static southbridge registers\n");
-       dm_pci_write_config32(dev->parent, PCH_RCBA_BASE, DEFAULT_RCBA | 1);
+       dm_pci_write_config32(dev->parent, PCH_RCBA_BASE,
+                             RCB_BASE_ADDRESS | 1);
        dm_pci_write_config32(dev->parent, PMBASE, DEFAULT_PMBASE | 1);
 
        /* Enable ACPI BAR */
index af3e8e747c1563108ee065709a41e2d287795590..628b517ba167c5336edafcf50ef9f8c2a269ca89 100644 (file)
 
 #define SMBUS_TIMEOUT          (10 * 1000 * 100)
 
-
-/* Root Complex Register Block */
-#define DEFAULT_RCBA           0xfed1c000
-#define RCB_REG(reg)           (DEFAULT_RCBA + (reg))
-
 #define PCH_RCBA_BASE          0xf0
 
 #define VCH            0x0000  /* 32bit */
index 97257381433c800c9eebff93260544e9334bcb73..961d2bda1ebde3cc12f7717d9f40989600e07204 100644 (file)
@@ -12,4 +12,8 @@
 #define MCH_BASE_SIZE          0x8000
 #define MCHBAR_REG(reg)                (MCH_BASE_ADDRESS + (reg))
 
+/* Access the Root Complex Register Block */
+#define RCB_BASE_ADDRESS       0xfed1c000
+#define RCB_REG(reg)           (RCB_BASE_ADDRESS + (reg))
+
 #endif