From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=53736 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PFlk2-0005Dy-Kk for qemu-devel@nongnu.org; Tue, 09 Nov 2010 05:47:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PFlk1-0002nF-Jt for qemu-devel@nongnu.org; Tue, 09 Nov 2010 05:47:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:1230) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PFlk1-0002mw-C6 for qemu-devel@nongnu.org; Tue, 09 Nov 2010 05:47:53 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oA9AlqgD015084 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 9 Nov 2010 05:47:52 -0500 From: Gerd Hoffmann Date: Tue, 9 Nov 2010 11:47:47 +0100 Message-Id: <1289299669-5504-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1289299669-5504-1-git-send-email-kraxel@redhat.com> References: <1289299669-5504-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 4/6] intel-hda: update irq status on WAKEEN changes. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann When the guest updates the WAKEEN register we must re-calculate the IRQ status. Signed-off-by: Gerd Hoffmann --- hw/intel-hda.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/hw/intel-hda.c b/hw/intel-hda.c index 2c1ef12..e478e67 100644 --- a/hw/intel-hda.c +++ b/hw/intel-hda.c @@ -508,6 +508,11 @@ static void intel_hda_set_g_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32 } } +static void intel_hda_set_wake_en(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old) +{ + intel_hda_update_irq(d); +} + static void intel_hda_set_state_sts(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old) { intel_hda_update_irq(d); @@ -630,6 +635,7 @@ static const struct IntelHDAReg regtab[] = { .size = 2, .wmask = 0x3fff, .offset = offsetof(IntelHDAState, wake_en), + .whandler = intel_hda_set_wake_en, }, [ ICH6_REG_STATESTS ] = { .name = "STATESTS", -- 1.7.1