From: Brad Smith Date: Sat, 29 Jun 2024 00:58:15 +0000 (-0400) Subject: util/cpuinfo-ppc: Add FreeBSD support X-Git-Tag: qemu-xen-4.20.0~88^2~5 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6527cee257e3c8e7add941a06118009c83ba9e75;p=qemu-xen.git util/cpuinfo-ppc: Add FreeBSD support Signed-off-by: Brad Smith Message-Id: Signed-off-by: Richard Henderson --- diff --git a/util/cpuinfo-ppc.c b/util/cpuinfo-ppc.c index 47af55aa0c..1304f9aa80 100644 --- a/util/cpuinfo-ppc.c +++ b/util/cpuinfo-ppc.c @@ -14,6 +14,13 @@ # include "elf.h" # endif #endif +#ifdef __FreeBSD__ +# include +# 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);