On Tue, Sep 01, 2026 at 10:47:01PM +0100, Mark Brown wrote:
> GCS introduces a number of system registers, on systems with GCS we need
> to context switch them and expose them to VMMs to allow guests to use
> GCS.
>
> In order to allow guests to use GCS we also need to configure
> HCRX_EL2.GCSEn, if this is not set GCS instructions will be noops and
> CHKFEAT will report GCS as disabled.
>
> Signed-off-by: Mark Brown <[email protected]>
> ---
>  arch/arm64/include/asm/kvm_emulate.h       |  3 +++
>  arch/arm64/include/asm/kvm_host.h          | 14 ++++++++++
>  arch/arm64/include/asm/vncr_mapping.h      |  2 ++
>  arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h | 28 ++++++++++++++++++++
>  arch/arm64/kvm/hyp/vhe/sysreg-sr.c         | 11 ++++++++
>  arch/arm64/kvm/sys_regs.c                  | 42 
> ++++++++++++++++++++++++++++++
>  6 files changed, 100 insertions(+)
>
> diff --git a/arch/arm64/include/asm/kvm_emulate.h 
> b/arch/arm64/include/asm/kvm_emulate.h
> index a3c1928bdf74..0cd91b3d6c82 100644
> --- a/arch/arm64/include/asm/kvm_emulate.h
> +++ b/arch/arm64/include/asm/kvm_emulate.h
> @@ -712,6 +712,9 @@ static inline void vcpu_set_hcrx(struct kvm_vcpu *vcpu)
>               if (kvm_has_feat(kvm, ID_AA64ISAR1_EL1, LS64, LS64_V))
>                       vcpu->arch.hcrx_el2 |= HCRX_EL2_EnASR;
>
> +             if (kvm_has_gcs(kvm))
> +                     vcpu->arch.hcrx_el2 |= HCRX_EL2_GCSEn;


So as per [0] this is GCS Enable so it makes sense that this enables it :)

[0]: 
https://support.arm.com/documentation/ddi0601/2026-06/AArch64-Registers/HCRX-EL2--Extended-Hypervisor-Configuration-Register?lang=en

> +
>               /*
>                * NV3 is a host-specific extension, and we always use
>                * it when present and that the guest uses NV. It may
> diff --git a/arch/arm64/include/asm/kvm_host.h 
> b/arch/arm64/include/asm/kvm_host.h
> index 27fe0cd5b2d7..6aba1bcb8ee7 100644
> --- a/arch/arm64/include/asm/kvm_host.h
> +++ b/arch/arm64/include/asm/kvm_host.h
> @@ -500,6 +500,10 @@ enum vcpu_sysreg {
>
>       POR_EL0,        /* Permission Overlay Register 0 (EL0) */
>
> +     /* Guarded Control Stack registers */
> +     GCSCRE0_EL1,    /* Guarded Control Stack Control (EL0) */

Ack as per
https://support.arm.com/documentation/111107/2026-06/AArch64-Registers/GCSCRE0-EL1--Guarded-Control-Stack-Control-Register--EL0-?lang=en

(these urls are big :)

> +     GCSPR_EL0,      /* Guarded Control Stack Pointer (EL0) */


And:
https://support.arm.com/documentation/111107/2026-06/AArch64-Registers/GCSPR-EL0--Guarded-Control-Stack-Pointer-Register--EL0-?lang=en

> +

So this seems in general to be exposing these as system registers.

