diff mbox

[PATCHv2,2/4] drm/i915: Make finding unused crtc as a generic function

Message ID 1454335073-20405-3-git-send-email-durgadoss.r@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

durgadoss.r@intel.com Feb. 1, 2016, 1:57 p.m. UTC
Looping over the crtc list and finding an unused crtc
has users other than load_detect(). Hence move it to
a common function so that we can re-use the logic.

Signed-off-by: Durgadoss R <durgadoss.r@intel.com>
---
 drivers/gpu/drm/i915/intel_display.c | 37 ++++++++++++++++++++++--------------
 drivers/gpu/drm/i915/intel_drv.h     |  1 +
 2 files changed, 24 insertions(+), 14 deletions(-)

Comments

Ander Conselvan de Oliveira Feb. 12, 2016, 4:53 p.m. UTC | #1
On Mon, 2016-02-01 at 19:27 +0530, Durgadoss R wrote:
> Looping over the crtc list and finding an unused crtc
> has users other than load_detect(). 

Which other users? If there are other users they should be converted in this
patch. If the use will only come in a future patch, please make that clear in
the commit message.

> Hence move it to
> a common function so that we can re-use the logic.
> 
> Signed-off-by: Durgadoss R <durgadoss.r@intel.com>
> ---
>  drivers/gpu/drm/i915/intel_display.c | 37 ++++++++++++++++++++++-------------
> -
>  drivers/gpu/drm/i915/intel_drv.h     |  1 +
>  2 files changed, 24 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_display.c
> b/drivers/gpu/drm/i915/intel_display.c
> index 92cd5c6..af50e61 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -10417,6 +10417,27 @@ static int intel_modeset_setup_plane_state(struct
> drm_atomic_state *state,
>  	return 0;
>  }
>  
> +struct drm_crtc *intel_get_unused_crtc(struct drm_encoder *encoder)
> +{

This function is exported, so it needs some kernel doc.

> +	struct drm_crtc *possible_crtc;
> +	struct drm_crtc *crtc = NULL;
> +	struct drm_device *dev = encoder->dev;
> +	int i = -1;
> +
> +	for_each_crtc(dev, possible_crtc) {
> +		i++;
> +		if (!(encoder->possible_crtcs & (1 << i)))
> +			continue;
> +		if (possible_crtc->state->enable)
> +			continue;
> +
> +		crtc = possible_crtc;
> +		break;
> +	}
> +
> +	return crtc;
> +}
> +
>  bool intel_get_load_detect_pipe(struct drm_connector *connector,
>  				struct drm_display_mode *mode,
>  				struct intel_load_detect_pipe *old,
> @@ -10425,7 +10446,6 @@ bool intel_get_load_detect_pipe(struct drm_connector
> *connector,
>  	struct intel_crtc *intel_crtc;
>  	struct intel_encoder *intel_encoder =
>  		intel_attached_encoder(connector);
> -	struct drm_crtc *possible_crtc;
>  	struct drm_encoder *encoder = &intel_encoder->base;
>  	struct drm_crtc *crtc = NULL;
>  	struct drm_device *dev = encoder->dev;
> @@ -10434,7 +10454,7 @@ bool intel_get_load_detect_pipe(struct drm_connector
> *connector,
>  	struct drm_atomic_state *state = NULL;
>  	struct drm_connector_state *connector_state;
>  	struct intel_crtc_state *crtc_state;
> -	int ret, i = -1;
> +	int ret;
>  
>  	DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
>  		      connector->base.id, connector->name,
> @@ -10476,21 +10496,10 @@ retry:
>  		return true;
>  	}
>  
> -	/* Find an unused one (if possible) */
> -	for_each_crtc(dev, possible_crtc) {
> -		i++;
> -		if (!(encoder->possible_crtcs & (1 << i)))
> -			continue;
> -		if (possible_crtc->state->enable)
> -			continue;
> -
> -		crtc = possible_crtc;
> -		break;
> -	}
> -
>  	/*
>  	 * If we didn't find an unused CRTC, don't use any.
>  	 */
> +	crtc = intel_get_unused_crtc(encoder);

The comment above looks out of place now. It is pretty obvious anyway, so maybe
just delete it.

With those fixed, this is 

Reviewed-by: Ander Conselvan de Oliveira <conselvan2@gmail.com>

 	if (!crtc) {
>  		DRM_DEBUG_KMS("no pipe available for load-detect\n");
>  		goto fail;
> diff --git a/drivers/gpu/drm/i915/intel_drv.h
> b/drivers/gpu/drm/i915/intel_drv.h
> index c7a6e32..9fe7c4b 100644
> --- a/drivers/gpu/drm/i915/intel_drv.h
> +++ b/drivers/gpu/drm/i915/intel_drv.h
> @@ -1106,6 +1106,7 @@ bool intel_get_load_detect_pipe(struct drm_connector
> *connector,
>  void intel_release_load_detect_pipe(struct drm_connector *connector,
>  				    struct intel_load_detect_pipe *old,
>  				    struct drm_modeset_acquire_ctx *ctx);
> +struct drm_crtc *intel_get_unused_crtc(struct drm_encoder *encoder);
>  int intel_pin_and_fence_fb_obj(struct drm_plane *plane,
>  			       struct drm_framebuffer *fb,
>  			       const struct drm_plane_state *plane_state);
durgadoss.r@intel.com Feb. 15, 2016, 6:42 a.m. UTC | #2
>-----Original Message-----

>From: Ander Conselvan De Oliveira [mailto:conselvan2@gmail.com]

>Sent: Friday, February 12, 2016 10:23 PM

>To: R, Durgadoss <durgadoss.r@intel.com>; intel-gfx@lists.freedesktop.org

>Subject: Re: [Intel-gfx] [PATCHv2 2/4] drm/i915: Make finding unused crtc as a generic function

>

>On Mon, 2016-02-01 at 19:27 +0530, Durgadoss R wrote:

>> Looping over the crtc list and finding an unused crtc

>> has users other than load_detect().

>

>Which other users? If there are other users they should be converted in this

>patch. If the use will only come in a future patch, please make that clear in

>the commit message.


Thanks for the comments, Will update this patch with comments,
And send as part of next version.

Thanks,
Durga

>

>> Hence move it to

>> a common function so that we can re-use the logic.

>>

>> Signed-off-by: Durgadoss R <durgadoss.r@intel.com>

>> ---

>>  drivers/gpu/drm/i915/intel_display.c | 37 ++++++++++++++++++++++-------------

>> -

>>  drivers/gpu/drm/i915/intel_drv.h     |  1 +

>>  2 files changed, 24 insertions(+), 14 deletions(-)

>>

>> diff --git a/drivers/gpu/drm/i915/intel_display.c

>> b/drivers/gpu/drm/i915/intel_display.c

>> index 92cd5c6..af50e61 100644

>> --- a/drivers/gpu/drm/i915/intel_display.c

>> +++ b/drivers/gpu/drm/i915/intel_display.c

>> @@ -10417,6 +10417,27 @@ static int intel_modeset_setup_plane_state(struct

>> drm_atomic_state *state,

>>  	return 0;

>>  }

>>

>> +struct drm_crtc *intel_get_unused_crtc(struct drm_encoder *encoder)

>> +{

>

>This function is exported, so it needs some kernel doc.

>

>> +	struct drm_crtc *possible_crtc;

>> +	struct drm_crtc *crtc = NULL;

>> +	struct drm_device *dev = encoder->dev;

>> +	int i = -1;

>> +

>> +	for_each_crtc(dev, possible_crtc) {

>> +		i++;

>> +		if (!(encoder->possible_crtcs & (1 << i)))

>> +			continue;

>> +		if (possible_crtc->state->enable)

>> +			continue;

>> +

>> +		crtc = possible_crtc;

>> +		break;

>> +	}

>> +

>> +	return crtc;

>> +}

>> +

>>  bool intel_get_load_detect_pipe(struct drm_connector *connector,

>>  				struct drm_display_mode *mode,

>>  				struct intel_load_detect_pipe *old,

>> @@ -10425,7 +10446,6 @@ bool intel_get_load_detect_pipe(struct drm_connector

>> *connector,

>>  	struct intel_crtc *intel_crtc;

>>  	struct intel_encoder *intel_encoder =

>>  		intel_attached_encoder(connector);

>> -	struct drm_crtc *possible_crtc;

>>  	struct drm_encoder *encoder = &intel_encoder->base;

>>  	struct drm_crtc *crtc = NULL;

>>  	struct drm_device *dev = encoder->dev;

>> @@ -10434,7 +10454,7 @@ bool intel_get_load_detect_pipe(struct drm_connector

>> *connector,

>>  	struct drm_atomic_state *state = NULL;

>>  	struct drm_connector_state *connector_state;

>>  	struct intel_crtc_state *crtc_state;

>> -	int ret, i = -1;

>> +	int ret;

>>

>>  	DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",

>>  		      connector->base.id, connector->name,

>> @@ -10476,21 +10496,10 @@ retry:

>>  		return true;

>>  	}

>>

>> -	/* Find an unused one (if possible) */

>> -	for_each_crtc(dev, possible_crtc) {

>> -		i++;

>> -		if (!(encoder->possible_crtcs & (1 << i)))

>> -			continue;

>> -		if (possible_crtc->state->enable)

>> -			continue;

>> -

>> -		crtc = possible_crtc;

>> -		break;

>> -	}

>> -

>>  	/*

>>  	 * If we didn't find an unused CRTC, don't use any.

>>  	 */

>> +	crtc = intel_get_unused_crtc(encoder);

>

>The comment above looks out of place now. It is pretty obvious anyway, so maybe

>just delete it.

>

>With those fixed, this is

>

>Reviewed-by: Ander Conselvan de Oliveira <conselvan2@gmail.com>

>

> 	if (!crtc) {

>>  		DRM_DEBUG_KMS("no pipe available for load-detect\n");

>>  		goto fail;

>> diff --git a/drivers/gpu/drm/i915/intel_drv.h

>> b/drivers/gpu/drm/i915/intel_drv.h

>> index c7a6e32..9fe7c4b 100644

>> --- a/drivers/gpu/drm/i915/intel_drv.h

>> +++ b/drivers/gpu/drm/i915/intel_drv.h

>> @@ -1106,6 +1106,7 @@ bool intel_get_load_detect_pipe(struct drm_connector

>> *connector,

>>  void intel_release_load_detect_pipe(struct drm_connector *connector,

>>  				    struct intel_load_detect_pipe *old,

>>  				    struct drm_modeset_acquire_ctx *ctx);

>> +struct drm_crtc *intel_get_unused_crtc(struct drm_encoder *encoder);

>>  int intel_pin_and_fence_fb_obj(struct drm_plane *plane,

>>  			       struct drm_framebuffer *fb,

>>  			       const struct drm_plane_state *plane_state);
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 92cd5c6..af50e61 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -10417,6 +10417,27 @@  static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
 	return 0;
 }
 
+struct drm_crtc *intel_get_unused_crtc(struct drm_encoder *encoder)
+{
+	struct drm_crtc *possible_crtc;
+	struct drm_crtc *crtc = NULL;
+	struct drm_device *dev = encoder->dev;
+	int i = -1;
+
+	for_each_crtc(dev, possible_crtc) {
+		i++;
+		if (!(encoder->possible_crtcs & (1 << i)))
+			continue;
+		if (possible_crtc->state->enable)
+			continue;
+
+		crtc = possible_crtc;
+		break;
+	}
+
+	return crtc;
+}
+
 bool intel_get_load_detect_pipe(struct drm_connector *connector,
 				struct drm_display_mode *mode,
 				struct intel_load_detect_pipe *old,
@@ -10425,7 +10446,6 @@  bool intel_get_load_detect_pipe(struct drm_connector *connector,
 	struct intel_crtc *intel_crtc;
 	struct intel_encoder *intel_encoder =
 		intel_attached_encoder(connector);
-	struct drm_crtc *possible_crtc;
 	struct drm_encoder *encoder = &intel_encoder->base;
 	struct drm_crtc *crtc = NULL;
 	struct drm_device *dev = encoder->dev;
@@ -10434,7 +10454,7 @@  bool intel_get_load_detect_pipe(struct drm_connector *connector,
 	struct drm_atomic_state *state = NULL;
 	struct drm_connector_state *connector_state;
 	struct intel_crtc_state *crtc_state;
-	int ret, i = -1;
+	int ret;
 
 	DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
 		      connector->base.id, connector->name,
@@ -10476,21 +10496,10 @@  retry:
 		return true;
 	}
 
-	/* Find an unused one (if possible) */
-	for_each_crtc(dev, possible_crtc) {
-		i++;
-		if (!(encoder->possible_crtcs & (1 << i)))
-			continue;
-		if (possible_crtc->state->enable)
-			continue;
-
-		crtc = possible_crtc;
-		break;
-	}
-
 	/*
 	 * If we didn't find an unused CRTC, don't use any.
 	 */
+	crtc = intel_get_unused_crtc(encoder);
 	if (!crtc) {
 		DRM_DEBUG_KMS("no pipe available for load-detect\n");
 		goto fail;
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
index c7a6e32..9fe7c4b 100644
--- a/drivers/gpu/drm/i915/intel_drv.h
+++ b/drivers/gpu/drm/i915/intel_drv.h
@@ -1106,6 +1106,7 @@  bool intel_get_load_detect_pipe(struct drm_connector *connector,
 void intel_release_load_detect_pipe(struct drm_connector *connector,
 				    struct intel_load_detect_pipe *old,
 				    struct drm_modeset_acquire_ctx *ctx);
+struct drm_crtc *intel_get_unused_crtc(struct drm_encoder *encoder);
 int intel_pin_and_fence_fb_obj(struct drm_plane *plane,
 			       struct drm_framebuffer *fb,
 			       const struct drm_plane_state *plane_state);