From: leo.yan@linaro.org (Leo Yan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 2/3] mailbox: Add support for Hi3660 mailbox
Date: Mon, 30 Oct 2017 19:13:13 +0800 [thread overview]
Message-ID: <20171030111313.GF31478@leoy-ThinkPad-T440> (raw)
In-Reply-To: <20171030101940.dtf6rw7alhkn6irf@lakrids.cambridge.arm.com>
Hi Mark,
On Mon, Oct 30, 2017 at 10:19:40AM +0000, Mark Rutland wrote:
> Hi,
>
> On Mon, Oct 30, 2017 at 12:45:06PM +0800, Leo Yan wrote:
> > On Fri, Oct 27, 2017 at 11:46:00AM +0100, Mark Rutland wrote:
> > > On Fri, Oct 27, 2017 at 02:15:03PM +0800, Kaihua Zhong wrote:
> > > > +static int hi3660_mbox_check_state(struct mbox_chan *chan)
> > > > +{
>
> > > > + /* Ensure channel is released */
> > > > + writel_relaxed(0xffffffff, base + MBOX_IMASK_REG);
> > > > + writel_relaxed(BIT(mdev->ack_irq), base + MBOX_SRC_REG);
> > > > + __asm__ volatile ("sev");
> > > > + return 0;
> > > > +}
> > >
> > > Drivers really shouldn't be using SEV directly (even if via the
> > > sev() macro)...
> > >
> > > This SEV isn't ordered w.r.t. anything, and it's unclear what
> > > ordering you need, so this simply does not work.
> >
> > I will leave your questions for Hisilicon colleagues, essentially your
> > questions are related with mailbox mechanism.
> >
> > But I'd like to firstly get clear your question for "This SEV isn't
> > ordered w.r.t. anything". From my understanding, ARMv8 architecture
> > natually adds DMB before SEV so all previous register writing
> > opreations should be ensured to endpoint before SEV?
>
> This is not the case; SEV does not add any implicit memory barrier, and
> is not ordered w.r.t. memory accesses.
>
> See ARM DDI 0487B.b, page D1-1905, "The Send Event instructions":
>
> The PE is not required to guarantee the ordering of this event with
> respect to the completion of memory accesses by instructions before
> the SEV instruction. Therefore, ARM recommends that software
> includes a DSB instruction before any SEV instruction.
My fault and thanks for explanation.
> Note that a DMB is not sufficient, as SEV is not a memory access.
Understood now, so below code should be safe?
wmb(); -> dsb(st);
sev();
Thanks,
Leo Yan
next prev parent reply other threads:[~2017-10-30 11:13 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-27 6:15 [PATCH v2 0/3] mailbox: Add support for Hi3660 mailbox Kaihua Zhong
2017-10-27 6:15 ` [PATCH v2 1/3] dt-bindings: mailbox: Introduce Hi3660 controller binding Kaihua Zhong
2017-10-27 14:38 ` Rob Herring
2017-10-27 15:02 ` Leo Yan
2017-10-27 6:15 ` [PATCH v2 2/3] mailbox: Add support for Hi3660 mailbox Kaihua Zhong
2017-10-27 10:40 ` Julien Thierry
2017-11-02 9:15 ` Zhong Kaihua
2017-10-27 10:46 ` Mark Rutland
2017-10-30 4:45 ` Leo Yan
2017-10-30 10:19 ` Mark Rutland
2017-10-30 11:13 ` Leo Yan [this message]
2017-10-30 11:37 ` Mark Rutland
2017-10-27 6:15 ` [PATCH v2 3/3] dts: arm64: Add mailbox binding for hi3660 Kaihua Zhong
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=20171030111313.GF31478@leoy-ThinkPad-T440 \
--to=leo.yan@linaro.org \
--cc=linux-arm-kernel@lists.infradead.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).