From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MaygT-0003NS-2m for qemu-devel@nongnu.org; Tue, 11 Aug 2009 17:15:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MaygO-0003Lf-3Q for qemu-devel@nongnu.org; Tue, 11 Aug 2009 17:15:04 -0400 Received: from [199.232.76.173] (port=33561 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MaygN-0003LY-VC for qemu-devel@nongnu.org; Tue, 11 Aug 2009 17:15:00 -0400 Received: from mail.gmx.net ([213.165.64.20]:35074) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MaygN-0001qn-Gi for qemu-devel@nongnu.org; Tue, 11 Aug 2009 17:14:59 -0400 Date: Tue, 11 Aug 2009 23:14:56 +0200 From: Reimar =?iso-8859-1?Q?D=F6ffinger?= Message-ID: <20090811211456.GC10500@1und1.de> References: <4A81D3F1.1040300@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4A81D3F1.1040300@codemonkey.ws> Subject: [Qemu-devel] [PATCH 2/5] Hack to make sure that drivers like AppleIntel8255x will not meddle with the RU/CU state when the ACK the interrupt with a 16 bit write. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch ensures that a driver will not accidentally/incorrectly change the RU/CU state with a write. This is incomplete and a bit ugly, but good enough for these drivers. The reason this is an issue is that the drivers ACK interrupts with a 16 bit write to the status word, with the lower bits having a value of 0. Signed-off-by: Reimar Döffinger --- hw/eepro100.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/hw/eepro100.c b/hw/eepro100.c index bf5d920..f619d36 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -1249,7 +1249,11 @@ static void eepro100_write1(EEPRO100State * s, uint32_t addr, uint8_t val) static void eepro100_write2(EEPRO100State * s, uint32_t addr, uint16_t val) { if (addr <= sizeof(s->mem) - sizeof(val)) { + ru_state_t rtmp = get_ru_state(s); + cu_state_t ctmp = get_cu_state(s); memcpy(&s->mem[addr], &val, sizeof(val)); + set_cu_state(s, ctmp); + set_ru_state(s, rtmp); } logout("addr=%s val=0x%04x\n", regname(addr), val); -- 1.6.4