To allows driver to only use drmm objects, add helper to create
drm_writeback_connectors with automated lifetime management.

Signed-off-by: Louis Chauvet <louis.chau...@bootlin.com>
---
 drivers/gpu/drm/drm_writeback.c | 69 +++++++++++++++++++++++++++++++++++++++++
 include/drm/drm_writeback.h     |  8 +++++
 2 files changed, 77 insertions(+)

diff --git a/drivers/gpu/drm/drm_writeback.c b/drivers/gpu/drm/drm_writeback.c
index 
9c69f7181e02c23dabce488405608c40d4184af5..1251f65aae9e3b6fb5c5de9ab9280e5430342208
 100644
--- a/drivers/gpu/drm/drm_writeback.c
+++ b/drivers/gpu/drm/drm_writeback.c
@@ -369,6 +369,75 @@ static void drm_writeback_connector_cleanup(struct 
drm_device *dev,
        spin_unlock_irqrestore(&wb_connector->job_lock, flags);
 }
 
+/**
+ * drmm_writeback_connector_init - Initialize a writeback connector with
+ * a custom encoder
+ *
+ * @dev: DRM device
+ * @wb_connector: Writeback connector to initialize
+ * @con_funcs: Connector funcs vtable
+ * @enc: handle to the already initialized drm encoder, optional
+ * @enc_funcs: Encoder funcs vtable, optional, only used when @enc is NULL
+ * @formats: Array of supported pixel formats for the writeback engine
+ * @n_formats: Length of the formats array
+ * @possible_crtcs: if @enc is NULL, this will set the possible_crtc for the
+ *                 newly created encoder
+ *
+ * This function initialize a writeback connector and register its cleanup.
+ *
+ * This function creates the writeback-connector-specific properties if they
+ * have not been already created, initializes the connector as
+ * type DRM_MODE_CONNECTOR_WRITEBACK, and correctly initializes the property
+ * values.
+ *
+ * If @enc is NULL, this function will create a drm-managed encoder and will
+ * attach @enc_funcs on it. It will also attach the CRTC passed in
+ * @possible_crtcs
+ *
+ * Returns: 0 on success, or a negative error code
+ */
+int drmm_writeback_connector_init(struct drm_device *dev,
+                                 struct drm_writeback_connector *wb_connector,
+                                 const struct drm_connector_funcs *con_funcs,
+                                 struct drm_encoder *enc,
+                                 const struct drm_encoder_helper_funcs 
*enc_funcs,
+                                 const u32 *formats, int n_formats,
+                                 u32 possible_crtcs)
+{
+       struct drm_connector *connector = &wb_connector->base;
+       int ret;
+
+       if (!enc) {
+               ret = drmm_encoder_init(dev, &wb_connector->encoder,
+                                       NULL, DRM_MODE_ENCODER_VIRTUAL, NULL);
+               if (ret)
+                       return ret;
+
+               enc = &wb_connector->encoder;
+               enc->possible_crtcs |= possible_crtcs;
+               if (enc_funcs)
+                       drm_encoder_helper_add(enc, enc_funcs);
+       }
+
+       ret = drmm_connector_init(dev, connector, con_funcs,
+                                 DRM_MODE_CONNECTOR_WRITEBACK, NULL);
+       if (ret)
+               return ret;
+
+       ret = __drm_writeback_connector_init(dev, wb_connector, enc, formats,
+                                            n_formats);
+       if (ret)
+               return ret;
+
+       ret = drmm_add_action_or_reset(dev, (void 
*)drm_writeback_connector_cleanup,
+                                      wb_connector);
+       if (ret)
+               return ret;
+
+       return 0;
+}
+EXPORT_SYMBOL(drmm_writeback_connector_init);
+
 int drm_writeback_set_fb(struct drm_connector_state *conn_state,
                         struct drm_framebuffer *fb)
 {
diff --git a/include/drm/drm_writeback.h b/include/drm/drm_writeback.h
index 
17e576c80169a820e8d5587b229b2cc2ee369a18..885373a34c000ae9a4ecff8d76125290bffca3f0
 100644
--- a/include/drm/drm_writeback.h
+++ b/include/drm/drm_writeback.h
@@ -161,6 +161,14 @@ int drm_writeback_connector_init_with_encoder(struct 
drm_device *dev,
                                const struct drm_connector_funcs *con_funcs, 
const u32 *formats,
                                int n_formats);
 
+int drmm_writeback_connector_init(struct drm_device *dev,
+                                 struct drm_writeback_connector *wb_connector,
+                                 const struct drm_connector_funcs *con_funcs,
+                                 struct drm_encoder *enc,
+                                 const struct drm_encoder_helper_funcs 
*enc_funcs,
+                                 const u32 *formats, int n_formats,
+                                 u32 possible_crtcs);
+
 int drm_writeback_set_fb(struct drm_connector_state *conn_state,
                         struct drm_framebuffer *fb);
 

-- 
2.47.1

Reply via email to