2009-08-31 18:07:16 +04:00
|
|
|
/*
|
|
|
|
* QEMU ISA VGA Emulator.
|
|
|
|
*
|
2023-09-27 18:12:02 +03:00
|
|
|
* see docs/specs/standard-vga.rst for virtual hardware specs.
|
2012-10-15 10:02:56 +04:00
|
|
|
*
|
2009-08-31 18:07:16 +04:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2019-05-23 17:35:07 +03:00
|
|
|
|
2016-01-26 21:17:13 +03:00
|
|
|
#include "qemu/osdep.h"
|
2017-10-17 19:44:21 +03:00
|
|
|
#include "hw/isa/isa.h"
|
2013-03-18 20:36:02 +04:00
|
|
|
#include "vga_int.h"
|
2012-11-28 15:06:30 +04:00
|
|
|
#include "ui/pixel_ops.h"
|
2019-05-23 17:35:07 +03:00
|
|
|
#include "qemu/module.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/timer.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/loader.h"
|
2019-08-12 08:23:51 +03:00
|
|
|
#include "hw/qdev-properties.h"
|
2022-11-10 01:21:23 +03:00
|
|
|
#include "ui/console.h"
|
2020-09-03 23:43:22 +03:00
|
|
|
#include "qom/object.h"
|
2009-08-31 18:07:16 +04:00
|
|
|
|
2013-04-28 00:18:52 +04:00
|
|
|
#define TYPE_ISA_VGA "isa-vga"
|
2020-09-16 21:25:19 +03:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ISAVGAState, ISA_VGA)
|
2013-04-28 00:18:52 +04:00
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct ISAVGAState {
|
2013-04-28 00:18:52 +04:00
|
|
|
ISADevice parent_obj;
|
|
|
|
|
2011-02-13 17:01:05 +03:00
|
|
|
struct VGACommonState state;
|
2016-07-13 03:11:59 +03:00
|
|
|
PortioList portio_vga;
|
|
|
|
PortioList portio_vbe;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2011-02-13 17:01:05 +03:00
|
|
|
|
2013-04-28 00:18:52 +04:00
|
|
|
static void vga_isa_reset(DeviceState *dev)
|
2009-08-31 18:07:16 +04:00
|
|
|
{
|
2013-04-28 00:18:52 +04:00
|
|
|
ISAVGAState *d = ISA_VGA(dev);
|
2011-02-13 17:01:05 +03:00
|
|
|
VGACommonState *s = &d->state;
|
2009-08-31 18:07:16 +04:00
|
|
|
|
2011-02-13 17:01:05 +03:00
|
|
|
vga_common_reset(s);
|
|
|
|
}
|
2009-08-31 18:07:16 +04:00
|
|
|
|
2012-11-25 05:37:14 +04:00
|
|
|
static void vga_isa_realizefn(DeviceState *dev, Error **errp)
|
2011-02-13 17:01:05 +03:00
|
|
|
{
|
2012-11-25 05:37:14 +04:00
|
|
|
ISADevice *isadev = ISA_DEVICE(dev);
|
2013-04-28 00:18:52 +04:00
|
|
|
ISAVGAState *d = ISA_VGA(dev);
|
2011-02-13 17:01:05 +03:00
|
|
|
VGACommonState *s = &d->state;
|
2011-08-08 17:08:57 +04:00
|
|
|
MemoryRegion *vga_io_memory;
|
2011-08-16 19:27:39 +04:00
|
|
|
const MemoryRegionPortio *vga_ports, *vbe_ports;
|
2009-08-31 18:07:16 +04:00
|
|
|
|
2018-07-02 19:33:44 +03:00
|
|
|
s->global_vmstate = true;
|
2022-03-17 11:30:25 +03:00
|
|
|
if (!vga_common_init(s, OBJECT(dev), errp)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-25 05:37:14 +04:00
|
|
|
s->legacy_address_space = isa_address_space(isadev);
|
2013-06-07 05:21:13 +04:00
|
|
|
vga_io_memory = vga_init_io(s, OBJECT(dev), &vga_ports, &vbe_ports);
|
2016-07-13 03:11:59 +03:00
|
|
|
isa_register_portio_list(isadev, &d->portio_vga,
|
|
|
|
0x3b0, vga_ports, s, "vga");
|
2011-08-16 19:27:39 +04:00
|
|
|
if (vbe_ports) {
|
2016-07-13 03:11:59 +03:00
|
|
|
isa_register_portio_list(isadev, &d->portio_vbe,
|
|
|
|
0x1ce, vbe_ports, s, "vbe");
|
2011-08-16 19:27:39 +04:00
|
|
|
}
|
2012-11-25 05:37:14 +04:00
|
|
|
memory_region_add_subregion_overlap(isa_address_space(isadev),
|
2015-02-01 11:12:56 +03:00
|
|
|
0x000a0000,
|
2011-08-08 17:08:57 +04:00
|
|
|
vga_io_memory, 1);
|
|
|
|
memory_region_set_coalescing(vga_io_memory);
|
2020-05-12 10:00:20 +03:00
|
|
|
s->con = graphic_console_init(dev, 0, s->hw_ops, s);
|
2009-08-31 18:07:16 +04:00
|
|
|
|
2019-12-09 16:30:08 +03:00
|
|
|
memory_region_add_subregion(isa_address_space(isadev),
|
|
|
|
VBE_DISPI_LFB_PHYSICAL_ADDRESS,
|
|
|
|
&s->vram);
|
2009-10-26 14:18:26 +03:00
|
|
|
/* ROM BIOS */
|
|
|
|
rom_add_vga(VGABIOS_FILENAME);
|
2009-08-31 18:07:16 +04:00
|
|
|
}
|
2011-02-13 17:01:05 +03:00
|
|
|
|
2012-05-24 11:59:44 +04:00
|
|
|
static Property vga_isa_properties[] = {
|
|
|
|
DEFINE_PROP_UINT32("vgamem_mb", ISAVGAState, state.vram_size_mb, 8),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2013-04-28 00:18:52 +04:00
|
|
|
static void vga_isa_class_initfn(ObjectClass *klass, void *data)
|
2011-12-04 21:52:49 +04:00
|
|
|
{
|
2011-12-08 07:34:16 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2013-04-28 00:18:52 +04:00
|
|
|
|
2012-11-25 05:37:14 +04:00
|
|
|
dc->realize = vga_isa_realizefn;
|
2024-09-13 17:31:44 +03:00
|
|
|
device_class_set_legacy_reset(dc, vga_isa_reset);
|
2011-12-08 07:34:16 +04:00
|
|
|
dc->vmsd = &vmstate_vga_common;
|
2020-01-10 18:30:32 +03:00
|
|
|
device_class_set_props(dc, vga_isa_properties);
|
2013-07-29 18:17:45 +04:00
|
|
|
set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories);
|
2011-12-04 21:52:49 +04:00
|
|
|
}
|
|
|
|
|
2013-04-28 00:18:52 +04:00
|
|
|
static const TypeInfo vga_isa_info = {
|
|
|
|
.name = TYPE_ISA_VGA,
|
2011-12-08 07:34:16 +04:00
|
|
|
.parent = TYPE_ISA_DEVICE,
|
|
|
|
.instance_size = sizeof(ISAVGAState),
|
2013-04-28 00:18:52 +04:00
|
|
|
.class_init = vga_isa_class_initfn,
|
2011-02-13 17:01:05 +03:00
|
|
|
};
|
|
|
|
|
2013-04-28 00:18:52 +04:00
|
|
|
static void vga_isa_register_types(void)
|
2011-02-13 17:01:05 +03:00
|
|
|
{
|
2013-04-28 00:18:52 +04:00
|
|
|
type_register_static(&vga_isa_info);
|
2011-02-13 17:01:05 +03:00
|
|
|
}
|
2012-02-09 18:20:55 +04:00
|
|
|
|
2013-04-28 00:18:52 +04:00
|
|
|
type_init(vga_isa_register_types)
|