]>
Commit | Line | Data |
---|---|---|
cb9c377f | 1 | #ifndef HW_QXL_H |
175de524 | 2 | #define HW_QXL_H |
cb9c377f | 3 | |
a19cbfb3 GH |
4 | #include "qemu-common.h" |
5 | ||
28ecbaee | 6 | #include "ui/console.h" |
83c9f4ca PB |
7 | #include "hw/hw.h" |
8 | #include "hw/pci/pci.h" | |
47b43a1f | 9 | #include "vga_int.h" |
1de7afc9 | 10 | #include "qemu/thread.h" |
a19cbfb3 GH |
11 | |
12 | #include "ui/qemu-spice.h" | |
13 | #include "ui/spice-display.h" | |
14 | ||
15 | enum qxl_mode { | |
16 | QXL_MODE_UNDEFINED, | |
17 | QXL_MODE_VGA, | |
18 | QXL_MODE_COMPAT, /* spice 0.4.x */ | |
19 | QXL_MODE_NATIVE, | |
20 | }; | |
21 | ||
6f2b175a GH |
22 | #ifndef QXL_VRAM64_RANGE_INDEX |
23 | #define QXL_VRAM64_RANGE_INDEX 4 | |
24 | #endif | |
25 | ||
5ff4e36c AL |
26 | #define QXL_UNDEFINED_IO UINT32_MAX |
27 | ||
81fb6f15 AL |
28 | #define QXL_NUM_DIRTY_RECTS 64 |
29 | ||
9efc2d8d GH |
30 | #define QXL_PAGE_BITS 12 |
31 | #define QXL_PAGE_SIZE (1 << QXL_PAGE_BITS); | |
32 | ||
a19cbfb3 GH |
33 | typedef struct PCIQXLDevice { |
34 | PCIDevice pci; | |
848696bf | 35 | PortioList vga_port_list; |
a19cbfb3 GH |
36 | SimpleSpiceDisplay ssd; |
37 | int id; | |
38 | uint32_t debug; | |
39 | uint32_t guestdebug; | |
40 | uint32_t cmdlog; | |
087e6a42 AL |
41 | |
42 | uint32_t guest_bug; | |
86dbcdd9 | 43 | Error *migration_blocker; |
087e6a42 | 44 | |
a19cbfb3 GH |
45 | enum qxl_mode mode; |
46 | uint32_t cmdflags; | |
47 | int generation; | |
48 | uint32_t revision; | |
49 | ||
50 | int32_t num_memslots; | |
a19cbfb3 | 51 | |
5ff4e36c AL |
52 | uint32_t current_async; |
53 | QemuMutex async_lock; | |
54 | ||
a19cbfb3 GH |
55 | struct guest_slots { |
56 | QXLMemSlot slot; | |
3cb5158f GH |
57 | MemoryRegion *mr; |
58 | uint64_t offset; | |
a19cbfb3 GH |
59 | uint64_t size; |
60 | uint64_t delta; | |
61 | uint32_t active; | |
62 | } guest_slots[NUM_MEMSLOTS]; | |
63 | ||
64 | struct guest_primary { | |
65 | QXLSurfaceCreate surface; | |
66 | uint32_t commands; | |
67 | uint32_t resized; | |
0e2487bd GH |
68 | int32_t qxl_stride; |
69 | uint32_t abs_stride; | |
a19cbfb3 GH |
70 | uint32_t bits_pp; |
71 | uint32_t bytes_pp; | |
4c19ebb5 | 72 | uint8_t *data; |
a19cbfb3 GH |
73 | } guest_primary; |
74 | ||
75 | struct surfaces { | |
ddd8fdc7 | 76 | QXLPHYSICAL *cmds; |
a19cbfb3 GH |
77 | uint32_t count; |
78 | uint32_t max; | |
79 | } guest_surfaces; | |
80 | QXLPHYSICAL guest_cursor; | |
81 | ||
020af1c4 AL |
82 | QXLPHYSICAL guest_monitors_config; |
83 | ||
14898cf6 GH |
84 | QemuMutex track_lock; |
85 | ||
a19cbfb3 | 86 | /* thread signaling */ |
4a46c99c | 87 | QEMUBH *update_irq; |
a19cbfb3 GH |
88 | |
89 | /* ram pci bar */ | |
90 | QXLRam *ram; | |
91 | VGACommonState vga; | |
92 | uint32_t num_free_res; | |
93 | QXLReleaseInfo *last_release; | |
94 | uint32_t last_release_offset; | |
95 | uint32_t oom_running; | |
13d1fd44 | 96 | uint32_t vgamem_size; |
a19cbfb3 GH |
97 | |
98 | /* rom pci bar */ | |
99 | QXLRom shadow_rom; | |
100 | QXLRom *rom; | |
101 | QXLModes *modes; | |
102 | uint32_t rom_size; | |
b1950430 | 103 | MemoryRegion rom_bar; |
567161fd FZ |
104 | #if SPICE_SERVER_VERSION >= 0x000c06 /* release 0.12.6 */ |
105 | uint16_t max_outputs; | |
106 | #endif | |
a19cbfb3 GH |
107 | |
108 | /* vram pci bar */ | |
de1b9b85 | 109 | uint64_t vram_size; |
b1950430 | 110 | MemoryRegion vram_bar; |
de1b9b85 | 111 | uint64_t vram32_size; |
6f2b175a | 112 | MemoryRegion vram32_bar; |
a19cbfb3 GH |
113 | |
114 | /* io bar */ | |
b1950430 | 115 | MemoryRegion io_bar; |
017438ee GH |
116 | |
117 | /* user-friendly properties (in megabytes) */ | |
118 | uint32_t ram_size_mb; | |
119 | uint32_t vram_size_mb; | |
6f2b175a | 120 | uint32_t vram32_size_mb; |
13d1fd44 | 121 | uint32_t vgamem_size_mb; |
6f663d7b GH |
122 | uint32_t xres; |
123 | uint32_t yres; | |
81fb6f15 AL |
124 | |
125 | /* qxl_render_update state */ | |
126 | int render_update_cookie_num; | |
127 | int num_dirty_rects; | |
128 | QXLRect dirty[QXL_NUM_DIRTY_RECTS]; | |
129 | QEMUBH *update_area_bh; | |
a19cbfb3 GH |
130 | } PCIQXLDevice; |
131 | ||
c69f6c7d GA |
132 | #define TYPE_PCI_QXL "pci-qxl" |
133 | #define PCI_QXL(obj) OBJECT_CHECK(PCIQXLDevice, (obj), TYPE_PCI_QXL) | |
134 | ||
a19cbfb3 GH |
135 | #define PANIC_ON(x) if ((x)) { \ |
136 | printf("%s: PANIC %s failed\n", __FUNCTION__, #x); \ | |
2bce0400 | 137 | abort(); \ |
a19cbfb3 GH |
138 | } |
139 | ||
140 | #define dprint(_qxl, _level, _fmt, ...) \ | |
141 | do { \ | |
142 | if (_qxl->debug >= _level) { \ | |
143 | fprintf(stderr, "qxl-%d: ", _qxl->id); \ | |
144 | fprintf(stderr, _fmt, ## __VA_ARGS__); \ | |
145 | } \ | |
146 | } while (0) | |
147 | ||
020af1c4 | 148 | #define QXL_DEFAULT_REVISION QXL_REVISION_STABLE_V12 |
9197a7c8 | 149 | |
a19cbfb3 GH |
150 | /* qxl.c */ |
151 | void *qxl_phys2virt(PCIQXLDevice *qxl, QXLPHYSICAL phys, int group_id); | |
0a530548 AL |
152 | void qxl_set_guest_bug(PCIQXLDevice *qxl, const char *msg, ...) |
153 | GCC_FMT_ATTR(2, 3); | |
a19cbfb3 | 154 | |
aee32bf3 GH |
155 | void qxl_spice_update_area(PCIQXLDevice *qxl, uint32_t surface_id, |
156 | struct QXLRect *area, struct QXLRect *dirty_rects, | |
157 | uint32_t num_dirty_rects, | |
5ff4e36c | 158 | uint32_t clear_dirty_region, |
2e1a98c9 | 159 | qxl_async_io async, QXLCookie *cookie); |
aee32bf3 GH |
160 | void qxl_spice_loadvm_commands(PCIQXLDevice *qxl, struct QXLCommandExt *ext, |
161 | uint32_t count); | |
162 | void qxl_spice_oom(PCIQXLDevice *qxl); | |
163 | void qxl_spice_reset_memslots(PCIQXLDevice *qxl); | |
aee32bf3 GH |
164 | void qxl_spice_reset_image_cache(PCIQXLDevice *qxl); |
165 | void qxl_spice_reset_cursor(PCIQXLDevice *qxl); | |
166 | ||
a19cbfb3 | 167 | /* qxl-logger.c */ |
fae2afb1 AL |
168 | int qxl_log_cmd_cursor(PCIQXLDevice *qxl, QXLCursorCmd *cmd, int group_id); |
169 | int qxl_log_command(PCIQXLDevice *qxl, const char *ring, QXLCommandExt *ext); | |
a19cbfb3 GH |
170 | |
171 | /* qxl-render.c */ | |
172 | void qxl_render_resize(PCIQXLDevice *qxl); | |
173 | void qxl_render_update(PCIQXLDevice *qxl); | |
fae2afb1 | 174 | int qxl_render_cursor(PCIQXLDevice *qxl, QXLCommandExt *ext); |
81fb6f15 AL |
175 | void qxl_render_update_area_done(PCIQXLDevice *qxl, QXLCookie *cookie); |
176 | void qxl_render_update_area_bh(void *opaque); | |
cb9c377f PB |
177 | |
178 | #endif |