qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] util/cpuinfo-ppc: Add FreeBSD support
@ 2024-06-29  0:58 Brad Smith
  2024-06-30  3:26 ` Richard Henderson
  0 siblings, 1 reply; 2+ messages in thread
From: Brad Smith @ 2024-06-29  0:58 UTC (permalink / raw)
  To: Richard Henderson, Paolo Bonzini; +Cc: qemu-devel

util/cpuinfo-ppc: Add FreeBSD support

Signed-off-by: Brad Smith <brad@comstyle.com>
---
v2: Use ifndef with PPC_FEATURE2_ARCH_3_1

 util/cpuinfo-ppc.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/util/cpuinfo-ppc.c b/util/cpuinfo-ppc.c
index 47af55aa0c..f0b9b895f1 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);
 
-- 
2.45.2



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] util/cpuinfo-ppc: Add FreeBSD support
  2024-06-29  0:58 [PATCH v2] util/cpuinfo-ppc: Add FreeBSD support Brad Smith
@ 2024-06-30  3:26 ` Richard Henderson
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Henderson @ 2024-06-30  3:26 UTC (permalink / raw)
  To: Brad Smith, Paolo Bonzini; +Cc: qemu-devel

On 6/28/24 17:58, Brad Smith wrote:
> util/cpuinfo-ppc: Add FreeBSD support
> 
> Signed-off-by: Brad Smith<brad@comstyle.com>
> ---
> v2: Use ifndef with PPC_FEATURE2_ARCH_3_1
> 
>   util/cpuinfo-ppc.c | 9 ++++++++-
>   1 file changed, 8 insertions(+), 1 deletion(-)

Thanks, and queued.


r~


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-06-30  3:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-29  0:58 [PATCH v2] util/cpuinfo-ppc: Add FreeBSD support Brad Smith
2024-06-30  3:26 ` Richard Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).