From patchwork Mon Nov 27 18:49:49 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dongjiu Geng X-Patchwork-Id: 10076411 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 3879D6028E for ; Mon, 27 Nov 2017 10:44:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1E95928C17 for ; Mon, 27 Nov 2017 10:44:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1346B28DAC; Mon, 27 Nov 2017 10:44:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.0 required=2.0 tests=BAYES_00, DATE_IN_FUTURE_06_12, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 12D3128C17 for ; Mon, 27 Nov 2017 10:44:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751619AbdK0Koa (ORCPT ); Mon, 27 Nov 2017 05:44:30 -0500 Received: from szxga04-in.huawei.com ([45.249.212.190]:2173 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751544AbdK0Ko3 (ORCPT ); Mon, 27 Nov 2017 05:44:29 -0500 Received: from DGGEMS411-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 3E29B700FE97; Mon, 27 Nov 2017 18:44:25 +0800 (CST) Received: from localhost.localdomain (10.143.28.90) by DGGEMS411-HUB.china.huawei.com (10.3.19.211) with Microsoft SMTP Server id 14.3.361.1; Mon, 27 Nov 2017 18:44:20 +0800 From: Dongjiu Geng To: , , , , , , , , , , , , , , , , , , , , Subject: [PATCH v13 06/12] target-arm: kvm64: detect whether can set vsesr_el2 Date: Tue, 28 Nov 2017 02:49:49 +0800 Message-ID: <1511808595-24158-7-git-send-email-gengdongjiu@huawei.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1511808595-24158-1-git-send-email-gengdongjiu@huawei.com> References: <1511808595-24158-1-git-send-email-gengdongjiu@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.143.28.90] X-CFilter-Loop: Reflected Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Check if kvm can support to set vsesr_el2 value for vcpu. When guest takes a virtual SError interrupt exception, this value will provides syndrome value reported into ESR_EL1 ISS filed. Signed-off-by: Dongjiu Geng Signed-off-by: Quanming Wu --- Address James's(james.morse@arm.com) comments to detect whether KVM has the capability to set ESR instead of detecting CPU RAS capability in [1] [1] https://www.spinics.net/lists/kvm-arm/msg27150.html https://www.spinics.net/lists/arm-kernel/msg604440.html --- target/arm/kvm64.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c index a16abc8..af8ebc9 100644 --- a/target/arm/kvm64.c +++ b/target/arm/kvm64.c @@ -980,3 +980,9 @@ bool kvm_arm_handle_debug(CPUState *cs, struct kvm_debug_exit_arch *debug_exit) return false; } + +static bool kvm_can_set_vcpu_esr(struct KVMState *state) +{ + int ret = kvm_check_extension(state, KVM_CAP_ARM_INJECT_SERROR_ESR); + return (ret) ? true : false; +}