Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-07 Thread Linus Walleij
On Wed, Aug 7, 2019 at 5:40 AM Sowjanya Komatineni
 wrote:
> On 8/6/19 2:51 PM, Sowjanya Komatineni wrote:
> >
> > On 8/5/19 2:20 AM, Linus Walleij wrote:
> >> On Wed, Jul 31, 2019 at 11:11 PM Sowjanya Komatineni
> >>  wrote:
> >>
> >>> This patch adds support for Tegra pinctrl driver suspend and resume.
> >>>
> >>> During suspend, context of all pinctrl registers are stored and
> >>> on resume they are all restored to have all the pinmux and pad
> >>> configuration for normal operation.
> >>>
> >>> Acked-by: Thierry Reding 
> >>> Reviewed-by: Dmitry Osipenko 
> >>> Signed-off-by: Sowjanya Komatineni 
> >> Patch applied to the pinctrl tree.
> >>
> >> This patch seems finished.
> >>
> >> Also if the rest don't get merged for v5.4 then at least this is so
> >> your patch stack gets more shallow.
> >>
> >> I hope it's fine to merge this separately, else tell me and I'll
> >> pull it out.
> >>
> >> Yours,
> >> Linus Walleij
> >
> > Yes, this patch can be merged separately. But, there's latest feedback
> > from Dmitry to add barrier after writes to make sure pinmux register
> > writes happen.
> >
> > So will update this patch to add barrier in v8. So, need to wait for v8.
> >
> > Thanks
> >
> > Sowjanya
> >
> I see it merged. So will exclude suspend/resume patch and will add patch
> for necessary write barrier fix in v8 version.

Yeah just make an incremental patch, that's fine.
If you want to overdo it you can add a Fixes: tag to
the original patch, but I don't care much.

Yours,
Linus Walleij


Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-06 Thread Sowjanya Komatineni



On 8/6/19 2:51 PM, Sowjanya Komatineni wrote:


On 8/5/19 2:20 AM, Linus Walleij wrote:

On Wed, Jul 31, 2019 at 11:11 PM Sowjanya Komatineni
 wrote:


This patch adds support for Tegra pinctrl driver suspend and resume.

During suspend, context of all pinctrl registers are stored and
on resume they are all restored to have all the pinmux and pad
configuration for normal operation.

Acked-by: Thierry Reding 
Reviewed-by: Dmitry Osipenko 
Signed-off-by: Sowjanya Komatineni 

Patch applied to the pinctrl tree.

This patch seems finished.

Also if the rest don't get merged for v5.4 then at least this is so
your patch stack gets more shallow.

I hope it's fine to merge this separately, else tell me and I'll
pull it out.

Yours,
Linus Walleij


Yes, this patch can be merged separately. But, there's latest feedback 
from Dmitry to add barrier after writes to make sure pinmux register 
writes happen.


So will update this patch to add barrier in v8. So, need to wait for v8.

Thanks

Sowjanya

I see it merged. So will exclude suspend/resume patch and will add patch 
for necessary write barrier fix in v8 version.


Thanks

Sowjanya



Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-06 Thread Sowjanya Komatineni



On 8/6/19 10:59 AM, Dmitry Osipenko wrote:

05.08.2019 21:06, Sowjanya Komatineni пишет:

On 8/5/19 3:50 AM, Dmitry Osipenko wrote:

01.08.2019 0:10, Sowjanya Komatineni пишет:

This patch adds support for Tegra pinctrl driver suspend and resume.

During suspend, context of all pinctrl registers are stored and
on resume they are all restored to have all the pinmux and pad
configuration for normal operation.

Acked-by: Thierry Reding 
Reviewed-by: Dmitry Osipenko 
Signed-off-by: Sowjanya Komatineni 
---
   drivers/pinctrl/tegra/pinctrl-tegra.c | 59
+++
   drivers/pinctrl/tegra/pinctrl-tegra.h |  3 ++
   2 files changed, 62 insertions(+)

