All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 1/2] drm: Add connector property to limit max bpc
@ 2018-09-18  4:52 Radhakrishna Sripada
  2018-09-18  4:52 ` [PATCH v6 2/2] drm/i915: Allow "max bpc" property to limit pipe_bpp Radhakrishna Sripada
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Radhakrishna Sripada @ 2018-09-18  4:52 UTC (permalink / raw)
  To: intel-gfx
  Cc: Stanislav Lisovskiy, Radhakrishna Sripada, Daniel Vetter,
	Kishore Kadiyala, Manasi Navare, dri-devel, Rodrigo Vivi

At times 12bpc HDMI cannot be driven due to faulty cables, dongles
level shifters etc. To workaround them we may need to drive the output
at a lower bpc. Currently the user space does not have a way to limit
the bpc. The default bpc to be programmed is decided by the driver and
is run against connector limitations.

Creating a new connector property "max bpc" in order to limit the bpc.
xrandr can make use of this connector property to make sure that bpc does
not exceed the configured value. This property can be used by userspace to
set the bpc.

V2: Initialize max_bpc to satisfy kms_properties
V3: Move the property to drm_connector
V4: Split drm and i915 components(Ville)
V5: Make the property per connector(Ville)
V6: Compare the requested bpc to connector bpc(Daniel)
    Move the attach_property function to core(Ville)

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Kishore Kadiyala <kishore.kadiyala@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Manasi Navare <manasi.d.navare@intel.com>
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/drm_atomic.c        | 24 ++++++++++++++++++++++++
 drivers/gpu/drm/drm_atomic_helper.c |  4 ++++
 drivers/gpu/drm/drm_atomic_uapi.c   |  4 ++++
 drivers/gpu/drm/drm_connector.c     | 34 ++++++++++++++++++++++++++++++++++
 include/drm/drm_connector.h         | 20 ++++++++++++++++++++
 5 files changed, 86 insertions(+)

diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
index 7ada75919756..fa9996deb132 100644
--- a/drivers/gpu/drm/drm_atomic.c
+++ b/drivers/gpu/drm/drm_atomic.c
@@ -390,6 +390,7 @@ static int drm_atomic_connector_check(struct drm_connector *connector,
 {
 	struct drm_crtc_state *crtc_state;
 	struct drm_writeback_job *writeback_job = state->writeback_job;
+	struct drm_display_info *info = &connector->display_info;
 
 	if ((connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) || !writeback_job)
 		return 0;
@@ -400,6 +401,29 @@ static int drm_atomic_connector_check(struct drm_connector *connector,
 		return -EINVAL;
 	}
 
+	if (connector->max_bpc_property) {
+		if (info->bpc != 0 && info->bpc < state->max_requested_bpc) {
+			/* Don't use an invalid EDID bpc value */
+			DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] Clamping requested"
+					 " display bpp (was %d) to EDID reported"
+					 "max of %d\n", connector->base.id,
+					 connector->name,
+					 state->max_requested_bpc, info->bpc);
+			state->max_bpc = info->bpc;
+		} else if (info->bpc != 0) {
+			state->max_bpc = state->max_requested_bpc;
+		} else {
+			/* Clamp bpc to 8 on screens witout EDID 1.4 */
+			DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] Clamping requested"
+					 " display bpp (was %d) to default limit"
+					 " of 24\n", connector->base.id,
+					 connector->name, state->max_requested_bpc);
+			state->max_bpc = 8;
+		}
+	} else {
+		state->max_bpc = info->bpc ? info->bpc : 8;
+	}
+
 	if (state->crtc)
 		crtc_state = drm_atomic_get_existing_crtc_state(state->state,
 								state->crtc);
diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
index 3cf1aa132778..d9ce8077fb6a 100644
--- a/drivers/gpu/drm/drm_atomic_helper.c
+++ b/drivers/gpu/drm/drm_atomic_helper.c
@@ -639,6 +639,10 @@ drm_atomic_helper_check_modeset(struct drm_device *dev,
 			if (old_connector_state->link_status !=
 			    new_connector_state->link_status)
 				new_crtc_state->connectors_changed = true;
+
+			if (old_connector_state->max_requested_bpc !=
+			    new_connector_state->max_requested_bpc)
+				new_crtc_state->connectors_changed = true;
 		}
 
 		if (funcs->atomic_check)
diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c
index d5b7f315098c..86ac33922b09 100644
--- a/drivers/gpu/drm/drm_atomic_uapi.c
+++ b/drivers/gpu/drm/drm_atomic_uapi.c
@@ -740,6 +740,8 @@ static int drm_atomic_connector_set_property(struct drm_connector *connector,
 
 		return set_out_fence_for_connector(state->state, connector,
 						   fence_ptr);
+	} else if (property == connector->max_bpc_property) {
+		state->max_requested_bpc = val;
 	} else if (connector->funcs->atomic_set_property) {
 		return connector->funcs->atomic_set_property(connector,
 				state, property, val);
@@ -804,6 +806,8 @@ drm_atomic_connector_get_property(struct drm_connector *connector,
 		*val = 0;
 	} else if (property == config->writeback_out_fence_ptr_property) {
 		*val = 0;
+	} else if (property == connector->max_bpc_property) {
+		*val = state->max_requested_bpc;
 	} else if (connector->funcs->atomic_get_property) {
 		return connector->funcs->atomic_get_property(connector,
 				state, property, val);
diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c
index 1e40e5decbe9..06ad59222e03 100644
--- a/drivers/gpu/drm/drm_connector.c
+++ b/drivers/gpu/drm/drm_connector.c
@@ -1583,6 +1583,40 @@ void drm_connector_set_link_status_property(struct drm_connector *connector,
 EXPORT_SYMBOL(drm_connector_set_link_status_property);
 
 /**
+ * drm_connector_attach_max_bpc_property - attach "max bpc" property
+ * @connector: connector to attach max bpc property on.
+ * @min: The minimum bit depth supported by the connector.
+ * @max: The maximum bit depth supported by the connector.
+ *
+ * This is used to add support for limiting the bit depth on a connector.
+ *
+ * Returns:
+ * Zero on success, negative errno on failure.
+ */
+int drm_connector_attach_max_bpc_property(struct drm_connector *connector, int
+					  min, int max)
+{
+	struct drm_device *dev = connector->dev;
+	struct drm_property *prop;
+
+	prop = connector->max_bpc_property;
+	if (prop == NULL) {
+		prop = drm_property_create_range(dev, 0, "max bpc", min, max);
+		if (!prop)
+			return -ENOMEM;
+
+		connector->max_bpc_property = prop;
+	}
+
+	drm_object_attach_property(&connector->base, prop, max);
+	connector->state->max_requested_bpc = max;
+
+
+	return 0;
+}
+EXPORT_SYMBOL(drm_connector_attach_max_bpc_property);
+
+/**
  * drm_connector_init_panel_orientation_property -
  *	initialize the connecters panel_orientation property
  * @connector: connector for which to init the panel-orientation property.
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index 91a877fa00cb..d9c60fde5372 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -461,6 +461,18 @@ struct drm_connector_state {
 	 * drm_writeback_signal_completion()
 	 */
 	struct drm_writeback_job *writeback_job;
+
+	/**
+	 * @max_requested_bpc: Connector property to limit the maximum bit
+	 * depth of the pixels.
+	 */
+	unsigned int max_requested_bpc;
+
+	/**
+	 * @max_bpc: Connector max_bpc based on the requested max_bpc property
+	 * and the connector bpc limitations obtained from edid.
+	 */
+	unsigned int max_bpc;
 };
 
 /**
@@ -924,6 +936,12 @@ struct drm_connector {
 	 */
 	struct drm_property_blob *path_blob_ptr;
 
+	/**
+	 * @max_bpc_property: Default connector property for the max bpc to be
+	 * driven out of the connector.
+	 */
+	struct drm_property *max_bpc_property;
+
 #define DRM_CONNECTOR_POLL_HPD (1 << 0)
 #define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
 #define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
@@ -1201,6 +1219,8 @@ void drm_connector_set_link_status_property(struct drm_connector *connector,
 					    uint64_t link_status);
 int drm_connector_init_panel_orientation_property(
 	struct drm_connector *connector, int width, int height);
+int drm_connector_attach_max_bpc_property(struct drm_connector *connector,
+					  int min, int max);
 
 /**
  * struct drm_tile_group - Tile group metadata
-- 
2.9.3

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v6 2/2] drm/i915: Allow "max bpc" property to limit pipe_bpp
  2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
@ 2018-09-18  4:52 ` Radhakrishna Sripada
  2018-09-18  5:16 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v6,1/2] drm: Add connector property to limit max bpc Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Radhakrishna Sripada @ 2018-09-18  4:52 UTC (permalink / raw)
  To: intel-gfx; +Cc: Kishore Kadiyala, Daniel Vetter, dri-devel, Rodrigo Vivi

