2 * QEMU CG3 Frame buffer
4 * Copyright (c) 2012 Bob Breuer
5 * Copyright (c) 2013 Mark Cave-Ayland
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "qemu-common.h"
28 #include "qapi/error.h"
29 #include "qemu/error-report.h"
30 #include "ui/console.h"
31 #include "hw/sysbus.h"
32 #include "migration/vmstate.h"
34 #include "hw/loader.h"
35 #include "hw/qdev-properties.h"
37 #include "qemu/module.h"
39 /* Change to 1 to enable debugging */
42 #define CG3_ROM_FILE "QEMU,cgthree.bin"
43 #define FCODE_MAX_ROM_SIZE 0x10000
45 #define CG3_REG_SIZE 0x20
47 #define CG3_REG_BT458_ADDR 0x0
48 #define CG3_REG_BT458_COLMAP 0x4
49 #define CG3_REG_FBC_CTRL 0x10
50 #define CG3_REG_FBC_STATUS 0x11
51 #define CG3_REG_FBC_CURSTART 0x12
52 #define CG3_REG_FBC_CUREND 0x13
53 #define CG3_REG_FBC_VCTRL 0x14
55 /* Control register flags */
56 #define CG3_CR_ENABLE_INTS 0x80
58 /* Status register flags */
59 #define CG3_SR_PENDING_INT 0x80
60 #define CG3_SR_1152_900_76_B 0x60
61 #define CG3_SR_ID_COLOR 0x01
63 #define CG3_VRAM_SIZE 0x100000
64 #define CG3_VRAM_OFFSET 0x800000
66 #define DPRINTF(fmt, ...) do { \
68 printf("CG3: " fmt , ## __VA_ARGS__); \
72 #define TYPE_CG3 "cgthree"
73 #define CG3(obj) OBJECT_CHECK(CG3State, (obj), TYPE_CG3)
75 typedef struct CG3State {
76 SysBusDevice parent_obj;
81 MemoryRegion vram_mem;
87 uint8_t r[256], g[256], b[256];
88 uint16_t width, height, depth;
89 uint8_t dac_index, dac_state;
92 static void cg3_update_display(void *opaque)
95 DisplaySurface *surface = qemu_console_surface(s->con);
100 unsigned int width, height;
102 DirtyBitmapSnapshot *snap = NULL;
104 if (surface_bits_per_pixel(surface) != 32) {
111 pix = memory_region_get_ram_ptr(&s->vram_mem);
112 data = (uint32_t *)surface_data(surface);
114 if (!s->full_update) {
115 snap = memory_region_snapshot_and_clear_dirty(&s->vram_mem, 0x0,
116 memory_region_size(&s->vram_mem),
120 for (y = 0; y < height; y++) {
123 page = (ram_addr_t)y * width;
125 if (s->full_update) {
128 update = memory_region_snapshot_get_dirty(&s->vram_mem, snap, page,
137 for (x = 0; x < width; x++) {
139 dval = (s->r[dval] << 16) | (s->g[dval] << 8) | s->b[dval];
144 dpy_gfx_update(s->con, 0, y_start, width, y - y_start);
153 dpy_gfx_update(s->con, 0, y_start, width, y - y_start);
155 /* vsync interrupt? */
156 if (s->regs[0] & CG3_CR_ENABLE_INTS) {
157 s->regs[1] |= CG3_SR_PENDING_INT;
158 qemu_irq_raise(s->irq);
163 static void cg3_invalidate_display(void *opaque)
165 CG3State *s = opaque;
167 memory_region_set_dirty(&s->vram_mem, 0, CG3_VRAM_SIZE);
170 static uint64_t cg3_reg_read(void *opaque, hwaddr addr, unsigned size)
172 CG3State *s = opaque;
176 case CG3_REG_BT458_ADDR:
177 case CG3_REG_BT458_COLMAP:
180 case CG3_REG_FBC_CTRL:
183 case CG3_REG_FBC_STATUS:
184 /* monitor ID 6, board type = 1 (color) */
185 val = s->regs[1] | CG3_SR_1152_900_76_B | CG3_SR_ID_COLOR;
187 case CG3_REG_FBC_CURSTART ... CG3_REG_SIZE - 1:
188 val = s->regs[addr - 0x10];
191 qemu_log_mask(LOG_UNIMP,
192 "cg3: Unimplemented register read "
193 "reg 0x%" HWADDR_PRIx " size 0x%x\n",
198 DPRINTF("read %02x from reg %" HWADDR_PRIx "\n", val, addr);
202 static void cg3_reg_write(void *opaque, hwaddr addr, uint64_t val,
205 CG3State *s = opaque;
209 DPRINTF("write %" PRIx64 " to reg %" HWADDR_PRIx " size %d\n",
213 case CG3_REG_BT458_ADDR:
217 case CG3_REG_BT458_COLMAP:
218 /* This register can be written to as either a long word or a byte */
223 for (i = 0; i < size; i++) {
226 switch (s->dac_state) {
228 s->r[s->dac_index] = regval;
232 s->g[s->dac_index] = regval;
236 s->b[s->dac_index] = regval;
237 /* Index autoincrement */
238 s->dac_index = (s->dac_index + 1) & 0xff;
248 case CG3_REG_FBC_CTRL:
251 case CG3_REG_FBC_STATUS:
252 if (s->regs[1] & CG3_SR_PENDING_INT) {
253 /* clear interrupt */
254 s->regs[1] &= ~CG3_SR_PENDING_INT;
255 qemu_irq_lower(s->irq);
258 case CG3_REG_FBC_CURSTART ... CG3_REG_SIZE - 1:
259 s->regs[addr - 0x10] = val;
262 qemu_log_mask(LOG_UNIMP,
263 "cg3: Unimplemented register write "
264 "reg 0x%" HWADDR_PRIx " size 0x%x value 0x%" PRIx64 "\n",
270 static const MemoryRegionOps cg3_reg_ops = {
271 .read = cg3_reg_read,
272 .write = cg3_reg_write,
273 .endianness = DEVICE_NATIVE_ENDIAN,
275 .min_access_size = 1,
276 .max_access_size = 4,
280 static const GraphicHwOps cg3_ops = {
281 .invalidate = cg3_invalidate_display,
282 .gfx_update = cg3_update_display,
285 static void cg3_initfn(Object *obj)
287 SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
288 CG3State *s = CG3(obj);
290 memory_region_init_ram_nomigrate(&s->rom, obj, "cg3.prom", FCODE_MAX_ROM_SIZE,
292 memory_region_set_readonly(&s->rom, true);
293 sysbus_init_mmio(sbd, &s->rom);
295 memory_region_init_io(&s->reg, obj, &cg3_reg_ops, s, "cg3.reg",
297 sysbus_init_mmio(sbd, &s->reg);
300 static void cg3_realizefn(DeviceState *dev, Error **errp)
302 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
303 CG3State *s = CG3(dev);
305 char *fcode_filename;
308 vmstate_register_ram_global(&s->rom);
309 fcode_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, CG3_ROM_FILE);
310 if (fcode_filename) {
311 ret = load_image_mr(fcode_filename, &s->rom);
312 g_free(fcode_filename);
313 if (ret < 0 || ret > FCODE_MAX_ROM_SIZE) {
314 warn_report("cg3: could not load prom '%s'", CG3_ROM_FILE);
318 memory_region_init_ram(&s->vram_mem, NULL, "cg3.vram", s->vram_size,
320 memory_region_set_log(&s->vram_mem, true, DIRTY_MEMORY_VGA);
321 sysbus_init_mmio(sbd, &s->vram_mem);
323 sysbus_init_irq(sbd, &s->irq);
325 s->con = graphic_console_init(DEVICE(dev), 0, &cg3_ops, s);
326 qemu_console_resize(s->con, s->width, s->height);
329 static int vmstate_cg3_post_load(void *opaque, int version_id)
331 CG3State *s = opaque;
333 cg3_invalidate_display(s);
338 static const VMStateDescription vmstate_cg3 = {
341 .minimum_version_id = 1,
342 .post_load = vmstate_cg3_post_load,
343 .fields = (VMStateField[]) {
344 VMSTATE_UINT16(height, CG3State),
345 VMSTATE_UINT16(width, CG3State),
346 VMSTATE_UINT16(depth, CG3State),
347 VMSTATE_BUFFER(r, CG3State),
348 VMSTATE_BUFFER(g, CG3State),
349 VMSTATE_BUFFER(b, CG3State),
350 VMSTATE_UINT8(dac_index, CG3State),
351 VMSTATE_UINT8(dac_state, CG3State),
352 VMSTATE_END_OF_LIST()
356 static void cg3_reset(DeviceState *d)
358 CG3State *s = CG3(d);
360 /* Initialize palette */
361 memset(s->r, 0, 256);
362 memset(s->g, 0, 256);
363 memset(s->b, 0, 256);
367 qemu_irq_lower(s->irq);
370 static Property cg3_properties[] = {
371 DEFINE_PROP_UINT32("vram-size", CG3State, vram_size, -1),
372 DEFINE_PROP_UINT16("width", CG3State, width, -1),
373 DEFINE_PROP_UINT16("height", CG3State, height, -1),
374 DEFINE_PROP_UINT16("depth", CG3State, depth, -1),
375 DEFINE_PROP_END_OF_LIST(),
378 static void cg3_class_init(ObjectClass *klass, void *data)
380 DeviceClass *dc = DEVICE_CLASS(klass);
382 dc->realize = cg3_realizefn;
383 dc->reset = cg3_reset;
384 dc->vmsd = &vmstate_cg3;
385 dc->props = cg3_properties;
388 static const TypeInfo cg3_info = {
390 .parent = TYPE_SYS_BUS_DEVICE,
391 .instance_size = sizeof(CG3State),
392 .instance_init = cg3_initfn,
393 .class_init = cg3_class_init,
396 static void cg3_register_types(void)
398 type_register_static(&cg3_info);
401 type_init(cg3_register_types)