From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43912) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z9xgm-0005Rl-7K for qemu-devel@nongnu.org; Tue, 30 Jun 2015 11:43:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z9xgi-00089g-Vz for qemu-devel@nongnu.org; Tue, 30 Jun 2015 11:43:12 -0400 Received: from mail-vn0-f54.google.com ([209.85.216.54]:36834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z9xgi-00089X-Sn for qemu-devel@nongnu.org; Tue, 30 Jun 2015 11:43:08 -0400 Received: by vnbg129 with SMTP id g129so2192869vnb.3 for ; Tue, 30 Jun 2015 08:43:08 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1435676538-31345-1-git-send-email-serge.fdrv@gmail.com> References: <1435676538-31345-1-git-send-email-serge.fdrv@gmail.com> From: Peter Maydell Date: Tue, 30 Jun 2015 16:42:48 +0100 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH] target-arm: fix write helper for TLBI ALLE1IS List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sergey Fedorov Cc: "Edgar E. Iglesias" , QEMU Developers On 30 June 2015 at 16:02, Sergey Fedorov wrote: > TLBI ALLE1IS is an operation that does invalidate TLB entries on all PEs > in the same Inner Sharable domain, not just on the current CPU. So we > must use tlbiall_is_write() here. > > Signed-off-by: Sergey Fedorov > --- > 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 aa34159..b87afe7 100644 > --- a/target-arm/helper.c > +++ b/target-arm/helper.c > @@ -2441,7 +2441,7 @@ static const ARMCPRegInfo v8_cp_reginfo[] = { > { .name = "TLBI_ALLE1IS", .state = ARM_CP_STATE_AA64, > .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4, > .access = PL2_W, .type = ARM_CP_NO_RAW, > - .writefn = tlbiall_write }, > + .writefn = tlbiall_is_write }, > { .name = "TLBI_VMALLE1IS", .state = ARM_CP_STATE_AA64, > .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0, > .access = PL1_W, .type = ARM_CP_NO_RAW, Nice catch -- applied to target-arm.next, thanks. -- PMM