Use the newly added "max bpc" connector property to limit pipe bpp.

V3: Use drm_connector_state to access the "max bpc" property
V4: Initialize the drm property, add suuport to DP(Ville)
V5: Use the property in the connector and fix CI failure(Ville)
V6: Use the core function to attach max_bpc property, remove the redundant
    clamping of pipe bpp based on connector info

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@iffwll.ch>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Kishore Kadiyala <kishore.kadiyala@intel.com>
Cc: Manasi Navare <manasi.d.navare@intel.com>
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 drivers/gpu/drm/i915/intel_display.c | 49 ++++++++++++++++++++----------------
 drivers/gpu/drm/i915/intel_dp.c      |  5 ++++
 drivers/gpu/drm/i915/intel_hdmi.c    |  5 ++++
 3 files changed, 38 insertions(+), 21 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index eb25037d7b38..219323f6b16e 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -10845,29 +10845,37 @@ static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
 }
 
 static void
-connected_sink_compute_bpp(struct intel_connector *connector,
-			   struct intel_crtc_state *pipe_config)
+connected_sink_max_bpp(struct drm_connector_state *conn_state,
+		       struct intel_crtc_state *pipe_config)
 {
-	const struct drm_display_info *info = &connector->base.display_info;
-	int bpp = pipe_config->pipe_bpp;
-
-	DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
-		      connector->base.base.id,
-		      connector->base.name);
-
-	/* Don't use an invalid EDID bpc value */
-	if (info->bpc != 0 && info->bpc * 3 < bpp) {
-		DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
-			      bpp, info->bpc * 3);
-		pipe_config->pipe_bpp = info->bpc * 3;
+	if (pipe_config->pipe_bpp < conn_state->max_bpc * 3) {
+		conn_state->max_bpc = pipe_config->pipe_bpp / 3;
+		return;
 	}
 
