]>
Commit | Line | Data |
---|---|---|
420557e8 | 1 | /* |
6f7e9aec | 2 | * QEMU TCX Frame buffer |
5fafdf24 | 3 | * |
6f7e9aec | 4 | * Copyright (c) 2003-2005 Fabrice Bellard |
5fafdf24 | 5 | * |
420557e8 FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
f40070c3 | 24 | |
87ecb68b PB |
25 | #include "sun4m.h" |
26 | #include "console.h" | |
94470844 | 27 | #include "pixel_ops.h" |
f40070c3 | 28 | #include "sysbus.h" |
ee6847d1 | 29 | #include "qdev-addr.h" |
420557e8 | 30 | |
420557e8 FB |
31 | #define MAXX 1024 |
32 | #define MAXY 768 | |
6f7e9aec | 33 | #define TCX_DAC_NREGS 16 |
8508b89e BS |
34 | #define TCX_THC_NREGS_8 0x081c |
35 | #define TCX_THC_NREGS_24 0x1000 | |
36 | #define TCX_TEC_NREGS 0x1000 | |
420557e8 | 37 | |
420557e8 | 38 | typedef struct TCXState { |
f40070c3 | 39 | SysBusDevice busdev; |
5dcb6b91 | 40 | target_phys_addr_t addr; |
420557e8 | 41 | DisplayState *ds; |
8d5f07fa | 42 | uint8_t *vram; |
eee0b836 BS |
43 | uint32_t *vram24, *cplane; |
44 | ram_addr_t vram_offset, vram24_offset, cplane_offset; | |
ee6847d1 | 45 | uint32_t vram_size; |
eee0b836 | 46 | uint16_t width, height, depth; |
e80cfcfc | 47 | uint8_t r[256], g[256], b[256]; |
21206a10 | 48 | uint32_t palette[256]; |
6f7e9aec | 49 | uint8_t dac_index, dac_state; |
420557e8 FB |
50 | } TCXState; |
51 | ||
95219897 | 52 | static void tcx_screen_dump(void *opaque, const char *filename); |
eee0b836 | 53 | static void tcx24_screen_dump(void *opaque, const char *filename); |
d3ffcafe BS |
54 | |
55 | static void tcx_set_dirty(TCXState *s) | |
56 | { | |
57 | unsigned int i; | |
58 | ||
59 | for (i = 0; i < MAXX * MAXY; i += TARGET_PAGE_SIZE) { | |
60 | cpu_physical_memory_set_dirty(s->vram_offset + i); | |
61 | } | |
62 | } | |
63 | ||
64 | static void tcx24_set_dirty(TCXState *s) | |
65 | { | |
66 | unsigned int i; | |
67 | ||
68 | for (i = 0; i < MAXX * MAXY * 4; i += TARGET_PAGE_SIZE) { | |
69 | cpu_physical_memory_set_dirty(s->vram24_offset + i); | |
70 | cpu_physical_memory_set_dirty(s->cplane_offset + i); | |
71 | } | |
72 | } | |
95219897 | 73 | |
21206a10 FB |
74 | static void update_palette_entries(TCXState *s, int start, int end) |
75 | { | |
76 | int i; | |
77 | for(i = start; i < end; i++) { | |
0e1f5a0c | 78 | switch(ds_get_bits_per_pixel(s->ds)) { |
21206a10 FB |
79 | default: |
80 | case 8: | |
81 | s->palette[i] = rgb_to_pixel8(s->r[i], s->g[i], s->b[i]); | |
82 | break; | |
83 | case 15: | |
8927bcfd | 84 | s->palette[i] = rgb_to_pixel15(s->r[i], s->g[i], s->b[i]); |
21206a10 FB |
85 | break; |
86 | case 16: | |
8927bcfd | 87 | s->palette[i] = rgb_to_pixel16(s->r[i], s->g[i], s->b[i]); |
21206a10 FB |
88 | break; |
89 | case 32: | |
7b5d76da AL |
90 | if (is_surface_bgr(s->ds->surface)) |
91 | s->palette[i] = rgb_to_pixel32bgr(s->r[i], s->g[i], s->b[i]); | |
92 | else | |
93 | s->palette[i] = rgb_to_pixel32(s->r[i], s->g[i], s->b[i]); | |
21206a10 FB |
94 | break; |
95 | } | |
96 | } | |
d3ffcafe BS |
97 | if (s->depth == 24) { |
98 | tcx24_set_dirty(s); | |
99 | } else { | |
100 | tcx_set_dirty(s); | |
101 | } | |
21206a10 FB |
102 | } |
103 | ||
5fafdf24 | 104 | static void tcx_draw_line32(TCXState *s1, uint8_t *d, |
f930d07e | 105 | const uint8_t *s, int width) |
420557e8 | 106 | { |
e80cfcfc FB |
107 | int x; |
108 | uint8_t val; | |
8bdc2159 | 109 | uint32_t *p = (uint32_t *)d; |
e80cfcfc FB |
110 | |
111 | for(x = 0; x < width; x++) { | |
f930d07e | 112 | val = *s++; |
8bdc2159 | 113 | *p++ = s1->palette[val]; |
e80cfcfc | 114 | } |
420557e8 FB |
115 | } |
116 | ||
5fafdf24 | 117 | static void tcx_draw_line16(TCXState *s1, uint8_t *d, |
f930d07e | 118 | const uint8_t *s, int width) |
e80cfcfc FB |
119 | { |
120 | int x; | |
121 | uint8_t val; | |
8bdc2159 | 122 | uint16_t *p = (uint16_t *)d; |
8d5f07fa | 123 | |
e80cfcfc | 124 | for(x = 0; x < width; x++) { |
f930d07e | 125 | val = *s++; |
8bdc2159 | 126 | *p++ = s1->palette[val]; |
e80cfcfc FB |
127 | } |
128 | } | |
129 | ||
5fafdf24 | 130 | static void tcx_draw_line8(TCXState *s1, uint8_t *d, |
f930d07e | 131 | const uint8_t *s, int width) |
420557e8 | 132 | { |
e80cfcfc FB |
133 | int x; |
134 | uint8_t val; | |
135 | ||
136 | for(x = 0; x < width; x++) { | |
f930d07e | 137 | val = *s++; |
21206a10 | 138 | *d++ = s1->palette[val]; |
420557e8 | 139 | } |
420557e8 FB |
140 | } |
141 | ||
688ea2eb BS |
142 | /* |
143 | XXX Could be much more optimal: | |
144 | * detect if line/page/whole screen is in 24 bit mode | |
145 | * if destination is also BGR, use memcpy | |
146 | */ | |
eee0b836 BS |
147 | static inline void tcx24_draw_line32(TCXState *s1, uint8_t *d, |
148 | const uint8_t *s, int width, | |
149 | const uint32_t *cplane, | |
150 | const uint32_t *s24) | |
151 | { | |
7b5d76da | 152 | int x, bgr, r, g, b; |
688ea2eb | 153 | uint8_t val, *p8; |
eee0b836 BS |
154 | uint32_t *p = (uint32_t *)d; |
155 | uint32_t dval; | |
156 | ||
7b5d76da | 157 | bgr = is_surface_bgr(s1->ds->surface); |
eee0b836 | 158 | for(x = 0; x < width; x++, s++, s24++) { |
688ea2eb BS |
159 | if ((be32_to_cpu(*cplane++) & 0xff000000) == 0x03000000) { |
160 | // 24-bit direct, BGR order | |
161 | p8 = (uint8_t *)s24; | |
162 | p8++; | |
163 | b = *p8++; | |
164 | g = *p8++; | |
165 | r = *p8++; | |
7b5d76da AL |
166 | if (bgr) |
167 | dval = rgb_to_pixel32bgr(r, g, b); | |
168 | else | |
169 | dval = rgb_to_pixel32(r, g, b); | |
eee0b836 BS |
170 | } else { |
171 | val = *s; | |
172 | dval = s1->palette[val]; | |
173 | } | |
174 | *p++ = dval; | |
175 | } | |
176 | } | |
177 | ||
22548760 | 178 | static inline int check_dirty(ram_addr_t page, ram_addr_t page24, |
eee0b836 BS |
179 | ram_addr_t cpage) |
180 | { | |
181 | int ret; | |
182 | unsigned int off; | |
183 | ||
184 | ret = cpu_physical_memory_get_dirty(page, VGA_DIRTY_FLAG); | |
185 | for (off = 0; off < TARGET_PAGE_SIZE * 4; off += TARGET_PAGE_SIZE) { | |
186 | ret |= cpu_physical_memory_get_dirty(page24 + off, VGA_DIRTY_FLAG); | |
187 | ret |= cpu_physical_memory_get_dirty(cpage + off, VGA_DIRTY_FLAG); | |
188 | } | |
189 | return ret; | |
190 | } | |
191 | ||
192 | static inline void reset_dirty(TCXState *ts, ram_addr_t page_min, | |
193 | ram_addr_t page_max, ram_addr_t page24, | |
194 | ram_addr_t cpage) | |
195 | { | |
196 | cpu_physical_memory_reset_dirty(page_min, page_max + TARGET_PAGE_SIZE, | |
197 | VGA_DIRTY_FLAG); | |
198 | page_min -= ts->vram_offset; | |
199 | page_max -= ts->vram_offset; | |
200 | cpu_physical_memory_reset_dirty(page24 + page_min * 4, | |
201 | page24 + page_max * 4 + TARGET_PAGE_SIZE, | |
202 | VGA_DIRTY_FLAG); | |
203 | cpu_physical_memory_reset_dirty(cpage + page_min * 4, | |
204 | cpage + page_max * 4 + TARGET_PAGE_SIZE, | |
205 | VGA_DIRTY_FLAG); | |
206 | } | |
207 | ||
e80cfcfc FB |
208 | /* Fixed line length 1024 allows us to do nice tricks not possible on |
209 | VGA... */ | |
95219897 | 210 | static void tcx_update_display(void *opaque) |
420557e8 | 211 | { |
e80cfcfc | 212 | TCXState *ts = opaque; |
550be127 FB |
213 | ram_addr_t page, page_min, page_max; |
214 | int y, y_start, dd, ds; | |
e80cfcfc | 215 | uint8_t *d, *s; |
b3ceef24 | 216 | void (*f)(TCXState *s1, uint8_t *dst, const uint8_t *src, int width); |
e80cfcfc | 217 | |
0e1f5a0c | 218 | if (ds_get_bits_per_pixel(ts->ds) == 0) |
f930d07e | 219 | return; |
6f7e9aec | 220 | page = ts->vram_offset; |
e80cfcfc | 221 | y_start = -1; |
c0c440f3 | 222 | page_min = -1; |
550be127 | 223 | page_max = 0; |
0e1f5a0c | 224 | d = ds_get_data(ts->ds); |
6f7e9aec | 225 | s = ts->vram; |
0e1f5a0c | 226 | dd = ds_get_linesize(ts->ds); |
e80cfcfc FB |
227 | ds = 1024; |
228 | ||
0e1f5a0c | 229 | switch (ds_get_bits_per_pixel(ts->ds)) { |
e80cfcfc | 230 | case 32: |
f930d07e BS |
231 | f = tcx_draw_line32; |
232 | break; | |
21206a10 FB |
233 | case 15: |
234 | case 16: | |
f930d07e BS |
235 | f = tcx_draw_line16; |
236 | break; | |
e80cfcfc FB |
237 | default: |
238 | case 8: | |
f930d07e BS |
239 | f = tcx_draw_line8; |
240 | break; | |
e80cfcfc | 241 | case 0: |
f930d07e | 242 | return; |
e80cfcfc | 243 | } |
3b46e624 | 244 | |
6f7e9aec | 245 | for(y = 0; y < ts->height; y += 4, page += TARGET_PAGE_SIZE) { |
f930d07e BS |
246 | if (cpu_physical_memory_get_dirty(page, VGA_DIRTY_FLAG)) { |
247 | if (y_start < 0) | |
e80cfcfc FB |
248 | y_start = y; |
249 | if (page < page_min) | |
250 | page_min = page; | |
251 | if (page > page_max) | |
252 | page_max = page; | |
f930d07e BS |
253 | f(ts, d, s, ts->width); |
254 | d += dd; | |
255 | s += ds; | |
256 | f(ts, d, s, ts->width); | |
257 | d += dd; | |
258 | s += ds; | |
259 | f(ts, d, s, ts->width); | |
260 | d += dd; | |
261 | s += ds; | |
262 | f(ts, d, s, ts->width); | |
263 | d += dd; | |
264 | s += ds; | |
265 | } else { | |
e80cfcfc FB |
266 | if (y_start >= 0) { |
267 | /* flush to display */ | |
5fafdf24 | 268 | dpy_update(ts->ds, 0, y_start, |
6f7e9aec | 269 | ts->width, y - y_start); |
e80cfcfc FB |
270 | y_start = -1; |
271 | } | |
f930d07e BS |
272 | d += dd * 4; |
273 | s += ds * 4; | |
274 | } | |
e80cfcfc FB |
275 | } |
276 | if (y_start >= 0) { | |
f930d07e BS |
277 | /* flush to display */ |
278 | dpy_update(ts->ds, 0, y_start, | |
279 | ts->width, y - y_start); | |
e80cfcfc FB |
280 | } |
281 | /* reset modified pages */ | |
c0c440f3 | 282 | if (page_max >= page_min) { |
0a962c02 FB |
283 | cpu_physical_memory_reset_dirty(page_min, page_max + TARGET_PAGE_SIZE, |
284 | VGA_DIRTY_FLAG); | |
e80cfcfc | 285 | } |
420557e8 FB |
286 | } |
287 | ||
eee0b836 BS |
288 | static void tcx24_update_display(void *opaque) |
289 | { | |
290 | TCXState *ts = opaque; | |
291 | ram_addr_t page, page_min, page_max, cpage, page24; | |
292 | int y, y_start, dd, ds; | |
293 | uint8_t *d, *s; | |
294 | uint32_t *cptr, *s24; | |
295 | ||
0e1f5a0c | 296 | if (ds_get_bits_per_pixel(ts->ds) != 32) |
eee0b836 BS |
297 | return; |
298 | page = ts->vram_offset; | |
299 | page24 = ts->vram24_offset; | |
300 | cpage = ts->cplane_offset; | |
301 | y_start = -1; | |
c0c440f3 | 302 | page_min = -1; |
eee0b836 | 303 | page_max = 0; |
0e1f5a0c | 304 | d = ds_get_data(ts->ds); |
eee0b836 BS |
305 | s = ts->vram; |
306 | s24 = ts->vram24; | |
307 | cptr = ts->cplane; | |
0e1f5a0c | 308 | dd = ds_get_linesize(ts->ds); |
eee0b836 BS |
309 | ds = 1024; |
310 | ||
311 | for(y = 0; y < ts->height; y += 4, page += TARGET_PAGE_SIZE, | |
312 | page24 += TARGET_PAGE_SIZE, cpage += TARGET_PAGE_SIZE) { | |
22548760 | 313 | if (check_dirty(page, page24, cpage)) { |
eee0b836 BS |
314 | if (y_start < 0) |
315 | y_start = y; | |
316 | if (page < page_min) | |
317 | page_min = page; | |
318 | if (page > page_max) | |
319 | page_max = page; | |
320 | tcx24_draw_line32(ts, d, s, ts->width, cptr, s24); | |
321 | d += dd; | |
322 | s += ds; | |
323 | cptr += ds; | |
324 | s24 += ds; | |
325 | tcx24_draw_line32(ts, d, s, ts->width, cptr, s24); | |
326 | d += dd; | |
327 | s += ds; | |
328 | cptr += ds; | |
329 | s24 += ds; | |
330 | tcx24_draw_line32(ts, d, s, ts->width, cptr, s24); | |
331 | d += dd; | |
332 | s += ds; | |
333 | cptr += ds; | |
334 | s24 += ds; | |
335 | tcx24_draw_line32(ts, d, s, ts->width, cptr, s24); | |
336 | d += dd; | |
337 | s += ds; | |
338 | cptr += ds; | |
339 | s24 += ds; | |
340 | } else { | |
341 | if (y_start >= 0) { | |
342 | /* flush to display */ | |
343 | dpy_update(ts->ds, 0, y_start, | |
344 | ts->width, y - y_start); | |
345 | y_start = -1; | |
346 | } | |
347 | d += dd * 4; | |
348 | s += ds * 4; | |
349 | cptr += ds * 4; | |
350 | s24 += ds * 4; | |
351 | } | |
352 | } | |
353 | if (y_start >= 0) { | |
354 | /* flush to display */ | |
355 | dpy_update(ts->ds, 0, y_start, | |
356 | ts->width, y - y_start); | |
357 | } | |
358 | /* reset modified pages */ | |
c0c440f3 | 359 | if (page_max >= page_min) { |
eee0b836 BS |
360 | reset_dirty(ts, page_min, page_max, page24, cpage); |
361 | } | |
362 | } | |
363 | ||
95219897 | 364 | static void tcx_invalidate_display(void *opaque) |
420557e8 | 365 | { |
e80cfcfc | 366 | TCXState *s = opaque; |
e80cfcfc | 367 | |
d3ffcafe BS |
368 | tcx_set_dirty(s); |
369 | qemu_console_resize(s->ds, s->width, s->height); | |
420557e8 FB |
370 | } |
371 | ||
eee0b836 BS |
372 | static void tcx24_invalidate_display(void *opaque) |
373 | { | |
374 | TCXState *s = opaque; | |
eee0b836 | 375 | |
d3ffcafe BS |
376 | tcx_set_dirty(s); |
377 | tcx24_set_dirty(s); | |
378 | qemu_console_resize(s->ds, s->width, s->height); | |
eee0b836 BS |
379 | } |
380 | ||
e80cfcfc | 381 | static void tcx_save(QEMUFile *f, void *opaque) |
420557e8 FB |
382 | { |
383 | TCXState *s = opaque; | |
3b46e624 | 384 | |
b6c4f71f BS |
385 | qemu_put_be16s(f, &s->height); |
386 | qemu_put_be16s(f, &s->width); | |
387 | qemu_put_be16s(f, &s->depth); | |
e80cfcfc FB |
388 | qemu_put_buffer(f, s->r, 256); |
389 | qemu_put_buffer(f, s->g, 256); | |
390 | qemu_put_buffer(f, s->b, 256); | |
6f7e9aec FB |
391 | qemu_put_8s(f, &s->dac_index); |
392 | qemu_put_8s(f, &s->dac_state); | |
420557e8 FB |
393 | } |
394 | ||
e80cfcfc | 395 | static int tcx_load(QEMUFile *f, void *opaque, int version_id) |
420557e8 | 396 | { |
e80cfcfc | 397 | TCXState *s = opaque; |
fda77c2d BS |
398 | uint32_t dummy; |
399 | ||
400 | if (version_id != 3 && version_id != 4) | |
e80cfcfc FB |
401 | return -EINVAL; |
402 | ||
fda77c2d | 403 | if (version_id == 3) { |
b6c4f71f BS |
404 | qemu_get_be32s(f, &dummy); |
405 | qemu_get_be32s(f, &dummy); | |
406 | qemu_get_be32s(f, &dummy); | |
fda77c2d | 407 | } |
b6c4f71f BS |
408 | qemu_get_be16s(f, &s->height); |
409 | qemu_get_be16s(f, &s->width); | |
410 | qemu_get_be16s(f, &s->depth); | |
e80cfcfc FB |
411 | qemu_get_buffer(f, s->r, 256); |
412 | qemu_get_buffer(f, s->g, 256); | |
413 | qemu_get_buffer(f, s->b, 256); | |
6f7e9aec FB |
414 | qemu_get_8s(f, &s->dac_index); |
415 | qemu_get_8s(f, &s->dac_state); | |
21206a10 | 416 | update_palette_entries(s, 0, 256); |
d3ffcafe BS |
417 | if (s->depth == 24) { |
418 | tcx24_set_dirty(s); | |
419 | } else { | |
420 | tcx_set_dirty(s); | |
421 | } | |
5425a216 | 422 | |
e80cfcfc | 423 | return 0; |
420557e8 FB |
424 | } |
425 | ||
e80cfcfc | 426 | static void tcx_reset(void *opaque) |
420557e8 | 427 | { |
e80cfcfc FB |
428 | TCXState *s = opaque; |
429 | ||
430 | /* Initialize palette */ | |
431 | memset(s->r, 0, 256); | |
432 | memset(s->g, 0, 256); | |
433 | memset(s->b, 0, 256); | |
434 | s->r[255] = s->g[255] = s->b[255] = 255; | |
21206a10 | 435 | update_palette_entries(s, 0, 256); |
e80cfcfc | 436 | memset(s->vram, 0, MAXX*MAXY); |
eee0b836 BS |
437 | cpu_physical_memory_reset_dirty(s->vram_offset, s->vram_offset + |
438 | MAXX * MAXY * (1 + 4 + 4), VGA_DIRTY_FLAG); | |
6f7e9aec FB |
439 | s->dac_index = 0; |
440 | s->dac_state = 0; | |
441 | } | |
442 | ||
443 | static uint32_t tcx_dac_readl(void *opaque, target_phys_addr_t addr) | |
444 | { | |
445 | return 0; | |
446 | } | |
447 | ||
448 | static void tcx_dac_writel(void *opaque, target_phys_addr_t addr, uint32_t val) | |
449 | { | |
450 | TCXState *s = opaque; | |
6f7e9aec | 451 | |
e64d7d59 | 452 | switch (addr) { |
6f7e9aec | 453 | case 0: |
f930d07e BS |
454 | s->dac_index = val >> 24; |
455 | s->dac_state = 0; | |
456 | break; | |
e64d7d59 | 457 | case 4: |
f930d07e BS |
458 | switch (s->dac_state) { |
459 | case 0: | |
460 | s->r[s->dac_index] = val >> 24; | |
21206a10 | 461 | update_palette_entries(s, s->dac_index, s->dac_index + 1); |
f930d07e BS |
462 | s->dac_state++; |
463 | break; | |
464 | case 1: | |
465 | s->g[s->dac_index] = val >> 24; | |
21206a10 | 466 | update_palette_entries(s, s->dac_index, s->dac_index + 1); |
f930d07e BS |
467 | s->dac_state++; |
468 | break; | |
469 | case 2: | |
470 | s->b[s->dac_index] = val >> 24; | |
21206a10 | 471 | update_palette_entries(s, s->dac_index, s->dac_index + 1); |
5c8cdbf8 | 472 | s->dac_index = (s->dac_index + 1) & 255; // Index autoincrement |
f930d07e BS |
473 | default: |
474 | s->dac_state = 0; | |
475 | break; | |
476 | } | |
477 | break; | |
6f7e9aec | 478 | default: |
f930d07e | 479 | break; |
6f7e9aec FB |
480 | } |
481 | return; | |
420557e8 FB |
482 | } |
483 | ||
d60efc6b | 484 | static CPUReadMemoryFunc * const tcx_dac_read[3] = { |
7c560456 BS |
485 | NULL, |
486 | NULL, | |
6f7e9aec FB |
487 | tcx_dac_readl, |
488 | }; | |
489 | ||
d60efc6b | 490 | static CPUWriteMemoryFunc * const tcx_dac_write[3] = { |
7c560456 BS |
491 | NULL, |
492 | NULL, | |
6f7e9aec FB |
493 | tcx_dac_writel, |
494 | }; | |
495 | ||
8508b89e BS |
496 | static uint32_t tcx_dummy_readl(void *opaque, target_phys_addr_t addr) |
497 | { | |
498 | return 0; | |
499 | } | |
500 | ||
501 | static void tcx_dummy_writel(void *opaque, target_phys_addr_t addr, | |
502 | uint32_t val) | |
503 | { | |
504 | } | |
505 | ||
d60efc6b | 506 | static CPUReadMemoryFunc * const tcx_dummy_read[3] = { |
7c560456 BS |
507 | NULL, |
508 | NULL, | |
8508b89e BS |
509 | tcx_dummy_readl, |
510 | }; | |
511 | ||
d60efc6b | 512 | static CPUWriteMemoryFunc * const tcx_dummy_write[3] = { |
7c560456 BS |
513 | NULL, |
514 | NULL, | |
8508b89e BS |
515 | tcx_dummy_writel, |
516 | }; | |
517 | ||
81a322d4 | 518 | static int tcx_init1(SysBusDevice *dev) |
f40070c3 BS |
519 | { |
520 | TCXState *s = FROM_SYSBUS(TCXState, dev); | |
8508b89e | 521 | int io_memory, dummy_memory; |
dc828ca1 | 522 | ram_addr_t vram_offset; |
ee6847d1 | 523 | int size; |
dc828ca1 PB |
524 | uint8_t *vram_base; |
525 | ||
ee6847d1 | 526 | vram_offset = qemu_ram_alloc(s->vram_size * (1 + 4 + 4)); |
dc828ca1 | 527 | vram_base = qemu_get_ram_ptr(vram_offset); |
e80cfcfc | 528 | s->vram_offset = vram_offset; |
eee0b836 | 529 | |
f40070c3 | 530 | /* 8-bit plane */ |
eee0b836 | 531 | s->vram = vram_base; |
ee6847d1 | 532 | size = s->vram_size; |
f40070c3 | 533 | sysbus_init_mmio(dev, size, s->vram_offset); |
eee0b836 BS |
534 | vram_offset += size; |
535 | vram_base += size; | |
e80cfcfc | 536 | |
f40070c3 | 537 | /* DAC */ |
1eed09cb | 538 | io_memory = cpu_register_io_memory(tcx_dac_read, tcx_dac_write, s); |
f40070c3 | 539 | sysbus_init_mmio(dev, TCX_DAC_NREGS, io_memory); |
eee0b836 | 540 | |
f40070c3 | 541 | /* TEC (dummy) */ |
1eed09cb | 542 | dummy_memory = cpu_register_io_memory(tcx_dummy_read, tcx_dummy_write, |
8508b89e | 543 | s); |
f40070c3 BS |
544 | sysbus_init_mmio(dev, TCX_TEC_NREGS, dummy_memory); |
545 | /* THC: NetBSD writes here even with 8-bit display: dummy */ | |
546 | sysbus_init_mmio(dev, TCX_THC_NREGS_24, dummy_memory); | |
547 | ||
548 | if (s->depth == 24) { | |
549 | /* 24-bit plane */ | |
ee6847d1 | 550 | size = s->vram_size * 4; |
eee0b836 BS |
551 | s->vram24 = (uint32_t *)vram_base; |
552 | s->vram24_offset = vram_offset; | |
f40070c3 | 553 | sysbus_init_mmio(dev, size, vram_offset); |
eee0b836 BS |
554 | vram_offset += size; |
555 | vram_base += size; | |
556 | ||
f40070c3 | 557 | /* Control plane */ |
ee6847d1 | 558 | size = s->vram_size * 4; |
eee0b836 BS |
559 | s->cplane = (uint32_t *)vram_base; |
560 | s->cplane_offset = vram_offset; | |
f40070c3 BS |
561 | sysbus_init_mmio(dev, size, vram_offset); |
562 | ||
3023f332 AL |
563 | s->ds = graphic_console_init(tcx24_update_display, |
564 | tcx24_invalidate_display, | |
565 | tcx24_screen_dump, NULL, s); | |
eee0b836 | 566 | } else { |
f40070c3 BS |
567 | /* THC 8 bit (dummy) */ |
568 | sysbus_init_mmio(dev, TCX_THC_NREGS_8, dummy_memory); | |
569 | ||
3023f332 AL |
570 | s->ds = graphic_console_init(tcx_update_display, |
571 | tcx_invalidate_display, | |
572 | tcx_screen_dump, NULL, s); | |
eee0b836 | 573 | } |
e80cfcfc | 574 | |
f40070c3 | 575 | register_savevm("tcx", -1, 4, tcx_save, tcx_load, s); |
a08d4367 | 576 | qemu_register_reset(tcx_reset, s); |
e80cfcfc | 577 | tcx_reset(s); |
f40070c3 | 578 | qemu_console_resize(s->ds, s->width, s->height); |
81a322d4 | 579 | return 0; |
420557e8 FB |
580 | } |
581 | ||
95219897 | 582 | static void tcx_screen_dump(void *opaque, const char *filename) |
8d5f07fa | 583 | { |
e80cfcfc | 584 | TCXState *s = opaque; |
8d5f07fa | 585 | FILE *f; |
e80cfcfc | 586 | uint8_t *d, *d1, v; |
8d5f07fa FB |
587 | int y, x; |
588 | ||
589 | f = fopen(filename, "wb"); | |
590 | if (!f) | |
e80cfcfc | 591 | return; |
6f7e9aec FB |
592 | fprintf(f, "P6\n%d %d\n%d\n", s->width, s->height, 255); |
593 | d1 = s->vram; | |
594 | for(y = 0; y < s->height; y++) { | |
8d5f07fa | 595 | d = d1; |
6f7e9aec | 596 | for(x = 0; x < s->width; x++) { |
8d5f07fa | 597 | v = *d; |
e80cfcfc FB |
598 | fputc(s->r[v], f); |
599 | fputc(s->g[v], f); | |
600 | fputc(s->b[v], f); | |
8d5f07fa FB |
601 | d++; |
602 | } | |
e80cfcfc | 603 | d1 += MAXX; |
8d5f07fa FB |
604 | } |
605 | fclose(f); | |
606 | return; | |
607 | } | |
608 | ||
eee0b836 BS |
609 | static void tcx24_screen_dump(void *opaque, const char *filename) |
610 | { | |
611 | TCXState *s = opaque; | |
612 | FILE *f; | |
613 | uint8_t *d, *d1, v; | |
614 | uint32_t *s24, *cptr, dval; | |
615 | int y, x; | |
8d5f07fa | 616 | |
eee0b836 BS |
617 | f = fopen(filename, "wb"); |
618 | if (!f) | |
619 | return; | |
620 | fprintf(f, "P6\n%d %d\n%d\n", s->width, s->height, 255); | |
621 | d1 = s->vram; | |
622 | s24 = s->vram24; | |
623 | cptr = s->cplane; | |
624 | for(y = 0; y < s->height; y++) { | |
625 | d = d1; | |
626 | for(x = 0; x < s->width; x++, d++, s24++) { | |
627 | if ((*cptr++ & 0xff000000) == 0x03000000) { // 24-bit direct | |
628 | dval = *s24 & 0x00ffffff; | |
629 | fputc((dval >> 16) & 0xff, f); | |
630 | fputc((dval >> 8) & 0xff, f); | |
631 | fputc(dval & 0xff, f); | |
632 | } else { | |
633 | v = *d; | |
634 | fputc(s->r[v], f); | |
635 | fputc(s->g[v], f); | |
636 | fputc(s->b[v], f); | |
637 | } | |
638 | } | |
639 | d1 += MAXX; | |
640 | } | |
641 | fclose(f); | |
642 | return; | |
643 | } | |
f40070c3 | 644 | |
ee6847d1 GH |
645 | static SysBusDeviceInfo tcx_info = { |
646 | .init = tcx_init1, | |
647 | .qdev.name = "SUNW,tcx", | |
648 | .qdev.size = sizeof(TCXState), | |
649 | .qdev.props = (Property[]) { | |
53dad499 GH |
650 | DEFINE_PROP_TADDR("addr", TCXState, addr, -1), |
651 | DEFINE_PROP_HEX32("vram_size", TCXState, vram_size, -1), | |
652 | DEFINE_PROP_UINT16("width", TCXState, width, -1), | |
653 | DEFINE_PROP_UINT16("height", TCXState, height, -1), | |
654 | DEFINE_PROP_UINT16("depth", TCXState, depth, -1), | |
655 | DEFINE_PROP_END_OF_LIST(), | |
ee6847d1 GH |
656 | } |
657 | }; | |
658 | ||
f40070c3 BS |
659 | static void tcx_register_devices(void) |
660 | { | |
ee6847d1 | 661 | sysbus_register_withprop(&tcx_info); |
f40070c3 BS |
662 | } |
663 | ||
664 | device_init(tcx_register_devices) |