From: Binbin Wu <binbin.wu@linux.intel.com>
To: Ewan Hai <ewandevelop@gmail.com>
Cc: seanjc@google.com, pbonzini@redhat.com, tglx@kernel.org,
mingo@redhat.com, bp@alien8.de, dave.hansen@linux.intel.com,
x86@kernel.org, hpa@zytor.com, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org, cobechen@zhaoxin.com,
tonywwang@zhaoxin.com, AlanSong@zhaoxin.com
Subject: Re: [PATCH 1/5] KVM: x86: Expose Zhaoxin SM2 CPUID feature
Date: Thu, 14 May 2026 14:49:14 +0800 [thread overview]
Message-ID: <e8cbb899-efba-4996-9f51-7f025450c272@linux.intel.com> (raw)
In-Reply-To: <CAG2uPc7T5Tkn5RSLzrfJLEZoh0EYJvdJZkmgJNFbe4NPu0UqMA@mail.gmail.com>
On 5/14/2026 10:31 AM, Ewan Hai wrote:
> Binbin Wu <binbin.wu@linux.intel.com> 于2026年5月13日周三 18:36写道:
>>
>>
>>
>> On 5/13/2026 5:36 PM, Ewan Hai wrote:
>>> Advertise the Zhaoxin SM2 instruction support to guests via CPUID
>>> 0xC0000001 EDX bits 0 (SM2) and 1 (SM2_EN).
>>>
>>> The SM2 instruction (encoding F2 0F A6 C0) implements the SM2
>>> elliptic-curve public-key cryptography algorithm specified in
>>> GM/T 0003-2012; the hardware-level behavior is documented in the
>>> Zhaoxin GMI Instruction Set Reference, chapter 1 ("SM2"). The
>>> instruction multiplexes its sub-functions on the RDX[5:0] control
>>> word: encryption (subsection 1.1), decryption (1.2), signing (1.3),
>>> signature verification (1.4), the three key-exchange sub-operations
>>> of section 1.5 (1.5.1 SM2 key-pair generation, which the spec also
>>> uses for the initiator's ephemeral key; 1.5.2 responder shared-key
>>> derivation; 1.5.3 initiator shared-key derivation), and two
>>> preprocess steps for identity and message hashing (1.6.1 and 1.6.2).
>>>
>>> The instruction is user-mode and available in all CPU modes, with no
>>> associated MSR control. The SM2 and SM2_EN bits are redundant by
>>> hardware design (set or cleared together) and both serve purely as
>>> CPUID-level feature-presence reporting flags requiring no KVM
>>> emulation. Both bits are advertised because different software may
>>> probe either one when checking for SM2 availability.
>>>
>>> Signed-off-by: Ewan Hai <ewandevelop@gmail.com>
>>> ---
>>> arch/x86/kvm/cpuid.c | 2 ++
>>> arch/x86/kvm/reverse_cpuid.h | 4 ++++
>>> 2 files changed, 6 insertions(+)
>>>
>>> diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c
>>> index e69156b54cff..1eb4b88aaa80 100644
>>> --- a/arch/x86/kvm/cpuid.c
>>> +++ b/arch/x86/kvm/cpuid.c
>>> @@ -1272,6 +1272,8 @@ void kvm_initialize_cpu_caps(void)
>>> kvm_cpu_cap_set(X86_FEATURE_NULL_SEL_CLR_BASE);
>>>
>>> kvm_cpu_cap_init(CPUID_C000_0001_EDX,
>>> + F(SM2),
>>> + F(SM2_EN),
>>> F(XSTORE),
>>> F(XSTORE_EN),
>>> F(XCRYPT),
>>> diff --git a/arch/x86/kvm/reverse_cpuid.h b/arch/x86/kvm/reverse_cpuid.h
>>> index 657f5f743ed9..7b55110cc046 100644
>>> --- a/arch/x86/kvm/reverse_cpuid.h
>>> +++ b/arch/x86/kvm/reverse_cpuid.h
>>> @@ -76,6 +76,10 @@
>>> #define KVM_X86_FEATURE_TSA_SQ_NO KVM_X86_FEATURE(CPUID_8000_0021_ECX, 1)
>>> #define KVM_X86_FEATURE_TSA_L1_NO KVM_X86_FEATURE(CPUID_8000_0021_ECX, 2)
>>>
>>> +/* Zhaoxin/Centaur sub-features, CPUID level 0xC0000001 (EDX) */
>>> +#define X86_FEATURE_SM2 KVM_X86_FEATURE(CPUID_C000_0001_EDX, 0)
>>> +#define X86_FEATURE_SM2_EN KVM_X86_FEATURE(CPUID_C000_0001_EDX, 1)
>>
>> Are these new bits really KVM-only feature bits?
>>
>> KVM_X86_FEATURE() is used for the features either scattered by cpufeatures.h
>> or features that are 100% KVM-only.
>>
>> Kernel already has a feature word CPUID_C000_0001_EDX defined for
>> CPUID 0xC0000001 (EDX). I think these new feature bits should be put together
>> with the existing ones (i.e. X86_FEATURE_XSTORE, ..., X86_FEATURE_PMM_EN) in
>> cpufeatures.h.
>>
>> Same for the other patches.
>>
>
> Thanks for the review.
>
> Some history that might help. We tried the cpufeatures.h approach
> back in April 2023:
>
> https://lore.kernel.org/all/20230414095334.8743-1-TonyWWang-oc@zhaoxin.com/
>
> That didn't go in. The pushback then was that cpufeatures.h
> additions should come with an in-kernel user of the feature, not
> just to expose a bit. Nothing under drivers/crypto/ or lib/crypto/
> calls these instructions, and we don't have a kernel user lined up.
> They're unprivileged, and the practical pattern is host/guest user
> space probing CPUID directly and calling them inline. OpenSSL's
> PadLock engine does exactly this today for XCRYPT/XSHA, and the new
> bits would be used the same way.
>
> That's why we ended up in reverse_cpuid.h, reading "no in-kernel
> consumer" as the line between the two headers.
>
> If the rule has shifted and you'd rather see these in cpufeatures.h
> next to the existing word-5 entries, we can respin as v2.
Sorry, I missed the info that these are only used in user mode.
Please ignore my previous comments.
>
>>
>>> +
>>> struct cpuid_reg {
>>> u32 function;
>>> u32 index;
>>
>
next prev parent reply other threads:[~2026-05-14 6:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 9:36 [PATCH 0/5] KVM: x86: Expose Zhaoxin CPUID 0xC0000001 EDX cryptographic features Ewan Hai
2026-05-13 9:36 ` [PATCH 1/5] KVM: x86: Expose Zhaoxin SM2 CPUID feature Ewan Hai
2026-05-13 10:36 ` Binbin Wu
2026-05-14 2:31 ` Ewan Hai
2026-05-14 6:49 ` Binbin Wu [this message]
2026-05-14 6:58 ` Ewan Hai
2026-05-13 9:36 ` [PATCH 2/5] KVM: x86: Expose Zhaoxin CCS (SM3 + SM4) " Ewan Hai
2026-05-13 9:36 ` [PATCH 3/5] KVM: x86: Expose Zhaoxin RNG2 " Ewan Hai
2026-05-13 9:36 ` [PATCH 4/5] KVM: x86: Expose Zhaoxin PHE2 " Ewan Hai
2026-05-13 9:36 ` [PATCH 5/5] KVM: x86: Expose Zhaoxin RSA " Ewan Hai
-- strict thread matches above, loose matches on Subject: below --
2026-05-13 8:30 [PATCH 0/5] KVM: x86: Expose Zhaoxin CPUID 0xC0000001 EDX cryptographic features Ewan Hai
2026-05-13 8:30 ` [PATCH 1/5] KVM: x86: Expose Zhaoxin SM2 CPUID feature Ewan Hai
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=e8cbb899-efba-4996-9f51-7f025450c272@linux.intel.com \
--to=binbin.wu@linux.intel.com \
--cc=AlanSong@zhaoxin.com \
--cc=bp@alien8.de \
--cc=cobechen@zhaoxin.com \
--cc=dave.hansen@linux.intel.com \
--cc=ewandevelop@gmail.com \
--cc=hpa@zytor.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=pbonzini@redhat.com \
--cc=seanjc@google.com \
--cc=tglx@kernel.org \
--cc=tonywwang@zhaoxin.com \
--cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox