mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-16 15:18:10 +02:00
To enable AARCH64 native instruction support for Openssl, some interfaces must be implemented. OPENSSL_cpuid_setup() allows to probe the supported features of the platform. Add ArmReadIdAA64Isar0Reg() to read the AA64Isar0, containing Arm64 instruction capabilities. A similar ArmReadIdAA64Isar0() function is available in the ArmPkg, but the CryptoPkg where OPENSSL_cpuid_setup will reside cannot rely on the ArmPkg. Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
31 lines
637 B
NASM
31 lines
637 B
NASM
;------------------------------------------------------------------------------
|
|
;
|
|
; ArmReadIdAA64Isar0Reg() for AArch64
|
|
;
|
|
; Copyright (c) 2021, NUVIA Inc. All rights reserved.<BR>
|
|
;
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
EXPORT ArmReadIdAA64Isar0Reg
|
|
AREA BaseLib_LowLevel, CODE, READONLY
|
|
|
|
;/**
|
|
; Reads the ID_AA64ISAR0 Register.
|
|
;
|
|
; @return The contents of the ID_AA64ISAR0 register.
|
|
;
|
|
;**/
|
|
;UINT64
|
|
;EFIAPI
|
|
;ArmReadIdAA64Isar0Reg (
|
|
; VOID
|
|
; );
|
|
;
|
|
ArmReadIdAA64Isar0Reg
|
|
mrs x0, id_aa64isar0_el1
|
|
ret
|
|
|
|
END
|