From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46328) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wndmc-0000JK-Df for qemu-devel@nongnu.org; Thu, 22 May 2014 20:56:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WndmU-0001C9-Fy for qemu-devel@nongnu.org; Thu, 22 May 2014 20:56:26 -0400 Received: from mail-yk0-x22b.google.com ([2607:f8b0:4002:c07::22b]:33657) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WndmU-0001BT-Ai for qemu-devel@nongnu.org; Thu, 22 May 2014 20:56:18 -0400 Received: by mail-yk0-f171.google.com with SMTP id 142so3481956ykq.30 for ; Thu, 22 May 2014 17:56:17 -0700 (PDT) From: "Edgar E. Iglesias" Date: Fri, 23 May 2014 10:42:16 +1000 Message-Id: <1400805738-11889-20-git-send-email-edgar.iglesias@gmail.com> In-Reply-To: <1400805738-11889-1-git-send-email-edgar.iglesias@gmail.com> References: <1400805738-11889-1-git-send-email-edgar.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v4 19/21] target-arm: Make vbar_write writeback to any CPREG List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, peter.maydell@linaro.org Cc: rob.herring@linaro.org, peter.crosthwaite@xilinx.com, aggelerf@ethz.ch, agraf@suse.de, john.williams@xilinx.com, alex.bennee@linaro.org, christoffer.dall@linaro.org, rth@twiddle.net From: "Edgar E. Iglesias" Reviewed-by: Peter Crosthwaite Signed-off-by: Edgar E. Iglesias --- 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 cb7c964a..5a2073e 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -657,7 +657,7 @@ static void vbar_write(CPUARMState *env, const ARMCPRegInfo *ri, * contexts. (ARMv8 would permit us to do no masking at all, but ARMv7 * requires the bottom five bits to be RAZ/WI because they're UNK/SBZP.) */ - env->cp15.vbar_el[1] = value & ~0x1FULL; + raw_write(env, ri, value & ~0x1FULL); } static uint64_t ccsidr_read(CPUARMState *env, const ARMCPRegInfo *ri) -- 1.8.3.2