All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: Richard Henderson <rth@twiddle.net>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-arm@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org
Subject: Re: [Qemu-arm] [Qemu-devel] [PATCH 02/15] target/arm: Don't trap WFI/WFE for M profile
Date: Thu, 3 Aug 2017 22:40:01 +0200	[thread overview]
Message-ID: <20170803204001.GX4859@toto> (raw)
In-Reply-To: <3f6ee028-b7f9-fbe0-1aea-eb1e6faab5a3@twiddle.net>

On Thu, Aug 03, 2017 at 01:28:28PM -0700, Richard Henderson wrote:
> On 08/02/2017 09:43 AM, Peter Maydell wrote:
> > M profile cores can never trap on WFI or WFE instructions. Check for
> > M profile in check_wfx_trap() to ensure this.
> > 
> > The existing code will do the right thing for v7M cores because
> > the hcr_el2 and scr_el3 registers will be all-zeroes and so we
> > won't attempt to trap, but when we start setting ARM_FEATURE_V8
> > for v8M cores the v8A handling of SCTLR.nTWE and .nTWI will not
> > give the right results.
> > 
> > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> > ---
> >  target/arm/op_helper.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> 
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
> 
> While looking at this, I think there's an error in helper_wfi.  The early exit
> for cpu_has_work should happen after the exception check.

