Skip to content

Commit

Permalink
api: sysinfo: add new ARMv8 and v9 enumerations
Browse files Browse the repository at this point in the history
Added enumerations for ARM ISA versions ARMv8.8-A, ARMv8.9-A, and
ARMv9.3-A.

Signed-off-by: Matias Elo <matias.elo@nokia.com>
  • Loading branch information
MatiasElo committed Oct 13, 2023
1 parent b087d63 commit bf0931f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions include/odp/api/spec/system_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ typedef enum odp_cpu_arch_arm_t {
/** ARMv8.7-A ISA */
ODP_CPU_ARCH_ARMV8_7,

/** ARMv8.8-A ISA */
ODP_CPU_ARCH_ARMV8_8,

/** ARMv8.9-A ISA */
ODP_CPU_ARCH_ARMV8_9,

/** ARMv9.0-A ISA */
ODP_CPU_ARCH_ARMV9_0,

Expand All @@ -97,6 +103,9 @@ typedef enum odp_cpu_arch_arm_t {
/** ARMv9.2-A ISA */
ODP_CPU_ARCH_ARMV9_2,

/** ARMv9.3-A ISA */
ODP_CPU_ARCH_ARMV9_3,

} odp_cpu_arch_arm_t;

/**
Expand Down

0 comments on commit bf0931f

Please sign in to comment.