From: Sheng Yang <sheng@linux.intel.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Avi Kivity <avi@redhat.com>,
Anthony Liguori <anthony@codemonkey.ws>,
kvm@vger.kernel.org, qemu-devel@nongnu.org
Subject: Re: [PATCH 2/3] qemu: Enable XSAVE related CPUID
Date: Wed, 16 Jun 2010 22:59:07 +0800 [thread overview]
Message-ID: <201006162259.08042.sheng@linux.intel.com> (raw)
In-Reply-To: <1276140663-29954-2-git-send-email-sheng@linux.intel.com>
On Thursday 10 June 2010 11:31:02 Sheng Yang wrote:
> We can support it in KVM now. The 0xd leaf is queried from KVM.
Hi Marcelo & Avi
How about patch 1 and 2 in this series? They are used to enable XSAVE cpuid.
--
regards
Yang, Sheng
>
> Signed-off-by: Sheng Yang <sheng@linux.intel.com>
> ---
> target-i386/cpuid.c | 21 +++++++++++++++++++++
> 1 files changed, 21 insertions(+), 0 deletions(-)
>
> diff --git a/target-i386/cpuid.c b/target-i386/cpuid.c
> index fb78061..26e4054 100644
> --- a/target-i386/cpuid.c
> +++ b/target-i386/cpuid.c
> @@ -1081,6 +1081,27 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index,
> uint32_t count, *ecx = 0;
> *edx = 0;
> break;
> + case 0xD:
> + /* Processor Extended State */
> + if (!(env->cpuid_ext_features & CPUID_EXT_XSAVE)) {
> + *eax = 0;
> + *ebx = 0;
> + *ecx = 0;
> + *edx = 0;
> + break;
> + }
> + if (kvm_enabled()) {
> + *eax = kvm_arch_get_supported_cpuid(env, 0xd, count, R_EAX);
> + *ebx = kvm_arch_get_supported_cpuid(env, 0xd, count, R_EBX);
> + *ecx = kvm_arch_get_supported_cpuid(env, 0xd, count, R_ECX);
> + *edx = kvm_arch_get_supported_cpuid(env, 0xd, count, R_EDX);
> + } else {
> + *eax = 0;
> + *ebx = 0;
> + *ecx = 0;
> + *edx = 0;
> + }
> + break;
> case 0x80000000:
> *eax = env->cpuid_xlevel;
> *ebx = env->cpuid_vendor1;
WARNING: multiple messages have this Message-ID (diff)
From: Sheng Yang <sheng@linux.intel.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: qemu-devel@nongnu.org, Avi Kivity <avi@redhat.com>, kvm@vger.kernel.org
Subject: [Qemu-devel] Re: [PATCH 2/3] qemu: Enable XSAVE related CPUID
Date: Wed, 16 Jun 2010 22:59:07 +0800 [thread overview]
Message-ID: <201006162259.08042.sheng@linux.intel.com> (raw)
In-Reply-To: <1276140663-29954-2-git-send-email-sheng@linux.intel.com>
On Thursday 10 June 2010 11:31:02 Sheng Yang wrote:
> We can support it in KVM now. The 0xd leaf is queried from KVM.
Hi Marcelo & Avi
How about patch 1 and 2 in this series? They are used to enable XSAVE cpuid.
--
regards
Yang, Sheng
>
> Signed-off-by: Sheng Yang <sheng@linux.intel.com>
> ---
> target-i386/cpuid.c | 21 +++++++++++++++++++++
> 1 files changed, 21 insertions(+), 0 deletions(-)
>
> diff --git a/target-i386/cpuid.c b/target-i386/cpuid.c
> index fb78061..26e4054 100644
> --- a/target-i386/cpuid.c
> +++ b/target-i386/cpuid.c
> @@ -1081,6 +1081,27 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index,
> uint32_t count, *ecx = 0;
> *edx = 0;
> break;
> + case 0xD:
> + /* Processor Extended State */
> + if (!(env->cpuid_ext_features & CPUID_EXT_XSAVE)) {
> + *eax = 0;
> + *ebx = 0;
> + *ecx = 0;
> + *edx = 0;
> + break;
> + }
> + if (kvm_enabled()) {
> + *eax = kvm_arch_get_supported_cpuid(env, 0xd, count, R_EAX);
> + *ebx = kvm_arch_get_supported_cpuid(env, 0xd, count, R_EBX);
> + *ecx = kvm_arch_get_supported_cpuid(env, 0xd, count, R_ECX);
> + *edx = kvm_arch_get_supported_cpuid(env, 0xd, count, R_EDX);
> + } else {
> + *eax = 0;
> + *ebx = 0;
> + *ecx = 0;
> + *edx = 0;
> + }
> + break;
> case 0x80000000:
> *eax = env->cpuid_xlevel;
> *ebx = env->cpuid_vendor1;
next prev parent reply other threads:[~2010-06-16 14:58 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-10 3:31 [PATCH 1/3] qemu: kvm: Extend kvm_arch_get_supported_cpuid() to support index Sheng Yang
2010-06-10 3:31 ` [Qemu-devel] " Sheng Yang
2010-06-10 3:31 ` [PATCH 2/3] qemu: Enable XSAVE related CPUID Sheng Yang
2010-06-10 3:31 ` [Qemu-devel] " Sheng Yang
2010-06-16 14:59 ` Sheng Yang [this message]
2010-06-16 14:59 ` [Qemu-devel] " Sheng Yang
2010-06-16 16:41 ` Marcelo Tosatti
2010-06-16 16:41 ` [Qemu-devel] " Marcelo Tosatti
2010-06-10 3:31 ` [PATCH 3/3] qemu: kvm: Enable XSAVE live migration support Sheng Yang
2010-06-10 3:31 ` [Qemu-devel] " Sheng Yang
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=201006162259.08042.sheng@linux.intel.com \
--to=sheng@linux.intel.com \
--cc=anthony@codemonkey.ws \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.com \
--cc=qemu-devel@nongnu.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.