-	/* Clamp bpp to 8 on screens without EDID 1.4 */
-	if (info->bpc == 0 && bpp > 24) {
-		DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
-			      bpp);
-		pipe_config->pipe_bpp = 24;
+	switch (conn_state->max_bpc) {
+	case 8:
+	case 9:
+		pipe_config->pipe_bpp = 8*3;
+		break;
+	case 10:
+	case 11:
+		pipe_config->pipe_bpp = 10*3;
+		break;
+	case 12:
+	case 13:
+	case 14:
+	case 15:
+		pipe_config->pipe_bpp = 12*3;
+		break;
+	case 16:
+		pipe_config->pipe_bpp = 16*3;
+		break;
+	default:
+		break;
 	}
+
+	DRM_DEBUG_KMS("Limiting display bpp to %d\n", pipe_config->pipe_bpp);
 }
 
 static int
@@ -10898,8 +10906,7 @@ compute_baseline_pipe_bpp(struct intel_crtc *crtc,
 		if (connector_state->crtc != &crtc->base)
 			continue;
 
-		connected_sink_compute_bpp(to_intel_connector(connector),
-					   pipe_config);
+		connected_sink_max_bpp(connector_state, pipe_config);
 	}
 
 	return bpp;
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 436c22de33b6..aefca1d9e87b 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -5719,6 +5719,11 @@ intel_dp_add_properties(struct intel_dp *intel_dp, struct drm_connector *connect
 		intel_attach_force_audio_property(connector);
 
 	intel_attach_broadcast_rgb_property(connector);
+	if ((IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
+	     IS_CHERRYVIEW(dev_priv)))
+		drm_connector_attach_max_bpc_property(connector, 8, 10);
+	else if (INTEL_GEN(dev_priv) >= 5)
+		drm_connector_attach_max_bpc_property(connector, 8, 12);
 
 	if (intel_dp_is_edp(intel_dp)) {
 		u32 allowed_scalers;
diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c
index a2dab0b6bde6..2b432c7e4f8a 100644
--- a/drivers/gpu/drm/i915/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/intel_hdmi.c
@@ -2109,11 +2109,16 @@ static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
 static void
 intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
 {
+	struct drm_i915_private *dev_priv = to_i915(connector->dev);
+
 	intel_attach_force_audio_property(connector);
 	intel_attach_broadcast_rgb_property(connector);
 	intel_attach_aspect_ratio_property(connector);
 	drm_connector_attach_content_type_property(connector);
 	connector->state->picture_aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
+
+	if (!HAS_GMCH_DISPLAY(dev_priv))
+		drm_connector_attach_max_bpc_property(connector, 8, 12);
 }
 
 /*
-- 
2.9.3

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* ✗ Fi.CI.CHECKPATCH: warning for series starting with [v6,1/2] drm: Add connector property to limit max bpc
  2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
  2018-09-18  4:52 ` [PATCH v6 2/2] drm/i915: Allow "max bpc" property to limit pipe_bpp Radhakrishna Sripada
@ 2018-09-18  5:16 ` Patchwork
  2018-09-18  5:18 ` ✗ Fi.CI.SPARSE: " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-09-18  5:16 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-gfx

== Series Details ==

Series: series starting with [v6,1/2] drm: Add connector property to limit max bpc
URL   : https://patchwork.freedesktop.org/series/49825/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
46b90fc53a4c drm: Add connector property to limit max bpc
-:56: WARNING:MISSING_SPACE: break quoted strings at a space character
#56: FILE: drivers/gpu/drm/drm_atomic.c:409:
+					 " display bpp (was %d) to EDID reported"
+					 "max of %d\n", connector->base.id,

-:140: CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "!prop"
#140: FILE: drivers/gpu/drm/drm_connector.c:1603:
+	if (prop == NULL) {

-:151: CHECK:LINE_SPACING: Please don't use multiple blank lines
#151: FILE: drivers/gpu/drm/drm_connector.c:1614:
+
+

total: 0 errors, 1 warnings, 2 checks, 140 lines checked
acf42a1a4b48 drm/i915: Allow "max bpc" property to limit pipe_bpp
-:63: CHECK:SPACING: spaces preferred around that '*' (ctx:VxV)
#63: FILE: drivers/gpu/drm/i915/intel_display.c:10859:
+		pipe_config->pipe_bpp = 8*3;
 		                         ^

-:67: CHECK:SPACING: spaces preferred around that '*' (ctx:VxV)
#67: FILE: drivers/gpu/drm/i915/intel_display.c:10863:
+		pipe_config->pipe_bpp = 10*3;
 		                          ^

-:73: CHECK:SPACING: spaces preferred around that '*' (ctx:VxV)
#73: FILE: drivers/gpu/drm/i915/intel_display.c:10869:
+		pipe_config->pipe_bpp = 12*3;
 		                          ^

-:76: CHECK:SPACING: spaces preferred around that '*' (ctx:VxV)
#76: FILE: drivers/gpu/drm/i915/intel_display.c:10872:
+		pipe_config->pipe_bpp = 16*3;
 		                          ^

total: 0 errors, 0 warnings, 4 checks, 92 lines checked

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* ✗ Fi.CI.SPARSE: warning for series starting with [v6,1/2] drm: Add connector property to limit max bpc
  2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
  2018-09-18  4:52 ` [PATCH v6 2/2] drm/i915: Allow "max bpc" property to limit pipe_bpp Radhakrishna Sripada
  2018-09-18  5:16 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v6,1/2] drm: Add connector property to limit max bpc Patchwork
@ 2018-09-18  5:18 ` Patchwork
  2018-09-18  5:36 ` ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-09-18  5:18 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-gfx

== Series Details ==

Series: series starting with [v6,1/2] drm: Add connector property to limit max bpc
URL   : https://patchwork.freedesktop.org/series/49825/
State : warning

== Summary ==

$ dim sparse origin/drm-tip
Commit: drm: Add connector property to limit max bpc
+                         ^~~~~~~~~~
+                            ~~~~~~~~~~^~~~~~~~
+drivers/gpu/drm/drm_atomic.c:391:25: note: ‘crtc_state’ was declared here
+drivers/gpu/drm/drm_atomic.c:431:38: warning: ‘crtc_state’ may be used uninitialized in this function [-Wmaybe-uninitialized]
+drivers/gpu/drm/drm_atomic.c: In function ‘drm_atomic_check_only’:
+  if (writeback_job->fb && !crtc_state->active) {
+  struct drm_crtc_state *crtc_state;

Commit: drm/i915: Allow "max bpc" property to limit pipe_bpp
Okay!

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* ✓ Fi.CI.BAT: success for series starting with [v6,1/2] drm: Add connector property to limit max bpc
  2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
                   ` (2 preceding siblings ...)
  2018-09-18  5:18 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2018-09-18  5:36 ` Patchwork
  2018-09-18  7:05 ` ✓ Fi.CI.IGT: " Patchwork
  2018-09-18 16:49 ` [PATCH v6 1/2] " Ville Syrjälä
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-09-18  5:36 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-gfx

== Series Details ==

Series: series starting with [v6,1/2] drm: Add connector property to limit max bpc
URL   : https://patchwork.freedesktop.org/series/49825/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_4835 -> Patchwork_10208 =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/49825/revisions/1/mbox/


== Changes ==

  No changes found


== Participating hosts (45 -> 40) ==

  Missing    (5): fi-ctg-p8600 fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u 


== Build changes ==

    * Linux: CI_DRM_4835 -> Patchwork_10208

  CI_DRM_4835: 0875e7885717d3d812941e8e2db1dc99728be1ff @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_4645: 03b90a39ed12a568c9da752466ea708d6348e110 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_10208: acf42a1a4b48d551759020d1289576251c436ce0 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

acf42a1a4b48 drm/i915: Allow "max bpc" property to limit pipe_bpp
46b90fc53a4c drm: Add connector property to limit max bpc

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_10208/issues.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* ✓ Fi.CI.IGT: success for series starting with [v6,1/2] drm: Add connector property to limit max bpc
  2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
                   ` (3 preceding siblings ...)
  2018-09-18  5:36 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2018-09-18  7:05 ` Patchwork
  2018-09-18 16:49 ` [PATCH v6 1/2] " Ville Syrjälä
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-09-18  7:05 UTC (permalink / raw)
  To: Radhakrishna Sripada; +Cc: intel-gfx

== Series Details ==

Series: series starting with [v6,1/2] drm: Add connector property to limit max bpc
URL   : https://patchwork.freedesktop.org/series/49825/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_4835_full -> Patchwork_10208_full =

== Summary - WARNING ==

  Minor unknown changes coming with Patchwork_10208_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_10208_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

== Possible new issues ==

  Here are the unknown changes that may have been introduced in Patchwork_10208_full:

  === IGT changes ===

    ==== Warnings ====

    igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
      shard-snb:          SKIP -> PASS +1

    


== Participating hosts (5 -> 5) ==

  No changes in participating hosts


== Build changes ==

    * Linux: CI_DRM_4835 -> Patchwork_10208

  CI_DRM_4835: 0875e7885717d3d812941e8e2db1dc99728be1ff @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_4645: 03b90a39ed12a568c9da752466ea708d6348e110 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_10208: acf42a1a4b48d551759020d1289576251c436ce0 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_10208/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v6 1/2] drm: Add connector property to limit max bpc
  2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
                   ` (4 preceding siblings ...)
  2018-09-18  7:05 ` ✓ Fi.CI.IGT: " Patchwork
@ 2018-09-18 16:49 ` Ville Syrjälä
  5 siblings, 0 replies; 7+ messages in thread
From: Ville Syrjälä @ 2018-09-18 16:49 UTC (permalink / raw)
  To: Radhakrishna Sripada
  Cc: Stanislav Lisovskiy, Daniel Vetter, intel-gfx, Kishore Kadiyala,
	Manasi Navare, dri-devel, Rodrigo Vivi

On Mon, Sep 17, 2018 at 09:52:08PM -0700, Radhakrishna Sripada wrote:
> At times 12bpc HDMI cannot be driven due to faulty cables, dongles
> level shifters etc. To workaround them we may need to drive the output
> at a lower bpc. Currently the user space does not have a way to limit
> the bpc. The default bpc to be programmed is decided by the driver and
> is run against connector limitations.
> 
> Creating a new connector property "max bpc" in order to limit the bpc.
> xrandr can make use of this connector property to make sure that bpc does
> not exceed the configured value. This property can be used by userspace to
> set the bpc.
> 
> V2: Initialize max_bpc to satisfy kms_properties
> V3: Move the property to drm_connector
> V4: Split drm and i915 components(Ville)
> V5: Make the property per connector(Ville)
> V6: Compare the requested bpc to connector bpc(Daniel)
>     Move the attach_property function to core(Ville)
> 
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Cc: Kishore Kadiyala <kishore.kadiyala@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Manasi Navare <manasi.d.navare@intel.com>
> Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
> ---
>  drivers/gpu/drm/drm_atomic.c        | 24 ++++++++++++++++++++++++
>  drivers/gpu/drm/drm_atomic_helper.c |  4 ++++
>  drivers/gpu/drm/drm_atomic_uapi.c   |  4 ++++
>  drivers/gpu/drm/drm_connector.c     | 34 ++++++++++++++++++++++++++++++++++
>  include/drm/drm_connector.h         | 20 ++++++++++++++++++++
>  5 files changed, 86 insertions(+)
> 
> diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
> index 7ada75919756..fa9996deb132 100644
> --- a/drivers/gpu/drm/drm_atomic.c
> +++ b/drivers/gpu/drm/drm_atomic.c
> @@ -390,6 +390,7 @@ static int drm_atomic_connector_check(struct drm_connector *connector,
>  {
>  	struct drm_crtc_state *crtc_state;
>  	struct drm_writeback_job *writeback_job = state->writeback_job;
> +	struct drm_display_info *info = &connector->display_info;
>  
>  	if ((connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) || !writeback_job)
>  		return 0;
> @@ -400,6 +401,29 @@ static int drm_atomic_connector_check(struct drm_connector *connector,
>  		return -EINVAL;
>  	}
>  
> +	if (connector->max_bpc_property) {
> +		if (info->bpc != 0 && info->bpc < state->max_requested_bpc) {
> +			/* Don't use an invalid EDID bpc value */
> +			DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] Clamping requested"
> +					 " display bpp (was %d) to EDID reported"
> +					 "max of %d\n", connector->base.id,
> +					 connector->name,
> +					 state->max_requested_bpc, info->bpc);
> +			state->max_bpc = info->bpc;
> +		} else if (info->bpc != 0) {
> +			state->max_bpc = state->max_requested_bpc;
> +		} else {
> +			/* Clamp bpc to 8 on screens witout EDID 1.4 */
> +			DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] Clamping requested"
> +					 " display bpp (was %d) to default limit"
> +					 " of 24\n", connector->base.id,
> +					 connector->name, state->max_requested_bpc);
> +			state->max_bpc = 8;
> +		}
> +	} else {
> +		state->max_bpc = info->bpc ? info->bpc : 8;
> +	}