>       /* FP/SIMD/SVE */
>       SVCR,
>       FPMR,
> @@ -520,6 +524,8 @@ enum vcpu_sysreg {
>       PIRE0_EL2,      /* Permission Indirection Register 0 (EL2) */
>       PIR_EL2,        /* Permission Indirection Register 1 (EL2) */
>       POR_EL2,        /* Permission Overlay Register 2 (EL2) */
> +     GCSCR_EL2,      /* Guarded Control Stack Control Register (EL2) */

Similarly

https://support.arm.com/documentation/111107/2026-06/AArch64-Registers/GCSCR-EL2--Guarded-Control-Stack-Control-Register--EL2-?lang=en

> +     GCSPR_EL2,      /* Guarded Control Stack Pointer Register (EL2) */

And

https://support.arm.com/documentation/111107/2026-06/AArch64-Registers/GCSPR-EL2--Guarded-Control-Stack-Pointer-Register--EL2-?lang=en

>       SPSR_EL2,       /* EL2 saved program status register */
>       ELR_EL2,        /* EL2 exception link register */
>       AFSR0_EL2,      /* Auxiliary Fault Status Register 0 (EL2) */
> @@ -592,6 +598,10 @@ enum vcpu_sysreg {
>       VNCR(VDISR_EL2),
>       VNCR(VSESR_EL2),
>
> +     /* Guarded Control Stack registers */
> +     VNCR(GCSPR_EL1),        /* Guarded Control Stack Pointer (EL1) */
> +     VNCR(GCSCR_EL1),        /* Guarded Control Stack Control (EL1) */
> +

And the VNCR entries for the EL1 registers.

>       VNCR(HFGRTR_EL2),
>       VNCR(HFGWTR_EL2),
>       VNCR(HFGITR_EL2),
> @@ -1654,6 +1664,10 @@ void kvm_set_vm_id_reg(struct kvm *kvm, u32 reg, u64 
> val);
>  #define kvm_has_sctlr2(k)                            \
>       (kvm_has_feat((k), ID_AA64MMFR3_EL1, SCTLRX, IMP))
>
> +#define kvm_has_gcs(k)                                       \
> +     (system_supports_gcs() &&                       \
> +      kvm_has_feat((k), ID_AA64PFR1_EL1, GCS, IMP))
> +

OK can see bits 47-44 are for a GCS feature check as per:

https://support.arm.com/documentation/ddi0601/2026-06/AArch64-Registers/ID-AA64PFR1-EL1--AArch64-Processor-Feature-Register-1?lang=en

And ID_AA64PFR1_EL1_GCS_IMP == 0b0001 -> the documented enabled value.


>  static inline bool kvm_arch_has_irq_bypass(void)
>  {
>       return true;
> diff --git a/arch/arm64/include/asm/vncr_mapping.h 
> b/arch/arm64/include/asm/vncr_mapping.h
> index 9e8a49fa8b63..e589adccc2f3 100644
> --- a/arch/arm64/include/asm/vncr_mapping.h
> +++ b/arch/arm64/include/asm/vncr_mapping.h
> @@ -97,6 +97,8 @@
>  #define VNCR_PMSNEVFR_EL1       0x850
>  #define VNCR_PMSDSFR_EL1        0x858
>  #define VNCR_TRFCR_EL1          0x880
> +#define VNCR_GCSPR_EL1               0x8C0

I see NVMem(0x8C0) in

https://support.arm.com/documentation/ddi0601/2026-06/AArch64-Registers/GCSPR-EL1--Guarded-Control-Stack-Pointer-Register--EL1-?lang=en

So LGTM :)


> +#define VNCR_GCSCR_EL1               0x8D0

And I see NVMem(0x8D0) in

https://support.arm.com/documentation/111107/2026-06/AArch64-Registers/GCSCR-EL1--Guarded-Control-Stack-Control-Register--EL1-

So also LGTM :)

>  #define VNCR_MPAM1_EL1          0x900
>  #define VNCR_MPAMHCR_EL2        0x930
>  #define VNCR_MPAMVPMV_EL2       0x938
> diff --git a/arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h 
> b/arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h
> index c382848d3194..d26802aa455e 100644
> --- a/arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h
> +++ b/arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h
> @@ -17,6 +17,7 @@
>  #include <asm/kvm_mmu.h>
>
>  static inline bool ctxt_has_s1poe(struct kvm_cpu_context *ctxt);
> +static inline bool ctxt_has_gcs(struct kvm_cpu_context *ctxt);
>
>  static inline struct kvm_vcpu *ctxt_to_vcpu(struct kvm_cpu_context *ctxt)
>  {
> @@ -67,6 +68,11 @@ static inline void __sysreg_save_user_state(struct 
> kvm_cpu_context *ctxt)
>  {
>       ctxt_sys_reg(ctxt, TPIDR_EL0)   = read_sysreg(tpidr_el0);
>       ctxt_sys_reg(ctxt, TPIDRRO_EL0) = read_sysreg(tpidrro_el0);
> +
> +     if (ctxt_has_gcs(ctxt)) {
> +             ctxt_sys_reg(ctxt, GCSPR_EL0) = read_sysreg_s(SYS_GCSPR_EL0);
> +             ctxt_sys_reg(ctxt, GCSCRE0_EL1) = 
> read_sysreg_s(SYS_GCSCRE0_EL1);
> +     }
>  }
>
>  static inline bool ctxt_has_mte(struct kvm_cpu_context *ctxt)
> @@ -131,6 +137,14 @@ static inline bool ctxt_has_sctlr2(struct 
> kvm_cpu_context *ctxt)
>       return kvm_has_sctlr2(kern_hyp_va(vcpu->kvm));
>  }
>
> +static inline bool ctxt_has_gcs(struct kvm_cpu_context *ctxt)
> +{
> +     struct kvm_vcpu *vcpu = ctxt_to_vcpu(ctxt);
> +
> +     return kvm_has_gcs(kern_hyp_va(vcpu->kvm));
> +

Function looks sensible, but extra newline?

> +}
> +
>  static inline void __sysreg_save_el1_state(struct kvm_cpu_context *ctxt)
>  {
>       ctxt_sys_reg(ctxt, SCTLR_EL1)   = read_sysreg_el1(SYS_SCTLR);
> @@ -144,6 +158,10 @@ static inline void __sysreg_save_el1_state(struct 
> kvm_cpu_context *ctxt)
>               if (ctxt_has_s1pie(ctxt)) {
>                       ctxt_sys_reg(ctxt, PIR_EL1)     = 
> read_sysreg_el1(SYS_PIR);
>                       ctxt_sys_reg(ctxt, PIRE0_EL1)   = 
> read_sysreg_el1(SYS_PIRE0);
> +                     if (ctxt_has_gcs(ctxt)) {
> +                             ctxt_sys_reg(ctxt, GCSPR_EL1)   = 
> read_sysreg_el1(SYS_GCSPR);
> +                             ctxt_sys_reg(ctxt, GCSCR_EL1)   = 
> read_sysreg_el1(SYS_GCSCR);
> +                     }

I had AI check this (and I think sashiko also hit on) it but this is a chain of:

        ctxt_has_tcrx() -> ctxt_has_s1pie() -> ctx_has_gcs()

Is it correct to make the gcs stuff conditional on tcrx + s1pie + gcs?

In vcpu_set_hcrx() settings HCRX_EL2 is gated only on kvm_has_gcs():

        if (kvm_has_gcs(kvm))
                vcpu->arch.hcrx_el2 |= HCRX_EL2_GCSEn;

And gcs_visiblity() is:

static unsigned int gcs_visibility(const struct kvm_vcpu *vcpu,
                                   const struct sys_reg_desc *r)
{
        if (kvm_has_gcs(vcpu->kvm))
                return 0;

        return REG_HIDDEN;
}

So gated on kvm_has_gcs() alone.

But then on register save it's gated on ctxt_has_tcrx() +
ctxt_has_s1pie() + ctx_has_gcs()

So it seems to be a mismatch, and this should be unnested?

Buuut I see in el2_setup.h:

        /* GCS depends on PIE so we don't check it if PIE is absent */

And it seems like that feature depends on ctxt_has_tcrx() so _architecturally_
fine, but it doesn't seem like KVM enforces the dependency at all and so in
theory somebody could KVM_SET_ONE_REG a GCS, !S1PIE configuration.

And nicer to be consistent everywhere also I think (+ shut sashiko up! :)

And it seems like it makes it possible for a silly VMM which sets up the
registers wrong + some unfortunate guest behaviour -> oops via:

el1h_64_sync_handler() -> el1_gcs() -> do_el1_gcs()

Because the host's restore is skipped for s1pie=0, gcs=1, so a naughty guest can
set gcsr_el1.pcrsel=1 and some value in gcspr_el1, then the host will get a
mismatch and trigger the kernel die().

>               }
>
>               if (ctxt_has_s1poe(ctxt))
> @@ -210,6 +228,11 @@ static inline void __sysreg_restore_user_state(struct 
> kvm_cpu_context *ctxt)
>  {
>       write_sysreg(ctxt_sys_reg(ctxt, TPIDR_EL0),     tpidr_el0);
>       write_sysreg(ctxt_sys_reg(ctxt, TPIDRRO_EL0),   tpidrro_el0);
> +     if (ctxt_has_gcs(ctxt)) {
> +             write_sysreg_s(ctxt_sys_reg(ctxt, GCSPR_EL0), SYS_GCSPR_EL0);
> +             write_sysreg_s(ctxt_sys_reg(ctxt, GCSCRE0_EL1),
> +                            SYS_GCSCRE0_EL1);
> +     }
>  }
>
>  static inline void __sysreg_restore_el1_state(struct kvm_cpu_context *ctxt,
> @@ -243,6 +266,11 @@ static inline void __sysreg_restore_el1_state(struct 
> kvm_cpu_context *ctxt,
>               if (ctxt_has_s1pie(ctxt)) {
>                       write_sysreg_el1(ctxt_sys_reg(ctxt, PIR_EL1),   
> SYS_PIR);
>                       write_sysreg_el1(ctxt_sys_reg(ctxt, PIRE0_EL1), 
> SYS_PIRE0);
> +
> +                     if (ctxt_has_gcs(ctxt)) {
> +                             write_sysreg_el1(ctxt_sys_reg(ctxt, GCSPR_EL1), 
> SYS_GCSPR);
> +                             write_sysreg_el1(ctxt_sys_reg(ctxt, GCSCR_EL1), 
> SYS_GCSCR);
> +                     }

Similarly this is gated the same as the save.

>               }
>
>               if (ctxt_has_s1poe(ctxt))
> diff --git a/arch/arm64/kvm/hyp/vhe/sysreg-sr.c 
> b/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
> index 0c4ef1ce32ae..08b5d939a6c5 100644
> --- a/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
> +++ b/arch/arm64/kvm/hyp/vhe/sysreg-sr.c
> @@ -59,10 +59,14 @@ static void __sysreg_save_vel2_state(struct kvm_vcpu 
> *vcpu)
>                       if (ctxt_has_s1pie(&vcpu->arch.ctxt)) {
>                               __vcpu_assign_sys_reg(vcpu, PIRE0_EL2, 
> read_sysreg_el1(SYS_PIRE0));
>                               __vcpu_assign_sys_reg(vcpu, PIR_EL2, 
> read_sysreg_el1(SYS_PIR));
> +
> +                             if (ctxt_has_gcs(&vcpu->arch.ctxt))
> +                                     __vcpu_assign_sys_reg(vcpu, GCSCR_EL2, 
> read_sysreg_el1(SYS_GCSCR));


Similar comment to above tcrx -> s1pie -> gcs

>                       }
>
>                       if (ctxt_has_s1poe(&vcpu->arch.ctxt))
>                               __vcpu_assign_sys_reg(vcpu, POR_EL2, 
> read_sysreg_el1(SYS_POR));
> +

Extra newline?

>               }
>
>               /*
> @@ -86,6 +90,8 @@ static void __sysreg_save_vel2_state(struct kvm_vcpu *vcpu)
>       __vcpu_assign_sys_reg(vcpu, SP_EL2,      read_sysreg(sp_el1));
>       __vcpu_assign_sys_reg(vcpu, ELR_EL2,     read_sysreg_el1(SYS_ELR));
>       __vcpu_assign_sys_reg(vcpu, SPSR_EL2,    read_sysreg_el1(SYS_SPSR));
> +     if (ctxt_has_gcs(&vcpu->arch.ctxt))
> +             __vcpu_assign_sys_reg(vcpu, GCSPR_EL2, 
> read_sysreg_el1(SYS_GCSPR));

For VEL2, GCSPR_EL2 is gated on gcs alone for save.

>
>       if (ctxt_has_sctlr2(&vcpu->arch.ctxt))
>               __vcpu_assign_sys_reg(vcpu, SCTLR2_EL2, 
> read_sysreg_el1(SYS_SCTLR2));
> @@ -138,6 +144,11 @@ static void __sysreg_restore_vel2_state(struct kvm_vcpu 
> *vcpu)
>               if (ctxt_has_s1pie(&vcpu->arch.ctxt)) {
>                       write_sysreg_el1(__vcpu_sys_reg(vcpu, PIR_EL2), 
> SYS_PIR);
>                       write_sysreg_el1(__vcpu_sys_reg(vcpu, PIRE0_EL2), 
> SYS_PIRE0);
> +
> +                     if (ctxt_has_gcs(&vcpu->arch.ctxt)) {
> +                             write_sysreg_el1(__vcpu_sys_reg(vcpu, 
> GCSCR_EL2), SYS_GCSCR);
> +                             write_sysreg_el1(__vcpu_sys_reg(vcpu, 
> GCSPR_EL2), SYS_GCSPR);
> +                     }

But for restore both GCSCR_EL2 and GCSPR_EL2 are gated on tcrx -> s1pie -> gcs.

>               }
>
>               if (ctxt_has_s1poe(&vcpu->arch.ctxt))
> diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c
> index 44aae52c473d..c5ce18b3f7d8 100644
> --- a/arch/arm64/kvm/sys_regs.c
> +++ b/arch/arm64/kvm/sys_regs.c
> @@ -109,6 +109,8 @@ static enum sr_loc_attr locate_direct_register(const 
> struct kvm_vcpu *vcpu,
>       case PIR_EL1:
>       case PIRE0_EL1:
>       case POR_EL1:
> +     case GCSCR_EL1:
> +     case GCSPR_EL1:
>       case ESR_EL1:
>       case AFSR0_EL1:
>       case AFSR1_EL1:
> @@ -135,6 +137,8 @@ static enum sr_loc_attr locate_direct_register(const 
> struct kvm_vcpu *vcpu,
>       case DACR32_EL2:
>       case IFSR32_EL2:
>       case DBGVCR32_EL2:
> +     case GCSCRE0_EL1:
> +     case GCSPR_EL0:
>               /* These registers are always loaded, no matter what */
>               return SR_LOC_LOADED;
>
> @@ -198,6 +202,8 @@ static void locate_register(const struct kvm_vcpu *vcpu, 
> enum vcpu_sysreg reg,
>               MAPPED_EL2_SYSREG(PIR_EL2,     PIR_EL1,     NULL             );
>               MAPPED_EL2_SYSREG(PIRE0_EL2,   PIRE0_EL1,   NULL             );
>               MAPPED_EL2_SYSREG(POR_EL2,     POR_EL1,     NULL             );
> +             MAPPED_EL2_SYSREG(GCSCR_EL2,   GCSCR_EL1,   NULL             );
> +             MAPPED_EL2_SYSREG(GCSPR_EL2,   GCSPR_EL1,   NULL             );
>               MAPPED_EL2_SYSREG(AMAIR_EL2,   AMAIR_EL1,   NULL             );
>               MAPPED_EL2_SYSREG(ELR_EL2,     ELR_EL1,     NULL             );
>               MAPPED_EL2_SYSREG(SPSR_EL2,    SPSR_EL1,    NULL             );
> @@ -253,6 +259,10 @@ static u64 read_sr_from_cpu(enum vcpu_sysreg reg)
>       case TCR2_EL1:          val = read_sysreg_s(SYS_TCR2_EL12);     break;
>       case PIR_EL1:           val = read_sysreg_s(SYS_PIR_EL12);      break;
>       case PIRE0_EL1:         val = read_sysreg_s(SYS_PIRE0_EL12);    break;
> +     case GCSPR_EL0:         val = read_sysreg_s(SYS_GCSPR_EL0);     break;
> +     case GCSCRE0_EL1:       val = read_sysreg_s(SYS_GCSCRE0_EL1);   break;
> +     case GCSCR_EL1:         val = read_sysreg_s(SYS_GCSCR_EL12);    break;
> +     case GCSPR_EL1:         val = read_sysreg_s(SYS_GCSPR_EL12);    break;
>       case POR_EL1:           val = read_sysreg_s(SYS_POR_EL12);      break;
>       case ESR_EL1:           val = read_sysreg_s(SYS_ESR_EL12);      break;
>       case AFSR0_EL1:         val = read_sysreg_s(SYS_AFSR0_EL12);    break;
> @@ -293,6 +303,10 @@ static void write_sr_to_cpu(enum vcpu_sysreg reg, u64 
> val)
>       case PIR_EL1:           write_sysreg_s(val, SYS_PIR_EL12);      break;
>       case PIRE0_EL1:         write_sysreg_s(val, SYS_PIRE0_EL12);    break;
>       case POR_EL1:           write_sysreg_s(val, SYS_POR_EL12);      break;
> +     case GCSCRE0_EL1:       write_sysreg_s(val, SYS_GCSCRE0_EL1);   break;
> +     case GCSPR_EL0:         write_sysreg_s(val, SYS_GCSPR_EL0);     break;
> +     case GCSCR_EL1:         write_sysreg_s(val, SYS_GCSCR_EL12);    break;
> +     case GCSPR_EL1:         write_sysreg_s(val, SYS_GCSPR_EL12);    break;
>       case ESR_EL1:           write_sysreg_s(val, SYS_ESR_EL12);      break;
>       case AFSR0_EL1:         write_sysreg_s(val, SYS_AFSR0_EL12);    break;
>       case AFSR1_EL1:         write_sysreg_s(val, SYS_AFSR1_EL12);    break;
> @@ -3089,6 +3103,21 @@ static unsigned int cnthv_visibility(const struct 
> kvm_vcpu *vcpu,
>       return REG_HIDDEN;
>  }
>
> +static unsigned int gcs_visibility(const struct kvm_vcpu *vcpu,
> +                                const struct sys_reg_desc *r)
> +{
> +     if (kvm_has_gcs(vcpu->kvm))
> +             return 0;
> +
> +     return REG_HIDDEN;
> +}
> +
> +static unsigned int gcs_el2_visibility(const struct kvm_vcpu *vcpu,
> +                                    const struct sys_reg_desc *rd)
> +{
> +     return __el2_visibility(vcpu, rd, gcs_visibility);
> +}
> +
>  static bool access_mdcr(struct kvm_vcpu *vcpu,
>                       struct sys_reg_params *p,
>                       const struct sys_reg_desc *r)
> @@ -3493,6 +3522,13 @@ static const struct sys_reg_desc sys_reg_descs[] = {
>       PTRAUTH_KEY(APDB),
>       PTRAUTH_KEY(APGA),
>
> +     { SYS_DESC(SYS_GCSCR_EL1), NULL, reset_val, GCSCR_EL1, 0,
> +       .visibility = gcs_visibility },
> +     { SYS_DESC(SYS_GCSPR_EL1), NULL, reset_unknown, GCSPR_EL1,
> +       .visibility = gcs_visibility },
> +     { SYS_DESC(SYS_GCSCRE0_EL1), NULL, reset_val, GCSCRE0_EL1, 0,
> +       .visibility = gcs_visibility },
> +
>       { SYS_DESC(SYS_SPSR_EL1), access_spsr},
>       { SYS_DESC(SYS_ELR_EL1), access_elr},
>
> @@ -3618,6 +3654,8 @@ static const struct sys_reg_desc sys_reg_descs[] = {
>                   CTR_EL0_DminLine_MASK |
>                   CTR_EL0_L1Ip_MASK |
>                   CTR_EL0_IminLine_MASK),
> +     { SYS_DESC(SYS_GCSPR_EL0), NULL, reset_unknown, GCSPR_EL0,
> +       .visibility = gcs_visibility },
>       { SYS_DESC(SYS_SVCR), undef_access, reset_val, SVCR, 0, .visibility = 
> sme_visibility  },
>       { SYS_DESC(SYS_FPMR), undef_access, reset_val, FPMR, 0, .visibility = 
> fp8_visibility },
>
> @@ -3861,6 +3899,10 @@ static const struct sys_reg_desc sys_reg_descs[] = {
>       EL2_REG_FILTERED(VNCR_EL2, bad_vncr_trap, reset_val, 0,
>                        vncr_el2_visibility),
>
> +     EL2_REG_FILTERED(GCSCR_EL2, access_rw, reset_val, 0,
> +                      gcs_el2_visibility),
> +     EL2_REG_FILTERED(GCSPR_EL2, access_rw, reset_val, 0,
> +                      gcs_el2_visibility),
>       { SYS_DESC(SYS_DACR32_EL2), undef_access, reset_unknown, DACR32_EL2 },
>       EL2_REG_VNCR_FILT(HDFGRTR2_EL2, fgt2_visibility),
>       EL2_REG_VNCR_FILT(HDFGWTR2_EL2, fgt2_visibility),
>
> --
> 2.47.3
>
>

--
Cheers, Lorenzo

Reply via email to