From patchwork Tue May 6 06:08:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Edgar E. Iglesias" X-Patchwork-Id: 346038 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 5F9481412F2 for ; Tue, 6 May 2014 16:22:15 +1000 (EST) Received: from localhost ([::1]:33168 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhYlZ-0002ZK-9v for incoming@patchwork.ozlabs.org; Tue, 06 May 2014 02:22:13 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhYl1-0001hY-Tk for qemu-devel@nongnu.org; Tue, 06 May 2014 02:21:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WhYkv-00057W-Vx for qemu-devel@nongnu.org; Tue, 06 May 2014 02:21:39 -0400 Received: from mail-qg0-x22f.google.com ([2607:f8b0:400d:c04::22f]:57301) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhYkv-00057Q-SH for qemu-devel@nongnu.org; Tue, 06 May 2014 02:21:33 -0400 Received: by mail-qg0-f47.google.com with SMTP id j107so1856457qga.20 for ; Mon, 05 May 2014 23:21:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=0VQ/VBRAIay6pQBFZJSPNPlPPUzHtIc0mJQJnixNGMc=; b=sMA/o97yK6d5N5gOcqInfHiis3AbpNBxWx5cEZzYd241o9FS6GPMKnUYYLoSk3llRe p4oXUUc1SmEEu0kcITLe2/uMgpxTMZPJccXfCH46EkEaUCp7n4gLGmn3RhSn5E+hfL50 LCCtPySKTqRofRZWMhknEMG9ZZs2gvXhnmUh1ZWUBknaQEdSNFEgkTP/+1m0o5l/+vkM aeY8aXAmyivrfvkxbChh0h+swpChIEhYvjVxgsxNzPm4SXEEHl8lnqVVQjJmdEz7d1op HLWHvC8g/r79T9iKHaaOi0hhXlEmhaxK/LmroDqvYVjBcIQcydX90/cOaqcN5q1x/AW6 oAMg== X-Received: by 10.229.54.201 with SMTP id r9mr50701342qcg.6.1399357293558; Mon, 05 May 2014 23:21:33 -0700 (PDT) Received: from localhost ([203.126.243.116]) by mx.google.com with ESMTPSA id b17sm21713101qaq.25.2014.05.05.23.21.28 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 05 May 2014 23:21:32 -0700 (PDT) From: "Edgar E. Iglesias" To: qemu-devel@nongnu.org, peter.maydell@linaro.org Date: Tue, 6 May 2014 16:08:23 +1000 Message-Id: <1399356506-5609-20-git-send-email-edgar.iglesias@gmail.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1399356506-5609-1-git-send-email-edgar.iglesias@gmail.com> References: <1399356506-5609-1-git-send-email-edgar.iglesias@gmail.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c04::22f Cc: rob.herring@linaro.org, peter.crosthwaite@xilinx.com, john.williams@xilinx.com, alex.bennee@linaro.org, agraf@suse.de Subject: [Qemu-devel] [PATCH v1 19/22] target-arm: Add storage for VBAR_EL2 and 3 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: "Edgar E. Iglesias" Signed-off-by: Edgar E. Iglesias --- target-arm/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 34e8f7c..88dfdcb 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -201,7 +201,7 @@ typedef struct CPUARMState { uint32_t c9_pminten; /* perf monitor interrupt enables */ uint64_t mair_el1; #define VBAR_EL_IDX(x) (x - 1) - uint64_t vbar_el[1]; /* vector base address register */ + uint64_t vbar_el[3]; /* vector base address register */ uint32_t c13_fcse; /* FCSE PID. */ uint64_t contextidr_el1; /* Context ID. */ uint64_t tpidr_el0; /* User RW Thread register. */