OSDN Git Service

drm/simpledrm: Iterate over damage clips
authorThomas Zimmermann <tzimmermann@suse.de>
Thu, 22 Sep 2022 13:09:43 +0000 (15:09 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Tue, 27 Sep 2022 08:26:57 +0000 (10:26 +0200)
Iterate over all damage clips and updated them one by one. Replaces
the merging of damage areas, which can result in significant overhead
if damage areas are not close to each other.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220922130944.27138-5-tzimmermann@suse.de
drivers/gpu/drm/tiny/simpledrm.c

index 8fab22a..5f24255 100644 (file)
@@ -478,23 +478,25 @@ static void simpledrm_primary_plane_helper_atomic_update(struct drm_plane *plane
        struct drm_framebuffer *fb = plane_state->fb;
        struct drm_device *dev = plane->dev;
        struct simpledrm_device *sdev = simpledrm_device_of_dev(dev);
-       struct iosys_map dst = IOSYS_MAP_INIT_VADDR(sdev->screen_base);
-       struct drm_rect src_clip, dst_clip;
+       struct drm_atomic_helper_damage_iter iter;
+       struct drm_rect damage;
        int idx;
 
-       if (!drm_atomic_helper_damage_merged(old_plane_state, plane_state, &src_clip))
+       if (!drm_dev_enter(dev, &idx))
                return;
 
-       dst_clip = plane_state->dst;
-       if (!drm_rect_intersect(&dst_clip, &src_clip))
-               return;
+       drm_atomic_helper_damage_iter_init(&iter, old_plane_state, plane_state);
+       drm_atomic_for_each_plane_damage(&iter, &damage) {
+               struct iosys_map dst = IOSYS_MAP_INIT_VADDR(sdev->screen_base);
+               struct drm_rect dst_clip = plane_state->dst;
 
-       if (!drm_dev_enter(dev, &idx))
-               return;
+               if (!drm_rect_intersect(&dst_clip, &damage))
+                       continue;
 
-       iosys_map_incr(&dst, drm_fb_clip_offset(sdev->pitch, sdev->format, &dst_clip));
-       drm_fb_blit(&dst, &sdev->pitch, sdev->format->format, shadow_plane_state->data, fb,
-                   &src_clip);
+               iosys_map_incr(&dst, drm_fb_clip_offset(sdev->pitch, sdev->format, &dst_clip));
+               drm_fb_blit(&dst, &sdev->pitch, sdev->format->format, shadow_plane_state->data, fb,
+                           &damage);
+       }
 
        drm_dev_exit(idx);
 }