diff --git a/drivers/pinctrl/tegra/pinctrl-tegra.c
b/drivers/pinctrl/tegra/pinctrl-tegra.c
index 186ef98e7b2b..e3a237534281 100644
--- a/drivers/pinctrl/tegra/pinctrl-tegra.c
+++ b/drivers/pinctrl/tegra/pinctrl-tegra.c
@@ -631,6 +631,58 @@ static void
tegra_pinctrl_clear_parked_bits(struct tegra_pmx *pmx)
   }
   }
   +static size_t tegra_pinctrl_get_bank_size(struct device *dev,
+  unsigned int bank_id)
+{
+    struct platform_device *pdev = to_platform_device(dev);
+    struct resource *res;
+
+    res = platform_get_resource(pdev, IORESOURCE_MEM, bank_id);
+
+    return resource_size(res) / 4;
+}
+
+static int tegra_pinctrl_suspend(struct device *dev)
+{
+    struct tegra_pmx *pmx = dev_get_drvdata(dev);
+    u32 *backup_regs = pmx->backup_regs;
+    u32 *regs;
+    size_t bank_size;
+    unsigned int i, k;
+
+    for (i = 0; i < pmx->nbanks; i++) {
+    bank_size = tegra_pinctrl_get_bank_size(dev, i);
+    regs = pmx->regs[i];
+    for (k = 0; k < bank_size; k++)
+    *backup_regs++ = readl_relaxed(regs++);
+    }
+
+    return pinctrl_force_sleep(pmx->pctl);
+}
+
+static int tegra_pinctrl_resume(struct device *dev)
+{
+    struct tegra_pmx *pmx = dev_get_drvdata(dev);
+    u32 *backup_regs = pmx->backup_regs;
+    u32 *regs;
+    size_t bank_size;
+    unsigned int i, k;
+
+    for (i = 0; i < pmx->nbanks; i++) {
+    bank_size = tegra_pinctrl_get_bank_size(dev, i);
+    regs = pmx->regs[i];
+    for (k = 0; k < bank_size; k++)
+    writel_relaxed(*backup_regs++, regs++);
+    }

I'm now curious whether any kind of barrier is needed after the
writings. The pmx_writel() doesn't insert a barrier after the write and
seems it just misuses writel, which actually should be writel_relaxed()
+ barrier, IIUC.

pmx_writel uses writel and it has wmb before raw_write which complete
all writes initiated prior to this.

By misusing writel, you mean to have barrier after register write?

Yes, at least to me it doesn't make much sense for this driver to stall
before the write. It's the pinctrl user which should be taking care
about everything to be ready before making a change to the pinctrl's
configuration.


It's also not obvious whether PINCTRL HW has any kind of write-FIFO and
thus maybe read-back + rmb() is needed in order ensure that writes are
actually completed.

I believe adding write barrier wmb after writel_relaxed should be good
rather than doing readback + rmb

The last thing which is not obvious is when the new configuration
actually takes into effect, does it happen immediately or maybe some
delay is needed?

[snip]

Based on internal design there is no internal delay and it all depends
on APB rate that it takes to write to register.

Pinmux value change to reflect internally might take couple of clock
cycles which is much faster than SW can read.

Still not quite obvious if it's possible to have a case where some
hardware is touched before necessary pinctrl change is fully completed
and then to get into trouble because of it.


To be safer, will add write barrier after all writes in resume and also 
will have separate patch for pmx_writel fix to use writel_relaxed 
followed by write barrier.


Thanks

Sowjanya



Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-06 Thread Sowjanya Komatineni



On 8/5/19 2:20 AM, Linus Walleij wrote:

On Wed, Jul 31, 2019 at 11:11 PM Sowjanya Komatineni
 wrote:


This patch adds support for Tegra pinctrl driver suspend and resume.

During suspend, context of all pinctrl registers are stored and
on resume they are all restored to have all the pinmux and pad
configuration for normal operation.

Acked-by: Thierry Reding 
Reviewed-by: Dmitry Osipenko 
Signed-off-by: Sowjanya Komatineni 

Patch applied to the pinctrl tree.

This patch seems finished.

Also if the rest don't get merged for v5.4 then at least this is so
your patch stack gets more shallow.

I hope it's fine to merge this separately, else tell me and I'll
pull it out.

Yours,
Linus Walleij


Yes, this patch can be merged separately. But, there's latest feedback 
from Dmitry to add barrier after writes to make sure pinmux register 
writes happen.


So will update this patch to add barrier in v8. So, need to wait for v8.

Thanks

Sowjanya



Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-06 Thread Dmitry Osipenko
05.08.2019 21:06, Sowjanya Komatineni пишет:
> 
> On 8/5/19 3:50 AM, Dmitry Osipenko wrote:
>> 01.08.2019 0:10, Sowjanya Komatineni пишет:
>>> This patch adds support for Tegra pinctrl driver suspend and resume.
>>>
>>> During suspend, context of all pinctrl registers are stored and
>>> on resume they are all restored to have all the pinmux and pad
>>> configuration for normal operation.
>>>
>>> Acked-by: Thierry Reding 
>>> Reviewed-by: Dmitry Osipenko 
>>> Signed-off-by: Sowjanya Komatineni 
>>> ---
>>>   drivers/pinctrl/tegra/pinctrl-tegra.c | 59
>>> +++
>>>   drivers/pinctrl/tegra/pinctrl-tegra.h |  3 ++
>>>   2 files changed, 62 insertions(+)
>>>
>>> diff --git a/drivers/pinctrl/tegra/pinctrl-tegra.c
>>> b/drivers/pinctrl/tegra/pinctrl-tegra.c
>>> index 186ef98e7b2b..e3a237534281 100644
>>> --- a/drivers/pinctrl/tegra/pinctrl-tegra.c
>>> +++ b/drivers/pinctrl/tegra/pinctrl-tegra.c
>>> @@ -631,6 +631,58 @@ static void
>>> tegra_pinctrl_clear_parked_bits(struct tegra_pmx *pmx)
>>>   }
>>>   }
>>>   +static size_t tegra_pinctrl_get_bank_size(struct device *dev,
>>> +  unsigned int bank_id)
>>> +{
>>> +    struct platform_device *pdev = to_platform_device(dev);
>>> +    struct resource *res;
>>> +
>>> +    res = platform_get_resource(pdev, IORESOURCE_MEM, bank_id);
>>> +
>>> +    return resource_size(res) / 4;
>>> +}
>>> +
>>> +static int tegra_pinctrl_suspend(struct device *dev)
>>> +{
>>> +    struct tegra_pmx *pmx = dev_get_drvdata(dev);
>>> +    u32 *backup_regs = pmx->backup_regs;
>>> +    u32 *regs;
>>> +    size_t bank_size;
>>> +    unsigned int i, k;
>>> +
>>> +    for (i = 0; i < pmx->nbanks; i++) {
>>> +    bank_size = tegra_pinctrl_get_bank_size(dev, i);
>>> +    regs = pmx->regs[i];
>>> +    for (k = 0; k < bank_size; k++)
>>> +    *backup_regs++ = readl_relaxed(regs++);
>>> +    }
>>> +
>>> +    return pinctrl_force_sleep(pmx->pctl);
>>> +}
>>> +
>>> +static int tegra_pinctrl_resume(struct device *dev)
>>> +{
>>> +    struct tegra_pmx *pmx = dev_get_drvdata(dev);
>>> +    u32 *backup_regs = pmx->backup_regs;
>>> +    u32 *regs;
>>> +    size_t bank_size;
>>> +    unsigned int i, k;
>>> +
>>> +    for (i = 0; i < pmx->nbanks; i++) {
>>> +    bank_size = tegra_pinctrl_get_bank_size(dev, i);
>>> +    regs = pmx->regs[i];
>>> +    for (k = 0; k < bank_size; k++)
>>> +    writel_relaxed(*backup_regs++, regs++);
>>> +    }
>> I'm now curious whether any kind of barrier is needed after the
>> writings. The pmx_writel() doesn't insert a barrier after the write and
>> seems it just misuses writel, which actually should be writel_relaxed()
>> + barrier, IIUC.
> 
> pmx_writel uses writel and it has wmb before raw_write which complete
> all writes initiated prior to this.
> 
> By misusing writel, you mean to have barrier after register write?

Yes, at least to me it doesn't make much sense for this driver to stall
before the write. It's the pinctrl user which should be taking care
about everything to be ready before making a change to the pinctrl's
configuration.

>> It's also not obvious whether PINCTRL HW has any kind of write-FIFO and
>> thus maybe read-back + rmb() is needed in order ensure that writes are
>> actually completed.
> I believe adding write barrier wmb after writel_relaxed should be good
> rather than doing readback + rmb
>>
>> The last thing which is not obvious is when the new configuration
>> actually takes into effect, does it happen immediately or maybe some
>> delay is needed?
>>
>> [snip]
> 
> Based on internal design there is no internal delay and it all depends
> on APB rate that it takes to write to register.
> 
> Pinmux value change to reflect internally might take couple of clock
> cycles which is much faster than SW can read.

Still not quite obvious if it's possible to have a case where some
hardware is touched before necessary pinctrl change is fully completed
and then to get into trouble because of it.


Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-05 Thread Sowjanya Komatineni



On 8/5/19 3:50 AM, Dmitry Osipenko wrote:

01.08.2019 0:10, Sowjanya Komatineni пишет:

This patch adds support for Tegra pinctrl driver suspend and resume.

During suspend, context of all pinctrl registers are stored and
on resume they are all restored to have all the pinmux and pad
configuration for normal operation.

Acked-by: Thierry Reding 
Reviewed-by: Dmitry Osipenko 
Signed-off-by: Sowjanya Komatineni 
---
  drivers/pinctrl/tegra/pinctrl-tegra.c | 59 +++
  drivers/pinctrl/tegra/pinctrl-tegra.h |  3 ++
  2 files changed, 62 insertions(+)

diff --git a/drivers/pinctrl/tegra/pinctrl-tegra.c 
b/drivers/pinctrl/tegra/pinctrl-tegra.c
index 186ef98e7b2b..e3a237534281 100644
--- a/drivers/pinctrl/tegra/pinctrl-tegra.c
+++ b/drivers/pinctrl/tegra/pinctrl-tegra.c
@@ -631,6 +631,58 @@ static void tegra_pinctrl_clear_parked_bits(struct 
tegra_pmx *pmx)
}
  }
  
