linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH 12/16] drm/vblank: Switch to bool in_vblank_irq in get_vblank_timestamp
           [not found] <20170322083617.13361-1-daniel.vetter@ffwll.ch>
           [not found] ` <20170322083617.13361-1-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
    @ 2017-03-22  8:36 ` Daniel Vetter
      2017-03-22 18:23   ` Ville Syrjälä
      2017-03-22  8:36 ` [PATCH 14/16] drm/vblank: drop the mode argument from drm_calc_vbltimestamp_from_scanoutpos Daniel Vetter
      2 siblings, 1 reply; 19+ messages in thread
    From: Daniel Vetter @ 2017-03-22  8:36 UTC (permalink / raw)
      To: Intel Graphics Development
      Cc: DRI Development, Daniel Vetter, Mario Kleiner, Eric Anholt,
    	Rob Clark, linux-arm-msm, freedreno, Alex Deucher,
    	Christian König, Ben Skeggs, Daniel Vetter
    
    It's overkill to have a flag parameter which is essentially used just
    as a boolean. This takes care of core + adjusting drivers.
    
    Adjusting the scanout position callback is a bit harder, since radeon
    also supplies it's own driver-private flags in there.
    
    Cc: Mario Kleiner <mario.kleiner@tuebingen.mpg.de>
    Cc: Eric Anholt <eric@anholt.net>
    Cc: Rob Clark <robdclark@gmail.com>
    Cc: linux-arm-msm@vger.kernel.org
    Cc: freedreno@lists.freedesktop.org
    Cc: Alex Deucher <alexander.deucher@amd.com>
    Cc: Christian König <christian.koenig@amd.com>
    Cc: Ben Skeggs <bskeggs@redhat.com>
    Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
    ---
     drivers/gpu/drm/amd/amdgpu/amdgpu.h       |  2 +-
     drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c   |  6 ++---
     drivers/gpu/drm/drm_irq.c                 | 41 +++++++++++++++++--------------
     drivers/gpu/drm/i915/i915_irq.c           |  4 +--
     drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c   |  4 +--
     drivers/gpu/drm/nouveau/nouveau_display.c |  5 ++--
     drivers/gpu/drm/nouveau/nouveau_display.h |  2 +-
     drivers/gpu/drm/radeon/radeon_drv.c       |  2 +-
     drivers/gpu/drm/radeon/radeon_kms.c       |  4 +--
     drivers/gpu/drm/vc4/vc4_crtc.c            |  4 +--
     drivers/gpu/drm/vc4/vc4_drv.h             |  2 +-
     include/drm/drm_drv.h                     | 11 ++++-----
     include/drm/drm_irq.h                     |  2 +-
     13 files changed, 46 insertions(+), 43 deletions(-)
    
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
    index acd8631d8024..edb3bb83e1a9 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
    @@ -1771,7 +1771,7 @@ void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
     bool amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
     				     int *max_error,
     				     struct timeval *vblank_time,
    -				     unsigned flags);
    +				     bool in_vblank_irq);
     long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
     			     unsigned long arg);
     
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
    index ac42f707c046..ad295e822d45 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
    @@ -834,7 +834,7 @@ void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
      * @crtc: crtc to get the timestamp for
      * @max_error: max error
      * @vblank_time: time value
    - * @flags: flags passed to the driver
    + * @in_vblank_irq: called from drm_handle_vblank()
      *
      * Gets the timestamp on the requested crtc based on the
      * scanout position.  (all asics).
    @@ -843,7 +843,7 @@ void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
     bool amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
     				     int *max_error,
     				     struct timeval *vblank_time,
    -				     unsigned flags)
    +				     bool in_vblank_irq)
     {
     	struct drm_crtc *crtc;
     	struct amdgpu_device *adev = dev->dev_private;
    @@ -864,7 +864,7 @@ bool amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
     
     	/* Helper routine in DRM core does all the work: */
     	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
    -						     vblank_time, flags,
    +						     vblank_time, in_vblank_irq,
     						     &crtc->hwmode);
     }
     
    diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
    index 2121ea29e1b2..059c3346db68 100644
    --- a/drivers/gpu/drm/drm_irq.c
    +++ b/drivers/gpu/drm/drm_irq.c
    @@ -54,7 +54,7 @@
     
     static bool
     drm_get_last_vbltimestamp(struct drm_device *dev, unsigned int pipe,
    -			  struct timeval *tvblank, unsigned flags);
    +			  struct timeval *tvblank, bool in_vblank_irq);
     
     static unsigned int drm_timestamp_precision = 20;  /* Default to 20 usecs. */
     
    @@ -138,7 +138,7 @@ static void drm_reset_vblank_timestamp(struct drm_device *dev, unsigned int pipe
     	 */
     	do {
     		cur_vblank = __get_vblank_counter(dev, pipe);
    -		rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, 0);
    +		rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, false);
     	} while (cur_vblank != __get_vblank_counter(dev, pipe) && --count > 0);
     
     	/*
    @@ -171,7 +171,7 @@ static void drm_reset_vblank_timestamp(struct drm_device *dev, unsigned int pipe
      * device vblank fields.
      */
     static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe,
    -				    unsigned long flags)
    +				    bool in_vblank_irq)
     {
     	struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
     	u32 cur_vblank, diff;
    @@ -194,7 +194,7 @@ static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe,
     	 */
     	do {
     		cur_vblank = __get_vblank_counter(dev, pipe);
    -		rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, flags);
    +		rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, in_vblank_irq);
     	} while (cur_vblank != __get_vblank_counter(dev, pipe) && --count > 0);
     
     	if (dev->max_vblank_count != 0) {
    @@ -214,13 +214,13 @@ static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe,
     		 */
     		diff = DIV_ROUND_CLOSEST_ULL(diff_ns, framedur_ns);
     
    -		if (diff == 0 && flags & DRM_CALLED_FROM_VBLIRQ)
    +		if (diff == 0 && in_vblank_irq)
     			DRM_DEBUG_VBL("crtc %u: Redundant vblirq ignored."
     				      " diff_ns = %lld, framedur_ns = %d)\n",
     				      pipe, (long long) diff_ns, framedur_ns);
     	} else {
     		/* some kind of default for drivers w/o accurate vbl timestamping */
    -		diff = (flags & DRM_CALLED_FROM_VBLIRQ) != 0;
    +		diff = in_vblank_irq ? 1 : 0;
     	}
     
     	/*
    @@ -253,7 +253,7 @@ static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe,
     	 * Otherwise reinitialize delayed at next vblank interrupt and assign 0
     	 * for now, to mark the vblanktimestamp as invalid.
     	 */
    -	if (!rc && (flags & DRM_CALLED_FROM_VBLIRQ) == 0)
    +	if (!rc && in_vblank_irq)
     		t_vblank = (struct timeval) {0, 0};
     
     	store_vblank(dev, pipe, diff, &t_vblank, cur_vblank);
    @@ -291,7 +291,7 @@ u32 drm_accurate_vblank_count(struct drm_crtc *crtc)
     
     	spin_lock_irqsave(&dev->vblank_time_lock, flags);
     
    -	drm_update_vblank_count(dev, pipe, 0);
    +	drm_update_vblank_count(dev, pipe, false);
     	vblank = drm_vblank_count(dev, pipe);
     
     	spin_unlock_irqrestore(&dev->vblank_time_lock, flags);
    @@ -347,7 +347,7 @@ static void vblank_disable_and_save(struct drm_device *dev, unsigned int pipe)
     	 * this time. This makes the count account for the entire time
     	 * between drm_crtc_vblank_on() and drm_crtc_vblank_off().
     	 */
    -	drm_update_vblank_count(dev, pipe, 0);
    +	drm_update_vblank_count(dev, pipe, false);
     
     	spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
     }
    @@ -698,9 +698,10 @@ EXPORT_SYMBOL(drm_calc_timestamping_constants);
      * @max_error: Desired maximum allowable error in timestamps (nanosecs)
      *             On return contains true maximum error of timestamp
      * @vblank_time: Pointer to struct timeval which should receive the timestamp
    - * @flags: Flags to pass to driver:
    - *         0 = Default,
    - *         DRM_CALLED_FROM_VBLIRQ = If function is called from vbl IRQ handler
    + * @in_vblank_irq:
    + *     True when called from drm_crtc_handle_vblank().  Some drivers
    + *     need to apply some workarounds for gpu-specific vblank irq quirks
    + *     if flag is set.
      * @mode: mode which defines the scanout timings
      *
      * Implements calculation of exact vblank timestamps from given drm_display_mode
    @@ -730,7 +731,7 @@ bool drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
     					   unsigned int pipe,
     					   int *max_error,
     					   struct timeval *vblank_time,
    -					   unsigned flags,
    +					   bool in_vblank_irq,
     					   const struct drm_display_mode *mode)
     {
     	struct timeval tv_etime;
    @@ -738,6 +739,7 @@ bool drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
     	unsigned int vbl_status;
     	int vpos, hpos, i;
     	int delta_ns, duration_ns;
    +	unsigned flags = in_vblank_irq ? DRM_CALLED_FROM_VBLIRQ : 0;
     
     	if (pipe >= dev->num_crtcs) {
     		DRM_ERROR("Invalid crtc %u\n", pipe);
    @@ -841,9 +843,10 @@ static struct timeval get_drm_timestamp(void)
      * @dev: DRM device
      * @pipe: index of CRTC whose vblank timestamp to retrieve
      * @tvblank: Pointer to target struct timeval which should receive the timestamp
    - * @flags: Flags to pass to driver:
    - *         0 = Default,
    - *         DRM_CALLED_FROM_VBLIRQ = If function is called from vbl IRQ handler
    + * @in_vblank_irq:
    + *     True when called from drm_crtc_handle_vblank().  Some drivers
    + *     need to apply some workarounds for gpu-specific vblank irq quirks
    + *     if flag is set.
      *
      * Fetches the system timestamp corresponding to the time of the most recent
      * vblank interval on specified CRTC. May call into kms-driver to
    @@ -857,7 +860,7 @@ static struct timeval get_drm_timestamp(void)
      */
     static bool
     drm_get_last_vbltimestamp(struct drm_device *dev, unsigned int pipe,
    -			  struct timeval *tvblank, unsigned flags)
    +			  struct timeval *tvblank, bool in_vblank_irq)
     {
     	int ret;
     
    @@ -867,7 +870,7 @@ drm_get_last_vbltimestamp(struct drm_device *dev, unsigned int pipe,
     	/* Query driver if possible and precision timestamping enabled. */
     	if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
     		ret = dev->driver->get_vblank_timestamp(dev, pipe, &max_error,
    -							tvblank, flags);
    +							tvblank, in_vblank_irq);
     		if (ret > 0)
     			return true;
     	}
    @@ -1710,7 +1713,7 @@ bool drm_handle_vblank(struct drm_device *dev, unsigned int pipe)
     		return false;
     	}
     
    -	drm_update_vblank_count(dev, pipe, DRM_CALLED_FROM_VBLIRQ);
    +	drm_update_vblank_count(dev, pipe, true);
     
     	spin_unlock(&dev->vblank_time_lock);
     
    diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
    index df149d159ce7..6c8a7e1284c3 100644
    --- a/drivers/gpu/drm/i915/i915_irq.c
    +++ b/drivers/gpu/drm/i915/i915_irq.c
    @@ -967,7 +967,7 @@ int intel_get_crtc_scanline(struct intel_crtc *crtc)
     static bool i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
     			      int *max_error,
     			      struct timeval *vblank_time,
    -			      unsigned flags)
    +			      bool in_vblank_irq)
     {
     	struct drm_i915_private *dev_priv = to_i915(dev);
     	struct intel_crtc *crtc;
    @@ -991,7 +991,7 @@ static bool i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
     
     	/* Helper routine in DRM core does all the work: */
     	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
    -						     vblank_time, flags,
    +						     vblank_time, in_vblank_irq,
     						     &crtc->base.hwmode);
     }
     
    diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
    index 655700eb42ba..16184ccbdd3b 100644
    --- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
    +++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
    @@ -598,7 +598,7 @@ static int mdp5_get_scanoutpos(struct drm_device *dev, unsigned int pipe,
     static bool mdp5_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
     				      int *max_error,
     				      struct timeval *vblank_time,
    -				      unsigned flags)
    +				      bool in_vblank_irq)
     {
     	struct msm_drm_private *priv = dev->dev_private;
     	struct drm_crtc *crtc;
    @@ -615,7 +615,7 @@ static bool mdp5_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
     	}
     
     	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
    -						     vblank_time, flags,
    +						     vblank_time, in_vblank_irq,
     						     &crtc->mode);
     }
     
    diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c
    index 42f18b0b9c43..be8ec18ba126 100644
    --- a/drivers/gpu/drm/nouveau/nouveau_display.c
    +++ b/drivers/gpu/drm/nouveau/nouveau_display.c
    @@ -158,7 +158,7 @@ nouveau_display_scanoutpos(struct drm_device *dev, unsigned int pipe,
     
     bool
     nouveau_display_vblstamp(struct drm_device *dev, unsigned int pipe,
    -			 int *max_error, struct timeval *time, unsigned flags)
    +			 int *max_error, struct timeval *time, bool in_vblank_irq)
     {
     	struct drm_crtc *crtc;
     
    @@ -170,7 +170,8 @@ nouveau_display_vblstamp(struct drm_device *dev, unsigned int pipe,
     			else
     				mode = &crtc->hwmode;
     			return drm_calc_vbltimestamp_from_scanoutpos(dev,
    -					pipe, max_error, time, flags, mode);
    +					pipe, max_error, time, in_vblank_irq,
    +					mode);
     		}
     	}
     
    diff --git a/drivers/gpu/drm/nouveau/nouveau_display.h b/drivers/gpu/drm/nouveau/nouveau_display.h
    index bc9d1e7b0117..f821fc9e2de3 100644
    --- a/drivers/gpu/drm/nouveau/nouveau_display.h
    +++ b/drivers/gpu/drm/nouveau/nouveau_display.h
    @@ -72,7 +72,7 @@ int  nouveau_display_scanoutpos(struct drm_device *, unsigned int,
     				unsigned int, int *, int *, ktime_t *,
     				ktime_t *, const struct drm_display_mode *);
     bool  nouveau_display_vblstamp(struct drm_device *, unsigned int, int *,
    -			       struct timeval *, unsigned);
    +			       struct timeval *, bool);
     
     int  nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
     			    struct drm_pending_vblank_event *event,
    diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
    index 6d79b5c2805b..5fbbc6ac165d 100644
    --- a/drivers/gpu/drm/radeon/radeon_drv.c
    +++ b/drivers/gpu/drm/radeon/radeon_drv.c
    @@ -117,7 +117,7 @@ void radeon_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
     bool radeon_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
     				     int *max_error,
     				     struct timeval *vblank_time,
    -				     unsigned flags);
    +				     bool in_vblank_irq);
     void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
     int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
     void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
    diff --git a/drivers/gpu/drm/radeon/radeon_kms.c b/drivers/gpu/drm/radeon/radeon_kms.c
    index 9afe72010c64..41765d18f863 100644
    --- a/drivers/gpu/drm/radeon/radeon_kms.c
    +++ b/drivers/gpu/drm/radeon/radeon_kms.c
    @@ -873,7 +873,7 @@ void radeon_disable_vblank_kms(struct drm_device *dev, int crtc)
     bool radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
     				     int *max_error,
     				     struct timeval *vblank_time,
    -				     unsigned flags)
    +				     bool in_vblank_irq)
     {
     	struct drm_crtc *drmcrtc;
     	struct radeon_device *rdev = dev->dev_private;
    @@ -890,7 +890,7 @@ bool radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
     
     	/* Helper routine in DRM core does all the work: */
     	return drm_calc_vbltimestamp_from_scanoutpos(dev, crtc, max_error,
    -						     vblank_time, flags,
    +						     vblank_time, in_vblank_irq,
     						     &drmcrtc->hwmode);
     }
     
    diff --git a/drivers/gpu/drm/vc4/vc4_crtc.c b/drivers/gpu/drm/vc4/vc4_crtc.c
    index 74260990b6bf..18bd0d816fe3 100644
    --- a/drivers/gpu/drm/vc4/vc4_crtc.c
    +++ b/drivers/gpu/drm/vc4/vc4_crtc.c
    @@ -272,14 +272,14 @@ int vc4_crtc_get_scanoutpos(struct drm_device *dev, unsigned int crtc_id,
     
     bool vc4_crtc_get_vblank_timestamp(struct drm_device *dev, unsigned int crtc_id,
     				  int *max_error, struct timeval *vblank_time,
    -				  unsigned flags)
    +				  bool in_vblank_irq)
     {
     	struct drm_crtc *crtc = drm_crtc_from_index(dev, crtc_id);
     	struct drm_crtc_state *state = crtc->state;
     
     	/* Helper routine in DRM core does all the work: */
     	return drm_calc_vbltimestamp_from_scanoutpos(dev, crtc_id, max_error,
    -						     vblank_time, flags,
    +						     vblank_time, in_vblank_irq,
     						     &state->adjusted_mode);
     }
     
    diff --git a/drivers/gpu/drm/vc4/vc4_drv.h b/drivers/gpu/drm/vc4/vc4_drv.h
    index 8a5d0e12ee02..815cdeb54971 100644
    --- a/drivers/gpu/drm/vc4/vc4_drv.h
    +++ b/drivers/gpu/drm/vc4/vc4_drv.h
    @@ -452,7 +452,7 @@ int vc4_crtc_get_scanoutpos(struct drm_device *dev, unsigned int crtc_id,
     			    const struct drm_display_mode *mode);
     bool vc4_crtc_get_vblank_timestamp(struct drm_device *dev, unsigned int crtc_id,
     				  int *max_error, struct timeval *vblank_time,
    -				  unsigned flags);
    +				  bool in_vblank_irq);
     
     /* vc4_debugfs.c */
     int vc4_debugfs_init(struct drm_minor *minor);
    diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h
    index da78e248d9d8..9fe6301edd6a 100644
    --- a/include/drm/drm_drv.h
    +++ b/include/drm/drm_drv.h
    @@ -308,11 +308,10 @@ struct drm_driver {
     	 *     Returns true upper bound on error for timestamp.
     	 * vblank_time:
     	 *     Target location for returned vblank timestamp.
    -	 * flags:
    -	 *     0 = Defaults, no special treatment needed.
    -	 *     DRM_CALLED_FROM_VBLIRQ = Function is called from vblank
    -	 *     irq handler. Some drivers need to apply some workarounds
    -	 *     for gpu-specific vblank irq quirks if flag is set.
    +	 * in_vblank_irq:
    +	 *     True when called from drm_crtc_handle_vblank().  Some drivers
    +	 *     need to apply some workarounds for gpu-specific vblank irq quirks
    +	 *     if flag is set.
     	 *
     	 * Returns:
     	 *
    @@ -322,7 +321,7 @@ struct drm_driver {
     	bool (*get_vblank_timestamp) (struct drm_device *dev, unsigned int pipe,
     				     int *max_error,
     				     struct timeval *vblank_time,
    -				     unsigned flags);
    +				     bool in_vblank_irq);
     
     	/* these have to be filled in */
     
    diff --git a/include/drm/drm_irq.h b/include/drm/drm_irq.h
    index f0d5ccf9b282..445406efb8dc 100644
    --- a/include/drm/drm_irq.h
    +++ b/include/drm/drm_irq.h
    @@ -156,7 +156,7 @@ u32 drm_accurate_vblank_count(struct drm_crtc *crtc);
     bool drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
     					   unsigned int pipe, int *max_error,
     					   struct timeval *vblank_time,
    -					   unsigned flags,
    +					   bool in_vblank_irq,
     					   const struct drm_display_mode *mode);
     void drm_calc_timestamping_constants(struct drm_crtc *crtc,
     				     const struct drm_display_mode *mode);
    -- 
    2.11.0
    
    ^ permalink raw reply related	[flat|nested] 19+ messages in thread
  • * [PATCH 14/16] drm/vblank: drop the mode argument from drm_calc_vbltimestamp_from_scanoutpos
           [not found] <20170322083617.13361-1-daniel.vetter@ffwll.ch>
           [not found] ` <20170322083617.13361-1-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
      2017-03-22  8:36 ` [PATCH 12/16] drm/vblank: Switch to bool in_vblank_irq in get_vblank_timestamp Daniel Vetter
    @ 2017-03-22  8:36 ` Daniel Vetter
           [not found]   ` <20170322083617.13361-15-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
      2 siblings, 1 reply; 19+ messages in thread
    From: Daniel Vetter @ 2017-03-22  8:36 UTC (permalink / raw)
      To: Intel Graphics Development
      Cc: DRI Development, Daniel Vetter, Mario Kleiner, Eric Anholt,
    	Rob Clark, linux-arm-msm, freedreno, Alex Deucher,
    	Christian König, Ben Skeggs, Daniel Vetter
    
    If we restrict this helper to only kms drivers (which is the case) we
    can look up the correct mode easily ourselves. But it's a bit tricky:
    
    - All legacy drivers look at crtc->hwmode. But that is update already
      at the beginning of the modeset helper, which means when we disable
      a pipe. Hence the final timestamps might be a bit off. But since
      this is an existing bug I'm not going to change it, but just try to
      be bug-for-bug compatible with the current code. This only applies
      to radeon&amdgpu.
    
    - i915 tries to get it perfect by updating crtc->hwmode when the pipe
      is off (i.e. vblank->enabled = false).
    
    - All other atomic drivers look at crtc->state->adjusted_mode. Those
      that look at state->requested_mode simply don't adjust their mode,
      so it's the same. That has two problems: Accessing crtc->state from
      interrupt handling code is unsafe, and it's updated before we shut
      down the pipe. For nonblocking modesets it's even worse.
    
    For atomic drivers try to implement what i915 does. To do that we add
    a new hwmode field to the vblank structure, and update it from
    drm_calc_timestamping_constants(). For atomic drivers that's called
    from the right spot by the helper library already, so all fine. But
    for safety let's enforce that.
    
    For legacy driver this function is only called at the end (oh the
    fun), which is broken, so again let's not bother and just stay
    bug-for-bug compatible.
    
    The  benefit is that we can use drm_calc_vbltimestamp_from_scanoutpos
    directly to implement ->get_vblank_timestamp in every driver, deleting
    a lot of code.
    
    v2: Completely new approach, trying to mimick the i915 solution.
    
    v3: Fixup kerneldoc.
    
    Cc: Mario Kleiner <mario.kleiner@tuebingen.mpg.de>
    Cc: Eric Anholt <eric@anholt.net>
    Cc: Rob Clark <robdclark@gmail.com>
    Cc: linux-arm-msm@vger.kernel.org
    Cc: freedreno@lists.freedesktop.org
    Cc: Alex Deucher <alexander.deucher@amd.com>
    Cc: Christian König <christian.koenig@amd.com>
    Cc: Ben Skeggs <bskeggs@redhat.com>
    Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
    ---
     drivers/gpu/drm/amd/amdgpu/amdgpu.h       |  4 ---
     drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c   |  2 +-
     drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c   | 41 -------------------------------
     drivers/gpu/drm/drm_irq.c                 | 29 +++++++++++++++++++---
     drivers/gpu/drm/i915/i915_irq.c           | 33 +------------------------
     drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c   | 26 +-------------------
     drivers/gpu/drm/nouveau/nouveau_display.c | 22 -----------------
     drivers/gpu/drm/nouveau/nouveau_display.h |  2 --
     drivers/gpu/drm/nouveau/nouveau_drm.c     |  2 +-
     drivers/gpu/drm/radeon/radeon_drv.c       |  6 +----
     drivers/gpu/drm/radeon/radeon_kms.c       | 37 ----------------------------
     drivers/gpu/drm/vc4/vc4_crtc.c            | 13 ----------
     drivers/gpu/drm/vc4/vc4_drv.c             |  2 +-
     drivers/gpu/drm/vc4/vc4_drv.h             |  3 ---
     include/drm/drm_irq.h                     | 15 +++++++++--
     15 files changed, 44 insertions(+), 193 deletions(-)
    
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
    index edb3bb83e1a9..61bef9609b24 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
    @@ -1768,10 +1768,6 @@ int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon);
     u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
     int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
     void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
    -bool amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
    -				     int *max_error,
    -				     struct timeval *vblank_time,
    -				     bool in_vblank_irq);
     long amdgpu_kms_compat_ioctl(struct file *filp, unsigned int cmd,
     			     unsigned long arg);
     
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
    index 8a61296fd4cc..ba169a0699d5 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
    @@ -692,7 +692,7 @@ static struct drm_driver kms_driver = {
     	.get_vblank_counter = amdgpu_get_vblank_counter_kms,
     	.enable_vblank = amdgpu_enable_vblank_kms,
     	.disable_vblank = amdgpu_disable_vblank_kms,
    -	.get_vblank_timestamp = amdgpu_get_vblank_timestamp_kms,
    +	.get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
     	.get_scanout_position = amdgpu_get_crtc_scanoutpos,
     #if defined(CONFIG_DEBUG_FS)
     	.debugfs_init = amdgpu_debugfs_init,
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
    index ad295e822d45..32a492bd4e51 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
    @@ -827,47 +827,6 @@ void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
     	amdgpu_irq_put(adev, &adev->crtc_irq, idx);
     }
     
    -/**
    - * amdgpu_get_vblank_timestamp_kms - get vblank timestamp
    - *
    - * @dev: drm dev pointer
    - * @crtc: crtc to get the timestamp for
    - * @max_error: max error
    - * @vblank_time: time value
    - * @in_vblank_irq: called from drm_handle_vblank()
    - *
    - * Gets the timestamp on the requested crtc based on the
    - * scanout position.  (all asics).
    - * Returns true on success, false on failure.
    - */
    -bool amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
    -				     int *max_error,
    -				     struct timeval *vblank_time,
    -				     bool in_vblank_irq)
    -{
    -	struct drm_crtc *crtc;
    -	struct amdgpu_device *adev = dev->dev_private;
    -
    -	if (pipe >= dev->num_crtcs) {
    -		DRM_ERROR("Invalid crtc %u\n", pipe);
    -		return false;
    -	}
    -
    -	/* Get associated drm_crtc: */
    -	crtc = &adev->mode_info.crtcs[pipe]->base;
    -	if (!crtc) {
    -		/* This can occur on driver load if some component fails to
    -		 * initialize completely and driver is unloaded */
    -		DRM_ERROR("Uninitialized crtc %d\n", pipe);
    -		return false;
    -	}
    -
    -	/* Helper routine in DRM core does all the work: */
    -	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
    -						     vblank_time, in_vblank_irq,
    -						     &crtc->hwmode);
    -}
    -
     const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
     	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
     	DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
    diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
    index 059c3346db68..61d726b1f810 100644
    --- a/drivers/gpu/drm/drm_irq.c
    +++ b/drivers/gpu/drm/drm_irq.c
    @@ -659,6 +659,8 @@ void drm_calc_timestamping_constants(struct drm_crtc *crtc,
     	if (WARN_ON(pipe >= dev->num_crtcs))
     		return;
     
    +	WARN_ON(drm_drv_uses_atomic_modeset(dev) && vblank->enabled);
    +
     	/* Valid dotclock? */
     	if (dotclock > 0) {
     		int frame_size = mode->crtc_htotal * mode->crtc_vtotal;
    @@ -682,6 +684,7 @@ void drm_calc_timestamping_constants(struct drm_crtc *crtc,
     
     	vblank->linedur_ns  = linedur_ns;
     	vblank->framedur_ns = framedur_ns;
    +	vblank->hwmode = *mode;
     
     	DRM_DEBUG("crtc %u: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
     		  crtc->base.id, mode->crtc_htotal,
    @@ -702,7 +705,6 @@ EXPORT_SYMBOL(drm_calc_timestamping_constants);
      *     True when called from drm_crtc_handle_vblank().  Some drivers
      *     need to apply some workarounds for gpu-specific vblank irq quirks
      *     if flag is set.
    - * @mode: mode which defines the scanout timings
      *
      * Implements calculation of exact vblank timestamps from given drm_display_mode
      * timings and current video scanout position of a CRTC. This can be called from
    @@ -722,6 +724,13 @@ EXPORT_SYMBOL(drm_calc_timestamping_constants);
      * returns as no operation if a doublescan or interlaced video mode is
      * active. Higher level code is expected to handle this.
      *
    + * This function can be used to implement the &drm_driver.get_vblank_timestamp
    + * directly, if the driver implements the &drm_driver.get_scanout_position hook.
    + *
    + * Note that atomic drivers must call drm_calc_timestamping_constants() before
    + * enabling a CRTC. The atomic helpers already take care of that in
    + * drm_atomic_helper_update_legacy_modeset_state().
    + *
      * Returns:
      *
      * Returns true on success, and false on failure, i.e. when no accurate
    @@ -731,17 +740,24 @@ bool drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
     					   unsigned int pipe,
     					   int *max_error,
     					   struct timeval *vblank_time,
    -					   bool in_vblank_irq,
    -					   const struct drm_display_mode *mode)
    +					   bool in_vblank_irq)
     {
     	struct timeval tv_etime;
     	ktime_t stime, etime;
     	unsigned int vbl_status;
    +	struct drm_crtc *crtc;
    +	const struct drm_display_mode *mode;
    +	struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
     	int vpos, hpos, i;
     	int delta_ns, duration_ns;
     	unsigned flags = in_vblank_irq ? DRM_CALLED_FROM_VBLIRQ : 0;
     
    -	if (pipe >= dev->num_crtcs) {
    +	if (!drm_core_check_feature(dev, DRIVER_MODESET))
    +		return false;
    +
    +	crtc = drm_crtc_from_index(dev, pipe);
    +
    +	if (pipe >= dev->num_crtcs || !crtc) {
     		DRM_ERROR("Invalid crtc %u\n", pipe);
     		return false;
     	}
    @@ -752,6 +768,11 @@ bool drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
     		return false;
     	}
     
    +	if (drm_drv_uses_atomic_modeset(dev))
    +		mode = &vblank->hwmode;
    +	else
    +		mode = &crtc->hwmode;
    +
     	/* If mode timing undefined, just return as no-op:
     	 * Happens during initial modesetting of a crtc.
     	 */
    diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
    index 6c8a7e1284c3..feadfea77354 100644
    --- a/drivers/gpu/drm/i915/i915_irq.c
    +++ b/drivers/gpu/drm/i915/i915_irq.c
    @@ -964,37 +964,6 @@ int intel_get_crtc_scanline(struct intel_crtc *crtc)
     	return position;
     }
     
    -static bool i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
    -			      int *max_error,
    -			      struct timeval *vblank_time,
    -			      bool in_vblank_irq)
    -{
    -	struct drm_i915_private *dev_priv = to_i915(dev);
    -	struct intel_crtc *crtc;
    -
    -	if (pipe >= INTEL_INFO(dev_priv)->num_pipes) {
    -		DRM_ERROR("Invalid crtc %u\n", pipe);
    -		return false;
    -	}
    -
    -	/* Get drm_crtc to timestamp: */
    -	crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
    -	if (crtc == NULL) {
    -		DRM_ERROR("Invalid crtc %u\n", pipe);
    -		return false;
    -	}
    -
    -	if (!crtc->base.hwmode.crtc_clock) {
    -		DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
    -		return false;
    -	}
    -
    -	/* Helper routine in DRM core does all the work: */
    -	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
    -						     vblank_time, in_vblank_irq,
    -						     &crtc->base.hwmode);
    -}
    -
     static void ironlake_rps_change_irq_handler(struct drm_i915_private *dev_priv)
     {
     	u32 busy_up, busy_down, max_avg, min_avg;
    @@ -4328,7 +4297,7 @@ void intel_irq_init(struct drm_i915_private *dev_priv)
     
     	dev_priv->hotplug.hpd_storm_threshold = HPD_STORM_DEFAULT_THRESHOLD;
     
    -	dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
    +	dev->driver->get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos;
     	dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
     
     	if (IS_CHERRYVIEW(dev_priv)) {
    diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
    index 16184ccbdd3b..6ba216b8bba9 100644
    --- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
    +++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
    @@ -595,30 +595,6 @@ static int mdp5_get_scanoutpos(struct drm_device *dev, unsigned int pipe,
     	return ret;
     }
     
    -static bool mdp5_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
    -				      int *max_error,
    -				      struct timeval *vblank_time,
    -				      bool in_vblank_irq)
    -{
    -	struct msm_drm_private *priv = dev->dev_private;
    -	struct drm_crtc *crtc;
    -
    -	if (pipe < 0 || pipe >= priv->num_crtcs) {
    -		DRM_ERROR("Invalid crtc %d\n", pipe);
    -		return false;
    -	}
    -
    -	crtc = priv->crtcs[pipe];
    -	if (!crtc) {
    -		DRM_ERROR("Invalid crtc %d\n", pipe);
    -		return false;
    -	}
    -
    -	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
    -						     vblank_time, in_vblank_irq,
    -						     &crtc->mode);
    -}
    -
     static u32 mdp5_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
     {
     	struct msm_drm_private *priv = dev->dev_private;
    @@ -728,7 +704,7 @@ struct msm_kms *mdp5_kms_init(struct drm_device *dev)
     	dev->mode_config.max_width = 0xffff;
     	dev->mode_config.max_height = 0xffff;
     
    -	dev->driver->get_vblank_timestamp = mdp5_get_vblank_timestamp;
    +	dev->driver->get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos;
     	dev->driver->get_scanout_position = mdp5_get_scanoutpos;
     	dev->driver->get_vblank_counter = mdp5_get_vblank_counter;
     	dev->max_vblank_count = 0xffffffff;
    diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c
    index be8ec18ba126..e4bdac13d4e9 100644
    --- a/drivers/gpu/drm/nouveau/nouveau_display.c
    +++ b/drivers/gpu/drm/nouveau/nouveau_display.c
    @@ -156,28 +156,6 @@ nouveau_display_scanoutpos(struct drm_device *dev, unsigned int pipe,
     	return 0;
     }
     
    -bool
    -nouveau_display_vblstamp(struct drm_device *dev, unsigned int pipe,
    -			 int *max_error, struct timeval *time, bool in_vblank_irq)
    -{
    -	struct drm_crtc *crtc;
    -
    -	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
    -		if (nouveau_crtc(crtc)->index == pipe) {
    -			struct drm_display_mode *mode;
    -			if (drm_drv_uses_atomic_modeset(dev))
    -				mode = &crtc->state->adjusted_mode;
    -			else
    -				mode = &crtc->hwmode;
    -			return drm_calc_vbltimestamp_from_scanoutpos(dev,
    -					pipe, max_error, time, in_vblank_irq,
    -					mode);
    -		}
    -	}
    -
    -	return false;
    -}
    -
     static void
     nouveau_display_vblank_fini(struct drm_device *dev)
     {
    diff --git a/drivers/gpu/drm/nouveau/nouveau_display.h b/drivers/gpu/drm/nouveau/nouveau_display.h
    index f821fc9e2de3..8360a85ed5ef 100644
    --- a/drivers/gpu/drm/nouveau/nouveau_display.h
    +++ b/drivers/gpu/drm/nouveau/nouveau_display.h
    @@ -71,8 +71,6 @@ void nouveau_display_vblank_disable(struct drm_device *, unsigned int);
     int  nouveau_display_scanoutpos(struct drm_device *, unsigned int,
     				unsigned int, int *, int *, ktime_t *,
     				ktime_t *, const struct drm_display_mode *);
    -bool  nouveau_display_vblstamp(struct drm_device *, unsigned int, int *,
    -			       struct timeval *, bool);
     
     int  nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
     			    struct drm_pending_vblank_event *event,
    diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c
    index ec719df619a6..1f751a3f570c 100644
    --- a/drivers/gpu/drm/nouveau/nouveau_drm.c
    +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
    @@ -978,7 +978,7 @@ driver_stub = {
     	.enable_vblank = nouveau_display_vblank_enable,
     	.disable_vblank = nouveau_display_vblank_disable,
     	.get_scanout_position = nouveau_display_scanoutpos,
    -	.get_vblank_timestamp = nouveau_display_vblstamp,
    +	.get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
     
     	.ioctls = nouveau_ioctls,
     	.num_ioctls = ARRAY_SIZE(nouveau_ioctls),
    diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
    index 5fbbc6ac165d..a4bf09cd33f7 100644
    --- a/drivers/gpu/drm/radeon/radeon_drv.c
    +++ b/drivers/gpu/drm/radeon/radeon_drv.c
    @@ -114,10 +114,6 @@ int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
     u32 radeon_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe);
     int radeon_enable_vblank_kms(struct drm_device *dev, unsigned int pipe);
     void radeon_disable_vblank_kms(struct drm_device *dev, unsigned int pipe);
    -bool radeon_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
    -				     int *max_error,
    -				     struct timeval *vblank_time,
    -				     bool in_vblank_irq);
     void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
     int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
     void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
    @@ -543,7 +539,7 @@ static struct drm_driver kms_driver = {
     	.get_vblank_counter = radeon_get_vblank_counter_kms,
     	.enable_vblank = radeon_enable_vblank_kms,
     	.disable_vblank = radeon_disable_vblank_kms,
    -	.get_vblank_timestamp = radeon_get_vblank_timestamp_kms,
    +	.get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
     	.get_scanout_position = radeon_get_crtc_scanoutpos,
     	.irq_preinstall = radeon_driver_irq_preinstall_kms,
     	.irq_postinstall = radeon_driver_irq_postinstall_kms,
    diff --git a/drivers/gpu/drm/radeon/radeon_kms.c b/drivers/gpu/drm/radeon/radeon_kms.c
    index 41765d18f863..33b8b3d22969 100644
    --- a/drivers/gpu/drm/radeon/radeon_kms.c
    +++ b/drivers/gpu/drm/radeon/radeon_kms.c
    @@ -857,43 +857,6 @@ void radeon_disable_vblank_kms(struct drm_device *dev, int crtc)
     	spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
     }
     
    -/**
    - * radeon_get_vblank_timestamp_kms - get vblank timestamp
    - *
    - * @dev: drm dev pointer
    - * @crtc: crtc to get the timestamp for
    - * @max_error: max error
    - * @vblank_time: time value
    - * @flags: flags passed to the driver
    - *
    - * Gets the timestamp on the requested crtc based on the
    - * scanout position.  (all asics).
    - * Returns true on success, false on failure.
    - */
    -bool radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
    -				     int *max_error,
    -				     struct timeval *vblank_time,
    -				     bool in_vblank_irq)
    -{
    -	struct drm_crtc *drmcrtc;
    -	struct radeon_device *rdev = dev->dev_private;
    -
    -	if (crtc < 0 || crtc >= dev->num_crtcs) {
    -		DRM_ERROR("Invalid crtc %d\n", crtc);
    -		return false;
    -	}
    -
    -	/* Get associated drm_crtc: */
    -	drmcrtc = &rdev->mode_info.crtcs[crtc]->base;
    -	if (!drmcrtc)
    -		return false;
    -
    -	/* Helper routine in DRM core does all the work: */
    -	return drm_calc_vbltimestamp_from_scanoutpos(dev, crtc, max_error,
    -						     vblank_time, in_vblank_irq,
    -						     &drmcrtc->hwmode);
    -}
    -
     const struct drm_ioctl_desc radeon_ioctls_kms[] = {
     	DRM_IOCTL_DEF_DRV(RADEON_CP_INIT, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
     	DRM_IOCTL_DEF_DRV(RADEON_CP_START, drm_invalid_op, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
    diff --git a/drivers/gpu/drm/vc4/vc4_crtc.c b/drivers/gpu/drm/vc4/vc4_crtc.c
    index 18bd0d816fe3..2567d6c9a4ee 100644
    --- a/drivers/gpu/drm/vc4/vc4_crtc.c
    +++ b/drivers/gpu/drm/vc4/vc4_crtc.c
    @@ -270,19 +270,6 @@ int vc4_crtc_get_scanoutpos(struct drm_device *dev, unsigned int crtc_id,
     	return ret;
     }
     
    -bool vc4_crtc_get_vblank_timestamp(struct drm_device *dev, unsigned int crtc_id,
    -				  int *max_error, struct timeval *vblank_time,
    -				  bool in_vblank_irq)
    -{
    -	struct drm_crtc *crtc = drm_crtc_from_index(dev, crtc_id);
    -	struct drm_crtc_state *state = crtc->state;
    -
    -	/* Helper routine in DRM core does all the work: */
    -	return drm_calc_vbltimestamp_from_scanoutpos(dev, crtc_id, max_error,
    -						     vblank_time, in_vblank_irq,
    -						     &state->adjusted_mode);
    -}
    -
     static void vc4_crtc_destroy(struct drm_crtc *crtc)
     {
     	drm_crtc_cleanup(crtc);
    diff --git a/drivers/gpu/drm/vc4/vc4_drv.c b/drivers/gpu/drm/vc4/vc4_drv.c
    index 61e674baf3a6..e864256e12e5 100644
    --- a/drivers/gpu/drm/vc4/vc4_drv.c
    +++ b/drivers/gpu/drm/vc4/vc4_drv.c
    @@ -154,7 +154,7 @@ static struct drm_driver vc4_drm_driver = {
     	.irq_uninstall = vc4_irq_uninstall,
     
     	.get_scanout_position = vc4_crtc_get_scanoutpos,
    -	.get_vblank_timestamp = vc4_crtc_get_vblank_timestamp,
    +	.get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
     
     #if defined(CONFIG_DEBUG_FS)
     	.debugfs_init = vc4_debugfs_init,
    diff --git a/drivers/gpu/drm/vc4/vc4_drv.h b/drivers/gpu/drm/vc4/vc4_drv.h
    index 815cdeb54971..64c92e0eb8f7 100644
    --- a/drivers/gpu/drm/vc4/vc4_drv.h
    +++ b/drivers/gpu/drm/vc4/vc4_drv.h
    @@ -450,9 +450,6 @@ int vc4_crtc_get_scanoutpos(struct drm_device *dev, unsigned int crtc_id,
     			    unsigned int flags, int *vpos, int *hpos,
     			    ktime_t *stime, ktime_t *etime,
     			    const struct drm_display_mode *mode);
    -bool vc4_crtc_get_vblank_timestamp(struct drm_device *dev, unsigned int crtc_id,
    -				  int *max_error, struct timeval *vblank_time,
    -				  bool in_vblank_irq);
     
     /* vc4_debugfs.c */
     int vc4_debugfs_init(struct drm_minor *minor);
    diff --git a/include/drm/drm_irq.h b/include/drm/drm_irq.h
    index 445406efb8dc..b489cc856e7a 100644
    --- a/include/drm/drm_irq.h
    +++ b/include/drm/drm_irq.h
    @@ -121,6 +121,18 @@ struct drm_vblank_crtc {
     	 * drm_calc_timestamping_constants().
     	 */
     	int linedur_ns;
    +
    +	/**
    +	 * @hwmode:
    +	 *
    +	 * Cache of the current hardware display mode. Only valide when @enabled
    +	 * is set. This is used by helpers like
    +	 * drm_calc_vbltimestamp_from_scanoutpos(). We can't just access the
    +	 * hardware mode by e.g. looking at &drm_crtc_state.adjusted_mode,
    +	 * because that one is really hard to get at from interrupt context.
    +	 */
    +	struct drm_display_mode hwmode;
    +
     	/**
     	 * @enabled: Tracks the enabling state of the corresponding &drm_crtc to
     	 * avoid double-disabling and hence corrupting saved state. Needed by
    @@ -156,8 +168,7 @@ u32 drm_accurate_vblank_count(struct drm_crtc *crtc);
     bool drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
     					   unsigned int pipe, int *max_error,
     					   struct timeval *vblank_time,
    -					   bool in_vblank_irq,
    -					   const struct drm_display_mode *mode);
    +					   bool in_vblank_irq);
     void drm_calc_timestamping_constants(struct drm_crtc *crtc,
     				     const struct drm_display_mode *mode);
     
    -- 
    2.11.0
    
    ^ permalink raw reply related	[flat|nested] 19+ messages in thread

  • end of thread, other threads:[~2017-04-04  9:54 UTC | newest]
    
    Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20170322083617.13361-1-daniel.vetter@ffwll.ch>
         [not found] ` <20170322083617.13361-1-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
    2017-03-22  8:36   ` [PATCH 11/16] drm/vblank: Switch drm_driver->get_vblank_timestamp to return a bool Daniel Vetter
         [not found]     ` <20170322083617.13361-12-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
    2017-03-22 10:33       ` [Intel-gfx] " Jani Nikula
    2017-03-22 13:23         ` Daniel Vetter
         [not found]           ` <20170322132305.zdtehgbox6erdhbq-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
    2017-03-22 14:05             ` [Intel-gfx] " Jani Nikula
         [not found]               ` <87d1d98kzc.fsf-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
    2017-03-22 17:52                 ` Daniel Vetter
    2017-03-22 20:55     ` [PATCH] " Daniel Vetter
    2017-03-22  8:36   ` [PATCH 15/16] drm/vblank: Simplify the get_scanout_position helper hook Daniel Vetter
    2017-03-24 21:28     ` [PATCH] drm/vblank: fix boolreturn.cocci warnings kbuild test robot
    2017-03-24 21:28     ` [PATCH 15/16] drm/vblank: Simplify the get_scanout_position helper hook kbuild test robot
    2017-03-25 21:37     ` [PATCH] " Daniel Vetter
    2017-03-22  8:36 ` [PATCH 12/16] drm/vblank: Switch to bool in_vblank_irq in get_vblank_timestamp Daniel Vetter
    2017-03-22 18:23   ` Ville Syrjälä
    2017-03-22  8:36 ` [PATCH 14/16] drm/vblank: drop the mode argument from drm_calc_vbltimestamp_from_scanoutpos Daniel Vetter
         [not found]   ` <20170322083617.13361-15-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
    2017-03-22 20:56     ` [PATCH] " Daniel Vetter
    2017-03-30 12:03       ` Ville Syrjälä
         [not found]         ` <20170330120326.GG30290-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
    2017-03-30 13:27           ` [Intel-gfx] " Daniel Vetter
    2017-03-30 13:41             ` Ville Syrjälä
         [not found]               ` <20170330134157.GI30290-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
    2017-03-30 18:27                 ` Daniel Vetter
         [not found]                   ` <20170330182740.p4joh3spt4ghxco4-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
    2017-04-04  9:54                     ` Daniel Vetter
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).