Enable -Werror for romcc
[coreboot.git] / util / inteltool / rootcmplx.c
index 438e5b0b115dc7659271d54430d98a7245645e15..a47873114b5d954c463e29849a9ca7f57fabd904 100644 (file)
@@ -1,9 +1,9 @@
 /*
  * inteltool - dump all registers on an Intel CPU + chipset based system.
  *
- * Copyright (C) 2008 by coresystems GmbH 
- *  written by Stefan Reinauer <stepan@coresystems.de> 
- * 
+ * Copyright (C) 2008 by coresystems GmbH
+ *  written by Stefan Reinauer <stepan@coresystems.de>
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; version 2 of the License.
@@ -31,17 +31,30 @@ int print_rcba(struct pci_dev *sb)
        printf("\n============= RCBA ==============\n\n");
 
        switch (sb->device_id) {
+       case PCI_DEVICE_ID_INTEL_ICH6:
        case PCI_DEVICE_ID_INTEL_ICH7:
        case PCI_DEVICE_ID_INTEL_ICH7M:
        case PCI_DEVICE_ID_INTEL_ICH7DH:
        case PCI_DEVICE_ID_INTEL_ICH7MDH:
+       case PCI_DEVICE_ID_INTEL_ICH8:
        case PCI_DEVICE_ID_INTEL_ICH8M:
+       case PCI_DEVICE_ID_INTEL_ICH9DH:
+       case PCI_DEVICE_ID_INTEL_ICH9DO:
+       case PCI_DEVICE_ID_INTEL_ICH9R:
+       case PCI_DEVICE_ID_INTEL_ICH9:
+       case PCI_DEVICE_ID_INTEL_ICH9M:
+       case PCI_DEVICE_ID_INTEL_ICH9ME:
+       case PCI_DEVICE_ID_INTEL_ICH10R:
+       case PCI_DEVICE_ID_INTEL_NM10:
+       case PCI_DEVICE_ID_INTEL_I63XX:
                rcba_phys = pci_read_long(sb, 0xf0) & 0xfffffffe;
                break;
        case PCI_DEVICE_ID_INTEL_ICH:
        case PCI_DEVICE_ID_INTEL_ICH0:
+       case PCI_DEVICE_ID_INTEL_ICH2:
        case PCI_DEVICE_ID_INTEL_ICH4:
        case PCI_DEVICE_ID_INTEL_ICH4M:
+       case PCI_DEVICE_ID_INTEL_ICH5:
                printf("This southbridge does not have RCBA.\n");
                return 1;
        default:
@@ -50,7 +63,7 @@ int print_rcba(struct pci_dev *sb)
        }
 
        rcba = map_physical(rcba_phys, size);
-       
+
        if (rcba == NULL) {
                perror("Error mapping RCBA");
                exit(1);
@@ -66,4 +79,3 @@ int print_rcba(struct pci_dev *sb)
        unmap_physical((void *)rcba, size);
        return 0;
 }
-