From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RySLy-000222-CF for qemu-devel@nongnu.org; Fri, 17 Feb 2012 13:16:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RySLr-0002fY-OH for qemu-devel@nongnu.org; Fri, 17 Feb 2012 13:16:18 -0500 Received: from e33.co.us.ibm.com ([32.97.110.151]:43763) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RySLr-0002f4-Gu for qemu-devel@nongnu.org; Fri, 17 Feb 2012 13:16:11 -0500 Received: from /spool/local by e33.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 17 Feb 2012 11:16:06 -0700 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id 09557C90052 for ; Fri, 17 Feb 2012 13:15:15 -0500 (EST) Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q1HIFD8c306806 for ; Fri, 17 Feb 2012 13:15:14 -0500 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q1HIFBJs024579 for ; Fri, 17 Feb 2012 11:15:11 -0700 Message-ID: <4F3E9924.8070904@us.ibm.com> Date: Fri, 17 Feb 2012 12:15:00 -0600 From: Anthony Liguori MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v4 0/7] pit, hpet, pcspk: fixes & preparation for KVM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: kvm , Marcelo Tosatti , qemu-devel , Blue Swirl , Avi Kivity , Paolo Bonzini On 02/01/2012 01:31 PM, Jan Kiszka wrote: > Changes in V4: > - rebased over qom-upstream.13 > - comment on rtc_irq_level clearing on reset > - fix call to isa_register_ioport by passing the pcspk device > > Not changed: > - PIT pointer property of pcspk > (Paolo will port it together with other PROP_PTR users) > > CC: Paolo Bonzini Applied. Thanks. Regards, Anthony Liguori > > Jan Kiszka (7): > i8254: Do not raise IRQ level on reset > hpet: Save/restore cached RTC IRQ level > i8254: Factor out interface header > i8254: Pass alternative IRQ output object on initialization > i8254: Rework& fix interaction with HPET in legacy mode > pcspk: Convert to qdev > i8254: Factor out pit_get_channel_info > > arch_init.c | 1 + > hw/alpha_dp264.c | 3 +- > hw/hpet.c | 68 ++++++++++++++++++++++++++++---------- > hw/hpet_emul.h | 3 ++ > hw/i82378.c | 6 ++- > hw/i8254.c | 92 ++++++++++++++++++++++----------------------------- > hw/i8254.h | 57 ++++++++++++++++++++++++++++++++ > hw/mips_fulong2e.c | 3 +- > hw/mips_jazz.c | 6 ++- > hw/mips_malta.c | 3 +- > hw/mips_r4k.c | 3 +- > hw/pc.c | 19 ++++++++-- > hw/pc.h | 29 ---------------- > hw/pcspk.c | 84 +++++++++++++++++++++++++++++++++++++++-------- > hw/pcspk.h | 45 +++++++++++++++++++++++++ > 15 files changed, 296 insertions(+), 126 deletions(-) > create mode 100644 hw/i8254.h > create mode 100644 hw/pcspk.h >