Add CPUID processor name string support for Fam10 CPUs.
[coreboot.git] / util / flashrom / chipset_enable.c
index 631ac29874a8b64c9fd2c073b81efb8276a91d07..436036ed029f02c77e7a502692418328ea3fb373 100644 (file)
  * Contains the chipset specific flash enables.
  */
 
+#define _LARGEFILE64_SOURCE
+
 #include <stdio.h>
 #include <pci/pci.h>
 #include <stdlib.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/mman.h>
+#include <fcntl.h>
+#include <unistd.h>
 #include "flash.h"
 
-static int enable_flash_ali_m1533(struct pci_dev *dev, char *name)
+static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
 {
        uint8_t tmp;
 
-       /* ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
-          0xFFFE0000-0xFFFFFFFF ROM select enable. */
+       /*
+        * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
+        * 0xFFFE0000-0xFFFFFFFF ROM select enable.
+        */
        tmp = pci_read_byte(dev, 0x47);
        tmp |= 0x46;
        pci_write_byte(dev, 0x47, tmp);
@@ -41,24 +50,28 @@ static int enable_flash_ali_m1533(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_sis630(struct pci_dev *dev, char *name)
+static int enable_flash_sis630(struct pci_dev *dev, const char *name)
 {
-       char b;
+       uint8_t b;
 
-       /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630 */
+       /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
        b = pci_read_byte(dev, 0x40);
        pci_write_byte(dev, 0x40, b | 0xb);
-       /* Flash write enable on SiS 540/630 */
+
+       /* Flash write enable on SiS 540/630. */
        b = pci_read_byte(dev, 0x45);
        pci_write_byte(dev, 0x45, b | 0x40);
 
-       /* The same thing on SiS 950 SuperIO side */
+       /* The same thing on SiS 950 Super I/O side... */
+
+       /* First probe for Super I/O on config port 0x2e. */
        outb(0x87, 0x2e);
        outb(0x01, 0x2e);
        outb(0x55, 0x2e);
        outb(0x55, 0x2e);
 
        if (inb(0x2f) != 0x87) {
+               /* If that failed, try config port 0x4e. */
                outb(0x87, 0x4e);
                outb(0x01, 0x4e);
                outb(0x55, 0x4e);
@@ -93,7 +106,7 @@ static int enable_flash_sis630(struct pci_dev *dev, char *name)
  *   - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
  *   - Order Number: 290562-001
  */
-static int enable_flash_piix4(struct pci_dev *dev, char *name)
+static int enable_flash_piix4(struct pci_dev *dev, const char *name)
 {
        uint16_t old, new;
        uint16_t xbcs = 0x4e;   /* X-Bus Chip Select register. */
@@ -126,25 +139,27 @@ static int enable_flash_piix4(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
+/*
+ * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
+ * http://download.intel.com/design/chipsets/datashts/30701303.pdf
+ */
+static int enable_flash_ich(struct pci_dev *dev, const char *name,
+                           int bios_cntl)
 {
-       /* register 4e.b gets or'ed with one */
        uint8_t old, new;
 
-       /* if it fails, it fails. There are so many variations of broken mobos
-        * that it is hard to argue that we should quit at this point.
-        */
-
-       /* Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
+       /*
+        * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
         * just treating it as 8 bit wide seems to work fine in practice.
         */
-
-       /* see ie. page 375 of "Intel ICH7 External Design Specification"
-        * http://download.intel.com/design/chipsets/datashts/30701302.pdf
-        */
-
        old = pci_read_byte(dev, bios_cntl);
 
+       printf_debug("BIOS Lock Enable: %sabled, ",
+                    (old & (1 << 1)) ? "en" : "dis");
+       printf_debug("BIOS Write Enable: %sabled, ",
+                    (old & (1 << 0)) ? "en" : "dis");
+       printf_debug("BIOS_CNTL is 0x%x\n", old);
+
        new = old | 1;
 
        if (new == old)
@@ -160,17 +175,62 @@ static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
        return 0;
 }
 
-static int enable_flash_ich_4e(struct pci_dev *dev, char *name)
+static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
 {
        return enable_flash_ich(dev, name, 0x4e);
 }
 
-static int enable_flash_ich_dc(struct pci_dev *dev, char *name)
+static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
 {
        return enable_flash_ich(dev, name, 0xdc);
 }
 
-static int enable_flash_vt823x(struct pci_dev *dev, char *name)
+static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name)
+{
+       uint8_t old, new, bbs;
+       uint32_t tmp, gcs;
+       void *rcba;
+
+       /* Root Complex Base Address Register (RCBA) */
+       tmp = pci_read_long(dev, 0xf0);
+       tmp &= 0xffffc000;
+       printf_debug("Root Complex Base Address Register = 0x%x\n", tmp);
+       rcba = mmap(0, 0x3510, PROT_READ, MAP_SHARED, fd_mem, (off_t)tmp);
+       if (rcba == MAP_FAILED) {
+               perror("Can't mmap memory using " MEM_DEV);
+               exit(1);
+       }
+       printf_debug("GCS address = 0x%x\n", tmp + 0x3410);
+       gcs = *(volatile uint32_t *)(rcba + 0x3410);
+       printf_debug("GCS = 0x%x: ", gcs);
+       printf_debug("BIOS Interface Lock-Down: %sabled, ",
+                    (gcs & 0x1) ? "en" : "dis");
+       bbs = (gcs >> 10) & 0x3;
+       printf_debug("BOOT BIOS Straps: 0x%x (%s)\n",   bbs,
+                    (bbs == 0x3) ? "LPC" : ((bbs == 0x2) ? "PCI" : "SPI"));
+       /* SPIBAR is at RCBA+0x3020 for ICH[78] and RCBA+0x3800 for ICH9. */
+       /* printf_debug("SPIBAR = 0x%x\n", tmp + 0x3020); */
+       /* TODO: Dump the SPI config regs */
+       munmap(rcba, 0x3510);
+
+       old = pci_read_byte(dev, 0xdc);
+       printf_debug("SPI Read Configuration: ");
+       new = (old >> 2) & 0x3;
+       switch (new) {
+       case 0:
+       case 1:
+       case 2:
+               printf_debug("prefetching %sabled, caching %sabled, ",
+                       (new & 0x2) ? "en" : "dis", (new & 0x1) ? "dis" : "en");
+               break;
+       default:
+               printf_debug("invalid prefetching/caching settings, ");
+               break;
+       }
+       return enable_flash_ich_dc(dev, name);
+}
+
+static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
 {
        uint8_t val;
 
@@ -188,7 +248,7 @@ static int enable_flash_vt823x(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_cs5530(struct pci_dev *dev, char *name)
+static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
 {
        uint8_t reg8;
 
@@ -218,7 +278,99 @@ static int enable_flash_cs5530(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_sc1100(struct pci_dev *dev, char *name)
+/**
+ * Geode systems write protect the BIOS via RCONFs (cache settings similar
+ * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
+ * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
+ * ring0 privileged instructions so only the kernel can do the read/write.
+ * This function, therefore, requires that the msr kernel module be loaded
+ * to access these instructions from user space using device /dev/cpu/0/msr.
+ *
+ * This hard-coded location could have potential problems on SMP machines
+ * since it assumes cpu0, but it is safe on the Geode which is not SMP.
+ *
+ * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
+ * To enable write to NOR Boot flash for the benefit of systems that have such
+ * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
+ *
+ * This is probably not portable beyond Linux.
+ */
+static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
+{
+       #define MSR_RCONF_DEFAULT       0x1808
+       #define MSR_NORF_CTL            0x51400018
+
+       int fd_msr;
+       unsigned char buf[8];
+
+       fd_msr = open("/dev/cpu/0/msr", O_RDWR);
+       if (!fd_msr) {
+               perror("open msr");
+               return -1;
+       }
+
+       if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
+               perror("lseek64");
+               printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
+               close(fd_msr);
+               return -1;
+       }
+
+       if (read(fd_msr, buf, 8) != 8) {
+               perror("read msr");
+               close(fd_msr);
+               return -1;
+       }
+
+       if (buf[7] != 0x22) {
+               buf[7] &= 0xfb;
+               if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
+                       perror("lseek64");
+                       close(fd_msr);
+                       return -1;
+               }
+
+               if (write(fd_msr, buf, 8) < 0) {
+                       perror("msr write");
+                       close(fd_msr);
+                       return -1;
+               }
+       }
+
+       if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
+               perror("lseek64");
+               close(fd_msr);
+               return -1;
+       }
+
+       if (read(fd_msr, buf, 8) != 8) {
+               perror("read msr");
+               close(fd_msr);
+               return -1;
+       }
+
+       /* Raise WE_CS3 bit. */
+       buf[0] |= 0x08;
+
+       if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
+               perror("lseek64");
+               close(fd_msr);
+               return -1;
+       }
+       if (write(fd_msr, buf, 8) < 0) {
+               perror("msr write");
+               close(fd_msr);
+               return -1;
+       }
+
+       close(fd_msr);
+
+       #undef MSR_RCONF_DEFAULT
+       #undef MSR_NORF_CTL
+       return 0;
+}
+
+static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
 {
        uint8_t new;
 
@@ -234,16 +386,14 @@ static int enable_flash_sc1100(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_sis5595(struct pci_dev *dev, char *name)
+static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
 {
        uint8_t new, newer;
 
        new = pci_read_byte(dev, 0x45);
 
-       /* clear bit 5 */
-       new &= (~0x20);
-       /* set bit 2 */
-       new |= 0x4;
+       new &= (~0x20);         /* Clear bit 5. */
+       new |= 0x4;             /* Set bit 2. */
 
        pci_write_byte(dev, 0x45, new);
 
@@ -257,16 +407,11 @@ static int enable_flash_sis5595(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_amd8111(struct pci_dev *dev, char *name)
+static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
 {
-       /* register 4e.b gets or'ed with one */
        uint8_t old, new;
 
-       /* if it fails, it fails. There are so many variations of broken mobos
-        * that it is hard to argue that we should quit at this point.
-        */
-
-       /* enable decoding at 0xffb00000 to 0xffffffff */
+       /* Enable decoding at 0xffb00000 to 0xffffffff. */
        old = pci_read_byte(dev, 0x43);
        new = old | 0xC0;
        if (new != old) {
@@ -290,17 +435,10 @@ static int enable_flash_amd8111(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_ck804(struct pci_dev *dev, char *name)
+static int enable_flash_ck804(struct pci_dev *dev, const char *name)
 {
-       /* register 4e.b gets or'ed with one */
        uint8_t old, new;
 
-       /* if it fails, it fails. There are so many variations of broken mobos
-        * that it is hard to argue that we should quit at this point.
-        */
-
-       /* dump_pci_device(dev); */
-
        old = pci_read_byte(dev, 0x88);
        new = old | 0xc0;
        if (new != old) {
@@ -324,14 +462,14 @@ static int enable_flash_ck804(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_sb400(struct pci_dev *dev, char *name)
+/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
+static int enable_flash_sb400(struct pci_dev *dev, const char *name)
 {
        uint8_t tmp;
-
        struct pci_filter f;
        struct pci_dev *smbusdev;
 
-       /* then look for the smbus device */
+       /* Look for the SMBus device. */
        pci_filter_init((struct pci_access *)0, &f);
        f.vendor = 0x1002;
        f.device = 0x4372;
@@ -343,21 +481,21 @@ static int enable_flash_sb400(struct pci_dev *dev, char *name)
        }
 
        if (!smbusdev) {
-               fprintf(stderr, "ERROR: SMBus device not found. aborting\n");
+               fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
                exit(1);
        }
 
-       /* enable some smbus stuff */
+       /* Enable some SMBus stuff. */
        tmp = pci_read_byte(smbusdev, 0x79);
        tmp |= 0x01;
        pci_write_byte(smbusdev, 0x79, tmp);
 
-       /* change southbridge */
+       /* Change southbridge. */
        tmp = pci_read_byte(dev, 0x48);
        tmp |= 0x21;
        pci_write_byte(dev, 0x48, tmp);
 
-       /* now become a bit silly. */
+       /* Now become a bit silly. */
        tmp = inb(0xc6f);
        outb(tmp, 0xeb);
        outb(tmp, 0xeb);
@@ -369,19 +507,12 @@ static int enable_flash_sb400(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_mcp55(struct pci_dev *dev, char *name)
+static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
 {
-       /* register 4e.b gets or'ed with one */
-       unsigned char old, new, byte;
-       unsigned short word;
+       uint8_t old, new, byte;
+       uint16_t word;
 
-       /* if it fails, it fails. There are so many variations of broken mobos
-        * that it is hard to argue that we should quit at this point.
-        */
-
-       /* dump_pci_device(dev); */
-
-       /* Set the 0-16 MB enable bits */
+       /* Set the 0-16 MB enable bits. */
        byte = pci_read_byte(dev, 0x88);
        byte |= 0xff;           /* 256K */
        pci_write_byte(dev, 0x88, byte);
@@ -408,7 +539,7 @@ static int enable_flash_mcp55(struct pci_dev *dev, char *name)
        return 0;
 }
 
-static int enable_flash_ht1000(struct pci_dev *dev, char *name)
+static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
 {
        uint8_t byte;
 
@@ -425,74 +556,91 @@ static int enable_flash_ht1000(struct pci_dev *dev, char *name)
 }
 
 typedef struct penable {
-       unsigned short vendor, device;
-       char *name;
-       int (*doit) (struct pci_dev * dev, char *name);
+       uint16_t vendor, device;
+       const char *name;
+       int (*doit) (struct pci_dev *dev, const char *name);
 } FLASH_ENABLE;
 
-static FLASH_ENABLE enables[] = {
-       {0x1039, 0x0630, "SIS630", enable_flash_sis630},
-       {0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
-       {0x8086, 0x2410, "ICH", enable_flash_ich_4e},
-       {0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
-       {0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
-       {0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
-       {0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
-       {0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
-       {0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
-       {0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
-       {0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
-       {0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
-       {0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
-       {0x8086, 0x27b0, "ICH7DH", enable_flash_ich_dc},
-       {0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
-       {0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
-       {0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
-       {0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
-       {0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
-       {0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
-       {0x1106, 0x8231, "VT8231", enable_flash_vt823x},
-       {0x1106, 0x3177, "VT8235", enable_flash_vt823x},
-       {0x1106, 0x3227, "VT8237", enable_flash_vt823x},
-       {0x1106, 0x8324, "CX700", enable_flash_vt823x},
-       {0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
-       {0x1078, 0x0100, "CS5530/CS5530A", enable_flash_cs5530},
-       {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
-       {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
-       {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
-       {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
-       /* this fallthrough looks broken. */
-       {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804},   /* LPC */
-       {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804},   /* Pro */
-       {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804},   /* Slave, should not be here, to fix known bug for A01. */
-
-       {0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
-       {0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
-       {0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
-       {0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
-
-       {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55},   /* Gigabyte m57sli-s4 */
-       {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55},   /* LPC */
-       {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55},   /* LPC */
-       {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55},   /* LPC */
-       {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55},   /* LPC */
-       {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55},   /* LPC */
-       {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55},   /* LPC */
-       {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55},   /* Pro */
-
-       {0x1002, 0x4377, "ATI SB400", enable_flash_sb400},      /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
-
-       {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
+static const FLASH_ENABLE enables[] = {
+       {0x1039, 0x0630, "SiS630",              enable_flash_sis630},
+       {0x8086, 0x7110, "Intel PIIX4/4E/4M",   enable_flash_piix4},
+       {0x8086, 0x7198, "Intel 440MX",         enable_flash_piix4},
+       {0x8086, 0x2410, "Intel ICH",           enable_flash_ich_4e},
+       {0x8086, 0x2420, "Intel ICH0",          enable_flash_ich_4e},
+       {0x8086, 0x2440, "Intel ICH2",          enable_flash_ich_4e},
+       {0x8086, 0x244c, "Intel ICH2-M",        enable_flash_ich_4e},
+       {0x8086, 0x2480, "Intel ICH3-S",        enable_flash_ich_4e},
+       {0x8086, 0x248c, "Intel ICH3-M",        enable_flash_ich_4e},
+       {0x8086, 0x24c0, "Intel ICH4/ICH4-L",   enable_flash_ich_4e},
+       {0x8086, 0x24cc, "Intel ICH4-M",        enable_flash_ich_4e},
+       {0x8086, 0x24d0, "Intel ICH5/ICH5R",    enable_flash_ich_4e},
+       {0x8086, 0x2640, "Intel ICH6/ICH6R",    enable_flash_ich_dc},
+       {0x8086, 0x2641, "Intel ICH6-M",        enable_flash_ich_dc},
+       {0x8086, 0x27b0, "Intel ICH7DH",        enable_flash_ich_dc_spi},
+       {0x8086, 0x27b8, "Intel ICH7/ICH7R",    enable_flash_ich_dc_spi},
+       {0x8086, 0x27b9, "Intel ICH7M",         enable_flash_ich_dc_spi},
+       {0x8086, 0x27bd, "Intel ICH7MDH",       enable_flash_ich_dc_spi},
+       {0x8086, 0x2810, "Intel ICH8/ICH8R",    enable_flash_ich_dc_spi},
+       {0x8086, 0x2811, "Intel ICH8M-E",       enable_flash_ich_dc_spi},
+       {0x8086, 0x2812, "Intel ICH8DH",        enable_flash_ich_dc_spi},
+       {0x8086, 0x2814, "Intel ICH8DO",        enable_flash_ich_dc_spi},
+       {0x8086, 0x2815, "Intel ICH8M",         enable_flash_ich_dc_spi},
+       {0x8086, 0x2912, "Intel ICH9DH",        enable_flash_ich_dc_spi},
+       {0x8086, 0x2914, "Intel ICH9DO",        enable_flash_ich_dc_spi},
+       {0x8086, 0x2916, "Intel ICH9R",         enable_flash_ich_dc_spi},
+       {0x8086, 0x2917, "Intel ICH9M-E",       enable_flash_ich_dc_spi},
+       {0x8086, 0x2918, "Intel ICH9",          enable_flash_ich_dc_spi},
+       {0x8086, 0x2919, "Intel ICH9M",         enable_flash_ich_dc_spi},
+       {0x1106, 0x8231, "VIA VT8231",          enable_flash_vt823x},
+       {0x1106, 0x3177, "VIA VT8235",          enable_flash_vt823x},
+       {0x1106, 0x3227, "VIA VT8237",          enable_flash_vt823x},
+       {0x1106, 0x8324, "VIA CX700",           enable_flash_vt823x},
+       {0x1106, 0x0686, "VIA VT82C686",        enable_flash_amd8111},
+       {0x1078, 0x0100, "AMD CS5530(A)",       enable_flash_cs5530},
+       {0x100b, 0x0510, "AMD SC1100",          enable_flash_sc1100},
+       {0x1039, 0x0008, "SiS5595",             enable_flash_sis5595},
+       {0x1022, 0x2080, "AMD CS5536",          enable_flash_cs5536},
+       {0x1022, 0x7468, "AMD8111",             enable_flash_amd8111},
+       {0x10B9, 0x1533, "ALi M1533",           enable_flash_ali_m1533},
+       {0x10de, 0x0050, "NVIDIA CK804",        enable_flash_ck804}, /* LPC */
+       {0x10de, 0x0051, "NVIDIA CK804",        enable_flash_ck804}, /* Pro */
+       /* Slave, should not be here, to fix known bug for A01. */
+       {0x10de, 0x00d3, "NVIDIA CK804",        enable_flash_ck804},
+       {0x10de, 0x0260, "NVIDIA MCP51",        enable_flash_ck804},
+       {0x10de, 0x0261, "NVIDIA MCP51",        enable_flash_ck804},
+       {0x10de, 0x0262, "NVIDIA MCP51",        enable_flash_ck804},
+       {0x10de, 0x0263, "NVIDIA MCP51",        enable_flash_ck804},
+       {0x10de, 0x0360, "NVIDIA MCP55",        enable_flash_mcp55}, /* M57SLI*/
+       {0x10de, 0x0361, "NVIDIA MCP55",        enable_flash_mcp55}, /* LPC */
+       {0x10de, 0x0362, "NVIDIA MCP55",        enable_flash_mcp55}, /* LPC */
+       {0x10de, 0x0363, "NVIDIA MCP55",        enable_flash_mcp55}, /* LPC */
+       {0x10de, 0x0364, "NVIDIA MCP55",        enable_flash_mcp55}, /* LPC */
+       {0x10de, 0x0365, "NVIDIA MCP55",        enable_flash_mcp55}, /* LPC */
+       {0x10de, 0x0366, "NVIDIA MCP55",        enable_flash_mcp55}, /* LPC */
+       {0x10de, 0x0367, "NVIDIA MCP55",        enable_flash_mcp55}, /* Pro */
+       {0x1002, 0x4377, "ATI SB400",           enable_flash_sb400},
+       {0x1166, 0x0205, "Broadcom HT-1000",    enable_flash_ht1000},
 };
 
+void print_supported_chipsets(void)
+{
+       int i;
+
+       printf("\nSupported chipsets:\n\n");
+
+       for (i = 0; i < ARRAY_SIZE(enables); i++)
+               printf("%s (%04x:%04x)\n", enables[i].name,
+                      enables[i].vendor, enables[i].device);
+}
+
 int chipset_flash_enable(void)
 {
        struct pci_dev *dev = 0;
-       int ret = -2;           /* nothing! */
+       int ret = -2;           /* Nothing! */
        int i;
 
-       /* now let's try to find the chipset we have ... */
-       for (i = 0; i < sizeof(enables) / sizeof(enables[0]); i++) {
+       /* Now let's try to find the chipset we have... */
+       for (i = 0; i < ARRAY_SIZE(enables); i++) {
                dev = pci_dev_find(enables[i].vendor, enables[i].device);
                if (dev)
                        break;