xref: /linux/arch/arm64/include/uapi/asm/hwcap.h (revision 46efe547aca8498d51b64460c02366ae4032ca32)
14262a727SDavid Howells /*
24262a727SDavid Howells  * Copyright (C) 2012 ARM Ltd.
34262a727SDavid Howells  *
44262a727SDavid Howells  * This program is free software; you can redistribute it and/or modify
54262a727SDavid Howells  * it under the terms of the GNU General Public License version 2 as
64262a727SDavid Howells  * published by the Free Software Foundation.
74262a727SDavid Howells  *
84262a727SDavid Howells  * This program is distributed in the hope that it will be useful,
94262a727SDavid Howells  * but WITHOUT ANY WARRANTY; without even the implied warranty of
104262a727SDavid Howells  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
114262a727SDavid Howells  * GNU General Public License for more details.
124262a727SDavid Howells  *
134262a727SDavid Howells  * You should have received a copy of the GNU General Public License
144262a727SDavid Howells  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
154262a727SDavid Howells  */
164262a727SDavid Howells #ifndef _UAPI__ASM_HWCAP_H
174262a727SDavid Howells #define _UAPI__ASM_HWCAP_H
184262a727SDavid Howells 
194262a727SDavid Howells /*
204262a727SDavid Howells  * HWCAP flags - for elf_hwcap (in kernel) and AT_HWCAP
214262a727SDavid Howells  */
224262a727SDavid Howells #define HWCAP_FP		(1 << 0)
234262a727SDavid Howells #define HWCAP_ASIMD		(1 << 1)
24*46efe547SSudeep KarkadaNagesha #define HWCAP_EVTSTRM		(1 << 2)
254262a727SDavid Howells 
264262a727SDavid Howells 
274262a727SDavid Howells #endif /* _UAPI__ASM_HWCAP_H */
28