diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-02-18 14:02:00 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-02-18 14:05:23 -0500 |
commit | 89e87dcb8ffb8a1ffdd55b9b63c8efef5f42e603 (patch) | |
tree | 16fd4e051eeb4675b5419e0760f5b292502d09bd | |
parent | 712ac98af7cd862e802a8f735318dfb9c6a7ad28 (diff) |
RS600: add connector quirk
System lists DVI port as HDMI.
fixes fdo bug 26605
-rw-r--r-- | src/radeon_atombios.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index 1e7b2024..621a1107 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1535,6 +1535,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) && |