Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1220915

Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to bus clock

From Vaibhav Hiremath <vaibhav.hiremath@linaro.org>
Newsgroups linux.kernel
Subject Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to bus clock
Date 2015-09-08 17:10 +0200
Message-ID <q6sH0-7Px-21@gated-at.bofh.it> (permalink)
References <q62Mx-47x-7@gated-at.bofh.it> <q62Mz-47x-39@gated-at.bofh.it> <q6snE-7de-25@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw



On Tuesday 08 September 2015 08:12 PM, Linus Walleij wrote:
> On Mon, Sep 7, 2015 at 1:18 PM, Vaibhav Hiremath
> <vaibhav.hiremath@linaro.org> wrote:
>
>> Different bus clock may need different pin setting.
>> For example, fast bus clock like 208Mhz need pin drive fast
>> while slow bus clock prefer pin drive slow to guarantee
>> signal quality.
>>
>> So this patch creates two states,
>>    - Default (slow/normal) pin state
>>    - And fast pin state for higher freq bus speed.
>>
>> And selection of pin state is done based on timing mode.
>>
>> Signed-off-by: Vaibhav Hiremath <vaibhav.hiremath@linaro.org>
>> Signed-off-by: Kevin Liu <kliu5@marvell.com>
> (...)
>> +       pxa->pinctrl = devm_pinctrl_get(dev);
>> +       if (!IS_ERR(pxa->pinctrl)) {
>> +               pxa->pins_default = pinctrl_lookup_state(pxa->pinctrl, "default");
>> +               if (IS_ERR(pxa->pins_default))
>> +                       dev_err(dev, "could not get default pinstate\n");
>> +               pxa->pins_fast = pinctrl_lookup_state(pxa->pinctrl, "fast");
>> +               if (IS_ERR(pxa->pins_fast))
>> +                       dev_info(dev, "could not get fast pinstate\n");
>> +       }
>
> This is exactly how I think it should be used from a pin control
> point of view.
>
> If you depended on CONFIG_PM you could use
> pinctrl_pm_select_default_state() but for this simple scenario
> this is fine.
>
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
>  From a pinctrl point of view.
>


Thanks for your review.

Linus,

I agree this is how it should be used.
But I still have one small doubt on expectation from
devm_pinctrl_get() function.


If pinctrl properties are not populated in Devicetree node,
then, shouldn't devm_pinctrl_get() return error ?
I followed the code flow, and it seems even if pinctrl properties are
not populated in DT node, the devm_pinctrl_get() returns valid
pointer to "struct pinctrl", isn't this against the expectation of the
call?


Code flow -

devm_pinctrl_get()
...
--> creat_pinctrl()
--> pinctrl_dt_to_map()
...



pinctrl_dt_to_map() iterates for pinctrl-x (x = 0,1,...) and if it
founds the entry then it parses the node. If it doesn't find any
pinctrl property then also it returns 0. and subsequently rreturns
handle to "struct pinctrl" for the device. Why is so?


Thanks,
Vaibhav
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH-v2 0/7] mmc: sdhci-pxav3: Enable support for PXA1928 SDCHI controller Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-07 13:30 +0200
  [PATCH-v2 6/7] mmc: sdhci: add new quirk for setting BUS_POWER & BUS_VLT fields Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-07 13:30 +0200
  [PATCH-v2 7/7] mmc: sdhci: enable SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON for pxa1928 Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-07 13:30 +0200
  [PATCH-v2 1/7] mmc: sdhci-pxav3: Enable pxa1928 device support Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-07 13:30 +0200
  [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to bus clock Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-07 13:30 +0200
    Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according  to bus clock Jisheng Zhang <jszhang@marvell.com> - 2015-09-08 09:00 +0200
      Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-08 12:00 +0200
    Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according  to bus clock Jisheng Zhang <jszhang@marvell.com> - 2015-09-08 09:00 +0200
      Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-08 11:40 +0200
        Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according  to bus clock Jisheng Zhang <jszhang@marvell.com> - 2015-09-08 12:00 +0200
          Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according  to bus clock Jisheng Zhang <jszhang@marvell.com> - 2015-09-08 12:10 +0200
            Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-08 14:20 +0200
          Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-08 12:10 +0200
    Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Linus Walleij <linus.walleij@linaro.org> - 2015-09-08 16:50 +0200
      Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Vaibhav Hiremath <vaibhav.hiremath@linaro.org> - 2015-09-08 17:10 +0200
        Re: [PATCH-v2 4/7] mmc: sdhci-pxav3: Add pinctl setting according to  bus clock Linus Walleij <linus.walleij@linaro.org> - 2015-09-09 10:50 +0200

csiph-web