From patchwork Thu Mar 15 16:32:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dave Martin X-Patchwork-Id: 7313 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id E7BB823E12 for ; Thu, 15 Mar 2012 16:32:37 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id B067BA1811D for ; Thu, 15 Mar 2012 16:32:37 +0000 (UTC) Received: by mail-iy0-f180.google.com with SMTP id e36so5497909iag.11 for ; Thu, 15 Mar 2012 09:32:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=rz1iSqBhcjxo1FZI177BPOSh+KFiI5agbqSzzfoidjs=; b=V9JkWz/vBSXsytwVIjsFS3i53/APDIolSMsgqnFfv6AisQMNTAZRJML7yKFlsWotKj SeRWefyAIBEg/t9UaBddm5n7c7nHd4hghGYbvOqlllmSCfhLDS0Fdce5doY41ykUaJEp Bs/tjEiaXqGlmDrd0XiPFjY/hSaDSzahtE7XXYxqQ3bA5v2HZJ7V1UOMbe+hUczb9rf3 GJXf70MLmLs08OzzkTaTrHflALLyBjjs4zOaGtyZa6oz3qbYQ0nfbBDebEseLZNI7QO2 hHNUNsyq/Ezl3zQtQyP4QUe0WwDuJph9lO5pGd8WF+4KgxzMY+y3F/48QrUbB6fzszxu Na2Q== Received: by 10.50.184.228 with SMTP id ex4mr10385236igc.50.1331829157493; Thu, 15 Mar 2012 09:32:37 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.53.18 with SMTP id k18csp40813ibg; Thu, 15 Mar 2012 09:32:36 -0700 (PDT) Received: by 10.204.153.219 with SMTP id l27mr2816862bkw.126.1331829156315; Thu, 15 Mar 2012 09:32:36 -0700 (PDT) Received: from mail-bk0-f50.google.com (mail-bk0-f50.google.com [209.85.214.50]) by mx.google.com with ESMTPS id tb1si1188320bkb.133.2012.03.15.09.32.35 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 15 Mar 2012 09:32:36 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.214.50 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) client-ip=209.85.214.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.214.50 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) smtp.mail=dave.martin@linaro.org Received: by mail-bk0-f50.google.com with SMTP id w11so3194041bku.37 for ; Thu, 15 Mar 2012 09:32:35 -0700 (PDT) Received: by 10.204.148.80 with SMTP id o16mr2838627bkv.3.1331829155685; Thu, 15 Mar 2012 09:32:35 -0700 (PDT) Received: from e103592.peterhouse.linaro.org (fw-lnat.cambridge.arm.com. [217.140.96.63]) by mx.google.com with ESMTPS id u5sm4753780bka.5.2012.03.15.09.32.34 (version=SSLv3 cipher=OTHER); Thu, 15 Mar 2012 09:32:35 -0700 (PDT) From: Dave Martin To: linux-arm-kernel@lists.infradead.org Cc: patches@linaro.org, Stefano Stabellini , Ian Campbell , Rusty Russell , Christoffer Dall , Will Deacon , Marc Zyngier , Rabin Vincent , Jon Medhurst Subject: [PATCH 4/4] ARM: opcodes: Opcode definitions for the Virtualization Extensions Date: Thu, 15 Mar 2012 16:32:12 +0000 Message-Id: <1331829132-9762-5-git-send-email-dave.martin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1331829132-9762-1-git-send-email-dave.martin@linaro.org> References: <1331829132-9762-1-git-send-email-dave.martin@linaro.org> X-Gm-Message-State: ALoCoQnqjuFdpN30RVCWav2iQn6JIXQG14trnlbdvplCy3304XQmtt61rAFV0R7u4l2NZwS0RRMI For now, this patch just adds a definition for the HVC instruction. More can be added here later, as needed. Now that we have a real example of how to use the opcode injection macros properly, this patch also adds a cross-reference from the explanation in opcodes.h (since without an example, figuring out how to use the macros is not that easy). Signed-off-by: Dave Martin Acked-by: Nicolas Pitre --- arch/arm/include/asm/opcodes-virt.h | 29 +++++++++++++++++++++++++++++ arch/arm/include/asm/opcodes.h | 2 ++ 2 files changed, 31 insertions(+), 0 deletions(-) create mode 100644 arch/arm/include/asm/opcodes-virt.h diff --git a/arch/arm/include/asm/opcodes-virt.h b/arch/arm/include/asm/opcodes-virt.h new file mode 100644 index 0000000..b85665a --- /dev/null +++ b/arch/arm/include/asm/opcodes-virt.h @@ -0,0 +1,29 @@ +/* + * opcodes-virt.h: Opcode definitions for the ARM virtualization extensions + * Copyright (C) 2012 Linaro Limited + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ +#ifndef __ASM_ARM_OPCODES_VIRT_H +#define __ASM_ARM_OPCODES_VIRT_H + +#include + +#define __HVC(imm16) __inst_arm_thumb32( \ + 0xE1400070 | (((imm16) & 0xFFF0) << 4) | ((imm16) & 0x000F), \ + 0xF7E08000 | (((imm16) & 0xF000) << 4) | ((imm16) & 0x0FFF) \ +) + +#endif /* ! __ASM_ARM_OPCODES_VIRT_H */ diff --git a/arch/arm/include/asm/opcodes.h b/arch/arm/include/asm/opcodes.h index 50ef0be..89ff5b9 100644 --- a/arch/arm/include/asm/opcodes.h +++ b/arch/arm/include/asm/opcodes.h @@ -193,6 +193,8 @@ extern asmlinkage unsigned int arm_check_condition(u32 opcode, u32 psr); * specify the ARM and Thumb alternatives at the same time. This ensures * that the correct opcode gets emitted depending on the instruction set * used for the kernel build. + * + * Look at opcodes-virt.h for an example of how to use these macros. */ #include