From 7c43feded04d5052e41c7d6caacffc3f96078f92 Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Wed, 26 Dec 2018 04:55:13 +0100 Subject: [PATCH] apu: Fix offset of scratch space PRD control word --- hw/xbox/mcpx_apu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/xbox/mcpx_apu.c b/hw/xbox/mcpx_apu.c index 78217ba6f5..7f06bf3c29 100644 --- a/hw/xbox/mcpx_apu.c +++ b/hw/xbox/mcpx_apu.c @@ -412,9 +412,9 @@ static void scratch_rw(hwaddr sge_base, unsigned int max_sge, unsigned int entry = (addr + i) / TARGET_PAGE_SIZE; assert(entry < max_sge); uint32_t prd_address = ldl_le_phys(&address_space_memory, - sge_base + entry * 8); + sge_base + entry * 8 + 0); /* uint32_t prd_control = ldl_le_phys(&address_space_memory, - sge_base + entry*4*2 + 1); */ + sge_base + entry * 8 + 4); */ hwaddr paddr = prd_address + (addr + i) % TARGET_PAGE_SIZE;