git: 137ce1e2b2f4 - main - arm64: Use decimal values for op and CR macros

From: Andrew Turner <andrew_at_FreeBSD.org>
Date: Tue, 25 Aug 2026 13:55:38 UTC
The branch main has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=137ce1e2b2f4d5ddd2f32c09d80e1ac3ec1ccde4

commit 137ce1e2b2f4d5ddd2f32c09d80e1ac3ec1ccde4
Author:     Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2025-06-02 16:05:21 +0000
Commit:     Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2026-08-25 13:47:53 +0000

    arm64: Use decimal values for op and CR macros
    
    Using hex here breaks the instruction generated by MRS_REG_ALT_NAME.
    Switch to a decimal value.
    
    Sponsored by:   Arm Ltd
---
 sys/arm64/include/armreg.h | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/sys/arm64/include/armreg.h b/sys/arm64/include/armreg.h
index 673af260ac79..cd79bed39406 100644
--- a/sys/arm64/include/armreg.h
+++ b/sys/arm64/include/armreg.h
@@ -2023,11 +2023,11 @@
 
 /* ID_ISAR5_EL1 */
 #define	ID_ISAR5_EL1_ISS		ISS_MSR_REG(ID_ISAR5_EL1)
-#define	ID_ISAR5_EL1_op0		0x3
-#define	ID_ISAR5_EL1_op1		0x0
-#define	ID_ISAR5_EL1_CRn		0x0
-#define	ID_ISAR5_EL1_CRm		0x2
-#define	ID_ISAR5_EL1_op2		0x5
+#define	ID_ISAR5_EL1_op0		3
+#define	ID_ISAR5_EL1_op1		0
+#define	ID_ISAR5_EL1_CRn		0
+#define	ID_ISAR5_EL1_CRm		2
+#define	ID_ISAR5_EL1_op2		5
 #define	ID_ISAR5_SEVL_SHIFT		0
 #define	ID_ISAR5_SEVL_WIDTH		4
 #define	ID_ISAR5_SEVL_MASK		(UL(0xf) << ID_ISAR5_SEVL_SHIFT)
@@ -2155,11 +2155,11 @@
 
 /* MVFR0_EL1 */
 #define	MVFR0_EL1_ISS			ISS_MSR_REG(MVFR0_EL1)
-#define	MVFR0_EL1_op0			0x3
-#define	MVFR0_EL1_op1			0x0
-#define	MVFR0_EL1_CRn			0x0
-#define	MVFR0_EL1_CRm			0x3
-#define	MVFR0_EL1_op2			0x0
+#define	MVFR0_EL1_op0			3
+#define	MVFR0_EL1_op1			0
+#define	MVFR0_EL1_CRn			0
+#define	MVFR0_EL1_CRm			3
+#define	MVFR0_EL1_op2			0
 #define	MVFR0_SIMDReg_SHIFT		0
 #define	MVFR0_SIMDReg_WIDTH		4
 #define	MVFR0_SIMDReg_MASK		(UL(0xf) << MVFR0_SIMDReg_SHIFT)
@@ -2214,11 +2214,11 @@
 
 /* MVFR1_EL1 */
 #define	MVFR1_EL1_ISS			ISS_MSR_REG(MVFR1_EL1)
-#define	MVFR1_EL1_op0			0x3
-#define	MVFR1_EL1_op1			0x0
-#define	MVFR1_EL1_CRn			0x0
-#define	MVFR1_EL1_CRm			0x3
-#define	MVFR1_EL1_op2			0x1
+#define	MVFR1_EL1_op0			3
+#define	MVFR1_EL1_op1			0
+#define	MVFR1_EL1_CRn			0
+#define	MVFR1_EL1_CRm			3
+#define	MVFR1_EL1_op2			1
 #define	MVFR1_FPFtZ_SHIFT		0
 #define	MVFR1_FPFtZ_WIDTH		4
 #define	MVFR1_FPFtZ_MASK		(UL(0xf) << MVFR1_FPFtZ_SHIFT)