From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org
Subject: Re: [PATCH v2 13/13] armv7m: Allow SHCSR writes to change pending and active bits
Date: Fri, 24 Feb 2017 17:17:13 +0000 [thread overview]
Message-ID: <87lgsvld9i.fsf@linaro.org> (raw)
In-Reply-To: <1487262963-11519-14-git-send-email-peter.maydell@linaro.org>
Peter Maydell <peter.maydell@linaro.org> writes:
> Implement the NVIC SHCSR write behaviour which allows pending and
> active status of some exceptions to be changed.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/intc/armv7m_nvic.c | 13 +++++++++++--
> 1 file changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
> index a8c5a9e..1d34e0d 100644
> --- a/hw/intc/armv7m_nvic.c
> +++ b/hw/intc/armv7m_nvic.c
> @@ -755,8 +755,17 @@ static void nvic_writel(NVICState *s, uint32_t offset, uint32_t value)
> cpu->env.v7m.ccr = value;
> break;
> case 0xd24: /* System Handler Control. */
> - /* TODO: Real hardware allows you to set/clear the active bits
> - under some circumstances. We don't implement this. */
> + s->vectors[ARMV7M_EXCP_MEM].active = (value & (1 << 0)) != 0;
> + s->vectors[ARMV7M_EXCP_BUS].active = (value & (1 << 1)) != 0;
> + s->vectors[ARMV7M_EXCP_USAGE].active = (value & (1 << 3)) != 0;
> + s->vectors[ARMV7M_EXCP_SVC].active = (value & (1 << 7)) != 0;
> + s->vectors[ARMV7M_EXCP_DEBUG].active = (value & (1 << 8)) != 0;
> + s->vectors[ARMV7M_EXCP_PENDSV].active = (value & (1 << 10)) != 0;
> + s->vectors[ARMV7M_EXCP_SYSTICK].active = (value & (1 << 11)) != 0;
> + s->vectors[ARMV7M_EXCP_USAGE].pending = (value & (1 << 12)) != 0;
> + s->vectors[ARMV7M_EXCP_MEM].pending = (value & (1 << 13)) != 0;
> + s->vectors[ARMV7M_EXCP_BUS].pending = (value & (1 << 14)) != 0;
> + s->vectors[ARMV7M_EXCP_SVC].pending = (value & (1 << 15)) != 0;
> s->vectors[ARMV7M_EXCP_MEM].enabled = (value & (1 << 16)) != 0;
> s->vectors[ARMV7M_EXCP_BUS].enabled = (value & (1 << 17)) != 0;
> s->vectors[ARMV7M_EXCP_USAGE].enabled = (value & (1 << 18)) != 0;
--
Alex Bennée
WARNING: multiple messages have this Message-ID (diff)
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org
Subject: Re: [Qemu-devel] [PATCH v2 13/13] armv7m: Allow SHCSR writes to change pending and active bits
Date: Fri, 24 Feb 2017 17:17:13 +0000 [thread overview]
Message-ID: <87lgsvld9i.fsf@linaro.org> (raw)
In-Reply-To: <1487262963-11519-14-git-send-email-peter.maydell@linaro.org>
Peter Maydell <peter.maydell@linaro.org> writes:
> Implement the NVIC SHCSR write behaviour which allows pending and
> active status of some exceptions to be changed.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/intc/armv7m_nvic.c | 13 +++++++++++--
> 1 file changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
> index a8c5a9e..1d34e0d 100644
> --- a/hw/intc/armv7m_nvic.c
> +++ b/hw/intc/armv7m_nvic.c
> @@ -755,8 +755,17 @@ static void nvic_writel(NVICState *s, uint32_t offset, uint32_t value)
> cpu->env.v7m.ccr = value;
> break;
> case 0xd24: /* System Handler Control. */
> - /* TODO: Real hardware allows you to set/clear the active bits
> - under some circumstances. We don't implement this. */
> + s->vectors[ARMV7M_EXCP_MEM].active = (value & (1 << 0)) != 0;
> + s->vectors[ARMV7M_EXCP_BUS].active = (value & (1 << 1)) != 0;
> + s->vectors[ARMV7M_EXCP_USAGE].active = (value & (1 << 3)) != 0;
> + s->vectors[ARMV7M_EXCP_SVC].active = (value & (1 << 7)) != 0;
> + s->vectors[ARMV7M_EXCP_DEBUG].active = (value & (1 << 8)) != 0;
> + s->vectors[ARMV7M_EXCP_PENDSV].active = (value & (1 << 10)) != 0;
> + s->vectors[ARMV7M_EXCP_SYSTICK].active = (value & (1 << 11)) != 0;
> + s->vectors[ARMV7M_EXCP_USAGE].pending = (value & (1 << 12)) != 0;
> + s->vectors[ARMV7M_EXCP_MEM].pending = (value & (1 << 13)) != 0;
> + s->vectors[ARMV7M_EXCP_BUS].pending = (value & (1 << 14)) != 0;
> + s->vectors[ARMV7M_EXCP_SVC].pending = (value & (1 << 15)) != 0;
> s->vectors[ARMV7M_EXCP_MEM].enabled = (value & (1 << 16)) != 0;
> s->vectors[ARMV7M_EXCP_BUS].enabled = (value & (1 << 17)) != 0;
> s->vectors[ARMV7M_EXCP_USAGE].enabled = (value & (1 << 18)) != 0;
--
Alex Bennée
next prev parent reply other threads:[~2017-02-24 17:17 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-16 16:35 [PATCH v2 00/13] Rewrite NVIC to not depend on the GIC Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-02-16 16:35 ` [PATCH v2 01/13] armv7m: Rename nvic_state to NVICState Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-02-16 16:35 ` [PATCH v2 02/13] armv7m: Implement reading and writing of PRIGROUP Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-02-16 16:35 ` [PATCH v2 03/13] armv7m: Rewrite NVIC to not use any GIC code Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-02-16 18:27 ` Peter Maydell
2017-02-24 17:25 ` Alex Bennée
2017-02-24 17:25 ` Alex Bennée
2017-02-16 16:35 ` [PATCH v2 04/13] armv7m: Fix condition check for taking exceptions Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-04-17 2:37 ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-17 2:37 ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-02-16 16:35 ` [PATCH v2 05/13] arm: gic: Remove references to NVIC Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-04-17 4:10 ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2017-02-16 16:35 ` [PATCH v2 06/13] armv7m: Escalate exceptions to HardFault if necessary Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-02-16 16:35 ` [PATCH v2 07/13] armv7m: Remove unused armv7m_nvic_acknowledge_irq() return value Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-04-17 3:42 ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-17 3:42 ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-02-16 16:35 ` [PATCH v2 08/13] armv7m: Simpler and faster exception start Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-04-17 3:44 ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-17 3:44 ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-02-16 16:35 ` [PATCH v2 09/13] armv7m: VECTCLRACTIVE and VECTRESET are UNPREDICTABLE Peter Maydell
2017-02-16 16:35 ` [Qemu-devel] " Peter Maydell
2017-02-16 16:36 ` [PATCH v2 10/13] armv7m: Extract "exception taken" code into functions Peter Maydell
2017-02-16 16:36 ` [Qemu-devel] " Peter Maydell
2017-02-24 17:13 ` Alex Bennée
2017-02-24 17:13 ` [Qemu-devel] " Alex Bennée
2017-04-17 3:49 ` [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-17 3:49 ` [Qemu-devel] " Philippe Mathieu-Daudé
2017-02-16 16:36 ` [PATCH v2 11/13] armv7m: Check exception return consistency Peter Maydell
2017-02-16 16:36 ` [Qemu-devel] " Peter Maydell
2017-02-24 17:14 ` Alex Bennée
2017-02-24 17:14 ` [Qemu-devel] " Alex Bennée
2017-02-16 16:36 ` [PATCH v2 12/13] armv7m: Raise correct kind of UsageFault for attempts to execute ARM code Peter Maydell
2017-02-16 16:36 ` [Qemu-devel] " Peter Maydell
2017-02-24 17:16 ` Alex Bennée
2017-02-24 17:16 ` [Qemu-devel] " Alex Bennée
2017-02-16 16:36 ` [PATCH v2 13/13] armv7m: Allow SHCSR writes to change pending and active bits Peter Maydell
2017-02-16 16:36 ` [Qemu-devel] " Peter Maydell
2017-02-24 17:17 ` Alex Bennée [this message]
2017-02-24 17:17 ` Alex Bennée
2017-02-16 19:33 ` [Qemu-arm] [PATCH v2 00/13] Rewrite NVIC to not depend on the GIC Peter Maydell
2017-02-16 19:33 ` [Qemu-devel] " Peter Maydell
2017-02-24 13:55 ` Alex Bennée
2017-02-24 13:55 ` [Qemu-devel] " Alex Bennée
2017-02-24 14:07 ` Peter Maydell
2017-02-24 14:07 ` [Qemu-devel] " Peter Maydell
2017-02-24 14:15 ` Peter Maydell
2017-02-24 14:15 ` [Qemu-devel] " Peter Maydell
2017-02-24 14:40 ` Alex Bennée
2017-02-24 14:40 ` [Qemu-devel] " Alex Bennée
2017-02-24 14:57 ` Peter Maydell
2017-02-24 14:57 ` [Qemu-devel] " Peter Maydell
2017-02-24 16:43 ` Alex Bennée
2017-02-24 16:43 ` [Qemu-devel] " Alex Bennée
2017-02-24 17:00 ` Peter Maydell
2017-02-24 17:00 ` [Qemu-devel] " Peter Maydell
2017-02-24 17:17 ` Alex Bennée
2017-02-24 17:17 ` [Qemu-devel] " Alex Bennée
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=87lgsvld9i.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=patches@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.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 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.