]> git.proxmox.com Git - mirror_qemu.git/blame - hw/display/ati_int.h
Merge tag 'pull-target-arm-20231106' of https://git.linaro.org/people/pmaydell/qemu...
[mirror_qemu.git] / hw / display / ati_int.h
CommitLineData
862b4a29
BZ
1/*
2 * QEMU ATI SVGA emulation
3 *
4 * Copyright (c) 2019 BALATON Zoltan
5 *
6 * This work is licensed under the GNU GPL license version 2 or later.
7 */
8
9#ifndef ATI_INT_H
10#define ATI_INT_H
11
b7105d28 12#include "qemu/timer.h"
edf5ca5d 13#include "hw/pci/pci_device.h"
c82c7336 14#include "hw/i2c/bitbang_i2c.h"
862b4a29 15#include "vga_int.h"
db1015e9 16#include "qom/object.h"
862b4a29
BZ
17
18/*#define DEBUG_ATI*/
19
20#ifdef DEBUG_ATI
21#define DPRINTF(fmt, ...) printf("%s: " fmt, __func__, ## __VA_ARGS__)
22#else
23#define DPRINTF(fmt, ...) do {} while (0)
24#endif
25
26#define PCI_VENDOR_ID_ATI 0x1002
27/* Rage128 Pro GL */
28#define PCI_DEVICE_ID_ATI_RAGE128_PF 0x5046
29/* Radeon RV100 (VE) */
30#define PCI_DEVICE_ID_ATI_RADEON_QY 0x5159
31
32#define TYPE_ATI_VGA "ati-vga"
8063396b 33OBJECT_DECLARE_SIMPLE_TYPE(ATIVGAState, ATI_VGA)
862b4a29
BZ
34
35typedef struct ATIVGARegs {
36 uint32_t mm_index;
37 uint32_t bios_scratch[8];
b7105d28
BZ
38 uint32_t gen_int_cntl;
39 uint32_t gen_int_status;
862b4a29
BZ
40 uint32_t crtc_gen_cntl;
41 uint32_t crtc_ext_cntl;
42 uint32_t dac_cntl;
c82c7336
BZ
43 uint32_t gpio_vga_ddc;
44 uint32_t gpio_dvi_ddc;
45 uint32_t gpio_monid;
8bb9a2b2 46 uint32_t config_cntl;
bf9ac62a 47 uint32_t palette[256];
862b4a29
BZ
48 uint32_t crtc_h_total_disp;
49 uint32_t crtc_h_sync_strt_wid;
50 uint32_t crtc_v_total_disp;
51 uint32_t crtc_v_sync_strt_wid;
52 uint32_t crtc_offset;
53 uint32_t crtc_offset_cntl;
54 uint32_t crtc_pitch;
55 uint32_t cur_offset;
56 uint32_t cur_hv_pos;
57 uint32_t cur_hv_offs;
58 uint32_t cur_color0;
59 uint32_t cur_color1;
60 uint32_t dst_offset;
61 uint32_t dst_pitch;
62 uint32_t dst_tile;
63 uint32_t dst_width;
64 uint32_t dst_height;
65 uint32_t src_offset;
66 uint32_t src_pitch;
67 uint32_t src_tile;
68 uint32_t src_x;
69 uint32_t src_y;
70 uint32_t dst_x;
71 uint32_t dst_y;
72 uint32_t dp_gui_master_cntl;
73 uint32_t dp_brush_bkgd_clr;
74 uint32_t dp_brush_frgd_clr;
75 uint32_t dp_src_frgd_clr;
76 uint32_t dp_src_bkgd_clr;
77 uint32_t dp_cntl;
78 uint32_t dp_datatype;
79 uint32_t dp_mix;
80 uint32_t dp_write_mask;
81 uint32_t default_offset;
82 uint32_t default_pitch;
866ad5f5 83 uint32_t default_tile;
862b4a29
BZ
84 uint32_t default_sc_bottom_right;
85} ATIVGARegs;
86
db1015e9 87struct ATIVGAState {
862b4a29
BZ
88 PCIDevice dev;
89 VGACommonState vga;
90 char *model;
91 uint16_t dev_id;
92 uint8_t mode;
08730ee0 93 uint8_t use_pixman;
862b4a29
BZ
94 bool cursor_guest_mode;
95 uint16_t cursor_size;
96 uint32_t cursor_offset;
97 QEMUCursor *cursor;
b7105d28 98 QEMUTimer vblank_timer;
41742927 99 bitbang_i2c_interface bbi2c;
862b4a29
BZ
100 MemoryRegion io;
101 MemoryRegion mm;
102 ATIVGARegs regs;
db1015e9 103};
862b4a29
BZ
104
105const char *ati_reg_name(int num);
106
107void ati_2d_blt(ATIVGAState *s);
108
109#endif /* ATI_INT_H */