2 * QEMU G364 framebuffer Emulator.
4 * Copyright (c) 2007-2011 Herve Poussineau
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "ui/console.h"
22 #include "ui/pixel_ops.h"
26 typedef struct G364State
{
31 MemoryRegion mem_vram
;
32 MemoryRegion mem_ctrl
;
34 uint8_t color_palette
[256][3];
35 uint8_t cursor_palette
[3][3];
37 uint32_t cursor_position
;
39 uint32_t top_of_screen
;
40 uint32_t width
, height
; /* in pixels */
41 /* display refresh support */
47 #define REG_BOOT 0x000000
48 #define REG_DISPLAY 0x000118
49 #define REG_VDISPLAY 0x000150
50 #define REG_CTLA 0x000300
51 #define REG_TOP 0x000400
52 #define REG_CURS_PAL 0x000508
53 #define REG_CURS_POS 0x000638
54 #define REG_CLR_PAL 0x000800
55 #define REG_CURS_PAT 0x001000
56 #define REG_RESET 0x100000
58 #define CTLA_FORCE_BLANK 0x00000400
59 #define CTLA_NO_CURSOR 0x00800000
61 #define G364_PAGE_SIZE 4096
63 static inline int check_dirty(G364State
*s
, ram_addr_t page
)
65 return memory_region_get_dirty(&s
->mem_vram
, page
, G364_PAGE_SIZE
,
69 static inline void reset_dirty(G364State
*s
,
70 ram_addr_t page_min
, ram_addr_t page_max
)
72 memory_region_reset_dirty(&s
->mem_vram
,
74 page_max
+ G364_PAGE_SIZE
- page_min
- 1,
78 static void g364fb_draw_graphic8(G364State
*s
)
82 uint8_t *data_display
, *dd
;
83 ram_addr_t page
, page_min
, page_max
;
88 unsigned int (*rgb_to_pixel
)(unsigned int r
, unsigned int g
, unsigned int b
);
90 switch (ds_get_bits_per_pixel(s
->ds
)) {
92 rgb_to_pixel
= rgb_to_pixel8
;
96 rgb_to_pixel
= rgb_to_pixel15
;
100 rgb_to_pixel
= rgb_to_pixel16
;
104 rgb_to_pixel
= rgb_to_pixel32
;
108 hw_error("g364: unknown host depth %d",
109 ds_get_bits_per_pixel(s
->ds
));
114 page_min
= (ram_addr_t
)-1;
123 if (!(s
->ctla
& CTLA_NO_CURSOR
)) {
124 xcursor
= s
->cursor_position
>> 12;
125 ycursor
= s
->cursor_position
& 0xfff;
127 xcursor
= ycursor
= -65;
130 vram
= s
->vram
+ s
->top_of_screen
;
131 /* XXX: out of range in vram? */
132 data_display
= dd
= ds_get_data(s
->ds
);
133 while (y
< s
->height
) {
134 if (check_dirty(s
, page
)) {
137 if (page_min
== (ram_addr_t
)-1)
142 for (i
= 0; i
< G364_PAGE_SIZE
; i
++) {
145 if (unlikely((y
>= ycursor
&& y
< ycursor
+ 64) &&
146 (x
>= xcursor
&& x
< xcursor
+ 64))) {
148 int xdiff
= x
- xcursor
;
149 uint16_t curs
= s
->cursor
[(y
- ycursor
) * 8 + xdiff
/ 8];
150 int op
= (curs
>> ((xdiff
& 7) * 2)) & 3;
151 if (likely(op
== 0)) {
154 color
= (*rgb_to_pixel
)(
155 s
->color_palette
[index
][0],
156 s
->color_palette
[index
][1],
157 s
->color_palette
[index
][2]);
159 /* get cursor color */
161 color
= (*rgb_to_pixel
)(
162 s
->cursor_palette
[index
][0],
163 s
->cursor_palette
[index
][1],
164 s
->cursor_palette
[index
][2]);
169 color
= (*rgb_to_pixel
)(
170 s
->color_palette
[index
][0],
171 s
->color_palette
[index
][1],
172 s
->color_palette
[index
][2]);
174 memcpy(dd
, &color
, w
);
181 if (y
== s
->height
) {
182 ymax
= s
->height
- 1;
185 data_display
= dd
= data_display
+ ds_get_linesize(s
->ds
);
196 if (page_min
!= (ram_addr_t
)-1) {
197 reset_dirty(s
, page_min
, page_max
);
198 page_min
= (ram_addr_t
)-1;
200 dpy_gfx_update(s
->ds
, xmin
, ymin
,
201 xmax
- xmin
+ 1, ymax
- ymin
+ 1);
211 vram
+= G364_PAGE_SIZE
;
212 data_display
+= dy
* ds_get_linesize(s
->ds
);
213 dd
= data_display
+ x
* w
;
215 page
+= G364_PAGE_SIZE
;
219 if (page_min
!= (ram_addr_t
)-1) {
220 dpy_gfx_update(s
->ds
, xmin
, ymin
, xmax
- xmin
+ 1, ymax
- ymin
+ 1);
221 reset_dirty(s
, page_min
, page_max
);
225 static void g364fb_draw_blank(G364State
*s
)
231 /* Screen is already blank. No need to redraw it */
235 w
= s
->width
* ((ds_get_bits_per_pixel(s
->ds
) + 7) >> 3);
236 d
= ds_get_data(s
->ds
);
237 for (i
= 0; i
< s
->height
; i
++) {
239 d
+= ds_get_linesize(s
->ds
);
242 dpy_gfx_update(s
->ds
, 0, 0, s
->width
, s
->height
);
246 static void g364fb_update_display(void *opaque
)
248 G364State
*s
= opaque
;
250 qemu_flush_coalesced_mmio_buffer();
252 if (s
->width
== 0 || s
->height
== 0)
255 if (s
->width
!= ds_get_width(s
->ds
) || s
->height
!= ds_get_height(s
->ds
)) {
256 qemu_console_resize(s
->ds
, s
->width
, s
->height
);
259 if (s
->ctla
& CTLA_FORCE_BLANK
) {
260 g364fb_draw_blank(s
);
261 } else if (s
->depth
== 8) {
262 g364fb_draw_graphic8(s
);
264 error_report("g364: unknown guest depth %d", s
->depth
);
267 qemu_irq_raise(s
->irq
);
270 static inline void g364fb_invalidate_display(void *opaque
)
272 G364State
*s
= opaque
;
275 memory_region_set_dirty(&s
->mem_vram
, 0, s
->vram_size
);
278 static void g364fb_reset(G364State
*s
)
280 qemu_irq_lower(s
->irq
);
282 memset(s
->color_palette
, 0, sizeof(s
->color_palette
));
283 memset(s
->cursor_palette
, 0, sizeof(s
->cursor_palette
));
284 memset(s
->cursor
, 0, sizeof(s
->cursor
));
285 s
->cursor_position
= 0;
287 s
->top_of_screen
= 0;
288 s
->width
= s
->height
= 0;
289 memset(s
->vram
, 0, s
->vram_size
);
290 g364fb_invalidate_display(s
);
293 static void g364fb_screen_dump(void *opaque
, const char *filename
, bool cswitch
,
296 G364State
*s
= opaque
;
299 uint8_t *data_buffer
;
302 qemu_flush_coalesced_mmio_buffer();
305 error_setg(errp
, "g364: unknown guest depth %d", s
->depth
);
309 f
= fopen(filename
, "wb");
311 error_setg(errp
, "failed to open file '%s': %s", filename
,
316 if (s
->ctla
& CTLA_FORCE_BLANK
) {
318 ret
= fprintf(f
, "P4\n%d %d\n", s
->width
, s
->height
);
322 for (y
= 0; y
< s
->height
; y
++)
323 for (x
= 0; x
< s
->width
; x
++) {
330 data_buffer
= s
->vram
+ s
->top_of_screen
;
331 ret
= fprintf(f
, "P6\n%d %d\n%d\n", s
->width
, s
->height
, 255);
335 for (y
= 0; y
< s
->height
; y
++)
336 for (x
= 0; x
< s
->width
; x
++, data_buffer
++) {
337 index
= *data_buffer
;
338 ret
= fputc(s
->color_palette
[index
][0], f
);
342 ret
= fputc(s
->color_palette
[index
][1], f
);
346 ret
= fputc(s
->color_palette
[index
][2], f
);
358 error_setg(errp
, "failed to write to file '%s': %s", filename
,
364 /* called for accesses to io ports */
365 static uint64_t g364fb_ctrl_read(void *opaque
,
369 G364State
*s
= opaque
;
372 if (addr
>= REG_CURS_PAT
&& addr
< REG_CURS_PAT
+ 0x1000) {
374 int idx
= (addr
- REG_CURS_PAT
) >> 3;
375 val
= s
->cursor
[idx
];
376 } else if (addr
>= REG_CURS_PAL
&& addr
< REG_CURS_PAL
+ 0x18) {
378 int idx
= (addr
- REG_CURS_PAL
) >> 3;
379 val
= ((uint32_t)s
->cursor_palette
[idx
][0] << 16);
380 val
|= ((uint32_t)s
->cursor_palette
[idx
][1] << 8);
381 val
|= ((uint32_t)s
->cursor_palette
[idx
][2] << 0);
395 error_report("g364: invalid read at [" TARGET_FMT_plx
"]",
403 trace_g364fb_read(addr
, val
);
408 static void g364fb_update_depth(G364State
*s
)
410 static const int depths
[8] = { 1, 2, 4, 8, 15, 16, 0 };
411 s
->depth
= depths
[(s
->ctla
& 0x00700000) >> 20];
414 static void g364_invalidate_cursor_position(G364State
*s
)
416 int ymin
, ymax
, start
, end
;
418 /* invalidate only near the cursor */
419 ymin
= s
->cursor_position
& 0xfff;
420 ymax
= MIN(s
->height
, ymin
+ 64);
421 start
= ymin
* ds_get_linesize(s
->ds
);
422 end
= (ymax
+ 1) * ds_get_linesize(s
->ds
);
424 memory_region_set_dirty(&s
->mem_vram
, start
, end
- start
);
427 static void g364fb_ctrl_write(void *opaque
,
432 G364State
*s
= opaque
;
434 trace_g364fb_write(addr
, val
);
436 if (addr
>= REG_CLR_PAL
&& addr
< REG_CLR_PAL
+ 0x800) {
438 int idx
= (addr
- REG_CLR_PAL
) >> 3;
439 s
->color_palette
[idx
][0] = (val
>> 16) & 0xff;
440 s
->color_palette
[idx
][1] = (val
>> 8) & 0xff;
441 s
->color_palette
[idx
][2] = val
& 0xff;
442 g364fb_invalidate_display(s
);
443 } else if (addr
>= REG_CURS_PAT
&& addr
< REG_CURS_PAT
+ 0x1000) {
445 int idx
= (addr
- REG_CURS_PAT
) >> 3;
446 s
->cursor
[idx
] = val
;
447 g364fb_invalidate_display(s
);
448 } else if (addr
>= REG_CURS_PAL
&& addr
< REG_CURS_PAL
+ 0x18) {
450 int idx
= (addr
- REG_CURS_PAL
) >> 3;
451 s
->cursor_palette
[idx
][0] = (val
>> 16) & 0xff;
452 s
->cursor_palette
[idx
][1] = (val
>> 8) & 0xff;
453 s
->cursor_palette
[idx
][2] = val
& 0xff;
454 g364fb_invalidate_display(s
);
457 case REG_BOOT
: /* Boot timing */
458 case 0x00108: /* Line timing: half sync */
459 case 0x00110: /* Line timing: back porch */
460 case 0x00120: /* Line timing: short display */
461 case 0x00128: /* Frame timing: broad pulse */
462 case 0x00130: /* Frame timing: v sync */
463 case 0x00138: /* Frame timing: v preequalise */
464 case 0x00140: /* Frame timing: v postequalise */
465 case 0x00148: /* Frame timing: v blank */
466 case 0x00158: /* Line timing: line time */
467 case 0x00160: /* Frame store: line start */
468 case 0x00168: /* vram cycle: mem init */
469 case 0x00170: /* vram cycle: transfer delay */
470 case 0x00200: /* vram cycle: mask register */
474 s
->top_of_screen
= val
;
475 g364fb_invalidate_display(s
);
485 g364fb_update_depth(s
);
486 g364fb_invalidate_display(s
);
489 g364_invalidate_cursor_position(s
);
490 s
->cursor_position
= val
;
491 g364_invalidate_cursor_position(s
);
497 error_report("g364: invalid write of 0x%" PRIx64
498 " at [" TARGET_FMT_plx
"]", val
, addr
);
502 qemu_irq_lower(s
->irq
);
505 static const MemoryRegionOps g364fb_ctrl_ops
= {
506 .read
= g364fb_ctrl_read
,
507 .write
= g364fb_ctrl_write
,
508 .endianness
= DEVICE_LITTLE_ENDIAN
,
509 .impl
.min_access_size
= 4,
510 .impl
.max_access_size
= 4,
513 static int g364fb_post_load(void *opaque
, int version_id
)
515 G364State
*s
= opaque
;
518 g364fb_update_depth(s
);
519 g364fb_invalidate_display(s
);
524 static const VMStateDescription vmstate_g364fb
= {
527 .minimum_version_id
= 1,
528 .minimum_version_id_old
= 1,
529 .post_load
= g364fb_post_load
,
530 .fields
= (VMStateField
[]) {
531 VMSTATE_VBUFFER_UINT32(vram
, G364State
, 1, NULL
, 0, vram_size
),
532 VMSTATE_BUFFER_UNSAFE(color_palette
, G364State
, 0, 256 * 3),
533 VMSTATE_BUFFER_UNSAFE(cursor_palette
, G364State
, 0, 9),
534 VMSTATE_UINT16_ARRAY(cursor
, G364State
, 512),
535 VMSTATE_UINT32(cursor_position
, G364State
),
536 VMSTATE_UINT32(ctla
, G364State
),
537 VMSTATE_UINT32(top_of_screen
, G364State
),
538 VMSTATE_UINT32(width
, G364State
),
539 VMSTATE_UINT32(height
, G364State
),
540 VMSTATE_END_OF_LIST()
544 static void g364fb_init(DeviceState
*dev
, G364State
*s
)
546 s
->vram
= g_malloc0(s
->vram_size
);
548 s
->ds
= graphic_console_init(g364fb_update_display
,
549 g364fb_invalidate_display
,
550 g364fb_screen_dump
, NULL
, s
);
552 memory_region_init_io(&s
->mem_ctrl
, &g364fb_ctrl_ops
, s
, "ctrl", 0x180000);
553 memory_region_init_ram_ptr(&s
->mem_vram
, "vram",
554 s
->vram_size
, s
->vram
);
555 vmstate_register_ram(&s
->mem_vram
, dev
);
556 memory_region_set_coalescing(&s
->mem_vram
);
564 static int g364fb_sysbus_init(SysBusDevice
*dev
)
566 G364State
*s
= &FROM_SYSBUS(G364SysBusState
, dev
)->g364
;
568 g364fb_init(&dev
->qdev
, s
);
569 sysbus_init_irq(dev
, &s
->irq
);
570 sysbus_init_mmio(dev
, &s
->mem_ctrl
);
571 sysbus_init_mmio(dev
, &s
->mem_vram
);
576 static void g364fb_sysbus_reset(DeviceState
*d
)
578 G364SysBusState
*s
= DO_UPCAST(G364SysBusState
, busdev
.qdev
, d
);
579 g364fb_reset(&s
->g364
);
582 static Property g364fb_sysbus_properties
[] = {
583 DEFINE_PROP_HEX32("vram_size", G364SysBusState
, g364
.vram_size
,
585 DEFINE_PROP_END_OF_LIST(),
588 static void g364fb_sysbus_class_init(ObjectClass
*klass
, void *data
)
590 DeviceClass
*dc
= DEVICE_CLASS(klass
);
591 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
593 k
->init
= g364fb_sysbus_init
;
594 dc
->desc
= "G364 framebuffer";
595 dc
->reset
= g364fb_sysbus_reset
;
596 dc
->vmsd
= &vmstate_g364fb
;
597 dc
->props
= g364fb_sysbus_properties
;
600 static const TypeInfo g364fb_sysbus_info
= {
601 .name
= "sysbus-g364",
602 .parent
= TYPE_SYS_BUS_DEVICE
,
603 .instance_size
= sizeof(G364SysBusState
),
604 .class_init
= g364fb_sysbus_class_init
,
607 static void g364fb_register_types(void)
609 type_register_static(&g364fb_sysbus_info
);
612 type_init(g364fb_register_types
)