Searched refs:mem_section (Results 1 – 3 of 3) sorted by relevance
| /openbmc/qemu/hw/display/ |
| H A D | framebuffer.c | 25 MemoryRegionSection *mem_section, in framebuffer_update_memory_section() argument 33 if (mem_section->mr) { in framebuffer_update_memory_section() 34 memory_region_set_log(mem_section->mr, false, DIRTY_MEMORY_VGA); in framebuffer_update_memory_section() 35 memory_region_unref(mem_section->mr); in framebuffer_update_memory_section() 36 mem_section->mr = NULL; in framebuffer_update_memory_section() 39 *mem_section = memory_region_find(root, base, src_len); in framebuffer_update_memory_section() 40 if (!mem_section->mr) { in framebuffer_update_memory_section() 44 if (int128_get64(mem_section->size) < src_len || in framebuffer_update_memory_section() 45 !memory_region_is_ram(mem_section->mr)) { in framebuffer_update_memory_section() 46 memory_region_unref(mem_section->mr); in framebuffer_update_memory_section() [all …]
|
| H A D | framebuffer.h | 22 MemoryRegionSection *mem_section, 53 MemoryRegionSection *mem_section,
|
| H A D | exynos4210_fimd.c | 293 MemoryRegionSection mem_section; /* RAM fragment containing framebuffer */ member 1147 if (w->mem_section.mr) { in fimd_update_memory_section() 1148 memory_region_set_log(w->mem_section.mr, false, DIRTY_MEMORY_VGA); in fimd_update_memory_section() 1149 memory_region_unref(w->mem_section.mr); in fimd_update_memory_section() 1150 w->mem_section.mr = NULL; in fimd_update_memory_section() 1159 w->mem_section = memory_region_find(s->fbmem, fb_start_addr, w->fb_len); in fimd_update_memory_section() 1160 assert(w->mem_section.mr); in fimd_update_memory_section() 1161 assert(w->mem_section.offset_within_address_space == fb_start_addr); in fimd_update_memory_section() 1165 if (int128_get64(w->mem_section.size) != w->fb_len || in fimd_update_memory_section() 1166 !memory_region_is_ram(w->mem_section.mr)) { in fimd_update_memory_section() [all …]
|