return to_dpu_kms(priv->kms);
 }
 
-static void dpu_crtc_destroy(struct drm_crtc *crtc)
-{
-       struct dpu_crtc *dpu_crtc = to_dpu_crtc(crtc);
-
-       if (!crtc)
-               return;
-
-       drm_crtc_cleanup(crtc);
-       kfree(dpu_crtc);
-}
-
 static struct drm_encoder *get_encoder_from_crtc(struct drm_crtc *crtc)
 {
        struct drm_device *dev = crtc->dev;
 
 static const struct drm_crtc_funcs dpu_crtc_funcs = {
        .set_config = drm_atomic_helper_set_config,
-       .destroy = dpu_crtc_destroy,
        .page_flip = drm_atomic_helper_page_flip,
        .reset = dpu_crtc_reset,
        .atomic_duplicate_state = dpu_crtc_duplicate_state,
        struct dpu_crtc *dpu_crtc;
        int i, ret;
 
-       dpu_crtc = kzalloc(sizeof(*dpu_crtc), GFP_KERNEL);
-       if (!dpu_crtc)
-               return ERR_PTR(-ENOMEM);
+       dpu_crtc = drmm_crtc_alloc_with_planes(dev, struct dpu_crtc, base,
+                                              plane, cursor,
+                                              &dpu_crtc_funcs,
+                                              NULL);
+
+       if (IS_ERR(dpu_crtc))
+               return ERR_CAST(dpu_crtc);
 
        crtc = &dpu_crtc->base;
        crtc->dev = dev;
                                dpu_crtc_frame_event_work);
        }
 
-       drm_crtc_init_with_planes(dev, crtc, plane, cursor, &dpu_crtc_funcs,
-                               NULL);
-
        drm_crtc_helper_add(crtc, &dpu_crtc_helper_funcs);
 
        if (dpu_kms->catalog->dspp_count)