2009-08-31 16:07:16 +02:00
|
|
|
/*
|
|
|
|
* QEMU ISA VGA Emulator.
|
|
|
|
*
|
2012-10-15 08:02:56 +02:00
|
|
|
* see docs/specs/standard-vga.txt for virtual hardware specs.
|
|
|
|
*
|
2009-08-31 16:07:16 +02: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 16:35:07 +02:00
|
|
|
|
2016-01-26 19:17:13 +01:00
|
|
|
#include "qemu/osdep.h"
|
2017-10-17 18:44:21 +02:00
|
|
|
#include "hw/isa/isa.h"
|
2013-03-18 17:36:02 +01:00
|
|
|
#include "vga_int.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/pixel_ops.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/loader.h"
|
2019-08-12 07:23:51 +02:00
|
|
|
#include "hw/qdev-properties.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2009-08-31 16:07:16 +02:00
|
|
|
|
2013-04-27 22:18:52 +02:00
|
|
|
#define TYPE_ISA_VGA "isa-vga"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ISAVGAState, ISA_VGA)
|
2013-04-27 22:18:52 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct ISAVGAState {
|
2013-04-27 22:18:52 +02:00
|
|
|
ISADevice parent_obj;
|
|
|
|
|
2011-02-13 15:01:05 +01:00
|
|
|
struct VGACommonState state;
|
2016-07-13 02:11:59 +02:00
|
|
|
PortioList portio_vga;
|
|
|
|
PortioList portio_vbe;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2011-02-13 15:01:05 +01:00
|
|
|
|
2013-04-27 22:18:52 +02:00
|
|
|
static void vga_isa_reset(DeviceState *dev)
|
2009-08-31 16:07:16 +02:00
|
|
|
{
|
2013-04-27 22:18:52 +02:00
|
|
|
ISAVGAState *d = ISA_VGA(dev);
|
2011-02-13 15:01:05 +01:00
|
|
|
VGACommonState *s = &d->state;
|
2009-08-31 16:07:16 +02:00
|
|
|
|
2011-02-13 15:01:05 +01:00
|
|
|
vga_common_reset(s);
|
|
|
|
}
|
2009-08-31 16:07:16 +02:00
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
static void vga_isa_realizefn(DeviceState *dev, Error **errp)
|
2011-02-13 15:01:05 +01:00
|
|
|
{
|
2012-11-25 02:37:14 +01:00
|
|
|
ISADevice *isadev = ISA_DEVICE(dev);
|
2013-04-27 22:18:52 +02:00
|
|
|
ISAVGAState *d = ISA_VGA(dev);
|
2011-02-13 15:01:05 +01:00
|
|
|
VGACommonState *s = &d->state;
|
2011-08-08 15:08:57 +02:00
|
|
|
MemoryRegion *vga_io_memory;
|
2011-08-16 17:27:39 +02:00
|
|
|
const MemoryRegionPortio *vga_ports, *vbe_ports;
|
2009-08-31 16:07:16 +02:00
|
|
|
|
2018-07-02 18:33:44 +02:00
|
|
|
s->global_vmstate = true;
|
|
|
|
vga_common_init(s, OBJECT(dev));
|
2012-11-25 02:37:14 +01:00
|
|
|
s->legacy_address_space = isa_address_space(isadev);
|
2013-06-07 03:21:13 +02:00
|
|
|
vga_io_memory = vga_init_io(s, OBJECT(dev), &vga_ports, &vbe_ports);
|
2016-07-13 02:11:59 +02:00
|
|
|
isa_register_portio_list(isadev, &d->portio_vga,
|
|
|
|
0x3b0, vga_ports, s, "vga");
|
2011-08-16 17:27:39 +02:00
|
|
|
if (vbe_ports) {
|
2016-07-13 02:11:59 +02:00
|
|
|
isa_register_portio_list(isadev, &d->portio_vbe,
|
|
|
|
0x1ce, vbe_ports, s, "vbe");
|
2011-08-16 17:27:39 +02:00
|
|
|
}
|
2012-11-25 02:37:14 +01:00
|
|
|
memory_region_add_subregion_overlap(isa_address_space(isadev),
|
2015-02-01 09:12:56 +01:00
|
|
|
0x000a0000,
|
2011-08-08 15:08:57 +02:00
|
|
|
vga_io_memory, 1);
|
|
|
|
memory_region_set_coalescing(vga_io_memory);
|
2020-05-12 09:00:20 +02:00
|
|
|
s->con = graphic_console_init(dev, 0, s->hw_ops, s);
|
2009-08-31 16:07:16 +02:00
|
|
|
|
2019-12-09 14:30:08 +01:00
|
|
|
memory_region_add_subregion(isa_address_space(isadev),
|
|
|
|
VBE_DISPI_LFB_PHYSICAL_ADDRESS,
|
|
|
|
&s->vram);
|
2009-10-26 12:18:26 +01:00
|
|
|
/* ROM BIOS */
|
|
|
|
rom_add_vga(VGABIOS_FILENAME);
|
2009-08-31 16:07:16 +02:00
|
|
|
}
|
2011-02-13 15:01:05 +01:00
|
|
|
|
2012-05-24 09:59:44 +02:00
|
|
|
static Property vga_isa_properties[] = {
|
|
|
|
DEFINE_PROP_UINT32("vgamem_mb", ISAVGAState, state.vram_size_mb, 8),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2013-04-27 22:18:52 +02:00
|
|
|
static void vga_isa_class_initfn(ObjectClass *klass, void *data)
|
2011-12-04 18:52:49 +01:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2013-04-27 22:18:52 +02:00
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
dc->realize = vga_isa_realizefn;
|
2013-04-27 22:18:52 +02:00
|
|
|
dc->reset = vga_isa_reset;
|
2011-12-08 04:34:16 +01:00
|
|
|
dc->vmsd = &vmstate_vga_common;
|
2020-01-10 16:30:32 +01:00
|
|
|
device_class_set_props(dc, vga_isa_properties);
|
2013-07-29 16:17:45 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories);
|
2011-12-04 18:52:49 +01:00
|
|
|
}
|
|
|
|
|
2013-04-27 22:18:52 +02:00
|
|
|
static const TypeInfo vga_isa_info = {
|
|
|
|
.name = TYPE_ISA_VGA,
|
2011-12-08 04:34:16 +01:00
|
|
|
.parent = TYPE_ISA_DEVICE,
|
|
|
|
.instance_size = sizeof(ISAVGAState),
|
2013-04-27 22:18:52 +02:00
|
|
|
.class_init = vga_isa_class_initfn,
|
2011-02-13 15:01:05 +01:00
|
|
|
};
|
|
|
|
|
2013-04-27 22:18:52 +02:00
|
|
|
static void vga_isa_register_types(void)
|
2011-02-13 15:01:05 +01:00
|
|
|
{
|
2013-04-27 22:18:52 +02:00
|
|
|
type_register_static(&vga_isa_info);
|
2011-02-13 15:01:05 +01:00
|
|
|
}
|
2012-02-09 15:20:55 +01:00
|
|
|
|
2013-04-27 22:18:52 +02:00
|
|
|
type_init(vga_isa_register_types)
|