* [Qemu-devel] [PATCH] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers. @ 2012-03-28 14:37 Andrew Towers 2012-03-28 15:24 ` Peter Maydell 0 siblings, 1 reply; 5+ messages in thread From: Andrew Towers @ 2012-03-28 14:37 UTC (permalink / raw) To: qemu-devel; +Cc: Peter Maydell, Paul Brook, Andrew Towers From: Andrew Towers <atowers@gmail.com> Replaces the ARM_FEATURE_VFP3 check when reading MVFR0/1 with a check for ARM_FEATURE_V6K. Rationale: MVFR0/1 were introduced in the ARM1136 at the same time as ARMv6K, and a survey of TRMs indicates support in later models. According to reference documentation on arm.com, MVFR0 and MVFR1 were introduced in ARM1136JF-S r1p1 (ARMv6K, VFPv2). They are also present in ARM1156T2F-S and ARM1176JZF-S, which contain VFP11 r5, and in ARM11 MPCore r1 which contains VFP11 r4. Reference (ARM DDI 0211H, 0290G, 0301H, 0360E) http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0211h/Ffbefjag.html Without this change, the linux kernel will not boot with VFP support enabled under ARM1176 system emulation, due to the unconditional use of MVFR1 at the end of vfp_init() in arch/arm/vfp/vfpmodule.c in the kernel: VFP support v0.3: implemetor 41 architecture 1 part 20 variant b rev 5 Internal error: Oops - undefined instruction: 0 [#1] Yes, I am slightly abusing the versatilepb hw emulation, but then so is everyone else in the world who is still waiting for their Raspberry Pi ;) Signed-off-by: Andrew Towers <atowers@gmail.com> --- target-arm/translate.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-arm/translate.c b/target-arm/translate.c index 81725d1..b5861c8 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -2906,7 +2906,7 @@ static int disas_vfp_insn(CPUARMState * env, DisasContext *s, uint32_t insn) case ARM_VFP_MVFR0: case ARM_VFP_MVFR1: if (IS_USER(s) - || !arm_feature(env, ARM_FEATURE_VFP3)) + || !arm_feature(env, ARM_FEATURE_V6K)) return 1; tmp = load_cpu_field(vfp.xregs[rn]); break; -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers. 2012-03-28 14:37 [Qemu-devel] [PATCH] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers Andrew Towers @ 2012-03-28 15:24 ` Peter Maydell 2012-03-29 12:41 ` [Qemu-devel] [PATCH v2] " Andrew Towers 0 siblings, 1 reply; 5+ messages in thread From: Peter Maydell @ 2012-03-28 15:24 UTC (permalink / raw) To: Andrew Towers; +Cc: qemu-devel, Paul Brook On 28 March 2012 15:37, Andrew Towers <atowers@gmail.com> wrote: > From: Andrew Towers <atowers@gmail.com> > > Replaces the ARM_FEATURE_VFP3 check when reading MVFR0/1 with a check for > ARM_FEATURE_V6K. Rationale: MVFR0/1 were introduced in the ARM1136 at the > same time as ARMv6K, and a survey of TRMs indicates support in later models. > > According to reference documentation on arm.com, MVFR0 and MVFR1 were > introduced in ARM1136JF-S r1p1 (ARMv6K, VFPv2). They are also present in > ARM1156T2F-S and ARM1176JZF-S, which contain VFP11 r5, and in ARM11 MPCore > r1 which contains VFP11 r4. > > Reference (ARM DDI 0211H, 0290G, 0301H, 0360E) > http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0211h/Ffbefjag.html Unfortunately I think the ARM1156 is the exception which demonstrates that this isn't a V6K feature. The 1156 isn't V6K (it doesn't have the TLS registers or the byte/half/doubleword load/store exclusive instructions), but it does have the MVFR* registers. So I think we need a new ARM_FEATURE_MVFR flag, and in cpu_reset_model_id() have V6K imply MVFR. > Yes, I am slightly abusing the versatilepb hw emulation, but then so is > everyone else in the world who is still waiting for their Raspberry Pi ;) ...I've been wondering if anybody's going to submit patches for an actual rPi board model :-) -- PMM ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH v2] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers. 2012-03-28 15:24 ` Peter Maydell @ 2012-03-29 12:41 ` Andrew Towers 2012-03-29 13:10 ` Andreas Färber 2012-03-29 13:46 ` Peter Maydell 0 siblings, 2 replies; 5+ messages in thread From: Andrew Towers @ 2012-03-29 12:41 UTC (permalink / raw) To: qemu-devel; +Cc: Peter Maydell, Paul Brook, Andrew Towers This patch replaces the ARM_FEATURE_VFP3 test when reading MVFR registers with a test for a new feature flag ARM_FEATURE_MVFR, and sets this feature for all ARMv6K cores (ARM1156 is not a v6K core, yet supports MVFR; qemu does not support ARM1156 at this time.) MVFR0 and MVFR1 were introduced in ARM1136JF-S r1p0 (ARMv6K, VFPv2) and are present in ARM1156T2F-S (non-v6K), ARM1176JZF-S, ARM11MPCore and newer cores. Reference: ARM DDI 0211H, 0290G, 0301H, 0360E. http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0211h/Ffbefjag.html Without this change, the linux kernel will not boot with VFP support enabled under ARM1176 system emulation, due to the unconditional use of MVFR1 at the end of vfp_init() in arch/arm/vfp/vfpmodule.c: VFP support v0.3: implemetor 41 architecture 1 part 20 variant b rev 5 Internal error: Oops - undefined instruction: 0 [#1] Signed-off-by: Andrew Towers <atowers@gmail.com> --- v2: * introduced ARM_FEATURE_MVFR, implied by ARM_FEATURE_V6K. Paul: I'd love to work on an rPi board model, and I'll see what I can put together, but much of the hardware is under NDA and I'm not in the loop.. target-arm/cpu.h | 1 + target-arm/helper.c | 1 + target-arm/translate.c | 2 +- 3 files changed, 3 insertions(+), 1 deletions(-) diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 26c114b..4cbd389 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -383,6 +383,7 @@ enum arm_features { ARM_FEATURE_ARM_DIV, /* divide supported in ARM encoding */ ARM_FEATURE_VFP4, /* VFPv4 (implies that NEON is v2) */ ARM_FEATURE_GENERIC_TIMER, + ARM_FEATURE_MVFR, /* Media and VFP Feature Registers 0 and 1 */ }; static inline int arm_feature(CPUARMState *env, int feature) diff --git a/target-arm/helper.c b/target-arm/helper.c index 1314f23..837e9b0 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -254,6 +254,7 @@ static void cpu_reset_model_id(CPUARMState *env, uint32_t id) } if (arm_feature(env, ARM_FEATURE_V6K)) { set_feature(env, ARM_FEATURE_V6); + set_feature(env, ARM_FEATURE_MVFR); } if (arm_feature(env, ARM_FEATURE_V6)) { set_feature(env, ARM_FEATURE_V5); diff --git a/target-arm/translate.c b/target-arm/translate.c index b5861c8..46d1d3e 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -2906,7 +2906,7 @@ static int disas_vfp_insn(CPUARMState * env, DisasContext *s, uint32_t insn) case ARM_VFP_MVFR0: case ARM_VFP_MVFR1: if (IS_USER(s) - || !arm_feature(env, ARM_FEATURE_VFP3)) + || !arm_feature(env, ARM_FEATURE_MVFR)) return 1; tmp = load_cpu_field(vfp.xregs[rn]); break; -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers. 2012-03-29 12:41 ` [Qemu-devel] [PATCH v2] " Andrew Towers @ 2012-03-29 13:10 ` Andreas Färber 2012-03-29 13:46 ` Peter Maydell 1 sibling, 0 replies; 5+ messages in thread From: Andreas Färber @ 2012-03-29 13:10 UTC (permalink / raw) To: Andrew Towers; +Cc: Peter Maydell, qemu-devel, Paul Brook Am 29.03.2012 14:41, schrieb Andrew Towers: > This patch replaces the ARM_FEATURE_VFP3 test when reading MVFR registers > with a test for a new feature flag ARM_FEATURE_MVFR, and sets this feature > for all ARMv6K cores (ARM1156 is not a v6K core, yet supports MVFR; qemu > does not support ARM1156 at this time.) > > MVFR0 and MVFR1 were introduced in ARM1136JF-S r1p0 (ARMv6K, VFPv2) and are > present in ARM1156T2F-S (non-v6K), ARM1176JZF-S, ARM11MPCore and newer cores. > Reference: ARM DDI 0211H, 0290G, 0301H, 0360E. > http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0211h/Ffbefjag.html > > Without this change, the linux kernel will not boot with VFP support enabled > under ARM1176 system emulation, due to the unconditional use of MVFR1 at the > end of vfp_init() in arch/arm/vfp/vfpmodule.c: > > VFP support v0.3: implemetor 41 architecture 1 part 20 variant b rev 5 > Internal error: Oops - undefined instruction: 0 [#1] > > Signed-off-by: Andrew Towers <atowers@gmail.com> Feature inference looks good, Reviewed-by: Andreas Färber <afaerber@suse.de> > --- > > v2: > * introduced ARM_FEATURE_MVFR, implied by ARM_FEATURE_V6K. > > Paul: I'd love to work on an rPi board model, and I'll see what I can put > together, but much of the hardware is under NDA and I'm not in the loop.. You might find the partial bcm2835 manual helpful: http://www.raspberrypi.org/archives/615 Open-source drivers (esp. Linux) are also often a helpful source for emulating NDA'ed hardware. Regards, Andreas -- SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers. 2012-03-29 12:41 ` [Qemu-devel] [PATCH v2] " Andrew Towers 2012-03-29 13:10 ` Andreas Färber @ 2012-03-29 13:46 ` Peter Maydell 1 sibling, 0 replies; 5+ messages in thread From: Peter Maydell @ 2012-03-29 13:46 UTC (permalink / raw) To: Andrew Towers; +Cc: qemu-devel, Paul Brook On 29 March 2012 13:41, Andrew Towers <atowers@gmail.com> wrote: > This patch replaces the ARM_FEATURE_VFP3 test when reading MVFR registers > with a test for a new feature flag ARM_FEATURE_MVFR, and sets this feature > for all ARMv6K cores (ARM1156 is not a v6K core, yet supports MVFR; qemu > does not support ARM1156 at this time.) Reviewed-by: Peter Maydell <peter.maydell@linaro.org> and put into target-arm.next. I'll probably do a pullreq tomorrow. Thanks! -- PMM ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-03-29 13:46 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-03-28 14:37 [Qemu-devel] [PATCH] ARM: Permit any ARMv6K CPU to read the MVFR0 and MVFR1 VFP registers Andrew Towers 2012-03-28 15:24 ` Peter Maydell 2012-03-29 12:41 ` [Qemu-devel] [PATCH v2] " Andrew Towers 2012-03-29 13:10 ` Andreas Färber 2012-03-29 13:46 ` Peter Maydell
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).