From nobody Sun May 19 01:26:43 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=vmware.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1624971851474373.20535510904233; Tue, 29 Jun 2021 06:04:11 -0700 (PDT) Received: from localhost ([::1]:55900 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lyDPN-0001oT-Ho for importer@patchew.org; Tue, 29 Jun 2021 09:04:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56118) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ly9K7-0002dn-QA; Tue, 29 Jun 2021 04:42:27 -0400 Received: from ex13-edg-ou-002.vmware.com ([208.91.0.190]:33762) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.90_1) (envelope-from ) id 1ly9K5-0006YL-Tr; Tue, 29 Jun 2021 04:42:27 -0400 Received: from sc9-mailhost2.vmware.com (10.113.161.72) by EX13-EDG-OU-002.vmware.com (10.113.208.156) with Microsoft SMTP Server id 15.0.1156.6; Tue, 29 Jun 2021 01:27:14 -0700 Received: from bos2-arm-build.eng.vmware.com (bos2-arm-build.eng.vmware.com [10.118.233.19]) by sc9-mailhost2.vmware.com (Postfix) with SMTP id 107202022A; Tue, 29 Jun 2021 01:27:13 -0700 (PDT) Received: by bos2-arm-build.eng.vmware.com (sSMTP sendmail emulation); Tue, 29 Jun 2021 09:27:13 +0100 From: To: Subject: [PATCH] target/arm: Correct the encoding of MDCCSR_EL0 Date: Tue, 29 Jun 2021 09:27:13 +0100 Message-ID: <20210629082713.31396-1-hnick@vmware.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: None (EX13-EDG-OU-002.vmware.com: hnick@vmware.com does not designate permitted sender hosts) Received-SPF: pass client-ip=208.91.0.190; envelope-from=hnick@vmware.com; helo=EX13-EDG-OU-002.vmware.com X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Tue, 29 Jun 2021 08:59:26 -0400 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , Nick Hudson , "open list:ARM TCG CPUs" , Mohannad Ismail , "open list:All patches CC here" Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Signed-off-by: Nick Hudson --- target/arm/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index a66c1f0b9e..7267af7924 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -6330,7 +6330,7 @@ static const ARMCPRegInfo debug_cp_reginfo[] =3D { * We don't implement the configurable EL0 access. */ { .name =3D "MDCCSR_EL0", .state =3D ARM_CP_STATE_BOTH, - .cp =3D 14, .opc0 =3D 2, .opc1 =3D 0, .crn =3D 0, .crm =3D 1, .opc2 = =3D 0, + .cp =3D 14, .opc0 =3D 2, .opc1 =3D 3, .crn =3D 0, .crm =3D 1, .opc2 = =3D 0, .type =3D ARM_CP_ALIAS, .access =3D PL1_R, .accessfn =3D access_tda, .fieldoffset =3D offsetof(CPUARMState, cp15.mdscr_el1), }, --=20 2.17.1