2 * QEMU ISA 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
27 #include "ui/console.h"
28 #include "hw/i386/pc.h"
30 #include "ui/pixel_ops.h"
31 #include "qemu/timer.h"
32 #include "hw/loader.h"
34 #define TYPE_ISA_VGA "isa-vga"
35 #define ISA_VGA(obj) OBJECT_CHECK(ISAVGAState, (obj), TYPE_ISA_VGA)
37 typedef struct ISAVGAState
{
40 struct VGACommonState state
;
43 static void vga_isa_reset(DeviceState
*dev
)
45 ISAVGAState
*d
= ISA_VGA(dev
);
46 VGACommonState
*s
= &d
->state
;
51 static void vga_isa_realizefn(DeviceState
*dev
, Error
**errp
)
53 ISADevice
*isadev
= ISA_DEVICE(dev
);
54 ISAVGAState
*d
= ISA_VGA(dev
);
55 VGACommonState
*s
= &d
->state
;
56 MemoryRegion
*vga_io_memory
;
57 const MemoryRegionPortio
*vga_ports
, *vbe_ports
;
59 vga_common_init(s
, OBJECT(dev
), true);
60 s
->legacy_address_space
= isa_address_space(isadev
);
61 vga_io_memory
= vga_init_io(s
, OBJECT(dev
), &vga_ports
, &vbe_ports
);
62 isa_register_portio_list(isadev
, 0x3b0, vga_ports
, s
, "vga");
64 isa_register_portio_list(isadev
, 0x1ce, vbe_ports
, s
, "vbe");
66 memory_region_add_subregion_overlap(isa_address_space(isadev
),
67 isa_mem_base
+ 0x000a0000,
69 memory_region_set_coalescing(vga_io_memory
);
70 s
->con
= graphic_console_init(DEVICE(dev
), 0, s
->hw_ops
, s
);
72 vga_init_vbe(s
, OBJECT(dev
), isa_address_space(isadev
));
74 rom_add_vga(VGABIOS_FILENAME
);
77 static Property vga_isa_properties
[] = {
78 DEFINE_PROP_UINT32("vgamem_mb", ISAVGAState
, state
.vram_size_mb
, 8),
79 DEFINE_PROP_END_OF_LIST(),
82 static void vga_isa_class_initfn(ObjectClass
*klass
, void *data
)
84 DeviceClass
*dc
= DEVICE_CLASS(klass
);
86 dc
->realize
= vga_isa_realizefn
;
87 dc
->reset
= vga_isa_reset
;
88 dc
->vmsd
= &vmstate_vga_common
;
89 dc
->props
= vga_isa_properties
;
90 set_bit(DEVICE_CATEGORY_DISPLAY
, dc
->categories
);
93 static const TypeInfo vga_isa_info
= {
95 .parent
= TYPE_ISA_DEVICE
,
96 .instance_size
= sizeof(ISAVGAState
),
97 .class_init
= vga_isa_class_initfn
,
100 static void vga_isa_register_types(void)
102 type_register_static(&vga_isa_info
);
105 type_init(vga_isa_register_types
)