qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] linux-user: use arm features based on cpu model
@ 2010-03-15 12:17 Lars Munch
  2010-03-15 12:26 ` Paul Brook
  0 siblings, 1 reply; 3+ messages in thread
From: Lars Munch @ 2010-03-15 12:17 UTC (permalink / raw)
  To: qemu-devel

Use arm features based on cpu model. The hardcoded feature list gave
problems in the setjmp/longjmp functions of glibc since it tried to use
VFP instructions even though I specified a pxa270 as cpu model.

Signed-off-by: Lars Munch <lars@segv.dk>
---
 linux-user/elfload.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 91eea62..79af51d 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -333,10 +333,12 @@ enum
   ARM_HWCAP_ARM_VFPv3D16  = 1 << 13,
 };
 
-#define ELF_HWCAP (ARM_HWCAP_ARM_SWP | ARM_HWCAP_ARM_HALF              \
-                    | ARM_HWCAP_ARM_THUMB | ARM_HWCAP_ARM_FAST_MULT     \
-                    | ARM_HWCAP_ARM_FPA | ARM_HWCAP_ARM_VFP \
-                    | ARM_HWCAP_ARM_NEON | ARM_HWCAP_ARM_VFPv3 )
+#define ELF_HWCAP get_elf_hwcap()
+
+static uint32_t get_elf_hwcap(void)
+{
+    return thread_env->features;
+}
 
 #endif
 
-- 
1.7.0

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

* Re: [Qemu-devel] [PATCH] linux-user: use arm features based on cpu model
  2010-03-15 12:17 [Qemu-devel] [PATCH] linux-user: use arm features based on cpu model Lars Munch
@ 2010-03-15 12:26 ` Paul Brook
  2010-03-15 16:16   ` Lars Munch
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Brook @ 2010-03-15 12:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Lars Munch

> +static uint32_t get_elf_hwcap(void)
> +{
> +    return thread_env->features;
> +}

No.  These values are not the same.

Paul

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

* Re: [Qemu-devel] [PATCH] linux-user: use arm features based on cpu model
  2010-03-15 12:26 ` Paul Brook
@ 2010-03-15 16:16   ` Lars Munch
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Munch @ 2010-03-15 16:16 UTC (permalink / raw)
  To: Paul Brook; +Cc: qemu-devel

On Mon, Mar 15, 2010 at 12:26:27PM +0000, Paul Brook wrote:
> > +static uint32_t get_elf_hwcap(void)
> > +{
> > +    return thread_env->features;
> > +}
> 
> No.  These values are not the same.
> 
> Paul
>

Yes, these values are indeed not the same. Below is an updated patch with a
function similar to the PPC get_elf_hwcap function. I am unsure if I have too
many or too few features as I do not know the details on all the capability
flags, so comments are more than welcome.

Signed-off-by: Lars Munch <lars@segv.dk>
---
 linux-user/elfload.c |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 91eea62..6364176 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -333,10 +333,26 @@ enum
   ARM_HWCAP_ARM_VFPv3D16  = 1 << 13,
 };
 
-#define ELF_HWCAP (ARM_HWCAP_ARM_SWP | ARM_HWCAP_ARM_HALF              \
-                    | ARM_HWCAP_ARM_THUMB | ARM_HWCAP_ARM_FAST_MULT     \
-                    | ARM_HWCAP_ARM_FPA | ARM_HWCAP_ARM_VFP \
-                    | ARM_HWCAP_ARM_NEON | ARM_HWCAP_ARM_VFPv3 )
+#define ELF_HWCAP get_elf_hwcap()
+
+static uint32_t get_elf_hwcap(void)
+{
+    CPUARMState *e = thread_env;
+    uint32_t features = ARM_HWCAP_ARM_SWP | ARM_HWCAP_ARM_HALF
+      | ARM_HWCAP_ARM_THUMB | ARM_HWCAP_ARM_FAST_MULT
+      | ARM_HWCAP_ARM_FPA;
+
+#define GET_FEATURE(flag, feature)              \
+    do {if (e->features & flag) features |= feature; } while(0)
+    GET_FEATURE(ARM_FEATURE_VFP, ARM_HWCAP_ARM_VFP);
+    GET_FEATURE(ARM_FEATURE_IWMMXT, ARM_HWCAP_ARM_IWMMXT);
+    GET_FEATURE(ARM_FEATURE_NEON, ARM_HWCAP_ARM_NEON);
+    GET_FEATURE(ARM_FEATURE_VFP3, ARM_HWCAP_ARM_VFPv3);
+    GET_FEATURE(ARM_FEATURE_VFP_FP16, ARM_HWCAP_ARM_VFPv3D16);
+#undef GET_FEATURE
+
+    return features;
+}
 
 #endif
 
-- 
1.7.0

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

end of thread, other threads:[~2010-03-15 16:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-15 12:17 [Qemu-devel] [PATCH] linux-user: use arm features based on cpu model Lars Munch
2010-03-15 12:26 ` Paul Brook
2010-03-15 16:16   ` Lars Munch

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).