diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2025-01-03 13:36:33 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2025-01-03 13:41:51 -0600 |
commit | 97b1dc5d2ada0c6059ea8cca08a3108e07dc869e (patch) | |
tree | a0d8c9bc4b4eedcda96a37935b986329c3ffbbd7 /arch/powerpc | |
parent | 73d1d2439a1a0fff8cc9ff17a31a152951b3208b (diff) | |
download | musl-97b1dc5d2ada0c6059ea8cca08a3108e07dc869e.tar.gz musl-97b1dc5d2ada0c6059ea8cca08a3108e07dc869e.tar.bz2 musl-97b1dc5d2ada0c6059ea8cca08a3108e07dc869e.tar.xz musl-97b1dc5d2ada0c6059ea8cca08a3108e07dc869e.zip |
powerpc: Update HWCAP bits for Power10HEADposix-compliance
Linux kernel commit ee988c11acf6f9464b7b44e9a091bf6afb3b3a49 added two
new HWCAP bits: one for ARCH_3_1, which is the Power10 ISA revision, and
one for MMA, which is the optional Matrix Multiply Assist extension.
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/bits/hwcap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/bits/hwcap.h b/arch/powerpc/bits/hwcap.h index 803de9b5..12981623 100644 --- a/arch/powerpc/bits/hwcap.h +++ b/arch/powerpc/bits/hwcap.h @@ -41,3 +41,5 @@ #define PPC_FEATURE2_DARN 0x00200000 #define PPC_FEATURE2_SCV 0x00100000 #define PPC_FEATURE2_HTM_NO_SUSPEND 0x00080000 +#define PPC_FEATURE2_ARCH_3_1 0x00040000 +#define PPC_FEATURE2_MMA 0x00020000 |