* [Qemu-devel] [PATCH v3 1/2] memory: Provide separate handling of unassigned io ports accesses
2013-09-02 16:43 [Qemu-devel] [PATCH v3 0/2] Fix unassigned memory and I/O access handling Jan Kiszka
@ 2013-09-02 16:43 ` Jan Kiszka
2013-09-02 16:43 ` [Qemu-devel] [PATCH v3 2/2] Revert "memory: Return -1 again on reads from unsigned regions" Jan Kiszka
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Jan Kiszka @ 2013-09-02 16:43 UTC (permalink / raw)
To: qemu-devel, Anthony Liguori
Cc: Paolo Bonzini, qemu-stable, Andreas Färber, Peter Maydell
Accesses to unassigned io ports shall return -1 on read and be ignored
on write. Ensure these properties via dedicated ops, decoupling us from
the memory core's handling of unassigned accesses.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
exec.c | 3 ++-
include/exec/ioport.h | 4 ++++
ioport.c | 16 ++++++++++++++++
3 files changed, 22 insertions(+), 1 deletion(-)
diff --git a/exec.c b/exec.c
index 3ca9381..9ed598f 100644
--- a/exec.c
+++ b/exec.c
@@ -1820,7 +1820,8 @@ static void memory_map_init(void)
address_space_init(&address_space_memory, system_memory, "memory");
system_io = g_malloc(sizeof(*system_io));
- memory_region_init(system_io, NULL, "io", 65536);
+ memory_region_init_io(system_io, NULL, &unassigned_io_ops, NULL, "io",
+ 65536);
address_space_init(&address_space_io, system_io, "I/O");
memory_listener_register(&core_memory_listener, &address_space_memory);
diff --git a/include/exec/ioport.h b/include/exec/ioport.h
index bdd4e96..b3848be 100644
--- a/include/exec/ioport.h
+++ b/include/exec/ioport.h
@@ -45,6 +45,10 @@ typedef struct MemoryRegionPortio {
#define PORTIO_END_OF_LIST() { }
+#ifndef CONFIG_USER_ONLY
+extern const MemoryRegionOps unassigned_io_ops;
+#endif
+
void cpu_outb(pio_addr_t addr, uint8_t val);
void cpu_outw(pio_addr_t addr, uint16_t val);
void cpu_outl(pio_addr_t addr, uint32_t val);
diff --git a/ioport.c b/ioport.c
index 79b7f1a..707cce8 100644
--- a/ioport.c
+++ b/ioport.c
@@ -44,6 +44,22 @@ typedef struct MemoryRegionPortioList {
MemoryRegionPortio ports[];
} MemoryRegionPortioList;
+static uint64_t unassigned_io_read(void *opaque, hwaddr addr, unsigned size)
+{
+ return -1ULL;
+}
+
+static void unassigned_io_write(void *opaque, hwaddr addr, uint64_t val,
+ unsigned size)
+{
+}
+
+const MemoryRegionOps unassigned_io_ops = {
+ .read = unassigned_io_read,
+ .write = unassigned_io_write,
+ .endianness = DEVICE_NATIVE_ENDIAN,
+};
+
void cpu_outb(pio_addr_t addr, uint8_t val)
{
LOG_IOPORT("outb: %04"FMT_pioaddr" %02"PRIx8"\n", addr, val);
--
1.8.1.1.298.ge7eed54
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH v3 2/2] Revert "memory: Return -1 again on reads from unsigned regions"
2013-09-02 16:43 [Qemu-devel] [PATCH v3 0/2] Fix unassigned memory and I/O access handling Jan Kiszka
2013-09-02 16:43 ` [Qemu-devel] [PATCH v3 1/2] memory: Provide separate handling of unassigned io ports accesses Jan Kiszka
@ 2013-09-02 16:43 ` Jan Kiszka
2013-09-02 17:25 ` [Qemu-devel] [PATCH v3 0/2] Fix unassigned memory and I/O access handling Peter Maydell
2013-09-03 9:59 ` Andreas Färber
3 siblings, 0 replies; 5+ messages in thread
From: Jan Kiszka @ 2013-09-02 16:43 UTC (permalink / raw)
To: qemu-devel, Anthony Liguori
Cc: Paolo Bonzini, qemu-stable, Andreas Färber, Peter Maydell
This reverts commit 9b8c69243585a32d14b9bb9fcd52c37b0b5a1b71.
The commit was wrong: We only return -1 on invalid accesses, not on
valid but unbacked ones. This broke various corner cases.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
memory.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/memory.c b/memory.c
index 886f838..5a10fd0 100644
--- a/memory.c
+++ b/memory.c
@@ -872,7 +872,7 @@ static uint64_t unassigned_mem_read(void *opaque, hwaddr addr,
if (current_cpu != NULL) {
cpu_unassigned_access(current_cpu, addr, false, false, 0, size);
}
- return -1ULL;
+ return 0;
}
static void unassigned_mem_write(void *opaque, hwaddr addr,
--
1.8.1.1.298.ge7eed54
^ permalink raw reply related [flat|nested] 5+ messages in thread