util/cpuinfo-ppc: Add FreeBSD support
authorBrad Smith <brad@comstyle.com>
Sat, 29 Jun 2024 00:58:15 +0000 (20:58 -0400)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 3 Jul 2024 17:24:07 +0000 (10:24 -0700)
Signed-off-by: Brad Smith <brad@comstyle.com>
Message-Id: <Zn9cJ3puWr5lIgsg@humpty.home.comstyle.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
util/cpuinfo-ppc.c

index 47af55aa0c33fddc6b2919c7102fba4976efc5a8..1304f9aa80aca445b18a21e25b344661b83859cd 100644 (file)
 #  include "elf.h"
 # endif
 #endif
+#ifdef __FreeBSD__
+# include <machine/cpu.h>
+# ifndef PPC_FEATURE2_ARCH_3_1
+#  define PPC_FEATURE2_ARCH_3_1   0
+# endif
+# define PPC_FEATURE2_VEC_CRYPTO  PPC_FEATURE2_HAS_VEC_CRYPTO
+#endif
 
 unsigned cpuinfo;
 
@@ -28,7 +35,7 @@ unsigned __attribute__((constructor)) cpuinfo_init(void)
 
     info = CPUINFO_ALWAYS;
 
-#ifdef CONFIG_LINUX
+#if defined(CONFIG_LINUX) || defined(__FreeBSD__)
     unsigned long hwcap = qemu_getauxval(AT_HWCAP);
     unsigned long hwcap2 = qemu_getauxval(AT_HWCAP2);