public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon
@ 2018-07-09 12:59 Patrick Delaunay
  2018-07-10 20:49 ` Simon Glass
  2018-07-20 22:34 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Patrick Delaunay @ 2018-07-09 12:59 UTC (permalink / raw)
  To: u-boot

Use new API syscon_node_to_regmap in sysreset_syscon driver
for compatible "syscon-reboot"; that's avoid the need of explicit
syscon binding for "regmap" handle.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
---

 drivers/sysreset/sysreset_syscon.c | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/drivers/sysreset/sysreset_syscon.c b/drivers/sysreset/sysreset_syscon.c
index f19e80e..3450640 100644
--- a/drivers/sysreset/sysreset_syscon.c
+++ b/drivers/sysreset/sysreset_syscon.c
@@ -35,18 +35,20 @@ static struct sysreset_ops syscon_reboot_ops = {
 
 int syscon_reboot_probe(struct udevice *dev)
 {
-	struct udevice *syscon;
 	struct syscon_reboot_priv *priv = dev_get_priv(dev);
 	int err;
+	u32 phandle;
+	ofnode node;
 
-	err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
-					   "regmap", &syscon);
-	if (err) {
-		pr_err("unable to find syscon device\n");
+	err = ofnode_read_u32(dev_ofnode(dev), "regmap", &phandle);
+	if (err)
 		return err;
-	}
 
-	priv->regmap = syscon_get_regmap(syscon);
+	node = ofnode_get_by_phandle(phandle);
+	if (!ofnode_valid(node))
+		return -EINVAL;
+
+	priv->regmap = syscon_node_to_regmap(node);
 	if (!priv->regmap) {
 		pr_err("unable to find regmap\n");
 		return -ENODEV;
-- 
2.7.4

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

* [U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon
  2018-07-09 12:59 [U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon Patrick Delaunay
@ 2018-07-10 20:49 ` Simon Glass
  2018-07-16  8:19   ` Patrick DELAUNAY
  2018-07-20 22:34 ` [U-Boot] " Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Simon Glass @ 2018-07-10 20:49 UTC (permalink / raw)
  To: u-boot

Hi Patrick,

