From: bellard Date: Tue, 4 Jul 2006 09:47:34 +0000 (+0000) Subject: fix for IO_MEM_ROMD support X-Git-Tag: release_0_9_1~1860 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=52558a47f4c5579e12814e878cebd7b418acdfaa;p=qemu-xen-4.4-testing.git fix for IO_MEM_ROMD support --- diff --git a/exec.c b/exec.c index dd42f77d8..88acff091 100644 --- a/exec.c +++ b/exec.c @@ -1513,9 +1513,11 @@ int tlb_set_page_exec(CPUState *env, target_ulong vaddr, te->addr_code = -1; } if (prot & PAGE_WRITE) { - if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_ROM) { - /* ROM: access is ignored (same as unassigned) */ - te->addr_write = vaddr | IO_MEM_ROM; + if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_ROM || + (pd & IO_MEM_ROMD)) { + /* write access calls the I/O callback */ + te->addr_write = vaddr | + (pd & ~(TARGET_PAGE_MASK | IO_MEM_ROMD)); } else if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_RAM && !cpu_physical_memory_is_dirty(pd)) { te->addr_write = vaddr | IO_MEM_NOTDIRTY;