Add high tables support to all northbridges.
[coreboot.git] / src / northbridge / amd / lx / northbridge.c
index 4ad67006bb8f0e052371b793394cc4fd6f8dce6f..390c94cf78f83c2ecb721373b90b361a223d4424 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the LinuxBIOS project.
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2007 Advanced Micro Devices, Inc.
  *
 #include <cpu/x86/msr.h>
 #include <cpu/x86/cache.h>
 #include <cpu/amd/vr.h>
+#include <cpu/cpu.h>
 #include "chip.h"
 #include "northbridge.h"
+#include "../../../southbridge/amd/cs5536/cs5536.h"
+
 
 /* here is programming for the various MSRs.*/
 #define IM_QWAIT 0x100000
@@ -76,7 +79,6 @@
 extern void graphics_init(void);
 extern void cpubug(void);
 extern void chipsetinit(void);
-extern void print_conf(void);
 extern uint32_t get_systop(void);
 
 void northbridge_init_early(void);
@@ -118,6 +120,155 @@ struct msr_defaults {
        0}
 };
 
+/* Print the platform configuration - do before PCI init or it will not
+ * work right.
+ */
+void print_conf(void)
+{
+#if DEFAULT_CONSOLE_LOGLEVEL >= BIOS_ERR
+       int i;
+       unsigned long iol;
+       msr_t msr;
+
+       int cpu_msr_defs[] = { CPU_BC_L2_CONF, CPU_IM_CONFIG, CPU_DM_CONFIG0,
+               CPU_RCONF_DEFAULT, CPU_RCONF_BYPASS, CPU_RCONF_A0_BF,
+               CPU_RCONF_C0_DF, CPU_RCONF_E0_FF, CPU_RCONF_SMM, CPU_RCONF_DMM,
+               GLCP_DELAY_CONTROLS, GL_END
+       };
+
+       int gliu0_msr_defs[] = { MSR_GLIU0_BASE1, MSR_GLIU0_BASE2,
+               MSR_GLIU0_BASE4, MSR_GLIU0_BASE5, MSR_GLIU0_BASE6,
+               GLIU0_P2D_BMO_0, GLIU0_P2D_BMO_1, MSR_GLIU0_SYSMEM,
+               GLIU0_P2D_RO_0, GLIU0_P2D_RO_1, GLIU0_P2D_RO_2,
+               MSR_GLIU0_SHADOW, GLIU0_IOD_BM_0, GLIU0_IOD_BM_1,
+               GLIU0_IOD_BM_2, GLIU0_IOD_SC_0, GLIU0_IOD_SC_1, GLIU0_IOD_SC_2,
+               GLIU0_IOD_SC_3, GLIU0_IOD_SC_4, GLIU0_IOD_SC_5,
+               GLIU0_GLD_MSR_COH, GL_END
+       };
+
+       int gliu1_msr_defs[] = { MSR_GLIU1_BASE1, MSR_GLIU1_BASE2,
+               MSR_GLIU1_BASE3, MSR_GLIU1_BASE4, MSR_GLIU1_BASE5,
+               MSR_GLIU1_BASE6, MSR_GLIU1_BASE7, MSR_GLIU1_BASE8,
+               MSR_GLIU1_BASE9, MSR_GLIU1_BASE10, GLIU1_P2D_R_0,
+               GLIU1_P2D_R_1, GLIU1_P2D_R_2, GLIU1_P2D_R_3, MSR_GLIU1_SHADOW,
+               GLIU1_IOD_BM_0, GLIU1_IOD_BM_1, GLIU1_IOD_BM_2, GLIU1_IOD_SC_0,
+               GLIU1_IOD_SC_1, GLIU1_IOD_SC_2, GLIU1_IOD_SC_3,
+               GLIU1_GLD_MSR_COH, GL_END
+       };
+
+       int rconf_msr[] = { CPU_RCONF0, CPU_RCONF1, CPU_RCONF2, CPU_RCONF3,
+               CPU_RCONF4, CPU_RCONF5, CPU_RCONF6, CPU_RCONF7, GL_END
+       };
+
+       int cs5536_msr[] = { MDD_LBAR_GPIO, MDD_LBAR_FLSH0, MDD_LBAR_FLSH1,
+               MDD_LEG_IO, MDD_PIN_OPT, MDD_IRQM_ZLOW, MDD_IRQM_ZHIGH,
+               MDD_IRQM_PRIM, GL_END
+       };
+
+       int pci_msr[] = { GLPCI_CTRL, GLPCI_ARB, GLPCI_REN, GLPCI_A0_BF,
+               GLPCI_C0_DF, GLPCI_E0_FF, GLPCI_RC0, GLPCI_RC1, GLPCI_RC2,
+               GLPCI_RC3, GLPCI_ExtMSR, GLPCI_SPARE, GL_END
+       };
+
+       int dma_msr[] = { MDD_DMA_MAP, MDD_DMA_SHAD1, MDD_DMA_SHAD2,
+               MDD_DMA_SHAD3, MDD_DMA_SHAD4, MDD_DMA_SHAD5, MDD_DMA_SHAD6,
+               MDD_DMA_SHAD7, MDD_DMA_SHAD8, MDD_DMA_SHAD9, GL_END
+       };
+
+       printk_debug("---------- CPU ------------\n");
+
+       for (i = 0; cpu_msr_defs[i] != GL_END; i++) {
+               msr = rdmsr(cpu_msr_defs[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n",
+                            cpu_msr_defs[i], msr.hi, msr.lo);
+       }
+
+       printk_debug("---------- GLIU 0 ------------\n");
+
+       for (i = 0; gliu0_msr_defs[i] != GL_END; i++) {
+               msr = rdmsr(gliu0_msr_defs[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n",
+                            gliu0_msr_defs[i], msr.hi, msr.lo);
+       }
+
+       printk_debug("---------- GLIU 1 ------------\n");
+
+       for (i = 0; gliu1_msr_defs[i] != GL_END; i++) {
+               msr = rdmsr(gliu1_msr_defs[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n",
+                            gliu1_msr_defs[i], msr.hi, msr.lo);
+       }
+
+       printk_debug("---------- RCONF ------------\n");
+
+       for (i = 0; rconf_msr[i] != GL_END; i++) {
+               msr = rdmsr(rconf_msr[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", rconf_msr[i],
+                            msr.hi, msr.lo);
+       }
+
+       printk_debug("---------- VARIA ------------\n");
+       msr = rdmsr(0x51300010);
+       printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", 0x51300010, msr.hi,
+                    msr.lo);
+
+       msr = rdmsr(0x51400015);
+       printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", 0x51400015, msr.hi,
+                    msr.lo);
+
+       printk_debug("---------- DIVIL IRQ ------------\n");
+       msr = rdmsr(MDD_IRQM_YLOW);
+       printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_YLOW, msr.hi,
+                    msr.lo);
+       msr = rdmsr(MDD_IRQM_YHIGH);
+       printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_YHIGH,
+                    msr.hi, msr.lo);
+       msr = rdmsr(MDD_IRQM_ZLOW);
+       printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_ZLOW, msr.hi,
+                    msr.lo);
+       msr = rdmsr(MDD_IRQM_ZHIGH);
+       printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_ZHIGH,
+                    msr.hi, msr.lo);
+
+       printk_debug("---------- PCI ------------\n");
+
+       for (i = 0; pci_msr[i] != GL_END; i++) {
+               msr = rdmsr(pci_msr[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", pci_msr[i],
+                            msr.hi, msr.lo);
+       }
+
+       printk_debug("---------- LPC/UART DMA ------------\n");
+
+       for (i = 0; dma_msr[i] != GL_END; i++) {
+               msr = rdmsr(dma_msr[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", dma_msr[i],
+                            msr.hi, msr.lo);
+       }
+
+       printk_debug("---------- CS5536 ------------\n");
+
+       for (i = 0; cs5536_msr[i] != GL_END; i++) {
+               msr = rdmsr(cs5536_msr[i]);
+               printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", cs5536_msr[i],
+                            msr.hi, msr.lo);
+       }
+
+       iol = inl(GPIO_IO_BASE + GPIOL_INPUT_ENABLE);
+       printk_debug("IOR 0x%08X is now 0x%08X\n",
+                    GPIO_IO_BASE + GPIOL_INPUT_ENABLE, iol);
+       iol = inl(GPIOL_EVENTS_ENABLE);
+       printk_debug("IOR 0x%08X is now 0x%08X\n",
+                    GPIO_IO_BASE + GPIOL_EVENTS_ENABLE, iol);
+       iol = inl(GPIOL_INPUT_INVERT_ENABLE);
+       printk_debug("IOR 0x%08X is now 0x%08X\n",
+                    GPIO_IO_BASE + GPIOL_INPUT_INVERT_ENABLE, iol);
+       iol = inl(GPIO_MAPPER_X);
+       printk_debug("IOR 0x%08X is now 0x%08X\n", GPIO_IO_BASE + GPIO_MAPPER_X,
+                    iol);
+#endif                         //DEFAULT_CONSOLE_LOGLEVEL >= BIOS_ERR
+}
+
 /* todo: add a resource record. We don't do this here because this may be called when 
   * very little of the platform is actually working.
   */
