All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoffer Dall <cdall@linaro.org>
To: Dongjiu Geng <gengdongjiu@huawei.com>
Cc: wangkefeng.wang@huawei.com, kvm@vger.kernel.org,
	david.daney@cavium.com, catalin.marinas@arm.com,
	tbaicar@codeaurora.org, will.deacon@arm.com, linuxarm@huawei.com,
	robert.moore@intel.com, lv.zheng@intel.com,
	zjzhang@codeaurora.org, mingo@kernel.org,
	stefan@hello-penguin.com, mst@redhat.com, linux@armlinux.org.uk,
	kvmarm@lists.cs.columbia.edu, linux-acpi@vger.kernel.org,
	huangshaoyu@huawei.com, huangdaode@hisilicon.com, bp@suse.de,
	Dave.Martin@arm.com, lenb@kernel.org, wuquanming@huawei.com,
	marc.zyngier@arm.com, john.garry@huawei.com,
	kristina.martsenko@arm.com, cov@codeaurora.org,
	jonathan.cameron@huawei.com, zhengqiang10@huawei.com,
	linux-arm-kernel@lists.infradead.org, devel@acpica.org,
	ard.biesheuvel@linaro.org, linux-kernel@vger.kernel.org,
	wangzhou1@hisilicon.com, shiju.jose@huawei.com
Subject: Re: [PATCH v5 4/7] support user space to query RAS extension feature
Date: Mon, 21 Aug 2017 23:08:24 +0200	[thread overview]
Message-ID: <20170821210824.GC20436@cbox> (raw)
In-Reply-To: <1503065517-7920-5-git-send-email-gengdongjiu@huawei.com>

On Fri, Aug 18, 2017 at 10:11:54PM +0800, Dongjiu Geng wrote:

You should put KVM and arm64 in the subject here.

> In armv8.2 RAS extension, it adds virtual SError exception
> syndrome registeri(VSESR_EL2), user space will specify that
> value. so user space will check whether CPU feature has RAS
> extension. if has, it will specify the virtual SError syndrome
> value. Otherwise, it will not set. This patch adds this support
> 
> Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
> ---
>  arch/arm64/kvm/reset.c   | 3 +++
>  include/uapi/linux/kvm.h | 1 +
>  2 files changed, 4 insertions(+)
> 
> diff --git a/arch/arm64/kvm/reset.c b/arch/arm64/kvm/reset.c
> index 3256b9228e75..b7313ee028e9 100644
> --- a/arch/arm64/kvm/reset.c
> +++ b/arch/arm64/kvm/reset.c
> @@ -77,6 +77,9 @@ int kvm_arch_dev_ioctl_check_extension(struct kvm *kvm, long ext)
>  	case KVM_CAP_ARM_PMU_V3:
>  		r = kvm_arm_support_pmu_v3();
>  		break;
> +	case KVM_CAP_ARM_RAS_EXTENSION:
> +		r = cpus_have_const_cap(ARM64_HAS_RAS_EXTN);
> +		break;
>  	case KVM_CAP_SET_GUEST_DEBUG:
>  	case KVM_CAP_VCPU_ATTRIBUTES:
>  		r = 1;
> diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
> index 6cd63c18708a..5a2a338cae57 100644
> --- a/include/uapi/linux/kvm.h
> +++ b/include/uapi/linux/kvm.h
> @@ -929,6 +929,7 @@ struct kvm_ppc_resize_hpt {
>  #define KVM_CAP_PPC_SMT_POSSIBLE 147
>  #define KVM_CAP_HYPERV_SYNIC2 148
>  #define KVM_CAP_HYPERV_VP_INDEX 149
> +#define KVM_CAP_ARM_RAS_EXTENSION 150
>  
>  #ifdef KVM_CAP_IRQ_ROUTING
>  
> -- 
> 2.14.0
> 

Thanks,
-Christoffer

WARNING: multiple messages have this Message-ID (diff)
From: cdall@linaro.org (Christoffer Dall)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 4/7] support user space to query RAS extension feature
Date: Mon, 21 Aug 2017 23:08:24 +0200	[thread overview]
Message-ID: <20170821210824.GC20436@cbox> (raw)
In-Reply-To: <1503065517-7920-5-git-send-email-gengdongjiu@huawei.com>

On Fri, Aug 18, 2017 at 10:11:54PM +0800, Dongjiu Geng wrote:

You should put KVM and arm64 in the subject here.

