]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_eal/common/include/arch/arm/rte_cpuflags_64.h
bump version to 15.2.11-pve1
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_eal / common / include / arch / arm / rte_cpuflags_64.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2015 Cavium, Inc
3 */
4
5 #ifndef _RTE_CPUFLAGS_ARM64_H_
6 #define _RTE_CPUFLAGS_ARM64_H_
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 /**
13 * Enumeration of all CPU features supported
14 */
15 enum rte_cpu_flag_t {
16 RTE_CPUFLAG_FP = 0,
17 RTE_CPUFLAG_NEON,
18 RTE_CPUFLAG_EVTSTRM,
19 RTE_CPUFLAG_AES,
20 RTE_CPUFLAG_PMULL,
21 RTE_CPUFLAG_SHA1,
22 RTE_CPUFLAG_SHA2,
23 RTE_CPUFLAG_CRC32,
24 RTE_CPUFLAG_ATOMICS,
25 RTE_CPUFLAG_AARCH64,
26 /* The last item */
27 RTE_CPUFLAG_NUMFLAGS,/**< This should always be the last! */
28 };
29
30 #include "generic/rte_cpuflags.h"
31
32 #ifdef __cplusplus
33 }
34 #endif
35
36 #endif /* _RTE_CPUFLAGS_ARM64_H_ */