On 9 July 2018 at 06:59, Patrick Delaunay <patrick.delaunay@st.com> wrote:
> Use new API syscon_node_to_regmap in sysreset_syscon driver
> for compatible "syscon-reboot"; that's avoid the need of explicit
> syscon binding for "regmap" handle.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
> ---
>
>  drivers/sysreset/sysreset_syscon.c | 16 +++++++++-------
>  1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/sysreset/sysreset_syscon.c b/drivers/sysreset/sysreset_syscon.c
> index f19e80e..3450640 100644
> --- a/drivers/sysreset/sysreset_syscon.c
> +++ b/drivers/sysreset/sysreset_syscon.c
> @@ -35,18 +35,20 @@ static struct sysreset_ops syscon_reboot_ops = {
>
>  int syscon_reboot_probe(struct udevice *dev)
>  {
> -       struct udevice *syscon;
>         struct syscon_reboot_priv *priv = dev_get_priv(dev);
>         int err;
> +       u32 phandle;
> +       ofnode node;
>
> -       err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
> -                                          "regmap", &syscon);
> -       if (err) {
> -               pr_err("unable to find syscon device\n");
> +       err = ofnode_read_u32(dev_ofnode(dev), "regmap", &phandle);
> +       if (err)
>                 return err;
> -       }
>
> -       priv->regmap = syscon_get_regmap(syscon);
> +       node = ofnode_get_by_phandle(phandle);
> +       if (!ofnode_valid(node))
> +               return -EINVAL;
> +
> +       priv->regmap = syscon_node_to_regmap(node);
>         if (!priv->regmap) {
>                 pr_err("unable to find regmap\n");
>                 return -ENODEV;

Aren't you just re-implementing uclass_get_device_by_phandle() here?

Regards,
Simon

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

* [U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon
  2018-07-10 20:49 ` Simon Glass
@ 2018-07-16  8:19   ` Patrick DELAUNAY
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick DELAUNAY @ 2018-07-16  8:19 UTC (permalink / raw)
  To: u-boot

Hi Simon

> -----Original Message-----
> From: sjg at google.com <sjg@google.com> On Behalf Of Simon Glass
> Sent: mardi 10 juillet 2018 22:50
> 
> Hi Patrick,
> 
> On 9 July 2018 at 06:59, Patrick Delaunay <patrick.delaunay@st.com> wrote:
> > Use new API syscon_node_to_regmap in sysreset_syscon driver for
> > compatible "syscon-reboot"; that's avoid the need of explicit syscon
> > binding for "regmap" handle.
> >
> > Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
> > ---
> >
> >  drivers/sysreset/sysreset_syscon.c | 16 +++++++++-------
> >  1 file changed, 9 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/sysreset/sysreset_syscon.c
> > b/drivers/sysreset/sysreset_syscon.c
> > index f19e80e..3450640 100644
> > --- a/drivers/sysreset/sysreset_syscon.c
> > +++ b/drivers/sysreset/sysreset_syscon.c
> > @@ -35,18 +35,20 @@ static struct sysreset_ops syscon_reboot_ops = {
> >
> >  int syscon_reboot_probe(struct udevice *dev)  {
> > -       struct udevice *syscon;
> >         struct syscon_reboot_priv *priv = dev_get_priv(dev);
> >         int err;
> > +       u32 phandle;
> > +       ofnode node;
> >
> > -       err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
> > -                                          "regmap", &syscon);
> > -       if (err) {
> > -               pr_err("unable to find syscon device\n");
> > +       err = ofnode_read_u32(dev_ofnode(dev), "regmap", &phandle);
> > +       if (err)
> >                 return err;
> > -       }
> >
> > -       priv->regmap = syscon_get_regmap(syscon);
> > +       node = ofnode_get_by_phandle(phandle);
> > +       if (!ofnode_valid(node))
> > +               return -EINVAL;
> > +
> > +       priv->regmap = syscon_node_to_regmap(node);
> >         if (!priv->regmap) {
> >                 pr_err("unable to find regmap\n");
> >                 return -ENODEV;
> 
> Aren't you just re-implementing uclass_get_device_by_phandle() here?

Not exactly, because if I use the the function uclass_get_device_by_phandle, the device need to be bounded to syscon UCLASS.

And it is not needed with my proposal as I use the new function syscon_node_to_regmap which not require explicite syscon binding.

I have the problem in stm32mp1 platform with the DT : (./arch/arm/dts/stm32mp157c.dtsi)

		rcc: rcc at 50000000 {
			compatible = "st,stm32mp1-rcc", "syscon";
			#clock-cells = <1>;
			#reset-cells = <1>;
			reg = <0x50000000 0x1000>;
			st,pwr = <&pwr>;
			interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>,
				     <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
		};

		rcc_reboot: rcc-reboot at 50000000 {
			compatible = "syscon-reboot";
			regmap = <&rcc>;
			offset = <0x404>;
			mask = <0x1>;
		};

1/ rcc is binded to drivers/misc/stm32_rcc.c with compatible "st,stm32mp1-rcc"
    =>3 roles
    + Clock provider => bound with stm32mp1_clk driver
    + Reset provide => bound with "stm32_rcc_reset"
   + sysreset provider with syscon.... not bound by default

2/ rcc-reboot is binded to "sysreset_syscon" driver 
	=> regmap field = handle to rcc

Without modification, the syscon-reboot driver can't have access to regmap of RCC because it is not bound to generic syscon driver.

I have 2 solutions to solve this:

1/ add a 3rd binding to syscon in RCC misc driver
	if (rcc_clk->soc == STM32MP1) {
		ret = device_bind_driver_to_node(dev, "syscon",
						 "syscon",
						 dev_ofnode(dev), &child);
		if (ret)
			return ret;
	}

2/ change sysreset to access directly to syscon regmap without explicate binding.

I choose the 2nd solution, I think it is more generic.

NB:  I can change the patch to introduce a new syscon function to access to syscon form phandle if it is preferable
        struct regmap * syscon_handle_to_regmap(struct udevice *parent,  const char *name)

        or I can come back to the first solution (add the binding to syscon)

> Regards,
> Simon

Regards
Patrick

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

* [U-Boot] sysreset: syscon: update regmap access to syscon
  2018-07-09 12:59 [U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon Patrick Delaunay
  2018-07-10 20:49 ` Simon Glass
@ 2018-07-20 22:34 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2018-07-20 22:34 UTC (permalink / raw)
  To: u-boot

On Mon, Jul 09, 2018 at 02:59:29PM +0200, Patrick Delaunay wrote:

> Use new API syscon_node_to_regmap in sysreset_syscon driver
> for compatible "syscon-reboot"; that's avoid the need of explicit
> syscon binding for "regmap" handle.
> 
> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180720/ddaa44c4/attachment.sig>

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

end of thread, other threads:[~2018-07-20 22:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-09 12:59 [U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon Patrick Delaunay
2018-07-10 20:49 ` Simon Glass
2018-07-16  8:19   ` Patrick DELAUNAY
2018-07-20 22:34 ` [U-Boot] " Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox