All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] mfd: syscon: Add arguments support for syscon reference
@ 2019-12-11  4:08 Orson Zhai
  2019-12-11 13:55 ` Arnd Bergmann
  2020-01-16 13:52 ` Lee Jones
  0 siblings, 2 replies; 12+ messages in thread
From: Orson Zhai @ 2019-12-11  4:08 UTC (permalink / raw)
  To: Rob Herring, Arnd Bergmann, Lee Jones
  Cc: linux-kernel, baolin.wang, kevin.tang, chunyan.zhang,
	liangcai.fan, Orson Zhai

There are a lot of similar global registers being used across multiple SoCs
from Unisoc. But most of these registers are assigned with different offset
for different SoCs. It is hard to handle all of them in an all-in-one
kernel image.

Add a helper function to get regmap with arguments where we could put some
extra information such as the offset value.

Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
Tested-by: Baolin Wang <baolin.wang@unisoc.com>
---
 drivers/mfd/syscon.c       | 29 +++++++++++++++++++++++++++++
 include/linux/mfd/syscon.h | 14 ++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index e22197c..2918b05 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -224,6 +224,35 @@ struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
 }
 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);

+struct regmap *syscon_regmap_lookup_by_phandle_args(struct device_node *np,
+                                       const char *property,
+                                       int arg_count,
+                                       unsigned int *out_args)
+{
+       struct device_node *syscon_np;
+       struct of_phandle_args args;
+       struct regmap *regmap;
+       unsigned int index;
+       int rc;
+
+       rc = of_parse_phandle_with_fixed_args(np, property, arg_count,
+                       0, &args);
+       if (rc)
+               return ERR_PTR(rc);
+
+       syscon_np = args.np;
+       if (!syscon_np)
+               return ERR_PTR(-ENODEV);
+
+       regmap = syscon_node_to_regmap(syscon_np);
+       for (index = 0; index < arg_count; index++)
+               out_args[index] = args.args[index];
+       of_node_put(syscon_np);
+
+       return regmap;
+}
+EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle_args);
+
 static int syscon_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
index 112dc66..714cab1 100644
--- a/include/linux/mfd/syscon.h
+++ b/include/linux/mfd/syscon.h
@@ -23,6 +23,11 @@ extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s);
 extern struct regmap *syscon_regmap_lookup_by_phandle(
                                        struct device_node *np,
                                        const char *property);
