Re: git: c65679143f82 - main - arm64: Decode the ID_AA64MMFR3_EL1 register

From: Jessica Clarke <jrtc27_at_freebsd.org>
Date: Tue, 01 Aug 2023 22:48:11 UTC
On 28 Jul 2023, at 13:08, Andrew Turner <andrew@FreeBSD.org> wrote:
> 
> The branch main has been updated by andrew:
> 
> URL: https://cgit.FreeBSD.org/src/commit/?id=c65679143f82e28b3aa078f16311350c31a33776
> 
> commit c65679143f82e28b3aa078f16311350c31a33776
> Author:     Andrew Turner <andrew@FreeBSD.org>
> AuthorDate: 2023-07-06 13:28:23 +0000
> Commit:     Andrew Turner <andrew@FreeBSD.org>
> CommitDate: 2023-07-28 11:53:02 +0000
> 
>    arm64: Decode the ID_AA64MMFR3_EL1 register
> 
>    Sponsored by:   Arm Ltd
>    Differential Revision:  https://reviews.freebsd.org/D40893
> ---
> sys/arm64/arm64/identcpu.c | 39 +++++++++++++++++++++++++++++++++++++++
> sys/arm64/include/armreg.h | 28 ++++++++++++++++++++++++++++
> 2 files changed, 67 insertions(+)
> 
> diff --git a/sys/arm64/arm64/identcpu.c b/sys/arm64/arm64/identcpu.c
> index 7117e48ee061..047bb07dc337 100644
> --- a/sys/arm64/arm64/identcpu.c
> +++ b/sys/arm64/arm64/identcpu.c
> @@ -139,6 +139,7 @@ struct cpu_desc {
> uint64_t id_aa64mmfr0;
> uint64_t id_aa64mmfr1;
> uint64_t id_aa64mmfr2;
> + uint64_t id_aa64mmfr3;
> uint64_t id_aa64pfr0;
> uint64_t id_aa64pfr1;
> uint64_t id_aa64zfr0;
> @@ -1265,6 +1266,37 @@ static const struct mrs_field id_aa64mmfr2_fields[] = {
> };
> 
> 
> +/* ID_AA64MMFR2_EL1 */

You have a copy/paste error here.

Jess