[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v7 06/42] hw/intc/armv7m_nic: Access MemoryRegion wi
From: |
tony.nguyen |
Subject: |
[Qemu-devel] [PATCH v7 06/42] hw/intc/armv7m_nic: Access MemoryRegion with MemOp |
Date: |
Fri, 16 Aug 2019 07:28:29 +0000 |
The memory_region_dispatch_{read|write} operand "unsigned size" is
being converted into a "MemOp op".
Convert interfaces by using no-op size_memop.
After all interfaces are converted, size_memop will be implemented
and the memory_region_dispatch_{read|write} operand "unsigned size"
will be converted into a "MemOp op".
As size_memop is a no-op, this patch does not change any behaviour.
Signed-off-by: Tony Nguyen <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
---
hw/intc/armv7m_nvic.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
index 9f8f0d3..237ccef 100644
--- a/hw/intc/armv7m_nvic.c
+++ b/hw/intc/armv7m_nvic.c
@@ -18,6 +18,7 @@
#include "hw/intc/armv7m_nvic.h"
#include "target/arm/cpu.h"
#include "exec/exec-all.h"
+#include "exec/memop.h"
#include "qemu/log.h"
#include "qemu/module.h"
#include "trace.h"
@@ -2345,7 +2346,8 @@ static MemTxResult nvic_sysreg_ns_write(void *opaque,
hwaddr addr,
if (attrs.secure) {
/* S accesses to the alias act like NS accesses to the real region */
attrs.secure = 0;
- return memory_region_dispatch_write(mr, addr, value, size, attrs);
+ return memory_region_dispatch_write(mr, addr, value, size_memop(size),
+ attrs);
} else {
/* NS attrs are RAZ/WI for privileged, and BusFault for user */
if (attrs.user) {
@@ -2364,7 +2366,8 @@ static MemTxResult nvic_sysreg_ns_read(void *opaque,
hwaddr addr,
if (attrs.secure) {
/* S accesses to the alias act like NS accesses to the real region */
attrs.secure = 0;
- return memory_region_dispatch_read(mr, addr, data, size, attrs);
+ return memory_region_dispatch_read(mr, addr, data, size_memop(size),
+ attrs);
} else {
/* NS attrs are RAZ/WI for privileged, and BusFault for user */
if (attrs.user) {
@@ -2390,7 +2393,8 @@ static MemTxResult nvic_systick_write(void *opaque,
hwaddr addr,
/* Direct the access to the correct systick */
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(&s->systick[attrs.secure]), 0);
- return memory_region_dispatch_write(mr, addr, value, size, attrs);
+ return memory_region_dispatch_write(mr, addr, value, size_memop(size),
+ attrs);
}
static MemTxResult nvic_systick_read(void *opaque, hwaddr addr,
@@ -2402,7 +2406,7 @@ static MemTxResult nvic_systick_read(void *opaque, hwaddr
addr,
/* Direct the access to the correct systick */
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(&s->systick[attrs.secure]), 0);
- return memory_region_dispatch_read(mr, addr, data, size, attrs);
+ return memory_region_dispatch_read(mr, addr, data, size_memop(size),
attrs);
}
static const MemoryRegionOps nvic_systick_ops = {
--
1.8.3.1
?
- [Qemu-devel] [PATCH v7 00/42] Invert Endian bit in SPARCv9 MMU TTE, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 01/42] configure: Define TARGET_ALIGNED_ONLY, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 03/42] memory: Introduce size_memop, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 04/42] target/mips: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 05/42] hw/s390x: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 06/42] hw/intc/armv7m_nic: Access MemoryRegion with MemOp,
tony.nguyen <=
- [Qemu-devel] [PATCH v7 02/42] tcg: TCGMemOp is now accelerator independent MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 07/42] hw/virtio: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 08/42] hw/vfio: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 09/42] exec: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 10/42] cputlb: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 11/42] memory: Access MemoryRegion with MemOp, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 12/42] hw/s390x: Hard code size with MO_{8|16|32|64}, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 13/42] target/mips: Hard code size with MO_{8|16|32|64}, tony.nguyen, 2019/08/16
- [Qemu-devel] [PATCH v7 14/42] exec: Hard code size with MO_{8|16|32|64}, tony.nguyen, 2019/08/16