From nobody Tue Nov 4 07:15:51 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1505150663026815.2239936066699; Mon, 11 Sep 2017 10:24:23 -0700 (PDT) Received: from localhost ([::1]:59325 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1drSRa-0001Tu-0d for importer@patchew.org; Mon, 11 Sep 2017 13:24:22 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1drSHX-00016I-Gz for qemu-devel@nongnu.org; Mon, 11 Sep 2017 13:14:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1drSHT-0004EK-0B for qemu-devel@nongnu.org; Mon, 11 Sep 2017 13:13:59 -0400 Received: from 3.mo2.mail-out.ovh.net ([46.105.58.226]:46402) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1drSHS-0004DT-Pf for qemu-devel@nongnu.org; Mon, 11 Sep 2017 13:13:54 -0400 Received: from player770.ha.ovh.net (b6.ovh.net [213.186.33.56]) by mo2.mail-out.ovh.net (Postfix) with ESMTP id B5090AB1DC for ; Mon, 11 Sep 2017 19:13:53 +0200 (CEST) Received: from zorba.kaod.org.com (LFbn-1-2231-173.w90-76.abo.wanadoo.fr [90.76.52.173]) (Authenticated sender: clg@kaod.org) by player770.ha.ovh.net (Postfix) with ESMTPSA id 835F63C006E; Mon, 11 Sep 2017 19:13:46 +0200 (CEST) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= To: qemu-ppc@nongnu.org, qemu-devel@nongnu.org, David Gibson , Benjamin Herrenschmidt , Alexey Kardashevskiy , Alexander Graf Date: Mon, 11 Sep 2017 19:12:23 +0200 Message-Id: <20170911171235.29331-10-clg@kaod.org> X-Mailer: git-send-email 2.13.5 In-Reply-To: <20170911171235.29331-1-clg@kaod.org> References: <20170911171235.29331-1-clg@kaod.org> MIME-Version: 1.0 X-Ovh-Tracer-Id: 14146087907405499219 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeelledrgedtgdduudehucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddm Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 46.105.58.226 Subject: [Qemu-devel] [RFC PATCH v2 09/21] ppc/xive: extend the interrupt presenter model for XIVE X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" The XIVE interrupt presenter exposes a set of Thread Interrupt Management Areas, also called rings, one per different level of privilege (four in all). This area is used to handle priority management and interrupt acknowledgment among other things. We extend the ICPState object with a cache of the register data for XIVE. The integration with the sPAPR machine is much easier and we need a common framework to switch from one controller model to another: XICS <-> XIVE. The next patch will introduce the MMIO handlers to interact with the TIMA, OS only, which is required for the sPAPR support. Signed-off-by: C=C3=A9dric Le Goater --- hw/intc/xics.c | 4 ++++ include/hw/ppc/xics.h | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/hw/intc/xics.c b/hw/intc/xics.c index a84ba51ad8ff..927d4fec966a 100644 --- a/hw/intc/xics.c +++ b/hw/intc/xics.c @@ -274,6 +274,7 @@ static const VMStateDescription vmstate_icp_server =3D { VMSTATE_UINT32(xirr, ICPState), VMSTATE_UINT8(pending_priority, ICPState), VMSTATE_UINT8(mfrr, ICPState), + VMSTATE_UINT8_ARRAY(tima, ICPState, 0x40), VMSTATE_END_OF_LIST() }, }; @@ -293,6 +294,7 @@ static void icp_reset(void *dev) if (icpc->reset) { icpc->reset(icp); } + memset(icp->tima, 0, sizeof(icp->tima)); } =20 static void icp_realize(DeviceState *dev, Error **errp) @@ -343,6 +345,8 @@ static void icp_realize(DeviceState *dev, Error **errp) icpc->realize(icp, errp); } =20 + icp->tima_os =3D &icp->tima[0x10]; + qemu_register_reset(icp_reset, dev); vmstate_register(NULL, icp->cs->cpu_index, &vmstate_icp_server, icp); } diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h index 28d248abad61..c835997303c4 100644 --- a/include/hw/ppc/xics.h +++ b/include/hw/ppc/xics.h @@ -83,6 +83,12 @@ struct ICPState { qemu_irq output; =20 XICSFabric *xics; + + /* XIVE section */ +#define XIVE_TM_RING_COUNT 4 + + uint8_t tima[XIVE_TM_RING_COUNT * 0x10]; + uint8_t *tima_os; }; =20 #define ICP_PROP_XICS "xics" --=20 2.13.5