aboutsummaryrefslogtreecommitdiff
path: root/util/cpuinfo-ppc.c
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2024-06-28 20:58:15 -0400
committerRichard Henderson <richard.henderson@linaro.org>2024-07-03 10:24:07 -0700
commit6527cee257e3c8e7add941a06118009c83ba9e75 (patch)
tree6f08fd8e905ce1ee17433dba807772b0e8d72b34 /util/cpuinfo-ppc.c
parent272d3decc19aebe87955f4ec6d0c6cc8790471f1 (diff)
downloadqemu-6527cee257e3c8e7add941a06118009c83ba9e75.zip
qemu-6527cee257e3c8e7add941a06118009c83ba9e75.tar.gz
qemu-6527cee257e3c8e7add941a06118009c83ba9e75.tar.bz2
util/cpuinfo-ppc: Add FreeBSD support
Signed-off-by: Brad Smith <brad@comstyle.com> Message-Id: <Zn9cJ3puWr5lIgsg@humpty.home.comstyle.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'util/cpuinfo-ppc.c')
-rw-r--r--util/cpuinfo-ppc.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/util/cpuinfo-ppc.c b/util/cpuinfo-ppc.c
index 47af55a..1304f9a 100644
--- a/util/cpuinfo-ppc.c
+++ b/util/cpuinfo-ppc.c
@@ -14,6 +14,13 @@
# 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);