+static size_t tegra_pinctrl_get_bank_size(struct device *dev,

+ unsigned int bank_id)
+{
+   struct platform_device *pdev = to_platform_device(dev);
+   struct resource *res;
+
+   res = platform_get_resource(pdev, IORESOURCE_MEM, bank_id);
+
+   return resource_size(res) / 4;
+}
+
+static int tegra_pinctrl_suspend(struct device *dev)
+{
+   struct tegra_pmx *pmx = dev_get_drvdata(dev);
+   u32 *backup_regs = pmx->backup_regs;
+   u32 *regs;
+   size_t bank_size;
+   unsigned int i, k;
+
+   for (i = 0; i < pmx->nbanks; i++) {
+   bank_size = tegra_pinctrl_get_bank_size(dev, i);
+   regs = pmx->regs[i];
+   for (k = 0; k < bank_size; k++)
+   *backup_regs++ = readl_relaxed(regs++);
+   }
+
+   return pinctrl_force_sleep(pmx->pctl);
+}
+
+static int tegra_pinctrl_resume(struct device *dev)
+{
+   struct tegra_pmx *pmx = dev_get_drvdata(dev);
+   u32 *backup_regs = pmx->backup_regs;
+   u32 *regs;
+   size_t bank_size;
+   unsigned int i, k;
+
+   for (i = 0; i < pmx->nbanks; i++) {
+   bank_size = tegra_pinctrl_get_bank_size(dev, i);
+   regs = pmx->regs[i];
+   for (k = 0; k < bank_size; k++)
+   writel_relaxed(*backup_regs++, regs++);
+   }

I'm now curious whether any kind of barrier is needed after the
writings. The pmx_writel() doesn't insert a barrier after the write and
seems it just misuses writel, which actually should be writel_relaxed()
+ barrier, IIUC.


pmx_writel uses writel and it has wmb before raw_write which complete 
all writes initiated prior to this.


By misusing writel, you mean to have barrier after register write?


It's also not obvious whether PINCTRL HW has any kind of write-FIFO and
thus maybe read-back + rmb() is needed in order ensure that writes are
actually completed.
I believe adding write barrier wmb after writel_relaxed should be good 
rather than doing readback + rmb


The last thing which is not obvious is when the new configuration
actually takes into effect, does it happen immediately or maybe some
delay is needed?

[snip]


Based on internal design there is no internal delay and it all depends 
on APB rate that it takes to write to register.


Pinmux value change to reflect internally might take couple of clock 
cycles which is much faster than SW can read.




Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-05 Thread Dmitry Osipenko
01.08.2019 0:10, Sowjanya Komatineni пишет:
> This patch adds support for Tegra pinctrl driver suspend and resume.
> 
> During suspend, context of all pinctrl registers are stored and
> on resume they are all restored to have all the pinmux and pad
> configuration for normal operation.
> 
> Acked-by: Thierry Reding 
> Reviewed-by: Dmitry Osipenko 
> Signed-off-by: Sowjanya Komatineni 
> ---
>  drivers/pinctrl/tegra/pinctrl-tegra.c | 59 
> +++
>  drivers/pinctrl/tegra/pinctrl-tegra.h |  3 ++
>  2 files changed, 62 insertions(+)
> 
> diff --git a/drivers/pinctrl/tegra/pinctrl-tegra.c 
> b/drivers/pinctrl/tegra/pinctrl-tegra.c
> index 186ef98e7b2b..e3a237534281 100644
> --- a/drivers/pinctrl/tegra/pinctrl-tegra.c
> +++ b/drivers/pinctrl/tegra/pinctrl-tegra.c
> @@ -631,6 +631,58 @@ static void tegra_pinctrl_clear_parked_bits(struct 
> tegra_pmx *pmx)
>   }
>  }
>  
> +static size_t tegra_pinctrl_get_bank_size(struct device *dev,
> +   unsigned int bank_id)
> +{
> + struct platform_device *pdev = to_platform_device(dev);
> + struct resource *res;
> +
> + res = platform_get_resource(pdev, IORESOURCE_MEM, bank_id);
> +
> + return resource_size(res) / 4;
> +}
> +
> +static int tegra_pinctrl_suspend(struct device *dev)
> +{
> + struct tegra_pmx *pmx = dev_get_drvdata(dev);
> + u32 *backup_regs = pmx->backup_regs;
> + u32 *regs;
> + size_t bank_size;
> + unsigned int i, k;
> +
> + for (i = 0; i < pmx->nbanks; i++) {
> + bank_size = tegra_pinctrl_get_bank_size(dev, i);
> + regs = pmx->regs[i];
> + for (k = 0; k < bank_size; k++)
> + *backup_regs++ = readl_relaxed(regs++);
> + }
> +
> + return pinctrl_force_sleep(pmx->pctl);
> +}
> +
> +static int tegra_pinctrl_resume(struct device *dev)
> +{
> + struct tegra_pmx *pmx = dev_get_drvdata(dev);
> + u32 *backup_regs = pmx->backup_regs;
> + u32 *regs;
> + size_t bank_size;
> + unsigned int i, k;
> +
> + for (i = 0; i < pmx->nbanks; i++) {
> + bank_size = tegra_pinctrl_get_bank_size(dev, i);
> + regs = pmx->regs[i];
> + for (k = 0; k < bank_size; k++)
> + writel_relaxed(*backup_regs++, regs++);
> + }

I'm now curious whether any kind of barrier is needed after the
writings. The pmx_writel() doesn't insert a barrier after the write and
seems it just misuses writel, which actually should be writel_relaxed()
+ barrier, IIUC.

It's also not obvious whether PINCTRL HW has any kind of write-FIFO and
thus maybe read-back + rmb() is needed in order ensure that writes are
actually completed.

The last thing which is not obvious is when the new configuration
actually takes into effect, does it happen immediately or maybe some
delay is needed?

[snip]


Re: [PATCH v7 01/20] pinctrl: tegra: Add suspend and resume support

2019-08-05 Thread Linus Walleij
On Wed, Jul 31, 2019 at 11:11 PM Sowjanya Komatineni
 wrote:

> This patch adds support for Tegra pinctrl driver suspend and resume.
>
> During suspend, context of all pinctrl registers are stored and
> on resume they are all restored to have all the pinmux and pad
> configuration for normal operation.
>
> Acked-by: Thierry Reding 
> Reviewed-by: Dmitry Osipenko 
> Signed-off-by: Sowjanya Komatineni 

Patch applied to the pinctrl tree.

This patch seems finished.

Also if the rest don't get merged for v5.4 then at least this is so
your patch stack gets more shallow.

I hope it's fine to merge this separately, else tell me and I'll
pull it out.

Yours,
Linus Walleij