* [Qemu-devel] [PATCH] linux-user: fix running programs with iwmmxt instructions
@ 2010-03-15 12:39 Lars Munch
2010-03-15 12:53 ` Paul Brook
0 siblings, 1 reply; 3+ messages in thread
From: Lars Munch @ 2010-03-15 12:39 UTC (permalink / raw)
To: qemu-devel
When using linux-user for emulating an pxa270 we cannot generate an illegal
instruction trap to the kernel to save/load the iwmmxt registers.
Signed-off-by: Lars Munch <lars@segv.dk>
---
target-arm/translate.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/target-arm/translate.c b/target-arm/translate.c
index cdfe946..6b621b1 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -5802,9 +5802,11 @@ static int disas_coproc_insn(CPUState * env, DisasContext *s, uint32_t insn)
int cpnum;
cpnum = (insn >> 8) & 0xf;
+#if !defined(CONFIG_USER_ONLY)
if (arm_feature(env, ARM_FEATURE_XSCALE)
&& ((env->cp15.c15_cpar ^ 0x3fff) & (1 << cpnum)))
return 1;
+#endif
switch (cpnum) {
case 0:
--
1.7.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] linux-user: fix running programs with iwmmxt instructions
2010-03-15 12:39 [Qemu-devel] [PATCH] linux-user: fix running programs with iwmmxt instructions Lars Munch
@ 2010-03-15 12:53 ` Paul Brook
2010-03-15 16:14 ` Lars Munch
0 siblings, 1 reply; 3+ messages in thread
From: Paul Brook @ 2010-03-15 12:53 UTC (permalink / raw)
To: qemu-devel; +Cc: Lars Munch
> +#if !defined(CONFIG_USER_ONLY)
> if (arm_feature(env, ARM_FEATURE_XSCALE)
> && ((env->cp15.c15_cpar ^ 0x3fff) & (1 << cpnum)))
> return 1;
> +#endif
This is almost certainly the wrong way to fix this.
Paul
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] linux-user: fix running programs with iwmmxt instructions
2010-03-15 12:53 ` Paul Brook
@ 2010-03-15 16:14 ` Lars Munch
0 siblings, 0 replies; 3+ messages in thread
From: Lars Munch @ 2010-03-15 16:14 UTC (permalink / raw)
To: Paul Brook; +Cc: qemu-devel
On Mon, Mar 15, 2010 at 12:53:25PM +0000, Paul Brook wrote:
> > +#if !defined(CONFIG_USER_ONLY)
> > if (arm_feature(env, ARM_FEATURE_XSCALE)
> > && ((env->cp15.c15_cpar ^ 0x3fff) & (1 << cpnum)))
> > return 1;
> > +#endif
>
> This is almost certainly the wrong way to fix this.
>
> Paul
>
Here is a different fix. Hopefully I am on the right track this time. This
patch inits the cpu to have CP0 and/or CP1 accessible from the beginning if in
linux-user mode.
Signed-off-by: Lars Munch <lars@segv.dk>
---
target-arm/helper.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/target-arm/helper.c b/target-arm/helper.c
index 1a181ac..3a55da2 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -165,6 +165,9 @@ static void cpu_reset_model_id(CPUARMState *env, uint32_t id)
/* JTAG_ID is ((id << 28) | 0x09265013) */
env->cp15.c0_cachetype = 0xd172172;
env->cp15.c1_sys = 0x00000078;
+#if defined (CONFIG_USER_ONLY)
+ env->cp15.c15_cpar = 0x00000001;
+#endif
break;
case ARM_CPUID_PXA270_A0:
case ARM_CPUID_PXA270_A1:
@@ -178,6 +181,9 @@ static void cpu_reset_model_id(CPUARMState *env, uint32_t id)
env->iwmmxt.cregs[ARM_IWMMXT_wCID] = 0x69051000 | 'Q';
env->cp15.c0_cachetype = 0xd172172;
env->cp15.c1_sys = 0x00000078;
+#if defined (CONFIG_USER_ONLY)
+ env->cp15.c15_cpar = 0x00000003;
+#endif
break;
default:
cpu_abort(env, "Bad CPU ID: %x\n", id);
--
1.7.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-03-15 16:14 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:39 [Qemu-devel] [PATCH] linux-user: fix running programs with iwmmxt instructions Lars Munch
2010-03-15 12:53 ` Paul Brook
2010-03-15 16:14 ` 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).