Something like

max_bpc = info->bpc ?: 8;
if (max_bpc_prop)
	max_bpc = min(max_bpc, max_requested_bpc);

for short?

Not quite sure the 8bpc fallback should be here. Maybe it should be in
the edid code instead? Though I guess we want something for edidless
displays too so maybe this is fine.

> +
>  	if (state->crtc)
>  		crtc_state = drm_atomic_get_existing_crtc_state(state->state,
>  								state->crtc);
> diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
> index 3cf1aa132778..d9ce8077fb6a 100644
> --- a/drivers/gpu/drm/drm_atomic_helper.c
> +++ b/drivers/gpu/drm/drm_atomic_helper.c
> @@ -639,6 +639,10 @@ drm_atomic_helper_check_modeset(struct drm_device *dev,
>  			if (old_connector_state->link_status !=
>  			    new_connector_state->link_status)
>  				new_crtc_state->connectors_changed = true;
> +
> +			if (old_connector_state->max_requested_bpc !=
> +			    new_connector_state->max_requested_bpc)
> +				new_crtc_state->connectors_changed = true;
>  		}
>  
>  		if (funcs->atomic_check)
> diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c
> index d5b7f315098c..86ac33922b09 100644
> --- a/drivers/gpu/drm/drm_atomic_uapi.c
> +++ b/drivers/gpu/drm/drm_atomic_uapi.c
> @@ -740,6 +740,8 @@ static int drm_atomic_connector_set_property(struct drm_connector *connector,
>  
>  		return set_out_fence_for_connector(state->state, connector,
>  						   fence_ptr);
> +	} else if (property == connector->max_bpc_property) {
> +		state->max_requested_bpc = val;
>  	} else if (connector->funcs->atomic_set_property) {
>  		return connector->funcs->atomic_set_property(connector,
>  				state, property, val);
> @@ -804,6 +806,8 @@ drm_atomic_connector_get_property(struct drm_connector *connector,
>  		*val = 0;
>  	} else if (property == config->writeback_out_fence_ptr_property) {
>  		*val = 0;
> +	} else if (property == connector->max_bpc_property) {
> +		*val = state->max_requested_bpc;
>  	} else if (connector->funcs->atomic_get_property) {
>  		return connector->funcs->atomic_get_property(connector,
>  				state, property, val);
> diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c
> index 1e40e5decbe9..06ad59222e03 100644
> --- a/drivers/gpu/drm/drm_connector.c
> +++ b/drivers/gpu/drm/drm_connector.c
> @@ -1583,6 +1583,40 @@ void drm_connector_set_link_status_property(struct drm_connector *connector,
>  EXPORT_SYMBOL(drm_connector_set_link_status_property);
>  
>  /**
> + * drm_connector_attach_max_bpc_property - attach "max bpc" property
> + * @connector: connector to attach max bpc property on.
> + * @min: The minimum bit depth supported by the connector.
> + * @max: The maximum bit depth supported by the connector.
> + *
> + * This is used to add support for limiting the bit depth on a connector.
> + *
> + * Returns:
> + * Zero on success, negative errno on failure.
> + */
> +int drm_connector_attach_max_bpc_property(struct drm_connector *connector, int
> +					  min, int max)
> +{
> +	struct drm_device *dev = connector->dev;
> +	struct drm_property *prop;
> +
> +	prop = connector->max_bpc_property;
> +	if (prop == NULL) {
> +		prop = drm_property_create_range(dev, 0, "max bpc", min, max);
> +		if (!prop)
> +			return -ENOMEM;
> +
> +		connector->max_bpc_property = prop;
> +	}
> +
> +	drm_object_attach_property(&connector->base, prop, max);
> +	connector->state->max_requested_bpc = max;
> +
> +
> +	return 0;
> +}
> +EXPORT_SYMBOL(drm_connector_attach_max_bpc_property);
> +
> +/**
>   * drm_connector_init_panel_orientation_property -
>   *	initialize the connecters panel_orientation property
>   * @connector: connector for which to init the panel-orientation property.
> diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
> index 91a877fa00cb..d9c60fde5372 100644
> --- a/include/drm/drm_connector.h
> +++ b/include/drm/drm_connector.h
> @@ -461,6 +461,18 @@ struct drm_connector_state {
>  	 * drm_writeback_signal_completion()
>  	 */
>  	struct drm_writeback_job *writeback_job;
> +
> +	/**
> +	 * @max_requested_bpc: Connector property to limit the maximum bit
> +	 * depth of the pixels.
> +	 */
> +	unsigned int max_requested_bpc;
> +
> +	/**
> +	 * @max_bpc: Connector max_bpc based on the requested max_bpc property
> +	 * and the connector bpc limitations obtained from edid.
> +	 */
> +	unsigned int max_bpc;

Could make both of these u8.

>  };
>  
>  /**
> @@ -924,6 +936,12 @@ struct drm_connector {
>  	 */
>  	struct drm_property_blob *path_blob_ptr;
>  
> +	/**
> +	 * @max_bpc_property: Default connector property for the max bpc to be
> +	 * driven out of the connector.
> +	 */
> +	struct drm_property *max_bpc_property;
> +
>  #define DRM_CONNECTOR_POLL_HPD (1 << 0)
>  #define DRM_CONNECTOR_POLL_CONNECT (1 << 1)
>  #define DRM_CONNECTOR_POLL_DISCONNECT (1 << 2)
> @@ -1201,6 +1219,8 @@ void drm_connector_set_link_status_property(struct drm_connector *connector,
>  					    uint64_t link_status);
>  int drm_connector_init_panel_orientation_property(
>  	struct drm_connector *connector, int width, int height);
> +int drm_connector_attach_max_bpc_property(struct drm_connector *connector,
> +					  int min, int max);
>  
>  /**
>   * struct drm_tile_group - Tile group metadata
> -- 
> 2.9.3

-- 
Ville Syrjälä
Intel
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-09-18 16:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-18  4:52 [PATCH v6 1/2] drm: Add connector property to limit max bpc Radhakrishna Sripada
2018-09-18  4:52 ` [PATCH v6 2/2] drm/i915: Allow "max bpc" property to limit pipe_bpp Radhakrishna Sripada
2018-09-18  5:16 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v6,1/2] drm: Add connector property to limit max bpc Patchwork
2018-09-18  5:18 ` ✗ Fi.CI.SPARSE: " Patchwork
2018-09-18  5:36 ` ✓ Fi.CI.BAT: success " Patchwork
2018-09-18  7:05 ` ✓ Fi.CI.IGT: " Patchwork
2018-09-18 16:49 ` [PATCH v6 1/2] " Ville Syrjälä

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.