2 * Framebuffer device helper routines
4 * Copyright (c) 2009 CodeSourcery
5 * Written by Paul Brook <paul@codesourcery.com>
7 * This code is licensed under the GNU GPLv2.
9 * Contributions after 2012-01-13 are licensed under the terms of the
10 * GNU GPL, version 2 or (at your option) any later version.
14 - Do something similar for framebuffers with local ram
15 - Handle rotation here instead of hacking dest_pitch
16 - Use common pixel conversion routines instead of per-device drawfn
17 - Remove all DisplayState knowledge from devices.
20 #include "qemu/osdep.h"
22 #include "ui/console.h"
23 #include "framebuffer.h"
25 void framebuffer_update_memory_section(
26 MemoryRegionSection
*mem_section
,
32 hwaddr src_len
= (hwaddr
)rows
* src_width
;
34 if (mem_section
->mr
) {
35 memory_region_set_log(mem_section
->mr
, false, DIRTY_MEMORY_VGA
);
36 memory_region_unref(mem_section
->mr
);
37 mem_section
->mr
= NULL
;
40 *mem_section
= memory_region_find(root
, base
, src_len
);
41 if (!mem_section
->mr
) {
45 if (int128_get64(mem_section
->size
) < src_len
||
46 !memory_region_is_ram(mem_section
->mr
)) {
47 memory_region_unref(mem_section
->mr
);
48 mem_section
->mr
= NULL
;
52 memory_region_set_log(mem_section
->mr
, true, DIRTY_MEMORY_VGA
);
55 /* Render an image from a shared memory framebuffer. */
56 void framebuffer_update_display(
58 MemoryRegionSection
*mem_section
,
59 int cols
, /* Width in pixels. */
60 int rows
, /* Height in pixels. */
61 int src_width
, /* Length of source line, in bytes. */
62 int dest_row_pitch
, /* Bytes between adjacent horizontal output pixels. */
63 int dest_col_pitch
, /* Bytes between adjacent vertical output pixels. */
64 int invalidate
, /* nonzero to redraw the whole image. */
67 int *first_row
, /* Input and output. */
68 int *last_row
/* Output only */)
81 src_len
= src_width
* rows
;
83 mem
= mem_section
->mr
;
87 memory_region_sync_dirty_bitmap(mem
);
89 addr
= mem_section
->offset_within_region
;
90 src
= memory_region_get_ram_ptr(mem
) + addr
;
92 dest
= surface_data(ds
);
93 if (dest_col_pitch
< 0) {
94 dest
-= dest_col_pitch
* (cols
- 1);
96 if (dest_row_pitch
< 0) {
97 dest
-= dest_row_pitch
* (rows
- 1);
101 addr
+= i
* src_width
;
102 src
+= i
* src_width
;
103 dest
+= i
* dest_row_pitch
;
105 for (; i
< rows
; i
++) {
106 dirty
= memory_region_get_dirty(mem
, addr
, src_width
,
108 if (dirty
|| invalidate
) {
109 fn(opaque
, dest
, src
, cols
, dest_col_pitch
);
116 dest
+= dest_row_pitch
;
121 memory_region_reset_dirty(mem
, mem_section
->offset_within_region
, src_len
,