]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: fix infinite loop at gen6_update_ring_freq
authorPaulo Zanoni <paulo.r.zanoni@intel.com>
Tue, 1 Apr 2014 22:39:49 +0000 (19:39 -0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 2 Apr 2014 14:57:19 +0000 (16:57 +0200)
commit0e5e82b48ab2c2658b8709d6327b9683c53e27b7
treed82f58c720ee0c05c05f1cb0c0b26cf627fe3fa2
parent949b6bdfd0aef35b0914979b3c1ad7d0afd2246b
drm/i915: fix infinite loop at gen6_update_ring_freq

If I boot my Broadwell machine to X on a system with Mesa Gallium
llvmpipe instead of i965, then kill X and try to run pm_pc8.c, when we
disable PC8 and call gen6_update_ring_freq(), we will get stuck on an
infinite loop because the frequencies are zero and the variables are
unsigned. This happens because we never ran any batch, so we did not
enable RC6, so the variables are zero. If I run gem_exec_nop before
running pm_pc8, everything works as expected because gem_exec_nop
makes RC6 be enabled.

This commit should prevent the infinite loop, which IMHO is already a
good reason to be merged, but it is not the proper fix to the "RC6 is
not being enabled" problem.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_pm.c