blob: 4485aa335bbce829db75110463e0fc36a85729c0 [file] [log] [blame]
pbrook714fa302009-04-01 12:27:59 +00001/*
2 * Framebuffer device helper routines
3 *
4 * Copyright (c) 2009 CodeSourcery
5 * Written by Paul Brook <paul@codesourcery.com>
6 *
7 * This code is licensed under the GNU GPLv2.
Paolo Bonzini6b620ca2012-01-13 17:44:23 +01008 *
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.
pbrook714fa302009-04-01 12:27:59 +000011 */
12
13/* TODO:
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.
18 */
19
Peter Maydell47df5152016-01-26 18:17:13 +000020#include "qemu/osdep.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010021#include "ui/console.h"
Paolo Bonzini47b43a12013-03-18 17:36:02 +010022#include "framebuffer.h"
pbrook714fa302009-04-01 12:27:59 +000023
Paolo Bonzinic1076c32015-07-13 12:00:29 +020024void framebuffer_update_memory_section(
25 MemoryRegionSection *mem_section,
26 MemoryRegion *root,
27 hwaddr base,
28 unsigned rows,
29 unsigned src_width)
30{
31 hwaddr src_len = (hwaddr)rows * src_width;
32
33 if (mem_section->mr) {
34 memory_region_set_log(mem_section->mr, false, DIRTY_MEMORY_VGA);
35 memory_region_unref(mem_section->mr);
36 mem_section->mr = NULL;
37 }
38
39 *mem_section = memory_region_find(root, base, src_len);
40 if (!mem_section->mr) {
41 return;
42 }
43
44 if (int128_get64(mem_section->size) < src_len ||
45 !memory_region_is_ram(mem_section->mr)) {
46 memory_region_unref(mem_section->mr);
47 mem_section->mr = NULL;
48 return;
49 }
50
51 memory_region_set_log(mem_section->mr, true, DIRTY_MEMORY_VGA);
52}
53
pbrook714fa302009-04-01 12:27:59 +000054/* Render an image from a shared memory framebuffer. */
pbrook714fa302009-04-01 12:27:59 +000055void framebuffer_update_display(
Gerd Hoffmannc78f7132013-03-05 15:24:14 +010056 DisplaySurface *ds,
Paolo Bonzinic1076c32015-07-13 12:00:29 +020057 MemoryRegionSection *mem_section,
pbrook714fa302009-04-01 12:27:59 +000058 int cols, /* Width in pixels. */
Stefan Weil9c6bb552012-08-11 21:32:02 +020059 int rows, /* Height in pixels. */
pbrook714fa302009-04-01 12:27:59 +000060 int src_width, /* Length of source line, in bytes. */
61 int dest_row_pitch, /* Bytes between adjacent horizontal output pixels. */
62 int dest_col_pitch, /* Bytes between adjacent vertical output pixels. */
63 int invalidate, /* nonzero to redraw the whole image. */
64 drawfn fn,
65 void *opaque,
66 int *first_row, /* Input and output. */
67 int *last_row /* Output only */)
68{
Gerd Hoffmann167e9c72017-04-21 11:16:28 +020069 DirtyBitmapSnapshot *snap;
pbrook714fa302009-04-01 12:27:59 +000070 uint8_t *dest;
71 uint8_t *src;
pbrook714fa302009-04-01 12:27:59 +000072 int first, last = 0;
73 int dirty;
74 int i;
Anthony Liguoric227f092009-10-01 16:12:16 -050075 ram_addr_t addr;
Avi Kivity75c9d6c2011-12-08 16:00:54 +020076 MemoryRegion *mem;
pbrook714fa302009-04-01 12:27:59 +000077
78 i = *first_row;
79 *first_row = -1;
pbrook714fa302009-04-01 12:27:59 +000080
Paolo Bonzinic1076c32015-07-13 12:00:29 +020081 mem = mem_section->mr;
82 if (!mem) {
83 return;
pbrook714fa302009-04-01 12:27:59 +000084 }
Paolo Bonzinid55d4202015-03-23 10:46:52 +010085
Paolo Bonzinic1076c32015-07-13 12:00:29 +020086 addr = mem_section->offset_within_region;
87 src = memory_region_get_ram_ptr(mem) + addr;
88
Gerd Hoffmannc78f7132013-03-05 15:24:14 +010089 dest = surface_data(ds);
Paolo Bonzinic1076c32015-07-13 12:00:29 +020090 if (dest_col_pitch < 0) {
pbrook714fa302009-04-01 12:27:59 +000091 dest -= dest_col_pitch * (cols - 1);
Paolo Bonzinic1076c32015-07-13 12:00:29 +020092 }
Vasily Khoruzhick93128052011-06-17 13:04:36 +030093 if (dest_row_pitch < 0) {
94 dest -= dest_row_pitch * (rows - 1);
95 }
pbrook714fa302009-04-01 12:27:59 +000096 first = -1;
pbrook714fa302009-04-01 12:27:59 +000097
98 addr += i * src_width;
99 src += i * src_width;
100 dest += i * dest_row_pitch;
101
Gerd Hoffmann167e9c72017-04-21 11:16:28 +0200102 snap = memory_region_snapshot_and_clear_dirty(mem, addr, src_width * rows,
103 DIRTY_MEMORY_VGA);
pbrook714fa302009-04-01 12:27:59 +0000104 for (; i < rows; i++) {
Gerd Hoffmann167e9c72017-04-21 11:16:28 +0200105 dirty = memory_region_snapshot_get_dirty(mem, snap, addr, src_width);
pbrook714fa302009-04-01 12:27:59 +0000106 if (dirty || invalidate) {
107 fn(opaque, dest, src, cols, dest_col_pitch);
108 if (first == -1)
109 first = i;
110 last = i;
111 }
112 addr += src_width;
113 src += src_width;
114 dest += dest_row_pitch;
115 }
Gerd Hoffmann167e9c72017-04-21 11:16:28 +0200116 g_free(snap);
pbrook714fa302009-04-01 12:27:59 +0000117 if (first < 0) {
Paolo Bonzinic1076c32015-07-13 12:00:29 +0200118 return;
pbrook714fa302009-04-01 12:27:59 +0000119 }
pbrook714fa302009-04-01 12:27:59 +0000120 *first_row = first;
121 *last_row = last;
pbrook714fa302009-04-01 12:27:59 +0000122}