* [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled
@ 2015-08-25 8:51 Patrik Jakobsson
2015-08-25 14:33 ` Daniel Vetter
2015-08-29 7:00 ` shuang.he
0 siblings, 2 replies; 5+ messages in thread
From: Patrik Jakobsson @ 2015-08-25 8:51 UTC (permalink / raw)
To: intel-gfx
It's not allowed to have legacy suspend/resume hooked up when
DRIVER_MODESET is set. Doing so results in a warning introduced by the
commit below.
commit e8b4855b5dd3e285d0ec18ed15468025abc1be9a
Author: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Date: Thu Aug 13 17:06:39 2015 -0300
drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers
Legacy s/r hooks are only used for shadow-attaching drivers, warn
when a KMS driver tries to use them.
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
---
drivers/gpu/drm/i915/i915_drv.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 1d88745..6e3391c 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -1706,6 +1706,12 @@ static int __init i915_init(void)
if (i915.modeset == 0)
driver.driver_features &= ~DRIVER_MODESET;
+ /* Unhook legacy suspend and resume when KMS is enabled */
+ if (driver.driver_features & DRIVER_MODESET) {
+ driver.suspend = NULL;
+ driver.resume = NULL;
+ }
+
#ifdef CONFIG_VGA_CONSOLE
if (vgacon_text_force() && i915.modeset == -1)
driver.driver_features &= ~DRIVER_MODESET;
--
2.1.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled
2015-08-25 8:51 [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled Patrik Jakobsson
@ 2015-08-25 14:33 ` Daniel Vetter
2015-08-25 16:41 ` Jani Nikula
2015-08-29 7:00 ` shuang.he
1 sibling, 1 reply; 5+ messages in thread
From: Daniel Vetter @ 2015-08-25 14:33 UTC (permalink / raw)
To: Patrik Jakobsson; +Cc: intel-gfx
On Tue, Aug 25, 2015 at 10:51:10AM +0200, Patrik Jakobsson wrote:
> It's not allowed to have legacy suspend/resume hooked up when
> DRIVER_MODESET is set. Doing so results in a warning introduced by the
> commit below.
>
> commit e8b4855b5dd3e285d0ec18ed15468025abc1be9a
> Author: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> Date: Thu Aug 13 17:06:39 2015 -0300
>
> drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers
>
> Legacy s/r hooks are only used for shadow-attaching drivers, warn
> when a KMS driver tries to use them.
>
> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>
> Signed-off-by: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
There is no legacy KMS any more, please just kill the hooks entirely.
-Daniel
> ---
> drivers/gpu/drm/i915/i915_drv.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index 1d88745..6e3391c 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -1706,6 +1706,12 @@ static int __init i915_init(void)
> if (i915.modeset == 0)
> driver.driver_features &= ~DRIVER_MODESET;
>
> + /* Unhook legacy suspend and resume when KMS is enabled */
> + if (driver.driver_features & DRIVER_MODESET) {
> + driver.suspend = NULL;
> + driver.resume = NULL;
> + }
> +
> #ifdef CONFIG_VGA_CONSOLE
> if (vgacon_text_force() && i915.modeset == -1)
> driver.driver_features &= ~DRIVER_MODESET;
> --
> 2.1.4
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled
2015-08-25 14:33 ` Daniel Vetter
@ 2015-08-25 16:41 ` Jani Nikula
2015-08-25 18:22 ` Patrik Jakobsson
0 siblings, 1 reply; 5+ messages in thread
From: Jani Nikula @ 2015-08-25 16:41 UTC (permalink / raw)
To: Daniel Vetter, Patrik Jakobsson; +Cc: intel-gfx
On Tue, 25 Aug 2015, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Tue, Aug 25, 2015 at 10:51:10AM +0200, Patrik Jakobsson wrote:
>> It's not allowed to have legacy suspend/resume hooked up when
>> DRIVER_MODESET is set. Doing so results in a warning introduced by the
>> commit below.
>>
>> commit e8b4855b5dd3e285d0ec18ed15468025abc1be9a
>> Author: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
>> Date: Thu Aug 13 17:06:39 2015 -0300
>>
>> drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers
>>
>> Legacy s/r hooks are only used for shadow-attaching drivers, warn
>> when a KMS driver tries to use them.
>>
>> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
>> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>>
>> Signed-off-by: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
>
> There is no legacy KMS any more, please just kill the hooks entirely.
http://mid.gmane.org/55D1B0C6.3030906@linux.intel.com
BR,
Jani.
> -Daniel
>
>> ---
>> drivers/gpu/drm/i915/i915_drv.c | 6 ++++++
>> 1 file changed, 6 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
>> index 1d88745..6e3391c 100644
>> --- a/drivers/gpu/drm/i915/i915_drv.c
>> +++ b/drivers/gpu/drm/i915/i915_drv.c
>> @@ -1706,6 +1706,12 @@ static int __init i915_init(void)
>> if (i915.modeset == 0)
>> driver.driver_features &= ~DRIVER_MODESET;
>>
>> + /* Unhook legacy suspend and resume when KMS is enabled */
>> + if (driver.driver_features & DRIVER_MODESET) {
>> + driver.suspend = NULL;
>> + driver.resume = NULL;
>> + }
>> +
>> #ifdef CONFIG_VGA_CONSOLE
>> if (vgacon_text_force() && i915.modeset == -1)
>> driver.driver_features &= ~DRIVER_MODESET;
>> --
>> 2.1.4
>>
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled
2015-08-25 16:41 ` Jani Nikula
@ 2015-08-25 18:22 ` Patrik Jakobsson
0 siblings, 0 replies; 5+ messages in thread
From: Patrik Jakobsson @ 2015-08-25 18:22 UTC (permalink / raw)
To: Jani Nikula; +Cc: Intel Graphics Development
On Tue, Aug 25, 2015 at 6:41 PM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> On Tue, 25 Aug 2015, Daniel Vetter <daniel@ffwll.ch> wrote:
>> On Tue, Aug 25, 2015 at 10:51:10AM +0200, Patrik Jakobsson wrote:
>>> It's not allowed to have legacy suspend/resume hooked up when
>>> DRIVER_MODESET is set. Doing so results in a warning introduced by the
>>> commit below.
>>>
>>> commit e8b4855b5dd3e285d0ec18ed15468025abc1be9a
>>> Author: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
>>> Date: Thu Aug 13 17:06:39 2015 -0300
>>>
>>> drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers
>>>
>>> Legacy s/r hooks are only used for shadow-attaching drivers, warn
>>> when a KMS driver tries to use them.
>>>
>>> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
>>> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>>>
>>> Signed-off-by: Patrik Jakobsson <patrik.jakobsson@linux.intel.com>
>>
>> There is no legacy KMS any more, please just kill the hooks entirely.
>
> http://mid.gmane.org/55D1B0C6.3030906@linux.intel.com
>
> BR,
> Jani.
Perfect, pick that one. Any reason why it's not merged yet?
-Patrik
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled
2015-08-25 8:51 [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled Patrik Jakobsson
2015-08-25 14:33 ` Daniel Vetter
@ 2015-08-29 7:00 ` shuang.he
1 sibling, 0 replies; 5+ messages in thread
From: shuang.he @ 2015-08-29 7:00 UTC (permalink / raw)
To: shuang.he, julianx.dumez, christophe.sureau, lei.a.liu, intel-gfx,
patrik.jakobsson
Tested-By: Intel Graphics QA PRTS (Patch Regression Test System Contact: shuang.he@intel.com)
Task id: 7249
-------------------------------------Summary-------------------------------------
Platform Delta drm-intel-nightly Series Applied
ILK -1 302/302 301/302
SNB 315/315 315/315
IVB 336/336 336/336
BYT 283/283 283/283
HSW 378/378 378/378
-------------------------------------Detailed-------------------------------------
Platform Test drm-intel-nightly Series Applied
*ILK igt@kms_flip@wf_vblank-vs-modeset-interruptible PASS(1) DMESG_WARN(1)
Note: You need to pay more attention to line start with '*'
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-08-29 7:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-25 8:51 [PATCH] drm/i915: Unhook legacy suspend/resume when KMS is enabled Patrik Jakobsson
2015-08-25 14:33 ` Daniel Vetter
2015-08-25 16:41 ` Jani Nikula
2015-08-25 18:22 ` Patrik Jakobsson
2015-08-29 7:00 ` shuang.he
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox