diff options
author | Avi Kivity <avi@redhat.com> | 2011-07-26 14:26:08 +0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-07-29 08:25:43 -0500 |
commit | 658b2224017b5c5fdc60969fa2f0798781b0cb3f (patch) | |
tree | cf6f1fd6c226d64a3fa7a22e10814ca032743ffb /exec-memory.h | |
parent | 16ef61c9e56657d39760e5ad6b9f5361f00b2083 (diff) |
memory: I/O address space support
Allow registering I/O ports via the same mechanism as mmio ranges.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'exec-memory.h')
-rw-r--r-- | exec-memory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/exec-memory.h b/exec-memory.h index aea1b45654..c439aba3d1 100644 --- a/exec-memory.h +++ b/exec-memory.h @@ -31,6 +31,9 @@ MemoryRegion *get_system_memory(void); /* Set the root memory region. This region is the system memory map. */ void set_system_memory_map(MemoryRegion *mr); +/* Set the I/O memory region. This region is the I/O memory map. */ +void set_system_io_map(MemoryRegion *mr); + #endif #endif |