All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH 01/24] drm/i915: Disable outputs during unregister
@ 2020-12-04 14:02 Chris Wilson
  2020-12-04 14:02   ` [Intel-gfx] " Chris Wilson
                   ` (25 more replies)
  0 siblings, 26 replies; 33+ messages in thread
From: Chris Wilson @ 2020-12-04 14:02 UTC (permalink / raw)
  To: intel-gfx; +Cc: Chris Wilson

Switch off the scanout during driver unregister, so we can shutdown the
HW immediately for unbind.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/i915_drv.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 320856b665a1..62d188e5cb8d 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -738,6 +738,7 @@ static void i915_driver_unregister(struct drm_i915_private *dev_priv)
 	 * events.
 	 */
 	drm_kms_helper_poll_fini(&dev_priv->drm);
+	drm_atomic_helper_shutdown(&dev_priv->drm);
 
 	intel_gt_driver_unregister(&dev_priv->gt);
 	acpi_video_unregister();
-- 
2.20.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2020-12-04 16:23 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-04 14:02 [Intel-gfx] [PATCH 01/24] drm/i915: Disable outputs during unregister Chris Wilson
2020-12-04 14:02 ` [PATCH 02/24] drm/i915/gt: Ignore repeated attempts to suspend request flow across reset Chris Wilson
2020-12-04 14:02   ` [Intel-gfx] " Chris Wilson
2020-12-04 15:03   ` Mika Kuoppala
2020-12-04 15:03     ` Mika Kuoppala
2020-12-04 14:02 ` [PATCH 03/24] drm/i915/gt: Cancel the preemption timeout on responding to it Chris Wilson
2020-12-04 14:02   ` [Intel-gfx] " Chris Wilson
2020-12-04 15:04   ` Mika Kuoppala
2020-12-04 15:04     ` Mika Kuoppala
2020-12-04 14:02 ` [Intel-gfx] [PATCH 04/24] drm/i915/gt: Include reset failures in the trace Chris Wilson
2020-12-04 14:02 ` [Intel-gfx] [PATCH 05/24] drm/i915/gt: Clear the execlists timers upon reset Chris Wilson
2020-12-04 14:02 ` [Intel-gfx] [PATCH 06/24] drm/i915/gt: Replace direct submit with direct call to tasklet Chris Wilson
2020-12-04 14:02 ` [Intel-gfx] [PATCH 07/24] drm/i915/gt: Use virtual_engine during execlists_dequeue Chris Wilson
2020-12-04 14:02 ` [Intel-gfx] [PATCH 08/24] drm/i915/gt: Decouple inflight virtual engines Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 09/24] drm/i915/gt: Defer schedule_out until after the next dequeue Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 10/24] drm/i915/gt: Remove virtual breadcrumb before transfer Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 11/24] drm/i915/gt: Shrink the critical section for irq signaling Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 12/24] drm/i915/gt: Resubmit the virtual engine on schedule-out Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 13/24] drm/i915/gt: Simplify virtual engine handling for execlists_hold() Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 14/24] drm/i915/gt: ce->inflight updates are now serialised Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 15/24] drm/i915/gem: Drop free_work for GEM contexts Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 16/24] drm/i915/gt: Track the overall awake/busy time Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 17/24] drm/i915: Encode fence specific waitqueue behaviour into the wait.flags Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 18/24] drm/i915/gt: Track all timelines created using the HWSP Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 19/24] drm/i915/gt: Wrap intel_timeline.has_initial_breadcrumb Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 20/24] drm/i915/gt: Track timeline GGTT offset separately from subpage offset Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 21/24] drm/i915/gt: Add timeline "mode" Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 22/24] drm/i915/gt: Use indices for writing into relative timelines Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 23/24] drm/i915/selftests: Exercise relative timeline modes Chris Wilson
2020-12-04 14:03 ` [Intel-gfx] [PATCH 24/24] drm/i915/gt: Use ppHWSP for unshared non-semaphore related timelines Chris Wilson
2020-12-04 15:52 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [01/24] drm/i915: Disable outputs during unregister Patchwork
2020-12-04 15:53 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-12-04 16:23 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork

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.