mirror of https://github.com/xqemu/xqemu.git
arm_timer: convert to memory API
Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
460d7c53cd
commit
e219dea2f3
|
@ -176,6 +176,7 @@ static arm_timer_state *arm_timer_init(uint32_t freq)
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
SysBusDevice busdev;
|
SysBusDevice busdev;
|
||||||
|
MemoryRegion iomem;
|
||||||
arm_timer_state *timer[2];
|
arm_timer_state *timer[2];
|
||||||
int level[2];
|
int level[2];
|
||||||
qemu_irq irq;
|
qemu_irq irq;
|
||||||
|
@ -190,7 +191,8 @@ static void sp804_set_irq(void *opaque, int irq, int level)
|
||||||
qemu_set_irq(s->irq, s->level[0] || s->level[1]);
|
qemu_set_irq(s->irq, s->level[0] || s->level[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t sp804_read(void *opaque, target_phys_addr_t offset)
|
static uint64_t sp804_read(void *opaque, target_phys_addr_t offset,
|
||||||
|
unsigned size)
|
||||||
{
|
{
|
||||||
sp804_state *s = (sp804_state *)opaque;
|
sp804_state *s = (sp804_state *)opaque;
|
||||||
|
|
||||||
|
@ -203,7 +205,7 @@ static uint32_t sp804_read(void *opaque, target_phys_addr_t offset)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sp804_write(void *opaque, target_phys_addr_t offset,
|
static void sp804_write(void *opaque, target_phys_addr_t offset,
|
||||||
uint32_t value)
|
uint64_t value, unsigned size)
|
||||||
{
|
{
|
||||||
sp804_state *s = (sp804_state *)opaque;
|
sp804_state *s = (sp804_state *)opaque;
|
||||||
|
|
||||||
|
@ -214,19 +216,12 @@ static void sp804_write(void *opaque, target_phys_addr_t offset,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static CPUReadMemoryFunc * const sp804_readfn[] = {
|
static const MemoryRegionOps sp804_ops = {
|
||||||
sp804_read,
|
.read = sp804_read,
|
||||||
sp804_read,
|
.write = sp804_write,
|
||||||
sp804_read
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
||||||
};
|
};
|
||||||
|
|
||||||
static CPUWriteMemoryFunc * const sp804_writefn[] = {
|
|
||||||
sp804_write,
|
|
||||||
sp804_write,
|
|
||||||
sp804_write
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
static const VMStateDescription vmstate_sp804 = {
|
static const VMStateDescription vmstate_sp804 = {
|
||||||
.name = "sp804",
|
.name = "sp804",
|
||||||
.version_id = 1,
|
.version_id = 1,
|
||||||
|
@ -240,7 +235,6 @@ static const VMStateDescription vmstate_sp804 = {
|
||||||
|
|
||||||
static int sp804_init(SysBusDevice *dev)
|
static int sp804_init(SysBusDevice *dev)
|
||||||
{
|
{
|
||||||
int iomemtype;
|
|
||||||
sp804_state *s = FROM_SYSBUS(sp804_state, dev);
|
sp804_state *s = FROM_SYSBUS(sp804_state, dev);
|
||||||
qemu_irq *qi;
|
qemu_irq *qi;
|
||||||
|
|
||||||
|
@ -252,9 +246,8 @@ static int sp804_init(SysBusDevice *dev)
|
||||||
s->timer[1] = arm_timer_init(1000000);
|
s->timer[1] = arm_timer_init(1000000);
|
||||||
s->timer[0]->irq = qi[0];
|
s->timer[0]->irq = qi[0];
|
||||||
s->timer[1]->irq = qi[1];
|
s->timer[1]->irq = qi[1];
|
||||||
iomemtype = cpu_register_io_memory(sp804_readfn,
|
memory_region_init_io(&s->iomem, &sp804_ops, s, "sp804", 0x1000);
|
||||||
sp804_writefn, s, DEVICE_NATIVE_ENDIAN);
|
sysbus_init_mmio_region(dev, &s->iomem);
|
||||||
sysbus_init_mmio(dev, 0x1000, iomemtype);
|
|
||||||
vmstate_register(&dev->qdev, -1, &vmstate_sp804, s);
|
vmstate_register(&dev->qdev, -1, &vmstate_sp804, s);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -264,10 +257,12 @@ static int sp804_init(SysBusDevice *dev)
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
SysBusDevice busdev;
|
SysBusDevice busdev;
|
||||||
|
MemoryRegion iomem;
|
||||||
arm_timer_state *timer[3];
|
arm_timer_state *timer[3];
|
||||||
} icp_pit_state;
|
} icp_pit_state;
|
||||||
|
|
||||||
static uint32_t icp_pit_read(void *opaque, target_phys_addr_t offset)
|
static uint64_t icp_pit_read(void *opaque, target_phys_addr_t offset,
|
||||||
|
unsigned size)
|
||||||
{
|
{
|
||||||
icp_pit_state *s = (icp_pit_state *)opaque;
|
icp_pit_state *s = (icp_pit_state *)opaque;
|
||||||
int n;
|
int n;
|
||||||
|
@ -282,7 +277,7 @@ static uint32_t icp_pit_read(void *opaque, target_phys_addr_t offset)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void icp_pit_write(void *opaque, target_phys_addr_t offset,
|
static void icp_pit_write(void *opaque, target_phys_addr_t offset,
|
||||||
uint32_t value)
|
uint64_t value, unsigned size)
|
||||||
{
|
{
|
||||||
icp_pit_state *s = (icp_pit_state *)opaque;
|
icp_pit_state *s = (icp_pit_state *)opaque;
|
||||||
int n;
|
int n;
|
||||||
|
@ -295,22 +290,14 @@ static void icp_pit_write(void *opaque, target_phys_addr_t offset,
|
||||||
arm_timer_write(s->timer[n], offset & 0xff, value);
|
arm_timer_write(s->timer[n], offset & 0xff, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const MemoryRegionOps icp_pit_ops = {
|
||||||
static CPUReadMemoryFunc * const icp_pit_readfn[] = {
|
.read = icp_pit_read,
|
||||||
icp_pit_read,
|
.write = icp_pit_write,
|
||||||
icp_pit_read,
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
||||||
icp_pit_read
|
|
||||||
};
|
|
||||||
|
|
||||||
static CPUWriteMemoryFunc * const icp_pit_writefn[] = {
|
|
||||||
icp_pit_write,
|
|
||||||
icp_pit_write,
|
|
||||||
icp_pit_write
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static int icp_pit_init(SysBusDevice *dev)
|
static int icp_pit_init(SysBusDevice *dev)
|
||||||
{
|
{
|
||||||
int iomemtype;
|
|
||||||
icp_pit_state *s = FROM_SYSBUS(icp_pit_state, dev);
|
icp_pit_state *s = FROM_SYSBUS(icp_pit_state, dev);
|
||||||
|
|
||||||
/* Timer 0 runs at the system clock speed (40MHz). */
|
/* Timer 0 runs at the system clock speed (40MHz). */
|
||||||
|
@ -323,10 +310,8 @@ static int icp_pit_init(SysBusDevice *dev)
|
||||||
sysbus_init_irq(dev, &s->timer[1]->irq);
|
sysbus_init_irq(dev, &s->timer[1]->irq);
|
||||||
sysbus_init_irq(dev, &s->timer[2]->irq);
|
sysbus_init_irq(dev, &s->timer[2]->irq);
|
||||||
|
|
||||||
iomemtype = cpu_register_io_memory(icp_pit_readfn,
|
memory_region_init_io(&s->iomem, &icp_pit_ops, s, "icp_pit", 0x1000);
|
||||||
icp_pit_writefn, s,
|
sysbus_init_mmio_region(dev, &s->iomem);
|
||||||
DEVICE_NATIVE_ENDIAN);
|
|
||||||
sysbus_init_mmio(dev, 0x1000, iomemtype);
|
|
||||||
/* This device has no state to save/restore. The component timers will
|
/* This device has no state to save/restore. The component timers will
|
||||||
save themselves. */
|
save themselves. */
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue