This is a note to let you know that I've just added the patch titled
radeon/kms: force rn50 chip to always report connected on analog output
to the 3.7-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:
radeon-kms-force-rn50-chip-to-always-report-connected-on-analog-output.patch
and it can be found in the queue-3.7 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 51861d4eebc2ddc25c77084343d060fa79f6e291 Mon Sep 17 00:00:00 2001
From: Jerome Glisse <[email protected]>
Date: Tue, 8 Jan 2013 18:41:01 -0500
Subject: radeon/kms: force rn50 chip to always report connected on analog output
From: Jerome Glisse <[email protected]>
commit 51861d4eebc2ddc25c77084343d060fa79f6e291 upstream.
Those rn50 chip are often connected to console remoting hw and load
detection often fails with those. Just don't try to load detect and
report connect.
Signed-off-by: Jerome Glisse <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/gpu/drm/radeon/radeon_legacy_encoders.c | 8 ++++++++
1 file changed, 8 insertions(+)
--- a/drivers/gpu/drm/radeon/radeon_legacy_encoders.c
+++ b/drivers/gpu/drm/radeon/radeon_legacy_encoders.c
@@ -640,6 +640,14 @@ static enum drm_connector_status radeon_
enum drm_connector_status found = connector_status_disconnected;
bool color = true;
+ /* just don't bother on RN50 those chip are often connected to remoting
+ * console hw and often we get failure to load detect those. So to make
+ * everyone happy report the encoder as always connected.
+ */
+ if (ASIC_IS_RN50(rdev)) {
+ return connector_status_connected;
+ }
+
/* save the regs we need */
vclk_ecp_cntl = RREG32_PLL(RADEON_VCLK_ECP_CNTL);
crtc_ext_cntl = RREG32(RADEON_CRTC_EXT_CNTL);
Patches currently in stable-queue which might be from [email protected] are
queue-3.7/drm-radeon-fix-amd-afusion-gpu-setup-aka-sumo-v2.patch
queue-3.7/drm-radeon-restore-modeset-late-in-gpu-reset-path.patch
queue-3.7/drm-radeon-fix-edp-clk-and-lane-setup-for-scaled-modes.patch
queue-3.7/drm-radeon-don-t-leave-fence-blocked-process-on-failed-gpu-reset.patch
queue-3.7/radeon-kms-force-rn50-chip-to-always-report-connected-on-analog-output.patch
queue-3.7/drm-radeon-add-wait_until-to-evergreen-vm-safe-reg-list.patch
queue-3.7/drm-radeon-avoid-deadlock-in-pm-path-when-waiting-for-fence.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