* [PATCH v2 0/2] Allow userspace to change ID_AA64PFR1_EL1
@ 2024-06-18 6:38 Shaoqin Huang
2024-06-18 6:38 ` [PATCH v2 1/2] KVM: arm64: " Shaoqin Huang
2024-06-18 6:38 ` [PATCH v2 2/2] KVM: selftests: aarch64: Add writable test for ID_AA64PFR1_EL1 Shaoqin Huang
0 siblings, 2 replies; 9+ messages in thread
From: Shaoqin Huang @ 2024-06-18 6:38 UTC (permalink / raw)
To: Oliver Upton, Marc Zyngier, kvmarm
Cc: Shaoqin Huang, Catalin Marinas, James Morse, kvm,
linux-arm-kernel, linux-kernel, linux-kselftest, Paolo Bonzini,
Shuah Khan, Suzuki K Poulose, Will Deacon, Zenghui Yu
Allow userspace to change the guest-visible value of the register with
some severe limitation:
- No changes to features not virtualized by KVM (MPAM_frac, RAS_frac)
Also add the selftest for it.
Changelog:
----------
v1 -> v2:
* Tackling the full register instead of single field.
* Changing the patch title and commit message.
RFCv1 -> v1:
* Fix the compilation error.
* Delete the machine specific information and make the description more
generable.
RFCv1: https://lore.kernel.org/all/20240612023553.127813-1-shahuang@redhat.com/
v1: https://lore.kernel.org/all/20240617075131.1006173-1-shahuang@redhat.com/
Shaoqin Huang (2):
KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1
KVM: selftests: aarch64: Add writable test for ID_AA64PFR1_EL1
arch/arm64/kvm/sys_regs.c | 3 ++-
tools/testing/selftests/kvm/aarch64/set_id_regs.c | 9 +++++++++
2 files changed, 11 insertions(+), 1 deletion(-)
--
2.40.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-18 6:38 [PATCH v2 0/2] Allow userspace to change ID_AA64PFR1_EL1 Shaoqin Huang @ 2024-06-18 6:38 ` Shaoqin Huang 2024-06-18 7:39 ` Marc Zyngier 2024-06-18 6:38 ` [PATCH v2 2/2] KVM: selftests: aarch64: Add writable test for ID_AA64PFR1_EL1 Shaoqin Huang 1 sibling, 1 reply; 9+ messages in thread From: Shaoqin Huang @ 2024-06-18 6:38 UTC (permalink / raw) To: Oliver Upton, Marc Zyngier, kvmarm Cc: Shaoqin Huang, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel Allow userspace to change the guest-visible value of the register with some severe limitation: - No changes to features not virtualized by KVM (MPAM_frac, RAS_frac) --- arch/arm64/kvm/sys_regs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c index 22b45a15d068..bead81867bce 100644 --- a/arch/arm64/kvm/sys_regs.c +++ b/arch/arm64/kvm/sys_regs.c @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc sys_reg_descs[] = { ID_AA64PFR0_EL1_GIC | ID_AA64PFR0_EL1_AdvSIMD | ID_AA64PFR0_EL1_FP), }, - ID_SANITISED(ID_AA64PFR1_EL1), + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | + ID_AA64PFR1_EL1_MPAM_frac)), ID_UNALLOCATED(4,2), ID_UNALLOCATED(4,3), ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), -- 2.40.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-18 6:38 ` [PATCH v2 1/2] KVM: arm64: " Shaoqin Huang @ 2024-06-18 7:39 ` Marc Zyngier 2024-06-19 3:14 ` Shaoqin Huang 2024-06-21 6:17 ` Shaoqin Huang 0 siblings, 2 replies; 9+ messages in thread From: Marc Zyngier @ 2024-06-18 7:39 UTC (permalink / raw) To: Shaoqin Huang Cc: Oliver Upton, kvmarm, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel On Tue, 18 Jun 2024 07:38:06 +0100, Shaoqin Huang <shahuang@redhat.com> wrote: > > Allow userspace to change the guest-visible value of the register with > some severe limitation: > > - No changes to features not virtualized by KVM (MPAM_frac, RAS_frac) > --- > arch/arm64/kvm/sys_regs.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c > index 22b45a15d068..bead81867bce 100644 > --- a/arch/arm64/kvm/sys_regs.c > +++ b/arch/arm64/kvm/sys_regs.c > @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc sys_reg_descs[] = { > ID_AA64PFR0_EL1_GIC | > ID_AA64PFR0_EL1_AdvSIMD | > ID_AA64PFR0_EL1_FP), }, > - ID_SANITISED(ID_AA64PFR1_EL1), > + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | > + ID_AA64PFR1_EL1_MPAM_frac)), > ID_UNALLOCATED(4,2), > ID_UNALLOCATED(4,3), > ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), This isn't a valid patch. Furthermore, how about all the other features that may or may not be currently handled by KVM? Please see [1] and make sure that all existing fields have a known behaviour (a combination of masked, preserved, capped, writable or read-only). I can at least see problems with MTE_frac and MTEX, plus all the other things that KVM doesn't know how to save/restore (THE, GCS, NMI...). What I asked you to handle the whole register, I really meant it. M. [1] https://developer.arm.com/documentation/ddi0601/2024-03/AArch64-Registers/ID-AA64PFR1-EL1--AArch64-Processor-Feature-Register-1?lang=en -- Without deviation from the norm, progress is not possible. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-18 7:39 ` Marc Zyngier @ 2024-06-19 3:14 ` Shaoqin Huang 2024-06-21 6:17 ` Shaoqin Huang 1 sibling, 0 replies; 9+ messages in thread From: Shaoqin Huang @ 2024-06-19 3:14 UTC (permalink / raw) To: Marc Zyngier Cc: Oliver Upton, kvmarm, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel Hi Marc, On 6/18/24 15:39, Marc Zyngier wrote: > On Tue, 18 Jun 2024 07:38:06 +0100, > Shaoqin Huang <shahuang@redhat.com> wrote: >> >> Allow userspace to change the guest-visible value of the register with >> some severe limitation: >> >> - No changes to features not virtualized by KVM (MPAM_frac, RAS_frac) >> --- >> arch/arm64/kvm/sys_regs.c | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c >> index 22b45a15d068..bead81867bce 100644 >> --- a/arch/arm64/kvm/sys_regs.c >> +++ b/arch/arm64/kvm/sys_regs.c >> @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc sys_reg_descs[] = { >> ID_AA64PFR0_EL1_GIC | >> ID_AA64PFR0_EL1_AdvSIMD | >> ID_AA64PFR0_EL1_FP), }, >> - ID_SANITISED(ID_AA64PFR1_EL1), >> + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | >> + ID_AA64PFR1_EL1_MPAM_frac)), >> ID_UNALLOCATED(4,2), >> ID_UNALLOCATED(4,3), >> ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), > > This isn't a valid patch. > > Furthermore, how about all the other features that may or may not be > currently handled by KVM? Please see [1] and make sure that all > existing fields have a known behaviour (a combination of masked, > preserved, capped, writable or read-only). > > I can at least see problems with MTE_frac and MTEX, plus all the other > things that KVM doesn't know how to save/restore (THE, GCS, NMI...). > > What I asked you to handle the whole register, I really meant it. Thanks for pointing out the problem. I will figure those field out and update this patch later on. > > M. > > [1] https://developer.arm.com/documentation/ddi0601/2024-03/AArch64-Registers/ID-AA64PFR1-EL1--AArch64-Processor-Feature-Register-1?lang=en Ok I found that I used the obsolete ARM document so I didn't see the MTE_frac and MTEX. Thanks for letting me know the latest ARM document. Thanks, Shaoqin > -- Shaoqin ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-18 7:39 ` Marc Zyngier 2024-06-19 3:14 ` Shaoqin Huang @ 2024-06-21 6:17 ` Shaoqin Huang 2024-06-21 7:53 ` Marc Zyngier 1 sibling, 1 reply; 9+ messages in thread From: Shaoqin Huang @ 2024-06-21 6:17 UTC (permalink / raw) To: Marc Zyngier Cc: Oliver Upton, kvmarm, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel Hi Marc, On 6/18/24 15:39, Marc Zyngier wrote: > On Tue, 18 Jun 2024 07:38:06 +0100, > Shaoqin Huang <shahuang@redhat.com> wrote: >> >> Allow userspace to change the guest-visible value of the register with >> some severe limitation: >> >> - No changes to features not virtualized by KVM (MPAM_frac, RAS_frac) >> --- >> arch/arm64/kvm/sys_regs.c | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c >> index 22b45a15d068..bead81867bce 100644 >> --- a/arch/arm64/kvm/sys_regs.c >> +++ b/arch/arm64/kvm/sys_regs.c >> @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc sys_reg_descs[] = { >> ID_AA64PFR0_EL1_GIC | >> ID_AA64PFR0_EL1_AdvSIMD | >> ID_AA64PFR0_EL1_FP), }, >> - ID_SANITISED(ID_AA64PFR1_EL1), >> + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | >> + ID_AA64PFR1_EL1_MPAM_frac)), >> ID_UNALLOCATED(4,2), >> ID_UNALLOCATED(4,3), >> ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), > > This isn't a valid patch. > > Furthermore, how about all the other features that may or may not be > currently handled by KVM? Please see [1] and make sure that all > existing fields have a known behaviour (a combination of masked, > preserved, capped, writable or read-only). > > I can at least see problems with MTE_frac and MTEX, plus all the other > things that KVM doesn't know how to save/restore (THE, GCS, NMI...). > > What I asked you to handle the whole register, I really meant it. I currently only found the BT and SSBS fields can be written without any unknown behavior. All other fields in the ID_AA64PFR1_EL1 are either not supported by KVM or the field involved with other register and KVM don't know how to handle them. I'm not sure if this is right. So I want to ask about your opinion about how to allow each of the field to be writable in the ID_AA64PFR1_EL1 register? Thanks, Shaoqin > > M. > > [1] https://developer.arm.com/documentation/ddi0601/2024-03/AArch64-Registers/ID-AA64PFR1-EL1--AArch64-Processor-Feature-Register-1?lang=en > -- Shaoqin ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-21 6:17 ` Shaoqin Huang @ 2024-06-21 7:53 ` Marc Zyngier 2024-06-26 7:33 ` Shaoqin Huang 0 siblings, 1 reply; 9+ messages in thread From: Marc Zyngier @ 2024-06-21 7:53 UTC (permalink / raw) To: Shaoqin Huang Cc: Oliver Upton, kvmarm, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel On Fri, 21 Jun 2024 07:17:57 +0100, Shaoqin Huang <shahuang@redhat.com> wrote: > > Hi Marc, > > On 6/18/24 15:39, Marc Zyngier wrote: > > On Tue, 18 Jun 2024 07:38:06 +0100, > > Shaoqin Huang <shahuang@redhat.com> wrote: > >> > >> Allow userspace to change the guest-visible value of the register with > >> some severe limitation: > >> > >> - No changes to features not virtualized by KVM (MPAM_frac, RAS_frac) > >> --- > >> arch/arm64/kvm/sys_regs.c | 3 ++- > >> 1 file changed, 2 insertions(+), 1 deletion(-) > >> > >> diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c > >> index 22b45a15d068..bead81867bce 100644 > >> --- a/arch/arm64/kvm/sys_regs.c > >> +++ b/arch/arm64/kvm/sys_regs.c > >> @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc sys_reg_descs[] = { > >> ID_AA64PFR0_EL1_GIC | > >> ID_AA64PFR0_EL1_AdvSIMD | > >> ID_AA64PFR0_EL1_FP), }, > >> - ID_SANITISED(ID_AA64PFR1_EL1), > >> + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | > >> + ID_AA64PFR1_EL1_MPAM_frac)), > >> ID_UNALLOCATED(4,2), > >> ID_UNALLOCATED(4,3), > >> ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), > > > > This isn't a valid patch. > > > > Furthermore, how about all the other features that may or may not be > > currently handled by KVM? Please see [1] and make sure that all > > existing fields have a known behaviour (a combination of masked, > > preserved, capped, writable or read-only). > > > > I can at least see problems with MTE_frac and MTEX, plus all the other > > things that KVM doesn't know how to save/restore (THE, GCS, NMI...). > > > > What I asked you to handle the whole register, I really meant it. > > I currently only found the BT and SSBS fields can be written without > any unknown behavior. I can only assume you haven't looked hard enough. > > All other fields in the ID_AA64PFR1_EL1 are either not supported by > KVM or the field involved with other register and KVM don't know how > to handle them. Why can't CSV2_frac be writable? Why can't most of the other fields be hidden depending on the VM configuration, as pointed out above? M. -- Without deviation from the norm, progress is not possible. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-21 7:53 ` Marc Zyngier @ 2024-06-26 7:33 ` Shaoqin Huang 2024-06-26 9:01 ` Shaoqin Huang 0 siblings, 1 reply; 9+ messages in thread From: Shaoqin Huang @ 2024-06-26 7:33 UTC (permalink / raw) To: Marc Zyngier Cc: Oliver Upton, kvmarm, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel Hi Marc, On 6/21/24 15:53, Marc Zyngier wrote: > On Fri, 21 Jun 2024 07:17:57 +0100, > Shaoqin Huang <shahuang@redhat.com> wrote: >> >> Hi Marc, >> >> On 6/18/24 15:39, Marc Zyngier wrote: >>> On Tue, 18 Jun 2024 07:38:06 +0100, >>> Shaoqin Huang <shahuang@redhat.com> wrote: >>>> >>>> Allow userspace to change the guest-visible value of the register with >>>> some severe limitation: >>>> >>>> - No changes to features not virtualized by KVM (MPAM_frac, RAS_frac) >>>> --- >>>> arch/arm64/kvm/sys_regs.c | 3 ++- >>>> 1 file changed, 2 insertions(+), 1 deletion(-) >>>> >>>> diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c >>>> index 22b45a15d068..bead81867bce 100644 >>>> --- a/arch/arm64/kvm/sys_regs.c >>>> +++ b/arch/arm64/kvm/sys_regs.c >>>> @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc sys_reg_descs[] = { >>>> ID_AA64PFR0_EL1_GIC | >>>> ID_AA64PFR0_EL1_AdvSIMD | >>>> ID_AA64PFR0_EL1_FP), }, >>>> - ID_SANITISED(ID_AA64PFR1_EL1), >>>> + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | >>>> + ID_AA64PFR1_EL1_MPAM_frac)), >>>> ID_UNALLOCATED(4,2), >>>> ID_UNALLOCATED(4,3), >>>> ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), >>> >>> This isn't a valid patch. >>> >>> Furthermore, how about all the other features that may or may not be >>> currently handled by KVM? Please see [1] and make sure that all >>> existing fields have a known behaviour (a combination of masked, >>> preserved, capped, writable or read-only). >>> >>> I can at least see problems with MTE_frac and MTEX, plus all the other >>> things that KVM doesn't know how to save/restore (THE, GCS, NMI...). >>> >>> What I asked you to handle the whole register, I really meant it. >> >> I currently only found the BT and SSBS fields can be written without >> any unknown behavior. > > I can only assume you haven't looked hard enough. > >> >> All other fields in the ID_AA64PFR1_EL1 are either not supported by >> KVM or the field involved with other register and KVM don't know how >> to handle them. > > Why can't CSV2_frac be writable? Why can't most of the other fields be > hidden depending on the VM configuration, as pointed out above? I looked at the "struct arm64_ftr_bits ftr_id_aa64pfr1[]" in the kernel/cpufeature.c, I don't see the CSV2_frac has been supported on ARM bare-mental. In this situation, can we first support it in KVM? If so, how can we do that, I don't understand that, could you give me some hints about that. Other fields are same with CSV2_frac I think. The KVM don't know the configuration about them. Why we should allow them writable and hidden them right now? Instead of just make them still unwrittable? Thanks, Shaoqin > > M. > -- Shaoqin ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/2] KVM: arm64: Allow userspace to change ID_AA64PFR1_EL1 2024-06-26 7:33 ` Shaoqin Huang @ 2024-06-26 9:01 ` Shaoqin Huang 0 siblings, 0 replies; 9+ messages in thread From: Shaoqin Huang @ 2024-06-26 9:01 UTC (permalink / raw) To: Marc Zyngier Cc: Oliver Upton, kvmarm, James Morse, Suzuki K Poulose, Zenghui Yu, Catalin Marinas, Will Deacon, linux-arm-kernel, linux-kernel On 6/26/24 15:33, Shaoqin Huang wrote: > Hi Marc, > > On 6/21/24 15:53, Marc Zyngier wrote: >> On Fri, 21 Jun 2024 07:17:57 +0100, >> Shaoqin Huang <shahuang@redhat.com> wrote: >>> >>> Hi Marc, >>> >>> On 6/18/24 15:39, Marc Zyngier wrote: >>>> On Tue, 18 Jun 2024 07:38:06 +0100, >>>> Shaoqin Huang <shahuang@redhat.com> wrote: >>>>> >>>>> Allow userspace to change the guest-visible value of the register with >>>>> some severe limitation: >>>>> >>>>> - No changes to features not virtualized by KVM (MPAM_frac, >>>>> RAS_frac) >>>>> --- >>>>> arch/arm64/kvm/sys_regs.c | 3 ++- >>>>> 1 file changed, 2 insertions(+), 1 deletion(-) >>>>> >>>>> diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c >>>>> index 22b45a15d068..bead81867bce 100644 >>>>> --- a/arch/arm64/kvm/sys_regs.c >>>>> +++ b/arch/arm64/kvm/sys_regs.c >>>>> @@ -2306,7 +2306,8 @@ static const struct sys_reg_desc >>>>> sys_reg_descs[] = { >>>>> ID_AA64PFR0_EL1_GIC | >>>>> ID_AA64PFR0_EL1_AdvSIMD | >>>>> ID_AA64PFR0_EL1_FP), }, >>>>> - ID_SANITISED(ID_AA64PFR1_EL1), >>>>> + ID_WRITABLE(ID_AA64PFR1_EL1, ~(ID_AA64PFR1_EL1_RAS_frac | >>>>> + ID_AA64PFR1_EL1_MPAM_frac)), >>>>> ID_UNALLOCATED(4,2), >>>>> ID_UNALLOCATED(4,3), >>>>> ID_WRITABLE(ID_AA64ZFR0_EL1, ~ID_AA64ZFR0_EL1_RES0), >>>> >>>> This isn't a valid patch. >>>> >>>> Furthermore, how about all the other features that may or may not be >>>> currently handled by KVM? Please see [1] and make sure that all >>>> existing fields have a known behaviour (a combination of masked, >>>> preserved, capped, writable or read-only). >>>> >>>> I can at least see problems with MTE_frac and MTEX, plus all the other >>>> things that KVM doesn't know how to save/restore (THE, GCS, NMI...). >>>> >>>> What I asked you to handle the whole register, I really meant it. >>> >>> I currently only found the BT and SSBS fields can be written without >>> any unknown behavior. >> >> I can only assume you haven't looked hard enough. >> >>> >>> All other fields in the ID_AA64PFR1_EL1 are either not supported by >>> KVM or the field involved with other register and KVM don't know how >>> to handle them. >> >> Why can't CSV2_frac be writable? Why can't most of the other fields be >> hidden depending on the VM configuration, as pointed out above? > > I looked at the "struct arm64_ftr_bits ftr_id_aa64pfr1[]" in the > kernel/cpufeature.c, I don't see the CSV2_frac has been supported on ARM > bare-mental. In this situation, can we first support it in KVM? If so, > how can we do that, I don't understand that, could you give me some > hints about that. More description about the CSV2_frac. static const struct arm64_ftr_bits ftr_id_aa64pfr1[] = { ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SME), FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_EL1_SME_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_EL1_MPAM_frac_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_EL1_RAS_frac_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_MTE), FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_EL1_MTE_SHIFT, 4, ID_AA64PFR1_EL1_MTE_NI), ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR1_EL1_SSBS_SHIFT, 4, ID_AA64PFR1_EL1_SSBS_NI), ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_BTI), FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_EL1_BT_SHIFT, 4, 0), ARM64_FTR_END, }; If we make the CSV2_frac writable, there isn't definition about CSV2_frac in the ftr_id_aa64pfr1. And the KVM really depends on the ftr_id_aa64pfr1 in the arm64_check_features() function. We're missing the CSV2_frac. So the arm64_check_features() will not check the CSV2_frac if it's writable, and the user can write any value into it. Thanks, Shaoqin > > Other fields are same with CSV2_frac I think. The KVM don't know the > configuration about them. Why we should allow them writable and hidden > them right now? Instead of just make them still unwrittable? > > Thanks, > Shaoqin > >> >> M. >> > -- Shaoqin ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2 2/2] KVM: selftests: aarch64: Add writable test for ID_AA64PFR1_EL1 2024-06-18 6:38 [PATCH v2 0/2] Allow userspace to change ID_AA64PFR1_EL1 Shaoqin Huang 2024-06-18 6:38 ` [PATCH v2 1/2] KVM: arm64: " Shaoqin Huang @ 2024-06-18 6:38 ` Shaoqin Huang 1 sibling, 0 replies; 9+ messages in thread From: Shaoqin Huang @ 2024-06-18 6:38 UTC (permalink / raw) To: Oliver Upton, Marc Zyngier, kvmarm Cc: Shaoqin Huang, James Morse, Suzuki K Poulose, Zenghui Yu, Paolo Bonzini, Shuah Khan, linux-arm-kernel, kvm, linux-kselftest, linux-kernel Add writable test for the ID_AA64PFR1_EL1 register. Signed-off-by: Shaoqin Huang <shahuang@redhat.com> --- tools/testing/selftests/kvm/aarch64/set_id_regs.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/testing/selftests/kvm/aarch64/set_id_regs.c b/tools/testing/selftests/kvm/aarch64/set_id_regs.c index a7de39fa2a0a..9c93637595ec 100644 --- a/tools/testing/selftests/kvm/aarch64/set_id_regs.c +++ b/tools/testing/selftests/kvm/aarch64/set_id_regs.c @@ -133,6 +133,14 @@ static const struct reg_ftr_bits ftr_id_aa64pfr0_el1[] = { REG_FTR_END, }; +static const struct reg_ftr_bits ftr_id_aa64pfr1_el1[] = { + REG_FTR_BITS(FTR_LOWER_SAFE, ID_AA64PFR1_EL1, SME, 0), + REG_FTR_BITS(FTR_LOWER_SAFE, ID_AA64PFR1_EL1, MTE, 0), + REG_FTR_BITS(FTR_LOWER_SAFE, ID_AA64PFR1_EL1, SSBS, ID_AA64PFR1_EL1_SSBS_NI), + REG_FTR_BITS(FTR_LOWER_SAFE, ID_AA64PFR1_EL1, BT, 0), + REG_FTR_END, +}; + static const struct reg_ftr_bits ftr_id_aa64mmfr0_el1[] = { REG_FTR_BITS(FTR_LOWER_SAFE, ID_AA64MMFR0_EL1, ECV, 0), REG_FTR_BITS(FTR_LOWER_SAFE, ID_AA64MMFR0_EL1, EXS, 0), @@ -199,6 +207,7 @@ static struct test_feature_reg test_regs[] = { TEST_REG(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1_el1), TEST_REG(SYS_ID_AA64ISAR2_EL1, ftr_id_aa64isar2_el1), TEST_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0_el1), + TEST_REG(SYS_ID_AA64PFR1_EL1, ftr_id_aa64pfr1_el1), TEST_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0_el1), TEST_REG(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1_el1), TEST_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2_el1), -- 2.40.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-06-26 9:02 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-18 6:38 [PATCH v2 0/2] Allow userspace to change ID_AA64PFR1_EL1 Shaoqin Huang 2024-06-18 6:38 ` [PATCH v2 1/2] KVM: arm64: " Shaoqin Huang 2024-06-18 7:39 ` Marc Zyngier 2024-06-19 3:14 ` Shaoqin Huang 2024-06-21 6:17 ` Shaoqin Huang 2024-06-21 7:53 ` Marc Zyngier 2024-06-26 7:33 ` Shaoqin Huang 2024-06-26 9:01 ` Shaoqin Huang 2024-06-18 6:38 ` [PATCH v2 2/2] KVM: selftests: aarch64: Add writable test for ID_AA64PFR1_EL1 Shaoqin Huang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).