mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
target/xtensa: fix mapping direction in read/write simcalls
Read and write simcalls map physical memory to access I/O buffers, but 'read' simcall need to map it for writing and 'write' simcall need to map it for reading, i.e. the opposite of what they do now. Fix that. Cc: qemu-stable@nongnu.org Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
parent
a0d4aac746
commit
30c2afd151
1 changed files with 2 additions and 2 deletions
|
@ -173,7 +173,7 @@ void HELPER(simcall)(CPUXtensaState *env)
|
||||||
TARGET_PAGE_SIZE - (vaddr & (TARGET_PAGE_SIZE - 1));
|
TARGET_PAGE_SIZE - (vaddr & (TARGET_PAGE_SIZE - 1));
|
||||||
uint32_t io_sz = page_left < len ? page_left : len;
|
uint32_t io_sz = page_left < len ? page_left : len;
|
||||||
hwaddr sz = io_sz;
|
hwaddr sz = io_sz;
|
||||||
void *buf = cpu_physical_memory_map(paddr, &sz, is_write);
|
void *buf = cpu_physical_memory_map(paddr, &sz, !is_write);
|
||||||
|
|
||||||
if (buf) {
|
if (buf) {
|
||||||
vaddr += io_sz;
|
vaddr += io_sz;
|
||||||
|
@ -182,7 +182,7 @@ void HELPER(simcall)(CPUXtensaState *env)
|
||||||
write(fd, buf, io_sz) :
|
write(fd, buf, io_sz) :
|
||||||
read(fd, buf, io_sz);
|
read(fd, buf, io_sz);
|
||||||
regs[3] = errno_h2g(errno);
|
regs[3] = errno_h2g(errno);
|
||||||
cpu_physical_memory_unmap(buf, sz, is_write, sz);
|
cpu_physical_memory_unmap(buf, sz, !is_write, sz);
|
||||||
if (regs[2] == -1) {
|
if (regs[2] == -1) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue