From: Greg Bellows <greg.bellows@linaro.org>
To: qemu-devel@nongnu.org, peter.maydell@linaro.org, alex.bennee@linaro.org
Cc: Greg Bellows <greg.bellows@linaro.org>
Subject: [Qemu-devel] [[PATCH] 7/7] target-arm: Add WFx instruction trap support
Date: Fri, 27 Mar 2015 14:10:46 -0500 [thread overview]
Message-ID: <1427483446-31900-8-git-send-email-greg.bellows@linaro.org> (raw)
In-Reply-To: <1427483446-31900-1-git-send-email-greg.bellows@linaro.org>
Add support for trapping WFI and WFE instructions to the proper EL when
SCTLR/SCR/HCR settings apply.
Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
---
target-arm/op_helper.c | 75 +++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 71 insertions(+), 4 deletions(-)
diff --git a/target-arm/op_helper.c b/target-arm/op_helper.c
index aa175b5..d7e734d 100644
--- a/target-arm/op_helper.c
+++ b/target-arm/op_helper.c
@@ -209,23 +209,90 @@ uint32_t HELPER(usat16)(CPUARMState *env, uint32_t x, uint32_t shift)
return res;
}
+static inline uint32_t check_wfx_trap(CPUARMState *env, bool is_wfe)
+{
+ int cur_el = arm_current_el(env), el;
+ uint32_t target_el = 0;
+ uint64_t mask;
+
+ /* Check whether any EL controls above us trap WFx instructions */
+ for (el = cur_el + 1; el <= 3; el++) {
+ switch (el) {
+ case 1:
+ mask = (is_wfe) ? SCTLR_nTWE : SCTLR_nTWI;
+ /* Secure EL1 is only valid in AArch64. If EL0 is AArch64 then so
+ * must be EL1.
+ */
+ if (arm_el_is_aa64(env, 1)) {
+ if ((env->cp15.sctlr_el[1] & mask) == 0) {
+ target_el = el;
+ }
+ } else if (arm_feature(env, ARM_FEATURE_V8) &&
+ !arm_is_secure(env)) {
+ /* SCTLR WFx SCTLR trap bits only exist in ARMv8 */
+ if ((A32_BANKED_CURRENT_REG_GET(env, sctlr) & mask) == 0) {
+ target_el = el;
+ }
+ }
+ break;
+ case 2:
+ if (arm_feature(env, ARM_FEATURE_EL2) && !arm_is_secure(env)) {
+ mask = (is_wfe) ? HCR_TWE : HCR_TWI;
+ if ((env->cp15.hcr_el2 & mask) == mask) {
+ target_el = el;
+ }
+ }
+ break;
+ case 3:
+ if (arm_feature(env, ARM_FEATURE_EL3) &&
+ arm_feature(env, ARM_FEATURE_V8)) {
+ mask = (is_wfe) ? SCR_TWE : SCR_TWI;
+ if ((env->cp15.scr_el3 & mask) == mask) {
+ target_el = el;
+ }
+ }
+ break;
+ }
+ }
+
+ return target_el;
+}
+
void HELPER(wfi)(CPUARMState *env)
{
CPUState *cs = CPU(arm_env_get_cpu(env));
-
- cs->exception_index = EXCP_HLT;
- cs->halted = 1;
+ uint32_t target_el = 0;
+
+ target_el = check_wfx_trap(env, false);
+ if (target_el) {
+ cs->exception_index = EXCP_UDEF;
+ env->exception.syndrome = syn_wfx(1, 0xe, false);
+ env->exception.target_el = target_el;
+ env->pc -= 4;
+ } else {
+ cs->exception_index = EXCP_HLT;
+ cs->halted = 1;
+ }
cpu_loop_exit(cs);
}
void HELPER(wfe)(CPUARMState *env)
{
CPUState *cs = CPU(arm_env_get_cpu(env));
+ uint32_t target_el = 0;
/* Don't actually halt the CPU, just yield back to top
* level loop
*/
- cs->exception_index = EXCP_YIELD;
+ target_el = check_wfx_trap(env, true);
+ if (target_el) {
+ cs->exception_index = EXCP_UDEF;
+ env->exception.syndrome = syn_wfx(1, 0xe, true);
+ env->exception.target_el = target_el;
+ env->pc -= 4;
+ } else {
+ cs->exception_index = EXCP_YIELD;
+ }
cpu_loop_exit(cs);
}
--
1.8.3.2
next prev parent reply other threads:[~2015-03-27 19:12 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-27 19:10 [Qemu-devel] [[PATCH] 0/7] target-arm: EL3 trap support Greg Bellows
2015-03-27 19:10 ` [Qemu-devel] [[PATCH] 1/7] target-arm: Add exception target el infrastructure Greg Bellows
2015-04-16 17:50 ` Peter Maydell
2015-04-16 21:39 ` Greg Bellows
2015-03-27 19:10 ` [Qemu-devel] [[PATCH] 2/7] target-arm: Extend helpers to route exceptions Greg Bellows
2015-04-16 17:51 ` Peter Maydell
2015-04-21 22:13 ` Greg Bellows
2015-03-27 19:10 ` [Qemu-devel] [[PATCH] 3/7] target-arm: Update interrupt handling to use target EL Greg Bellows
2015-04-16 17:52 ` Peter Maydell
2015-04-16 21:03 ` Greg Bellows
2015-04-16 21:26 ` Peter Maydell
2015-03-27 19:10 ` [Qemu-devel] [[PATCH] 4/7] target-arm: Add AArch64 CPTR registers Greg Bellows
2015-04-16 18:00 ` Peter Maydell
2015-04-20 19:57 ` Greg Bellows
2015-03-27 19:10 ` [Qemu-devel] [[PATCH] 5/7] target-arm: Add TTBR regime function and use Greg Bellows
2015-03-27 23:25 ` Sergey Fedorov
2015-04-16 18:03 ` Peter Maydell
2015-04-17 18:29 ` Greg Bellows
2015-04-21 5:15 ` Sergey Fedorov
2015-03-27 19:10 ` [Qemu-devel] [[PATCH] 6/7] target-arm: Add WFx syndrome function Greg Bellows
2015-04-16 18:05 ` Peter Maydell
2015-03-27 19:10 ` Greg Bellows [this message]
2015-04-16 18:22 ` [Qemu-devel] [[PATCH] 7/7] target-arm: Add WFx instruction trap support Peter Maydell
2015-04-17 15:47 ` Greg Bellows
2015-04-17 15:50 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1427483446-31900-8-git-send-email-greg.bellows@linaro.org \
--to=greg.bellows@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).