public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: Mark Rutland <mark.rutland@arm.com>
To: Vladimir Murzin <vladimir.murzin@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Subject: Re: [bootwrapper PATCH] aarch64: Recognize PAuth QARMA3
Date: Tue, 1 Feb 2022 12:19:42 +0000	[thread overview]
Message-ID: <YfklXtPPI99IgRJg@FVFF77S0Q05N> (raw)
In-Reply-To: <20220128160214.92297-1-vladimir.murzin@arm.com>

On Fri, Jan 28, 2022 at 04:02:14PM +0000, Vladimir Murzin wrote:
> QARMA3 is relaxed version of the QARMA5 algorithm which expected to
> reduce the latency of calculation while still delivering a suitable
> level of security.
> 
> Support for QARMA3 can be discovered via ID_AA64ISAR2_EL1 [1]
> 
> APA3, bits [15:12] Indicates whether the QARMA3 algorithm is
>                    implemented in the PE for address authentication in
> 		   AArch64 state.
> 
> GPA3, bits [11:8]  Indicates whether the QARMA3 algorithm is
>                    implemented in the PE for generic code
>                    authentication in AArch64 state.
> 
> [1] https://developer.arm.com/documentation/ddi0601/2021-12/AArch64-Registers/ID-AA64ISAR2-EL1--AArch64-Instruction-Set-Attribute-Register-2?lang=en
> 
> Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>

Thanks; applied.

Mark.

> ---
>  arch/aarch64/include/asm/cpu.h |  5 +++++
>  arch/aarch64/init.c            | 14 +++++++++-----
>  2 files changed, 14 insertions(+), 5 deletions(-)
> 
> diff --git a/arch/aarch64/include/asm/cpu.h b/arch/aarch64/include/asm/cpu.h
> index 1be2d54..ce80b6e 100644
> --- a/arch/aarch64/include/asm/cpu.h
> +++ b/arch/aarch64/include/asm/cpu.h
> @@ -63,6 +63,9 @@
>  #define ID_AA64ISAR1_EL1_GPA		BITS(27, 24)
>  #define ID_AA64ISAR1_EL1_GPI		BITS(31, 28)
>  
> +#define ID_AA64ISAR2_EL1_GPA3		BITS(11, 8)
> +#define ID_AA64ISAR2_EL1_APA3		BITS(15, 12)
> +
>  #define ID_AA64MMFR0_EL1_FGT		BITS(59, 56)
>  #define ID_AA64MMFR0_EL1_ECV		BITS(63, 60)
>  
> @@ -104,6 +107,8 @@
>  #define ZCR_EL3			s3_6_c1_c2_0
>  #define ZCR_EL3_LEN_MAX		0xf
>  
> +#define ID_AA64ISAR2_EL1	s3_0_c0_c6_2
> +
>  #define SCTLR_EL1_CP15BEN	(1 << 5)
>  
>  #ifdef KERNEL_32
> diff --git a/arch/aarch64/init.c b/arch/aarch64/init.c
> index 6677f2b..aa58567 100644
> --- a/arch/aarch64/init.c
> +++ b/arch/aarch64/init.c
> @@ -30,12 +30,16 @@ static inline bool kernel_is_32bit(void)
>  
>  static inline bool cpu_has_pauth(void)
>  {
> -	const unsigned long id_pauth = ID_AA64ISAR1_EL1_APA |
> -				       ID_AA64ISAR1_EL1_API |
> -				       ID_AA64ISAR1_EL1_GPA |
> -				       ID_AA64ISAR1_EL1_GPI;
> +	const unsigned long isar1_pauth = ID_AA64ISAR1_EL1_APA |
> +					  ID_AA64ISAR1_EL1_API |
> +					  ID_AA64ISAR1_EL1_GPA |
> +					  ID_AA64ISAR1_EL1_GPI;
>  
> -	return mrs(ID_AA64ISAR1_EL1) & id_pauth;
> +	const unsigned long isar2_pauth = ID_AA64ISAR2_EL1_APA3 |
> +					  ID_AA64ISAR2_EL1_GPA3;
> +
> +	return (mrs(ID_AA64ISAR1_EL1) & isar1_pauth) ||
> +	       (mrs(ID_AA64ISAR2_EL1) & isar2_pauth);
>  }
>  
>  void cpu_init_el3(void)
> -- 
> 2.7.4
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

      reply	other threads:[~2022-02-01 12:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-28 16:02 [bootwrapper PATCH] aarch64: Recognize PAuth QARMA3 Vladimir Murzin
2022-02-01 12:19 ` Mark Rutland [this message]

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=YfklXtPPI99IgRJg@FVFF77S0Q05N \
    --to=mark.rutland@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=vladimir.murzin@arm.com \
    /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