From nobody Sat May 4 17:21:56 2024 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; dkim=fail; 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 1532004892114165.08437266063652; Thu, 19 Jul 2018 05:54:52 -0700 (PDT) Received: from localhost ([::1]:42127 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fg81m-0002CU-R2 for importer@patchew.org; Thu, 19 Jul 2018 08:27:26 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35409) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fg7rb-00033D-DN for qemu-devel@nongnu.org; Thu, 19 Jul 2018 08:16:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fg7rY-00067J-6X for qemu-devel@nongnu.org; Thu, 19 Jul 2018 08:16:55 -0400 Received: from smtp5.mail.ru ([94.100.179.24]:41128) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fg7rX-00065s-Q1 for qemu-devel@nongnu.org; Thu, 19 Jul 2018 08:16:52 -0400 Received: by smtp5.mail.ru with esmtpa (envelope-from ) id 1fg7rV-0000CT-11; Thu, 19 Jul 2018 15:16:49 +0300 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=Message-Id:Date:Subject:Cc:To:From; bh=+TIsCFTVrlxcIV/TUZPQ2XwAnKKlpXK0jKm7dO47GOM=; b=omTIyMuwvN8LTPf2KpZ2WMYtP/otY5c2ZmfT0BZBGRb1OKMp8862teENoyLLgyV1HHSJzdeYX3ZN2YLnibtT54HK9yVtPO9y0Ay03JJhlt7U4fo+as/PYMPHUdd6JP8myOtmkoJMLlw57aFvW/+h/6MfC4uI/CKCAs63kF5+YmI=; To: qemu-devel Date: Thu, 19 Jul 2018 15:16:37 +0300 Message-Id: <20180719121637.24576-1-jusual@mail.ru> X-Mailer: git-send-email 2.17.1 Authentication-Results: smtp5.mail.ru; auth=pass smtp.auth=jusual@mail.ru smtp.mailfrom=jusual@mail.ru X-7FA49CB5: 0D63561A33F958A5E9D7F0BCEFE4DE1FD71A06DFF3A58649287C8E22D4AE2A510A6AB1C7CE11FEE35EF3C447179F0106BA3038C0950A5D36B5C8C57E37DE458B4C7702A67D5C33162DBA43225CD8A89F9FFED5BD9FB4175526FEB9894D179DEB8AB23438CA8DBF3743847C11F186F3C5E7DDDDC251EA7DABCC89B49CDF41148F458B267F216095A92623479134186CDE6BA297DBC24807EABDAD6C7F3747799A X-Mailru-Sender: CC07D204AB7BD32FD0EFE86A6A44904D65441C97E88662B8FD7B88554514DFC430513CE0030DFCD0342D7E53901C55FD6F53C80213D1719C4487B406A59785443329DBF425CF03A167EA787935ED9F1B X-Mras: OK X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 94.100.179.24 Subject: [Qemu-devel] [PATCH v2] nvic: Change NVIC to support ARMv6-M 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: , From: Julia Suvorova via Qemu-devel Reply-To: Julia Suvorova Cc: Peter Maydell , Jim Mussared , =?UTF-8?q?Steffen=20G=C3=B6rtz?= , Stefan Hajnoczi , Joel Stanley , Julia Suvorova Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZohoMail: RDKM_2 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The differences from ARMv7-M NVIC are: * ARMv6-M only supports up to 32 external interrupts (configurable feature already). The ICTR is reserved. * Active Bit Register is reserved. * ARMv6-M supports 4 priority levels against 256 in ARMv7-M. Signed-off-by: Julia Suvorova --- v2: * Added num_prio_bits field * AIRCR.PRIGROUP is set as RAZ/WI for Baseline hw/intc/armv7m_nvic.c | 21 ++++++++++++++++++--- include/hw/intc/armv7m_nvic.h | 1 + 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c index 7ba87a050e..70967e795c 100644 --- a/hw/intc/armv7m_nvic.c +++ b/hw/intc/armv7m_nvic.c @@ -420,6 +420,8 @@ static void set_prio(NVICState *s, unsigned irq, bool s= ecure, uint8_t prio) assert(irq > ARMV7M_EXCP_NMI); /* only use for configurable prios */ assert(irq < s->num_irq); =20 + prio &=3D MAKE_64BIT_MASK(8 - s->num_prio_bits, s->num_prio_bits); + if (secure) { assert(exc_is_banked(irq)); s->sec_vectors[irq].prio =3D prio; @@ -775,6 +777,9 @@ static uint32_t nvic_readl(NVICState *s, uint32_t offse= t, MemTxAttrs attrs) =20 switch (offset) { case 4: /* Interrupt Control Type. */ + if (!arm_feature(&cpu->env, ARM_FEATURE_V7)) { + goto bad_offset; + } return ((s->num_irq - NVIC_FIRST_IRQ) / 32) - 1; case 0xc: /* CPPWR */ if (!arm_feature(&cpu->env, ARM_FEATURE_V8)) { @@ -1274,9 +1279,12 @@ static void nvic_writel(NVICState *s, uint32_t offse= t, uint32_t value, "Setting VECTRESET when not in DEBUG mode " "is UNPREDICTABLE\n"); } - s->prigroup[attrs.secure] =3D extract32(value, - R_V7M_AIRCR_PRIGROUP_SHI= FT, - R_V7M_AIRCR_PRIGROUP_LEN= GTH); + if (arm_feature(&cpu->env, ARM_FEATURE_M_MAIN)) { + s->prigroup[attrs.secure] =3D + extract32(value, + R_V7M_AIRCR_PRIGROUP_SHIFT, + R_V7M_AIRCR_PRIGROUP_LENGTH); + } if (attrs.secure) { /* These bits are only writable by secure */ cpu->env.v7m.aircr =3D value & @@ -1787,6 +1795,11 @@ static MemTxResult nvic_sysreg_read(void *opaque, hw= addr addr, break; case 0x300 ... 0x33f: /* NVIC Active */ val =3D 0; + + if (!arm_feature(&s->cpu->env, ARM_FEATURE_V7)) { + break; + } + startvec =3D 8 * (offset - 0x300) + NVIC_FIRST_IRQ; /* vector # */ =20 for (i =3D 0, end =3D size * 8; i < end && startvec + i < s->num_i= rq; i++) { @@ -2256,6 +2269,8 @@ static void armv7m_nvic_realize(DeviceState *dev, Err= or **errp) /* include space for internal exception vectors */ s->num_irq +=3D NVIC_FIRST_IRQ; =20 + s->num_prio_bits =3D arm_feature(&s->cpu->env, ARM_FEATURE_V7) ? 8 : 2; + object_property_set_bool(OBJECT(&s->systick[M_REG_NS]), true, "realized", &err); if (err !=3D NULL) { diff --git a/include/hw/intc/armv7m_nvic.h b/include/hw/intc/armv7m_nvic.h index 8bc29112e3..a472c9b8f0 100644 --- a/include/hw/intc/armv7m_nvic.h +++ b/include/hw/intc/armv7m_nvic.h @@ -57,6 +57,7 @@ typedef struct NVICState { VecInfo sec_vectors[NVIC_INTERNAL_VECTORS]; /* The PRIGROUP field in AIRCR is banked */ uint32_t prigroup[M_REG_NUM_BANKS]; + uint8_t num_prio_bits; =20 /* v8M NVIC_ITNS state (stored as a bool per bit) */ bool itns[NVIC_MAX_VECTORS]; --=20 2.17.1