summaryrefslogtreecommitdiffstats
path: root/chipset_enable.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-03-12 11:54:51 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-03-12 11:54:51 +0000
commite5ac16445f70486713b6533c2071c80eb66cc174 (patch)
tree3e6343a00bfd9a05e644467f9e8e990816c865f5 /chipset_enable.c
parent75f510768d65acfefb0813873992449f4d186f35 (diff)
downloadast2050-flashrom-e5ac16445f70486713b6533c2071c80eb66cc174.zip
ast2050-flashrom-e5ac16445f70486713b6533c2071c80eb66cc174.tar.gz
Add --list-supported option which lists the supported ROM chips, chipsets, and mainboards
Corresponding to flashrom svn r199 and coreboot v2 svn r3133. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Ward Vandewege <ward@gnu.org>
Diffstat (limited to 'chipset_enable.c')
-rw-r--r--chipset_enable.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/chipset_enable.c b/chipset_enable.c
index 84cb191..872f254 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -561,6 +561,17 @@ static const FLASH_ENABLE enables[] = {
{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;
@@ -568,8 +579,7 @@ int chipset_flash_enable(void)
int i;
/* Now let's try to find the chipset we have... */
- /* TODO: Use ARRAY_SIZE. */
- for (i = 0; i < sizeof(enables) / sizeof(enables[0]); i++) {
+ for (i = 0; i < ARRAY_SIZE(enables); i++) {
dev = pci_dev_find(enables[i].vendor, enables[i].device);
if (dev)
break;
OpenPOWER on IntegriCloud