From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmJzB-0004zl-4S for qemu-devel@nongnu.org; Mon, 19 May 2014 05:36:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WmJz5-0000xE-1b for qemu-devel@nongnu.org; Mon, 19 May 2014 05:35:57 -0400 Received: from mail-wi0-x236.google.com ([2a00:1450:400c:c05::236]:63868) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmJz4-0000x1-RO for qemu-devel@nongnu.org; Mon, 19 May 2014 05:35:50 -0400 Received: by mail-wi0-f182.google.com with SMTP id r20so3782274wiv.15 for ; Mon, 19 May 2014 02:35:49 -0700 (PDT) From: "Edgar E. Iglesias" Date: Mon, 19 May 2014 19:22:59 +1000 Message-Id: <1400491383-6725-19-git-send-email-edgar.iglesias@gmail.com> In-Reply-To: <1400491383-6725-1-git-send-email-edgar.iglesias@gmail.com> References: <1400491383-6725-1-git-send-email-edgar.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v3 18/22] 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" 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