diff options
author | Lukas Wunner <lukas@wunner.de> | 2016-03-09 06:52:53 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-03-30 02:23:41 -0400 |
commit | a7442b93cf32c1e1ddb721a26cd1f92302e2a222 (patch) | |
tree | ed0e8f9b8cf0a4b151dacbf94c1e9f608e8ca3f5 | |
parent | 583349896482ed1d6af3cd75b2a15bb334df2777 (diff) |
drm/i915: Fix races on fbdev
The ->lastclose callback invokes intel_fbdev_restore_mode() and has
been witnessed to run before intel_fbdev_initial_config_async()
has finished.
We might likewise receive hotplug events before we've had a chance to
fully set up the fbdev.
Fix by waiting for the asynchronous thread to finish.
v2:
An async_synchronize_full() was also added to intel_fbdev_set_suspend()
in v1 which turned out to be entirely gratuitous. It caused a deadlock
on suspend (discovered by CI, thanks to Damien Lespiau and Tomi Sarvela
for CI support) and was unnecessary since a device is never suspended
until its ->probe callback (and all asynchronous tasks it scheduled)
have finished. See dpm_prepare(), which calls wait_for_device_probe(),
which calls async_synchronize_full().
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93580
Reported-by: Gustav Fägerlind <gustav.fagerlind@gmail.com>
Reported-by: "Li, Weinan Z" <weinan.z.li@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: stable@vger.kernel.org
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20160309115147.67B2B6E0D3@gabe.freedesktop.org
-rw-r--r-- | drivers/gpu/drm/i915/i915_dma.c | 8 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/intel_fbdev.c | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index fc8ac98c12d7..1ac1ea969eec 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
@@ -493,11 +493,9 @@ static int i915_load_modeset_init(struct drm_device *dev) | |||
493 | * Some ports require correctly set-up hpd registers for detection to | 493 | * Some ports require correctly set-up hpd registers for detection to |
494 | * work properly (leading to ghost connected connector status), e.g. VGA | 494 | * work properly (leading to ghost connected connector status), e.g. VGA |
495 | * on gm45. Hence we can only set up the initial fbdev config after hpd | 495 | * on gm45. Hence we can only set up the initial fbdev config after hpd |
496 | * irqs are fully enabled. Now we should scan for the initial config | 496 | * irqs are fully enabled. We protect the fbdev initial config scanning |
497 | * only once hotplug handling is enabled, but due to screwed-up locking | 497 | * against hotplug events by waiting in intel_fbdev_output_poll_changed |
498 | * around kms/fbdev init we can't protect the fdbev initial config | 498 | * until the asynchronous thread has finished. |
499 | * scanning against hotplug events. Hence do this first and ignore the | ||
500 | * tiny window where we will loose hotplug notifactions. | ||
501 | */ | 499 | */ |
502 | intel_fbdev_initial_config_async(dev); | 500 | intel_fbdev_initial_config_async(dev); |
503 | 501 | ||
diff --git a/drivers/gpu/drm/i915/intel_fbdev.c b/drivers/gpu/drm/i915/intel_fbdev.c index 5e0dcb3961be..153ea7a3fcf6 100644 --- a/drivers/gpu/drm/i915/intel_fbdev.c +++ b/drivers/gpu/drm/i915/intel_fbdev.c | |||
@@ -808,6 +808,8 @@ void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous | |||
808 | void intel_fbdev_output_poll_changed(struct drm_device *dev) | 808 | void intel_fbdev_output_poll_changed(struct drm_device *dev) |
809 | { | 809 | { |
810 | struct drm_i915_private *dev_priv = dev->dev_private; | 810 | struct drm_i915_private *dev_priv = dev->dev_private; |
811 | |||
812 | async_synchronize_full(); | ||
811 | if (dev_priv->fbdev) | 813 | if (dev_priv->fbdev) |
812 | drm_fb_helper_hotplug_event(&dev_priv->fbdev->helper); | 814 | drm_fb_helper_hotplug_event(&dev_priv->fbdev->helper); |
813 | } | 815 | } |
@@ -819,6 +821,7 @@ void intel_fbdev_restore_mode(struct drm_device *dev) | |||
819 | struct intel_fbdev *ifbdev = dev_priv->fbdev; | 821 | struct intel_fbdev *ifbdev = dev_priv->fbdev; |
820 | struct drm_fb_helper *fb_helper; | 822 | struct drm_fb_helper *fb_helper; |
821 | 823 | ||
824 | async_synchronize_full(); | ||
822 | if (!ifbdev) | 825 | if (!ifbdev) |
823 | return; | 826 | return; |
824 | 827 | ||