]> git.karo-electronics.de Git - linux-beck.git/commit
drm/i915: Kill check_power_well() calls
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 18 Dec 2014 09:44:06 +0000 (11:44 +0200)
committerJani Nikula <jani.nikula@intel.com>
Thu, 18 Dec 2014 10:01:41 +0000 (12:01 +0200)
commit7f1241ed1a06b4846ad7a2a57eb088b757e58e16
tree16dda935632393719015a5e1e2288b0c3aa46b46
parent2c550183476dfa25641309ae9a28d30feed14379
drm/i915: Kill check_power_well() calls

pps_{lock,unlock}() call intel_display_power_{get,put}() outside
pps_mutes to avoid deadlocks with the power_domain mutex. In theory
during aux transfers we should usually have the relevant power domain
references already held by some higher level code, so this should not
result in much overhead (exception being userspace i2c-dev access).
However thanks to the check_power_well() calls in
intel_display_power_{get/put}() we end up doing a few Punit reads for
each aux transfer. Obviously doing this for each byte transferred via
i2c-over-aux is not a good idea.

I can't think of a good way to keep check_power_well() while eliminating
the overhead, so let's just remove check_power_well() entirely.

Fixes a driver init time regression introduced by:
 commit 773538e86081d146e0020435d614f4b96996c1f9
 Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
 Date:   Thu Sep 4 14:54:56 2014 +0300

    drm/i915: Reset power sequencer pipe tracking when disp2d is off

Credit goes to Jani for figuring this out.

v2: Add the regression note in the commit message.

Cc: stable@vger.kernel.org (v3.18+)
Cc: Egbert Eich <eich@suse.de>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86201
Tested-by: Wendy Wang <wendy.wang@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/intel_runtime_pm.c