linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Stephan Gerhold <stephan@gerhold.net>
To: Aleksander Morgado <aleksander@aleksander.es>
Cc: "David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	Loic Poulain <loic.poulain@linaro.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Sergey Ryazanov <ryazanov.s.a@gmail.com>,
	Johannes Berg <johannes.berg@intel.com>,
	Leon Romanovsky <leon@kernel.org>,
	M Chetan Kumar <m.chetan.kumar@intel.com>,
	linuxwwan@intel.com, Ohad Ben-Cohen <ohad@wizery.com>,
	Mathieu Poirier <mathieu.poirier@linaro.org>,
	Network Development <netdev@vger.kernel.org>,
	linux-remoteproc@vger.kernel.org,
	linux-arm-msm <linux-arm-msm@vger.kernel.org>,
	phone-devel@vger.kernel.org,
	open list <linux-kernel@vger.kernel.org>,
	~postmarketos/upstreaming@lists.sr.ht
Subject: Re: [PATCH net-next v2 2/3] net: wwan: Add RPMSG WWAN CTRL driver
Date: Fri, 18 Jun 2021 12:13:37 +0200	[thread overview]
Message-ID: <YMxx0XimZAEHmeUx@gerhold.net> (raw)
In-Reply-To: <CAAP7ucKHXv_Wu7dpSmPpy1utMZV5iXGOjGg87AbcR4j+Xcz=WA@mail.gmail.com>

Hi Aleksander!

On Fri, Jun 18, 2021 at 10:21:18AM +0200, Aleksander Morgado wrote:
> > +static const struct rpmsg_device_id rpmsg_wwan_ctrl_id_table[] = {
> > +       /* RPMSG channels for Qualcomm SoCs with integrated modem */
> > +       { .name = "DATA5_CNTL", .driver_data = WWAN_PORT_QMI },
> > +       { .name = "DATA4", .driver_data = WWAN_PORT_AT },
> > +       {},
> > +};
> 
> If I understand this properly, now these rpmsg backed control ports
> would be automatically exposed without the need of a userspace CLI
> tool to do that (rpmsgexport).
> 

Yep, that's the main advantage compared to the current approach.

> And if I recall correctly, DATA5_CNTL and DATA4 were the only channels
> actively exported with udev actions using rpmsgexport in postmarketos,
> but that didn't mean someone could add additional rules to export
> other channels (i.e. as per the ModemManager port type hint rules,
> DATA[0-9]*_CNTL as QMI and DATA[0-9]* as AT, except for DATA40_CNTL
> and DATA_40 which are the USB tethering related ones).
> 

Yep.

> So, does this mean we're limiting the amount of channels exported to
> only one QMI control port and one AT control port?

Yep, but I think:
  - It's easy to extend this with additional ports later
    if someone has a real use case for that.
  - It's still possible to export via rpmsgexport.

> Not saying that's wrong, but maybe it makes sense to add a comment
> somewhere specifying that explicitly.

Given that these channels were only found through reverse engineering,
saying that DATA*_CNTL/DATA* are fully equivalent QMI/AT ports is just
a theory, I have no proof for this. Generally these channels had some
fixed use case on the original Android system, for example DATA1 (AT)
seems to have been often used for Bluetooth Dial-Up Networking (DUN)
while DATA4 was often more general purpose.

Perhaps DATA* are all fully equivalent, independent AT channels at the
end, or perhaps DATA1/DATA4 behave slightly differently because there
were some special requirements for Bluetooth DUN. I have no way to tell.
And it can vary from device to device since we're stuck with
device-specific (and usually signed) firmware.

Another example: I have seen DATA11 on some devices, but it does not
seem to work as AT port for some reason, there is no reply at all
from the modem on that channel. Perhaps it needs to be activated
somehow, perhaps it's not an AT channel at all, I have no way to tell.

My point is: Here I'm only enabling what is proven to work on all
devices (used in postmarketOS for more than a year). I have insufficient
data to vouch for the reliability of any other channel. I cannot say if
the channels are really independent, or influence each other somehow.

As far as I understand, we currently do not have any use case for having
multiple QMI/AT ports exposed for ModemManager, right? And if someone
does have a use case, perhaps exposing them through the WWAN subsystem
is not even what they want, perhaps they want to forward them through
USB or something.

> Also, would it make sense to have some way to trigger the export of
> additional channels somehow via userspace? e.g. something like
> rpmsgexport but using the wwan subsystem. I'm not sure if that's a
> true need anywhere or just over-engineering the solution, truth be
> told.

So personally I think we should keep this simple and limited to existing
use cases. If someone shows up with different requirements we can
investigate this further.

If I send a v3 I will check if I can clarify this in the commit
message somewhat. I actually had something related in there but removed
it shortly before submitting the patch because I thought it's mostly
just speculation and the message was already quite long. Oh well :)

Stephan

  reply	other threads:[~2021-06-18 10:13 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-18  7:52 [PATCH net-next v2 0/3] net: wwan: Add RPMSG WWAN CTRL driver Stephan Gerhold
2021-06-18  7:52 ` [PATCH net-next v2 1/3] rpmsg: core: Add driver_data for rpmsg_device_id Stephan Gerhold
2021-06-18  7:52 ` [PATCH net-next v2 2/3] net: wwan: Add RPMSG WWAN CTRL driver Stephan Gerhold
2021-06-18  8:21   ` Aleksander Morgado
2021-06-18 10:13     ` Stephan Gerhold [this message]
2021-06-18 12:24       ` Aleksander Morgado
2021-06-18  7:52 ` [PATCH net-next v2 3/3] net: wwan: Allow WWAN drivers to provide blocking tx and poll function Stephan Gerhold

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=YMxx0XimZAEHmeUx@gerhold.net \
    --to=stephan@gerhold.net \
    --cc=aleksander@aleksander.es \
    --cc=bjorn.andersson@linaro.org \
    --cc=davem@davemloft.net \
    --cc=johannes.berg@intel.com \
    --cc=kuba@kernel.org \
    --cc=leon@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-remoteproc@vger.kernel.org \
    --cc=linuxwwan@intel.com \
    --cc=loic.poulain@linaro.org \
    --cc=m.chetan.kumar@intel.com \
    --cc=mathieu.poirier@linaro.org \
    --cc=netdev@vger.kernel.org \
    --cc=ohad@wizery.com \
    --cc=phone-devel@vger.kernel.org \
    --cc=ryazanov.s.a@gmail.com \
    --cc=~postmarketos/upstreaming@lists.sr.ht \
    /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).