2018-11-02 13:19:12 +00:00
|
|
|
/*
|
|
|
|
* Xilinx Versal SoC model.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Xilinx Inc.
|
|
|
|
* Written by Edgar E. Iglesias
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
2021-03-08 22:46:37 +00:00
|
|
|
#include "qemu/units.h"
|
2018-11-02 13:19:12 +00:00
|
|
|
#include "qapi/error.h"
|
2019-05-23 14:35:07 +00:00
|
|
|
#include "qemu/module.h"
|
2018-11-02 13:19:12 +00:00
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#include "net/net.h"
|
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
#include "sysemu/kvm.h"
|
2019-05-23 13:47:43 +00:00
|
|
|
#include "hw/arm/boot.h"
|
2018-11-02 13:19:12 +00:00
|
|
|
#include "kvm_arm.h"
|
|
|
|
#include "hw/misc/unimp.h"
|
|
|
|
#include "hw/arm/xlnx-versal.h"
|
2022-01-21 16:11:34 +00:00
|
|
|
#include "qemu/log.h"
|
2018-11-02 13:19:12 +00:00
|
|
|
|
|
|
|
#define XLNX_VERSAL_ACPU_TYPE ARM_CPU_TYPE_NAME("cortex-a72")
|
2022-04-06 17:43:01 +00:00
|
|
|
#define XLNX_VERSAL_RCPU_TYPE ARM_CPU_TYPE_NAME("cortex-r5f")
|
2018-11-02 13:19:12 +00:00
|
|
|
#define GEM_REVISION 0x40070106
|
|
|
|
|
2023-08-31 16:57:01 +00:00
|
|
|
#define VERSAL_NUM_PMC_APB_IRQS 18
|
2022-01-21 16:11:38 +00:00
|
|
|
#define NUM_OSPI_IRQ_LINES 3
|
2022-01-21 16:11:33 +00:00
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
static void versal_create_apu_cpus(Versal *s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2022-04-06 17:43:00 +00:00
|
|
|
object_initialize_child(OBJECT(s), "apu-cluster", &s->fpd.apu.cluster,
|
|
|
|
TYPE_CPU_CLUSTER);
|
|
|
|
qdev_prop_set_uint32(DEVICE(&s->fpd.apu.cluster), "cluster-id", 0);
|
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(s->fpd.apu.cpu); i++) {
|
|
|
|
Object *obj;
|
|
|
|
|
2022-04-06 17:43:00 +00:00
|
|
|
object_initialize_child(OBJECT(&s->fpd.apu.cluster),
|
|
|
|
"apu-cpu[*]", &s->fpd.apu.cpu[i],
|
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 05:32:25 +00:00
|
|
|
XLNX_VERSAL_ACPU_TYPE);
|
2020-04-27 18:16:45 +00:00
|
|
|
obj = OBJECT(&s->fpd.apu.cpu[i]);
|
2018-11-02 13:19:12 +00:00
|
|
|
if (i) {
|
2022-01-27 15:46:30 +00:00
|
|
|
/* Secondary CPUs start in powered-down state */
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_bool(obj, "start-powered-off", true,
|
|
|
|
&error_abort);
|
2018-11-02 13:19:12 +00:00
|
|
|
}
|
|
|
|
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_int(obj, "core-count", ARRAY_SIZE(s->fpd.apu.cpu),
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_link(obj, "memory", OBJECT(&s->fpd.apu.mr),
|
2018-11-02 13:19:12 +00:00
|
|
|
&error_abort);
|
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 05:32:45 +00:00
|
|
|
qdev_realize(DEVICE(obj), NULL, &error_fatal);
|
2018-11-02 13:19:12 +00:00
|
|
|
}
|
2022-04-06 17:43:00 +00:00
|
|
|
|
|
|
|
qdev_realize(DEVICE(&s->fpd.apu.cluster), NULL, &error_fatal);
|
2018-11-02 13:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_create_apu_gic(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
static const uint64_t addrs[] = {
|
|
|
|
MM_GIC_APU_DIST_MAIN,
|
|
|
|
MM_GIC_APU_REDIST_0
|
|
|
|
};
|
|
|
|
SysBusDevice *gicbusdev;
|
|
|
|
DeviceState *gicdev;
|
|
|
|
int nr_apu_cpus = ARRAY_SIZE(s->fpd.apu.cpu);
|
|
|
|
int i;
|
|
|
|
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
object_initialize_child(OBJECT(s), "apu-gic", &s->fpd.apu.gic,
|
|
|
|
gicv3_class_name());
|
2018-11-02 13:19:12 +00:00
|
|
|
gicbusdev = SYS_BUS_DEVICE(&s->fpd.apu.gic);
|
|
|
|
gicdev = DEVICE(&s->fpd.apu.gic);
|
|
|
|
qdev_prop_set_uint32(gicdev, "revision", 3);
|
2021-02-10 14:20:48 +00:00
|
|
|
qdev_prop_set_uint32(gicdev, "num-cpu", nr_apu_cpus);
|
2018-11-02 13:19:12 +00:00
|
|
|
qdev_prop_set_uint32(gicdev, "num-irq", XLNX_VERSAL_NR_IRQS + 32);
|
|
|
|
qdev_prop_set_uint32(gicdev, "len-redist-region-count", 1);
|
2021-02-10 14:20:48 +00:00
|
|
|
qdev_prop_set_uint32(gicdev, "redist-region-count[0]", nr_apu_cpus);
|
2018-11-02 13:19:12 +00:00
|
|
|
qdev_prop_set_bit(gicdev, "has-security-extensions", true);
|
|
|
|
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
sysbus_realize(SYS_BUS_DEVICE(&s->fpd.apu.gic), &error_fatal);
|
2018-11-02 13:19:12 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(addrs); i++) {
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(gicbusdev, i);
|
|
|
|
memory_region_add_subregion(&s->fpd.apu.mr, addrs[i], mr);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < nr_apu_cpus; i++) {
|
2020-04-27 18:16:45 +00:00
|
|
|
DeviceState *cpudev = DEVICE(&s->fpd.apu.cpu[i]);
|
2018-11-02 13:19:12 +00:00
|
|
|
int ppibase = XLNX_VERSAL_NR_IRQS + i * GIC_INTERNAL + GIC_NR_SGIS;
|
|
|
|
qemu_irq maint_irq;
|
|
|
|
int ti;
|
|
|
|
/* Mapping from the output timer irq lines from the CPU to the
|
|
|
|
* GIC PPI inputs.
|
|
|
|
*/
|
|
|
|
const int timer_irq[] = {
|
|
|
|
[GTIMER_PHYS] = VERSAL_TIMER_NS_EL1_IRQ,
|
|
|
|
[GTIMER_VIRT] = VERSAL_TIMER_VIRT_IRQ,
|
|
|
|
[GTIMER_HYP] = VERSAL_TIMER_NS_EL2_IRQ,
|
|
|
|
[GTIMER_SEC] = VERSAL_TIMER_S_EL1_IRQ,
|
|
|
|
};
|
|
|
|
|
|
|
|
for (ti = 0; ti < ARRAY_SIZE(timer_irq); ti++) {
|
|
|
|
qdev_connect_gpio_out(cpudev, ti,
|
|
|
|
qdev_get_gpio_in(gicdev,
|
|
|
|
ppibase + timer_irq[ti]));
|
|
|
|
}
|
|
|
|
maint_irq = qdev_get_gpio_in(gicdev,
|
|
|
|
ppibase + VERSAL_GIC_MAINT_IRQ);
|
|
|
|
qdev_connect_gpio_out_named(cpudev, "gicv3-maintenance-interrupt",
|
|
|
|
0, maint_irq);
|
|
|
|
sysbus_connect_irq(gicbusdev, i, qdev_get_gpio_in(cpudev, ARM_CPU_IRQ));
|
|
|
|
sysbus_connect_irq(gicbusdev, i + nr_apu_cpus,
|
|
|
|
qdev_get_gpio_in(cpudev, ARM_CPU_FIQ));
|
|
|
|
sysbus_connect_irq(gicbusdev, i + 2 * nr_apu_cpus,
|
|
|
|
qdev_get_gpio_in(cpudev, ARM_CPU_VIRQ));
|
|
|
|
sysbus_connect_irq(gicbusdev, i + 3 * nr_apu_cpus,
|
|
|
|
qdev_get_gpio_in(cpudev, ARM_CPU_VFIQ));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < XLNX_VERSAL_NR_IRQS; i++) {
|
|
|
|
pic[i] = qdev_get_gpio_in(gicdev, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-06 17:43:01 +00:00
|
|
|
static void versal_create_rpu_cpus(Versal *s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "rpu-cluster", &s->lpd.rpu.cluster,
|
|
|
|
TYPE_CPU_CLUSTER);
|
|
|
|
qdev_prop_set_uint32(DEVICE(&s->lpd.rpu.cluster), "cluster-id", 1);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.rpu.cpu); i++) {
|
|
|
|
Object *obj;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(&s->lpd.rpu.cluster),
|
|
|
|
"rpu-cpu[*]", &s->lpd.rpu.cpu[i],
|
|
|
|
XLNX_VERSAL_RCPU_TYPE);
|
|
|
|
obj = OBJECT(&s->lpd.rpu.cpu[i]);
|
|
|
|
object_property_set_bool(obj, "start-powered-off", true,
|
|
|
|
&error_abort);
|
|
|
|
|
|
|
|
object_property_set_int(obj, "mp-affinity", 0x100 | i, &error_abort);
|
|
|
|
object_property_set_int(obj, "core-count", ARRAY_SIZE(s->lpd.rpu.cpu),
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_link(obj, "memory", OBJECT(&s->lpd.rpu.mr),
|
|
|
|
&error_abort);
|
|
|
|
qdev_realize(DEVICE(obj), NULL, &error_fatal);
|
|
|
|
}
|
|
|
|
|
|
|
|
qdev_realize(DEVICE(&s->lpd.rpu.cluster), NULL, &error_fatal);
|
|
|
|
}
|
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
static void versal_create_uarts(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.uart); i++) {
|
|
|
|
static const int irqs[] = { VERSAL_UART0_IRQ_0, VERSAL_UART1_IRQ_0};
|
|
|
|
static const uint64_t addrs[] = { MM_UART0, MM_UART1 };
|
|
|
|
char *name = g_strdup_printf("uart%d", i);
|
|
|
|
DeviceState *dev;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
object_initialize_child(OBJECT(s), name, &s->lpd.iou.uart[i],
|
|
|
|
TYPE_PL011);
|
2020-04-27 18:16:42 +00:00
|
|
|
dev = DEVICE(&s->lpd.iou.uart[i]);
|
2018-11-02 13:19:12 +00:00
|
|
|
qdev_prop_set_chr(dev, "chardev", serial_hd(i));
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
|
2018-11-02 13:19:12 +00:00
|
|
|
|
2020-04-27 18:16:42 +00:00
|
|
|
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
2018-11-02 13:19:12 +00:00
|
|
|
memory_region_add_subregion(&s->mr_ps, addrs[i], mr);
|
|
|
|
|
2020-04-27 18:16:42 +00:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, pic[irqs[i]]);
|
2018-11-02 13:19:12 +00:00
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-06 09:19:30 +00:00
|
|
|
static void versal_create_canfds(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint32_t irqs[] = { VERSAL_CANFD0_IRQ_0, VERSAL_CANFD1_IRQ_0};
|
|
|
|
uint64_t addrs[] = { MM_CANFD0, MM_CANFD1 };
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.canfd); i++) {
|
|
|
|
char *name = g_strdup_printf("canfd%d", i);
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), name, &s->lpd.iou.canfd[i],
|
|
|
|
TYPE_XILINX_CANFD);
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->lpd.iou.canfd[i]);
|
|
|
|
|
|
|
|
object_property_set_int(OBJECT(&s->lpd.iou.canfd[i]), "ext_clk_freq",
|
|
|
|
XLNX_VERSAL_CANFD_REF_CLK , &error_abort);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->lpd.iou.canfd[i]), "canfdbus",
|
|
|
|
OBJECT(s->lpd.iou.canbus[i]),
|
|
|
|
&error_abort);
|
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(sbd, 0);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, addrs[i], mr);
|
|
|
|
|
|
|
|
sysbus_connect_irq(sbd, 0, pic[irqs[i]]);
|
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-03 19:22:37 +00:00
|
|
|
static void versal_create_usbs(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "usb2", &s->lpd.iou.usb,
|
|
|
|
TYPE_XILINX_VERSAL_USB2);
|
|
|
|
dev = DEVICE(&s->lpd.iou.usb);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(dev), "dma", OBJECT(&s->mr_ps),
|
|
|
|
&error_abort);
|
|
|
|
qdev_prop_set_uint32(dev, "intrs", 1);
|
|
|
|
qdev_prop_set_uint32(dev, "slots", 2);
|
|
|
|
|
|
|
|
sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
|
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_USB_0, mr);
|
|
|
|
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, pic[VERSAL_USB0_IRQ_0]);
|
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 1);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_USB2_CTRL_REGS, mr);
|
|
|
|
}
|
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
static void versal_create_gems(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.gem); i++) {
|
|
|
|
static const int irqs[] = { VERSAL_GEM0_IRQ_0, VERSAL_GEM1_IRQ_0};
|
|
|
|
static const uint64_t addrs[] = { MM_GEM0, MM_GEM1 };
|
|
|
|
char *name = g_strdup_printf("gem%d", i);
|
|
|
|
NICInfo *nd = &nd_table[i];
|
|
|
|
DeviceState *dev;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
object_initialize_child(OBJECT(s), name, &s->lpd.iou.gem[i],
|
|
|
|
TYPE_CADENCE_GEM);
|
2020-04-27 18:16:43 +00:00
|
|
|
dev = DEVICE(&s->lpd.iou.gem[i]);
|
2020-07-15 14:04:40 +00:00
|
|
|
/* FIXME use qdev NIC properties instead of nd_table[] */
|
2018-11-02 13:19:12 +00:00
|
|
|
if (nd->used) {
|
|
|
|
qemu_check_nic_model(nd, "cadence_gem");
|
|
|
|
qdev_set_nic_properties(dev, nd);
|
|
|
|
}
|
2020-09-01 01:39:07 +00:00
|
|
|
object_property_set_int(OBJECT(dev), "phy-addr", 23, &error_abort);
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_int(OBJECT(dev), "num-priority-queues", 2,
|
2018-11-02 13:19:12 +00:00
|
|
|
&error_abort);
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_link(OBJECT(dev), "dma", OBJECT(&s->mr_ps),
|
2018-11-02 13:19:12 +00:00
|
|
|
&error_abort);
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
|
2018-11-02 13:19:12 +00:00
|
|
|
|
2020-04-27 18:16:43 +00:00
|
|
|
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
2018-11-02 13:19:12 +00:00
|
|
|
memory_region_add_subregion(&s->mr_ps, addrs[i], mr);
|
|
|
|
|
2020-04-27 18:16:43 +00:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, pic[irqs[i]]);
|
2018-11-02 13:19:12 +00:00
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-05 16:09:13 +00:00
|
|
|
static void versal_create_admas(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.adma); i++) {
|
|
|
|
char *name = g_strdup_printf("adma%d", i);
|
|
|
|
DeviceState *dev;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
object_initialize_child(OBJECT(s), name, &s->lpd.iou.adma[i],
|
|
|
|
TYPE_XLNX_ZDMA);
|
2020-04-27 18:16:44 +00:00
|
|
|
dev = DEVICE(&s->lpd.iou.adma[i]);
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_int(OBJECT(dev), "bus-width", 128, &error_abort);
|
2021-08-19 16:34:22 +00:00
|
|
|
object_property_set_link(OBJECT(dev), "dma",
|
|
|
|
OBJECT(get_system_memory()), &error_fatal);
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
|
2020-03-05 16:09:13 +00:00
|
|
|
|
2020-04-27 18:16:44 +00:00
|
|
|
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
2020-03-05 16:09:13 +00:00
|
|
|
memory_region_add_subregion(&s->mr_ps,
|
|
|
|
MM_ADMA_CH0 + i * MM_ADMA_CH0_SIZE, mr);
|
|
|
|
|
2020-04-27 18:16:44 +00:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, pic[VERSAL_ADMA_IRQ_0 + i]);
|
2020-03-05 16:09:13 +00:00
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-27 18:16:46 +00:00
|
|
|
#define SDHCI_CAPABILITIES 0x280737ec6481 /* Same as on ZynqMP. */
|
|
|
|
static void versal_create_sds(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->pmc.iou.sd); i++) {
|
|
|
|
DeviceState *dev;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
object_initialize_child(OBJECT(s), "sd[*]", &s->pmc.iou.sd[i],
|
|
|
|
TYPE_SYSBUS_SDHCI);
|
2020-04-27 18:16:46 +00:00
|
|
|
dev = DEVICE(&s->pmc.iou.sd[i]);
|
|
|
|
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_uint(OBJECT(dev), "sd-spec-version", 3,
|
|
|
|
&error_fatal);
|
|
|
|
object_property_set_uint(OBJECT(dev), "capareg", SDHCI_CAPABILITIES,
|
2020-04-27 18:16:46 +00:00
|
|
|
&error_fatal);
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 16:05:54 +00:00
|
|
|
object_property_set_uint(OBJECT(dev), "uhs", UHS_I, &error_fatal);
|
sysbus: Convert qdev_set_parent_bus() use with Coccinelle, part 1
I'm converting from qdev_set_parent_bus()/realize to qdev_realize();
recent commit "qdev: Convert uses of qdev_set_parent_bus() with
Coccinelle" explains why.
sysbus_init_child_obj() is a wrapper around
object_initialize_child_with_props() and qdev_set_parent_bus(). It
passes no properties.
Convert sysbus_init_child_obj()/realize to object_initialize_child()/
qdev_realize().
Coccinelle script:
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, &child, size, type);
+ sysbus_init_child_XXX(parent, name, &child, size, type);
...
- object_property_set_bool(OBJECT(&child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(&child), errp);
@@
expression parent, name, size, type, errp;
expression child;
symbol true;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
- object_property_set_bool(OBJECT(child), true, "realized", errp);
+ sysbus_realize(SYS_BUS_DEVICE(child), errp);
@@
expression parent, name, size, type;
expression child;
expression dev;
expression expr;
@@
- sysbus_init_child_obj(parent, name, child, size, type);
+ sysbus_init_child_XXX(parent, name, child, size, type);
...
dev = DEVICE(child);
... when != dev = expr;
- qdev_init_nofail(dev);
+ sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, child, sizeof(*child), type)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
@@
- sysbus_init_child_XXX(parent, propname, &child, sizeof(child), type)
+ object_initialize_child(parent, propname, &child, type)
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-48-armbru@redhat.com>
2020-06-10 05:32:36 +00:00
|
|
|
sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
|
2020-04-27 18:16:46 +00:00
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
|
|
|
memory_region_add_subregion(&s->mr_ps,
|
|
|
|
MM_PMC_SD0 + i * MM_PMC_SD0_SIZE, mr);
|
|
|
|
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0,
|
|
|
|
pic[VERSAL_SD0_IRQ_0 + i * 2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-21 16:11:33 +00:00
|
|
|
static void versal_create_pmc_apb_irq_orgate(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
DeviceState *orgate;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The VERSAL_PMC_APB_IRQ is an 'or' of the interrupts from the following
|
|
|
|
* models:
|
|
|
|
* - RTC
|
|
|
|
* - BBRAM
|
2022-01-21 16:11:34 +00:00
|
|
|
* - PMC SLCR
|
2023-08-31 16:57:01 +00:00
|
|
|
* - CFRAME regs (input 3 - 17 to the orgate)
|
2022-01-21 16:11:33 +00:00
|
|
|
*/
|
|
|
|
object_initialize_child(OBJECT(s), "pmc-apb-irq-orgate",
|
|
|
|
&s->pmc.apb_irq_orgate, TYPE_OR_IRQ);
|
|
|
|
orgate = DEVICE(&s->pmc.apb_irq_orgate);
|
|
|
|
object_property_set_int(OBJECT(orgate),
|
|
|
|
"num-lines", VERSAL_NUM_PMC_APB_IRQS, &error_fatal);
|
|
|
|
qdev_realize(orgate, NULL, &error_fatal);
|
|
|
|
qdev_connect_gpio_out(orgate, 0, pic[VERSAL_PMC_APB_IRQ]);
|
|
|
|
}
|
|
|
|
|
2020-04-27 18:16:47 +00:00
|
|
|
static void versal_create_rtc(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
2020-06-10 05:32:38 +00:00
|
|
|
object_initialize_child(OBJECT(s), "rtc", &s->pmc.rtc,
|
|
|
|
TYPE_XLNX_ZYNQMP_RTC);
|
2020-04-27 18:16:47 +00:00
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.rtc);
|
2023-06-01 09:34:52 +00:00
|
|
|
sysbus_realize(sbd, &error_fatal);
|
2020-04-27 18:16:47 +00:00
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(sbd, 0);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_RTC, mr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Connect the ALARM and SECONDS interrupts once our RTC model
|
|
|
|
* supports them.
|
|
|
|
*/
|
2022-01-21 16:11:33 +00:00
|
|
|
sysbus_connect_irq(sbd, 1,
|
|
|
|
qdev_get_gpio_in(DEVICE(&s->pmc.apb_irq_orgate), 0));
|
2020-04-27 18:16:47 +00:00
|
|
|
}
|
|
|
|
|
2021-03-08 22:46:37 +00:00
|
|
|
static void versal_create_xrams(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
int nr_xrams = ARRAY_SIZE(s->lpd.xram.ctrl);
|
|
|
|
DeviceState *orgate;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* XRAM IRQs get ORed into a single line. */
|
|
|
|
object_initialize_child(OBJECT(s), "xram-irq-orgate",
|
|
|
|
&s->lpd.xram.irq_orgate, TYPE_OR_IRQ);
|
|
|
|
orgate = DEVICE(&s->lpd.xram.irq_orgate);
|
|
|
|
object_property_set_int(OBJECT(orgate),
|
|
|
|
"num-lines", nr_xrams, &error_fatal);
|
|
|
|
qdev_realize(orgate, NULL, &error_fatal);
|
|
|
|
qdev_connect_gpio_out(orgate, 0, pic[VERSAL_XRAM_IRQ_0]);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.xram.ctrl); i++) {
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "xram[*]", &s->lpd.xram.ctrl[i],
|
|
|
|
TYPE_XLNX_XRAM_CTRL);
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->lpd.xram.ctrl[i]);
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
mr = sysbus_mmio_get_region(sbd, 0);
|
|
|
|
memory_region_add_subregion(&s->mr_ps,
|
|
|
|
MM_XRAMC + i * MM_XRAMC_SIZE, mr);
|
|
|
|
mr = sysbus_mmio_get_region(sbd, 1);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_XRAM + i * MiB, mr);
|
|
|
|
|
|
|
|
sysbus_connect_irq(sbd, 0, qdev_get_gpio_in(orgate, i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-17 05:23:56 +00:00
|
|
|
static void versal_create_bbram(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
|
|
|
|
object_initialize_child_with_props(OBJECT(s), "bbram", &s->pmc.bbram,
|
|
|
|
sizeof(s->pmc.bbram), TYPE_XLNX_BBRAM,
|
|
|
|
&error_fatal,
|
|
|
|
"crc-zpads", "0",
|
|
|
|
NULL);
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.bbram);
|
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_BBRAM_CTRL,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
2022-01-21 16:11:33 +00:00
|
|
|
sysbus_connect_irq(sbd, 0,
|
|
|
|
qdev_get_gpio_in(DEVICE(&s->pmc.apb_irq_orgate), 1));
|
2021-09-17 05:23:56 +00:00
|
|
|
}
|
|
|
|
|
2021-09-17 05:23:57 +00:00
|
|
|
static void versal_realize_efuse_part(Versal *s, Object *dev, hwaddr base)
|
|
|
|
{
|
|
|
|
SysBusDevice *part = SYS_BUS_DEVICE(dev);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(part), "efuse",
|
|
|
|
OBJECT(&s->pmc.efuse), &error_abort);
|
|
|
|
|
|
|
|
sysbus_realize(part, &error_abort);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, base,
|
|
|
|
sysbus_mmio_get_region(part, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_create_efuse(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
Object *bits = OBJECT(&s->pmc.efuse);
|
|
|
|
Object *ctrl = OBJECT(&s->pmc.efuse_ctrl);
|
|
|
|
Object *cache = OBJECT(&s->pmc.efuse_cache);
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "efuse-ctrl", &s->pmc.efuse_ctrl,
|
|
|
|
TYPE_XLNX_VERSAL_EFUSE_CTRL);
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "efuse-cache", &s->pmc.efuse_cache,
|
|
|
|
TYPE_XLNX_VERSAL_EFUSE_CACHE);
|
|
|
|
|
|
|
|
object_initialize_child_with_props(ctrl, "xlnx-efuse@0", bits,
|
|
|
|
sizeof(s->pmc.efuse),
|
|
|
|
TYPE_XLNX_EFUSE, &error_abort,
|
|
|
|
"efuse-nr", "3",
|
|
|
|
"efuse-size", "8192",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
qdev_realize(DEVICE(bits), NULL, &error_abort);
|
|
|
|
versal_realize_efuse_part(s, ctrl, MM_PMC_EFUSE_CTRL);
|
|
|
|
versal_realize_efuse_part(s, cache, MM_PMC_EFUSE_CACHE);
|
|
|
|
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(ctrl), 0, pic[VERSAL_EFUSE_IRQ]);
|
|
|
|
}
|
|
|
|
|
2022-01-21 16:11:34 +00:00
|
|
|
static void versal_create_pmc_iou_slcr(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "versal-pmc-iou-slcr", &s->pmc.iou.slcr,
|
|
|
|
TYPE_XILINX_VERSAL_PMC_IOU_SLCR);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.iou.slcr);
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_PMC_IOU_SLCR,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
|
|
|
|
sysbus_connect_irq(sbd, 0,
|
|
|
|
qdev_get_gpio_in(DEVICE(&s->pmc.apb_irq_orgate), 2));
|
|
|
|
}
|
|
|
|
|
2022-01-21 16:11:38 +00:00
|
|
|
static void versal_create_ospi(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
MemoryRegion *mr_dac;
|
|
|
|
qemu_irq ospi_mux_sel;
|
|
|
|
DeviceState *orgate;
|
|
|
|
|
|
|
|
memory_region_init(&s->pmc.iou.ospi.linear_mr, OBJECT(s),
|
|
|
|
"versal-ospi-linear-mr" , MM_PMC_OSPI_DAC_SIZE);
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "versal-ospi", &s->pmc.iou.ospi.ospi,
|
|
|
|
TYPE_XILINX_VERSAL_OSPI);
|
|
|
|
|
|
|
|
mr_dac = sysbus_mmio_get_region(SYS_BUS_DEVICE(&s->pmc.iou.ospi.ospi), 1);
|
|
|
|
memory_region_add_subregion(&s->pmc.iou.ospi.linear_mr, 0x0, mr_dac);
|
|
|
|
|
|
|
|
/* Create the OSPI destination DMA */
|
|
|
|
object_initialize_child(OBJECT(s), "versal-ospi-dma-dst",
|
|
|
|
&s->pmc.iou.ospi.dma_dst,
|
|
|
|
TYPE_XLNX_CSU_DMA);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->pmc.iou.ospi.dma_dst),
|
|
|
|
"dma", OBJECT(get_system_memory()),
|
|
|
|
&error_abort);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.iou.ospi.dma_dst);
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_OSPI_DMA_DST,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
|
|
|
|
/* Create the OSPI source DMA */
|
|
|
|
object_initialize_child(OBJECT(s), "versal-ospi-dma-src",
|
|
|
|
&s->pmc.iou.ospi.dma_src,
|
|
|
|
TYPE_XLNX_CSU_DMA);
|
|
|
|
|
|
|
|
object_property_set_bool(OBJECT(&s->pmc.iou.ospi.dma_src), "is-dst",
|
|
|
|
false, &error_abort);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->pmc.iou.ospi.dma_src),
|
|
|
|
"dma", OBJECT(mr_dac), &error_abort);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->pmc.iou.ospi.dma_src),
|
|
|
|
"stream-connected-dma",
|
|
|
|
OBJECT(&s->pmc.iou.ospi.dma_dst),
|
|
|
|
&error_abort);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.iou.ospi.dma_src);
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_OSPI_DMA_SRC,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
|
|
|
|
/* Realize the OSPI */
|
|
|
|
object_property_set_link(OBJECT(&s->pmc.iou.ospi.ospi), "dma-src",
|
|
|
|
OBJECT(&s->pmc.iou.ospi.dma_src), &error_abort);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.iou.ospi.ospi);
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_OSPI,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_OSPI_DAC,
|
|
|
|
&s->pmc.iou.ospi.linear_mr);
|
|
|
|
|
|
|
|
/* ospi_mux_sel */
|
|
|
|
ospi_mux_sel = qdev_get_gpio_in_named(DEVICE(&s->pmc.iou.ospi.ospi),
|
|
|
|
"ospi-mux-sel", 0);
|
|
|
|
qdev_connect_gpio_out_named(DEVICE(&s->pmc.iou.slcr), "ospi-mux-sel", 0,
|
|
|
|
ospi_mux_sel);
|
|
|
|
|
|
|
|
/* OSPI irq */
|
|
|
|
object_initialize_child(OBJECT(s), "ospi-irq-orgate",
|
|
|
|
&s->pmc.iou.ospi.irq_orgate, TYPE_OR_IRQ);
|
|
|
|
object_property_set_int(OBJECT(&s->pmc.iou.ospi.irq_orgate),
|
|
|
|
"num-lines", NUM_OSPI_IRQ_LINES, &error_fatal);
|
|
|
|
|
|
|
|
orgate = DEVICE(&s->pmc.iou.ospi.irq_orgate);
|
|
|
|
qdev_realize(orgate, NULL, &error_fatal);
|
|
|
|
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->pmc.iou.ospi.ospi), 0,
|
|
|
|
qdev_get_gpio_in(orgate, 0));
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->pmc.iou.ospi.dma_src), 0,
|
|
|
|
qdev_get_gpio_in(orgate, 1));
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->pmc.iou.ospi.dma_dst), 0,
|
|
|
|
qdev_get_gpio_in(orgate, 2));
|
|
|
|
|
|
|
|
qdev_connect_gpio_out(orgate, 0, pic[VERSAL_OSPI_IRQ]);
|
|
|
|
}
|
|
|
|
|
2023-08-31 16:57:00 +00:00
|
|
|
static void versal_create_cfu(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
SysBusDevice *sbd;
|
2023-08-31 16:57:01 +00:00
|
|
|
DeviceState *dev;
|
|
|
|
int i;
|
|
|
|
const struct {
|
|
|
|
uint64_t reg_base;
|
|
|
|
uint64_t fdri_base;
|
|
|
|
} cframe_addr[] = {
|
|
|
|
{ MM_PMC_CFRAME0_REG, MM_PMC_CFRAME0_FDRI },
|
|
|
|
{ MM_PMC_CFRAME1_REG, MM_PMC_CFRAME1_FDRI },
|
|
|
|
{ MM_PMC_CFRAME2_REG, MM_PMC_CFRAME2_FDRI },
|
|
|
|
{ MM_PMC_CFRAME3_REG, MM_PMC_CFRAME3_FDRI },
|
|
|
|
{ MM_PMC_CFRAME4_REG, MM_PMC_CFRAME4_FDRI },
|
|
|
|
{ MM_PMC_CFRAME5_REG, MM_PMC_CFRAME5_FDRI },
|
|
|
|
{ MM_PMC_CFRAME6_REG, MM_PMC_CFRAME6_FDRI },
|
|
|
|
{ MM_PMC_CFRAME7_REG, MM_PMC_CFRAME7_FDRI },
|
|
|
|
{ MM_PMC_CFRAME8_REG, MM_PMC_CFRAME8_FDRI },
|
|
|
|
{ MM_PMC_CFRAME9_REG, MM_PMC_CFRAME9_FDRI },
|
|
|
|
{ MM_PMC_CFRAME10_REG, MM_PMC_CFRAME10_FDRI },
|
|
|
|
{ MM_PMC_CFRAME11_REG, MM_PMC_CFRAME11_FDRI },
|
|
|
|
{ MM_PMC_CFRAME12_REG, MM_PMC_CFRAME12_FDRI },
|
|
|
|
{ MM_PMC_CFRAME13_REG, MM_PMC_CFRAME13_FDRI },
|
|
|
|
{ MM_PMC_CFRAME14_REG, MM_PMC_CFRAME14_FDRI },
|
|
|
|
};
|
|
|
|
const struct {
|
|
|
|
uint32_t blktype0_frames;
|
|
|
|
uint32_t blktype1_frames;
|
|
|
|
uint32_t blktype2_frames;
|
|
|
|
uint32_t blktype3_frames;
|
|
|
|
uint32_t blktype4_frames;
|
|
|
|
uint32_t blktype5_frames;
|
|
|
|
uint32_t blktype6_frames;
|
|
|
|
} cframe_cfg[] = {
|
|
|
|
[0] = { 34111, 3528, 12800, 11, 5, 1, 1 },
|
|
|
|
[1] = { 38498, 3841, 15361, 13, 7, 3, 1 },
|
|
|
|
[2] = { 38498, 3841, 15361, 13, 7, 3, 1 },
|
|
|
|
[3] = { 38498, 3841, 15361, 13, 7, 3, 1 },
|
|
|
|
};
|
2023-08-31 16:57:00 +00:00
|
|
|
|
|
|
|
/* CFU FDRO */
|
|
|
|
object_initialize_child(OBJECT(s), "cfu-fdro", &s->pmc.cfu_fdro,
|
|
|
|
TYPE_XLNX_VERSAL_CFU_FDRO);
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.cfu_fdro);
|
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFU_FDRO,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
|
2023-08-31 16:57:01 +00:00
|
|
|
/* CFRAME REG */
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->pmc.cframe); i++) {
|
|
|
|
g_autofree char *name = g_strdup_printf("cframe%d", i);
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), name, &s->pmc.cframe[i],
|
|
|
|
TYPE_XLNX_VERSAL_CFRAME_REG);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.cframe[i]);
|
|
|
|
dev = DEVICE(&s->pmc.cframe[i]);
|
|
|
|
|
|
|
|
if (i < ARRAY_SIZE(cframe_cfg)) {
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype0-frames",
|
|
|
|
cframe_cfg[i].blktype0_frames,
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype1-frames",
|
|
|
|
cframe_cfg[i].blktype1_frames,
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype2-frames",
|
|
|
|
cframe_cfg[i].blktype2_frames,
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype3-frames",
|
|
|
|
cframe_cfg[i].blktype3_frames,
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype4-frames",
|
|
|
|
cframe_cfg[i].blktype4_frames,
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype5-frames",
|
|
|
|
cframe_cfg[i].blktype5_frames,
|
|
|
|
&error_abort);
|
|
|
|
object_property_set_int(OBJECT(dev), "blktype6-frames",
|
|
|
|
cframe_cfg[i].blktype6_frames,
|
|
|
|
&error_abort);
|
|
|
|
}
|
|
|
|
object_property_set_link(OBJECT(dev), "cfu-fdro",
|
|
|
|
OBJECT(&s->pmc.cfu_fdro), &error_fatal);
|
|
|
|
|
|
|
|
sysbus_realize(SYS_BUS_DEVICE(dev), &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, cframe_addr[i].reg_base,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
memory_region_add_subregion(&s->mr_ps, cframe_addr[i].fdri_base,
|
|
|
|
sysbus_mmio_get_region(sbd, 1));
|
|
|
|
sysbus_connect_irq(sbd, 0,
|
|
|
|
qdev_get_gpio_in(DEVICE(&s->pmc.apb_irq_orgate),
|
|
|
|
3 + i));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CFRAME BCAST */
|
|
|
|
object_initialize_child(OBJECT(s), "cframe_bcast", &s->pmc.cframe_bcast,
|
|
|
|
TYPE_XLNX_VERSAL_CFRAME_BCAST_REG);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.cframe_bcast);
|
|
|
|
dev = DEVICE(&s->pmc.cframe_bcast);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->pmc.cframe); i++) {
|
|
|
|
g_autofree char *propname = g_strdup_printf("cframe%d", i);
|
|
|
|
object_property_set_link(OBJECT(dev), propname,
|
|
|
|
OBJECT(&s->pmc.cframe[i]), &error_fatal);
|
|
|
|
}
|
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFRAME_BCAST_REG,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFRAME_BCAST_FDRI,
|
|
|
|
sysbus_mmio_get_region(sbd, 1));
|
|
|
|
|
2023-08-31 16:57:00 +00:00
|
|
|
/* CFU APB */
|
|
|
|
object_initialize_child(OBJECT(s), "cfu-apb", &s->pmc.cfu_apb,
|
|
|
|
TYPE_XLNX_VERSAL_CFU_APB);
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.cfu_apb);
|
2023-08-31 16:57:01 +00:00
|
|
|
dev = DEVICE(&s->pmc.cfu_apb);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->pmc.cframe); i++) {
|
|
|
|
g_autofree char *propname = g_strdup_printf("cframe%d", i);
|
|
|
|
object_property_set_link(OBJECT(dev), propname,
|
|
|
|
OBJECT(&s->pmc.cframe[i]), &error_fatal);
|
|
|
|
}
|
2023-08-31 16:57:00 +00:00
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFU_APB,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFU_STREAM,
|
|
|
|
sysbus_mmio_get_region(sbd, 1));
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFU_STREAM_2,
|
|
|
|
sysbus_mmio_get_region(sbd, 2));
|
|
|
|
sysbus_connect_irq(sbd, 0, pic[VERSAL_CFU_IRQ_0]);
|
|
|
|
|
|
|
|
/* CFU SFR */
|
|
|
|
object_initialize_child(OBJECT(s), "cfu-sfr", &s->pmc.cfu_sfr,
|
|
|
|
TYPE_XLNX_VERSAL_CFU_SFR);
|
|
|
|
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->pmc.cfu_sfr);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->pmc.cfu_sfr),
|
|
|
|
"cfu", OBJECT(&s->pmc.cfu_apb), &error_abort);
|
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_PMC_CFU_SFR,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
}
|
|
|
|
|
2022-04-06 17:43:03 +00:00
|
|
|
static void versal_create_crl(Versal *s, qemu_irq *pic)
|
|
|
|
{
|
|
|
|
SysBusDevice *sbd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
object_initialize_child(OBJECT(s), "crl", &s->lpd.crl,
|
|
|
|
TYPE_XLNX_VERSAL_CRL);
|
|
|
|
sbd = SYS_BUS_DEVICE(&s->lpd.crl);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.rpu.cpu); i++) {
|
|
|
|
g_autofree gchar *name = g_strdup_printf("cpu_r5[%d]", i);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->lpd.crl),
|
|
|
|
name, OBJECT(&s->lpd.rpu.cpu[i]),
|
|
|
|
&error_abort);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.gem); i++) {
|
|
|
|
g_autofree gchar *name = g_strdup_printf("gem[%d]", i);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->lpd.crl),
|
|
|
|
name, OBJECT(&s->lpd.iou.gem[i]),
|
|
|
|
&error_abort);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.adma); i++) {
|
|
|
|
g_autofree gchar *name = g_strdup_printf("adma[%d]", i);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->lpd.crl),
|
|
|
|
name, OBJECT(&s->lpd.iou.adma[i]),
|
|
|
|
&error_abort);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lpd.iou.uart); i++) {
|
|
|
|
g_autofree gchar *name = g_strdup_printf("uart[%d]", i);
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->lpd.crl),
|
|
|
|
name, OBJECT(&s->lpd.iou.uart[i]),
|
|
|
|
&error_abort);
|
|
|
|
}
|
|
|
|
|
|
|
|
object_property_set_link(OBJECT(&s->lpd.crl),
|
|
|
|
"usb", OBJECT(&s->lpd.iou.usb),
|
|
|
|
&error_abort);
|
|
|
|
|
|
|
|
sysbus_realize(sbd, &error_fatal);
|
|
|
|
memory_region_add_subregion(&s->mr_ps, MM_CRL,
|
|
|
|
sysbus_mmio_get_region(sbd, 0));
|
|
|
|
sysbus_connect_irq(sbd, 0, pic[VERSAL_CRL_IRQ]);
|
|
|
|
}
|
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
/* This takes the board allocated linear DDR memory and creates aliases
|
|
|
|
* for each split DDR range/aperture on the Versal address map.
|
|
|
|
*/
|
|
|
|
static void versal_map_ddr(Versal *s)
|
|
|
|
{
|
|
|
|
uint64_t size = memory_region_size(s->cfg.mr_ddr);
|
|
|
|
/* Describes the various split DDR access regions. */
|
|
|
|
static const struct {
|
|
|
|
uint64_t base;
|
|
|
|
uint64_t size;
|
|
|
|
} addr_ranges[] = {
|
|
|
|
{ MM_TOP_DDR, MM_TOP_DDR_SIZE },
|
|
|
|
{ MM_TOP_DDR_2, MM_TOP_DDR_2_SIZE },
|
|
|
|
{ MM_TOP_DDR_3, MM_TOP_DDR_3_SIZE },
|
|
|
|
{ MM_TOP_DDR_4, MM_TOP_DDR_4_SIZE }
|
|
|
|
};
|
|
|
|
uint64_t offset = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
assert(ARRAY_SIZE(addr_ranges) == ARRAY_SIZE(s->noc.mr_ddr_ranges));
|
|
|
|
for (i = 0; i < ARRAY_SIZE(addr_ranges) && size; i++) {
|
|
|
|
char *name;
|
|
|
|
uint64_t mapsize;
|
|
|
|
|
|
|
|
mapsize = size < addr_ranges[i].size ? size : addr_ranges[i].size;
|
|
|
|
name = g_strdup_printf("noc-ddr-range%d", i);
|
|
|
|
/* Create the MR alias. */
|
|
|
|
memory_region_init_alias(&s->noc.mr_ddr_ranges[i], OBJECT(s),
|
|
|
|
name, s->cfg.mr_ddr,
|
|
|
|
offset, mapsize);
|
|
|
|
|
|
|
|
/* Map it onto the NoC MR. */
|
|
|
|
memory_region_add_subregion(&s->mr_ps, addr_ranges[i].base,
|
|
|
|
&s->noc.mr_ddr_ranges[i]);
|
|
|
|
offset += mapsize;
|
|
|
|
size -= mapsize;
|
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_unimp_area(Versal *s, const char *name,
|
|
|
|
MemoryRegion *mr,
|
|
|
|
hwaddr base, hwaddr size)
|
|
|
|
{
|
qdev: Convert uses of qdev_create() with Coccinelle
This is the transformation explained in the commit before previous.
Takes care of just one pattern that needs conversion. More to come in
this series.
Coccinelle script:
@ depends on !(file in "hw/arm/highbank.c")@
expression bus, type_name, dev, expr;
@@
- dev = qdev_create(bus, type_name);
+ dev = qdev_new(type_name);
... when != dev = expr
- qdev_init_nofail(dev);
+ qdev_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, type_name, dev, expr;
identifier DOWN;
@@
- dev = DOWN(qdev_create(bus, type_name));
+ dev = DOWN(qdev_new(type_name));
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ qdev_realize_and_unref(DEVICE(dev), bus, &error_fatal);
@@
expression bus, type_name, expr;
identifier dev;
@@
- DeviceState *dev = qdev_create(bus, type_name);
+ DeviceState *dev = qdev_new(type_name);
... when != dev = expr
- qdev_init_nofail(dev);
+ qdev_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, type_name, dev, expr, errp;
symbol true;
@@
- dev = qdev_create(bus, type_name);
+ dev = qdev_new(type_name);
... when != dev = expr
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize_and_unref(dev, bus, errp);
@@
expression bus, type_name, expr, errp;
identifier dev;
symbol true;
@@
- DeviceState *dev = qdev_create(bus, type_name);
+ DeviceState *dev = qdev_new(type_name);
... when != dev = expr
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize_and_unref(dev, bus, errp);
The first rule exempts hw/arm/highbank.c, because it matches along two
control flow paths there, with different @type_name. Covered by the
next commit's manual conversions.
Missing #include "qapi/error.h" added manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-10-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
2020-06-10 05:31:58 +00:00
|
|
|
DeviceState *dev = qdev_new(TYPE_UNIMPLEMENTED_DEVICE);
|
2018-11-02 13:19:12 +00:00
|
|
|
MemoryRegion *mr_dev;
|
|
|
|
|
|
|
|
qdev_prop_set_string(dev, "name", name);
|
|
|
|
qdev_prop_set_uint64(dev, "size", size);
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 15:29:22 +00:00
|
|
|
object_property_add_child(OBJECT(s), name, OBJECT(dev));
|
sysbus: Convert to sysbus_realize() etc. with Coccinelle
Convert from qdev_realize(), qdev_realize_and_unref() with null @bus
argument to sysbus_realize(), sysbus_realize_and_unref().
Coccinelle script:
@@
expression dev, errp;
@@
- qdev_realize(DEVICE(dev), NULL, errp);
+ sysbus_realize(SYS_BUS_DEVICE(dev), errp);
@@
expression sysbus_dev, dev, errp;
@@
+ sysbus_dev = SYS_BUS_DEVICE(dev);
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(sysbus_dev, errp);
- sysbus_dev = SYS_BUS_DEVICE(dev);
@@
expression sysbus_dev, dev, errp;
expression expr;
@@
sysbus_dev = SYS_BUS_DEVICE(dev);
... when != dev = expr;
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(sysbus_dev, errp);
@@
expression dev, errp;
@@
- qdev_realize_and_unref(DEVICE(dev), NULL, errp);
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), errp);
@@
expression dev, errp;
@@
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), errp);
Whitespace changes minimized manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-46-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
2020-06-10 05:32:34 +00:00
|
|
|
sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
|
2018-11-02 13:19:12 +00:00
|
|
|
|
|
|
|
mr_dev = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
|
|
|
memory_region_add_subregion(mr, base, mr_dev);
|
|
|
|
}
|
|
|
|
|
2022-01-21 16:11:34 +00:00
|
|
|
static void versal_unimp_sd_emmc_sel(void *opaque, int n, int level)
|
|
|
|
{
|
|
|
|
qemu_log_mask(LOG_UNIMP,
|
|
|
|
"Selecting between enabling SD mode or eMMC mode on "
|
|
|
|
"controller %d is not yet implemented\n", n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_unimp_qspi_ospi_mux_sel(void *opaque, int n, int level)
|
|
|
|
{
|
|
|
|
qemu_log_mask(LOG_UNIMP,
|
|
|
|
"Selecting between enabling the QSPI or OSPI linear address "
|
|
|
|
"region is not yet implemented\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_unimp_irq_parity_imr(void *opaque, int n, int level)
|
|
|
|
{
|
|
|
|
qemu_log_mask(LOG_UNIMP,
|
|
|
|
"PMC SLCR parity interrupt behaviour "
|
|
|
|
"is not yet implemented\n");
|
|
|
|
}
|
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
static void versal_unimp(Versal *s)
|
|
|
|
{
|
2022-01-21 16:11:34 +00:00
|
|
|
qemu_irq gpio_in;
|
|
|
|
|
2018-11-02 13:19:12 +00:00
|
|
|
versal_unimp_area(s, "psm", &s->mr_ps,
|
|
|
|
MM_PSM_START, MM_PSM_END - MM_PSM_START);
|
|
|
|
versal_unimp_area(s, "crf", &s->mr_ps,
|
|
|
|
MM_FPD_CRF, MM_FPD_CRF_SIZE);
|
2021-08-23 17:38:17 +00:00
|
|
|
versal_unimp_area(s, "apu", &s->mr_ps,
|
|
|
|
MM_FPD_FPD_APU, MM_FPD_FPD_APU_SIZE);
|
2019-11-26 13:55:36 +00:00
|
|
|
versal_unimp_area(s, "crp", &s->mr_ps,
|
|
|
|
MM_PMC_CRP, MM_PMC_CRP_SIZE);
|
2018-11-02 13:19:12 +00:00
|
|
|
versal_unimp_area(s, "iou-scntr", &s->mr_ps,
|
|
|
|
MM_IOU_SCNTR, MM_IOU_SCNTR_SIZE);
|
|
|
|
versal_unimp_area(s, "iou-scntr-seucre", &s->mr_ps,
|
|
|
|
MM_IOU_SCNTRS, MM_IOU_SCNTRS_SIZE);
|
2022-01-21 16:11:34 +00:00
|
|
|
|
|
|
|
qdev_init_gpio_in_named(DEVICE(s), versal_unimp_sd_emmc_sel,
|
|
|
|
"sd-emmc-sel-dummy", 2);
|
|
|
|
qdev_init_gpio_in_named(DEVICE(s), versal_unimp_qspi_ospi_mux_sel,
|
|
|
|
"qspi-ospi-mux-sel-dummy", 1);
|
|
|
|
qdev_init_gpio_in_named(DEVICE(s), versal_unimp_irq_parity_imr,
|
|
|
|
"irq-parity-imr-dummy", 1);
|
|
|
|
|
|
|
|
gpio_in = qdev_get_gpio_in_named(DEVICE(s), "sd-emmc-sel-dummy", 0);
|
|
|
|
qdev_connect_gpio_out_named(DEVICE(&s->pmc.iou.slcr), "sd-emmc-sel", 0,
|
|
|
|
gpio_in);
|
|
|
|
|
|
|
|
gpio_in = qdev_get_gpio_in_named(DEVICE(s), "sd-emmc-sel-dummy", 1);
|
|
|
|
qdev_connect_gpio_out_named(DEVICE(&s->pmc.iou.slcr), "sd-emmc-sel", 1,
|
|
|
|
gpio_in);
|
|
|
|
|
|
|
|
gpio_in = qdev_get_gpio_in_named(DEVICE(s), "qspi-ospi-mux-sel-dummy", 0);
|
|
|
|
qdev_connect_gpio_out_named(DEVICE(&s->pmc.iou.slcr),
|
|
|
|
"qspi-ospi-mux-sel", 0,
|
|
|
|
gpio_in);
|
|
|
|
|
|
|
|
gpio_in = qdev_get_gpio_in_named(DEVICE(s), "irq-parity-imr-dummy", 0);
|
|
|
|
qdev_connect_gpio_out_named(DEVICE(&s->pmc.iou.slcr),
|
|
|
|
SYSBUS_DEVICE_GPIO_IRQ, 0,
|
|
|
|
gpio_in);
|
2018-11-02 13:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_realize(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
Versal *s = XLNX_VERSAL(dev);
|
|
|
|
qemu_irq pic[XLNX_VERSAL_NR_IRQS];
|
|
|
|
|
|
|
|
versal_create_apu_cpus(s);
|
|
|
|
versal_create_apu_gic(s, pic);
|
2022-04-06 17:43:01 +00:00
|
|
|
versal_create_rpu_cpus(s);
|
2018-11-02 13:19:12 +00:00
|
|
|
versal_create_uarts(s, pic);
|
2023-06-06 09:19:30 +00:00
|
|
|
versal_create_canfds(s, pic);
|
2020-12-03 19:22:37 +00:00
|
|
|
versal_create_usbs(s, pic);
|
2018-11-02 13:19:12 +00:00
|
|
|
versal_create_gems(s, pic);
|
2020-03-05 16:09:13 +00:00
|
|
|
versal_create_admas(s, pic);
|
2020-04-27 18:16:46 +00:00
|
|
|
versal_create_sds(s, pic);
|
2022-01-21 16:11:33 +00:00
|
|
|
versal_create_pmc_apb_irq_orgate(s, pic);
|
2020-04-27 18:16:47 +00:00
|
|
|
versal_create_rtc(s, pic);
|
2021-03-08 22:46:37 +00:00
|
|
|
versal_create_xrams(s, pic);
|
2021-09-17 05:23:56 +00:00
|
|
|
versal_create_bbram(s, pic);
|
2021-09-17 05:23:57 +00:00
|
|
|
versal_create_efuse(s, pic);
|
2022-01-21 16:11:34 +00:00
|
|
|
versal_create_pmc_iou_slcr(s, pic);
|
2022-01-21 16:11:38 +00:00
|
|
|
versal_create_ospi(s, pic);
|
2022-04-06 17:43:03 +00:00
|
|
|
versal_create_crl(s, pic);
|
2023-08-31 16:57:00 +00:00
|
|
|
versal_create_cfu(s, pic);
|
2018-11-02 13:19:12 +00:00
|
|
|
versal_map_ddr(s);
|
|
|
|
versal_unimp(s);
|
|
|
|
|
|
|
|
/* Create the On Chip Memory (OCM). */
|
|
|
|
memory_region_init_ram(&s->lpd.mr_ocm, OBJECT(s), "ocm",
|
|
|
|
MM_OCM_SIZE, &error_fatal);
|
|
|
|
|
|
|
|
memory_region_add_subregion_overlap(&s->mr_ps, MM_OCM, &s->lpd.mr_ocm, 0);
|
|
|
|
memory_region_add_subregion_overlap(&s->fpd.apu.mr, 0, &s->mr_ps, 0);
|
2022-04-06 17:43:01 +00:00
|
|
|
memory_region_add_subregion_overlap(&s->lpd.rpu.mr, 0,
|
|
|
|
&s->lpd.rpu.mr_ps_alias, 0);
|
2018-11-02 13:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void versal_init(Object *obj)
|
|
|
|
{
|
|
|
|
Versal *s = XLNX_VERSAL(obj);
|
|
|
|
|
|
|
|
memory_region_init(&s->fpd.apu.mr, obj, "mr-apu", UINT64_MAX);
|
2022-04-06 17:43:01 +00:00
|
|
|
memory_region_init(&s->lpd.rpu.mr, obj, "mr-rpu", UINT64_MAX);
|
2018-11-02 13:19:12 +00:00
|
|
|
memory_region_init(&s->mr_ps, obj, "mr-ps-switch", UINT64_MAX);
|
2022-04-06 17:43:01 +00:00
|
|
|
memory_region_init_alias(&s->lpd.rpu.mr_ps_alias, OBJECT(s),
|
|
|
|
"mr-rpu-ps-alias", &s->mr_ps, 0, UINT64_MAX);
|
2018-11-02 13:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Property versal_properties[] = {
|
|
|
|
DEFINE_PROP_LINK("ddr", Versal, cfg.mr_ddr, TYPE_MEMORY_REGION,
|
|
|
|
MemoryRegion *),
|
2023-06-06 09:19:30 +00:00
|
|
|
DEFINE_PROP_LINK("canbus0", Versal, lpd.iou.canbus[0],
|
|
|
|
TYPE_CAN_BUS, CanBusState *),
|
|
|
|
DEFINE_PROP_LINK("canbus1", Versal, lpd.iou.canbus[1],
|
|
|
|
TYPE_CAN_BUS, CanBusState *),
|
2018-11-02 13:19:12 +00:00
|
|
|
DEFINE_PROP_END_OF_LIST()
|
|
|
|
};
|
|
|
|
|
|
|
|
static void versal_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
dc->realize = versal_realize;
|
2020-01-10 15:30:32 +00:00
|
|
|
device_class_set_props(dc, versal_properties);
|
2018-11-02 13:19:12 +00:00
|
|
|
/* No VMSD since we haven't got any top-level SoC state to save. */
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo versal_info = {
|
|
|
|
.name = TYPE_XLNX_VERSAL,
|
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(Versal),
|
|
|
|
.instance_init = versal_init,
|
|
|
|
.class_init = versal_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void versal_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&versal_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(versal_register_types);
|