2012-10-17 09:54:20 +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.
|
|
|
|
*/
|
|
|
|
|
2012-10-17 09:54:23 +02:00
|
|
|
/* see docs/specs/pci-serial.txt */
|
|
|
|
|
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"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/char/serial.h"
|
2019-08-12 07:23:42 +02:00
|
|
|
#include "hw/irq.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/pci/pci.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:20 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct PCISerialState {
|
2012-10-17 09:54:20 +02:00
|
|
|
PCIDevice dev;
|
|
|
|
SerialState state;
|
2014-02-27 02:05:05 +01:00
|
|
|
uint8_t prog_if;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2012-10-17 09:54:20 +02:00
|
|
|
|
2019-10-21 23:32:12 +02:00
|
|
|
#define TYPE_PCI_SERIAL "pci-serial"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(PCISerialState, PCI_SERIAL)
|
2015-05-06 12:58:19 +02:00
|
|
|
|
2015-01-19 15:52:33 +01:00
|
|
|
static void serial_pci_realize(PCIDevice *dev, Error **errp)
|
2012-10-17 09:54:20 +02:00
|
|
|
{
|
|
|
|
PCISerialState *pci = DO_UPCAST(PCISerialState, dev, dev);
|
|
|
|
SerialState *s = &pci->state;
|
|
|
|
|
error: Eliminate error_propagate() with Coccinelle, part 1
When all we do with an Error we receive into a local variable is
propagating to somewhere else, we can just as well receive it there
right away. Convert
if (!foo(..., &err)) {
...
error_propagate(errp, err);
...
return ...
}
to
if (!foo(..., errp)) {
...
...
return ...
}
where nothing else needs @err. Coccinelle script:
@rule1 forall@
identifier fun, err, errp, lbl;
expression list args, args2;
binary operator op;
constant c1, c2;
symbol false;
@@
if (
(
- fun(args, &err, args2)
+ fun(args, errp, args2)
|
- !fun(args, &err, args2)
+ !fun(args, errp, args2)
|
- fun(args, &err, args2) op c1
+ fun(args, errp, args2) op c1
)
)
{
... when != err
when != lbl:
when strict
- error_propagate(errp, err);
... when != err
(
return;
|
return c2;
|
return false;
)
}
@rule2 forall@
identifier fun, err, errp, lbl;
expression list args, args2;
expression var;
binary operator op;
constant c1, c2;
symbol false;
@@
- var = fun(args, &err, args2);
+ var = fun(args, errp, args2);
... when != err
if (
(
var
|
!var
|
var op c1
)
)
{
... when != err
when != lbl:
when strict
- error_propagate(errp, err);
... when != err
(
return;
|
return c2;
|
return false;
|
return var;
)
}
@depends on rule1 || rule2@
identifier err;
@@
- Error *err = NULL;
... when != err
Not exactly elegant, I'm afraid.
The "when != lbl:" is necessary to avoid transforming
if (fun(args, &err)) {
goto out
}
...
out:
error_propagate(errp, err);
even though other paths to label out still need the error_propagate().
For an actual example, see sclp_realize().
Without the "when strict", Coccinelle transforms vfio_msix_setup(),
incorrectly. I don't know what exactly "when strict" does, only that
it helps here.
The match of return is narrower than what I want, but I can't figure
out how to express "return where the operand doesn't use @err". For
an example where it's too narrow, see vfio_intx_enable().
Silently fails to convert hw/arm/armsse.c, because Coccinelle gets
confused by ARMSSE being used both as typedef and function-like macro
there. Converted manually.
Line breaks tidied up manually. One nested declaration of @local_err
deleted manually. Preexisting unwanted blank line dropped in
hw/riscv/sifive_e.c.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200707160613.848843-35-armbru@redhat.com>
2020-07-07 18:06:02 +02:00
|
|
|
if (!qdev_realize(DEVICE(s), NULL, errp)) {
|
2015-01-19 15:52:33 +01:00
|
|
|
return;
|
2012-11-25 02:37:14 +01:00
|
|
|
}
|
2012-10-17 09:54:20 +02:00
|
|
|
|
2014-02-27 02:05:05 +01:00
|
|
|
pci->dev.config[PCI_CLASS_PROG] = pci->prog_if;
|
2012-10-17 09:54:20 +02:00
|
|
|
pci->dev.config[PCI_INTERRUPT_PIN] = 0x01;
|
2013-10-07 09:36:39 +02:00
|
|
|
s->irq = pci_allocate_irq(&pci->dev);
|
2012-10-17 09:54:20 +02:00
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->io, OBJECT(pci), &serial_io_ops, s, "serial", 8);
|
2012-10-17 09:54:20 +02:00
|
|
|
pci_register_bar(&pci->dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &s->io);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void serial_pci_exit(PCIDevice *dev)
|
|
|
|
{
|
|
|
|
PCISerialState *pci = DO_UPCAST(PCISerialState, dev, dev);
|
|
|
|
SerialState *s = &pci->state;
|
|
|
|
|
2020-06-10 07:31:56 +02:00
|
|
|
qdev_unrealize(DEVICE(s));
|
2013-10-07 09:36:39 +02:00
|
|
|
qemu_free_irq(s->irq);
|
2012-10-17 09:54:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_pci_serial = {
|
|
|
|
.name = "pci-serial",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-04-16 15:32:32 +02:00
|
|
|
.fields = (VMStateField[]) {
|
2012-10-17 09:54:20 +02:00
|
|
|
VMSTATE_PCI_DEVICE(dev, PCISerialState),
|
|
|
|
VMSTATE_STRUCT(state, PCISerialState, 0, vmstate_serial, SerialState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static Property serial_pci_properties[] = {
|
2014-02-27 02:05:05 +01:00
|
|
|
DEFINE_PROP_UINT8("prog_if", PCISerialState, prog_if, 0x02),
|
2012-10-17 09:54:20 +02:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void serial_pci_class_initfn(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
PCIDeviceClass *pc = PCI_DEVICE_CLASS(klass);
|
2015-01-19 15:52:33 +01:00
|
|
|
pc->realize = serial_pci_realize;
|
2012-10-17 09:54:20 +02:00
|
|
|
pc->exit = serial_pci_exit;
|
2012-12-13 10:19:38 +01:00
|
|
|
pc->vendor_id = PCI_VENDOR_ID_REDHAT;
|
|
|
|
pc->device_id = PCI_DEVICE_ID_REDHAT_SERIAL;
|
2012-10-17 09:54:20 +02:00
|
|
|
pc->revision = 1;
|
|
|
|
pc->class_id = PCI_CLASS_COMMUNICATION_SERIAL;
|
|
|
|
dc->vmsd = &vmstate_pci_serial;
|
2020-01-10 16:30:32 +01:00
|
|
|
device_class_set_props(dc, serial_pci_properties);
|
2013-07-29 16:17:45 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
|
2012-10-17 09:54:20 +02:00
|
|
|
}
|
|
|
|
|
2019-10-21 23:32:12 +02:00
|
|
|
static void serial_pci_init(Object *o)
|
|
|
|
{
|
|
|
|
PCISerialState *ps = PCI_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", &ps->state, TYPE_SERIAL);
|
2020-09-07 03:55:34 +02:00
|
|
|
|
|
|
|
qdev_alias_all_properties(DEVICE(&ps->state), o);
|
2019-10-21 23:32:12 +02:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo serial_pci_info = {
|
2019-10-21 23:32:12 +02:00
|
|
|
.name = TYPE_PCI_SERIAL,
|
2012-10-17 09:54:20 +02:00
|
|
|
.parent = TYPE_PCI_DEVICE,
|
|
|
|
.instance_size = sizeof(PCISerialState),
|
2019-10-21 23:32:12 +02:00
|
|
|
.instance_init = serial_pci_init,
|
2012-10-17 09:54:20 +02:00
|
|
|
.class_init = serial_pci_class_initfn,
|
2017-09-27 21:56:34 +02:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ INTERFACE_CONVENTIONAL_PCI_DEVICE },
|
|
|
|
{ },
|
|
|
|
},
|
2012-10-17 09:54:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void serial_pci_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&serial_pci_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(serial_pci_register_types)
|