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

Commit fce8d235 authored by Ville Syrjälä's avatar Ville Syrjälä
Browse files

drm/i915: Extract intel_cursor_check_surface()



Extract intel_cursor_check_surface() to better match the code layout
of the other plane types.

Reviewed-by: default avatarJosé Roberto de Souza <jose.souza@intel.com>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180907152413.15761-14-ville.syrjala@linux.intel.com
parent 25721f82
Loading
Loading
Loading
Loading
+29 −18
Original line number Original line Diff line number Diff line
@@ -9678,13 +9678,37 @@ static bool intel_cursor_size_ok(const struct intel_plane_state *plane_state)
		height > 0 && height <= config->cursor_height;
		height > 0 && height <= config->cursor_height;
}
}


static int intel_check_cursor(struct intel_crtc_state *crtc_state,
static int intel_cursor_check_surface(struct intel_plane_state *plane_state)
			      struct intel_plane_state *plane_state)
{
{
	const struct drm_framebuffer *fb = plane_state->base.fb;
	const struct drm_framebuffer *fb = plane_state->base.fb;
	unsigned int rotation = plane_state->base.rotation;
	unsigned int rotation = plane_state->base.rotation;
	int src_x, src_y;
	int src_x, src_y;
	u32 offset;
	u32 offset;

	intel_fill_fb_ggtt_view(&plane_state->view, fb, rotation);
	plane_state->color_plane[0].stride = intel_fb_pitch(fb, 0, rotation);

	src_x = plane_state->base.src_x >> 16;
	src_y = plane_state->base.src_y >> 16;

	intel_add_fb_offsets(&src_x, &src_y, plane_state, 0);
	offset = intel_plane_compute_aligned_offset(&src_x, &src_y,
						    plane_state, 0);

	if (src_x != 0 || src_y != 0) {
		DRM_DEBUG_KMS("Arbitrary cursor panning not supported\n");
		return -EINVAL;
	}

	plane_state->color_plane[0].offset = offset;

	return 0;
}

static int intel_check_cursor(struct intel_crtc_state *crtc_state,
			      struct intel_plane_state *plane_state)
{
	const struct drm_framebuffer *fb = plane_state->base.fb;
	int ret;
	int ret;


	if (fb && fb->modifier != DRM_FORMAT_MOD_LINEAR) {
	if (fb && fb->modifier != DRM_FORMAT_MOD_LINEAR) {
@@ -9707,22 +9731,9 @@ static int intel_check_cursor(struct intel_crtc_state *crtc_state,
	if (ret)
	if (ret)
		return ret;
		return ret;


	intel_fill_fb_ggtt_view(&plane_state->view, fb, rotation);
	ret = intel_cursor_check_surface(plane_state);
	plane_state->color_plane[0].stride = intel_fb_pitch(fb, 0, rotation);
	if (ret)

		return ret;
	src_x = plane_state->base.src_x >> 16;
	src_y = plane_state->base.src_y >> 16;

	intel_add_fb_offsets(&src_x, &src_y, plane_state, 0);
	offset = intel_plane_compute_aligned_offset(&src_x, &src_y,
						    plane_state, 0);

	if (src_x != 0 || src_y != 0) {
		DRM_DEBUG_KMS("Arbitrary cursor panning not supported\n");
		return -EINVAL;
	}

	plane_state->color_plane[0].offset = offset;


	return 0;
	return 0;
}
}