linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: alokc@codeaurora.org, Andy Gross <andy.gross@linaro.org>,
	David Brown <david.brown@linaro.org>,
	wsa+renesas@sang-engineering.com,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Linus Walleij <linus.walleij@linaro.org>,
	balbi@kernel.org, Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-arm-msm <linux-arm-msm@vger.kernel.org>,
	linux-usb <linux-usb@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	"open list:GPIO SUBSYSTEM" <linux-gpio@vger.kernel.org>,
	linux-i2c <linux-i2c@vger.kernel.org>,
	Jeffrey Hugo <jlhugo@gmail.com>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2 1/8] i2c: i2c-qcom-geni: Provide support for ACPI
Date: Mon, 10 Jun 2019 07:44:28 +0100	[thread overview]
Message-ID: <20190610064428.GF4797@dell> (raw)
In-Reply-To: <CAKv+Gu_SP7qBggCrVkF41BimV3PnCQXb5OUKyCsE0bBxa68RZA@mail.gmail.com>

On Fri, 07 Jun 2019, Ard Biesheuvel wrote:

> On Fri, 7 Jun 2019 at 10:29, Lee Jones <lee.jones@linaro.org> wrote:
> >
> > Add a match table to allow automatic probing of ACPI device
> > QCOM0220.  Ignore clock attainment errors.  Set default clock
> > frequency value.
> >
> > Signed-off-by: Lee Jones <lee.jones@linaro.org>
> > ---
> >  drivers/i2c/busses/i2c-qcom-geni.c | 19 +++++++++++++++++--
> >  1 file changed, 17 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c
> > index db075bc0d952..0fa93b448e8d 100644
> > --- a/drivers/i2c/busses/i2c-qcom-geni.c
> > +++ b/drivers/i2c/busses/i2c-qcom-geni.c
> > @@ -1,6 +1,7 @@
> >  // SPDX-License-Identifier: GPL-2.0
> >  // Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
> >
> > +#include <linux/acpi.h>
> >  #include <linux/clk.h>
> >  #include <linux/dma-mapping.h>
> >  #include <linux/err.h>
> > @@ -483,6 +484,12 @@ static const struct i2c_algorithm geni_i2c_algo = {
> >         .functionality  = geni_i2c_func,
> >  };
> >
> > +static const struct acpi_device_id geni_i2c_acpi_match[] = {
> > +       { "QCOM0220"},
> > +       { },
> > +};
> > +MODULE_DEVICE_TABLE(acpi, geni_i2c_acpi_match);
> > +
> 
> We usually put #ifdef CONFIG_ACPI/#endif around these, otherwise you
> end up with acpi:XXXX modaliases even though ACPI is not compiled in.

No problem.

> >  static int geni_i2c_probe(struct platform_device *pdev)
> >  {
> >         struct geni_i2c_dev *gi2c;
> > @@ -502,7 +509,7 @@ static int geni_i2c_probe(struct platform_device *pdev)
> >                 return PTR_ERR(gi2c->se.base);
> >
> >         gi2c->se.clk = devm_clk_get(&pdev->dev, "se");
> 
> Can we avoid this call altogether in ACPI mode? Also, please use

I'm trying not to place all non-ACPI specific callers into if ()
statements.  The tabbing becomes ridiculous in some places.  A great
deal of these calls are requesting optional resources too, so it's
better to simply ignore the returning error in the cases where
non-optional resources (such as this one) are requested, since it has
the least impact on the existing code.

> 'has_acpi_companion()' to test whether we are probing via ACPI.

Sure.

> > -       if (IS_ERR(gi2c->se.clk)) {
> > +       if (IS_ERR(gi2c->se.clk) && !ACPI_HANDLE(&pdev->dev)) {
> 
> 
> >                 ret = PTR_ERR(gi2c->se.clk);
> >                 dev_err(&pdev->dev, "Err getting SE Core clk %d\n", ret);
> >                 return ret;
> > @@ -510,12 +517,19 @@ static int geni_i2c_probe(struct platform_device *pdev)
> >
> >         ret = device_property_read_u32(&pdev->dev, "clock-frequency",
> >                                                         &gi2c->clk_freq_out);
> > -       if (ret) {
> > +       if (ret && !ACPI_HANDLE(&pdev->dev)) {
> >                 dev_info(&pdev->dev,
> >                         "Bus frequency not specified, default to 100kHz.\n");
> >                 gi2c->clk_freq_out = KHZ(100);
> >         }
> >
> > +       if (ACPI_HANDLE(&pdev->dev)) {
> > +               ACPI_COMPANION_SET(&gi2c->adap.dev, ACPI_COMPANION(&pdev->dev));
> > +
> > +               /* Using default, same as the !ACPI case above */
> > +               gi2c->clk_freq_out = KHZ(100);
> > +       }
> > +
> 
> You are overriding the speed to 100 kHz even if the ACPI device has a
> "clock-frequency" property.

Will look at this.

Thanks Ard.

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

      reply	other threads:[~2019-06-10  6:44 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-07  8:28 [PATCH v2 1/8] i2c: i2c-qcom-geni: Provide support for ACPI Lee Jones
2019-06-07  8:28 ` [PATCH v2 2/8] i2c: i2c-qcom-geni: Signify successful driver probe Lee Jones
2019-06-07 11:08   ` Ard Biesheuvel
2019-06-07  8:28 ` [PATCH v2 3/8] pinctrl: msm: Add ability for drivers to supply a reserved GPIO list Lee Jones
2019-06-07 11:10   ` Ard Biesheuvel
2019-06-07 18:10     ` Bjorn Andersson
2019-06-08 14:22     ` Linus Walleij
2019-06-07  8:28 ` [PATCH v2 4/8] pinctrl: qcom: sdm845: Provide ACPI support Lee Jones
2019-06-07 11:12   ` Ard Biesheuvel
2019-06-07  8:28 ` [PATCH v2 5/8] soc: qcom: geni: Add support for ACPI Lee Jones
2019-06-07 11:14   ` Ard Biesheuvel
2019-06-07  8:28 ` [PATCH v2 6/8] usb: dwc3: qcom: Add support for booting with ACPI Lee Jones
2019-06-07  8:29 ` [PATCH v2 7/8] usb: dwc3: qcom: Start USB in 'host mode' on the SDM845 Lee Jones
2019-06-07  8:29 ` [PATCH v2 8/8] usb: dwc3: qcom: Improve error handling Lee Jones
2019-06-07 11:08 ` [PATCH v2 1/8] i2c: i2c-qcom-geni: Provide support for ACPI Ard Biesheuvel
2019-06-10  6:44   ` Lee Jones [this message]

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=20190610064428.GF4797@dell \
    --to=lee.jones@linaro.org \
    --cc=alokc@codeaurora.org \
    --cc=andy.gross@linaro.org \
    --cc=ard.biesheuvel@linaro.org \
    --cc=balbi@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=david.brown@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jlhugo@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=wsa+renesas@sang-engineering.com \
    /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).