Commit 2f56dd8c authored by Melissa Wen's avatar Melissa Wen

drm/vkms: init plane using drmm_universal_plane_alloc

By using drmm_universal_plane_alloc instead of
drm_universal_plane_init, we let the DRM infrastructure handles
resource allocation and cleanup. We can also get rid of some
code repetitions for plane cleanup, improving code maintainability
in vkms.
Signed-off-by: default avatarMelissa Wen <melissa.srw@gmail.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/3bbdabed0274d2d0917d1b829dd16f13d7b495f5.1619250933.git.melissa.srw@gmail.com
parent 19d327a3
...@@ -37,6 +37,10 @@ struct vkms_plane_state { ...@@ -37,6 +37,10 @@ struct vkms_plane_state {
struct vkms_composer *composer; struct vkms_composer *composer;
}; };
struct vkms_plane {
struct drm_plane base;
};
/** /**
* vkms_crtc_state - Driver specific CRTC state * vkms_crtc_state - Driver specific CRTC state
* @base: base CRTC state * @base: base CRTC state
...@@ -114,7 +118,7 @@ int vkms_crtc_init(struct drm_device *dev, struct drm_crtc *crtc, ...@@ -114,7 +118,7 @@ int vkms_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
int vkms_output_init(struct vkms_device *vkmsdev, int index); int vkms_output_init(struct vkms_device *vkmsdev, int index);
struct drm_plane *vkms_plane_init(struct vkms_device *vkmsdev, struct vkms_plane *vkms_plane_init(struct vkms_device *vkmsdev,
enum drm_plane_type type, int index); enum drm_plane_type type, int index);
/* CRC Support */ /* CRC Support */
......
...@@ -39,7 +39,7 @@ int vkms_output_init(struct vkms_device *vkmsdev, int index) ...@@ -39,7 +39,7 @@ int vkms_output_init(struct vkms_device *vkmsdev, int index)
struct drm_connector *connector = &output->connector; struct drm_connector *connector = &output->connector;
struct drm_encoder *encoder = &output->encoder; struct drm_encoder *encoder = &output->encoder;
struct drm_crtc *crtc = &output->crtc; struct drm_crtc *crtc = &output->crtc;
struct drm_plane *primary, *cursor = NULL; struct vkms_plane *primary, *cursor = NULL;
int ret; int ret;
int writeback; int writeback;
...@@ -49,15 +49,13 @@ int vkms_output_init(struct vkms_device *vkmsdev, int index) ...@@ -49,15 +49,13 @@ int vkms_output_init(struct vkms_device *vkmsdev, int index)
if (vkmsdev->config->cursor) { if (vkmsdev->config->cursor) {
cursor = vkms_plane_init(vkmsdev, DRM_PLANE_TYPE_CURSOR, index); cursor = vkms_plane_init(vkmsdev, DRM_PLANE_TYPE_CURSOR, index);
if (IS_ERR(cursor)) { if (IS_ERR(cursor))
ret = PTR_ERR(cursor); return PTR_ERR(cursor);
goto err_cursor;
}
} }
ret = vkms_crtc_init(dev, crtc, primary, cursor); ret = vkms_crtc_init(dev, crtc, &primary->base, &cursor->base);
if (ret) if (ret)
goto err_crtc; return ret;
ret = drm_connector_init(dev, connector, &vkms_connector_funcs, ret = drm_connector_init(dev, connector, &vkms_connector_funcs,
DRM_MODE_CONNECTOR_VIRTUAL); DRM_MODE_CONNECTOR_VIRTUAL);
...@@ -100,12 +98,5 @@ int vkms_output_init(struct vkms_device *vkmsdev, int index) ...@@ -100,12 +98,5 @@ int vkms_output_init(struct vkms_device *vkmsdev, int index)
err_connector: err_connector:
drm_crtc_cleanup(crtc); drm_crtc_cleanup(crtc);
err_crtc:
if (vkmsdev->config->cursor)
drm_plane_cleanup(cursor);
err_cursor:
drm_plane_cleanup(primary);
return ret; return ret;
} }
...@@ -86,7 +86,6 @@ static void vkms_plane_reset(struct drm_plane *plane) ...@@ -86,7 +86,6 @@ static void vkms_plane_reset(struct drm_plane *plane)
static const struct drm_plane_funcs vkms_plane_funcs = { static const struct drm_plane_funcs vkms_plane_funcs = {
.update_plane = drm_atomic_helper_update_plane, .update_plane = drm_atomic_helper_update_plane,
.disable_plane = drm_atomic_helper_disable_plane, .disable_plane = drm_atomic_helper_disable_plane,
.destroy = drm_plane_cleanup,
.reset = vkms_plane_reset, .reset = vkms_plane_reset,
.atomic_duplicate_state = vkms_plane_duplicate_state, .atomic_duplicate_state = vkms_plane_duplicate_state,
.atomic_destroy_state = vkms_plane_destroy_state, .atomic_destroy_state = vkms_plane_destroy_state,
...@@ -191,18 +190,14 @@ static const struct drm_plane_helper_funcs vkms_primary_helper_funcs = { ...@@ -191,18 +190,14 @@ static const struct drm_plane_helper_funcs vkms_primary_helper_funcs = {
.cleanup_fb = vkms_cleanup_fb, .cleanup_fb = vkms_cleanup_fb,
}; };
struct drm_plane *vkms_plane_init(struct vkms_device *vkmsdev, struct vkms_plane *vkms_plane_init(struct vkms_device *vkmsdev,
enum drm_plane_type type, int index) enum drm_plane_type type, int index)
{ {
struct drm_device *dev = &vkmsdev->drm; struct drm_device *dev = &vkmsdev->drm;
const struct drm_plane_helper_funcs *funcs; const struct drm_plane_helper_funcs *funcs;
struct drm_plane *plane; struct vkms_plane *plane;
const u32 *formats; const u32 *formats;
int ret, nformats; int nformats;
plane = kzalloc(sizeof(*plane), GFP_KERNEL);
if (!plane)
return ERR_PTR(-ENOMEM);
if (type == DRM_PLANE_TYPE_CURSOR) { if (type == DRM_PLANE_TYPE_CURSOR) {
formats = vkms_cursor_formats; formats = vkms_cursor_formats;
...@@ -214,16 +209,14 @@ struct drm_plane *vkms_plane_init(struct vkms_device *vkmsdev, ...@@ -214,16 +209,14 @@ struct drm_plane *vkms_plane_init(struct vkms_device *vkmsdev,
funcs = &vkms_primary_helper_funcs; funcs = &vkms_primary_helper_funcs;
} }
ret = drm_universal_plane_init(dev, plane, 1 << index, plane = drmm_universal_plane_alloc(dev, struct vkms_plane, base, 1 << index,
&vkms_plane_funcs, &vkms_plane_funcs,
formats, nformats, formats, nformats,
NULL, type, NULL); NULL, type, NULL);
if (ret) { if (IS_ERR(plane))
kfree(plane); return plane;
return ERR_PTR(ret);
}
drm_plane_helper_add(plane, funcs); drm_plane_helper_add(&plane->base, funcs);
return plane; return plane;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment