From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Stephen Boyd <swboyd@chromium.org>
Cc: Linus Walleij <linus.walleij@linaro.org>,
linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org,
linux-arm-msm@vger.kernel.org,
Doug Anderson <dianders@chromium.org>
Subject: Re: [PATCH 2/3] pinctrl: msm: Mux out gpio function with gpio_request()
Date: Fri, 22 Jun 2018 11:31:29 -0700 [thread overview]
Message-ID: <20180622183129.GD3402@tuxbook-pro> (raw)
In-Reply-To: <20180622175836.GC3402@tuxbook-pro>
On Fri 22 Jun 10:58 PDT 2018, Bjorn Andersson wrote:
> On Mon 18 Jun 13:52 PDT 2018, Stephen Boyd wrote:
>
> > We rely on devices to use pinmuxing configurations in DT to select the
> > GPIO function (function 0) if they're going to use the gpio in GPIO
> > mode. Let's simplify things for driver authors by implementing
> > gpio_request_enable() for this pinctrl driver to mux out the GPIO
> > function when the gpio is use from gpiolib.
> >
> > Cc: Bjorn Andersson <bjorn.andersson@linaro.org>
>
> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
>
On second thought, while reading patch 3, when would this be used?
While both patch 2 and 3 are convenient ways to get around the annoyance
of having to specify a pinmux state both patches then ends up relying on
some default pinconf state; which I think is bad.
Further more in situations like i2c-qup (downstream), where the pins are
requested as gpios in order to "bitbang" a reset this would mean that
the driver has to counter the convenience; by either switching in the
default pinmux at the end of probe or postponing the gpio_request() to
the invocation of reset and then, after issuing the gpio_release,
switching in the default pinmux explicitly again.
So I'm not sure we want this.
Regards,
Bjorn
> Regards,
> Bjorn
>
> > Cc: Doug Anderson <dianders@chromium.org>
> > Signed-off-by: Stephen Boyd <swboyd@chromium.org>
> > ---
> > drivers/pinctrl/qcom/pinctrl-msm.c | 16 ++++++++++++++++
> > 1 file changed, 16 insertions(+)
> >
> > diff --git a/drivers/pinctrl/qcom/pinctrl-msm.c b/drivers/pinctrl/qcom/pinctrl-msm.c
> > index 3563c4394837..eacfc5b85f7f 100644
> > --- a/drivers/pinctrl/qcom/pinctrl-msm.c
> > +++ b/drivers/pinctrl/qcom/pinctrl-msm.c
> > @@ -176,11 +176,27 @@ static int msm_pinmux_set_mux(struct pinctrl_dev *pctldev,
> > return 0;
> > }
> >
> > +static int msm_pinmux_request_gpio(struct pinctrl_dev *pctldev,
> > + struct pinctrl_gpio_range *range,
> > + unsigned offset)
> > +{
> > + struct msm_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
> > + const struct msm_pingroup *g = &pctrl->soc->groups[offset];
> > +
> > + /* No funcs? Probably ACPI so can't do anything here */
> > + if (!g->nfuncs)
> > + return 0;
> > +
> > + /* For now assume function 0 is GPIO because it always is */
> > + return msm_pinmux_set_mux(pctldev, 0, offset);
> > +}
> > +
> > static const struct pinmux_ops msm_pinmux_ops = {
> > .request = msm_pinmux_request,
> > .get_functions_count = msm_get_functions_count,
> > .get_function_name = msm_get_function_name,
> > .get_function_groups = msm_get_function_groups,
> > + .gpio_request_enable = msm_pinmux_request_gpio,
> > .set_mux = msm_pinmux_set_mux,
> > };
> >
> > --
> > Sent by a computer through tubes
> >
next prev parent reply other threads:[~2018-06-22 18:31 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-18 20:52 [PATCH 0/3] pinctrl: msm interrupt and muxing fixes Stephen Boyd
2018-06-18 20:52 ` [PATCH 1/3] pinctrl: msm: Really mask level interrupts to prevent latching Stephen Boyd
2018-06-18 22:43 ` Doug Anderson
2018-06-18 23:28 ` Stephen Boyd
2018-06-18 23:38 ` Doug Anderson
2018-06-19 21:14 ` Stephen Boyd
2018-06-20 6:45 ` Bjorn Andersson
2018-06-20 15:52 ` Doug Anderson
2018-06-21 15:14 ` Stephen Boyd
2018-06-22 17:56 ` Bjorn Andersson
2018-06-18 20:52 ` [PATCH 2/3] pinctrl: msm: Mux out gpio function with gpio_request() Stephen Boyd
2018-06-18 23:54 ` Doug Anderson
2018-06-19 21:18 ` Stephen Boyd
2018-06-19 21:38 ` Doug Anderson
2018-06-20 5:53 ` Stephen Boyd
2018-06-22 17:58 ` Bjorn Andersson
2018-06-22 18:31 ` Bjorn Andersson [this message]
2018-06-28 14:25 ` Linus Walleij
2018-06-28 17:14 ` Stephen Boyd
2018-06-28 18:45 ` Doug Anderson
2018-07-02 17:56 ` Stephen Boyd
2018-07-09 13:54 ` Linus Walleij
2018-07-09 15:37 ` Stephen Boyd
2018-07-13 6:59 ` Linus Walleij
2018-07-02 19:09 ` Bjorn Andersson
2018-07-06 17:23 ` Stephen Boyd
2018-06-18 20:52 ` [PATCH 3/3] pinctrl: msm: Configure interrupts as input and gpio mode Stephen Boyd
2018-06-19 15:48 ` Doug Anderson
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=20180622183129.GD3402@tuxbook-pro \
--to=bjorn.andersson@linaro.org \
--cc=dianders@chromium.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=swboyd@chromium.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).