projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7905df2
)
drm/i915/bxt: Disable power well support
author
Matt Roper
<
[email protected]
>
Tue, 1 Dec 2015 17:26:58 +0000
(09:26 -0800)
committer
Matt Roper
<
[email protected]
>
Tue, 1 Dec 2015 22:28:37 +0000
(14:28 -0800)
BXT power well support is not yet stable. Starting with patch
commit
9f836f9016ad5320e0c9230419d2102cf15a28aa
Author: Patrik Jakobsson <
[email protected]
>
Date: Mon Nov 16 16:20:01 2015 +0100
drm/i915/gen9: Turn DC handling into a power well
DPMS off operations may actually cause the entire system to powerdown or
reboot. Disable power well support for now until Broxton gets fixes
similar to what we have for SKL.
Cc: Imre Deak <
[email protected]
>
Cc: Patrik Jakobsson <
[email protected]
>
References: http://lists.freedesktop.org/archives/intel-gfx/2015-November/081037.html
Signed-off-by: Matt Roper <
[email protected]
>
Link:
http://patchwork.freedesktop.org/patch/msgid/
[email protected]
Reviewed-by: Imre Deak <
[email protected]
>
drivers/gpu/drm/i915/intel_runtime_pm.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_runtime_pm.c
b/drivers/gpu/drm/i915/intel_runtime_pm.c
index 3fa43af9494659d4a5f5df1a1f48c1b6f1d90750..ab833efb5f0c7cc3c2692d738c8b9300340652cb 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_runtime_pm.c
+++ b/
drivers/gpu/drm/i915/intel_runtime_pm.c
@@
-1911,6
+1911,11
@@
sanitize_disable_power_well_option(const struct drm_i915_private *dev_priv,
if (disable_power_well >= 0)
return !!disable_power_well;
+ if (IS_BROXTON(dev_priv)) {
+ DRM_DEBUG_KMS("Disabling display power well support\n");
+ return 0;
+ }
+
return 1;
}