diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2011-01-04 00:43:39 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-01-05 23:32:34 -0500 |
commit | f598aa7593427ffe3a61e7767c34bd695a5e7ed0 (patch) | |
tree | ba026d21ed2e426ec1633547b89450f10a976567 /drivers/gpu/drm/radeon/radeon_atombios.c | |
parent | 32c87fca2fac490e34a9fa900b45f2fbb4faacf9 (diff) |
drm/radeon/kms: add quirk for Mac Radeon HD 2600 card
Reported-by: 屋国遥 <hyagni@gmail.com>
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Cc: stable@kernel.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_atombios.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_atombios.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c index 6317d2c9e6d..e4f7e3e82a5 100644 --- a/drivers/gpu/drm/radeon/radeon_atombios.c +++ b/drivers/gpu/drm/radeon/radeon_atombios.c | |||
@@ -387,6 +387,17 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev, | |||
387 | *line_mux = 0x90; | 387 | *line_mux = 0x90; |
388 | } | 388 | } |
389 | 389 | ||
390 | /* mac rv630 */ | ||
391 | if ((dev->pdev->device == 0x9588) && | ||
392 | (dev->pdev->subsystem_vendor == 0x106b) && | ||
393 | (dev->pdev->subsystem_device == 0x00a6)) { | ||
394 | if ((supported_device == ATOM_DEVICE_TV1_SUPPORT) && | ||
395 | (*connector_type == DRM_MODE_CONNECTOR_DVII)) { | ||
396 | *connector_type = DRM_MODE_CONNECTOR_9PinDIN; | ||
397 | *line_mux = CONNECTOR_7PIN_DIN_ENUM_ID1; | ||
398 | } | ||
399 | } | ||
400 | |||
390 | /* ASUS HD 3600 XT board lists the DVI port as HDMI */ | 401 | /* ASUS HD 3600 XT board lists the DVI port as HDMI */ |
391 | if ((dev->pdev->device == 0x9598) && | 402 | if ((dev->pdev->device == 0x9598) && |
392 | (dev->pdev->subsystem_vendor == 0x1043) && | 403 | (dev->pdev->subsystem_vendor == 0x1043) && |