@@ -157,7 +308,7 @@ static void northbridge_init(device_t dev)
 {
        //msr_t msr;
 
-       printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
+       printk_spew(">> Entering northbridge.c: %s\n", __func__);
 
        enable_shadow(dev);
        /*
@@ -225,7 +376,7 @@ static struct device_operations northbridge_operations = {
        .ops_pci = 0,
 };
 
-static struct pci_driver northbridge_driver __pci_driver = {
+static const struct pci_driver northbridge_driver __pci_driver = {
        .ops = &northbridge_operations,
        .vendor = PCI_VENDOR_ID_AMD,
        .device = PCI_DEVICE_ID_AMD_LXBRIDGE,
@@ -234,7 +385,7 @@ static struct pci_driver northbridge_driver __pci_driver = {
 static void pci_domain_read_resources(device_t dev)
 {
        struct resource *resource;
-       printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
+       printk_spew(">> Entering northbridge.c: %s\n", __func__);
 
        /* Initialize the system wide io space constraints */
        resource = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
@@ -264,19 +415,32 @@ static void ram_resource(device_t dev, unsigned long index,
            IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
 }
 
+#if HAVE_HIGH_TABLES==1
+#define HIGH_TABLES_SIZE 64    // maximum size of high tables in KB
+extern uint64_t high_tables_base, high_tables_size;
+#endif
+
 static void pci_domain_set_resources(device_t dev)
 {
        int idx;
+       u32 tomk;
        device_t mc_dev;
 
-       printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
+       printk_spew(">> Entering northbridge.c: %s\n", __func__);
 
        mc_dev = dev->link[0].children;
        if (mc_dev) {
+               tomk = get_systop() / 1024;
                /* Report the memory regions */
                idx = 10;
                ram_resource(dev, idx++, 0, 640);
-               ram_resource(dev, idx++, 1024, (get_systop() - 0x100000) / 1024);       // Systop - 1 MB -> KB
+               ram_resource(dev, idx++, 1024, tomk - 1024);    // Systop - 1 MB -> KB
+
+#if HAVE_HIGH_TABLES==1
+               /* Leave some space for ACPI, PIRQ and MP tables */
+               high_tables_base = (tomk - HIGH_TABLES_SIZE) * 1024;
+               high_tables_size = HIGH_TABLES_SIZE * 1024;
+#endif
        }
 
        assign_resources(&dev->link[0]);
@@ -285,7 +449,7 @@ static void pci_domain_set_resources(device_t dev)
 static void pci_domain_enable(device_t dev)
 {
 
-       printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
+       printk_spew(">> Entering northbridge.c: %s\n", __func__);
 
        // do this here for now -- this chip really breaks our device model
        northbridge_init_early();
@@ -308,7 +472,7 @@ static void pci_domain_enable(device_t dev)
 
 static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
 {
-       printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
+       printk_spew(">> Entering northbridge.c: %s\n", __func__);
 
        max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
        return max;
@@ -324,7 +488,7 @@ static struct device_operations pci_domain_ops = {
 
 static void cpu_bus_init(device_t dev)
 {
-       printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
+       printk_spew(">> Entering northbridge.c: %s\n", __func__);
 
        initialize_cpus(&dev->link[0]);
 }
@@ -344,7 +508,7 @@ static struct device_operations cpu_bus_ops = {
 static void enable_dev(struct device *dev)
 {
        printk_spew(">> Entering northbridge.c: %s with path %d\n",
-                   __FUNCTION__, dev->path.type);
+                   __func__, dev->path.type);
 
        /* Set the operations if it is a special bus type */
        if (dev->path.type == DEVICE_PATH_PCI_DOMAIN)