2 * QEMU PCI VGA Emulator.
4 * see docs/specs/standard-vga.txt for virtual hardware specs.
6 * Copyright (c) 2003 Fabrice Bellard
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include "pixel_ops.h"
31 #include "qemu-timer.h"
34 #define PCI_VGA_IOPORT_OFFSET 0x400
35 #define PCI_VGA_IOPORT_SIZE (0x3e0 - 0x3c0)
36 #define PCI_VGA_BOCHS_OFFSET 0x500
37 #define PCI_VGA_BOCHS_SIZE (0x0b * 2)
38 #define PCI_VGA_MMIO_SIZE 0x1000
41 PCI_VGA_FLAG_ENABLE_MMIO
= 1,
44 typedef struct PCIVGAState
{
53 static const VMStateDescription vmstate_vga_pci
= {
56 .minimum_version_id
= 2,
57 .minimum_version_id_old
= 2,
58 .fields
= (VMStateField
[]) {
59 VMSTATE_PCI_DEVICE(dev
, PCIVGAState
),
60 VMSTATE_STRUCT(vga
, PCIVGAState
, 0, vmstate_vga_common
, VGACommonState
),
65 static uint64_t pci_vga_ioport_read(void *ptr
, hwaddr addr
,
73 ret
= vga_ioport_read(&d
->vga
, addr
);
76 ret
= vga_ioport_read(&d
->vga
, addr
);
77 ret
|= vga_ioport_read(&d
->vga
, addr
+1) << 8;
83 static void pci_vga_ioport_write(void *ptr
, hwaddr addr
,
84 uint64_t val
, unsigned size
)
89 vga_ioport_write(&d
->vga
, addr
, val
);
93 * Update bytes in little endian order. Allows to update
94 * indexed registers with a single word write because the
95 * index byte is updated first.
97 vga_ioport_write(&d
->vga
, addr
, val
& 0xff);
98 vga_ioport_write(&d
->vga
, addr
+1, (val
>> 8) & 0xff);
103 static const MemoryRegionOps pci_vga_ioport_ops
= {
104 .read
= pci_vga_ioport_read
,
105 .write
= pci_vga_ioport_write
,
106 .valid
.min_access_size
= 1,
107 .valid
.max_access_size
= 4,
108 .impl
.min_access_size
= 1,
109 .impl
.max_access_size
= 2,
110 .endianness
= DEVICE_LITTLE_ENDIAN
,
113 static uint64_t pci_vga_bochs_read(void *ptr
, hwaddr addr
,
116 PCIVGAState
*d
= ptr
;
117 int index
= addr
>> 1;
119 vbe_ioport_write_index(&d
->vga
, 0, index
);
120 return vbe_ioport_read_data(&d
->vga
, 0);
123 static void pci_vga_bochs_write(void *ptr
, hwaddr addr
,
124 uint64_t val
, unsigned size
)
126 PCIVGAState
*d
= ptr
;
127 int index
= addr
>> 1;
129 vbe_ioport_write_index(&d
->vga
, 0, index
);
130 vbe_ioport_write_data(&d
->vga
, 0, val
);
133 static const MemoryRegionOps pci_vga_bochs_ops
= {
134 .read
= pci_vga_bochs_read
,
135 .write
= pci_vga_bochs_write
,
136 .valid
.min_access_size
= 1,
137 .valid
.max_access_size
= 4,
138 .impl
.min_access_size
= 2,
139 .impl
.max_access_size
= 2,
140 .endianness
= DEVICE_LITTLE_ENDIAN
,
143 static int pci_std_vga_initfn(PCIDevice
*dev
)
145 PCIVGAState
*d
= DO_UPCAST(PCIVGAState
, dev
, dev
);
146 VGACommonState
*s
= &d
->vga
;
148 /* vga + console init */
150 vga_init(s
, pci_address_space(dev
), pci_address_space_io(dev
), true);
152 s
->ds
= graphic_console_init(s
->update
, s
->invalidate
,
153 s
->screen_dump
, s
->text_update
, s
);
155 /* XXX: VGA_RAM_SIZE must be a power of two */
156 pci_register_bar(&d
->dev
, 0, PCI_BASE_ADDRESS_MEM_PREFETCH
, &s
->vram
);
158 /* mmio bar for vga register access */
159 if (d
->flags
& (1 << PCI_VGA_FLAG_ENABLE_MMIO
)) {
160 memory_region_init(&d
->mmio
, "vga.mmio", 4096);
161 memory_region_init_io(&d
->ioport
, &pci_vga_ioport_ops
, d
,
162 "vga ioports remapped", PCI_VGA_IOPORT_SIZE
);
163 memory_region_init_io(&d
->bochs
, &pci_vga_bochs_ops
, d
,
164 "bochs dispi interface", PCI_VGA_BOCHS_SIZE
);
166 memory_region_add_subregion(&d
->mmio
, PCI_VGA_IOPORT_OFFSET
,
168 memory_region_add_subregion(&d
->mmio
, PCI_VGA_BOCHS_OFFSET
,
170 pci_register_bar(&d
->dev
, 2, PCI_BASE_ADDRESS_SPACE_MEMORY
, &d
->mmio
);
174 /* compatibility with pc-0.13 and older */
175 vga_init_vbe(s
, pci_address_space(dev
));
181 static Property vga_pci_properties
[] = {
182 DEFINE_PROP_UINT32("vgamem_mb", PCIVGAState
, vga
.vram_size_mb
, 16),
183 DEFINE_PROP_BIT("mmio", PCIVGAState
, flags
, PCI_VGA_FLAG_ENABLE_MMIO
, true),
184 DEFINE_PROP_END_OF_LIST(),
187 static void vga_class_init(ObjectClass
*klass
, void *data
)
189 DeviceClass
*dc
= DEVICE_CLASS(klass
);
190 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
193 k
->init
= pci_std_vga_initfn
;
194 k
->romfile
= "vgabios-stdvga.bin";
195 k
->vendor_id
= PCI_VENDOR_ID_QEMU
;
196 k
->device_id
= PCI_DEVICE_ID_QEMU_VGA
;
197 k
->class_id
= PCI_CLASS_DISPLAY_VGA
;
198 dc
->vmsd
= &vmstate_vga_pci
;
199 dc
->props
= vga_pci_properties
;
202 static TypeInfo vga_info
= {
204 .parent
= TYPE_PCI_DEVICE
,
205 .instance_size
= sizeof(PCIVGAState
),
206 .class_init
= vga_class_init
,
209 static void vga_register_types(void)
211 type_register_static(&vga_info
);
214 type_init(vga_register_types
)