+extern struct regmap *syscon_regmap_lookup_by_phandle_args(
+                                       struct device_node *np,
+                                       const char *property,
+                                       int arg_count,
+                                       unsigned int *out_args);
 #else
 static inline struct regmap *device_node_to_regmap(struct device_node *np)
 {
@@ -45,6 +50,15 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle(
 {
        return ERR_PTR(-ENOTSUPP);
 }
+
+static struct regmap *syscon_regmap_lookup_by_phandle_args(
+                                       struct device_node *np,
+                                       const char *property,
+                                       int arg_count,
+                                       unsigned int *out_args)
+{
+       return ERR_PTR(-ENOTSUPP);
+}
 #endif

 #endif /* __LINUX_MFD_SYSCON_H__ */
--
2.7.4

________________________________
 This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2019-12-11  4:08 [PATCH v3] mfd: syscon: Add arguments support for syscon reference Orson Zhai
@ 2019-12-11 13:55 ` Arnd Bergmann
  2019-12-13  2:49   ` Orson Zhai
  2020-01-16 13:52 ` Lee Jones
  1 sibling, 1 reply; 12+ messages in thread
From: Arnd Bergmann @ 2019-12-11 13:55 UTC (permalink / raw)
  To: Orson Zhai
  Cc: Rob Herring, Lee Jones, linux-kernel, baolin.wang, kevin.tang,
	Chunyan Zhang, liangcai.fan

On Wed, Dec 11, 2019 at 5:09 AM Orson Zhai <orson.zhai@unisoc.com> wrote:
>
> There are a lot of similar global registers being used across multiple SoCs
> from Unisoc. But most of these registers are assigned with different offset
> for different SoCs. It is hard to handle all of them in an all-in-one
> kernel image.
>
> Add a helper function to get regmap with arguments where we could put some
> extra information such as the offset value.
>
> Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> Tested-by: Baolin Wang <baolin.wang@unisoc.com>

Reviewed-by: Arnd Bergmann <arnd@arndb.de>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2019-12-11 13:55 ` Arnd Bergmann
@ 2019-12-13  2:49   ` Orson Zhai
  2019-12-13  8:23     ` Lee Jones
  0 siblings, 1 reply; 12+ messages in thread
From: Orson Zhai @ 2019-12-13  2:49 UTC (permalink / raw)
  To: Lee Jones, Rob Herring
  Cc: Orson Zhai, Arnd Bergmann, linux-kernel, baolin.wang, kevin.tang,
	Chunyan Zhang, liangcai.fan, orsonzhai

Hi Lee and Rob,

On Wed, Dec 11, 2019 at 02:55:39PM +0100, Arnd Bergmann wrote:
> On Wed, Dec 11, 2019 at 5:09 AM Orson Zhai <orson.zhai@unisoc.com> wrote:
> >
> > There are a lot of similar global registers being used across multiple SoCs
> > from Unisoc. But most of these registers are assigned with different offset
> > for different SoCs. It is hard to handle all of them in an all-in-one
> > kernel image.
> >
> > Add a helper function to get regmap with arguments where we could put some
> > extra information such as the offset value.
> >
> > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
>
> Reviewed-by: Arnd Bergmann <arnd@arndb.de>

Does this patch look good to be applied?

Or if any comments please feel free to send to me.

Thank you!

Best Regards,
Orson
________________________________
 This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2019-12-13  2:49   ` Orson Zhai
@ 2019-12-13  8:23     ` Lee Jones
  2019-12-13 13:54       ` Orson Zhai
  2020-01-15  4:51       ` Orson Zhai
  0 siblings, 2 replies; 12+ messages in thread
From: Lee Jones @ 2019-12-13  8:23 UTC (permalink / raw)
  To: Orson Zhai
  Cc: Rob Herring, Orson Zhai, Arnd Bergmann, linux-kernel,
	baolin.wang, kevin.tang, Chunyan Zhang, liangcai.fan, orsonzhai

On Fri, 13 Dec 2019, Orson Zhai wrote:

> Hi Lee and Rob,
> 
> On Wed, Dec 11, 2019 at 02:55:39PM +0100, Arnd Bergmann wrote:
> > On Wed, Dec 11, 2019 at 5:09 AM Orson Zhai <orson.zhai@unisoc.com> wrote:
> > >
> > > There are a lot of similar global registers being used across multiple SoCs
> > > from Unisoc. But most of these registers are assigned with different offset
> > > for different SoCs. It is hard to handle all of them in an all-in-one
> > > kernel image.
> > >
> > > Add a helper function to get regmap with arguments where we could put some
> > > extra information such as the offset value.
> > >
> > > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> >
> > Reviewed-by: Arnd Bergmann <arnd@arndb.de>
> 
> Does this patch look good to be applied?
> 
> Or if any comments please feel free to send to me.

If it looks good to Arnd, it looks good to me.

I have quite a number of reviews to get through first though, please
bear with me and resist the urge to nag.

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2019-12-13  8:23     ` Lee Jones
@ 2019-12-13 13:54       ` Orson Zhai
  2020-01-15  4:51       ` Orson Zhai
  1 sibling, 0 replies; 12+ messages in thread
From: Orson Zhai @ 2019-12-13 13:54 UTC (permalink / raw)
  To: Lee Jones
  Cc: Orson Zhai, Rob Herring, Orson Zhai, Arnd Bergmann, linux-kernel,
	baolin.wang, Kevin Tang, Chunyan Zhang, liangcai.fan

On Fri, Dec 13, 2019 at 4:23 PM Lee Jones <lee.jones@linaro.org> wrote:
>
> On Fri, 13 Dec 2019, Orson Zhai wrote:
>
> > Hi Lee and Rob,
> >
> > On Wed, Dec 11, 2019 at 02:55:39PM +0100, Arnd Bergmann wrote:
> > > On Wed, Dec 11, 2019 at 5:09 AM Orson Zhai <orson.zhai@unisoc.com> wrote:
> > > >
> > > > There are a lot of similar global registers being used across multiple SoCs
> > > > from Unisoc. But most of these registers are assigned with different offset
> > > > for different SoCs. It is hard to handle all of them in an all-in-one
> > > > kernel image.
> > > >
> > > > Add a helper function to get regmap with arguments where we could put some
> > > > extra information such as the offset value.
> > > >
> > > > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > > > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> > >
> > > Reviewed-by: Arnd Bergmann <arnd@arndb.de>
> >
> > Does this patch look good to be applied?
> >
> > Or if any comments please feel free to send to me.
>
> If it looks good to Arnd, it looks good to me.
>
> I have quite a number of reviews to get through first though, please
> bear with me and resist the urge to nag.

Got it.
Thanks for your kind reply!

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2019-12-13  8:23     ` Lee Jones
  2019-12-13 13:54       ` Orson Zhai
@ 2020-01-15  4:51       ` Orson Zhai
  1 sibling, 0 replies; 12+ messages in thread
From: Orson Zhai @ 2020-01-15  4:51 UTC (permalink / raw)
  To: Lee Jones
  Cc: Rob Herring, Orson Zhai, Arnd Bergmann, linux-kernel,
	baolin.wang, kevin.tang, Chunyan Zhang, liangcai.fan, orsonzhai

Hi Lee,

Don't forget to apply this patch please :)

Feel free to ask me if any problem.

Best,
Orson

On Fri, Dec 13, 2019 at 08:23:36AM +0000, Lee Jones wrote:
> On Fri, 13 Dec 2019, Orson Zhai wrote:
>
> > Hi Lee and Rob,
> >
> > On Wed, Dec 11, 2019 at 02:55:39PM +0100, Arnd Bergmann wrote:
> > > On Wed, Dec 11, 2019 at 5:09 AM Orson Zhai <orson.zhai@unisoc.com> wrote:
> > > >
> > > > There are a lot of similar global registers being used across multiple SoCs
> > > > from Unisoc. But most of these registers are assigned with different offset
> > > > for different SoCs. It is hard to handle all of them in an all-in-one
> > > > kernel image.
> > > >
> > > > Add a helper function to get regmap with arguments where we could put some
> > > > extra information such as the offset value.
> > > >
> > > > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > > > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> > >
> > > Reviewed-by: Arnd Bergmann <arnd@arndb.de>
> >
> > Does this patch look good to be applied?
> >
> > Or if any comments please feel free to send to me.
>
> If it looks good to Arnd, it looks good to me.
>
> I have quite a number of reviews to get through first though, please
> bear with me and resist the urge to nag.
>
> --
> Lee Jones [李琼斯]
> Linaro Services Technical Lead
> Linaro.org │ Open source software for ARM SoCs
> Follow Linaro: Facebook | Twitter | Blog
________________________________
 This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2019-12-11  4:08 [PATCH v3] mfd: syscon: Add arguments support for syscon reference Orson Zhai
  2019-12-11 13:55 ` Arnd Bergmann
@ 2020-01-16 13:52 ` Lee Jones
  2020-01-17 11:22   ` Orson Zhai
  1 sibling, 1 reply; 12+ messages in thread
From: Lee Jones @ 2020-01-16 13:52 UTC (permalink / raw)
  To: Orson Zhai
  Cc: Rob Herring, Arnd Bergmann, linux-kernel, baolin.wang,
	kevin.tang, chunyan.zhang, liangcai.fan

On Wed, 11 Dec 2019, Orson Zhai wrote:

> There are a lot of similar global registers being used across multiple SoCs
> from Unisoc. But most of these registers are assigned with different offset
> for different SoCs. It is hard to handle all of them in an all-in-one
> kernel image.
> 
> Add a helper function to get regmap with arguments where we could put some
> extra information such as the offset value.
> 
> Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> ---
>  drivers/mfd/syscon.c       | 29 +++++++++++++++++++++++++++++
>  include/linux/mfd/syscon.h | 14 ++++++++++++++
>  2 files changed, 43 insertions(+)

Something really odd is happening when I try to apply this patch.

Patchwork doesn't like it either.

Could you please rebase it and re-send using `git send-mail`, thanks.

Also apply my and Arnd's Ack when re-sending.

> diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> index e22197c..2918b05 100644
> --- a/drivers/mfd/syscon.c
> +++ b/drivers/mfd/syscon.c
> @@ -224,6 +224,35 @@ struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
>  }
>  EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);
> 
> +struct regmap *syscon_regmap_lookup_by_phandle_args(struct device_node *np,
> +                                       const char *property,
> +                                       int arg_count,
> +                                       unsigned int *out_args)
> +{
> +       struct device_node *syscon_np;
> +       struct of_phandle_args args;
> +       struct regmap *regmap;
> +       unsigned int index;
> +       int rc;
> +
> +       rc = of_parse_phandle_with_fixed_args(np, property, arg_count,
> +                       0, &args);
> +       if (rc)
> +               return ERR_PTR(rc);
> +
> +       syscon_np = args.np;
> +       if (!syscon_np)
> +               return ERR_PTR(-ENODEV);
> +
> +       regmap = syscon_node_to_regmap(syscon_np);
> +       for (index = 0; index < arg_count; index++)
> +               out_args[index] = args.args[index];
> +       of_node_put(syscon_np);
> +
> +       return regmap;
> +}
> +EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle_args);
> +
>  static int syscon_probe(struct platform_device *pdev)
>  {
>         struct device *dev = &pdev->dev;
> diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
> index 112dc66..714cab1 100644
> --- a/include/linux/mfd/syscon.h
> +++ b/include/linux/mfd/syscon.h
> @@ -23,6 +23,11 @@ extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s);
>  extern struct regmap *syscon_regmap_lookup_by_phandle(
>                                         struct device_node *np,
>                                         const char *property);
> +extern struct regmap *syscon_regmap_lookup_by_phandle_args(
> +                                       struct device_node *np,
> +                                       const char *property,
> +                                       int arg_count,
> +                                       unsigned int *out_args);
>  #else
>  static inline struct regmap *device_node_to_regmap(struct device_node *np)
>  {
> @@ -45,6 +50,15 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle(
>  {
>         return ERR_PTR(-ENOTSUPP);
>  }
> +
> +static struct regmap *syscon_regmap_lookup_by_phandle_args(
> +                                       struct device_node *np,
> +                                       const char *property,
> +                                       int arg_count,
> +                                       unsigned int *out_args)
> +{
> +       return ERR_PTR(-ENOTSUPP);
> +}
>  #endif
> 
>  #endif /* __LINUX_MFD_SYSCON_H__ */

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2020-01-16 13:52 ` Lee Jones
@ 2020-01-17 11:22   ` Orson Zhai
  0 siblings, 0 replies; 12+ messages in thread
From: Orson Zhai @ 2020-01-17 11:22 UTC (permalink / raw)
  To: Lee Jones
  Cc: Orson Zhai, Rob Herring, Arnd Bergmann, linux-kernel,
	baolin.wang, kevin.tang, chunyan.zhang, liangcai.fan

Hi Lee,

On Thu, Jan 16, 2020 at 01:52:07PM +0000, Lee Jones wrote:
> On Wed, 11 Dec 2019, Orson Zhai wrote:
>
> > There are a lot of similar global registers being used across multiple SoCs
> > from Unisoc. But most of these registers are assigned with different offset
> > for different SoCs. It is hard to handle all of them in an all-in-one
> > kernel image.
> >
> > Add a helper function to get regmap with arguments where we could put some
> > extra information such as the offset value.
> >
> > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> > ---
> >  drivers/mfd/syscon.c       | 29 +++++++++++++++++++++++++++++
> >  include/linux/mfd/syscon.h | 14 ++++++++++++++
> >  2 files changed, 43 insertions(+)
>
> Something really odd is happening when I try to apply this patch.
>
> Patchwork doesn't like it either.
>
> Could you please rebase it and re-send using `git send-mail`, thanks.

I have sent v3 to you with rebasing on v5.5-rc6.
>
> Also apply my and Arnd's Ack when re-sending.

Done, but add reviewed-by for Arnd as he indicated at previous mail.

Best,
Orson

>
> > diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> > index e22197c..2918b05 100644
> > --- a/drivers/mfd/syscon.c
> > +++ b/drivers/mfd/syscon.c
> > @@ -224,6 +224,35 @@ struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
> >  }
> >  EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);
> >
> > +struct regmap *syscon_regmap_lookup_by_phandle_args(struct device_node *np,
> > +                                       const char *property,
> > +                                       int arg_count,
> > +                                       unsigned int *out_args)
> > +{
> > +       struct device_node *syscon_np;
> > +       struct of_phandle_args args;
> > +       struct regmap *regmap;
> > +       unsigned int index;
> > +       int rc;
> > +
> > +       rc = of_parse_phandle_with_fixed_args(np, property, arg_count,
> > +                       0, &args);
> > +       if (rc)
> > +               return ERR_PTR(rc);
> > +
> > +       syscon_np = args.np;
> > +       if (!syscon_np)
> > +               return ERR_PTR(-ENODEV);
> > +
> > +       regmap = syscon_node_to_regmap(syscon_np);
> > +       for (index = 0; index < arg_count; index++)
> > +               out_args[index] = args.args[index];
> > +       of_node_put(syscon_np);
> > +
> > +       return regmap;
> > +}
> > +EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle_args);
> > +
> >  static int syscon_probe(struct platform_device *pdev)
> >  {
> >         struct device *dev = &pdev->dev;
> > diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
> > index 112dc66..714cab1 100644
> > --- a/include/linux/mfd/syscon.h
> > +++ b/include/linux/mfd/syscon.h
> > @@ -23,6 +23,11 @@ extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s);
> >  extern struct regmap *syscon_regmap_lookup_by_phandle(
> >                                         struct device_node *np,
> >                                         const char *property);
> > +extern struct regmap *syscon_regmap_lookup_by_phandle_args(
> > +                                       struct device_node *np,
> > +                                       const char *property,
> > +                                       int arg_count,
> > +                                       unsigned int *out_args);
> >  #else
> >  static inline struct regmap *device_node_to_regmap(struct device_node *np)
> >  {
> > @@ -45,6 +50,15 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle(
> >  {
> >         return ERR_PTR(-ENOTSUPP);
> >  }
> > +
> > +static struct regmap *syscon_regmap_lookup_by_phandle_args(
> > +                                       struct device_node *np,
> > +                                       const char *property,
> > +                                       int arg_count,
> > +                                       unsigned int *out_args)
> > +{
> > +       return ERR_PTR(-ENOTSUPP);
> > +}
> >  #endif
> >
> >  #endif /* __LINUX_MFD_SYSCON_H__ */
>
> --
> Lee Jones [李琼斯]
> Linaro Services Technical Lead
> Linaro.org │ Open source software for ARM SoCs
> Follow Linaro: Facebook | Twitter | Blog
________________________________
 This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2020-01-17 14:54   ` Arnd Bergmann
@ 2020-01-19  1:43     ` Orson Zhai
  0 siblings, 0 replies; 12+ messages in thread
From: Orson Zhai @ 2020-01-19  1:43 UTC (permalink / raw)
  To: Arnd Bergmann, Lee Jones
  Cc: Lee Jones, Orson Zhai, linux-kernel, baolin.wang, Chunyan Zhang

Hi Arnd and Lee,

I am so sorry about such inconvenience to you.
It was my fault!

There are some trailing spaces reported by checkpatch.
I forgot to scan one more time after the patch being revised.

V4 has been sent out, try one more time please.

Thank you very much!

Best Regards,
Orson

On Fri, Jan 17, 2020 at 03:54:09PM +0100, Arnd Bergmann wrote:
> On Fri, Jan 17, 2020 at 2:27 PM Lee Jones <lee.jones@linaro.org> wrote:
> >
> > On Fri, 17 Jan 2020, Orson Zhai wrote:
> >
> > > There are a lot of similar global registers being used across multiple SoCs
> > > from Unisoc. But most of these registers are assigned with different offset
> > > for different SoCs. It is hard to handle all of them in an all-in-one
> > > kernel image.
> > >
> > > Add a helper function to get regmap with arguments where we could put some
> > > extra information such as the offset value.
> > >
> > > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> > > Reviewed-by: Arnd Bergmann <arnd@arndb.de>
> > > Acked-by: Lee Jones <lee.jones@linaro.org>
> > > ---
> > >
> > > V3 Change:
> > >  Rebase on latest kernel v5.5-rc6 for Lee.
> >
> > Still not applying.
> >
> > I think it's a problem with the patch itself.
> >
> > It looks like all of the tabs have been replaced with spaces also.
> >
> > How are you sending the patch?
> >
> > Arnd,
> >
> >   Are you able to apply this?
>
> No, there appears to be some whitespace damage in the patch.
>
>       Arnd
________________________________
 This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2020-01-17 13:28 ` Lee Jones
@ 2020-01-17 14:54   ` Arnd Bergmann
  2020-01-19  1:43     ` Orson Zhai
  0 siblings, 1 reply; 12+ messages in thread
From: Arnd Bergmann @ 2020-01-17 14:54 UTC (permalink / raw)
  To: Lee Jones; +Cc: Orson Zhai, linux-kernel, baolin.wang, Chunyan Zhang

On Fri, Jan 17, 2020 at 2:27 PM Lee Jones <lee.jones@linaro.org> wrote:
>
> On Fri, 17 Jan 2020, Orson Zhai wrote:
>
> > There are a lot of similar global registers being used across multiple SoCs
> > from Unisoc. But most of these registers are assigned with different offset
> > for different SoCs. It is hard to handle all of them in an all-in-one
> > kernel image.
> >
> > Add a helper function to get regmap with arguments where we could put some
> > extra information such as the offset value.
> >
> > Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> > Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> > Reviewed-by: Arnd Bergmann <arnd@arndb.de>
> > Acked-by: Lee Jones <lee.jones@linaro.org>
> > ---
> >
> > V3 Change:
> >  Rebase on latest kernel v5.5-rc6 for Lee.
>
> Still not applying.
>
> I think it's a problem with the patch itself.
>
> It looks like all of the tabs have been replaced with spaces also.
>
> How are you sending the patch?
>
> Arnd,
>
>   Are you able to apply this?

No, there appears to be some whitespace damage in the patch.

      Arnd

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v3] mfd: syscon: Add arguments support for syscon reference
  2020-01-17 11:16 Orson Zhai
@ 2020-01-17 13:28 ` Lee Jones
  2020-01-17 14:54   ` Arnd Bergmann
  0 siblings, 1 reply; 12+ messages in thread
From: Lee Jones @ 2020-01-17 13:28 UTC (permalink / raw)
  To: Orson Zhai; +Cc: Arnd Bergmann, linux-kernel, baolin.wang, chunyan.zhang

On Fri, 17 Jan 2020, Orson Zhai wrote:

> There are a lot of similar global registers being used across multiple SoCs
> from Unisoc. But most of these registers are assigned with different offset
> for different SoCs. It is hard to handle all of them in an all-in-one
> kernel image.
> 
> Add a helper function to get regmap with arguments where we could put some
> extra information such as the offset value.
> 
> Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
> Tested-by: Baolin Wang <baolin.wang@unisoc.com>
> Reviewed-by: Arnd Bergmann <arnd@arndb.de>
> Acked-by: Lee Jones <lee.jones@linaro.org>
> ---
> 
> V3 Change:
>  Rebase on latest kernel v5.5-rc6 for Lee.

Still not applying.

I think it's a problem with the patch itself.

It looks like all of the tabs have been replaced with spaces also.

How are you sending the patch?

Arnd,

  Are you able to apply this?

>  drivers/mfd/syscon.c       | 29 +++++++++++++++++++++++++++++
>  include/linux/mfd/syscon.h | 14 ++++++++++++++
>  2 files changed, 43 insertions(+)
> 
> diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> index e22197c..2918b05 100644
> --- a/drivers/mfd/syscon.c
> +++ b/drivers/mfd/syscon.c
> @@ -224,6 +224,35 @@ struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
>  }
>  EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);
> 
> +struct regmap *syscon_regmap_lookup_by_phandle_args(struct device_node *np,
> +                                       const char *property,
> +                                       int arg_count,
> +                                       unsigned int *out_args)
> +{
> +       struct device_node *syscon_np;
> +       struct of_phandle_args args;
> +       struct regmap *regmap;
> +       unsigned int index;
> +       int rc;
> +
> +       rc = of_parse_phandle_with_fixed_args(np, property, arg_count,
> +                       0, &args);
> +       if (rc)
> +               return ERR_PTR(rc);
> +
> +       syscon_np = args.np;
> +       if (!syscon_np)
> +               return ERR_PTR(-ENODEV);
> +
> +       regmap = syscon_node_to_regmap(syscon_np);
> +       for (index = 0; index < arg_count; index++)
> +               out_args[index] = args.args[index];
> +       of_node_put(syscon_np);
> +
> +       return regmap;
> +}
> +EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle_args);
> +
>  static int syscon_probe(struct platform_device *pdev)
>  {
>         struct device *dev = &pdev->dev;
> diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
> index 112dc66..714cab1 100644
> --- a/include/linux/mfd/syscon.h
> +++ b/include/linux/mfd/syscon.h
> @@ -23,6 +23,11 @@ extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s);
>  extern struct regmap *syscon_regmap_lookup_by_phandle(
>                                         struct device_node *np,
>                                         const char *property);
> +extern struct regmap *syscon_regmap_lookup_by_phandle_args(
> +                                       struct device_node *np,
> +                                       const char *property,
> +                                       int arg_count,
> +                                       unsigned int *out_args);
>  #else
>  static inline struct regmap *device_node_to_regmap(struct device_node *np)
>  {
> @@ -45,6 +50,15 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle(
>  {
>         return ERR_PTR(-ENOTSUPP);
>  }
> +
> +static struct regmap *syscon_regmap_lookup_by_phandle_args(
> +                                       struct device_node *np,
> +                                       const char *property,
> +                                       int arg_count,
> +                                       unsigned int *out_args)
> +{
> +       return ERR_PTR(-ENOTSUPP);
> +}
>  #endif
> 
>  #endif /* __LINUX_MFD_SYSCON_H__ */

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH v3] mfd: syscon: Add arguments support for syscon reference
@ 2020-01-17 11:16 Orson Zhai
  2020-01-17 13:28 ` Lee Jones
  0 siblings, 1 reply; 12+ messages in thread
From: Orson Zhai @ 2020-01-17 11:16 UTC (permalink / raw)
  To: Lee Jones, Arnd Bergmann
  Cc: linux-kernel, baolin.wang, chunyan.zhang, Orson Zhai

There are a lot of similar global registers being used across multiple SoCs
from Unisoc. But most of these registers are assigned with different offset
for different SoCs. It is hard to handle all of them in an all-in-one
kernel image.

Add a helper function to get regmap with arguments where we could put some
extra information such as the offset value.

Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
Tested-by: Baolin Wang <baolin.wang@unisoc.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Lee Jones <lee.jones@linaro.org>
---

V3 Change:
 Rebase on latest kernel v5.5-rc6 for Lee.

 drivers/mfd/syscon.c       | 29 +++++++++++++++++++++++++++++
 include/linux/mfd/syscon.h | 14 ++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index e22197c..2918b05 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -224,6 +224,35 @@ struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
 }
 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);

+struct regmap *syscon_regmap_lookup_by_phandle_args(struct device_node *np,
+                                       const char *property,
+                                       int arg_count,
+                                       unsigned int *out_args)
+{
+       struct device_node *syscon_np;
+       struct of_phandle_args args;
+       struct regmap *regmap;
+       unsigned int index;
+       int rc;
+
+       rc = of_parse_phandle_with_fixed_args(np, property, arg_count,
+                       0, &args);
+       if (rc)
+               return ERR_PTR(rc);
+
+       syscon_np = args.np;
+       if (!syscon_np)
+               return ERR_PTR(-ENODEV);
+
+       regmap = syscon_node_to_regmap(syscon_np);
+       for (index = 0; index < arg_count; index++)
+               out_args[index] = args.args[index];
+       of_node_put(syscon_np);
+
+       return regmap;
+}
+EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle_args);
+
 static int syscon_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
index 112dc66..714cab1 100644
--- a/include/linux/mfd/syscon.h
+++ b/include/linux/mfd/syscon.h
@@ -23,6 +23,11 @@ extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s);
 extern struct regmap *syscon_regmap_lookup_by_phandle(
                                        struct device_node *np,
                                        const char *property);
+extern struct regmap *syscon_regmap_lookup_by_phandle_args(
+                                       struct device_node *np,
+                                       const char *property,
+                                       int arg_count,
+                                       unsigned int *out_args);
 #else
 static inline struct regmap *device_node_to_regmap(struct device_node *np)
 {
@@ -45,6 +50,15 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle(
 {
        return ERR_PTR(-ENOTSUPP);
 }
+
+static struct regmap *syscon_regmap_lookup_by_phandle_args(
+                                       struct device_node *np,
+                                       const char *property,
+                                       int arg_count,
+                                       unsigned int *out_args)
+{
+       return ERR_PTR(-ENOTSUPP);
+}
 #endif

 #endif /* __LINUX_MFD_SYSCON_H__ */
--
2.7.4

________________________________
 This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-01-19  1:44 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-11  4:08 [PATCH v3] mfd: syscon: Add arguments support for syscon reference Orson Zhai
2019-12-11 13:55 ` Arnd Bergmann
2019-12-13  2:49   ` Orson Zhai
2019-12-13  8:23     ` Lee Jones
2019-12-13 13:54       ` Orson Zhai
2020-01-15  4:51       ` Orson Zhai
2020-01-16 13:52 ` Lee Jones
2020-01-17 11:22   ` Orson Zhai
2020-01-17 11:16 Orson Zhai
2020-01-17 13:28 ` Lee Jones
2020-01-17 14:54   ` Arnd Bergmann
2020-01-19  1:43     ` Orson Zhai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.