Author: ruik
Date: Sun Nov  7 19:20:32 2010
New Revision: 6035
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6035

Log:
This adds the VT8237A LPC device id and the pci_driver struct in
vt8237r_lpc.c

Signed-off-by: Tobias Diedrich <[email protected]>
Acked-by: Rudolf Marek <[email protected]>

Added:
   trunk/src/mainboard/asus/p2b/acpi_tables.c
   trunk/src/mainboard/asus/p2b/dsdt.asl
   trunk/src/mainboard/asus/p2b/romstage.c.orig
Modified:
   trunk/src/include/device/pci_ids.h
   trunk/src/southbridge/via/vt8237r/vt8237r_lpc.c

Modified: trunk/src/include/device/pci_ids.h
==============================================================================
--- trunk/src/include/device/pci_ids.h  Sun Nov  7 18:49:05 2010        (r6034)
+++ trunk/src/include/device/pci_ids.h  Sun Nov  7 19:20:32 2010        (r6035)
@@ -1226,6 +1226,7 @@
 #define PCI_DEVICE_ID_VIA_K8T890CE_BR  0xb188
 #define PCI_DEVICE_ID_VIA_VT6420_SATA  0x3149
 #define PCI_DEVICE_ID_VIA_VT8237R_LPC  0x3227
+#define PCI_DEVICE_ID_VIA_VT8237A_LPC  0x3337
 #define PCI_DEVICE_ID_VIA_VT8237S_LPC  0x3372
 #define PCI_DEVICE_ID_VIA_VT8237_SATA  0x5372
 #define PCI_DEVICE_ID_VIA_VT8237_VLINK 0x287e

Added: trunk/src/mainboard/asus/p2b/acpi_tables.c
==============================================================================

Added: trunk/src/mainboard/asus/p2b/dsdt.asl
==============================================================================

Added: trunk/src/mainboard/asus/p2b/romstage.c.orig
==============================================================================

Modified: trunk/src/southbridge/via/vt8237r/vt8237r_lpc.c
==============================================================================
--- trunk/src/southbridge/via/vt8237r/vt8237r_lpc.c     Sun Nov  7 18:49:05 
2010        (r6034)
+++ trunk/src/southbridge/via/vt8237r/vt8237r_lpc.c     Sun Nov  7 19:20:32 
2010        (r6035)
@@ -543,6 +543,12 @@
        .device = PCI_DEVICE_ID_VIA_VT8237R_LPC,
 };
 
+static const struct pci_driver lpc_driver_a __pci_driver = {
+       .ops    = &vt8237r_lpc_ops_r,
+       .vendor = PCI_VENDOR_ID_VIA,
+       .device = PCI_DEVICE_ID_VIA_VT8237A_LPC,
+};
+
 static const struct pci_driver lpc_driver_s __pci_driver = {
        .ops    = &vt8237r_lpc_ops_s,
        .vendor = PCI_VENDOR_ID_VIA,

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to