2017-11-01 14:09:13 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
2012-03-05 11:49:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 ARM Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2012-10-11 10:05:13 +00:00
|
|
|
#ifndef _UAPI__ASM_HWCAP_H
|
|
|
|
#define _UAPI__ASM_HWCAP_H
|
2012-03-05 11:49:27 +00:00
|
|
|
|
2012-10-11 10:05:13 +00:00
|
|
|
/*
|
|
|
|
* HWCAP flags - for elf_hwcap (in kernel) and AT_HWCAP
|
|
|
|
*/
|
|
|
|
#define HWCAP_FP (1 << 0)
|
|
|
|
#define HWCAP_ASIMD (1 << 1)
|
2013-08-13 14:57:53 +00:00
|
|
|
#define HWCAP_EVTSTRM (1 << 2)
|
2013-12-16 21:04:36 +00:00
|
|
|
#define HWCAP_AES (1 << 3)
|
|
|
|
#define HWCAP_PMULL (1 << 4)
|
|
|
|
#define HWCAP_SHA1 (1 << 5)
|
|
|
|
#define HWCAP_SHA2 (1 << 6)
|
|
|
|
#define HWCAP_CRC32 (1 << 7)
|
2015-01-26 18:46:19 +00:00
|
|
|
#define HWCAP_ATOMICS (1 << 8)
|
2016-01-26 15:52:46 +00:00
|
|
|
#define HWCAP_FPHP (1 << 9)
|
|
|
|
#define HWCAP_ASIMDHP (1 << 10)
|
2017-01-09 17:28:31 +00:00
|
|
|
#define HWCAP_CPUID (1 << 11)
|
2017-01-12 16:37:28 +00:00
|
|
|
#define HWCAP_ASIMDRDM (1 << 12)
|
2017-03-14 18:13:25 +00:00
|
|
|
#define HWCAP_JSCVT (1 << 13)
|
2017-03-14 18:13:26 +00:00
|
|
|
#define HWCAP_FCMA (1 << 14)
|
2017-03-14 18:13:27 +00:00
|
|
|
#define HWCAP_LRCPC (1 << 15)
|
2017-07-25 10:55:40 +00:00
|
|
|
#define HWCAP_DCPOP (1 << 16)
|
2017-10-11 13:01:02 +00:00
|
|
|
#define HWCAP_SHA3 (1 << 17)
|
|
|
|
#define HWCAP_SM3 (1 << 18)
|
|
|
|
#define HWCAP_SM4 (1 << 19)
|
|
|
|
#define HWCAP_ASIMDDP (1 << 20)
|
|
|
|
#define HWCAP_SHA512 (1 << 21)
|
2017-10-31 15:51:19 +00:00
|
|
|
#define HWCAP_SVE (1 << 22)
|
2012-03-05 11:49:27 +00:00
|
|
|
|
2012-10-11 10:05:13 +00:00
|
|
|
#endif /* _UAPI__ASM_HWCAP_H */
|