aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/rs780
diff options
context:
space:
mode:
authorZheng Bao <zheng.bao@amd.com>2010-12-31 01:46:12 +0000
committerZheng Bao <Zheng.Bao@amd.com>2010-12-31 01:46:12 +0000
commit40992d33b8d9f0b3c762d77c7538a8a4aacf3bfb (patch)
treedebd07df1f64ecf6c044fabebc6a48e03b834db3 /src/southbridge/amd/rs780
parent6d81646314af1b720665b6bdb4e7523ae80cca73 (diff)
Add RS785(RS880) support. Just few pci_ids.
Signed-off-by: Zheng Bao <zheng.bao@amd.com> Acked-by: Stefan Reinauer <stepan@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6227 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd/rs780')
-rw-r--r--src/southbridge/amd/rs780/gfx.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/southbridge/amd/rs780/gfx.c b/src/southbridge/amd/rs780/gfx.c
index 4a141314f9..d7c11e4003 100644
--- a/src/southbridge/amd/rs780/gfx.c
+++ b/src/southbridge/amd/rs780/gfx.c
@@ -26,6 +26,10 @@
* RS780MC:0x9613
* RS780E: 0x9615
* RS785G: 0x9710 - just works, not much tested
+ * RS785C: 0x9711
+ * RS785M: 0x9712
+ * RS785MC:0x9713
+ * RS785D: 0x9714
*/
#include <console/console.h>
#include <device/device.h>
@@ -912,6 +916,26 @@ static const struct pci_driver pcie_driver_785g __pci_driver = {
.vendor = PCI_VENDOR_ID_ATI,
.device = PCI_DEVICE_ID_ATI_RS785G_INT_GFX,
};
+static const struct pci_driver pcie_driver_785c __pci_driver = {
+ .ops = &pcie_ops,
+ .vendor = PCI_VENDOR_ID_ATI,
+ .device = PCI_DEVICE_ID_ATI_RS785C_INT_GFX,
+};
+static const struct pci_driver pcie_driver_785m __pci_driver = {
+ .ops = &pcie_ops,
+ .vendor = PCI_VENDOR_ID_ATI,
+ .device = PCI_DEVICE_ID_ATI_RS785M_INT_GFX,
+};
+static const struct pci_driver pcie_driver_785mc __pci_driver = {
+ .ops = &pcie_ops,
+ .vendor = PCI_VENDOR_ID_ATI,
+ .device = PCI_DEVICE_ID_ATI_RS785MC_INT_GFX,
+};
+static const struct pci_driver pcie_driver_785d __pci_driver = {
+ .ops = &pcie_ops,
+ .vendor = PCI_VENDOR_ID_ATI,
+ .device = PCI_DEVICE_ID_ATI_RS785D_INT_GFX,
+};
/* step 12 ~ step 14 from rpr */
static void single_port_configuration(device_t nb_dev, device_t dev)