2 * QEMU ATI SVGA emulation
4 * Copyright (c) 2019 BALATON Zoltan
6 * This work is licensed under the GNU GPL license version 2 or later.
11 * This is very incomplete and only enough for Linux console and some
12 * unaccelerated X output at the moment.
13 * Currently it's little more than a frame buffer with minimal functions,
14 * other more advanced features of the hardware are yet to be implemented.
15 * We only aim for Rage 128 Pro (and some RV100) and 2D only at first,
16 * No 3D at all yet (maybe after 2D works, but feel free to improve it)
19 #include "qemu/osdep.h"
22 #include "vga-access.h"
23 #include "hw/qdev-properties.h"
26 #include "qemu/module.h"
27 #include "qemu/error-report.h"
28 #include "qapi/error.h"
29 #include "ui/console.h"
30 #include "hw/display/i2c-ddc.h"
33 #define ATI_DEBUG_HW_CURSOR 0
38 } ati_model_aliases[] = {
39 { "rage128p", PCI_DEVICE_ID_ATI_RAGE128_PF },
40 { "rv100", PCI_DEVICE_ID_ATI_RADEON_QY },
43 enum { VGA_MODE, EXT_MODE };
45 static void ati_vga_switch_mode(ATIVGAState *s)
48 s->mode, !!(s->regs.crtc_gen_cntl & CRTC2_EXT_DISP_EN));
49 if (s->regs.crtc_gen_cntl & CRTC2_EXT_DISP_EN) {
50 /* Extended mode enabled */
52 if (s->regs.crtc_gen_cntl & CRTC2_EN) {
53 /* CRT controller enabled, use CRTC values */
54 /* FIXME Should these be the same as VGA CRTC regs? */
55 uint32_t offs = s->regs.crtc_offset & 0x07ffffff;
56 int stride = (s->regs.crtc_pitch & 0x7ff) * 8;
60 if (s->regs.crtc_h_total_disp == 0) {
61 s->regs.crtc_h_total_disp = ((640 / 8) - 1) << 16;
63 if (s->regs.crtc_v_total_disp == 0) {
64 s->regs.crtc_v_total_disp = (480 - 1) << 16;
66 h = ((s->regs.crtc_h_total_disp >> 16) + 1) * 8;
67 v = (s->regs.crtc_v_total_disp >> 16) + 1;
68 switch (s->regs.crtc_gen_cntl & CRTC_PIX_WIDTH_MASK) {
69 case CRTC_PIX_WIDTH_4BPP:
72 case CRTC_PIX_WIDTH_8BPP:
75 case CRTC_PIX_WIDTH_15BPP:
78 case CRTC_PIX_WIDTH_16BPP:
81 case CRTC_PIX_WIDTH_24BPP:
84 case CRTC_PIX_WIDTH_32BPP:
88 qemu_log_mask(LOG_UNIMP, "Unsupported bpp value\n");
91 DPRINTF("Switching to %dx%d %d %d @ %x\n", h, v, stride, bpp, offs);
92 vbe_ioport_write_index(&s->vga, 0, VBE_DISPI_INDEX_ENABLE);
93 vbe_ioport_write_data(&s->vga, 0, VBE_DISPI_DISABLED);
94 s->vga.big_endian_fb = (s->regs.config_cntl & APER_0_ENDIAN ||
95 s->regs.config_cntl & APER_1_ENDIAN ?
97 /* reset VBE regs then set up mode */
98 s->vga.vbe_regs[VBE_DISPI_INDEX_XRES] = h;
99 s->vga.vbe_regs[VBE_DISPI_INDEX_YRES] = v;
100 s->vga.vbe_regs[VBE_DISPI_INDEX_BPP] = bpp;
101 /* enable mode via ioport so it updates vga regs */
102 vbe_ioport_write_index(&s->vga, 0, VBE_DISPI_INDEX_ENABLE);
103 vbe_ioport_write_data(&s->vga, 0, VBE_DISPI_ENABLED |
104 VBE_DISPI_LFB_ENABLED | VBE_DISPI_NOCLEARMEM |
105 (s->regs.dac_cntl & DAC_8BIT_EN ? VBE_DISPI_8BIT_DAC : 0));
106 /* now set offset and stride after enable as that resets these */
108 int bypp = DIV_ROUND_UP(bpp, BITS_PER_BYTE);
110 vbe_ioport_write_index(&s->vga, 0, VBE_DISPI_INDEX_VIRT_WIDTH);
111 vbe_ioport_write_data(&s->vga, 0, stride);
114 DPRINTF("CRTC offset is not multiple of pitch\n");
115 vbe_ioport_write_index(&s->vga, 0,
116 VBE_DISPI_INDEX_X_OFFSET);
117 vbe_ioport_write_data(&s->vga, 0, offs % stride / bypp);
119 vbe_ioport_write_index(&s->vga, 0, VBE_DISPI_INDEX_Y_OFFSET);
120 vbe_ioport_write_data(&s->vga, 0, offs / stride);
121 DPRINTF("VBE offset (%d,%d), vbe_start_addr=%x\n",
122 s->vga.vbe_regs[VBE_DISPI_INDEX_X_OFFSET],
123 s->vga.vbe_regs[VBE_DISPI_INDEX_Y_OFFSET],
124 s->vga.vbe_start_addr);
128 /* VGA mode enabled */
130 vbe_ioport_write_index(&s->vga, 0, VBE_DISPI_INDEX_ENABLE);
131 vbe_ioport_write_data(&s->vga, 0, VBE_DISPI_DISABLED);
135 /* Used by host side hardware cursor */
136 static void ati_cursor_define(ATIVGAState *s)
142 if ((s->regs.cur_offset & BIT(31)) || s->cursor_guest_mode) {
143 return; /* Do not update cursor if locked or rendered by guest */
145 /* FIXME handle cur_hv_offs correctly */
146 srcoff = s->regs.cur_offset -
147 (s->regs.cur_hv_offs >> 16) - (s->regs.cur_hv_offs & 0xffff) * 16;
148 for (i = 0; i < 64; i++) {
149 for (j = 0; j < 8; j++, idx++) {
150 data[idx] = vga_read_byte(&s->vga, srcoff + i * 16 + j);
151 data[512 + idx] = vga_read_byte(&s->vga, srcoff + i * 16 + j + 8);
155 s->cursor = cursor_alloc(64, 64);
157 cursor_set_mono(s->cursor, s->regs.cur_color1, s->regs.cur_color0,
158 &data[512], 1, &data[0]);
159 dpy_cursor_define(s->vga.con, s->cursor);
162 /* Alternatively support guest rendered hardware cursor */
163 static void ati_cursor_invalidate(VGACommonState *vga)
165 ATIVGAState *s = container_of(vga, ATIVGAState, vga);
166 int size = (s->regs.crtc_gen_cntl & CRTC2_CUR_EN) ? 64 : 0;
168 if (s->regs.cur_offset & BIT(31)) {
169 return; /* Do not update cursor if locked */
171 if (s->cursor_size != size ||
172 vga->hw_cursor_x != s->regs.cur_hv_pos >> 16 ||
173 vga->hw_cursor_y != (s->regs.cur_hv_pos & 0xffff) ||
174 s->cursor_offset != s->regs.cur_offset - (s->regs.cur_hv_offs >> 16) -
175 (s->regs.cur_hv_offs & 0xffff) * 16) {
176 /* Remove old cursor then update and show new one if needed */
177 vga_invalidate_scanlines(vga, vga->hw_cursor_y, vga->hw_cursor_y + 63);
178 vga->hw_cursor_x = s->regs.cur_hv_pos >> 16;
179 vga->hw_cursor_y = s->regs.cur_hv_pos & 0xffff;
180 s->cursor_offset = s->regs.cur_offset - (s->regs.cur_hv_offs >> 16) -
181 (s->regs.cur_hv_offs & 0xffff) * 16;
182 s->cursor_size = size;
184 vga_invalidate_scanlines(vga,
185 vga->hw_cursor_y, vga->hw_cursor_y + 63);
190 static void ati_cursor_draw_line(VGACommonState *vga, uint8_t *d, int scr_y)
192 ATIVGAState *s = container_of(vga, ATIVGAState, vga);
194 uint32_t *dp = (uint32_t *)d;
197 if (!(s->regs.crtc_gen_cntl & CRTC2_CUR_EN) ||
198 scr_y < vga->hw_cursor_y || scr_y >= vga->hw_cursor_y + 64 ||
199 scr_y > s->regs.crtc_v_total_disp >> 16) {
202 /* FIXME handle cur_hv_offs correctly */
203 srcoff = s->cursor_offset + (scr_y - vga->hw_cursor_y) * 16;
204 dp = &dp[vga->hw_cursor_x];
205 h = ((s->regs.crtc_h_total_disp >> 16) + 1) * 8;
206 for (i = 0; i < 8; i++) {
208 uint8_t abits = vga_read_byte(vga, srcoff + i);
209 uint8_t xbits = vga_read_byte(vga, srcoff + i + 8);
210 for (j = 0; j < 8; j++, abits <<= 1, xbits <<= 1) {
211 if (abits & BIT(7)) {
212 if (xbits & BIT(7)) {
213 color = dp[i * 8 + j] ^ 0xffffffff; /* complement */
215 continue; /* transparent, no change */
218 color = (xbits & BIT(7) ? s->regs.cur_color1 :
219 s->regs.cur_color0) | 0xff000000;
221 if (vga->hw_cursor_x + i * 8 + j >= h) {
222 return; /* end of screen, don't span to next line */
224 dp[i * 8 + j] = color;
229 static uint64_t ati_i2c(bitbang_i2c_interface *i2c, uint64_t data, int base)
231 bool c = (data & BIT(base + 17) ? !!(data & BIT(base + 1)) : 1);
232 bool d = (data & BIT(base + 16) ? !!(data & BIT(base)) : 1);
234 bitbang_i2c_set(i2c, BITBANG_I2C_SCL, c);
235 d = bitbang_i2c_set(i2c, BITBANG_I2C_SDA, d);
239 data |= BIT(base + 9);
242 data |= BIT(base + 8);
247 static void ati_vga_update_irq(ATIVGAState *s)
249 pci_set_irq(&s->dev, !!(s->regs.gen_int_status & s->regs.gen_int_cntl));
252 static void ati_vga_vblank_irq(void *opaque)
254 ATIVGAState *s = opaque;
256 timer_mod(&s->vblank_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
257 NANOSECONDS_PER_SECOND / 60);
258 s->regs.gen_int_status |= CRTC_VBLANK_INT;
259 ati_vga_update_irq(s);
262 static inline uint64_t ati_reg_read_offs(uint32_t reg, int offs,
265 if (offs == 0 && size == 4) {
268 return extract32(reg, offs * BITS_PER_BYTE, size * BITS_PER_BYTE);
272 static uint64_t ati_mm_read(void *opaque, hwaddr addr, unsigned int size)
274 ATIVGAState *s = opaque;
279 val = s->regs.mm_index;
281 case MM_DATA ... MM_DATA + 3:
282 /* indexed access to regs or memory */
283 if (s->regs.mm_index & BIT(31)) {
284 uint32_t idx = s->regs.mm_index & ~BIT(31);
285 if (idx <= s->vga.vram_size - size) {
286 val = ldn_le_p(s->vga.vram_ptr + idx, size);
289 val = ati_mm_read(s, s->regs.mm_index + addr - MM_DATA, size);
292 case BIOS_0_SCRATCH ... BUS_CNTL - 1:
294 int i = (addr - BIOS_0_SCRATCH) / 4;
295 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF && i > 3) {
298 val = ati_reg_read_offs(s->regs.bios_scratch[i],
299 addr - (BIOS_0_SCRATCH + i * 4), size);
303 val = s->regs.gen_int_cntl;
306 val = s->regs.gen_int_status;
308 case CRTC_GEN_CNTL ... CRTC_GEN_CNTL + 3:
309 val = ati_reg_read_offs(s->regs.crtc_gen_cntl,
310 addr - CRTC_GEN_CNTL, size);
312 case CRTC_EXT_CNTL ... CRTC_EXT_CNTL + 3:
313 val = ati_reg_read_offs(s->regs.crtc_ext_cntl,
314 addr - CRTC_EXT_CNTL, size);
317 val = s->regs.dac_cntl;
320 val = s->regs.gpio_vga_ddc;
323 val = s->regs.gpio_dvi_ddc;
325 case GPIO_MONID ... GPIO_MONID + 3:
326 val = ati_reg_read_offs(s->regs.gpio_monid,
327 addr - GPIO_MONID, size);
330 /* FIXME unaligned access */
331 val = vga_ioport_read(&s->vga, VGA_PEL_IR) << 16;
332 val |= vga_ioport_read(&s->vga, VGA_PEL_IW) & 0xff;
335 val = vga_ioport_read(&s->vga, VGA_PEL_D);
338 val = s->regs.config_cntl;
341 val = s->vga.vram_size;
343 case CONFIG_APER_0_BASE:
344 case CONFIG_APER_1_BASE:
345 val = pci_default_read_config(&s->dev,
346 PCI_BASE_ADDRESS_0, size) & 0xfffffff0;
348 case CONFIG_APER_SIZE:
349 val = s->vga.vram_size;
351 case CONFIG_REG_1_BASE:
352 val = pci_default_read_config(&s->dev,
353 PCI_BASE_ADDRESS_2, size) & 0xfffffff0;
355 case CONFIG_REG_APER_SIZE:
356 val = memory_region_size(&s->mm);
363 val = 64; /* free CMDFIFO entries */
365 case CRTC_H_TOTAL_DISP:
366 val = s->regs.crtc_h_total_disp;
368 case CRTC_H_SYNC_STRT_WID:
369 val = s->regs.crtc_h_sync_strt_wid;
371 case CRTC_V_TOTAL_DISP:
372 val = s->regs.crtc_v_total_disp;
374 case CRTC_V_SYNC_STRT_WID:
375 val = s->regs.crtc_v_sync_strt_wid;
378 val = s->regs.crtc_offset;
380 case CRTC_OFFSET_CNTL:
381 val = s->regs.crtc_offset_cntl;
384 val = s->regs.crtc_pitch;
386 case 0xf00 ... 0xfff:
387 val = pci_default_read_config(&s->dev, addr - 0xf00, size);
390 val = s->regs.cur_offset;
392 case CUR_HORZ_VERT_POSN:
393 val = s->regs.cur_hv_pos;
394 val |= s->regs.cur_offset & BIT(31);
396 case CUR_HORZ_VERT_OFF:
397 val = s->regs.cur_hv_offs;
398 val |= s->regs.cur_offset & BIT(31);
401 val = s->regs.cur_color0;
404 val = s->regs.cur_color1;
407 val = s->regs.dst_offset;
410 val = s->regs.dst_pitch;
411 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
412 val &= s->regs.dst_tile << 16;
416 val = s->regs.dst_width;
419 val = s->regs.dst_height;
433 case DP_GUI_MASTER_CNTL:
434 val = s->regs.dp_gui_master_cntl;
437 val = s->regs.src_offset;
440 val = s->regs.src_pitch;
441 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
442 val &= s->regs.src_tile << 16;
445 case DP_BRUSH_BKGD_CLR:
446 val = s->regs.dp_brush_bkgd_clr;
448 case DP_BRUSH_FRGD_CLR:
449 val = s->regs.dp_brush_frgd_clr;
451 case DP_SRC_FRGD_CLR:
452 val = s->regs.dp_src_frgd_clr;
454 case DP_SRC_BKGD_CLR:
455 val = s->regs.dp_src_bkgd_clr;
458 val = s->regs.dp_cntl;
461 val = s->regs.dp_datatype;
464 val = s->regs.dp_mix;
467 val = s->regs.dp_write_mask;
470 val = s->regs.default_offset;
471 if (s->dev_id != PCI_DEVICE_ID_ATI_RAGE128_PF) {
473 val |= s->regs.default_pitch << 16;
474 val |= s->regs.default_tile << 30;
478 val = s->regs.default_pitch;
479 val |= s->regs.default_tile << 16;
481 case DEFAULT_SC_BOTTOM_RIGHT:
482 val = s->regs.default_sc_bottom_right;
487 if (addr < CUR_OFFSET || addr > CUR_CLR1 || ATI_DEBUG_HW_CURSOR) {
488 trace_ati_mm_read(size, addr, ati_reg_name(addr & ~3ULL), val);
493 static inline void ati_reg_write_offs(uint32_t *reg, int offs,
494 uint64_t data, unsigned int size)
496 if (offs == 0 && size == 4) {
499 *reg = deposit32(*reg, offs * BITS_PER_BYTE, size * BITS_PER_BYTE,
504 static void ati_mm_write(void *opaque, hwaddr addr,
505 uint64_t data, unsigned int size)
507 ATIVGAState *s = opaque;
509 if (addr < CUR_OFFSET || addr > CUR_CLR1 || ATI_DEBUG_HW_CURSOR) {
510 trace_ati_mm_write(size, addr, ati_reg_name(addr & ~3ULL), data);
514 s->regs.mm_index = data & ~3;
516 case MM_DATA ... MM_DATA + 3:
517 /* indexed access to regs or memory */
518 if (s->regs.mm_index & BIT(31)) {
519 uint32_t idx = s->regs.mm_index & ~BIT(31);
520 if (idx <= s->vga.vram_size - size) {
521 stn_le_p(s->vga.vram_ptr + idx, size, data);
524 ati_mm_write(s, s->regs.mm_index + addr - MM_DATA, data, size);
527 case BIOS_0_SCRATCH ... BUS_CNTL - 1:
529 int i = (addr - BIOS_0_SCRATCH) / 4;
530 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF && i > 3) {
533 ati_reg_write_offs(&s->regs.bios_scratch[i],
534 addr - (BIOS_0_SCRATCH + i * 4), data, size);
538 s->regs.gen_int_cntl = data;
539 if (data & CRTC_VBLANK_INT) {
540 ati_vga_vblank_irq(s);
542 timer_del(&s->vblank_timer);
543 ati_vga_update_irq(s);
547 data &= (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF ?
548 0x000f040fUL : 0xfc080effUL);
549 s->regs.gen_int_status &= ~data;
550 ati_vga_update_irq(s);
552 case CRTC_GEN_CNTL ... CRTC_GEN_CNTL + 3:
554 uint32_t val = s->regs.crtc_gen_cntl;
555 ati_reg_write_offs(&s->regs.crtc_gen_cntl,
556 addr - CRTC_GEN_CNTL, data, size);
557 if ((val & CRTC2_CUR_EN) != (s->regs.crtc_gen_cntl & CRTC2_CUR_EN)) {
558 if (s->cursor_guest_mode) {
559 s->vga.force_shadow = !!(s->regs.crtc_gen_cntl & CRTC2_CUR_EN);
561 if (s->regs.crtc_gen_cntl & CRTC2_CUR_EN) {
562 ati_cursor_define(s);
564 dpy_mouse_set(s->vga.con, s->regs.cur_hv_pos >> 16,
565 s->regs.cur_hv_pos & 0xffff,
566 (s->regs.crtc_gen_cntl & CRTC2_CUR_EN) != 0);
569 if ((val & (CRTC2_EXT_DISP_EN | CRTC2_EN)) !=
570 (s->regs.crtc_gen_cntl & (CRTC2_EXT_DISP_EN | CRTC2_EN))) {
571 ati_vga_switch_mode(s);
575 case CRTC_EXT_CNTL ... CRTC_EXT_CNTL + 3:
577 uint32_t val = s->regs.crtc_ext_cntl;
578 ati_reg_write_offs(&s->regs.crtc_ext_cntl,
579 addr - CRTC_EXT_CNTL, data, size);
580 if (s->regs.crtc_ext_cntl & CRT_CRTC_DISPLAY_DIS) {
581 DPRINTF("Display disabled\n");
582 s->vga.ar_index &= ~BIT(5);
584 DPRINTF("Display enabled\n");
585 s->vga.ar_index |= BIT(5);
586 ati_vga_switch_mode(s);
588 if ((val & CRT_CRTC_DISPLAY_DIS) !=
589 (s->regs.crtc_ext_cntl & CRT_CRTC_DISPLAY_DIS)) {
590 ati_vga_switch_mode(s);
595 s->regs.dac_cntl = data & 0xffffe3ff;
596 s->vga.dac_8bit = !!(data & DAC_8BIT_EN);
599 if (s->dev_id != PCI_DEVICE_ID_ATI_RAGE128_PF) {
600 /* FIXME: Maybe add a property to select VGA or DVI port? */
604 if (s->dev_id != PCI_DEVICE_ID_ATI_RAGE128_PF) {
605 s->regs.gpio_dvi_ddc = ati_i2c(&s->bbi2c, data, 0);
608 case GPIO_MONID ... GPIO_MONID + 3:
609 /* FIXME What does Radeon have here? */
610 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
611 ati_reg_write_offs(&s->regs.gpio_monid,
612 addr - GPIO_MONID, data, size);
614 * Rage128p accesses DDC used to get EDID via these bits.
615 * Because some drivers access this via multiple byte writes
616 * we have to be careful when we send bits to avoid spurious
617 * changes in bitbang_i2c state. So only do it when mask is set
618 * and either the enable bits are changed or output bits changed
621 if ((s->regs.gpio_monid & BIT(25)) &&
622 ((addr <= GPIO_MONID + 2 && addr + size > GPIO_MONID + 2) ||
623 (addr == GPIO_MONID && (s->regs.gpio_monid & 0x60000)))) {
624 s->regs.gpio_monid = ati_i2c(&s->bbi2c, s->regs.gpio_monid, 1);
628 case PALETTE_INDEX ... PALETTE_INDEX + 3:
630 vga_ioport_write(&s->vga, VGA_PEL_IR, (data >> 16) & 0xff);
631 vga_ioport_write(&s->vga, VGA_PEL_IW, data & 0xff);
633 if (addr == PALETTE_INDEX) {
634 vga_ioport_write(&s->vga, VGA_PEL_IW, data & 0xff);
636 vga_ioport_write(&s->vga, VGA_PEL_IR, data & 0xff);
640 case PALETTE_DATA ... PALETTE_DATA + 3:
641 data <<= addr - PALETTE_DATA;
642 data = bswap32(data) >> 8;
643 vga_ioport_write(&s->vga, VGA_PEL_D, data & 0xff);
645 vga_ioport_write(&s->vga, VGA_PEL_D, data & 0xff);
647 vga_ioport_write(&s->vga, VGA_PEL_D, data & 0xff);
650 s->regs.config_cntl = data;
652 case CRTC_H_TOTAL_DISP:
653 s->regs.crtc_h_total_disp = data & 0x07ff07ff;
655 case CRTC_H_SYNC_STRT_WID:
656 s->regs.crtc_h_sync_strt_wid = data & 0x17bf1fff;
658 case CRTC_V_TOTAL_DISP:
659 s->regs.crtc_v_total_disp = data & 0x0fff0fff;
661 case CRTC_V_SYNC_STRT_WID:
662 s->regs.crtc_v_sync_strt_wid = data & 0x9f0fff;
665 s->regs.crtc_offset = data & 0xc7ffffff;
667 case CRTC_OFFSET_CNTL:
668 s->regs.crtc_offset_cntl = data; /* FIXME */
671 s->regs.crtc_pitch = data & 0x07ff07ff;
673 case 0xf00 ... 0xfff:
674 /* read-only copy of PCI config space so ignore writes */
677 if (s->regs.cur_offset != (data & 0x87fffff0)) {
678 s->regs.cur_offset = data & 0x87fffff0;
679 ati_cursor_define(s);
682 case CUR_HORZ_VERT_POSN:
683 s->regs.cur_hv_pos = data & 0x3fff0fff;
684 if (data & BIT(31)) {
685 s->regs.cur_offset |= data & BIT(31);
686 } else if (s->regs.cur_offset & BIT(31)) {
687 s->regs.cur_offset &= ~BIT(31);
688 ati_cursor_define(s);
690 if (!s->cursor_guest_mode &&
691 (s->regs.crtc_gen_cntl & CRTC2_CUR_EN) && !(data & BIT(31))) {
692 dpy_mouse_set(s->vga.con, s->regs.cur_hv_pos >> 16,
693 s->regs.cur_hv_pos & 0xffff, 1);
696 case CUR_HORZ_VERT_OFF:
697 s->regs.cur_hv_offs = data & 0x3f003f;
698 if (data & BIT(31)) {
699 s->regs.cur_offset |= data & BIT(31);
700 } else if (s->regs.cur_offset & BIT(31)) {
701 s->regs.cur_offset &= ~BIT(31);
702 ati_cursor_define(s);
706 if (s->regs.cur_color0 != (data & 0xffffff)) {
707 s->regs.cur_color0 = data & 0xffffff;
708 ati_cursor_define(s);
713 * Update cursor unconditionally here because some clients set up
714 * other registers before actually writing cursor data to memory at
715 * offset so we would miss cursor change unless always updating here
717 s->regs.cur_color1 = data & 0xffffff;
718 ati_cursor_define(s);
721 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
722 s->regs.dst_offset = data & 0xfffffff0;
724 s->regs.dst_offset = data & 0xfffffc00;
728 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
729 s->regs.dst_pitch = data & 0x3fff;
730 s->regs.dst_tile = (data >> 16) & 1;
732 s->regs.dst_pitch = data & 0x3ff0;
736 if (s->dev_id == PCI_DEVICE_ID_ATI_RADEON_QY) {
737 s->regs.dst_tile = data & 3;
741 s->regs.dst_width = data & 0x3fff;
745 s->regs.dst_height = data & 0x3fff;
748 s->regs.src_x = data & 0x3fff;
751 s->regs.src_y = data & 0x3fff;
754 s->regs.dst_x = data & 0x3fff;
757 s->regs.dst_y = data & 0x3fff;
759 case SRC_PITCH_OFFSET:
760 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
761 s->regs.src_offset = (data & 0x1fffff) << 5;
762 s->regs.src_pitch = (data & 0x7fe00000) >> 21;
763 s->regs.src_tile = data >> 31;
765 s->regs.src_offset = (data & 0x3fffff) << 10;
766 s->regs.src_pitch = (data & 0x3fc00000) >> 16;
767 s->regs.src_tile = (data >> 30) & 1;
770 case DST_PITCH_OFFSET:
771 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
772 s->regs.dst_offset = (data & 0x1fffff) << 5;
773 s->regs.dst_pitch = (data & 0x7fe00000) >> 21;
774 s->regs.dst_tile = data >> 31;
776 s->regs.dst_offset = (data & 0x3fffff) << 10;
777 s->regs.dst_pitch = (data & 0x3fc00000) >> 16;
778 s->regs.dst_tile = data >> 30;
782 s->regs.src_x = data & 0x3fff;
783 s->regs.src_y = (data >> 16) & 0x3fff;
786 s->regs.dst_x = data & 0x3fff;
787 s->regs.dst_y = (data >> 16) & 0x3fff;
789 case DST_HEIGHT_WIDTH:
790 s->regs.dst_width = data & 0x3fff;
791 s->regs.dst_height = (data >> 16) & 0x3fff;
794 case DP_GUI_MASTER_CNTL:
795 s->regs.dp_gui_master_cntl = data & 0xf800000f;
796 s->regs.dp_datatype = (data & 0x0f00) >> 8 | (data & 0x30f0) << 4 |
797 (data & 0x4000) << 16;
798 s->regs.dp_mix = (data & GMC_ROP3_MASK) | (data & 0x7000000) >> 16;
801 s->regs.dst_x = data & 0x3fff;
802 s->regs.dst_width = (data >> 16) & 0x3fff;
806 s->regs.src_y = data & 0x3fff;
807 s->regs.src_x = (data >> 16) & 0x3fff;
810 s->regs.dst_y = data & 0x3fff;
811 s->regs.dst_x = (data >> 16) & 0x3fff;
813 case DST_WIDTH_HEIGHT:
814 s->regs.dst_height = data & 0x3fff;
815 s->regs.dst_width = (data >> 16) & 0x3fff;
819 s->regs.dst_y = data & 0x3fff;
820 s->regs.dst_height = (data >> 16) & 0x3fff;
823 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
824 s->regs.src_offset = data & 0xfffffff0;
826 s->regs.src_offset = data & 0xfffffc00;
830 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
831 s->regs.src_pitch = data & 0x3fff;
832 s->regs.src_tile = (data >> 16) & 1;
834 s->regs.src_pitch = data & 0x3ff0;
837 case DP_BRUSH_BKGD_CLR:
838 s->regs.dp_brush_bkgd_clr = data;
840 case DP_BRUSH_FRGD_CLR:
841 s->regs.dp_brush_frgd_clr = data;
844 s->regs.dp_cntl = data;
847 s->regs.dp_datatype = data & 0xe0070f0f;
850 s->regs.dp_mix = data & 0x00ff0700;
853 s->regs.dp_write_mask = data;
856 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
857 s->regs.default_offset = data & 0xfffffff0;
859 /* Radeon has DEFAULT_PITCH_OFFSET here like DST_PITCH_OFFSET */
860 s->regs.default_offset = (data & 0x3fffff) << 10;
861 s->regs.default_pitch = (data & 0x3fc00000) >> 16;
862 s->regs.default_tile = data >> 30;
866 if (s->dev_id == PCI_DEVICE_ID_ATI_RAGE128_PF) {
867 s->regs.default_pitch = data & 0x3fff;
868 s->regs.default_tile = (data >> 16) & 1;
871 case DEFAULT_SC_BOTTOM_RIGHT:
872 s->regs.default_sc_bottom_right = data & 0x3fff3fff;
879 static const MemoryRegionOps ati_mm_ops = {
881 .write = ati_mm_write,
882 .endianness = DEVICE_LITTLE_ENDIAN,
885 static void ati_vga_realize(PCIDevice *dev, Error **errp)
887 ATIVGAState *s = ATI_VGA(dev);
888 VGACommonState *vga = &s->vga;
892 for (i = 0; i < ARRAY_SIZE(ati_model_aliases); i++) {
893 if (!strcmp(s->model, ati_model_aliases[i].name)) {
894 s->dev_id = ati_model_aliases[i].dev_id;
898 if (i >= ARRAY_SIZE(ati_model_aliases)) {
899 warn_report("Unknown ATI VGA model name, "
900 "using default rage128p");
903 if (s->dev_id != PCI_DEVICE_ID_ATI_RAGE128_PF &&
904 s->dev_id != PCI_DEVICE_ID_ATI_RADEON_QY) {
905 error_setg(errp, "Unknown ATI VGA device id, "
906 "only 0x5046 and 0x5159 are supported");
909 pci_set_word(dev->config + PCI_DEVICE_ID, s->dev_id);
911 if (s->dev_id == PCI_DEVICE_ID_ATI_RADEON_QY &&
912 s->vga.vram_size_mb < 16) {
913 warn_report("Too small video memory for device id");
914 s->vga.vram_size_mb = 16;
918 vga_common_init(vga, OBJECT(s));
919 vga_init(vga, OBJECT(s), pci_address_space(dev),
920 pci_address_space_io(dev), true);
921 vga->con = graphic_console_init(DEVICE(s), 0, s->vga.hw_ops, &s->vga);
922 if (s->cursor_guest_mode) {
923 vga->cursor_invalidate = ati_cursor_invalidate;
924 vga->cursor_draw_line = ati_cursor_draw_line;
928 I2CBus *i2cbus = i2c_init_bus(DEVICE(s), "ati-vga.ddc");
929 bitbang_i2c_init(&s->bbi2c, i2cbus);
930 I2CSlave *i2cddc = I2C_SLAVE(qdev_create(BUS(i2cbus), TYPE_I2CDDC));
931 i2c_set_slave_address(i2cddc, 0x50);
933 /* mmio register space */
934 memory_region_init_io(&s->mm, OBJECT(s), &ati_mm_ops, s,
935 "ati.mmregs", 0x4000);
936 /* io space is alias to beginning of mmregs */
937 memory_region_init_alias(&s->io, OBJECT(s), "ati.io", &s->mm, 0, 0x100);
939 pci_register_bar(dev, 0, PCI_BASE_ADDRESS_MEM_PREFETCH, &vga->vram);
940 pci_register_bar(dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &s->io);
941 pci_register_bar(dev, 2, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->mm);
943 /* most interrupts are not yet emulated but MacOS needs at least VBlank */
944 dev->config[PCI_INTERRUPT_PIN] = 1;
945 timer_init_ns(&s->vblank_timer, QEMU_CLOCK_VIRTUAL, ati_vga_vblank_irq, s);
948 static void ati_vga_reset(DeviceState *dev)
950 ATIVGAState *s = ATI_VGA(dev);
952 timer_del(&s->vblank_timer);
953 ati_vga_update_irq(s);
956 vga_common_reset(&s->vga);
960 static void ati_vga_exit(PCIDevice *dev)
962 ATIVGAState *s = ATI_VGA(dev);
964 timer_del(&s->vblank_timer);
965 graphic_console_close(s->vga.con);
968 static Property ati_vga_properties[] = {
969 DEFINE_PROP_UINT32("vgamem_mb", ATIVGAState, vga.vram_size_mb, 16),
970 DEFINE_PROP_STRING("model", ATIVGAState, model),
971 DEFINE_PROP_UINT16("x-device-id", ATIVGAState, dev_id,
972 PCI_DEVICE_ID_ATI_RAGE128_PF),
973 DEFINE_PROP_BOOL("guest_hwcursor", ATIVGAState, cursor_guest_mode, false),
974 DEFINE_PROP_END_OF_LIST()
977 static void ati_vga_class_init(ObjectClass *klass, void *data)
979 DeviceClass *dc = DEVICE_CLASS(klass);
980 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
982 dc->reset = ati_vga_reset;
983 device_class_set_props(dc, ati_vga_properties);
984 dc->hotpluggable = false;
985 set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories);
987 k->class_id = PCI_CLASS_DISPLAY_VGA;
988 k->vendor_id = PCI_VENDOR_ID_ATI;
989 k->device_id = PCI_DEVICE_ID_ATI_RAGE128_PF;
990 k->romfile = "vgabios-ati.bin";
991 k->realize = ati_vga_realize;
992 k->exit = ati_vga_exit;
995 static const TypeInfo ati_vga_info = {
996 .name = TYPE_ATI_VGA,
997 .parent = TYPE_PCI_DEVICE,
998 .instance_size = sizeof(ATIVGAState),
999 .class_init = ati_vga_class_init,
1000 .interfaces = (InterfaceInfo[]) {
1001 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
1006 static void ati_vga_register_types(void)
1008 type_register_static(&ati_vga_info);
1011 type_init(ati_vga_register_types)