drm: drm_atomic_helper: Add a new helper to deal with the writeback connector validation
authorIgor Torrente <igormtorrente@gmail.com>
Mon, 5 Sep 2022 19:08:05 +0000 (16:08 -0300)
committerMelissa Wen <melissa.srw@gmail.com>
Mon, 5 Sep 2022 21:12:16 +0000 (20:12 -0100)
Add a helper function to validate the connector configuration received in
the encoder atomic_check by the drivers.

So the drivers don't need to do these common validations themselves.

V2: Move the format verification to a new helper at the drm_atomic_helper.c
    (Thomas Zimmermann).
V3: Format check improvements (Leandro Ribeiro).
    Minor improvements(Thomas Zimmermann).
V5: Fix some grammar issues in the commit message (AndrĂ© Almeida).

Reviewed-by: Melissa Wen <mwen@igalia.com>
Signed-off-by: Igor Torrente <igormtorrente@gmail.com>
Signed-off-by: Melissa Wen <melissa.srw@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220905190811.25024-4-igormtorrente@gmail.com
drivers/gpu/drm/drm_atomic_helper.c
drivers/gpu/drm/vkms/vkms_writeback.c
include/drm/drm_atomic_helper.h

index d36720f..ee5fea4 100644 (file)
@@ -786,6 +786,45 @@ drm_atomic_helper_check_modeset(struct drm_device *dev,
 EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
 
 /**
+ * drm_atomic_helper_check_wb_connector_state() - Check writeback encoder state
+ * @encoder: encoder state to check
+ * @conn_state: connector state to check
+ *
+ * Checks if the writeback connector state is valid, and returns an error if it
+ * isn't.
+ *
+ * RETURNS:
+ * Zero for success or -errno
+ */
+int
+drm_atomic_helper_check_wb_encoder_state(struct drm_encoder *encoder,
+                                        struct drm_connector_state *conn_state)
+{
+       struct drm_writeback_job *wb_job = conn_state->writeback_job;
+       struct drm_property_blob *pixel_format_blob;
+       struct drm_framebuffer *fb;
+       size_t i, nformats;
+       u32 *formats;
+
+       if (!wb_job || !wb_job->fb)
+               return 0;
+
+       pixel_format_blob = wb_job->connector->pixel_formats_blob_ptr;
+       nformats = pixel_format_blob->length / sizeof(u32);
+       formats = pixel_format_blob->data;
+       fb = wb_job->fb;
+
+       for (i = 0; i < nformats; i++)
+               if (fb->format->format == formats[i])
+                       return 0;
+
+       drm_dbg_kms(encoder->dev, "Invalid pixel format %p4cc\n", &fb->format->format);
+
+       return -EINVAL;
+}
+EXPORT_SYMBOL(drm_atomic_helper_check_wb_encoder_state);
+
+/**
  * drm_atomic_helper_check_plane_state() - Check plane state for validity
  * @plane_state: plane state to check
  * @crtc_state: CRTC state to check
index 3b3c1e7..d427b6c 100644 (file)
@@ -31,6 +31,7 @@ static int vkms_wb_encoder_atomic_check(struct drm_encoder *encoder,
 {
        struct drm_framebuffer *fb;
        const struct drm_display_mode *mode = &crtc_state->mode;
+       int ret;
 
        if (!conn_state->writeback_job || !conn_state->writeback_job->fb)
                return 0;
@@ -42,11 +43,9 @@ static int vkms_wb_encoder_atomic_check(struct drm_encoder *encoder,
                return -EINVAL;
        }
 
-       if (fb->format->format != vkms_wb_formats[0]) {
-               DRM_DEBUG_KMS("Invalid pixel format %p4cc\n",
-                             &fb->format->format);
-               return -EINVAL;
-       }
+       ret = drm_atomic_helper_check_wb_encoder_state(encoder, conn_state);
+       if (ret < 0)
+               return ret;
 
        return 0;
 }
index 54b321f..06d8902 100644 (file)
@@ -49,6 +49,9 @@ struct drm_private_state;
 
 int drm_atomic_helper_check_modeset(struct drm_device *dev,
                                struct drm_atomic_state *state);
+int
+drm_atomic_helper_check_wb_encoder_state(struct drm_encoder *encoder,
+                                        struct drm_connector_state *conn_state);
 int drm_atomic_helper_check_plane_state(struct drm_plane_state *plane_state,
                                        const struct drm_crtc_state *crtc_state,
                                        int min_scale,