Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 143f73b3 authored by Maarten Lankhorst's avatar Maarten Lankhorst
Browse files

drm/i915: Rework intel_crtc_page_flip to be almost atomic, v3.



Create a work structure that will be used for all changes. This will
be used later on in the atomic commit function.

Changes since v1:
- Free old_crtc_state from unpin_work_fn properly.
Changes since v2:
- Add hunk for calling hw state verifier.
- Add missing support for color spaces.

Signed-off-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1463490484-19540-12-git-send-email-maarten.lankhorst@linux.intel.com


Reviewed-by: default avatarPatrik Jakobsson <patrik.jakobsson@linux.intel.com>
parent 84fc494b
Loading
Loading
Loading
Loading
+25 −11
Original line number Original line Diff line number Diff line
@@ -598,29 +598,43 @@ static void i915_dump_pageflip(struct seq_file *m,
			       struct intel_flip_work *work)
			       struct intel_flip_work *work)
{
{
	const char pipe = pipe_name(crtc->pipe);
	const char pipe = pipe_name(crtc->pipe);
	const char plane = plane_name(crtc->plane);
	u32 pending;
	u32 pending;
	u32 addr;
	u32 addr;
	int i;


	pending = atomic_read(&work->pending);
	pending = atomic_read(&work->pending);
	if (pending) {
	if (pending) {
		seq_printf(m, "Flip ioctl preparing on pipe %c (plane %c)\n",
		seq_printf(m, "Flip ioctl preparing on pipe %c (plane %c)\n",
			   pipe, plane);
			   pipe, plane_name(crtc->plane));
	} else {
	} else {
		seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
		seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
			   pipe, plane);
			   pipe, plane_name(crtc->plane));
	}
	}
	if (work->flip_queued_req) {
		struct intel_engine_cs *engine = i915_gem_request_get_engine(work->flip_queued_req);


		seq_printf(m, "Flip queued on %s at seqno %x, next seqno %x [current breadcrumb %x], completed? %d\n",

	for (i = 0; i < work->num_planes; i++) {
		struct intel_plane_state *old_plane_state = work->old_plane_state[i];
		struct drm_plane *plane = old_plane_state->base.plane;
		struct drm_i915_gem_request *req = old_plane_state->wait_req;
		struct intel_engine_cs *engine;

		seq_printf(m, "[PLANE:%i] part of flip.\n", plane->base.id);

		if (!req) {
			seq_printf(m, "Plane not associated with any engine\n");
			continue;
		}

		engine = i915_gem_request_get_engine(req);

		seq_printf(m, "Plane blocked on %s at seqno %x, next seqno %x [current breadcrumb %x], completed? %d\n",
			   engine->name,
			   engine->name,
			   i915_gem_request_get_seqno(work->flip_queued_req),
			   i915_gem_request_get_seqno(req),
			   dev_priv->next_seqno,
			   dev_priv->next_seqno,
			   engine->get_seqno(engine),
			   engine->get_seqno(engine),
			   i915_gem_request_completed(work->flip_queued_req, true));
			   i915_gem_request_completed(req, true));
	} else
	}
		seq_printf(m, "Flip not associated with any ring\n");

	seq_printf(m, "Flip queued on frame %d, (was ready on frame %d), now %d\n",
	seq_printf(m, "Flip queued on frame %d, (was ready on frame %d), now %d\n",
		   work->flip_queued_vblank,
		   work->flip_queued_vblank,
		   work->flip_ready_vblank,
		   work->flip_ready_vblank,
@@ -633,7 +647,7 @@ static void i915_dump_pageflip(struct seq_file *m,
		addr = I915_READ(DSPADDR(crtc->plane));
		addr = I915_READ(DSPADDR(crtc->plane));
	seq_printf(m, "Current scanout address 0x%08x\n", addr);
	seq_printf(m, "Current scanout address 0x%08x\n", addr);


	if (work->pending_flip_obj) {
	if (work->flip_queued_req) {
		seq_printf(m, "New framebuffer address 0x%08lx\n", (long)work->gtt_offset);
		seq_printf(m, "New framebuffer address 0x%08lx\n", (long)work->gtt_offset);
		seq_printf(m, "MMIO update completed? %d\n",  addr == work->gtt_offset);
		seq_printf(m, "MMIO update completed? %d\n",  addr == work->gtt_offset);
	}
	}