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
642 B
ArmAsm
31 lines
642 B
ArmAsm
#------------------------------------------------------------------------------
|
|
#
|
|
# ArmReadIdAA64Isar0Reg() for AArch64
|
|
#
|
|
# Copyright (c) 2021, NUVIA Inc. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
|
|
.text
|
|
.p2align 2
|
|
GCC_ASM_EXPORT(ArmReadIdAA64Isar0Reg)
|
|
|
|
#/**
|
|
# Reads the ID_AA64ISAR0 Register.
|
|
#
|
|
# @return The contents of the ID_AA64ISAR0 register.
|
|
#
|
|
#**/
|
|
#UINT64
|
|
#EFIAPI
|
|
#ArmReadIdAA64Isar0Reg (
|
|
# VOID
|
|
# );
|
|
#
|
|
ASM_PFX(ArmReadIdAA64Isar0Reg):
|
|
AARCH64_BTI(c)
|
|
mrs x0, id_aa64isar0_el1
|
|
ret
|