2012-10-17 09:54:19 +02:00
|
|
|
/*
|
|
|
|
* QEMU 16550A UART emulation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2004 Fabrice Bellard
|
|
|
|
* Copyright (c) 2008 Citrix Systems, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:03 +01:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2019-08-12 07:23:57 +02:00
|
|
|
#include "sysemu/sysemu.h"
|
2020-05-15 17:04:10 +02:00
|
|
|
#include "hw/acpi/aml-build.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/char/serial.h"
|
|
|
|
#include "hw/isa/isa.h"
|
2019-08-12 07:23:51 +02:00
|
|
|
#include "hw/qdev-properties.h"
|
2019-08-12 07:23:45 +02:00
|
|
|
#include "migration/vmstate.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2012-10-17 09:54:19 +02:00
|
|
|
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ISASerialState, ISA_SERIAL)
|
2013-04-27 22:18:50 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct ISASerialState {
|
2013-04-27 22:18:50 +02:00
|
|
|
ISADevice parent_obj;
|
|
|
|
|
2012-10-17 09:54:19 +02:00
|
|
|
uint32_t index;
|
|
|
|
uint32_t iobase;
|
|
|
|
uint32_t isairq;
|
|
|
|
SerialState state;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2012-10-17 09:54:19 +02:00
|
|
|
|
2018-04-20 16:52:46 +02:00
|
|
|
static const int isa_serial_io[MAX_ISA_SERIAL_PORTS] = {
|
2012-10-17 09:54:19 +02:00
|
|
|
0x3f8, 0x2f8, 0x3e8, 0x2e8
|
|
|
|
};
|
2018-04-20 16:52:46 +02:00
|
|
|
static const int isa_serial_irq[MAX_ISA_SERIAL_PORTS] = {
|
2012-10-17 09:54:19 +02:00
|
|
|
4, 3, 4, 3
|
|
|
|
};
|
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
static void serial_isa_realizefn(DeviceState *dev, Error **errp)
|
2012-10-17 09:54:19 +02:00
|
|
|
{
|
|
|
|
static int index;
|
2012-11-25 02:37:14 +01:00
|
|
|
ISADevice *isadev = ISA_DEVICE(dev);
|
2013-04-27 22:18:50 +02:00
|
|
|
ISASerialState *isa = ISA_SERIAL(dev);
|
2012-10-17 09:54:19 +02:00
|
|
|
SerialState *s = &isa->state;
|
|
|
|
|
|
|
|
if (isa->index == -1) {
|
|
|
|
isa->index = index;
|
|
|
|
}
|
2018-04-20 16:52:46 +02:00
|
|
|
if (isa->index >= MAX_ISA_SERIAL_PORTS) {
|
2012-11-25 02:37:14 +01:00
|
|
|
error_setg(errp, "Max. supported number of ISA serial ports is %d.",
|
2018-04-20 16:52:46 +02:00
|
|
|
MAX_ISA_SERIAL_PORTS);
|
2012-11-25 02:37:14 +01:00
|
|
|
return;
|
2012-10-17 09:54:19 +02:00
|
|
|
}
|
|
|
|
if (isa->iobase == -1) {
|
|
|
|
isa->iobase = isa_serial_io[isa->index];
|
|
|
|
}
|
|
|
|
if (isa->isairq == -1) {
|
|
|
|
isa->isairq = isa_serial_irq[isa->index];
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
isa_init_irq(isadev, &s->irq, isa->isairq);
|
qdev: Convert bus-less devices to qdev_realize() with Coccinelle
All remaining conversions to qdev_realize() are for bus-less devices.
Coccinelle script:
// only correct for bus-less @dev!
@@
expression errp;
expression dev;
@@
- qdev_init_nofail(dev);
+ qdev_realize(dev, NULL, &error_fatal);
@ depends on !(file in "hw/core/qdev.c") && !(file in "hw/core/bus.c")@
expression errp;
expression dev;
symbol true;
@@
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize(DEVICE(dev), NULL, errp);
@ depends on !(file in "hw/core/qdev.c") && !(file in "hw/core/bus.c")@
expression errp;
expression dev;
symbol true;
@@
- object_property_set_bool(dev, true, "realized", errp);
+ qdev_realize(DEVICE(dev), NULL, errp);
Note that Coccinelle chokes on ARMSSE typedef vs. macro in
hw/arm/armsse.c. Worked around by temporarily renaming the macro for
the spatch run.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-57-armbru@redhat.com>
2020-06-10 07:32:45 +02:00
|
|
|
qdev_realize(DEVICE(s), NULL, errp);
|
2012-11-25 02:37:14 +01:00
|
|
|
qdev_set_legacy_instance_id(dev, isa->iobase, 3);
|
2012-10-17 09:54:19 +02:00
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->io, OBJECT(isa), &serial_io_ops, s, "serial", 8);
|
2012-11-25 02:37:14 +01:00
|
|
|
isa_register_ioport(isadev, &s->io, isa->iobase);
|
2012-10-17 09:54:19 +02:00
|
|
|
}
|
|
|
|
|
2020-05-15 17:04:10 +02:00
|
|
|
static void serial_isa_build_aml(ISADevice *isadev, Aml *scope)
|
|
|
|
{
|
|
|
|
ISASerialState *isa = ISA_SERIAL(isadev);
|
|
|
|
Aml *dev;
|
|
|
|
Aml *crs;
|
|
|
|
|
|
|
|
crs = aml_resource_template();
|
|
|
|
aml_append(crs, aml_io(AML_DECODE16, isa->iobase, isa->iobase, 0x00, 0x08));
|
|
|
|
aml_append(crs, aml_irq_no_flags(isa->isairq));
|
|
|
|
|
|
|
|
dev = aml_device("COM%d", isa->index + 1);
|
|
|
|
aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0501")));
|
|
|
|
aml_append(dev, aml_name_decl("_UID", aml_int(isa->index + 1)));
|
|
|
|
aml_append(dev, aml_name_decl("_STA", aml_int(0xf)));
|
|
|
|
aml_append(dev, aml_name_decl("_CRS", crs));
|
|
|
|
|
|
|
|
aml_append(scope, dev);
|
|
|
|
}
|
|
|
|
|
2012-10-17 09:54:19 +02:00
|
|
|
static const VMStateDescription vmstate_isa_serial = {
|
|
|
|
.name = "serial",
|
|
|
|
.version_id = 3,
|
|
|
|
.minimum_version_id = 2,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_STRUCT(state, ISASerialState, 0, vmstate_serial, SerialState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static Property serial_isa_properties[] = {
|
|
|
|
DEFINE_PROP_UINT32("index", ISASerialState, index, -1),
|
2014-02-08 11:01:53 +01:00
|
|
|
DEFINE_PROP_UINT32("iobase", ISASerialState, iobase, -1),
|
2012-10-17 09:54:19 +02:00
|
|
|
DEFINE_PROP_UINT32("irq", ISASerialState, isairq, -1),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void serial_isa_class_initfn(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2020-05-15 17:04:10 +02:00
|
|
|
ISADeviceClass *isa = ISA_DEVICE_CLASS(klass);
|
2012-11-25 02:37:14 +01:00
|
|
|
|
|
|
|
dc->realize = serial_isa_realizefn;
|
2012-10-17 09:54:19 +02:00
|
|
|
dc->vmsd = &vmstate_isa_serial;
|
2020-05-15 17:04:10 +02:00
|
|
|
isa->build_aml = serial_isa_build_aml;
|
2020-01-10 16:30:32 +01:00
|
|
|
device_class_set_props(dc, serial_isa_properties);
|
2013-07-29 16:17:45 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
|
2012-10-17 09:54:19 +02:00
|
|
|
}
|
|
|
|
|
2019-10-21 23:32:12 +02:00
|
|
|
static void serial_isa_initfn(Object *o)
|
|
|
|
{
|
|
|
|
ISASerialState *self = ISA_SERIAL(o);
|
|
|
|
|
qom: Less verbose object_initialize_child()
All users of object_initialize_child() pass the obvious child size
argument. Almost all pass &error_abort and no properties. Tiresome.
Rename object_initialize_child() to
object_initialize_child_with_props() to free the name. New
convenience wrapper object_initialize_child() automates the size
argument, and passes &error_abort and no properties.
Rename object_initialize_childv() to
object_initialize_child_with_propsv() for consistency.
Convert callers with this Coccinelle script:
@@
expression parent, propname, type;
expression child, size;
symbol error_abort;
@@
- object_initialize_child(parent, propname, OBJECT(child), size, type, &error_abort, NULL)
+ object_initialize_child(parent, propname, child, size, type, &error_abort, NULL)
@@
expression parent, propname, type;
expression child;
symbol error_abort;
@@
- object_initialize_child(parent, propname, child, sizeof(*child), type, &error_abort, NULL)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
symbol error_abort;
@@
- object_initialize_child(parent, propname, &child, sizeof(child), type, &error_abort, NULL)
+ object_initialize_child(parent, propname, &child, type)
@@
expression parent, propname, type;
expression child, size, err;
expression list props;
@@
- object_initialize_child(parent, propname, child, size, type, err, props)
+ object_initialize_child_with_props(parent, propname, child, size, type, err, props)
Note that Coccinelle chokes on ARMSSE typedef vs. macro in
hw/arm/armsse.c. Worked around by temporarily renaming the macro for
the spatch run.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
[Rebased: machine opentitan is new (commit fe0fe4735e7)]
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-37-armbru@redhat.com>
2020-06-10 07:32:25 +02:00
|
|
|
object_initialize_child(o, "serial", &self->state, TYPE_SERIAL);
|
2020-09-07 03:55:34 +02:00
|
|
|
|
|
|
|
qdev_alias_all_properties(DEVICE(&self->state), o);
|
2019-10-21 23:32:12 +02:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo serial_isa_info = {
|
2013-04-27 22:18:50 +02:00
|
|
|
.name = TYPE_ISA_SERIAL,
|
2012-10-17 09:54:19 +02:00
|
|
|
.parent = TYPE_ISA_DEVICE,
|
|
|
|
.instance_size = sizeof(ISASerialState),
|
2019-10-21 23:32:12 +02:00
|
|
|
.instance_init = serial_isa_initfn,
|
2012-10-17 09:54:19 +02:00
|
|
|
.class_init = serial_isa_class_initfn,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void serial_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&serial_isa_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(serial_register_types)
|
|
|
|
|
2016-12-07 14:20:22 +01:00
|
|
|
static void serial_isa_init(ISABus *bus, int index, Chardev *chr)
|
2012-10-17 09:54:19 +02:00
|
|
|
{
|
2013-06-07 13:49:13 +02:00
|
|
|
DeviceState *dev;
|
|
|
|
ISADevice *isadev;
|
2012-10-17 09:54:19 +02:00
|
|
|
|
isa: Convert uses of isa_create() with Coccinelle
Replace
dev = isa_create(bus, type_name);
...
qdev_init_nofail(dev);
by
dev = isa_new(type_name);
...
isa_realize_and_unref(dev, bus, &error_fatal);
Recent commit "qdev: New qdev_new(), qdev_realize(), etc." explains
why.
Coccinelle script:
@@
expression dev, bus, expr;
expression list args;
expression d;
@@
- dev = isa_create(bus, args);
+ dev = isa_new(args);
(
d = &dev->qdev;
|
d = DEVICE(dev);
)
... when != dev = expr
- qdev_init_nofail(d);
+ isa_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = isa_create(bus, args);
+ dev = isa_new(args);
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ isa_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = DEVICE(isa_create(bus, args));
+ ISADevice *isa_dev; // TODO move
+ isa_dev = isa_new(args);
+ dev = DEVICE(isa_dev);
... when != dev = expr
- qdev_init_nofail(dev);
+ isa_realize_and_unref(isa_dev, bus, &error_fatal);
Missing #include "qapi/error.h" added manually, whitespace changes
minimized manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-20-armbru@redhat.com>
2020-06-10 07:32:08 +02:00
|
|
|
isadev = isa_new(TYPE_ISA_SERIAL);
|
2013-06-07 13:49:13 +02:00
|
|
|
dev = DEVICE(isadev);
|
|
|
|
qdev_prop_set_uint32(dev, "index", index);
|
|
|
|
qdev_prop_set_chr(dev, "chardev", chr);
|
isa: Convert uses of isa_create() with Coccinelle
Replace
dev = isa_create(bus, type_name);
...
qdev_init_nofail(dev);
by
dev = isa_new(type_name);
...
isa_realize_and_unref(dev, bus, &error_fatal);
Recent commit "qdev: New qdev_new(), qdev_realize(), etc." explains
why.
Coccinelle script:
@@
expression dev, bus, expr;
expression list args;
expression d;
@@
- dev = isa_create(bus, args);
+ dev = isa_new(args);
(
d = &dev->qdev;
|
d = DEVICE(dev);
)
... when != dev = expr
- qdev_init_nofail(d);
+ isa_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = isa_create(bus, args);
+ dev = isa_new(args);
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ isa_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = DEVICE(isa_create(bus, args));
+ ISADevice *isa_dev; // TODO move
+ isa_dev = isa_new(args);
+ dev = DEVICE(isa_dev);
... when != dev = expr
- qdev_init_nofail(dev);
+ isa_realize_and_unref(isa_dev, bus, &error_fatal);
Missing #include "qapi/error.h" added manually, whitespace changes
minimized manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-20-armbru@redhat.com>
2020-06-10 07:32:08 +02:00
|
|
|
isa_realize_and_unref(isadev, bus, &error_fatal);
|
2012-10-17 09:54:19 +02:00
|
|
|
}
|
2015-02-04 18:33:05 +01:00
|
|
|
|
2016-10-22 11:52:44 +02:00
|
|
|
void serial_hds_isa_init(ISABus *bus, int from, int to)
|
2015-02-04 18:33:05 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2016-10-22 11:52:44 +02:00
|
|
|
assert(from >= 0);
|
2018-04-20 16:52:46 +02:00
|
|
|
assert(to <= MAX_ISA_SERIAL_PORTS);
|
2015-02-04 18:33:05 +01:00
|
|
|
|
2016-10-22 11:52:44 +02:00
|
|
|
for (i = from; i < to; ++i) {
|
2018-04-20 16:52:43 +02:00
|
|
|
if (serial_hd(i)) {
|
|
|
|
serial_isa_init(bus, i, serial_hd(i));
|
2015-02-04 18:33:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|