]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm: verisilicon: subclass drm_plane_state
authorIcenowy Zheng <zhengxingda@iscas.ac.cn>
Tue, 31 Mar 2026 06:01:24 +0000 (14:01 +0800)
committerThomas Zimmermann <tzimmermann@suse.de>
Mon, 4 May 2026 11:30:59 +0000 (13:30 +0200)
Create a subclass of drm_plane_state to store hardware-specific state
information (e.g. hardware plane format settings) in the future.

Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patch.msgid.link/20260331060126.1291966-3-zhengxingda@iscas.ac.cn
drivers/gpu/drm/verisilicon/vs_plane.c
drivers/gpu/drm/verisilicon/vs_plane.h
drivers/gpu/drm/verisilicon/vs_primary_plane.c

index fa88ed14e41d7c7d70b0c7ef0cc967504993b2eb..7c6b905c9e1fa2bab2a5d527fca70a0b07463d92 100644 (file)
@@ -6,9 +6,11 @@
 #include <linux/errno.h>
 #include <linux/printk.h>
 
+#include <drm/drm_atomic_state_helper.h>
 #include <drm/drm_fb_dma_helper.h>
 #include <drm/drm_fourcc.h>
 #include <drm/drm_gem_dma_helper.h>
+#include <drm/drm_print.h>
 
 #include "vs_plane.h"
 
@@ -124,3 +126,44 @@ dma_addr_t vs_fb_get_dma_addr(struct drm_framebuffer *fb,
 
        return dma_addr;
 }
+
+struct drm_plane_state *vs_plane_duplicate_state(struct drm_plane *plane)
+{
+       struct vs_plane_state *vs_state;
+
+       if (drm_WARN_ON(plane->dev, !plane->state))
+               return NULL;
+
+       vs_state = kzalloc_obj(*vs_state, GFP_KERNEL);
+       if (!vs_state)
+               return NULL;
+
+       __drm_atomic_helper_plane_duplicate_state(plane, &vs_state->base);
+
+       return &vs_state->base;
+}
+
+void vs_plane_destroy_state(struct drm_plane *plane,
+                           struct drm_plane_state *state)
+{
+       __drm_atomic_helper_plane_destroy_state(state);
+       kfree(state);
+}
+
+/* Called during init to allocate the plane's atomic state. */
+void vs_plane_reset(struct drm_plane *plane)
+{
+       struct vs_plane_state *vs_state;
+
+       if (plane->state) {
+               __drm_atomic_helper_plane_destroy_state(plane->state);
+               kfree(plane->state);
+               plane->state = NULL;
+       }
+
+       vs_state = kzalloc_obj(*vs_state, GFP_KERNEL);
+       if (!vs_state)
+               return;
+
+       __drm_atomic_helper_plane_reset(plane, &vs_state->base);
+}
index a88cc19f2202e1aeaec6a41c2a2340a971f1f14c..48ed8fc754d18b113f2f99e2b4a3ec14f72b790a 100644 (file)
@@ -63,10 +63,24 @@ struct vs_format {
        bool uv_swizzle;
 };
 
+struct vs_plane_state {
+       struct drm_plane_state base;
+};
+
+static inline struct vs_plane_state *to_vs_plane_state(struct drm_plane_state *state)
+{
+       return container_of(state, struct vs_plane_state, base);
+}
+
 int drm_format_to_vs_format(u32 drm_format, struct vs_format *vs_format);
 dma_addr_t vs_fb_get_dma_addr(struct drm_framebuffer *fb,
                              const struct drm_rect *src_rect);
 
+struct drm_plane_state *vs_plane_duplicate_state(struct drm_plane *plane);
+void vs_plane_destroy_state(struct drm_plane *plane,
+                           struct drm_plane_state *state);
+void vs_plane_reset(struct drm_plane *plane);
+
 struct drm_plane *vs_primary_plane_init(struct drm_device *dev, struct vs_dc *dc);
 
 #endif /* _VS_PLANE_H_ */
index e8fcb5958615c09627ecb9ffec2dd9e5c7edead8..bad0bc5e3242d19fe7282ea417371b0e67c94396 100644 (file)
@@ -145,10 +145,10 @@ static const struct drm_plane_helper_funcs vs_primary_plane_helper_funcs = {
 };
 
 static const struct drm_plane_funcs vs_primary_plane_funcs = {
-       .atomic_destroy_state   = drm_atomic_helper_plane_destroy_state,
-       .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
+       .atomic_destroy_state   = vs_plane_destroy_state,
+       .atomic_duplicate_state = vs_plane_duplicate_state,
        .disable_plane          = drm_atomic_helper_disable_plane,
-       .reset                  = drm_atomic_helper_plane_reset,
+       .reset                  = vs_plane_reset,
        .update_plane           = drm_atomic_helper_update_plane,
 };