From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: [PATCH v5 0/2] Implement erratum 766422 Date: Thu, 8 Aug 2013 13:56:49 +0100 Message-ID: <1375966611-16942-1-git-send-email-julien.grall@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: patches@linaro.org, tim@xen.org, ian.campbell@citrix.com, Julien Grall , stefano.stabellini@eu.citrix.com List-Id: xen-devel@lists.xenproject.org This is fifth version of this patch series. It allows a guest kernel to use THUMB set instructions on the processor affected by the errata 766422 (for instance the Arndale board). This patch series is divided in two patch: - The first patch implements a basic decoder to fill the ISS field of the hsr_dabt struct - The second patch implements the errata Since the last version, only minor changes was made. See each patch, for the changes. Cheers, Julien Grall (2): xen/arm: Start to implement an ARM decoder instruction xen/arm: erratum 766422: decode thumb store during data abort xen/arch/arm/Makefile | 1 + xen/arch/arm/decode.c | 165 +++++++++++++++++++++++++++++++++ xen/arch/arm/decode.h | 49 ++++++++++ xen/arch/arm/traps.c | 15 +++ xen/include/asm-arm/arm32/processor.h | 4 + xen/include/asm-arm/arm64/processor.h | 2 + 6 files changed, 236 insertions(+) create mode 100644 xen/arch/arm/decode.c create mode 100644 xen/arch/arm/decode.h -- 1.7.10.4