2007-09-17 01:08:06 +04:00
|
|
|
/*
|
2006-04-28 03:15:07 +04:00
|
|
|
* ARM Versatile Platform/Application Baseboard System emulation.
|
2006-04-09 05:32:52 +04:00
|
|
|
*
|
2007-04-06 20:49:48 +04:00
|
|
|
* Copyright (c) 2005-2007 CodeSourcery.
|
2006-04-09 05:32:52 +04:00
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 06:21:35 +04:00
|
|
|
* This code is licensed under the GPL.
|
2006-04-09 05:32:52 +04:00
|
|
|
*/
|
|
|
|
|
2015-12-07 19:23:45 +03: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 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2016-01-19 23:51:44 +03:00
|
|
|
#include "cpu.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/sysbus.h"
|
2019-08-12 08:23:45 +03:00
|
|
|
#include "migration/vmstate.h"
|
2019-05-23 16:47:43 +03:00
|
|
|
#include "hw/arm/boot.h"
|
2019-04-12 19:54:16 +03:00
|
|
|
#include "hw/net/smc91c111.h"
|
2012-10-24 10:43:34 +04:00
|
|
|
#include "net/net.h"
|
2012-12-17 21:20:04 +04:00
|
|
|
#include "sysemu/sysemu.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/pci/pci.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/i2c/i2c.h"
|
2020-06-17 10:25:30 +03:00
|
|
|
#include "hw/i2c/arm_sbcon_i2c.h"
|
2019-08-12 08:23:42 +03:00
|
|
|
#include "hw/irq.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/boards.h"
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "exec/address-spaces.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/block/flash.h"
|
2014-12-16 02:09:50 +03:00
|
|
|
#include "qemu/error-report.h"
|
2016-06-06 18:59:31 +03:00
|
|
|
#include "hw/char/pl011.h"
|
2012-04-16 09:02:47 +04:00
|
|
|
|
|
|
|
#define VERSATILE_FLASH_ADDR 0x34000000
|
|
|
|
#define VERSATILE_FLASH_SIZE (64 * 1024 * 1024)
|
|
|
|
#define VERSATILE_FLASH_SECT_SIZE (256 * 1024)
|
2006-04-09 05:32:52 +04:00
|
|
|
|
|
|
|
/* Primary interrupt controller. */
|
|
|
|
|
2013-07-24 11:37:20 +04:00
|
|
|
#define TYPE_VERSATILE_PB_SIC "versatilepb_sic"
|
|
|
|
#define VERSATILE_PB_SIC(obj) \
|
|
|
|
OBJECT_CHECK(vpb_sic_state, (obj), TYPE_VERSATILE_PB_SIC)
|
|
|
|
|
|
|
|
typedef struct vpb_sic_state {
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
|
|
|
MemoryRegion iomem;
|
|
|
|
uint32_t level;
|
|
|
|
uint32_t mask;
|
|
|
|
uint32_t pic_enable;
|
|
|
|
qemu_irq parent[32];
|
|
|
|
int irq;
|
2006-04-09 05:32:52 +04:00
|
|
|
} vpb_sic_state;
|
|
|
|
|
2010-12-23 20:19:52 +03:00
|
|
|
static const VMStateDescription vmstate_vpb_sic = {
|
|
|
|
.name = "versatilepb_sic",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINT32(level, vpb_sic_state),
|
|
|
|
VMSTATE_UINT32(mask, vpb_sic_state),
|
|
|
|
VMSTATE_UINT32(pic_enable, vpb_sic_state),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-04-09 05:32:52 +04:00
|
|
|
static void vpb_sic_update(vpb_sic_state *s)
|
|
|
|
{
|
|
|
|
uint32_t flags;
|
|
|
|
|
|
|
|
flags = s->level & s->mask;
|
2007-04-07 22:14:41 +04:00
|
|
|
qemu_set_irq(s->parent[s->irq], flags != 0);
|
2006-04-09 05:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void vpb_sic_update_pic(vpb_sic_state *s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint32_t mask;
|
|
|
|
|
|
|
|
for (i = 21; i <= 30; i++) {
|
|
|
|
mask = 1u << i;
|
|
|
|
if (!(s->pic_enable & mask))
|
|
|
|
continue;
|
2007-04-07 22:14:41 +04:00
|
|
|
qemu_set_irq(s->parent[i], (s->level & mask) != 0);
|
2006-04-09 05:32:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vpb_sic_set_irq(void *opaque, int irq, int level)
|
|
|
|
{
|
|
|
|
vpb_sic_state *s = (vpb_sic_state *)opaque;
|
|
|
|
if (level)
|
|
|
|
s->level |= 1u << irq;
|
|
|
|
else
|
|
|
|
s->level &= ~(1u << irq);
|
|
|
|
if (s->pic_enable & (1u << irq))
|
2007-04-07 22:14:41 +04:00
|
|
|
qemu_set_irq(s->parent[irq], level);
|
2006-04-09 05:32:52 +04:00
|
|
|
vpb_sic_update(s);
|
|
|
|
}
|
|
|
|
|
2012-10-23 14:30:10 +04:00
|
|
|
static uint64_t vpb_sic_read(void *opaque, hwaddr offset,
|
2011-10-05 20:41:32 +04:00
|
|
|
unsigned size)
|
2006-04-09 05:32:52 +04:00
|
|
|
{
|
|
|
|
vpb_sic_state *s = (vpb_sic_state *)opaque;
|
|
|
|
|
|
|
|
switch (offset >> 2) {
|
|
|
|
case 0: /* STATUS */
|
|
|
|
return s->level & s->mask;
|
|
|
|
case 1: /* RAWSTAT */
|
|
|
|
return s->level;
|
|
|
|
case 2: /* ENABLE */
|
|
|
|
return s->mask;
|
|
|
|
case 4: /* SOFTINT */
|
|
|
|
return s->level & 1;
|
|
|
|
case 8: /* PICENABLE */
|
|
|
|
return s->pic_enable;
|
|
|
|
default:
|
2006-09-23 21:40:58 +04:00
|
|
|
printf ("vpb_sic_read: Bad register offset 0x%x\n", (int)offset);
|
2006-04-09 05:32:52 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 14:30:10 +04:00
|
|
|
static void vpb_sic_write(void *opaque, hwaddr offset,
|
2011-10-05 20:41:32 +04:00
|
|
|
uint64_t value, unsigned size)
|
2006-04-09 05:32:52 +04:00
|
|
|
{
|
|
|
|
vpb_sic_state *s = (vpb_sic_state *)opaque;
|
|
|
|
|
|
|
|
switch (offset >> 2) {
|
|
|
|
case 2: /* ENSET */
|
|
|
|
s->mask |= value;
|
|
|
|
break;
|
|
|
|
case 3: /* ENCLR */
|
|
|
|
s->mask &= ~value;
|
|
|
|
break;
|
|
|
|
case 4: /* SOFTINTSET */
|
|
|
|
if (value)
|
|
|
|
s->mask |= 1;
|
|
|
|
break;
|
|
|
|
case 5: /* SOFTINTCLR */
|
|
|
|
if (value)
|
|
|
|
s->mask &= ~1u;
|
|
|
|
break;
|
|
|
|
case 8: /* PICENSET */
|
|
|
|
s->pic_enable |= (value & 0x7fe00000);
|
|
|
|
vpb_sic_update_pic(s);
|
|
|
|
break;
|
|
|
|
case 9: /* PICENCLR */
|
|
|
|
s->pic_enable &= ~value;
|
|
|
|
vpb_sic_update_pic(s);
|
|
|
|
break;
|
|
|
|
default:
|
2006-09-23 21:40:58 +04:00
|
|
|
printf ("vpb_sic_write: Bad register offset 0x%x\n", (int)offset);
|
2006-04-09 05:32:52 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
vpb_sic_update(s);
|
|
|
|
}
|
|
|
|
|
2011-10-05 20:41:32 +04:00
|
|
|
static const MemoryRegionOps vpb_sic_ops = {
|
|
|
|
.read = vpb_sic_read,
|
|
|
|
.write = vpb_sic_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2006-04-09 05:32:52 +04:00
|
|
|
};
|
|
|
|
|
2016-03-07 10:05:50 +03:00
|
|
|
static void vpb_sic_init(Object *obj)
|
2006-04-09 05:32:52 +04:00
|
|
|
{
|
2016-03-07 10:05:50 +03:00
|
|
|
DeviceState *dev = DEVICE(obj);
|
|
|
|
vpb_sic_state *s = VERSATILE_PB_SIC(obj);
|
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
|
2009-05-15 01:35:07 +04:00
|
|
|
int i;
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2013-07-24 11:37:20 +04:00
|
|
|
qdev_init_gpio_in(dev, vpb_sic_set_irq, 32);
|
2009-05-15 01:35:07 +04:00
|
|
|
for (i = 0; i < 32; i++) {
|
2013-07-24 11:37:20 +04:00
|
|
|
sysbus_init_irq(sbd, &s->parent[i]);
|
2009-05-15 01:35:07 +04:00
|
|
|
}
|
2009-05-15 01:35:07 +04:00
|
|
|
s->irq = 31;
|
2016-03-07 10:05:50 +03:00
|
|
|
memory_region_init_io(&s->iomem, obj, &vpb_sic_ops, s,
|
2013-06-07 05:25:08 +04:00
|
|
|
"vpb-sic", 0x1000);
|
2013-07-24 11:37:20 +04:00
|
|
|
sysbus_init_mmio(sbd, &s->iomem);
|
2006-04-09 05:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Board init. */
|
|
|
|
|
2006-04-28 03:15:07 +04:00
|
|
|
/* The AB and PB boards both use the same core, just with different
|
2012-08-10 23:56:46 +04:00
|
|
|
peripherals and expansion busses. For now we emulate a subset of the
|
2006-04-28 03:15:07 +04:00
|
|
|
PB peripherals and just change the board ID. */
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2008-04-15 00:27:51 +04:00
|
|
|
static struct arm_boot_info versatile_binfo;
|
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
static void versatile_init(MachineState *machine, int board_id)
|
2006-04-09 05:32:52 +04:00
|
|
|
{
|
2014-12-16 02:09:50 +03:00
|
|
|
Object *cpuobj;
|
2012-05-14 04:04:38 +04:00
|
|
|
ARMCPU *cpu;
|
2011-10-05 20:41:32 +04:00
|
|
|
MemoryRegion *sysmem = get_system_memory();
|
2009-05-15 01:35:07 +04:00
|
|
|
qemu_irq pic[32];
|
2009-05-15 01:35:07 +04:00
|
|
|
qemu_irq sic[32];
|
2011-07-22 17:42:39 +04:00
|
|
|
DeviceState *dev, *sysctl;
|
2011-09-01 21:36:53 +04:00
|
|
|
SysBusDevice *busdev;
|
2011-10-28 13:55:37 +04:00
|
|
|
DeviceState *pl041;
|
2006-05-13 20:11:23 +04:00
|
|
|
PCIBus *pci_bus;
|
|
|
|
NICInfo *nd;
|
2013-08-03 02:18:51 +04:00
|
|
|
I2CBus *i2c;
|
2006-05-13 20:11:23 +04:00
|
|
|
int n;
|
|
|
|
int done_smc = 0;
|
2012-04-16 09:02:47 +04:00
|
|
|
DriveInfo *dinfo;
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2016-10-28 16:12:31 +03:00
|
|
|
if (machine->ram_size > 0x10000000) {
|
|
|
|
/* Device starting at address 0x10000000,
|
|
|
|
* and memory cannot overlap with devices.
|
|
|
|
* Refuse to run rather than behaving very confusingly.
|
|
|
|
*/
|
|
|
|
error_report("versatilepb: memory size must not exceed 256MB");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2017-09-13 19:04:57 +03:00
|
|
|
cpuobj = object_new(machine->cpu_type);
|
2014-12-16 02:09:50 +03:00
|
|
|
|
2014-12-16 02:09:51 +03:00
|
|
|
/* By default ARM1176 CPUs have EL3 enabled. This board does not
|
|
|
|
* currently support EL3 so the CPU EL3 property is disabled before
|
|
|
|
* realization.
|
|
|
|
*/
|
|
|
|
if (object_property_find(cpuobj, "has_el3", NULL)) {
|
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 19:05:54 +03:00
|
|
|
object_property_set_bool(cpuobj, "has_el3", false, &error_fatal);
|
2014-12-16 02:09:51 +03:00
|
|
|
}
|
|
|
|
|
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 08:32:45 +03:00
|
|
|
qdev_realize(DEVICE(cpuobj), NULL, &error_fatal);
|
2014-12-16 02:09:50 +03:00
|
|
|
|
|
|
|
cpu = ARM_CPU(cpuobj);
|
|
|
|
|
2008-06-03 23:51:57 +04:00
|
|
|
/* ??? RAM should repeat to fill physical memory space. */
|
2006-04-09 05:32:52 +04:00
|
|
|
/* SDRAM at address zero. */
|
2020-02-19 19:09:05 +03:00
|
|
|
memory_region_add_subregion(sysmem, 0, machine->ram);
|
2006-04-09 05:32:52 +04:00
|
|
|
|
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 08:31:58 +03:00
|
|
|
sysctl = qdev_new("realview_sysctl");
|
2011-07-22 17:42:39 +04:00
|
|
|
qdev_prop_set_uint32(sysctl, "sys_id", 0x41007004);
|
|
|
|
qdev_prop_set_uint32(sysctl, "proc_id", 0x02000000);
|
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 08:32:34 +03:00
|
|
|
sysbus_realize_and_unref(SYS_BUS_DEVICE(sysctl), &error_fatal);
|
2013-01-20 05:47:33 +04:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(sysctl), 0, 0x10000000);
|
2011-07-22 17:42:39 +04:00
|
|
|
|
2009-05-15 01:35:07 +04:00
|
|
|
dev = sysbus_create_varargs("pl190", 0x10140000,
|
2013-08-20 17:54:30 +04:00
|
|
|
qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ),
|
|
|
|
qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_FIQ),
|
|
|
|
NULL);
|
2009-05-15 01:35:07 +04:00
|
|
|
for (n = 0; n < 32; n++) {
|
2009-05-26 17:56:11 +04:00
|
|
|
pic[n] = qdev_get_gpio_in(dev, n);
|
2009-05-15 01:35:07 +04:00
|
|
|
}
|
2013-07-24 11:37:20 +04:00
|
|
|
dev = sysbus_create_simple(TYPE_VERSATILE_PB_SIC, 0x10003000, NULL);
|
2009-05-15 01:35:07 +04:00
|
|
|
for (n = 0; n < 32; n++) {
|
2013-01-20 05:47:33 +04:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), n, pic[n]);
|
2009-05-26 17:56:11 +04:00
|
|
|
sic[n] = qdev_get_gpio_in(dev, n);
|
2009-05-15 01:35:07 +04:00
|
|
|
}
|
2009-05-15 01:35:07 +04:00
|
|
|
|
|
|
|
sysbus_create_simple("pl050_keyboard", 0x10006000, sic[3]);
|
|
|
|
sysbus_create_simple("pl050_mouse", 0x10007000, sic[4]);
|
2006-04-09 05:32:52 +04:00
|
|
|
|
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 08:31:58 +03:00
|
|
|
dev = qdev_new("versatile_pci");
|
2013-01-20 05:47:33 +04:00
|
|
|
busdev = SYS_BUS_DEVICE(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 08:32:34 +03:00
|
|
|
sysbus_realize_and_unref(busdev, &error_fatal);
|
2013-04-19 14:15:20 +04:00
|
|
|
sysbus_mmio_map(busdev, 0, 0x10001000); /* PCI controller regs */
|
|
|
|
sysbus_mmio_map(busdev, 1, 0x41000000); /* PCI self-config */
|
|
|
|
sysbus_mmio_map(busdev, 2, 0x42000000); /* PCI config */
|
|
|
|
sysbus_mmio_map(busdev, 3, 0x43000000); /* PCI I/O */
|
2013-04-19 14:15:20 +04:00
|
|
|
sysbus_mmio_map(busdev, 4, 0x44000000); /* PCI memory window 1 */
|
|
|
|
sysbus_mmio_map(busdev, 5, 0x50000000); /* PCI memory window 2 */
|
|
|
|
sysbus_mmio_map(busdev, 6, 0x60000000); /* PCI memory window 3 */
|
2011-09-01 21:36:53 +04:00
|
|
|
sysbus_connect_irq(busdev, 0, sic[27]);
|
|
|
|
sysbus_connect_irq(busdev, 1, sic[28]);
|
|
|
|
sysbus_connect_irq(busdev, 2, sic[29]);
|
|
|
|
sysbus_connect_irq(busdev, 3, sic[30]);
|
2009-05-23 03:05:19 +04:00
|
|
|
pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
|
2009-05-15 01:35:08 +04:00
|
|
|
|
2006-05-13 20:11:23 +04:00
|
|
|
for(n = 0; n < nb_nics; n++) {
|
|
|
|
nd = &nd_table[n];
|
2009-01-13 22:39:36 +03:00
|
|
|
|
2011-03-22 21:21:58 +03:00
|
|
|
if (!done_smc && (!nd->model || strcmp(nd->model, "smc91c111") == 0)) {
|
2007-04-07 22:14:41 +04:00
|
|
|
smc91c111_init(nd, 0x10010000, sic[25]);
|
2009-01-13 22:39:36 +03:00
|
|
|
done_smc = 1;
|
2006-04-09 05:32:52 +04:00
|
|
|
} else {
|
2013-06-06 12:48:51 +04:00
|
|
|
pci_nic_init_nofail(nd, pci_bus, "rtl8139", NULL);
|
2006-04-09 05:32:52 +04:00
|
|
|
}
|
|
|
|
}
|
2016-06-08 23:50:25 +03:00
|
|
|
if (machine_usb(machine)) {
|
2012-03-07 18:06:32 +04:00
|
|
|
pci_create_simple(pci_bus, -1, "pci-ohci");
|
2006-05-21 20:30:15 +04:00
|
|
|
}
|
2009-05-15 01:35:07 +04:00
|
|
|
n = drive_get_max_bus(IF_SCSI);
|
|
|
|
while (n >= 0) {
|
2018-09-19 20:20:58 +03:00
|
|
|
dev = DEVICE(pci_create_simple(pci_bus, -1, "lsi53c895a"));
|
|
|
|
lsi53c8xx_handle_legacy_cmdline(dev);
|
2009-05-15 01:35:07 +04:00
|
|
|
n--;
|
2006-05-30 05:48:12 +04:00
|
|
|
}
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2018-04-20 17:52:43 +03:00
|
|
|
pl011_create(0x101f1000, pic[12], serial_hd(0));
|
|
|
|
pl011_create(0x101f2000, pic[13], serial_hd(1));
|
|
|
|
pl011_create(0x101f3000, pic[14], serial_hd(2));
|
|
|
|
pl011_create(0x10009000, sic[6], serial_hd(3));
|
2006-04-09 05:32:52 +04:00
|
|
|
|
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 08:31:58 +03:00
|
|
|
dev = qdev_new("pl080");
|
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 19:05:54 +03:00
|
|
|
object_property_set_link(OBJECT(dev), "downstream", OBJECT(sysmem),
|
2018-08-20 13:24:33 +03:00
|
|
|
&error_fatal);
|
|
|
|
busdev = SYS_BUS_DEVICE(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 08:32:34 +03:00
|
|
|
sysbus_realize_and_unref(busdev, &error_fatal);
|
2018-08-20 13:24:33 +03:00
|
|
|
sysbus_mmio_map(busdev, 0, 0x10130000);
|
|
|
|
sysbus_connect_irq(busdev, 0, pic[17]);
|
|
|
|
|
2009-05-15 01:35:07 +04:00
|
|
|
sysbus_create_simple("sp804", 0x101e2000, pic[4]);
|
|
|
|
sysbus_create_simple("sp804", 0x101e3000, pic[5]);
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2012-10-12 14:54:39 +04:00
|
|
|
sysbus_create_simple("pl061", 0x101e4000, pic[6]);
|
|
|
|
sysbus_create_simple("pl061", 0x101e5000, pic[7]);
|
|
|
|
sysbus_create_simple("pl061", 0x101e6000, pic[8]);
|
|
|
|
sysbus_create_simple("pl061", 0x101e7000, pic[9]);
|
|
|
|
|
2006-04-09 05:32:52 +04:00
|
|
|
/* The versatile/PB actually has a modified Color LCD controller
|
|
|
|
that includes hardware cursor support from the PL111. */
|
2011-07-22 17:42:39 +04:00
|
|
|
dev = sysbus_create_simple("pl110_versatile", 0x10120000, pic[16]);
|
|
|
|
/* Wire up the mux control signals from the SYS_CLCD register */
|
|
|
|
qdev_connect_gpio_out(sysctl, 0, qdev_get_gpio_in(dev, 0));
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2009-05-15 01:35:07 +04:00
|
|
|
sysbus_create_varargs("pl181", 0x10005000, sic[22], sic[1], NULL);
|
|
|
|
sysbus_create_varargs("pl181", 0x1000b000, sic[23], sic[2], NULL);
|
2007-04-06 20:49:48 +04:00
|
|
|
|
2007-06-30 21:32:17 +04:00
|
|
|
/* Add PL031 Real Time Clock. */
|
2009-05-15 01:35:07 +04:00
|
|
|
sysbus_create_simple("pl031", 0x101e8000, pic[10]);
|
2007-06-30 21:32:17 +04:00
|
|
|
|
2020-06-17 10:25:30 +03:00
|
|
|
dev = sysbus_create_simple(TYPE_VERSATILE_I2C, 0x10002000, NULL);
|
2013-08-03 02:18:51 +04:00
|
|
|
i2c = (I2CBus *)qdev_get_child_bus(dev, "i2c");
|
2020-07-06 01:41:53 +03:00
|
|
|
i2c_slave_create_simple(i2c, "ds1338", 0x68);
|
2012-04-20 19:38:52 +04:00
|
|
|
|
2011-10-28 13:55:37 +04:00
|
|
|
/* Add PL041 AACI Interface to the LM4549 codec */
|
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 08:31:58 +03:00
|
|
|
pl041 = qdev_new("pl041");
|
2011-10-28 13:55:37 +04:00
|
|
|
qdev_prop_set_uint32(pl041, "nc_fifo_depth", 512);
|
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 08:32:34 +03:00
|
|
|
sysbus_realize_and_unref(SYS_BUS_DEVICE(pl041), &error_fatal);
|
2013-01-20 05:47:33 +04:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(pl041), 0, 0x10004000);
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(pl041), 0, sic[24]);
|
2011-10-28 13:55:37 +04:00
|
|
|
|
2006-04-28 03:15:07 +04:00
|
|
|
/* Memory map for Versatile/PB: */
|
2006-04-09 05:32:52 +04:00
|
|
|
/* 0x10000000 System registers. */
|
|
|
|
/* 0x10001000 PCI controller config registers. */
|
|
|
|
/* 0x10002000 Serial bus interface. */
|
|
|
|
/* 0x10003000 Secondary interrupt controller. */
|
|
|
|
/* 0x10004000 AACI (audio). */
|
2007-04-06 20:49:48 +04:00
|
|
|
/* 0x10005000 MMCI0. */
|
2006-04-09 05:32:52 +04:00
|
|
|
/* 0x10006000 KMI0 (keyboard). */
|
|
|
|
/* 0x10007000 KMI1 (mouse). */
|
|
|
|
/* 0x10008000 Character LCD Interface. */
|
|
|
|
/* 0x10009000 UART3. */
|
|
|
|
/* 0x1000a000 Smart card 1. */
|
2007-04-06 20:49:48 +04:00
|
|
|
/* 0x1000b000 MMCI1. */
|
2006-04-09 05:32:52 +04:00
|
|
|
/* 0x10010000 Ethernet. */
|
|
|
|
/* 0x10020000 USB. */
|
|
|
|
/* 0x10100000 SSMC. */
|
|
|
|
/* 0x10110000 MPMC. */
|
|
|
|
/* 0x10120000 CLCD Controller. */
|
|
|
|
/* 0x10130000 DMA Controller. */
|
|
|
|
/* 0x10140000 Vectored interrupt controller. */
|
|
|
|
/* 0x101d0000 AHB Monitor Interface. */
|
|
|
|
/* 0x101e0000 System Controller. */
|
|
|
|
/* 0x101e1000 Watchdog Interface. */
|
|
|
|
/* 0x101e2000 Timer 0/1. */
|
|
|
|
/* 0x101e3000 Timer 2/3. */
|
|
|
|
/* 0x101e4000 GPIO port 0. */
|
|
|
|
/* 0x101e5000 GPIO port 1. */
|
|
|
|
/* 0x101e6000 GPIO port 2. */
|
|
|
|
/* 0x101e7000 GPIO port 3. */
|
|
|
|
/* 0x101e8000 RTC. */
|
|
|
|
/* 0x101f0000 Smart card 0. */
|
|
|
|
/* 0x101f1000 UART0. */
|
|
|
|
/* 0x101f2000 UART1. */
|
|
|
|
/* 0x101f3000 UART2. */
|
|
|
|
/* 0x101f4000 SSPI. */
|
2012-04-16 09:02:47 +04:00
|
|
|
/* 0x34000000 NOR Flash */
|
|
|
|
|
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
2019-03-08 12:46:09 +03:00
|
|
|
if (!pflash_cfi01_register(VERSATILE_FLASH_ADDR, "versatile.flash",
|
2014-10-07 15:59:13 +04:00
|
|
|
VERSATILE_FLASH_SIZE,
|
2014-10-07 15:59:18 +04:00
|
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
2012-04-16 09:02:47 +04:00
|
|
|
VERSATILE_FLASH_SECT_SIZE,
|
|
|
|
4, 0x0089, 0x0018, 0x0000, 0x0, 0)) {
|
|
|
|
fprintf(stderr, "qemu: Error registering flash memory.\n");
|
|
|
|
}
|
2006-04-09 05:32:52 +04:00
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
versatile_binfo.ram_size = machine->ram_size;
|
2008-04-15 00:27:51 +04:00
|
|
|
versatile_binfo.board_id = board_id;
|
2019-08-09 09:57:21 +03:00
|
|
|
arm_load_kernel(cpu, machine, &versatile_binfo);
|
2006-04-28 03:15:07 +04:00
|
|
|
}
|
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
static void vpb_init(MachineState *machine)
|
2006-04-28 03:15:07 +04:00
|
|
|
{
|
2014-05-07 18:42:57 +04:00
|
|
|
versatile_init(machine, 0x183);
|
2006-04-28 03:15:07 +04:00
|
|
|
}
|
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
static void vab_init(MachineState *machine)
|
2006-04-28 03:15:07 +04:00
|
|
|
{
|
2014-05-07 18:42:57 +04:00
|
|
|
versatile_init(machine, 0x25e);
|
2006-04-09 05:32:52 +04:00
|
|
|
}
|
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static void versatilepb_class_init(ObjectClass *oc, void *data)
|
2015-09-04 21:37:08 +03:00
|
|
|
{
|
2015-09-19 11:49:44 +03:00
|
|
|
MachineClass *mc = MACHINE_CLASS(oc);
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
mc->desc = "ARM Versatile/PB (ARM926EJ-S)";
|
|
|
|
mc->init = vpb_init;
|
|
|
|
mc->block_default_type = IF_SCSI;
|
2017-09-07 15:54:54 +03:00
|
|
|
mc->ignore_memory_transaction_failures = true;
|
2017-09-13 19:04:57 +03:00
|
|
|
mc->default_cpu_type = ARM_CPU_TYPE_NAME("arm926");
|
2020-02-19 19:09:05 +03:00
|
|
|
mc->default_ram_id = "versatile.ram";
|
2015-09-04 21:37:08 +03:00
|
|
|
}
|
2006-04-28 03:15:07 +04:00
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static const TypeInfo versatilepb_type = {
|
|
|
|
.name = MACHINE_TYPE_NAME("versatilepb"),
|
|
|
|
.parent = TYPE_MACHINE,
|
|
|
|
.class_init = versatilepb_class_init,
|
|
|
|
};
|
2009-05-15 01:35:07 +04:00
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static void versatileab_class_init(ObjectClass *oc, void *data)
|
2009-05-21 03:38:09 +04:00
|
|
|
{
|
2015-09-19 11:49:44 +03:00
|
|
|
MachineClass *mc = MACHINE_CLASS(oc);
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
mc->desc = "ARM Versatile/AB (ARM926EJ-S)";
|
|
|
|
mc->init = vab_init;
|
|
|
|
mc->block_default_type = IF_SCSI;
|
2017-09-07 15:54:54 +03:00
|
|
|
mc->ignore_memory_transaction_failures = true;
|
2017-09-13 19:04:57 +03:00
|
|
|
mc->default_cpu_type = ARM_CPU_TYPE_NAME("arm926");
|
2020-02-19 19:09:05 +03:00
|
|
|
mc->default_ram_id = "versatile.ram";
|
2009-05-21 03:38:09 +04:00
|
|
|
}
|
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static const TypeInfo versatileab_type = {
|
|
|
|
.name = MACHINE_TYPE_NAME("versatileab"),
|
|
|
|
.parent = TYPE_MACHINE,
|
|
|
|
.class_init = versatileab_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void versatile_machine_init(void)
|
|
|
|
{
|
|
|
|
type_register_static(&versatilepb_type);
|
|
|
|
type_register_static(&versatileab_type);
|
|
|
|
}
|
|
|
|
|
2016-02-16 23:59:04 +03:00
|
|
|
type_init(versatile_machine_init)
|
2009-05-21 03:38:09 +04:00
|
|
|
|
2012-01-24 23:12:29 +04:00
|
|
|
static void vpb_sic_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 07:34:16 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-01-24 23:12:29 +04:00
|
|
|
|
2011-12-08 07:34:16 +04:00
|
|
|
dc->vmsd = &vmstate_vpb_sic;
|
2012-01-24 23:12:29 +04:00
|
|
|
}
|
|
|
|
|
2013-01-10 19:19:07 +04:00
|
|
|
static const TypeInfo vpb_sic_info = {
|
2013-07-24 11:37:20 +04:00
|
|
|
.name = TYPE_VERSATILE_PB_SIC,
|
2011-12-08 07:34:16 +04:00
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(vpb_sic_state),
|
2016-03-07 10:05:50 +03:00
|
|
|
.instance_init = vpb_sic_init,
|
2011-12-08 07:34:16 +04:00
|
|
|
.class_init = vpb_sic_class_init,
|
2010-12-23 20:19:52 +03:00
|
|
|
};
|
|
|
|
|
2012-02-09 18:20:55 +04:00
|
|
|
static void versatilepb_register_types(void)
|
2009-05-15 01:35:07 +04:00
|
|
|
{
|
2011-12-08 07:34:16 +04:00
|
|
|
type_register_static(&vpb_sic_info);
|
2009-05-15 01:35:07 +04:00
|
|
|
}
|
|
|
|
|
2012-02-09 18:20:55 +04:00
|
|
|
type_init(versatilepb_register_types)
|