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:
c03242b
)
drm/i915/kbl: Enable PW1 and Misc I/O power wells
author
Michel Thierry
<
[email protected]
>
Wed, 6 Jan 2016 12:08:36 +0000
(12:08 +0000)
committer
Daniel Vetter
<
[email protected]
>
Thu, 7 Jan 2016 14:34:41 +0000
(15:34 +0100)
My kbl stopped working because of this.
Fixes regression from
commit
2f693e28b8df69f67beced5e18bb2b91c2bfcec2
Author: Damien Lespiau <
[email protected]
>
Date: Wed Nov 4 19:24:12 2015 +0200
drm/i915: Make turning on/off PW1 and Misc I/O part of the init/fini
sequences
Cc: Damien Lespiau <
[email protected]
>
Cc: Paulo Zanoni <
[email protected]
>
Cc: Patrik Jakobsson <
[email protected]
>
Cc: Imre Deak <
[email protected]
>
Signed-off-by: Michel Thierry <
[email protected]
>
Link:
http://patchwork.freedesktop.org/patch/msgid/
[email protected]
Reviewed-by: Damien Lespiau <
[email protected]
>
Signed-off-by: Daniel Vetter <
[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 ddbdbffe829a684eff8c2ef42a3cf29ccbf112d8..4b44e6862a2789f4ecd721c3003e13d8b5c27103 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_runtime_pm.c
+++ b/
drivers/gpu/drm/i915/intel_runtime_pm.c
@@
-1851,7
+1851,7
@@
void skl_pw1_misc_io_init(struct drm_i915_private *dev_priv)
{
struct i915_power_well *well;
- if (!
IS_SKYLAKE(dev_priv
))
+ if (!
(IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)
))
return;
well = lookup_power_well(dev_priv, SKL_DISP_PW_1);
@@
-1865,7
+1865,7
@@
void skl_pw1_misc_io_fini(struct drm_i915_private *dev_priv)
{
struct i915_power_well *well;
- if (!
IS_SKYLAKE(dev_priv
))
+ if (!
(IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)
))
return;
well = lookup_power_well(dev_priv, SKL_DISP_PW_1);