Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / inteltool / powermgt.c
index 5f938353ee44262c3585c42e32a60528c70e19a2..a2ac32e1a9d7577097b2bc883f6e2ecc2c05b5a9 100644 (file)
 #include <stdio.h>
 #include "inteltool.h"
 
+static const io_register_t ich10_pm_registers[] = {
+       { 0x00, 2, "PM1_STS" }, // PM1 Status; ACPI pointer: PM1a_EVT_BLK
+       { 0x02, 2, "PM1_EN" },  // PM1 Enables; ACPI pointer: PM1a_EVT_BLK+2
+       { 0x04, 4, "PM1_CNT" }, // PM1 Control; ACPI pointer: PM1a_CNT_BLK
+       { 0x08, 4, "PM1_TMR" }, // PM1 Timer; ACPI pointer: PMTMR_BLK
+       { 0x0c, 4, "RESERVED" },
+       { 0x10, 4, "PROC_CNT" }, // Processor Control; ACPI pointer: P_BLK
+#if DANGEROUS_REGISTERS
+       /* These registers return 0 on read, but reading them may cause
+        * the system to enter Cx states, which might hang the system.
+        */
+       { 0x14, 1, "LV2 (Mobile)" },
+       { 0x15, 1, "LV3 (Mobile)" },
+       { 0x16, 1, "LV4 (Mobile)" },
+#endif
+       { 0x17, 2, "RESERVED" },
+       { 0x19, 1, "RESERVED" },
+       { 0x1a, 2, "RESERVED" },
+       { 0x1c, 4, "RESERVED" },
+       { 0x20, 8, "GPE0_STS" }, // General Purpose Event 0 Status; ACPI pointer: GPE0_BLK
+       { 0x2C, 4, "GPE0_EN" },  // General Purpose Event 0 Enables; ACPI pointer: GPE0_BLK+8
+       { 0x30, 4, "SMI_EN" },
+       { 0x34, 4, "SMI_STS" },
+       { 0x38, 2, "ALT_GP_SMI_EN" },
+       { 0x3a, 2, "ALT_GP_SMI_STS" },
+       { 0x3c, 1, "UPRWC" },   // USB Per-Port registers write control;
+       { 0x3d, 2, "RESERVED" },
+       { 0x3f, 1, "RESERVED" },
+       { 0x40, 2, "RESERVED" },
+       { 0x42, 1, "GPE_CNTL" },
+       { 0x43, 1, "RESERVED" },
+       { 0x44, 2, "DEVACT_STS" }, // Device Activity Status
+       { 0x46, 2, "RESERVED" },
+       { 0x48, 4, "RESERVED" },
+       { 0x4c, 4, "RESERVED" },
+       { 0x50, 1, "PM2_CNT (Mobile)" }, // PM2 Control (Mobile only); ACPI pointer: PM2a_CNT_BLK
+       { 0x51, 1, "RESERVED" },
+       { 0x52, 2, "RESERVED" },
+       { 0x54, 4, "C3_RES (Mobile)" },
+       { 0x58, 4, "RESERVED" },
+       { 0x5c, 4, "RESERVED" },
+       /* Here start the TCO registers */
+       { 0x60, 2, "TCO_RLD" },
+       { 0x62, 1, "TCO_DAT_IN" },
+       { 0x63, 1, "TCO_DAT_OUT" },
+       { 0x64, 2, "TCO1_STS" },
+       { 0x66, 2, "TCO2_STS" },
+       { 0x68, 2, "TCO1_CNT" },
+       { 0x6a, 2, "TCO2_CNT" },
+       { 0x6c, 2, "TCO_MESSAGE" },
+       { 0x6e, 1, "TCO_WDCNT" },
+       { 0x6f, 1, "RESERVED" },
+       { 0x70, 1, "SW_IRQ_GEN" },
+       { 0x71, 1, "RESERVED" },
+       { 0x72, 2, "TCO_TMR" },
+       { 0x74, 4, "RESERVED" },
+       { 0x78, 4, "RESERVED" },
+       { 0x7c, 4, "RESERVED" },
+};
+
 static const io_register_t ich9_pm_registers[] = {
        { 0x00, 2, "PM1_STS" }, // PM1 Status; ACPI pointer: PM1a_EVT_BLK
        { 0x02, 2, "PM1_EN" },  // PM1 Enables; ACPI pointer: PM1a_EVT_BLK+2
@@ -237,6 +297,32 @@ static const io_register_t ich6_pm_registers[] = {
        { 0x54, 4, "C3_RES (Mobile Only)" },
 };
 
+static const io_register_t ich5_pm_registers[] = {
+       { 0x00, 2, "PM1_STS" },
+       { 0x02, 2, "PM1_EN" },
+       { 0x04, 4, "PM1_CNT" },
+       { 0x08, 4, "PM1_TMR" },
+       { 0x0c, 4, "RESERVED" },
+       { 0x10, 4, "PROC_CNT" },
+       { 0x14, 3, "RESERVED" },
+       { 0x17, 9, "RESERVED" },
+       { 0x20, 1, "RESERVED" },
+       { 0x28, 4, "GPE0_STS" },
+       { 0x2c, 4, "GPE0_EN" },
+       { 0x30, 4, "SMI_EN" },
+       { 0x34, 4, "SMI_STS" },
+       { 0x38, 2, "ALT_GP_SMI_EN" },
+       { 0x3a, 2, "ALT_GP_SMI_STS" },
+       { 0x3c, 4, "RESERVED" },
+       { 0x40, 1, "MON_SMI" },
+       { 0x42, 2, "RESERVED" },
+       { 0x44, 1, "DEVACT_STS" },
+       { 0x48, 1, "DEVTRAP_EN" },
+       { 0x50, 1, "RESERVED" },
+       { 0x51, 15, "RESERVED" },
+       { 0x60, 16, "RESERVED" },
+};
+
 static const io_register_t ich4_pm_registers[] = {
        { 0x00, 2, "PM1_STS" },
        { 0x02, 2, "PM1_EN" },
@@ -464,15 +550,21 @@ static const io_register_t i82371xx_pm_registers[] = {
        { 0x37, 1, "GPOREG 3" },
 };
 
-int print_pmbase(struct pci_dev *sb)
+int print_pmbase(struct pci_dev *sb, struct pci_access *pacc)
 {
        int i, size;
        uint16_t pmbase;
        const io_register_t *pm_registers;
+       struct pci_dev *acpi;
 
        printf("\n============= PMBASE ============\n\n");
 
        switch (sb->device_id) {
+       case PCI_DEVICE_ID_INTEL_ICH10R:
+               pmbase = pci_read_word(sb, 0x40) & 0xff80;
+               pm_registers = ich10_pm_registers;
+               size = ARRAY_SIZE(ich10_pm_registers);
+               break;
        case PCI_DEVICE_ID_INTEL_ICH7:
        case PCI_DEVICE_ID_INTEL_ICH7M:
        case PCI_DEVICE_ID_INTEL_ICH7DH:
@@ -503,6 +595,11 @@ int print_pmbase(struct pci_dev *sb)
                pm_registers = ich6_pm_registers;
                size = ARRAY_SIZE(ich6_pm_registers);
                break;
+       case PCI_DEVICE_ID_INTEL_ICH5:
+               pmbase = pci_read_word(sb, 0x40) & 0xfffc;
+               pm_registers = ich5_pm_registers;
+               size = ARRAY_SIZE(ich5_pm_registers);
+               break;
        case PCI_DEVICE_ID_INTEL_ICH4:
                pmbase = pci_read_word(sb, 0x40) & 0xfffc;
                pm_registers = ich4_pm_registers;
@@ -519,7 +616,12 @@ int print_pmbase(struct pci_dev *sb)
                size = ARRAY_SIZE(ich0_pm_registers);
                break;
        case PCI_DEVICE_ID_INTEL_82371XX:
-               pmbase = pci_read_word(sb, 0x40) & 0xfffc;
+               acpi = pci_get_dev(pacc, sb->domain, sb->bus, sb->dev, 3);
+               if (!acpi) {
+                       printf("Southbridge function 3 not found.\n");
+                       return 1;
+               }
+               pmbase = pci_read_word(acpi, 0x40) & 0xfffc;
                pm_registers = i82371xx_pm_registers;
                size = ARRAY_SIZE(i82371xx_pm_registers);
                break;
@@ -558,4 +660,3 @@ int print_pmbase(struct pci_dev *sb)
 
        return 0;
 }
-