[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 6/9] exynos: make display updates thread safe
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 6/9] exynos: make display updates thread safe |
Date: |
Fri, 21 Apr 2017 11:16:29 +0200 |
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/display/exynos4210_fimd.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/hw/display/exynos4210_fimd.c b/hw/display/exynos4210_fimd.c
index e5be713406..fd0b2bec65 100644
--- a/hw/display/exynos4210_fimd.c
+++ b/hw/display/exynos4210_fimd.c
@@ -1263,6 +1263,7 @@ static void exynos4210_fimd_update(void *opaque)
Exynos4210fimdState *s = (Exynos4210fimdState *)opaque;
DisplaySurface *surface;
Exynos4210fimdWindow *w;
+ DirtyBitmapSnapshot *snap;
int i, line;
hwaddr fb_line_addr, inc_size;
int scrn_height;
@@ -1291,10 +1292,12 @@ static void exynos4210_fimd_update(void *opaque)
memory_region_sync_dirty_bitmap(w->mem_section.mr);
host_fb_addr = w->host_fb_addr;
fb_line_addr = w->mem_section.offset_within_region;
+ snap = memory_region_snapshot_and_clear_dirty(w->mem_section.mr,
+ fb_line_addr, inc_size * scrn_height, DIRTY_MEMORY_VGA);
for (line = 0; line < scrn_height; line++) {
- is_dirty = memory_region_get_dirty(w->mem_section.mr,
- fb_line_addr, scrn_width, DIRTY_MEMORY_VGA);
+ is_dirty = memory_region_snapshot_get_dirty(w->mem_section.mr,
+ snap, fb_line_addr, scrn_width);
if (s->invalidate || is_dirty) {
if (first_line == -1) {
@@ -1309,9 +1312,7 @@ static void exynos4210_fimd_update(void *opaque)
fb_line_addr += inc_size;
is_dirty = false;
}
- memory_region_reset_dirty(w->mem_section.mr,
- w->mem_section.offset_within_region,
- w->fb_len, DIRTY_MEMORY_VGA);
+ g_free(snap);
blend = true;
}
}
--
2.9.3
- [Qemu-devel] [PATCH 8/9] vmsvga: fix vmsvga_update_display, (continued)
- [Qemu-devel] [PATCH 2/9] memory: add support getting and using a dirty bitmap copy., Gerd Hoffmann, 2017/04/21
- [Qemu-devel] [PATCH 4/9] vga: make display updates thread safe., Gerd Hoffmann, 2017/04/21
- [Qemu-devel] [PATCH 1/9] bitmap: add bitmap_copy_and_clear_atomic, Gerd Hoffmann, 2017/04/21
- [Qemu-devel] [PATCH 3/9] vga: add vga_scanline_invalidated helper, Gerd Hoffmann, 2017/04/21
- [Qemu-devel] [PATCH 5/9] framebuffer: make display updates thread safe, Gerd Hoffmann, 2017/04/21
- [Qemu-devel] [PATCH 6/9] exynos: make display updates thread safe,
Gerd Hoffmann <=
- Re: [Qemu-devel] [PATCH 0/9] hw/display: make display updates thread safe, part 1, Mark Cave-Ayland, 2017/04/21