public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Damien Lespiau <damien.lespiau@intel.com>
To: sonika.jindal@intel.com
Cc: intel-gfx@lists.freedesktop.org,
	Sagar Kamble <sagar.a.kamble@intel.com>,
	dri-devel@lists.freedesktop.org
Subject: Re: [v2 10/11] drm/i915: Add 180 degree primary plane rotation support
Date: Fri, 4 Jul 2014 15:58:36 +0100	[thread overview]
Message-ID: <20140704145836.GG7634@strange.ger.corp.intel.com> (raw)
In-Reply-To: <1404467043-5072-11-git-send-email-sonika.jindal@intel.com>

On Fri, Jul 04, 2014 at 03:14:02PM +0530, sonika.jindal@intel.com wrote:
> +static int intel_primary_plane_set_property(struct drm_plane *plane,
> +				    struct drm_property *prop,
> +				    uint64_t val)
> +{
> +	struct drm_device *dev = plane->dev;
> +	struct drm_i915_private *dev_priv = dev->dev_private;
> +	struct intel_plane *intel_plane = to_intel_plane(plane);
> +	struct intel_crtc *intel_crtc = to_intel_crtc(plane->crtc);
> +	struct drm_crtc *crtc = &intel_crtc->base;
> +	uint64_t old_val;
> +
> +	if (prop == plane->rotation_property) {
> +		/* exactly one rotation angle please */
> +		if (hweight32(val & 0xf) != 1)
> +			return -EINVAL;
> +
> +		old_val = intel_plane->rotation;
> +		intel_plane->rotation = val;
> +
> +		if (intel_crtc->active && intel_crtc->primary_enabled) {
> +			intel_crtc_wait_for_pending_flips(crtc);
> +
> +		/* FBC does not work on some platforms for rotated planes */
> +			if (INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev)) {
> +				if (dev_priv->fbc.plane == intel_crtc->plane &&
> +					intel_plane->rotation != BIT(DRM_ROTATE_0))
> +					intel_disable_fbc(dev);
> +				/* If rotation was set earlier and new rotation is 0, we might
> +				 * have disabled fbc earlier. So update it now */
> +				else if (intel_plane->rotation == BIT(DRM_ROTATE_0) &&
> +					old_val != BIT(DRM_ROTATE_0))
> +					intel_update_fbc(dev);

I see a intel_update_fbc() called with the struct_mutext lock elsewhere,
don't we need it here as well?

        mutex_lock(&dev->struct_mutex);
        intel_update_fbc(dev);
        mutex_unlock(&dev->struct_mutex);

-- 
Damien

  reply	other threads:[~2014-07-04 14:58 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-04  9:43 [v2 00/11] Support for 180 degree HW rotation sonika.jindal
2014-07-04  9:43 ` [v2 01/11] drm: Move DRM_ROTATE bits out of omapdrm into drm_crtc.h sonika.jindal
2014-07-04  9:43 ` [v2 02/11] drm: Add support_bits parameter to drm_property_create_bitmask() sonika.jindal
2014-07-04  9:43 ` [v2 03/11] drm: Add drm_mode_create_rotation_property() sonika.jindal
2014-07-04  9:43 ` [v2 04/11] drm/omap: Switch omapdrm over to drm_mode_create_rotation_property() sonika.jindal
2014-07-04  9:43 ` [v2 05/11] drm: Add drm_rect rotation functions sonika.jindal
2014-07-04  9:43 ` [v2 06/11] drm: Add drm_rotation_simplify() sonika.jindal
2014-07-04  9:43 ` [v2 07/11] drm/i915: Add 180 degree sprite rotation support sonika.jindal
2014-07-04  9:44 ` [v2 08/11] drm/i915: Make intel_plane_restore() return an error sonika.jindal
2014-07-04  9:44 ` [v2 09/11] drm/i915: Add rotation property for sprites sonika.jindal
2014-07-04  9:44 ` [v2 10/11] drm/i915: Add 180 degree primary plane rotation support sonika.jindal
2014-07-04 14:58   ` Damien Lespiau [this message]
2014-07-06  8:08     ` Jindal, Sonika
2014-07-07  5:31     ` [PATCH] " sonika.jindal
2014-07-04  9:44 ` [v2 11/11] drm: Resetting rotation property sonika.jindal
2014-07-04 15:19   ` Damien Lespiau
2014-07-04 15:06 ` [v2 00/11] Support for 180 degree HW rotation Damien Lespiau
2014-07-06  8:11   ` Jindal, Sonika
2014-07-07 13:38     ` Damien Lespiau

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140704145836.GG7634@strange.ger.corp.intel.com \
    --to=damien.lespiau@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=sagar.a.kamble@intel.com \
    --cc=sonika.jindal@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox