From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37963) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V3zh3-00087J-0Q for qemu-devel@nongnu.org; Mon, 29 Jul 2013 22:29:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V3zgv-0004mC-DD for qemu-devel@nongnu.org; Mon, 29 Jul 2013 22:29:44 -0400 Received: from mail-pd0-f175.google.com ([209.85.192.175]:39270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V3zgv-0004ir-6Z for qemu-devel@nongnu.org; Mon, 29 Jul 2013 22:29:37 -0400 Received: by mail-pd0-f175.google.com with SMTP id 5so850613pdd.20 for ; Mon, 29 Jul 2013 19:29:35 -0700 (PDT) Message-ID: <51F72507.80806@ozlabs.ru> Date: Tue, 30 Jul 2013 12:29:27 +1000 From: Alexey Kardashevskiy MIME-Version: 1.0 References: <1374043057-27208-1-git-send-email-aik@ozlabs.ru> In-Reply-To: <1374043057-27208-1-git-send-email-aik@ozlabs.ru> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] RFC: [PATCH 0/4] xics: in-kernel support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy , Anthony Liguori Cc: Alexander Graf , qemu-devel@nongnu.org, qemu-ppc@nongnu.org, Paul Mackerras , David Gibson On 07/17/2013 04:37 PM, Alexey Kardashevskiy wrote: > This is rework of in-kernel XICS on top of "[PATCH 00/11] pseries: migration > and QOM support" + compile fix patch + XICS migration fix patch. > > Migration from XICS to XICS-KVM and vice versa works. > > In this series, XICS-KVM inherits from XICS. I do not really see the point of > adding one more XICS-common here. > > Any comments? Thanks. Anthony, ping? > > > Alexey Kardashevskiy (2): > xics: add pre_save/post_load/cpu_setup dispatchers > xics: rework initialization > > David Gibson (2): > target-ppc: Add helper for KVM_PPC_RTAS_DEFINE_TOKEN > xics: Support for in-kernel XICS interrupt controller > > default-configs/ppc64-softmmu.mak | 1 + > hw/intc/Makefile.objs | 1 + > hw/intc/xics.c | 96 ++++++-- > hw/intc/xics_kvm.c | 469 ++++++++++++++++++++++++++++++++++++++ > hw/ppc/spapr.c | 30 ++- > include/hw/ppc/xics.h | 56 ++++- > target-ppc/kvm.c | 14 ++ > target-ppc/kvm_ppc.h | 7 + > 8 files changed, 646 insertions(+), 28 deletions(-) > create mode 100644 hw/intc/xics_kvm.c > -- Alexey