summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorStéphane Marchesin2013-01-30 04:41:59 +0100
committerDaniel Vetter2013-03-05 10:02:00 +0100
commit0920a48719f1ceefc909387a64f97563848c7854 (patch)
tree66d0510d14f63b4d12d630c63682e1c60ab5d11b /drivers/gpu/drm
parentDRM/i915: On G45 enable cursor plane briefly after enabling the display plane. (diff)
downloadkernel-qcow2-linux-0920a48719f1ceefc909387a64f97563848c7854.tar.gz
kernel-qcow2-linux-0920a48719f1ceefc909387a64f97563848c7854.tar.xz
kernel-qcow2-linux-0920a48719f1ceefc909387a64f97563848c7854.zip
drm/i915: Increase the RC6p threshold.
This increases GEN6_RC6p_THRESHOLD from 100000 to 150000. For some reason this avoids the gen6_gt_check_fifodbg.isra warnings and associated GPU lockups, which makes my ivy bridge machine stable. Signed-off-by: Stéphane Marchesin <marcheu@chromium.org> Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/i915/intel_pm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 61fee7fcdc2c..a1794c6df1bf 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -2574,7 +2574,7 @@ static void gen6_enable_rps(struct drm_device *dev)
I915_WRITE(GEN6_RC_SLEEP, 0);
I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
- I915_WRITE(GEN6_RC6p_THRESHOLD, 100000);
+ I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
/* Check if we are enabling RC6 */
>Kees Cook2018-06-131-1/+1 * | treewide: kzalloc() -> kcalloc()Kees Cook2018-06-1333-120/+135 * | treewide: kmalloc() -> kmalloc_array()Kees Cook2018-06-1318-39/+56 * | Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiLinus Torvalds2018-06-10