This is a note to let you know that I've just added the patch titled
drm/radeon/r7xx: fix copy paste typo in golden register setup
to the 3.10-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-r7xx-fix-copy-paste-typo-in-golden-register-setup.patch
and it can be found in the queue-3.10 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 022374c02e357ac82e98dd2689fb2efe05723d69 Mon Sep 17 00:00:00 2001
From: Alex Deucher <[email protected]>
Date: Tue, 13 Aug 2013 15:57:32 -0400
Subject: drm/radeon/r7xx: fix copy paste typo in golden register setup
From: Alex Deucher <[email protected]>
commit 022374c02e357ac82e98dd2689fb2efe05723d69 upstream.
Uses the wrong array size for some asics which can lead
to garbage getting written to registers.
Fixes:
https://bugzilla.kernel.org/show_bug.cgi?id=60674
Signed-off-by: Alex Deucher <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/gpu/drm/radeon/rv770.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- a/drivers/gpu/drm/radeon/rv770.c
+++ b/drivers/gpu/drm/radeon/rv770.c
@@ -744,10 +744,10 @@ static void rv770_init_golden_registers(
(const
u32)ARRAY_SIZE(r7xx_golden_dyn_gpr_registers));
radeon_program_register_sequence(rdev,
rv730_golden_registers,
- (const
u32)ARRAY_SIZE(rv770_golden_registers));
+ (const
u32)ARRAY_SIZE(rv730_golden_registers));
radeon_program_register_sequence(rdev,
rv730_mgcg_init,
- (const
u32)ARRAY_SIZE(rv770_mgcg_init));
+ (const
u32)ARRAY_SIZE(rv730_mgcg_init));
break;
case CHIP_RV710:
radeon_program_register_sequence(rdev,
@@ -758,18 +758,18 @@ static void rv770_init_golden_registers(
(const
u32)ARRAY_SIZE(r7xx_golden_dyn_gpr_registers));
radeon_program_register_sequence(rdev,
rv710_golden_registers,
- (const
u32)ARRAY_SIZE(rv770_golden_registers));
+ (const
u32)ARRAY_SIZE(rv710_golden_registers));
radeon_program_register_sequence(rdev,
rv710_mgcg_init,
- (const
u32)ARRAY_SIZE(rv770_mgcg_init));
+ (const
u32)ARRAY_SIZE(rv710_mgcg_init));
break;
case CHIP_RV740:
radeon_program_register_sequence(rdev,
rv740_golden_registers,
- (const
u32)ARRAY_SIZE(rv770_golden_registers));
+ (const
u32)ARRAY_SIZE(rv740_golden_registers));
radeon_program_register_sequence(rdev,
rv740_mgcg_init,
- (const
u32)ARRAY_SIZE(rv770_mgcg_init));
+ (const
u32)ARRAY_SIZE(rv740_mgcg_init));
break;
default:
break;
Patches currently in stable-queue which might be from [email protected]
are
queue-3.10/drm-radeon-fix-uvd-message-buffer-validation.patch
queue-3.10/drm-radeon-r7xx-fix-copy-paste-typo-in-golden-register-setup.patch
queue-3.10/drm-radeon-fix-wreg32_or-macro-setting-bits-in-a-register.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