This is a note to let you know that I've just added the patch titled

    drm/radeon/kms: add connector quirk for Fujitsu D3003-S2 board

to the 3.3-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-radeon-kms-add-connector-quirk-for-fujitsu-d3003-s2-board.patch
and it can be found in the queue-3.3 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 4c1b2d2da3451f5c8dd59bd7e05bd9729d2aee05 Mon Sep 17 00:00:00 2001
From: Alex Deucher <[email protected]>
Date: Fri, 16 Mar 2012 12:22:10 -0400
Subject: drm/radeon/kms: add connector quirk for Fujitsu D3003-S2 board

From: Alex Deucher <[email protected]>

commit 4c1b2d2da3451f5c8dd59bd7e05bd9729d2aee05 upstream.

vbios lists DVI-I port as VGA and DVI-D.

Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=47007

Signed-off-by: Alex Deucher <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/gpu/drm/radeon/radeon_atombios.c |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

--- a/drivers/gpu/drm/radeon/radeon_atombios.c
+++ b/drivers/gpu/drm/radeon/radeon_atombios.c
@@ -442,6 +442,20 @@ static bool radeon_atom_apply_quirks(str
                struct radeon_device *rdev = dev->dev_private;
                *i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93);
        }
+
+       /* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */
+       if ((dev->pdev->device == 0x9802) &&
+           (dev->pdev->subsystem_vendor == 0x1734) &&
+           (dev->pdev->subsystem_device == 0x11bd)) {
+               if (*connector_type == DRM_MODE_CONNECTOR_VGA) {
+                       *connector_type = DRM_MODE_CONNECTOR_DVII;
+                       *line_mux = 0x3103;
+               } else if (*connector_type == DRM_MODE_CONNECTOR_DVID) {
+                       *connector_type = DRM_MODE_CONNECTOR_DVII;
+               }
+       }
+
+
        return true;
 }
 


Patches currently in stable-queue which might be from [email protected] 
are

queue-3.3/drm-radeon-kms-fix-analog-load-detection-on-dvi-i-connectors.patch
queue-3.3/drm-radeon-restrict-offset-for-legacy-hardware-cursor.patch
queue-3.3/drm-radeon-kms-add-connector-quirk-for-fujitsu-d3003-s2-board.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to