]> git.ipfire.org Git - thirdparty/qemu.git/blame - hw/display/vga-isa.c
Include hw/hw.h exactly where needed
[thirdparty/qemu.git] / hw / display / vga-isa.c
CommitLineData
76323919
JQ
1/*
2 * QEMU ISA VGA Emulator.
3 *
cc228248
GH
4 * see docs/specs/standard-vga.txt for virtual hardware specs.
5 *
76323919
JQ
6 * Copyright (c) 2003 Fabrice Bellard
7 *
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:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
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
24 * THE SOFTWARE.
25 */
0b8fa32f 26
47df5154 27#include "qemu/osdep.h"
866e2b37 28#include "hw/isa/isa.h"
47b43a1f 29#include "vga_int.h"
28ecbaee 30#include "ui/pixel_ops.h"
0b8fa32f 31#include "qemu/module.h"
1de7afc9 32#include "qemu/timer.h"
83c9f4ca 33#include "hw/loader.h"
76323919 34
a72dc5fc
AF
35#define TYPE_ISA_VGA "isa-vga"
36#define ISA_VGA(obj) OBJECT_CHECK(ISAVGAState, (obj), TYPE_ISA_VGA)
37
7435b791 38typedef struct ISAVGAState {
a72dc5fc
AF
39 ISADevice parent_obj;
40
7435b791 41 struct VGACommonState state;
e305a165
MAL
42 PortioList portio_vga;
43 PortioList portio_vbe;
7435b791
BS
44} ISAVGAState;
45
a72dc5fc 46static void vga_isa_reset(DeviceState *dev)
76323919 47{
a72dc5fc 48 ISAVGAState *d = ISA_VGA(dev);
7435b791 49 VGACommonState *s = &d->state;
76323919 50
7435b791
BS
51 vga_common_reset(s);
52}
76323919 53
db895a1e 54static void vga_isa_realizefn(DeviceState *dev, Error **errp)
7435b791 55{
db895a1e 56 ISADevice *isadev = ISA_DEVICE(dev);
a72dc5fc 57 ISAVGAState *d = ISA_VGA(dev);
7435b791 58 VGACommonState *s = &d->state;
b1950430 59 MemoryRegion *vga_io_memory;
0a039dc7 60 const MemoryRegionPortio *vga_ports, *vbe_ports;
76323919 61
1fcfdc43
GH
62 s->global_vmstate = true;
63 vga_common_init(s, OBJECT(dev));
db895a1e 64 s->legacy_address_space = isa_address_space(isadev);
c84b28ee 65 vga_io_memory = vga_init_io(s, OBJECT(dev), &vga_ports, &vbe_ports);
e305a165
MAL
66 isa_register_portio_list(isadev, &d->portio_vga,
67 0x3b0, vga_ports, s, "vga");
0a039dc7 68 if (vbe_ports) {
e305a165
MAL
69 isa_register_portio_list(isadev, &d->portio_vbe,
70 0x1ce, vbe_ports, s, "vbe");
0a039dc7 71 }
db895a1e 72 memory_region_add_subregion_overlap(isa_address_space(isadev),
b19c1c08 73 0x000a0000,
b1950430
AK
74 vga_io_memory, 1);
75 memory_region_set_coalescing(vga_io_memory);
5643706a 76 s->con = graphic_console_init(DEVICE(dev), 0, s->hw_ops, s);
76323919 77
83118327 78 vga_init_vbe(s, OBJECT(dev), isa_address_space(isadev));
5245d57a
GH
79 /* ROM BIOS */
80 rom_add_vga(VGABIOS_FILENAME);
76323919 81}
7435b791 82
4a1e244e
GH
83static Property vga_isa_properties[] = {
84 DEFINE_PROP_UINT32("vgamem_mb", ISAVGAState, state.vram_size_mb, 8),
85 DEFINE_PROP_END_OF_LIST(),
86};
87
a72dc5fc 88static void vga_isa_class_initfn(ObjectClass *klass, void *data)
8f04ee08 89{
39bffca2 90 DeviceClass *dc = DEVICE_CLASS(klass);
a72dc5fc 91
db895a1e 92 dc->realize = vga_isa_realizefn;
a72dc5fc 93 dc->reset = vga_isa_reset;
39bffca2 94 dc->vmsd = &vmstate_vga_common;
4a1e244e 95 dc->props = vga_isa_properties;
125ee0ed 96 set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories);
8f04ee08
AL
97}
98
a72dc5fc
AF
99static const TypeInfo vga_isa_info = {
100 .name = TYPE_ISA_VGA,
39bffca2
AL
101 .parent = TYPE_ISA_DEVICE,
102 .instance_size = sizeof(ISAVGAState),
a72dc5fc 103 .class_init = vga_isa_class_initfn,
7435b791
BS
104};
105
a72dc5fc 106static void vga_isa_register_types(void)
7435b791 107{
a72dc5fc 108 type_register_static(&vga_isa_info);
7435b791 109}
83f7d43a 110
a72dc5fc 111type_init(vga_isa_register_types)