> In armv8.2 RAS extension, it adds virtual SError exception
> syndrome registeri(VSESR_EL2), user space will specify that
> value. so user space will check whether CPU feature has RAS
> extension. if has, it will specify the virtual SError syndrome
> value. Otherwise, it will not set. This patch adds this support
> 
> Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
> ---
>  arch/arm64/kvm/reset.c   | 3 +++
>  include/uapi/linux/kvm.h | 1 +
>  2 files changed, 4 insertions(+)
> 
> diff --git a/arch/arm64/kvm/reset.c b/arch/arm64/kvm/reset.c
> index 3256b9228e75..b7313ee028e9 100644
> --- a/arch/arm64/kvm/reset.c
> +++ b/arch/arm64/kvm/reset.c
> @@ -77,6 +77,9 @@ int kvm_arch_dev_ioctl_check_extension(struct kvm *kvm, long ext)
>  	case KVM_CAP_ARM_PMU_V3:
>  		r = kvm_arm_support_pmu_v3();
>  		break;
> +	case KVM_CAP_ARM_RAS_EXTENSION:
> +		r = cpus_have_const_cap(ARM64_HAS_RAS_EXTN);
> +		break;
>  	case KVM_CAP_SET_GUEST_DEBUG:
>  	case KVM_CAP_VCPU_ATTRIBUTES:
>  		r = 1;
> diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
> index 6cd63c18708a..5a2a338cae57 100644
> --- a/include/uapi/linux/kvm.h
> +++ b/include/uapi/linux/kvm.h
> @@ -929,6 +929,7 @@ struct kvm_ppc_resize_hpt {
>  #define KVM_CAP_PPC_SMT_POSSIBLE 147
>  #define KVM_CAP_HYPERV_SYNIC2 148
>  #define KVM_CAP_HYPERV_VP_INDEX 149
> +#define KVM_CAP_ARM_RAS_EXTENSION 150
>  
>  #ifdef KVM_CAP_IRQ_ROUTING
>  
> -- 
> 2.14.0
> 

Thanks,
-Christoffer

WARNING: multiple messages have this Message-ID (diff)
From: Christoffer Dall <cdall@linaro.org>
To: Dongjiu Geng <gengdongjiu@huawei.com>
Cc: christoffer.dall@linaro.org, marc.zyngier@arm.com,
	rkrcmar@redhat.com, linux@armlinux.org.uk,
	catalin.marinas@arm.com, will.deacon@arm.com, lenb@kernel.org,
	robert.moore@intel.com, lv.zheng@intel.com, mark.rutland@arm.com,
	james.morse@arm.com, xiexiuqi@huawei.com, cov@codeaurora.org,
	david.daney@cavium.com, suzuki.poulose@arm.com,
	stefan@hello-penguin.com, Dave.Martin@arm.com,
	kristina.martsenko@arm.com, wangkefeng.wang@huawei.com,
	tbaicar@codeaurora.org, ard.biesheuvel@linaro.org,
	mingo@kernel.org, bp@suse.de, shiju.jose@huawei.com,
	zjzhang@codeaurora.org, linux-arm-kernel@lists.infradead.org,
	kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org,
	devel@acpica.org, mst@redhat.com, john.garry@huawei.com,
	jonathan.cameron@huawei.com,
	shameerali.kolothum.thodi@huawei.com, huangdaode@hisilicon.com,
	wangzhou1@hisilicon.com, huangshaoyu@huawei.com,
	wuquanming@huawei.com, linuxarm@huawei.com,
	zhengqiang10@huawei.com
Subject: Re: [PATCH v5 4/7] support user space to query RAS extension feature
Date: Mon, 21 Aug 2017 23:08:24 +0200	[thread overview]
Message-ID: <20170821210824.GC20436@cbox> (raw)
In-Reply-To: <1503065517-7920-5-git-send-email-gengdongjiu@huawei.com>

On Fri, Aug 18, 2017 at 10:11:54PM +0800, Dongjiu Geng wrote:

You should put KVM and arm64 in the subject here.

> In armv8.2 RAS extension, it adds virtual SError exception
> syndrome registeri(VSESR_EL2), user space will specify that
> value. so user space will check whether CPU feature has RAS
> extension. if has, it will specify the virtual SError syndrome
> value. Otherwise, it will not set. This patch adds this support
> 
> Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
> ---
>  arch/arm64/kvm/reset.c   | 3 +++
>  include/uapi/linux/kvm.h | 1 +
>  2 files changed, 4 insertions(+)
> 
> diff --git a/arch/arm64/kvm/reset.c b/arch/arm64/kvm/reset.c
> index 3256b9228e75..b7313ee028e9 100644
> --- a/arch/arm64/kvm/reset.c
> +++ b/arch/arm64/kvm/reset.c
> @@ -77,6 +77,9 @@ int kvm_arch_dev_ioctl_check_extension(struct kvm *kvm, long ext)
>  	case KVM_CAP_ARM_PMU_V3:
>  		r = kvm_arm_support_pmu_v3();
>  		break;
> +	case KVM_CAP_ARM_RAS_EXTENSION:
> +		r = cpus_have_const_cap(ARM64_HAS_RAS_EXTN);
> +		break;
>  	case KVM_CAP_SET_GUEST_DEBUG:
>  	case KVM_CAP_VCPU_ATTRIBUTES:
>  		r = 1;
> diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
> index 6cd63c18708a..5a2a338cae57 100644
> --- a/include/uapi/linux/kvm.h
> +++ b/include/uapi/linux/kvm.h
> @@ -929,6 +929,7 @@ struct kvm_ppc_resize_hpt {
>  #define KVM_CAP_PPC_SMT_POSSIBLE 147
>  #define KVM_CAP_HYPERV_SYNIC2 148
>  #define KVM_CAP_HYPERV_VP_INDEX 149
> +#define KVM_CAP_ARM_RAS_EXTENSION 150
>  
>  #ifdef KVM_CAP_IRQ_ROUTING
>  
> -- 
> 2.14.0
> 

Thanks,
-Christoffer

  reply	other threads:[~2017-08-21 21:06 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-18 14:11 [PATCH v5 0/7] Add RAS virtualization support to SEA/SEI notification type Dongjiu Geng
2017-08-18 14:11 ` Dongjiu Geng
2017-08-18 14:11 ` Dongjiu Geng
2017-08-18 14:11 ` Dongjiu Geng
2017-08-18 14:11 ` [PATCH v5 1/7] arm64: cpufeature: Detect CPU RAS Extentions Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-22  7:54   ` Jonathan Cameron
2017-08-22  7:54     ` Jonathan Cameron
2017-08-22  7:54     ` Jonathan Cameron
2017-08-22  7:54     ` Jonathan Cameron
2017-08-18 14:11 ` [PATCH v5 2/7] KVM: arm64: Save ESR_EL2 on guest SError Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11 ` [PATCH v5 3/7] acpi: apei: Add SEI notification type support for ARMv8 Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-22  7:56   ` Jonathan Cameron
2017-08-22  7:56     ` Jonathan Cameron
2017-08-22  7:56     ` Jonathan Cameron
2017-08-22  7:56     ` Jonathan Cameron
2017-08-18 14:11 ` [PATCH v5 4/7] support user space to query RAS extension feature Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-21 21:08   ` Christoffer Dall [this message]
2017-08-21 21:08     ` Christoffer Dall
2017-08-21 21:08     ` Christoffer Dall
2017-08-22  1:20     ` gengdongjiu
2017-08-22  1:20       ` gengdongjiu
2017-08-22  1:20       ` gengdongjiu
2017-08-22  1:20       ` gengdongjiu
2017-08-22  7:56   ` Jonathan Cameron
2017-08-22  7:56     ` Jonathan Cameron
2017-08-22  7:56     ` Jonathan Cameron
2017-08-22  7:56     ` Jonathan Cameron
2017-08-18 14:11 ` [PATCH v5 5/7] arm64: kvm: route synchronous external abort exceptions to el2 Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11 ` [PATCH v5 6/7] KVM: arm64: Allow get exception information from userspace Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-22  7:57   ` Jonathan Cameron
2017-08-22  7:57     ` Jonathan Cameron
2017-08-22  7:57     ` Jonathan Cameron
2017-08-22  7:57     ` Jonathan Cameron
2017-08-18 14:11 ` [PATCH v5 7/7] arm64: kvm: handle SEI notification and inject virtual SError Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-18 14:11   ` Dongjiu Geng
2017-08-22  7:57   ` Jonathan Cameron
2017-08-22  7:57     ` Jonathan Cameron
2017-08-22  7:57     ` Jonathan Cameron
2017-08-22  7:57     ` Jonathan Cameron
2017-08-22  7:54 ` [PATCH v5 0/7] Add RAS virtualization support to SEA/SEI notification type Jonathan Cameron
2017-08-22  7:54   ` Jonathan Cameron
2017-08-22  7:54   ` Jonathan Cameron
2017-08-22  7:54   ` Jonathan Cameron
2017-08-23  2:01   ` gengdongjiu
2017-08-23  2:01     ` gengdongjiu
2017-08-23  2:01     ` gengdongjiu
2017-08-23  2:01     ` gengdongjiu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170821210824.GC20436@cbox \
    --to=cdall@linaro.org \
    --cc=Dave.Martin@arm.com \
    --cc=ard.biesheuvel@linaro.org \
    --cc=bp@suse.de \
    --cc=catalin.marinas@arm.com \
    --cc=cov@codeaurora.org \
    --cc=david.daney@cavium.com \
    --cc=devel@acpica.org \
    --cc=gengdongjiu@huawei.com \
    --cc=huangdaode@hisilicon.com \
    --cc=huangshaoyu@huawei.com \
    --cc=john.garry@huawei.com \
    --cc=jonathan.cameron@huawei.com \
    --cc=kristina.martsenko@arm.com \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=linuxarm@huawei.com \
    --cc=lv.zheng@intel.com \
    --cc=marc.zyngier@arm.com \
    --cc=mingo@kernel.org \
    --cc=mst@redhat.com \
    --cc=robert.moore@intel.com \
    --cc=shiju.jose@huawei.com \
    --cc=stefan@hello-penguin.com \
    --cc=tbaicar@codeaurora.org \
    --cc=wangkefeng.wang@huawei.com \
    --cc=wangzhou1@hisilicon.com \
    --cc=will.deacon@arm.com \
    --cc=wuquanming@huawei.com \
    --cc=zhengqiang10@huawei.com \
    --cc=zjzhang@codeaurora.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.