Re: [PATCH] drm/nouveau: Fix drm poll_helper handling

From: Lyude Paul
Date: Mon May 15 2017 - 10:11:49 EST


Good catch!

Reviewed-by: Lyude <lyude@xxxxxxxxxx>

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@xxxxxx>
> Cc: Lyude Paul <lyude@xxxxxxxxxx>
> Cc: Dave Airlie <airlied@xxxxxxxxxx>
> Cc: Gleb Nemshilov <gleb@xxxxxxxxxxxx>
> ---
> 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);