]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.0-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Oct 2013 18:48:45 +0000 (11:48 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Oct 2013 18:48:45 +0000 (11:48 -0700)
added patches:
drm-radeon-fix-hw-contexts-for-sumo2-asics.patch

queue-3.0/drm-radeon-fix-hw-contexts-for-sumo2-asics.patch [new file with mode: 0644]
queue-3.0/series

diff --git a/queue-3.0/drm-radeon-fix-hw-contexts-for-sumo2-asics.patch b/queue-3.0/drm-radeon-fix-hw-contexts-for-sumo2-asics.patch
new file mode 100644 (file)
index 0000000..f93281d
--- /dev/null
@@ -0,0 +1,33 @@
+From 50b8f5aec04ebec7dbdf2adb17220b9148c99e63 Mon Sep 17 00:00:00 2001
+From: wojciech kapuscinski <wojtask9@wp.pl>
+Date: Tue, 1 Oct 2013 19:54:33 -0400
+Subject: drm/radeon: fix hw contexts for SUMO2 asics
+
+From: wojciech kapuscinski <wojtask9@wp.pl>
+
+commit 50b8f5aec04ebec7dbdf2adb17220b9148c99e63 upstream.
+
+They have 4 rather than 8.
+
+Fixes:
+https://bugs.freedesktop.org/show_bug.cgi?id=63599
+
+Signed-off-by: wojciech kapuscinski <wojtask9@wp.pl>
+Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/gpu/drm/radeon/evergreen.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/gpu/drm/radeon/evergreen.c
++++ b/drivers/gpu/drm/radeon/evergreen.c
+@@ -1749,7 +1749,7 @@ static void evergreen_gpu_init(struct ra
+               rdev->config.evergreen.sx_max_export_size = 256;
+               rdev->config.evergreen.sx_max_export_pos_size = 64;
+               rdev->config.evergreen.sx_max_export_smx_size = 192;
+-              rdev->config.evergreen.max_hw_contexts = 8;
++              rdev->config.evergreen.max_hw_contexts = 4;
+               rdev->config.evergreen.sq_num_cf_insts = 2;
+               rdev->config.evergreen.sc_prim_fifo_size = 0x40;
index 987dfab62ea6b0fc31ca9ed26dd973c6d56da19b..471d3a57a37e69faf78d198b09c710144bd4193d 100644 (file)
@@ -3,3 +3,4 @@ vfs-allow-o_path-file-descriptors-for-fstatfs.patch
 ext4-fix-memory-leak-in-xattr.patch
 parisc-fix-interruption-handler-to-respect-pagefault_disable.patch
 watchdog-ts72xx_wdt-locking-bug-in-ioctl.patch
+drm-radeon-fix-hw-contexts-for-sumo2-asics.patch