sh4/r2d: convert to new MMIO accessor style
The documentation is clear to use 16-bit accesses for all registers. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
e42fd944f0
commit
563807520f
12
hw/sh4/r2d.c
12
hw/sh4/r2d.c
@ -127,7 +127,7 @@ static void r2d_fpga_irq_set(void *opaque, int n, int level)
|
|||||||
update_irl(fpga);
|
update_irl(fpga);
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t r2d_fpga_read(void *opaque, hwaddr addr)
|
static uint64_t r2d_fpga_read(void *opaque, hwaddr addr, unsigned int size)
|
||||||
{
|
{
|
||||||
r2d_fpga_t *s = opaque;
|
r2d_fpga_t *s = opaque;
|
||||||
|
|
||||||
@ -146,7 +146,7 @@ static uint32_t r2d_fpga_read(void *opaque, hwaddr addr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
r2d_fpga_write(void *opaque, hwaddr addr, uint32_t value)
|
r2d_fpga_write(void *opaque, hwaddr addr, uint64_t value, unsigned int size)
|
||||||
{
|
{
|
||||||
r2d_fpga_t *s = opaque;
|
r2d_fpga_t *s = opaque;
|
||||||
|
|
||||||
@ -170,10 +170,10 @@ r2d_fpga_write(void *opaque, hwaddr addr, uint32_t value)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const MemoryRegionOps r2d_fpga_ops = {
|
static const MemoryRegionOps r2d_fpga_ops = {
|
||||||
.old_mmio = {
|
.read = r2d_fpga_read,
|
||||||
.read = { r2d_fpga_read, r2d_fpga_read, NULL, },
|
.write = r2d_fpga_write,
|
||||||
.write = { r2d_fpga_write, r2d_fpga_write, NULL, },
|
.impl.min_access_size = 2,
|
||||||
},
|
.impl.max_access_size = 2,
|
||||||
.endianness = DEVICE_NATIVE_ENDIAN,
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user