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