Home
last modified time | relevance | path

Searched refs:DIRTY_MEMORY_VGA (Results 1 – 13 of 13) sorted by relevance

/openbmc/qemu/hw/display/
H A Dframebuffer.c34 memory_region_set_log(mem_section->mr, false, DIRTY_MEMORY_VGA); in framebuffer_update_memory_section()
51 memory_region_set_log(mem_section->mr, true, DIRTY_MEMORY_VGA); in framebuffer_update_memory_section()
103 DIRTY_MEMORY_VGA); in framebuffer_update_display()
H A Dcg3.c113 DIRTY_MEMORY_VGA); in cg3_update_display()
314 memory_region_set_log(&s->vram_mem, true, DIRTY_MEMORY_VGA); in cg3_realizefn()
H A Dbochs-display.c236 DIRTY_MEMORY_VGA); in bochs_display_update()
311 memory_region_set_log(&s->vram, true, DIRTY_MEMORY_VGA); in bochs_display_realize()
H A Dtcx.c232 DIRTY_MEMORY_VGA); in tcx_update_display()
285 DIRTY_MEMORY_VGA); in tcx24_update_display()
374 DIRTY_MEMORY_VGA); in tcx_reset()
822 memory_region_set_log(&s->vram_mem, true, DIRTY_MEMORY_VGA); in tcx_realizefn()
H A Dg364fb.c132 DIRTY_MEMORY_VGA); in g364fb_draw_graphic8()
484 memory_region_set_log(&s->mem_vram, true, DIRTY_MEMORY_VGA); in g364fb_init()
H A Dmacfb.c307 DIRTY_MEMORY_VGA); in macfb_draw_graphic()
683 memory_region_set_log(&s->mem_vram, true, DIRTY_MEMORY_VGA); in macfb_common_realize()
H A Dexynos4210_fimd.c1148 memory_region_set_log(w->mem_section.mr, false, DIRTY_MEMORY_VGA); in fimd_update_memory_section()
1181 memory_region_set_log(w->mem_section.mr, true, DIRTY_MEMORY_VGA); in fimd_update_memory_section()
1300 fb_line_addr, inc_size * scrn_height, DIRTY_MEMORY_VGA); in exynos4210_fimd_update()
H A Dvga.c1467 memory_region_set_log(&s->vram, true, DIRTY_MEMORY_VGA); in vga_dirty_log_start()
1472 memory_region_set_log(&s->vram, false, DIRTY_MEMORY_VGA); in vga_dirty_log_stop()
1676 DIRTY_MEMORY_VGA); in vga_draw_graphic()
H A Dsm501.c1794 offset, width * height * src_bpp, DIRTY_MEMORY_VGA); in sm501_update_display()
1904 memory_region_set_log(&s->local_mem_region, true, DIRTY_MEMORY_VGA); in sm501_init()
/openbmc/qemu/include/exec/
H A Dram_addr.h241 bool vga = cpu_physical_memory_get_dirty_flag(addr, DIRTY_MEMORY_VGA); in cpu_physical_memory_is_clean()
254 if (mask & (1 << DIRTY_MEMORY_VGA) && in cpu_physical_memory_range_includes_clean()
255 !cpu_physical_memory_all_dirty(start, length, DIRTY_MEMORY_VGA)) { in cpu_physical_memory_range_includes_clean()
256 ret |= (1 << DIRTY_MEMORY_VGA); in cpu_physical_memory_range_includes_clean()
319 if (unlikely(mask & (1 << DIRTY_MEMORY_VGA))) { in cpu_physical_memory_set_dirty_range()
320 bitmap_set_atomic(blocks[DIRTY_MEMORY_VGA]->blocks[idx], in cpu_physical_memory_set_dirty_range()
384 qatomic_or(&blocks[DIRTY_MEMORY_VGA][idx][offset], temp); in cpu_physical_memory_set_dirty_lebitmap()
471 cpu_physical_memory_test_and_clear_dirty(start, length, DIRTY_MEMORY_VGA); in cpu_physical_memory_clear_dirty_range()
H A Dramlist.h11 #define DIRTY_MEMORY_VGA 0 macro
/openbmc/qemu/hw/i386/xen/
H A Dxen-hvm.c434 if (new & ~old & (1 << DIRTY_MEMORY_VGA)) { in xen_log_start()
443 if (old & ~new & (1 << DIRTY_MEMORY_VGA)) { in xen_log_stop()
708 bool log_dirty = memory_region_is_logging(section->mr, DIRTY_MEMORY_VGA); in arch_xen_set_memory()
/openbmc/qemu/system/
H A Dmemory.c2229 assert(client == DIRTY_MEMORY_VGA); in memory_region_set_log()