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,
Liviu Ionescu <ilg@livius.net>
Subject: Re: [PATCH 08/10] armv7m: Honour CCR.USERSETMPEND
Date: Fri, 27 Jan 2017 13:55:23 +0000 [thread overview]
Message-ID: <8737g4a9pw.fsf@linaro.org> (raw)
In-Reply-To: <1485285380-10565-9-git-send-email-peter.maydell@linaro.org>
Peter Maydell <peter.maydell@linaro.org> writes:
> From: Michael Davidsaver <mdavidsaver@gmail.com>
>
> The CCR.USERSETMPEND bit has to be set to permit unprivileged code to
> write to the Software Triggered Interrupt register; honour this bit
> rather than letting any code write to the register.
>
> Signed-off-by: Michael Davidsaver <mdavidsaver@gmail.com>
> [PMM: Tweak commit message, comment, phrasing of condition]
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/intc/armv7m_nvic.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
> index 60e72d7..fe5c303 100644
> --- a/hw/intc/armv7m_nvic.c
> +++ b/hw/intc/armv7m_nvic.c
> @@ -409,7 +409,10 @@ static void nvic_writel(nvic_state *s, uint32_t offset, uint32_t value)
> "NVIC: Aux fault status registers unimplemented\n");
> break;
> case 0xf00: /* Software Triggered Interrupt Register */
> - if ((value & 0x1ff) < s->num_irq) {
> + /* user mode can only write to STIR if CCR.USERSETMPEND permits it */
> + if ((value & 0x1ff) < s->num_irq &&
> + (arm_current_el(&cpu->env) ||
> + (cpu->env.v7m.ccr & R_V7M_CCR_USERSETMPEND_MASK))) {
> gic_set_pending_private(&s->gic, 0, value & 0x1ff);
> }
> break;
--
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,
Liviu Ionescu <ilg@livius.net>
Subject: Re: [Qemu-devel] [PATCH 08/10] armv7m: Honour CCR.USERSETMPEND
Date: Fri, 27 Jan 2017 13:55:23 +0000 [thread overview]
Message-ID: <8737g4a9pw.fsf@linaro.org> (raw)
In-Reply-To: <1485285380-10565-9-git-send-email-peter.maydell@linaro.org>
Peter Maydell <peter.maydell@linaro.org> writes:
> From: Michael Davidsaver <mdavidsaver@gmail.com>
>
> The CCR.USERSETMPEND bit has to be set to permit unprivileged code to
> write to the Software Triggered Interrupt register; honour this bit
> rather than letting any code write to the register.
>
> Signed-off-by: Michael Davidsaver <mdavidsaver@gmail.com>
> [PMM: Tweak commit message, comment, phrasing of condition]
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> hw/intc/armv7m_nvic.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
> index 60e72d7..fe5c303 100644
> --- a/hw/intc/armv7m_nvic.c
> +++ b/hw/intc/armv7m_nvic.c
> @@ -409,7 +409,10 @@ static void nvic_writel(nvic_state *s, uint32_t offset, uint32_t value)
> "NVIC: Aux fault status registers unimplemented\n");
> break;
> case 0xf00: /* Software Triggered Interrupt Register */
> - if ((value & 0x1ff) < s->num_irq) {
> + /* user mode can only write to STIR if CCR.USERSETMPEND permits it */
> + if ((value & 0x1ff) < s->num_irq &&
> + (arm_current_el(&cpu->env) ||
> + (cpu->env.v7m.ccr & R_V7M_CCR_USERSETMPEND_MASK))) {
> gic_set_pending_private(&s->gic, 0, value & 0x1ff);
> }
> break;
--
Alex Bennée
next prev parent reply other threads:[~2017-01-27 13:55 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-24 19:16 [PATCH 00/10] More M profile bugfixes Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-24 19:16 ` [PATCH 01/10] target/arm: Drop IS_M() macro Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 12:33 ` Alex Bennée
2017-01-27 12:33 ` [Qemu-devel] " Alex Bennée
2017-01-24 19:16 ` [PATCH 02/10] armv7m_nvic: keep a pointer to the CPU Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 12:41 ` Alex Bennée
2017-01-27 12:41 ` [Qemu-devel] " Alex Bennée
2017-01-27 13:16 ` Peter Maydell
2017-01-27 13:16 ` [Qemu-devel] " Peter Maydell
2017-01-24 19:16 ` [PATCH 03/10] armv7m: add state for v7M CCR, CFSR, HFSR, DFSR, MMFAR, BFAR Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 12:28 ` Alex Bennée
2017-01-27 12:28 ` [Qemu-devel] " Alex Bennée
2017-01-27 13:14 ` Peter Maydell
2017-01-27 13:14 ` [Qemu-devel] " Peter Maydell
2017-01-24 19:16 ` [PATCH 04/10] armv7m: implement CCR, CFSR, HFSR, DFSR, BFAR, and MMFAR Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 13:43 ` Alex Bennée
2017-01-27 13:43 ` [Qemu-devel] " Alex Bennée
2017-01-24 19:16 ` [PATCH 05/10] armv7m: honour CCR.STACKALIGN on exception entry Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-24 19:33 ` Richard Henderson
2017-01-24 19:45 ` Peter Maydell
2017-01-24 19:16 ` [PATCH 06/10] armv7m: set CFSR.UNDEFINSTR on undefined instructions Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 13:44 ` Alex Bennée
2017-01-27 13:44 ` [Qemu-devel] " Alex Bennée
2017-01-24 19:16 ` [PATCH 07/10] armv7m: Report no-coprocessor faults correctly Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 13:53 ` Alex Bennée
2017-01-27 13:53 ` [Qemu-devel] " Alex Bennée
2017-01-24 19:16 ` [PATCH 08/10] armv7m: Honour CCR.USERSETMPEND Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 13:55 ` Alex Bennée [this message]
2017-01-27 13:55 ` Alex Bennée
2017-01-24 19:16 ` [PATCH 09/10] armv7m: FAULTMASK should be 0 on reset Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 13:56 ` Alex Bennée
2017-01-27 13:56 ` [Qemu-devel] " Alex Bennée
2017-01-24 19:16 ` [PATCH 10/10] armv7m: R14 should reset to 0xffffffff Peter Maydell
2017-01-24 19:16 ` [Qemu-devel] " Peter Maydell
2017-01-27 13:58 ` Alex Bennée
2017-01-27 13:58 ` [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=8737g4a9pw.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=ilg@livius.net \
--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.