From: lee.jones@linaro.org (Lee Jones)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/3] mailbox: Add support for ST's Mailbox IP
Date: Wed, 18 Mar 2015 15:26:58 +0000 [thread overview]
Message-ID: <20150318152658.GO3318@x1> (raw)
In-Reply-To: <CABb+yY2HwZn3VSvZ4iVfWE8GrsLDA6Tx_V2HZiOBvJb9UHY2Mg@mail.gmail.com>
On Wed, 18 Mar 2015, Jassi Brar wrote:
> On Wed, Mar 18, 2015 at 6:42 PM, Lee Jones <lee.jones@linaro.org> wrote:
> > On Wed, 04 Mar 2015, Jassi Brar wrote:
> >
> >> > +
> >> > + if ((!data) || (!sti_mbox_chan_is_tx(mbox)))
> >> >
> >> nit: too much protection.
> >
> > What makes you think that?
> >
> Usually we write
> if (!data || !sti_mbox_chan_is_tx(mbox))
Ah, the parentheses. Yes, I agree. Thanks for clarifying.
> >> > + mbox->irq = irq_create_mapping(mbinst->irq_domain,
> >> > + mbox->rx_id);
> >> >
> >> simply assigning same IRQ to all controller DT nodes and using
> >> IRQF_SHARED for the common handler, wouldn't work?
> >
> > I do have intentions to simplify this driver somewhat, but that will
> > take some time as it will require a great deal of consultation and
> > testing from the ST side. This is the current internal implementation
> > which is used in the wild and has been fully tested. If you'll allow
> > me to conduct my adaptions subsequently we can have full history and a
> > possible reversion plan if anything untoward take place i.e. I mess
> > something up.
> >
> OK, but wouldn't that break the bindings of this driver when you
> eventually do that?
That's going to happen regardless, since these bindings are already in
use internally. Mainline (i.e. v4.0+) isn't going to be used in
products for years to come, so we have a lot of time until any new
bindings become ABI.
> >> > + * struct sti_mbox_msg - sti mailbox message description
> >> > + * @dsize: data payload size
> >> > + * @pdata: message data payload
> >> > + */
> >> > +struct sti_mbox_msg {
> >> > + u32 dsize;
> >> > + u8 *pdata;
> >> > +};
> >> >
> >> There isn't any client driver in this patchset to tell exactly, but it
> >> seems the header could be split into one shared between mailbox
> >> clients and provider and another internal to client/provider ?
> >
> > I believe only the above will be required by the client. Seems silly
> > to create a client specific header just for that, don't you think?
> >
> Do you mean to have copies of the structure in controller and client driver? :O
I do not. I planned on sharing the main header with with client
also.
But I guess by your reaction you suggest having a teeny client header
as the best way forward then.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee.jones@linaro.org>
To: Jassi Brar <jassisinghbrar@gmail.com>
Cc: Jassi Brar <jaswinder.singh@linaro.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
lkml <linux-kernel@vger.kernel.org>,
Devicetree List <devicetree@vger.kernel.org>,
kernel@stlinux.com
Subject: Re: [PATCH 3/3] mailbox: Add support for ST's Mailbox IP
Date: Wed, 18 Mar 2015 15:26:58 +0000 [thread overview]
Message-ID: <20150318152658.GO3318@x1> (raw)
In-Reply-To: <CABb+yY2HwZn3VSvZ4iVfWE8GrsLDA6Tx_V2HZiOBvJb9UHY2Mg@mail.gmail.com>
On Wed, 18 Mar 2015, Jassi Brar wrote:
> On Wed, Mar 18, 2015 at 6:42 PM, Lee Jones <lee.jones@linaro.org> wrote:
> > On Wed, 04 Mar 2015, Jassi Brar wrote:
> >
> >> > +
> >> > + if ((!data) || (!sti_mbox_chan_is_tx(mbox)))
> >> >
> >> nit: too much protection.
> >
> > What makes you think that?
> >
> Usually we write
> if (!data || !sti_mbox_chan_is_tx(mbox))
Ah, the parentheses. Yes, I agree. Thanks for clarifying.
> >> > + mbox->irq = irq_create_mapping(mbinst->irq_domain,
> >> > + mbox->rx_id);
> >> >
> >> simply assigning same IRQ to all controller DT nodes and using
> >> IRQF_SHARED for the common handler, wouldn't work?
> >
> > I do have intentions to simplify this driver somewhat, but that will
> > take some time as it will require a great deal of consultation and
> > testing from the ST side. This is the current internal implementation
> > which is used in the wild and has been fully tested. If you'll allow
> > me to conduct my adaptions subsequently we can have full history and a
> > possible reversion plan if anything untoward take place i.e. I mess
> > something up.
> >
> OK, but wouldn't that break the bindings of this driver when you
> eventually do that?
That's going to happen regardless, since these bindings are already in
use internally. Mainline (i.e. v4.0+) isn't going to be used in
products for years to come, so we have a lot of time until any new
bindings become ABI.
> >> > + * struct sti_mbox_msg - sti mailbox message description
> >> > + * @dsize: data payload size
> >> > + * @pdata: message data payload
> >> > + */
> >> > +struct sti_mbox_msg {
> >> > + u32 dsize;
> >> > + u8 *pdata;
> >> > +};
> >> >
> >> There isn't any client driver in this patchset to tell exactly, but it
> >> seems the header could be split into one shared between mailbox
> >> clients and provider and another internal to client/provider ?
> >
> > I believe only the above will be required by the client. Seems silly
> > to create a client specific header just for that, don't you think?
> >
> Do you mean to have copies of the structure in controller and client driver? :O
I do not. I planned on sharing the main header with with client
also.
But I guess by your reaction you suggest having a teeny client header
as the best way forward then.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2015-03-18 15:26 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-03 10:41 [PATCH 0/3] mailbox: New mailbox driver for ST Lee Jones
2015-03-03 10:41 ` Lee Jones
2015-03-03 10:41 ` Lee Jones
2015-03-03 10:41 ` [PATCH 1/3] ARM: STi: stih407-family: Add nodes for Mailbox Lee Jones
2015-03-03 10:41 ` Lee Jones
2015-03-03 10:41 ` [PATCH 2/3] mailbox: dt: Supply bindings for ST's Mailbox IP Lee Jones
2015-03-03 10:41 ` Lee Jones
2015-03-04 13:31 ` Jassi Brar
2015-03-04 13:31 ` Jassi Brar
2015-03-03 10:41 ` [PATCH 3/3] mailbox: Add support " Lee Jones
2015-03-03 10:41 ` Lee Jones
2015-03-03 11:34 ` Arnd Bergmann
2015-03-03 11:34 ` Arnd Bergmann
2015-03-03 15:18 ` Jassi Brar
2015-03-03 15:18 ` Jassi Brar
2015-03-18 13:17 ` Lee Jones
2015-03-18 13:17 ` Lee Jones
2015-03-18 13:17 ` Lee Jones
2015-03-18 13:53 ` Jassi Brar
2015-03-18 13:53 ` Jassi Brar
2015-03-18 13:53 ` Jassi Brar
2015-03-18 15:34 ` Lee Jones
2015-03-18 15:34 ` Lee Jones
2015-03-19 5:50 ` Jassi Brar
2015-03-19 5:50 ` Jassi Brar
2015-03-19 5:50 ` Jassi Brar
2015-03-19 9:17 ` Lee Jones
2015-03-19 9:17 ` Lee Jones
2015-03-19 9:17 ` Lee Jones
2015-03-19 12:41 ` Jassi Brar
2015-03-19 12:41 ` Jassi Brar
2015-03-23 15:06 ` Lee Jones
2015-03-23 15:06 ` Lee Jones
2015-03-04 13:27 ` Jassi Brar
2015-03-04 13:27 ` Jassi Brar
2015-03-04 13:27 ` Jassi Brar
2015-03-18 13:12 ` Lee Jones
2015-03-18 13:12 ` Lee Jones
2015-03-18 13:32 ` Jassi Brar
2015-03-18 13:32 ` Jassi Brar
2015-03-18 13:32 ` Jassi Brar
2015-03-18 15:26 ` Lee Jones [this message]
2015-03-18 15:26 ` Lee Jones
2015-03-19 5:13 ` Jassi Brar
2015-03-19 5:13 ` Jassi Brar
2015-03-19 5:13 ` Jassi Brar
2015-03-19 9:57 ` Lee Jones
2015-03-19 9:57 ` Lee Jones
2015-03-19 12:43 ` Jassi Brar
2015-03-19 12:43 ` Jassi Brar
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=20150318152658.GO3318@x1 \
--to=lee.jones@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 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.