From: Lyude Paul <lyude@redhat.com>
To: Peter Ujfalusi <peter.ujfalusi@ti.com>,
bskeggs@redhat.com, airlied@linux.ie
Cc: nouveau@lists.freedesktop.org, Gleb Nemshilov <gleb@fastmail.com>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
Dave Airlie <airlied@redhat.com>
Subject: Re: [PATCH] drm/nouveau: Fix drm poll_helper handling
Date: Mon, 15 May 2017 10:11:36 -0400 [thread overview]
Message-ID: <1494857496.14698.0.camel@redhat.com> (raw)
In-Reply-To: <20170515090431.32325-1-peter.ujfalusi@ti.com>
Good catch!
Reviewed-by: Lyude <lyude@redhat.com>
On Mon, 2017-05-15 at 12:04 +0300, Peter Ujfalusi wrote:
> Commit cae9ff036eea effectively disabled the drm poll_helper by
> checking
> the wrong flag to see if the driver should enable the poll or not:
> mode_config.poll_enabled is only set to true by poll_init and it is
> not
> indicating if the poll is enabled or not.
> nouveau_display_create() will initialize the poll and going to
> disable it
> right away. After poll_init() the mode_config.poll_enabled will be
> true,
> but the poll itself is disabled.
>
> To avoid the race caused by calling the poll_enable() from different
> paths,
> this patch will enable the poll from one place, in the
> nouveau_display_hpd_work().
>
> In case the pm_runtime is disabled we will enable the poll in
> nouveau_drm_load() once.
>
> Fixes: cae9ff036eea ("drm/nouveau: Don't enabling polling twice on
> runtime resume")
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> Cc: Lyude Paul <lyude@redhat.com>
> Cc: Dave Airlie <airlied@redhat.com>
> Cc: Gleb Nemshilov <gleb@fastmail.com>
> ---
> Hi,
>
> this patch was created and tested in connection of:
> https://bugs.freedesktop.org/show_bug.cgi?id=98690
>
> Regards,
> Peter
>
> drivers/gpu/drm/nouveau/nouveau_display.c | 6 ++----
> drivers/gpu/drm/nouveau/nouveau_drm.c | 6 +++---
> 2 files changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c
> b/drivers/gpu/drm/nouveau/nouveau_display.c
> index 21b10f9840c9..549763f5e17d 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_display.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_display.c
> @@ -360,6 +360,8 @@ nouveau_display_hpd_work(struct work_struct
> *work)
> pm_runtime_get_sync(drm->dev->dev);
>
> drm_helper_hpd_irq_event(drm->dev);
> + /* enable polling for external displays */
> + drm_kms_helper_poll_enable(drm->dev);
>
> pm_runtime_mark_last_busy(drm->dev->dev);
> pm_runtime_put_sync(drm->dev->dev);
> @@ -413,10 +415,6 @@ nouveau_display_init(struct drm_device *dev)
> if (ret)
> return ret;
>
> - /* enable polling for external displays */
> - if (!dev->mode_config.poll_enabled)
> - drm_kms_helper_poll_enable(dev);
> -
> /* enable hotplug interrupts */
> list_for_each_entry(connector, &dev-
> >mode_config.connector_list, head) {
> struct nouveau_connector *conn =
> nouveau_connector(connector);
> diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c
> b/drivers/gpu/drm/nouveau/nouveau_drm.c
> index 2b6ac24ce690..36268e1802b5 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_drm.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
> @@ -502,6 +502,9 @@ nouveau_drm_load(struct drm_device *dev, unsigned
> long flags)
> pm_runtime_allow(dev->dev);
> pm_runtime_mark_last_busy(dev->dev);
> pm_runtime_put(dev->dev);
> + } else {
> + /* enable polling for external displays */
> + drm_kms_helper_poll_enable(dev);
> }
> return 0;
>
> @@ -774,9 +777,6 @@ nouveau_pmops_runtime_resume(struct device *dev)
>
> ret = nouveau_do_resume(drm_dev, true);
>
> - if (!drm_dev->mode_config.poll_enabled)
> - drm_kms_helper_poll_enable(drm_dev);
> -
> /* do magic */
> nvif_mask(&device->object, 0x088488, (1 << 25), (1 << 25));
> vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_ON);
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
WARNING: multiple messages have this Message-ID (diff)
From: Lyude Paul <lyude@redhat.com>
To: Peter Ujfalusi <peter.ujfalusi@ti.com>,
bskeggs@redhat.com, airlied@linux.ie
Cc: dri-devel@lists.freedesktop.org, nouveau@lists.freedesktop.org,
linux-kernel@vger.kernel.org, Dave Airlie <airlied@redhat.com>,
Gleb Nemshilov <gleb@fastmail.com>
Subject: Re: [PATCH] drm/nouveau: Fix drm poll_helper handling
Date: Mon, 15 May 2017 10:11:36 -0400 [thread overview]
Message-ID: <1494857496.14698.0.camel@redhat.com> (raw)
In-Reply-To: <20170515090431.32325-1-peter.ujfalusi@ti.com>
Good catch!
Reviewed-by: Lyude <lyude@redhat.com>
On Mon, 2017-05-15 at 12:04 +0300, Peter Ujfalusi wrote:
> Commit cae9ff036eea effectively disabled the drm poll_helper by
> checking
> the wrong flag to see if the driver should enable the poll or not:
> mode_config.poll_enabled is only set to true by poll_init and it is
> not
> indicating if the poll is enabled or not.
> nouveau_display_create() will initialize the poll and going to
> disable it
> right away. After poll_init() the mode_config.poll_enabled will be
> true,
> but the poll itself is disabled.
>
> To avoid the race caused by calling the poll_enable() from different
> paths,
> this patch will enable the poll from one place, in the
> nouveau_display_hpd_work().
>
> In case the pm_runtime is disabled we will enable the poll in
> nouveau_drm_load() once.
>
> Fixes: cae9ff036eea ("drm/nouveau: Don't enabling polling twice on
> runtime resume")
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> Cc: Lyude Paul <lyude@redhat.com>
> Cc: Dave Airlie <airlied@redhat.com>
> Cc: Gleb Nemshilov <gleb@fastmail.com>
> ---
> Hi,
>
> this patch was created and tested in connection of:
> https://bugs.freedesktop.org/show_bug.cgi?id=98690
>
> Regards,
> Peter
>
> drivers/gpu/drm/nouveau/nouveau_display.c | 6 ++----
> drivers/gpu/drm/nouveau/nouveau_drm.c | 6 +++---
> 2 files changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c
> b/drivers/gpu/drm/nouveau/nouveau_display.c
> index 21b10f9840c9..549763f5e17d 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_display.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_display.c
> @@ -360,6 +360,8 @@ nouveau_display_hpd_work(struct work_struct
> *work)
> pm_runtime_get_sync(drm->dev->dev);
>
> drm_helper_hpd_irq_event(drm->dev);
> + /* enable polling for external displays */
> + drm_kms_helper_poll_enable(drm->dev);
>
> pm_runtime_mark_last_busy(drm->dev->dev);
> pm_runtime_put_sync(drm->dev->dev);
> @@ -413,10 +415,6 @@ nouveau_display_init(struct drm_device *dev)
> if (ret)
> return ret;
>
> - /* enable polling for external displays */
> - if (!dev->mode_config.poll_enabled)
> - drm_kms_helper_poll_enable(dev);
> -
> /* enable hotplug interrupts */
> list_for_each_entry(connector, &dev-
> >mode_config.connector_list, head) {
> struct nouveau_connector *conn =
> nouveau_connector(connector);
> diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c
> b/drivers/gpu/drm/nouveau/nouveau_drm.c
> index 2b6ac24ce690..36268e1802b5 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_drm.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
> @@ -502,6 +502,9 @@ nouveau_drm_load(struct drm_device *dev, unsigned
> long flags)
> pm_runtime_allow(dev->dev);
> pm_runtime_mark_last_busy(dev->dev);
> pm_runtime_put(dev->dev);
> + } else {
> + /* enable polling for external displays */
> + drm_kms_helper_poll_enable(dev);
> }
> return 0;
>
> @@ -774,9 +777,6 @@ nouveau_pmops_runtime_resume(struct device *dev)
>
> ret = nouveau_do_resume(drm_dev, true);
>
> - if (!drm_dev->mode_config.poll_enabled)
> - drm_kms_helper_poll_enable(drm_dev);
> -
> /* do magic */
> nvif_mask(&device->object, 0x088488, (1 << 25), (1 << 25));
> vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_ON);
next prev parent reply other threads:[~2017-05-15 14:11 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-15 9:04 [PATCH] drm/nouveau: Fix drm poll_helper handling Peter Ujfalusi
2017-05-15 9:04 ` Peter Ujfalusi
2017-05-15 14:11 ` Lyude Paul [this message]
2017-05-15 14:11 ` Lyude Paul
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1494857496.14698.0.camel@redhat.com \
--to=lyude@redhat.com \
--cc=airlied@linux.ie \
--cc=airlied@redhat.com \
--cc=bskeggs@redhat.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=gleb@fastmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nouveau@lists.freedesktop.org \
--cc=peter.ujfalusi@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.