All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/probe-helper: Add helper for drm_helper_probe_single_connector_modes()
@ 2022-04-26 18:46 ` Douglas Anderson
  0 siblings, 0 replies; 33+ messages in thread
From: Douglas Anderson @ 2022-04-26 18:46 UTC (permalink / raw)
  To: dri-devel
  Cc: dmitry.baryshkov, swboyd, quic_abhinavk, quic_aravindh,
	robdclark, quic_khsieh, linux-arm-msm, quic_sbillaka,
	Douglas Anderson, Daniel Vetter, David Airlie, Maarten Lankhorst,
	Maxime Ripard, Thomas Zimmermann, linux-kernel

The drm_helper_probe_single_connector_modes() is a bit long. Let's
break a chunk off to update and validate modes. This helps avoid one
goto and also will allow us to more easily call the helper a second
time in a future patch without adding looping or another goto.

This change is intended to be a no-op change--just code movement.

Signed-off-by: Douglas Anderson <dianders@chromium.org>
---

 drivers/gpu/drm/drm_probe_helper.c | 105 ++++++++++++++++-------------
 1 file changed, 59 insertions(+), 46 deletions(-)

diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
index 682359512996..819225629010 100644
--- a/drivers/gpu/drm/drm_probe_helper.c
+++ b/drivers/gpu/drm/drm_probe_helper.c
@@ -354,6 +354,61 @@ drm_helper_probe_detect(struct drm_connector *connector,
 }
 EXPORT_SYMBOL(drm_helper_probe_detect);
 
+static bool _drm_helper_update_and_validate(struct drm_connector *connector,
+					    uint32_t maxX, uint32_t maxY,
+					    struct drm_modeset_acquire_ctx *ctx)
+{
+	struct drm_device *dev = connector->dev;
+	struct drm_display_mode *mode;
+	int mode_flags = 0;
+	int ret;
+
+	drm_connector_list_update(connector);
+
+	if (connector->interlace_allowed)
+		mode_flags |= DRM_MODE_FLAG_INTERLACE;
+	if (connector->doublescan_allowed)
+		mode_flags |= DRM_MODE_FLAG_DBLSCAN;
+	if (connector->stereo_allowed)
+		mode_flags |= DRM_MODE_FLAG_3D_MASK;
+
+	list_for_each_entry(mode, &connector->modes, head) {
+		if (mode->status != MODE_OK)
+			continue;
+
+		mode->status = drm_mode_validate_driver(dev, mode);
+		if (mode->status != MODE_OK)
+			continue;
+
+		mode->status = drm_mode_validate_size(mode, maxX, maxY);
+		if (mode->status != MODE_OK)
+			continue;
+
+		mode->status = drm_mode_validate_flag(mode, mode_flags);
+		if (mode->status != MODE_OK)
+			continue;
+
+		ret = drm_mode_validate_pipeline(mode, connector, ctx,
+						 &mode->status);
+		if (ret) {
+			drm_dbg_kms(dev,
+				    "drm_mode_validate_pipeline failed: %d\n",
+				    ret);
+
+			if (drm_WARN_ON_ONCE(dev, ret != -EDEADLK))
+				mode->status = MODE_ERROR;
+			else
+				return true;
+		}
+
+		if (mode->status != MODE_OK)
+			continue;
+		mode->status = drm_mode_validate_ycbcr420(mode, connector);
+	}
+
+	return false;
+}
+
 /**
  * drm_helper_probe_single_connector_modes - get complete set of display modes
  * @connector: connector to probe
@@ -421,7 +476,6 @@ int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
 	const struct drm_connector_helper_funcs *connector_funcs =
 		connector->helper_private;
 	int count = 0, ret;
-	int mode_flags = 0;
 	bool verbose_prune = true;
 	enum drm_connector_status old_status;
 	struct drm_modeset_acquire_ctx ctx;
@@ -519,52 +573,11 @@ int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
 			   connector->status == connector_status_unknown))
 		count = drm_add_modes_noedid(connector, 1024, 768);
 	count += drm_helper_probe_add_cmdline_mode(connector);
-	if (count == 0)
-		goto prune;
-
-	drm_connector_list_update(connector);
-
-	if (connector->interlace_allowed)
-		mode_flags |= DRM_MODE_FLAG_INTERLACE;
-	if (connector->doublescan_allowed)
-		mode_flags |= DRM_MODE_FLAG_DBLSCAN;
-	if (connector->stereo_allowed)
-		mode_flags |= DRM_MODE_FLAG_3D_MASK;
-
-	list_for_each_entry(mode, &connector->modes, head) {
-		if (mode->status != MODE_OK)
-			continue;
-
-		mode->status = drm_mode_validate_driver(dev, mode);
-		if (mode->status != MODE_OK)
-			continue;
-
-		mode->status = drm_mode_validate_size(mode, maxX, maxY);
-		if (mode->status != MODE_OK)
-			continue;
-
-		mode->status = drm_mode_validate_flag(mode, mode_flags);
-		if (mode->status != MODE_OK)
-			continue;
-
-		ret = drm_mode_validate_pipeline(mode, connector, &ctx,
-						 &mode->status);
-		if (ret) {
-			drm_dbg_kms(dev,
-				    "drm_mode_validate_pipeline failed: %d\n",
-				    ret);
-
-			if (drm_WARN_ON_ONCE(dev, ret != -EDEADLK)) {
-				mode->status = MODE_ERROR;
-			} else {
-				drm_modeset_backoff(&ctx);
-				goto retry;
-			}
+	if (count != 0) {
+		if (_drm_helper_update_and_validate(connector, maxX, maxY, &ctx)) {
+			drm_modeset_backoff(&ctx);
+			goto retry;
 		}
-
-		if (mode->status != MODE_OK)
-			continue;
-		mode->status = drm_mode_validate_ycbcr420(mode, connector);
 	}
 
 prune:
-- 
2.36.0.rc2.479.g8af0fa9b8e-goog


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

end of thread, other threads:[~2022-05-05 20:13 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-26 18:46 [PATCH 1/2] drm/probe-helper: Add helper for drm_helper_probe_single_connector_modes() Douglas Anderson
2022-04-26 18:46 ` Douglas Anderson
2022-04-26 18:46 ` [PATCH 2/2] drm/probe-helper: For DP, add 640x480 if all other modes are bad Douglas Anderson
2022-04-26 18:46   ` Douglas Anderson
2022-04-26 19:16   ` Abhinav Kumar
2022-04-26 19:16     ` Abhinav Kumar
2022-04-26 19:20     ` Abhinav Kumar
2022-04-26 19:20       ` Abhinav Kumar
2022-04-26 20:26       ` Doug Anderson
2022-04-26 20:26         ` Doug Anderson
2022-04-26 21:11         ` Abhinav Kumar
2022-04-26 21:11           ` Abhinav Kumar
2022-04-26 21:17           ` Doug Anderson
2022-04-26 21:17             ` Doug Anderson
2022-04-27 21:24             ` Kuogee Hsieh
2022-04-27 21:24               ` Kuogee Hsieh
2022-04-26 19:45     ` Doug Anderson
2022-04-26 19:45       ` Doug Anderson
2022-05-05 15:44   ` Doug Anderson
2022-05-05 15:44     ` Doug Anderson
2022-05-05 17:20     ` Abhinav Kumar
2022-05-05 17:20       ` Abhinav Kumar
2022-05-05 17:30       ` Kuogee Hsieh
2022-05-05 17:30         ` Kuogee Hsieh
2022-05-05 20:11         ` Dmitry Baryshkov
2022-05-05 20:11           ` Dmitry Baryshkov
2022-05-05 20:13   ` Dmitry Baryshkov
2022-05-05 20:13     ` Dmitry Baryshkov
2022-04-26 22:21 ` [PATCH 1/2] drm/probe-helper: Add helper for drm_helper_probe_single_connector_modes() Abhinav Kumar
2022-04-26 22:21   ` Abhinav Kumar
2022-05-05 18:34 ` Thomas Zimmermann
2022-05-05 19:46   ` Doug Anderson
2022-05-05 19:46     ` Doug Anderson

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.