Skip to content

Commit 5fd22ca

Browse files
committed
Detect ARMv8.2 FP16 extension on Cortex-A75
1 parent 9ab0aa2 commit 5fd22ca

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/arm/linux/aarch32-isa.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ void cpuinfo_arm_linux_decode_isa_from_proc_cpuinfo(
7474
switch (midr & (CPUINFO_ARM_MIDR_IMPLEMENTER_MASK | CPUINFO_ARM_MIDR_PART_MASK)) {
7575
case UINT32_C(0x4100D050): /* Cortex-A55 */
7676
case UINT32_C(0x4100D060): /* Cortex-A65 */
77+
case UINT32_C(0x4100D0A0): /* Cortex-A75 */
7778
case UINT32_C(0x4100D0B0): /* Cortex-A76 */
7879
case UINT32_C(0x4100D0D0): /* Cortex-A77 */
7980
case UINT32_C(0x4100D0E0): /* Cortex-A76AE */

src/arm/linux/aarch64-isa.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ void cpuinfo_arm64_linux_decode_isa_from_proc_cpuinfo(
5252
switch (midr & (CPUINFO_ARM_MIDR_IMPLEMENTER_MASK | CPUINFO_ARM_MIDR_PART_MASK)) {
5353
case UINT32_C(0x4100D050): /* Cortex-A55 */
5454
case UINT32_C(0x4100D060): /* Cortex-A65 */
55+
case UINT32_C(0x4100D0A0): /* Cortex-A75 */
5556
case UINT32_C(0x4100D0B0): /* Cortex-A76 */
5657
case UINT32_C(0x4100D0C0): /* Neoverse N1 */
5758
case UINT32_C(0x4100D0D0): /* Cortex-A77 */

0 commit comments

Comments
 (0)