diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-08-04 15:17:39 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-08-04 15:19:02 -0400 |
commit | 4fc1e67e606daf9227e74518c54315b60cd38301 (patch) | |
tree | d25ea3c889f722dcf142a0c554e59503d71ce166 | |
parent | 22074cf0e58fddba743924532625e6fca49b6bdc (diff) |
radeon: re-add asus connector quirks
fixes bug 19943
-rw-r--r-- | src/radeon_atombios.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index bf3bfa04..b1cb559e 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1625,6 +1625,22 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index) } } + /* ASUS HD 3600 XT board lists the DVI port as HDMI */ + if ((info->Chipset == PCI_CHIP_RV635_9598) && + (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1043) && + (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x01da)) { + if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) + info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D; + } + + /* ASUS HD 3450 board lists the DVI port as HDMI */ + if ((info->Chipset == PCI_CHIP_RV620_95C5) && + (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1043) && + (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x01e2)) { + if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) + info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D; + } + /* some BIOSes seem to report DAC on HDMI - usually this is a board with * HDMI + VGA reporting as HDMI */ |