mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
new physical memory access API (used by DMA accesses)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@645 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
b448f2f36c
commit
8b1f24b090
2 changed files with 16 additions and 5 deletions
17
cpu-all.h
17
cpu-all.h
|
@ -599,10 +599,21 @@ int cpu_register_io_memory(int io_index,
|
|||
CPUReadMemoryFunc **mem_read,
|
||||
CPUWriteMemoryFunc **mem_write);
|
||||
|
||||
void cpu_physical_memory_rw(CPUState *env, uint8_t *buf, target_ulong addr,
|
||||
void cpu_physical_memory_rw(target_ulong addr, uint8_t *buf,
|
||||
int len, int is_write);
|
||||
int cpu_memory_rw_debug(CPUState *env,
|
||||
uint8_t *buf, target_ulong addr, int len, int is_write);
|
||||
static inline void cpu_physical_memory_read(target_ulong addr, uint8_t *buf,
|
||||
int len)
|
||||
{
|
||||
cpu_physical_memory_rw(addr, buf, len, 0);
|
||||
}
|
||||
static inline void cpu_physical_memory_write(target_ulong addr, const uint8_t *buf,
|
||||
int len)
|
||||
{
|
||||
cpu_physical_memory_rw(addr, (uint8_t *)buf, len, 1);
|
||||
}
|
||||
|
||||
int cpu_memory_rw_debug(CPUState *env, target_ulong addr,
|
||||
uint8_t *buf, int len, int is_write);
|
||||
|
||||
/* read dirty bit (return 0 or 1) */
|
||||
static inline int cpu_physical_memory_is_dirty(target_ulong addr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue