summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2010-02-18 14:02:00 -0500
committerAlex Deucher <alexdeucher@gmail.com>2010-02-18 14:02:00 -0500
commite68d3a3890fc81c51f2006b5548da1e8756ad2fd (patch)
tree2e8fe678485e44d3bad65b72897395ddd5808a07 /src
parenta3b730eceb522c7ac1ef3dd6f6c7d773118d03f7 (diff)
RS600: add connector quirk
System lists DVI port as HDMI. fixes fdo bug 26605
Diffstat (limited to 'src')
-rw-r--r--src/radeon_atombios.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c
index 7bf98153..0fa53ffe 100644
--- a/src/radeon_atombios.c
+++ b/src/radeon_atombios.c
@@ -1667,6 +1667,16 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index)
}
}
+ /* RS600 board lists the DVI port as HDMI */
+ if ((info->Chipset == PCI_CHIP_RS600_7941) &&
+ (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1849) &&
+ (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x7941)) {
+ if ((info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) &&
+ (info->BiosConnector[index].devices & ATOM_DEVICE_DFP3_SUPPORT)) {
+ info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D;
+ }
+ }
+
/* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */
if ((info->Chipset == PCI_CHIP_RS600_7941) &&
(PCI_SUB_VENDOR_ID(info->PciInfo) == 0x147b) &&