From patchwork Tue Apr 19 19:47:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/4] pci1x2x: add PCI1510 device IDs Date: Tue, 19 Apr 2011 19:47:16 -0000 From: Sven Schnelle X-Patchwork-Id: 2890 Message-Id: <1303242438-13852-3-git-send-email-svens@stackframe.org> To: coreboot@coreboot.org Cc: svens@stackframe.org Signed-off-by: Sven Schnelle Acked-by: Stefan Reinauer --- src/include/device/pci_ids.h | 1 + src/southbridge/ti/pci1x2x/pci1x2x.c | 6 ++++++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 6286cd6..03896c5 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -737,6 +737,7 @@ #define PCI_DEVICE_ID_TI_4451 0xac42 #define PCI_DEVICE_ID_TI_1420 0xac51 #define PCI_DEVICE_ID_TI_1520 0xac55 +#define PCI_DEVICE_ID_TI_1510 0xac56 #define PCI_VENDOR_ID_SONY 0x104d #define PCI_DEVICE_ID_SONY_CXD3222 0x8039 diff --git a/src/southbridge/ti/pci1x2x/pci1x2x.c b/src/southbridge/ti/pci1x2x/pci1x2x.c index 121b9ef..0628f1f 100644 --- a/src/southbridge/ti/pci1x2x/pci1x2x.c +++ b/src/southbridge/ti/pci1x2x/pci1x2x.c @@ -72,6 +72,12 @@ static const struct pci_driver ti_pci1420_driver __pci_driver = { .device = PCI_DEVICE_ID_TI_1420, }; +static const struct pci_driver ti_pci1510_driver __pci_driver = { + .ops = &southbridge_ti_pci1x2x_pciops, + .vendor = PCI_VENDOR_ID_TI, + .device = PCI_DEVICE_ID_TI_1510, +}; + static const struct pci_driver ti_pci1520_driver __pci_driver = { .ops = &southbridge_ti_pci1x2x_pciops, .vendor = PCI_VENDOR_ID_TI,