mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-04 20:57:45 -04:00
Armv8.7 introduces single-copy atomic 64-byte loads and stores
instructions and its variants named under FEAT_{LS64, LS64_V}.
These features are identified by ID_AA64ISAR1_EL1.LS64 and the
use of such instructions in userspace (EL0) can be trapped.
As st64bv (FEAT_LS64_V) and st64bv0 (FEAT_LS64_ACCDATA) can not be tell
apart, FEAT_LS64 and FEAT_LS64_ACCDATA which will be supported in later
patch will be exported to userspace, FEAT_LS64_V will be enabled only
in kernel.
In order to support the use of corresponding instructions in userspace:
- Make ID_AA64ISAR1_EL1.LS64 visbile to userspace
- Add identifying and enabling in the cpufeature list
- Expose these support of these features to userspace through HWCAP3
and cpuinfo
ld64b/st64b (FEAT_LS64) and st64bv (FEAT_LS64_V) is intended for
special memory (device memory) so requires support by the CPU, system
and target memory location (device that support these instructions).
The HWCAP3_LS64, implies the support of CPU and system (since no
identification method from system, so SoC vendors should advertise
support in the CPU if system also support them).
Otherwise for ld64b/st64b the atomicity may not be guaranteed or a
DABT will be generated, so users (probably userspace driver developer)
should make sure the target memory (device) also have the support.
For st64bv 0xffffffffffffffff will be returned as status result for
unsupported memory so user should check it.
Document the restrictions along with HWCAP3_LS64.
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Oliver Upton <oupton@kernel.org>
Signed-off-by: Yicong Yang <yangyicong@hisilicon.com>
Signed-off-by: Zhou Wang <wangzhou1@hisilicon.com>
Signed-off-by: Will Deacon <will@kernel.org>
460 lines
13 KiB
ReStructuredText
460 lines
13 KiB
ReStructuredText
.. _elf_hwcaps_index:
|
|
|
|
================
|
|
ARM64 ELF hwcaps
|
|
================
|
|
|
|
This document describes the usage and semantics of the arm64 ELF hwcaps.
|
|
|
|
|
|
1. Introduction
|
|
---------------
|
|
|
|
Some hardware or software features are only available on some CPU
|
|
implementations, and/or with certain kernel configurations, but have no
|
|
architected discovery mechanism available to userspace code at EL0. The
|
|
kernel exposes the presence of these features to userspace through a set
|
|
of flags called hwcaps, exposed in the auxiliary vector.
|
|
|
|
Userspace software can test for features by acquiring the AT_HWCAP,
|
|
AT_HWCAP2 or AT_HWCAP3 entry of the auxiliary vector, and testing
|
|
whether the relevant flags are set, e.g.::
|
|
|
|
bool floating_point_is_present(void)
|
|
{
|
|
unsigned long hwcaps = getauxval(AT_HWCAP);
|
|
if (hwcaps & HWCAP_FP)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
Where software relies on a feature described by a hwcap, it should check
|
|
the relevant hwcap flag to verify that the feature is present before
|
|
attempting to make use of the feature.
|
|
|
|
Features cannot be probed reliably through other means. When a feature
|
|
is not available, attempting to use it may result in unpredictable
|
|
behaviour, and is not guaranteed to result in any reliable indication
|
|
that the feature is unavailable, such as a SIGILL.
|
|
|
|
|
|
2. Interpretation of hwcaps
|
|
---------------------------
|
|
|
|
The majority of hwcaps are intended to indicate the presence of features
|
|
which are described by architected ID registers inaccessible to
|
|
userspace code at EL0. These hwcaps are defined in terms of ID register
|
|
fields, and should be interpreted with reference to the definition of
|
|
these fields in the ARM Architecture Reference Manual (ARM ARM).
|
|
|
|
Such hwcaps are described below in the form::
|
|
|
|
Functionality implied by idreg.field == val.
|
|
|
|
Such hwcaps indicate the availability of functionality that the ARM ARM
|
|
defines as being present when idreg.field has value val, but do not
|
|
indicate that idreg.field is precisely equal to val, nor do they
|
|
indicate the absence of functionality implied by other values of
|
|
idreg.field.
|
|
|
|
Other hwcaps may indicate the presence of features which cannot be
|
|
described by ID registers alone. These may be described without
|
|
reference to ID registers, and may refer to other documentation.
|
|
|
|
|
|
3. The hwcaps exposed in AT_HWCAP
|
|
---------------------------------
|
|
|
|
HWCAP_FP
|
|
Functionality implied by ID_AA64PFR0_EL1.FP == 0b0000.
|
|
|
|
HWCAP_ASIMD
|
|
Functionality implied by ID_AA64PFR0_EL1.AdvSIMD == 0b0000.
|
|
|
|
HWCAP_EVTSTRM
|
|
The generic timer is configured to generate events at a frequency of
|
|
approximately 10KHz.
|
|
|
|
HWCAP_AES
|
|
Functionality implied by ID_AA64ISAR0_EL1.AES == 0b0001.
|
|
|
|
HWCAP_PMULL
|
|
Functionality implied by ID_AA64ISAR0_EL1.AES == 0b0010.
|
|
|
|
HWCAP_SHA1
|
|
Functionality implied by ID_AA64ISAR0_EL1.SHA1 == 0b0001.
|
|
|
|
HWCAP_SHA2
|
|
Functionality implied by ID_AA64ISAR0_EL1.SHA2 == 0b0001.
|
|
|
|
HWCAP_CRC32
|
|
Functionality implied by ID_AA64ISAR0_EL1.CRC32 == 0b0001.
|
|
|
|
HWCAP_ATOMICS
|
|
Functionality implied by ID_AA64ISAR0_EL1.Atomic == 0b0010.
|
|
|
|
HWCAP_FPHP
|
|
Functionality implied by ID_AA64PFR0_EL1.FP == 0b0001.
|
|
|
|
HWCAP_ASIMDHP
|
|
Functionality implied by ID_AA64PFR0_EL1.AdvSIMD == 0b0001.
|
|
|
|
HWCAP_CPUID
|
|
EL0 access to certain ID registers is available, to the extent
|
|
described by Documentation/arch/arm64/cpu-feature-registers.rst.
|
|
|
|
These ID registers may imply the availability of features.
|
|
|
|
HWCAP_ASIMDRDM
|
|
Functionality implied by ID_AA64ISAR0_EL1.RDM == 0b0001.
|
|
|
|
HWCAP_JSCVT
|
|
Functionality implied by ID_AA64ISAR1_EL1.JSCVT == 0b0001.
|
|
|
|
HWCAP_FCMA
|
|
Functionality implied by ID_AA64ISAR1_EL1.FCMA == 0b0001.
|
|
|
|
HWCAP_LRCPC
|
|
Functionality implied by ID_AA64ISAR1_EL1.LRCPC == 0b0001.
|
|
|
|
HWCAP_DCPOP
|
|
Functionality implied by ID_AA64ISAR1_EL1.DPB == 0b0001.
|
|
|
|
HWCAP_SHA3
|
|
Functionality implied by ID_AA64ISAR0_EL1.SHA3 == 0b0001.
|
|
|
|
HWCAP_SM3
|
|
Functionality implied by ID_AA64ISAR0_EL1.SM3 == 0b0001.
|
|
|
|
HWCAP_SM4
|
|
Functionality implied by ID_AA64ISAR0_EL1.SM4 == 0b0001.
|
|
|
|
HWCAP_ASIMDDP
|
|
Functionality implied by ID_AA64ISAR0_EL1.DP == 0b0001.
|
|
|
|
HWCAP_SHA512
|
|
Functionality implied by ID_AA64ISAR0_EL1.SHA2 == 0b0010.
|
|
|
|
HWCAP_SVE
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001.
|
|
|
|
HWCAP_ASIMDFHM
|
|
Functionality implied by ID_AA64ISAR0_EL1.FHM == 0b0001.
|
|
|
|
HWCAP_DIT
|
|
Functionality implied by ID_AA64PFR0_EL1.DIT == 0b0001.
|
|
|
|
HWCAP_USCAT
|
|
Functionality implied by ID_AA64MMFR2_EL1.AT == 0b0001.
|
|
|
|
HWCAP_ILRCPC
|
|
Functionality implied by ID_AA64ISAR1_EL1.LRCPC == 0b0010.
|
|
|
|
HWCAP_FLAGM
|
|
Functionality implied by ID_AA64ISAR0_EL1.TS == 0b0001.
|
|
|
|
HWCAP_SSBS
|
|
Functionality implied by ID_AA64PFR1_EL1.SSBS == 0b0010.
|
|
|
|
HWCAP_SB
|
|
Functionality implied by ID_AA64ISAR1_EL1.SB == 0b0001.
|
|
|
|
HWCAP_PACA
|
|
Functionality implied by ID_AA64ISAR1_EL1.APA == 0b0001 or
|
|
ID_AA64ISAR1_EL1.API == 0b0001, as described by
|
|
Documentation/arch/arm64/pointer-authentication.rst.
|
|
|
|
HWCAP_PACG
|
|
Functionality implied by ID_AA64ISAR1_EL1.GPA == 0b0001 or
|
|
ID_AA64ISAR1_EL1.GPI == 0b0001, as described by
|
|
Documentation/arch/arm64/pointer-authentication.rst.
|
|
|
|
HWCAP_GCS
|
|
Functionality implied by ID_AA64PFR1_EL1.GCS == 0b1, as
|
|
described by Documentation/arch/arm64/gcs.rst.
|
|
|
|
HWCAP_CMPBR
|
|
Functionality implied by ID_AA64ISAR2_EL1.CSSC == 0b0010.
|
|
|
|
HWCAP_FPRCVT
|
|
Functionality implied by ID_AA64ISAR3_EL1.FPRCVT == 0b0001.
|
|
|
|
HWCAP_F8MM8
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8MM8 == 0b0001.
|
|
|
|
HWCAP_F8MM4
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8MM4 == 0b0001.
|
|
|
|
HWCAP_SVE_F16MM
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.F16MM == 0b0001.
|
|
|
|
HWCAP_SVE_ELTPERM
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.ELTPERM == 0b0001.
|
|
|
|
HWCAP_SVE_AES2
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.AES == 0b0011.
|
|
|
|
HWCAP_SVE_BFSCALE
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.B16B16 == 0b0010.
|
|
|
|
HWCAP_SVE2P2
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.SVEver == 0b0011.
|
|
|
|
HWCAP_SME2P2
|
|
Functionality implied by ID_AA64SMFR0_EL1.SMEver == 0b0011.
|
|
|
|
HWCAP_SME_SBITPERM
|
|
Functionality implied by ID_AA64SMFR0_EL1.SBitPerm == 0b1.
|
|
|
|
HWCAP_SME_AES
|
|
Functionality implied by ID_AA64SMFR0_EL1.AES == 0b1.
|
|
|
|
HWCAP_SME_SFEXPA
|
|
Functionality implied by ID_AA64SMFR0_EL1.SFEXPA == 0b1.
|
|
|
|
HWCAP_SME_STMOP
|
|
Functionality implied by ID_AA64SMFR0_EL1.STMOP == 0b1.
|
|
|
|
HWCAP_SME_SMOP4
|
|
Functionality implied by ID_AA64SMFR0_EL1.SMOP4 == 0b1.
|
|
|
|
HWCAP2_DCPODP
|
|
Functionality implied by ID_AA64ISAR1_EL1.DPB == 0b0010.
|
|
|
|
HWCAP2_SVE2
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.SVEver == 0b0001.
|
|
|
|
HWCAP2_SVEAES
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.AES == 0b0001.
|
|
|
|
HWCAP2_SVEPMULL
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.AES == 0b0010.
|
|
|
|
HWCAP2_SVEBITPERM
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.BitPerm == 0b0001.
|
|
|
|
HWCAP2_SVESHA3
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.SHA3 == 0b0001.
|
|
|
|
HWCAP2_SVESM4
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.SM4 == 0b0001.
|
|
|
|
HWCAP2_FLAGM2
|
|
Functionality implied by ID_AA64ISAR0_EL1.TS == 0b0010.
|
|
|
|
HWCAP2_FRINT
|
|
Functionality implied by ID_AA64ISAR1_EL1.FRINTTS == 0b0001.
|
|
|
|
HWCAP2_SVEI8MM
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.I8MM == 0b0001.
|
|
|
|
HWCAP2_SVEF32MM
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.F32MM == 0b0001.
|
|
|
|
HWCAP2_SVEF64MM
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.F64MM == 0b0001.
|
|
|
|
HWCAP2_SVEBF16
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.BF16 == 0b0001.
|
|
|
|
HWCAP2_I8MM
|
|
Functionality implied by ID_AA64ISAR1_EL1.I8MM == 0b0001.
|
|
|
|
HWCAP2_BF16
|
|
Functionality implied by ID_AA64ISAR1_EL1.BF16 == 0b0001.
|
|
|
|
HWCAP2_DGH
|
|
Functionality implied by ID_AA64ISAR1_EL1.DGH == 0b0001.
|
|
|
|
HWCAP2_RNG
|
|
Functionality implied by ID_AA64ISAR0_EL1.RNDR == 0b0001.
|
|
|
|
HWCAP2_BTI
|
|
Functionality implied by ID_AA64PFR1_EL1.BT == 0b0001.
|
|
|
|
HWCAP2_MTE
|
|
Functionality implied by ID_AA64PFR1_EL1.MTE == 0b0010, as described
|
|
by Documentation/arch/arm64/memory-tagging-extension.rst.
|
|
|
|
HWCAP2_ECV
|
|
Functionality implied by ID_AA64MMFR0_EL1.ECV == 0b0001.
|
|
|
|
HWCAP2_AFP
|
|
Functionality implied by ID_AA64MMFR1_EL1.AFP == 0b0001.
|
|
|
|
HWCAP2_RPRES
|
|
Functionality implied by ID_AA64ISAR2_EL1.RPRES == 0b0001.
|
|
|
|
HWCAP2_MTE3
|
|
Functionality implied by ID_AA64PFR1_EL1.MTE == 0b0011, as described
|
|
by Documentation/arch/arm64/memory-tagging-extension.rst.
|
|
|
|
HWCAP2_SME
|
|
Functionality implied by ID_AA64PFR1_EL1.SME == 0b0001, as described
|
|
by Documentation/arch/arm64/sme.rst.
|
|
|
|
HWCAP2_SME_I16I64
|
|
Functionality implied by ID_AA64SMFR0_EL1.I16I64 == 0b1111.
|
|
|
|
HWCAP2_SME_F64F64
|
|
Functionality implied by ID_AA64SMFR0_EL1.F64F64 == 0b1.
|
|
|
|
HWCAP2_SME_I8I32
|
|
Functionality implied by ID_AA64SMFR0_EL1.I8I32 == 0b1111.
|
|
|
|
HWCAP2_SME_F16F32
|
|
Functionality implied by ID_AA64SMFR0_EL1.F16F32 == 0b1.
|
|
|
|
HWCAP2_SME_B16F32
|
|
Functionality implied by ID_AA64SMFR0_EL1.B16F32 == 0b1.
|
|
|
|
HWCAP2_SME_F32F32
|
|
Functionality implied by ID_AA64SMFR0_EL1.F32F32 == 0b1.
|
|
|
|
HWCAP2_SME_FA64
|
|
Functionality implied by ID_AA64SMFR0_EL1.FA64 == 0b1.
|
|
|
|
HWCAP2_WFXT
|
|
Functionality implied by ID_AA64ISAR2_EL1.WFXT == 0b0010.
|
|
|
|
HWCAP2_EBF16
|
|
Functionality implied by ID_AA64ISAR1_EL1.BF16 == 0b0010.
|
|
|
|
HWCAP2_SVE_EBF16
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.BF16 == 0b0010.
|
|
|
|
HWCAP2_CSSC
|
|
Functionality implied by ID_AA64ISAR2_EL1.CSSC == 0b0001.
|
|
|
|
HWCAP2_RPRFM
|
|
Functionality implied by ID_AA64ISAR2_EL1.RPRFM == 0b0001.
|
|
|
|
HWCAP2_SVE2P1
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.SVEver == 0b0010.
|
|
|
|
HWCAP2_SME2
|
|
Functionality implied by ID_AA64SMFR0_EL1.SMEver == 0b0001.
|
|
|
|
HWCAP2_SME2P1
|
|
Functionality implied by ID_AA64SMFR0_EL1.SMEver == 0b0010.
|
|
|
|
HWCAP2_SMEI16I32
|
|
Functionality implied by ID_AA64SMFR0_EL1.I16I32 == 0b0101
|
|
|
|
HWCAP2_SMEBI32I32
|
|
Functionality implied by ID_AA64SMFR0_EL1.BI32I32 == 0b1
|
|
|
|
HWCAP2_SMEB16B16
|
|
Functionality implied by ID_AA64SMFR0_EL1.B16B16 == 0b1
|
|
|
|
HWCAP2_SMEF16F16
|
|
Functionality implied by ID_AA64SMFR0_EL1.F16F16 == 0b1
|
|
|
|
HWCAP2_MOPS
|
|
Functionality implied by ID_AA64ISAR2_EL1.MOPS == 0b0001.
|
|
|
|
HWCAP2_HBC
|
|
Functionality implied by ID_AA64ISAR2_EL1.BC == 0b0001.
|
|
|
|
HWCAP2_SVE_B16B16
|
|
Functionality implied by ID_AA64PFR0_EL1.SVE == 0b0001 and
|
|
ID_AA64ZFR0_EL1.B16B16 == 0b0001.
|
|
|
|
HWCAP2_LRCPC3
|
|
Functionality implied by ID_AA64ISAR1_EL1.LRCPC == 0b0011.
|
|
|
|
HWCAP2_LSE128
|
|
Functionality implied by ID_AA64ISAR0_EL1.Atomic == 0b0011.
|
|
|
|
HWCAP2_FPMR
|
|
Functionality implied by ID_AA64PFR2_EL1.FMR == 0b0001.
|
|
|
|
HWCAP2_LUT
|
|
Functionality implied by ID_AA64ISAR2_EL1.LUT == 0b0001.
|
|
|
|
HWCAP2_FAMINMAX
|
|
Functionality implied by ID_AA64ISAR3_EL1.FAMINMAX == 0b0001.
|
|
|
|
HWCAP2_F8CVT
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8CVT == 0b1.
|
|
|
|
HWCAP2_F8FMA
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8FMA == 0b1.
|
|
|
|
HWCAP2_F8DP4
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8DP4 == 0b1.
|
|
|
|
HWCAP2_F8DP2
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8DP2 == 0b1.
|
|
|
|
HWCAP2_F8E4M3
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8E4M3 == 0b1.
|
|
|
|
HWCAP2_F8E5M2
|
|
Functionality implied by ID_AA64FPFR0_EL1.F8E5M2 == 0b1.
|
|
|
|
HWCAP2_SME_LUTV2
|
|
Functionality implied by ID_AA64SMFR0_EL1.LUTv2 == 0b1.
|
|
|
|
HWCAP2_SME_F8F16
|
|
Functionality implied by ID_AA64SMFR0_EL1.F8F16 == 0b1.
|
|
|
|
HWCAP2_SME_F8F32
|
|
Functionality implied by ID_AA64SMFR0_EL1.F8F32 == 0b1.
|
|
|
|
HWCAP2_SME_SF8FMA
|
|
Functionality implied by ID_AA64SMFR0_EL1.SF8FMA == 0b1.
|
|
|
|
HWCAP2_SME_SF8DP4
|
|
Functionality implied by ID_AA64SMFR0_EL1.SF8DP4 == 0b1.
|
|
|
|
HWCAP2_SME_SF8DP2
|
|
Functionality implied by ID_AA64SMFR0_EL1.SF8DP2 == 0b1.
|
|
|
|
HWCAP2_SME_SF8DP4
|
|
Functionality implied by ID_AA64SMFR0_EL1.SF8DP4 == 0b1.
|
|
|
|
HWCAP2_POE
|
|
Functionality implied by ID_AA64MMFR3_EL1.S1POE == 0b0001.
|
|
|
|
HWCAP3_MTE_FAR
|
|
Functionality implied by ID_AA64PFR2_EL1.MTEFAR == 0b0001.
|
|
|
|
HWCAP3_MTE_STORE_ONLY
|
|
Functionality implied by ID_AA64PFR2_EL1.MTESTOREONLY == 0b0001.
|
|
|
|
HWCAP3_LSFE
|
|
Functionality implied by ID_AA64ISAR3_EL1.LSFE == 0b0001
|
|
|
|
HWCAP3_LS64
|
|
Functionality implied by ID_AA64ISAR1_EL1.LS64 == 0b0001. Note that
|
|
the function of instruction ld64b/st64b requires support by CPU, system
|
|
and target (device) memory location and HWCAP3_LS64 implies the support
|
|
of CPU. User should only use ld64b/st64b on supported target (device)
|
|
memory location, otherwise fallback to the non-atomic alternatives.
|
|
|
|
|
|
4. Unused AT_HWCAP bits
|
|
-----------------------
|
|
|
|
For interoperation with userspace, the kernel guarantees that bits 62
|
|
and 63 of AT_HWCAP will always be returned as 0.
|