]>
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; |
c227f099 | 40 | target_phys_addr_t addr; |
420557e8 | 41 | DisplayState *ds; |
8d5f07fa | 42 | uint8_t *vram; |
eee0b836 | 43 | uint32_t *vram24, *cplane; |
c227f099 | 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 | ||
c227f099 AL |
178 | static inline int check_dirty(ram_addr_t page, ram_addr_t page24, |
179 | ram_addr_t cpage) | |
eee0b836 BS |
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 | ||
c227f099 AL |
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) | |
eee0b836 BS |
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; |
c227f099 | 213 | ram_addr_t page, page_min, page_max; |
550be127 | 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; | |
c227f099 | 291 | ram_addr_t page, page_min, page_max, cpage, page24; |
eee0b836 BS |
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 | ||
e59fb374 | 381 | static int vmstate_tcx_post_load(void *opaque, int version_id) |
420557e8 FB |
382 | { |
383 | TCXState *s = opaque; | |
3b46e624 | 384 | |
21206a10 | 385 | update_palette_entries(s, 0, 256); |
d3ffcafe BS |
386 | if (s->depth == 24) { |
387 | tcx24_set_dirty(s); | |
388 | } else { | |
389 | tcx_set_dirty(s); | |
390 | } | |
5425a216 | 391 | |
e80cfcfc | 392 | return 0; |
420557e8 FB |
393 | } |
394 | ||
c0c41a4b BS |
395 | static const VMStateDescription vmstate_tcx = { |
396 | .name ="tcx", | |
397 | .version_id = 4, | |
398 | .minimum_version_id = 4, | |
399 | .minimum_version_id_old = 4, | |
752ff2fa | 400 | .post_load = vmstate_tcx_post_load, |
c0c41a4b BS |
401 | .fields = (VMStateField []) { |
402 | VMSTATE_UINT16(height, TCXState), | |
403 | VMSTATE_UINT16(width, TCXState), | |
404 | VMSTATE_UINT16(depth, TCXState), | |
405 | VMSTATE_BUFFER(r, TCXState), | |
406 | VMSTATE_BUFFER(g, TCXState), | |
407 | VMSTATE_BUFFER(b, TCXState), | |
408 | VMSTATE_UINT8(dac_index, TCXState), | |
409 | VMSTATE_UINT8(dac_state, TCXState), | |
410 | VMSTATE_END_OF_LIST() | |
411 | } | |
412 | }; | |
413 | ||
7f23f812 | 414 | static void tcx_reset(DeviceState *d) |
420557e8 | 415 | { |
7f23f812 | 416 | TCXState *s = container_of(d, TCXState, busdev.qdev); |
e80cfcfc FB |
417 | |
418 | /* Initialize palette */ | |
419 | memset(s->r, 0, 256); | |
420 | memset(s->g, 0, 256); | |
421 | memset(s->b, 0, 256); | |
422 | s->r[255] = s->g[255] = s->b[255] = 255; | |
21206a10 | 423 | update_palette_entries(s, 0, 256); |
e80cfcfc | 424 | memset(s->vram, 0, MAXX*MAXY); |
eee0b836 BS |
425 | cpu_physical_memory_reset_dirty(s->vram_offset, s->vram_offset + |
426 | MAXX * MAXY * (1 + 4 + 4), VGA_DIRTY_FLAG); | |
6f7e9aec FB |
427 | s->dac_index = 0; |
428 | s->dac_state = 0; | |
429 | } | |
430 | ||
c227f099 | 431 | static uint32_t tcx_dac_readl(void *opaque, target_phys_addr_t addr) |
6f7e9aec FB |
432 | { |
433 | return 0; | |
434 | } | |
435 | ||
c227f099 | 436 | static void tcx_dac_writel(void *opaque, target_phys_addr_t addr, uint32_t val) |
6f7e9aec FB |
437 | { |
438 | TCXState *s = opaque; | |
6f7e9aec | 439 | |
e64d7d59 | 440 | switch (addr) { |
6f7e9aec | 441 | case 0: |
f930d07e BS |
442 | s->dac_index = val >> 24; |
443 | s->dac_state = 0; | |
444 | break; | |
e64d7d59 | 445 | case 4: |
f930d07e BS |
446 | switch (s->dac_state) { |
447 | case 0: | |
448 | s->r[s->dac_index] = val >> 24; | |
21206a10 | 449 | update_palette_entries(s, s->dac_index, s->dac_index + 1); |
f930d07e BS |
450 | s->dac_state++; |
451 | break; | |
452 | case 1: | |
453 | s->g[s->dac_index] = val >> 24; | |
21206a10 | 454 | update_palette_entries(s, s->dac_index, s->dac_index + 1); |
f930d07e BS |
455 | s->dac_state++; |
456 | break; | |
457 | case 2: | |
458 | s->b[s->dac_index] = val >> 24; | |
21206a10 | 459 | update_palette_entries(s, s->dac_index, s->dac_index + 1); |
5c8cdbf8 | 460 | s->dac_index = (s->dac_index + 1) & 255; // Index autoincrement |
f930d07e BS |
461 | default: |
462 | s->dac_state = 0; | |
463 | break; | |
464 | } | |
465 | break; | |
6f7e9aec | 466 | default: |
f930d07e | 467 | break; |
6f7e9aec FB |
468 | } |
469 | return; | |
420557e8 FB |
470 | } |
471 | ||
d60efc6b | 472 | static CPUReadMemoryFunc * const tcx_dac_read[3] = { |
7c560456 BS |
473 | NULL, |
474 | NULL, | |
6f7e9aec FB |
475 | tcx_dac_readl, |
476 | }; | |
477 | ||
d60efc6b | 478 | static CPUWriteMemoryFunc * const tcx_dac_write[3] = { |
7c560456 BS |
479 | NULL, |
480 | NULL, | |
6f7e9aec FB |
481 | tcx_dac_writel, |
482 | }; | |
483 | ||
c227f099 | 484 | static uint32_t tcx_dummy_readl(void *opaque, target_phys_addr_t addr) |
8508b89e BS |
485 | { |
486 | return 0; | |
487 | } | |
488 | ||
c227f099 | 489 | static void tcx_dummy_writel(void *opaque, target_phys_addr_t addr, |
8508b89e BS |
490 | uint32_t val) |
491 | { | |
492 | } | |
493 | ||
d60efc6b | 494 | static CPUReadMemoryFunc * const tcx_dummy_read[3] = { |
7c560456 BS |
495 | NULL, |
496 | NULL, | |
8508b89e BS |
497 | tcx_dummy_readl, |
498 | }; | |
499 | ||
d60efc6b | 500 | static CPUWriteMemoryFunc * const tcx_dummy_write[3] = { |
7c560456 BS |
501 | NULL, |
502 | NULL, | |
8508b89e BS |
503 | tcx_dummy_writel, |
504 | }; | |
505 | ||
81a322d4 | 506 | static int tcx_init1(SysBusDevice *dev) |
f40070c3 BS |
507 | { |
508 | TCXState *s = FROM_SYSBUS(TCXState, dev); | |
8508b89e | 509 | int io_memory, dummy_memory; |
c227f099 | 510 | ram_addr_t vram_offset; |
ee6847d1 | 511 | int size; |
dc828ca1 PB |
512 | uint8_t *vram_base; |
513 | ||
ee6847d1 | 514 | vram_offset = qemu_ram_alloc(s->vram_size * (1 + 4 + 4)); |
dc828ca1 | 515 | vram_base = qemu_get_ram_ptr(vram_offset); |
e80cfcfc | 516 | s->vram_offset = vram_offset; |
eee0b836 | 517 | |
f40070c3 | 518 | /* 8-bit plane */ |
eee0b836 | 519 | s->vram = vram_base; |
ee6847d1 | 520 | size = s->vram_size; |
f40070c3 | 521 | sysbus_init_mmio(dev, size, s->vram_offset); |
eee0b836 BS |
522 | vram_offset += size; |
523 | vram_base += size; | |
e80cfcfc | 524 | |
f40070c3 | 525 | /* DAC */ |
1eed09cb | 526 | io_memory = cpu_register_io_memory(tcx_dac_read, tcx_dac_write, s); |
f40070c3 | 527 | sysbus_init_mmio(dev, TCX_DAC_NREGS, io_memory); |
eee0b836 | 528 | |
f40070c3 | 529 | /* TEC (dummy) */ |
1eed09cb | 530 | dummy_memory = cpu_register_io_memory(tcx_dummy_read, tcx_dummy_write, |
8508b89e | 531 | s); |
f40070c3 BS |
532 | sysbus_init_mmio(dev, TCX_TEC_NREGS, dummy_memory); |
533 | /* THC: NetBSD writes here even with 8-bit display: dummy */ | |
534 | sysbus_init_mmio(dev, TCX_THC_NREGS_24, dummy_memory); | |
535 | ||
536 | if (s->depth == 24) { | |
537 | /* 24-bit plane */ | |
ee6847d1 | 538 | size = s->vram_size * 4; |
eee0b836 BS |
539 | s->vram24 = (uint32_t *)vram_base; |
540 | s->vram24_offset = vram_offset; | |
f40070c3 | 541 | sysbus_init_mmio(dev, size, vram_offset); |
eee0b836 BS |
542 | vram_offset += size; |
543 | vram_base += size; | |
544 | ||
f40070c3 | 545 | /* Control plane */ |
ee6847d1 | 546 | size = s->vram_size * 4; |
eee0b836 BS |
547 | s->cplane = (uint32_t *)vram_base; |
548 | s->cplane_offset = vram_offset; | |
f40070c3 BS |
549 | sysbus_init_mmio(dev, size, vram_offset); |
550 | ||
3023f332 AL |
551 | s->ds = graphic_console_init(tcx24_update_display, |
552 | tcx24_invalidate_display, | |
553 | tcx24_screen_dump, NULL, s); | |
eee0b836 | 554 | } else { |
f40070c3 BS |
555 | /* THC 8 bit (dummy) */ |
556 | sysbus_init_mmio(dev, TCX_THC_NREGS_8, dummy_memory); | |
557 | ||
3023f332 AL |
558 | s->ds = graphic_console_init(tcx_update_display, |
559 | tcx_invalidate_display, | |
560 | tcx_screen_dump, NULL, s); | |
eee0b836 | 561 | } |
e80cfcfc | 562 | |
7f23f812 | 563 | tcx_reset(&s->busdev.qdev); |
f40070c3 | 564 | qemu_console_resize(s->ds, s->width, s->height); |
81a322d4 | 565 | return 0; |
420557e8 FB |
566 | } |
567 | ||
95219897 | 568 | static void tcx_screen_dump(void *opaque, const char *filename) |
8d5f07fa | 569 | { |
e80cfcfc | 570 | TCXState *s = opaque; |
8d5f07fa | 571 | FILE *f; |
e80cfcfc | 572 | uint8_t *d, *d1, v; |
8d5f07fa FB |
573 | int y, x; |
574 | ||
575 | f = fopen(filename, "wb"); | |
576 | if (!f) | |
e80cfcfc | 577 | return; |
6f7e9aec FB |
578 | fprintf(f, "P6\n%d %d\n%d\n", s->width, s->height, 255); |
579 | d1 = s->vram; | |
580 | for(y = 0; y < s->height; y++) { | |
8d5f07fa | 581 | d = d1; |
6f7e9aec | 582 | for(x = 0; x < s->width; x++) { |
8d5f07fa | 583 | v = *d; |
e80cfcfc FB |
584 | fputc(s->r[v], f); |
585 | fputc(s->g[v], f); | |
586 | fputc(s->b[v], f); | |
8d5f07fa FB |
587 | d++; |
588 | } | |
e80cfcfc | 589 | d1 += MAXX; |
8d5f07fa FB |
590 | } |
591 | fclose(f); | |
592 | return; | |
593 | } | |
594 | ||
eee0b836 BS |
595 | static void tcx24_screen_dump(void *opaque, const char *filename) |
596 | { | |
597 | TCXState *s = opaque; | |
598 | FILE *f; | |
599 | uint8_t *d, *d1, v; | |
600 | uint32_t *s24, *cptr, dval; | |
601 | int y, x; | |
8d5f07fa | 602 | |
eee0b836 BS |
603 | f = fopen(filename, "wb"); |
604 | if (!f) | |
605 | return; | |
606 | fprintf(f, "P6\n%d %d\n%d\n", s->width, s->height, 255); | |
607 | d1 = s->vram; | |
608 | s24 = s->vram24; | |
609 | cptr = s->cplane; | |
610 | for(y = 0; y < s->height; y++) { | |
611 | d = d1; | |
612 | for(x = 0; x < s->width; x++, d++, s24++) { | |
613 | if ((*cptr++ & 0xff000000) == 0x03000000) { // 24-bit direct | |
614 | dval = *s24 & 0x00ffffff; | |
615 | fputc((dval >> 16) & 0xff, f); | |
616 | fputc((dval >> 8) & 0xff, f); | |
617 | fputc(dval & 0xff, f); | |
618 | } else { | |
619 | v = *d; | |
620 | fputc(s->r[v], f); | |
621 | fputc(s->g[v], f); | |
622 | fputc(s->b[v], f); | |
623 | } | |
624 | } | |
625 | d1 += MAXX; | |
626 | } | |
627 | fclose(f); | |
628 | return; | |
629 | } | |
f40070c3 | 630 | |
ee6847d1 GH |
631 | static SysBusDeviceInfo tcx_info = { |
632 | .init = tcx_init1, | |
633 | .qdev.name = "SUNW,tcx", | |
634 | .qdev.size = sizeof(TCXState), | |
20bb8277 GH |
635 | .qdev.reset = tcx_reset, |
636 | .qdev.vmsd = &vmstate_tcx, | |
ee6847d1 | 637 | .qdev.props = (Property[]) { |
53dad499 GH |
638 | DEFINE_PROP_TADDR("addr", TCXState, addr, -1), |
639 | DEFINE_PROP_HEX32("vram_size", TCXState, vram_size, -1), | |
640 | DEFINE_PROP_UINT16("width", TCXState, width, -1), | |
641 | DEFINE_PROP_UINT16("height", TCXState, height, -1), | |
642 | DEFINE_PROP_UINT16("depth", TCXState, depth, -1), | |
643 | DEFINE_PROP_END_OF_LIST(), | |
ee6847d1 GH |
644 | } |
645 | }; | |
646 | ||
f40070c3 BS |
647 | static void tcx_register_devices(void) |
648 | { | |
ee6847d1 | 649 | sysbus_register_withprop(&tcx_info); |
f40070c3 BS |
650 | } |
651 | ||
652 | device_init(tcx_register_devices) |