I don't have the spec at hand but IIRC the trap should only happen
if the processor would have entered the low-power state (i.e if
there's no work).

A comment in the code would probably be good...

Cheers,
Edgar 

WARNING: multiple messages have this Message-ID (diff)
From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: Richard Henderson <rth@twiddle.net>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-arm@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org
Subject: Re: [Qemu-devel] [Qemu-arm] [PATCH 02/15] target/arm: Don't trap WFI/WFE for M profile
Date: Thu, 3 Aug 2017 22:40:01 +0200	[thread overview]
Message-ID: <20170803204001.GX4859@toto> (raw)
In-Reply-To: <3f6ee028-b7f9-fbe0-1aea-eb1e6faab5a3@twiddle.net>

On Thu, Aug 03, 2017 at 01:28:28PM -0700, Richard Henderson wrote:
> On 08/02/2017 09:43 AM, Peter Maydell wrote:
> > M profile cores can never trap on WFI or WFE instructions. Check for
> > M profile in check_wfx_trap() to ensure this.
> > 
> > The existing code will do the right thing for v7M cores because
> > the hcr_el2 and scr_el3 registers will be all-zeroes and so we
> > won't attempt to trap, but when we start setting ARM_FEATURE_V8
> > for v8M cores the v8A handling of SCTLR.nTWE and .nTWI will not
> > give the right results.
> > 
> > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> > ---
> >  target/arm/op_helper.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> 
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
> 
> While looking at this, I think there's an error in helper_wfi.  The early exit
> for cpu_has_work should happen after the exception check.

I don't have the spec at hand but IIRC the trap should only happen
if the processor would have entered the low-power state (i.e if
there's no work).

A comment in the code would probably be good...

Cheers,
Edgar 

  reply	other threads:[~2017-08-03 20:40 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-02 16:43 [Qemu-arm] [PATCH 00/15] v7M: cleanups and bugfixes prior to v8M Peter Maydell
2017-08-02 16:43 ` [Qemu-devel] " Peter Maydell
2017-08-02 16:43 ` [Qemu-arm] [PATCH 01/15] target/arm: Use MMUAccessType enum rather than int Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-02 17:27   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-02 17:27     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-02 21:52   ` Philippe Mathieu-Daudé
2017-08-02 21:52     ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-08-03 20:13   ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2017-08-03 20:13     ` Richard Henderson
2017-08-02 16:43 ` [Qemu-devel] [PATCH 02/15] target/arm: Don't trap WFI/WFE for M profile Peter Maydell
2017-08-02 17:34   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-02 17:34     ` Edgar E. Iglesias
2017-08-03 20:28   ` [Qemu-arm] " Richard Henderson
2017-08-03 20:28     ` Richard Henderson
2017-08-03 20:40     ` Edgar E. Iglesias [this message]
2017-08-03 20:40       ` [Qemu-devel] [Qemu-arm] " Edgar E. Iglesias
2017-08-03 20:46       ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2017-08-03 20:46         ` [Qemu-devel] [Qemu-arm] " Richard Henderson
2017-08-03 20:44     ` [Qemu-arm] [Qemu-devel] " Peter Maydell
2017-08-03 20:44       ` Peter Maydell
2017-08-02 16:43 ` [Qemu-devel] [PATCH 03/15] target/arm: Consolidate PMSA handling in get_phys_addr() Peter Maydell
2017-08-02 17:40   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-02 17:40     ` Edgar E. Iglesias
2017-08-02 21:50   ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-08-02 21:50     ` Philippe Mathieu-Daudé
2017-08-03 20:33   ` [Qemu-arm] " Richard Henderson
2017-08-03 20:33     ` Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 04/15] target/arm: Tighten up Thumb decode where new v8M insns will be Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-02 17:47   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-02 17:47     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 21:33   ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2017-08-03 21:33     ` Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 05/15] hw/intc/armv7m_nvic.c: Remove out of date comment Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-02 17:48   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-02 17:48     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 21:34   ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2017-08-03 21:34     ` Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 06/15] target/arm: Remove incorrect comment about MPU_CTRL Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-03 15:24   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-03 15:24     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 21:35   ` [Qemu-devel] " Richard Henderson
2017-08-02 16:43 ` [Qemu-devel] [PATCH 07/15] target/arm: Fix outdated comment about exception exit Peter Maydell
2017-08-03 15:25   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-03 15:25     ` Edgar E. Iglesias
2017-08-03 21:36   ` [Qemu-arm] " Richard Henderson
2017-08-03 21:36     ` Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 08/15] target/arm: Define and use XPSR bit masks Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-03 15:32   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-03 15:32     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 21:51   ` [Qemu-devel] " Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 09/15] target/arm: Don't store M profile PRIMASK and FAULTMASK in daif Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-03 15:38   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-03 15:38     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 22:05     ` Richard Henderson
2017-08-05  4:47       ` [Qemu-arm] [Qemu-devel] " Edgar E. Iglesias
2017-08-05  4:47         ` [Qemu-devel] [Qemu-arm] " Edgar E. Iglesias
2017-08-03 22:03   ` [Qemu-devel] " Richard Henderson
2017-08-02 16:43 ` [Qemu-devel] [PATCH 10/15] target/arm: Don't use cpsr_write/cpsr_read to transfer M profile XPSR Peter Maydell
2017-08-03 22:13   ` [Qemu-arm] " Richard Henderson
2017-08-03 22:13     ` Richard Henderson
2017-08-03 22:15     ` Richard Henderson
2017-08-04  9:51     ` Peter Maydell
2017-08-02 16:43 ` [Qemu-arm] [PATCH 11/15] target/arm: Make arm_cpu_dump_state() handle the M-profile XPSR Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-03 15:48   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-03 15:48     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 22:14   ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2017-08-03 22:14     ` Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 12/15] target/arm: Don't calculate lr in arm_v7m_cpu_do_interrupt() until needed Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-02 21:46   ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-08-02 21:46     ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-08-03 15:48   ` Edgar E. Iglesias
2017-08-03 15:48     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 22:16   ` [Qemu-devel] " Richard Henderson
2017-08-02 16:43 ` [Qemu-arm] [PATCH 13/15] target/arm: Create and use new function arm_v7m_is_handler_mode() Peter Maydell
2017-08-02 16:43   ` [Qemu-devel] " Peter Maydell
2017-08-02 21:48   ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-08-02 21:48     ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-08-03 15:56   ` Edgar E. Iglesias
2017-08-03 15:56     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 22:18   ` [Qemu-devel] " Richard Henderson
2017-08-02 16:44 ` [Qemu-arm] [PATCH 14/15] armv7m_nvic.h: Move from include/hw/arm to include/hw/intc Peter Maydell
2017-08-02 16:44   ` [Qemu-devel] " Peter Maydell
2017-08-02 21:49   ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2017-08-03 15:57   ` Edgar E. Iglesias
2017-08-03 15:57     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 22:19   ` [Qemu-devel] " Richard Henderson
2017-08-02 16:44 ` [Qemu-arm] [PATCH 15/15] nvic: Implement "user accesses BusFault" SCS region behaviour Peter Maydell
2017-08-02 16:44   ` [Qemu-devel] " Peter Maydell
2017-08-03 15:59   ` [Qemu-arm] " Edgar E. Iglesias
2017-08-03 15:59     ` [Qemu-devel] " Edgar E. Iglesias
2017-08-03 22:23   ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2017-08-03 22:23     ` Richard Henderson

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=20170803204001.GX4859@toto \
    --to=edgar.iglesias@gmail.com \
    --cc=patches@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.