diff mbox series

[v3,1/9] dt-bindings: reset: Add a binding for the RPi Firmware reset controller

Message ID 20200612171334.26385-2-nsaenzjulienne@suse.de
State Accepted
Commit 242841992ae6f22bd761add2f380b2ef3271ba9a
Headers show
Series [v3,1/9] dt-bindings: reset: Add a binding for the RPi Firmware reset controller | expand

Commit Message

Nicolas Saenz Julienne June 12, 2020, 5:13 p.m. UTC
The firmware running on the RPi VideoCore can be used to reset and
initialize HW controlled by the firmware.

Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

---
Changes since v2:
 - Add include file for reset IDs

Changes since v1:
 - Correct cells binding as per Florian's comment
 - Change compatible string to be more generic

 .../arm/bcm/raspberrypi,bcm2835-firmware.yaml | 21 +++++++++++++++++++
 .../reset/raspberrypi,firmware-reset.h        | 13 ++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 include/dt-bindings/reset/raspberrypi,firmware-reset.h

Comments

Rob Herring (Arm) July 13, 2020, 6:23 p.m. UTC | #1
On Fri, Jun 12, 2020 at 07:13:25PM +0200, Nicolas Saenz Julienne wrote:
> The firmware running on the RPi VideoCore can be used to reset and

> initialize HW controlled by the firmware.

> 

> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>

> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

> 

> ---

> Changes since v2:

>  - Add include file for reset IDs

> 

> Changes since v1:

>  - Correct cells binding as per Florian's comment

>  - Change compatible string to be more generic

> 

>  .../arm/bcm/raspberrypi,bcm2835-firmware.yaml | 21 +++++++++++++++++++

>  .../reset/raspberrypi,firmware-reset.h        | 13 ++++++++++++

>  2 files changed, 34 insertions(+)

>  create mode 100644 include/dt-bindings/reset/raspberrypi,firmware-reset.h

> 

> diff --git a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml

> index b48ed875eb8e..23a885af3a28 100644

> --- a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml

> +++ b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml

> @@ -39,6 +39,22 @@ properties:

>        - compatible

>        - "#clock-cells"

>  

> +  reset:


I'm not really thrilled how this is evolving with a node per provider. 
There's no reason you can't just add #clock-cells and #reset-cells to 
the parent firmware node.

I probably should have complained with the clocks node, but that's only 
pending for 5.9.

The bigger issue is this stuff is just trickling in one bit at a time 
which gives no context for review. What's next? Is it really a mystery 
as to what functions the firmware provides? You don't have to have a 
driver in place for every function.

Rob
Nicolas Saenz Julienne July 14, 2020, 11:59 a.m. UTC | #2
On Mon, 2020-07-13 at 12:23 -0600, Rob Herring wrote:
> On Fri, Jun 12, 2020 at 07:13:25PM +0200, Nicolas Saenz Julienne wrote:

> > The firmware running on the RPi VideoCore can be used to reset and

> > initialize HW controlled by the firmware.

> > 

> > Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>

> > Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

> > 

> > ---

> > Changes since v2:

> >  - Add include file for reset IDs

> > 

> > Changes since v1:

> >  - Correct cells binding as per Florian's comment

> >  - Change compatible string to be more generic

> > 

> >  .../arm/bcm/raspberrypi,bcm2835-firmware.yaml | 21 +++++++++++++++++++

> >  .../reset/raspberrypi,firmware-reset.h        | 13 ++++++++++++

> >  2 files changed, 34 insertions(+)

> >  create mode 100644 include/dt-bindings/reset/raspberrypi,firmware-reset.h

> > 

> > diff --git a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > firmware.yaml

> > b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > firmware.yaml

> > index b48ed875eb8e..23a885af3a28 100644

> > --- a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > firmware.yaml

> > +++ b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > firmware.yaml

> > @@ -39,6 +39,22 @@ properties:

> >        - compatible

> >        - "#clock-cells"

> >  

> > +  reset:

> 

> I'm not really thrilled how this is evolving with a node per provider. 

> There's no reason you can't just add #clock-cells and #reset-cells to 

> the parent firmware node.


What are the downsides? The way I see it there is not much difference. And this
way of handling things is feels more intuitive and flexible (overlays can
control what to enable easily, we can take advantage of the platform device
core).

> I probably should have complained with the clocks node, but that's only 

> pending for 5.9.


Note that there are more users for this pattern: "raspberrypi,firmware-ts" and
"raspberrypi,firmware-gpio". Actually you were the one to originally propose
this it[1]. :P

There already is a fair amount of churn in these drivers because of all the DT
changes we did in the past, and if we need to change how we integrate these
again, I'd really like it to be for good.

> The bigger issue is this stuff is just trickling in one bit at a time 

> which gives no context for review. What's next? Is it really a mystery 

> as to what functions the firmware provides?


We have no control over it, RPi engineers integrate new designs and new
firmware interfaces show up. This is a good example of it.

I proposed them to use SCMI as it covers most of what they are already
providing here. But no luck so far.

> You don't have to have a driver in place for every function.


I see your point, it could be more monolithic, that said, having a driver is
essential. See the reverts I managed to pull off at the end of the series.

[1] https://patchwork.kernel.org/patch/10166783/#21421571
Rob Herring (Arm) July 14, 2020, 9:07 p.m. UTC | #3
On Tue, Jul 14, 2020 at 01:59:21PM +0200, Nicolas Saenz Julienne wrote:
> On Mon, 2020-07-13 at 12:23 -0600, Rob Herring wrote:

> > On Fri, Jun 12, 2020 at 07:13:25PM +0200, Nicolas Saenz Julienne wrote:

> > > The firmware running on the RPi VideoCore can be used to reset and

> > > initialize HW controlled by the firmware.

> > > 

> > > Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>

> > > Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

> > > 

> > > ---

> > > Changes since v2:

> > >  - Add include file for reset IDs

> > > 

> > > Changes since v1:

> > >  - Correct cells binding as per Florian's comment

> > >  - Change compatible string to be more generic

> > > 

> > >  .../arm/bcm/raspberrypi,bcm2835-firmware.yaml | 21 +++++++++++++++++++

> > >  .../reset/raspberrypi,firmware-reset.h        | 13 ++++++++++++

> > >  2 files changed, 34 insertions(+)

> > >  create mode 100644 include/dt-bindings/reset/raspberrypi,firmware-reset.h

> > > 

> > > diff --git a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > > firmware.yaml

> > > b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > > firmware.yaml

> > > index b48ed875eb8e..23a885af3a28 100644

> > > --- a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > > firmware.yaml

> > > +++ b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-

> > > firmware.yaml

> > > @@ -39,6 +39,22 @@ properties:

> > >        - compatible

> > >        - "#clock-cells"

> > >  

> > > +  reset:

> > 

> > I'm not really thrilled how this is evolving with a node per provider. 

> > There's no reason you can't just add #clock-cells and #reset-cells to 

> > the parent firmware node.

> 

> What are the downsides? The way I see it there is not much difference. And this

> way of handling things is feels more intuitive and flexible (overlays can

> control what to enable easily, we can take advantage of the platform device

> core).


What the OS wants can evolve, so designing around the current needs of 
the OS is not how bindings should be done.

Using overlays to add clocks or resets wouldn't really work given they 
are spread out over the tree. And with clocks in particular, you'd have 
to replace dummy fixed clocks with actual firmware clocks. Sounds 
fragile and messy...

> > I probably should have complained with the clocks node, but that's only 

> > pending for 5.9.

> 

> Note that there are more users for this pattern: "raspberrypi,firmware-ts" and

> "raspberrypi,firmware-gpio". Actually you were the one to originally propose

> this it[1]. :P


Sigh, this is why I dislike incomplete examples...

Based on that,

Acked-by: Rob Herring <robh@kernel.org>


And please get gpio and ts converted to schema and referenced here 
before the next time I look at this.

> There already is a fair amount of churn in these drivers because of all the DT

> changes we did in the past, and if we need to change how we integrate these

> again, I'd really like it to be for good.

> 

> > The bigger issue is this stuff is just trickling in one bit at a time 

> > which gives no context for review. What's next? Is it really a mystery 

> > as to what functions the firmware provides?

> 

> We have no control over it, RPi engineers integrate new designs and new

> firmware interfaces show up. This is a good example of it.

> 

> I proposed them to use SCMI as it covers most of what they are already

> providing here. But no luck so far.


Once we get tired of supporting all the different firmware interfaces 
and the mess they become, we'll just have to start refusing custom ones. 
Worked for PSCI.

> > You don't have to have a driver in place for every function.

> 

> I see your point, it could be more monolithic, that said, having a driver is

> essential. See the reverts I managed to pull off at the end of the series.

> 

> [1] https://patchwork.kernel.org/patch/10166783/#21421571

>
diff mbox series

Patch

diff --git a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml
index b48ed875eb8e..23a885af3a28 100644
--- a/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml
+++ b/Documentation/devicetree/bindings/arm/bcm/raspberrypi,bcm2835-firmware.yaml
@@ -39,6 +39,22 @@  properties:
       - compatible
       - "#clock-cells"
 
+  reset:
+    type: object
+
+    properties:
+      compatible:
+        const: raspberrypi,firmware-reset
+
+      "#reset-cells":
+        const: 1
+        description: >
+          The argument is the ID of the firmware reset line to affect.
+
+    required:
+      - compatible
+      - "#reset-cells"
+
     additionalProperties: false
 
 required:
@@ -55,5 +71,10 @@  examples:
             compatible = "raspberrypi,firmware-clocks";
             #clock-cells = <1>;
         };
+
+        reset: reset {
+            compatible = "raspberrypi,firmware-reset";
+            #reset-cells = <1>;
+        };
     };
 ...
diff --git a/include/dt-bindings/reset/raspberrypi,firmware-reset.h b/include/dt-bindings/reset/raspberrypi,firmware-reset.h
new file mode 100644
index 000000000000..1a4f4c792723
--- /dev/null
+++ b/include/dt-bindings/reset/raspberrypi,firmware-reset.h
@@ -0,0 +1,13 @@ 
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Copyright (c) 2020 Nicolas Saenz Julienne
+ * Author: Nicolas Saenz Julienne <nsaenzjulienne@suse.com>
+ */
+
+#ifndef _DT_BINDINGS_RASPBERRYPI_FIRMWARE_RESET_H
+#define _DT_BINDINGS_RASPBERRYPI_FIRMWARE_RESET_H
+
+#define RASPBERRYPI_FIRMWARE_RESET_ID_USB	0
+#define RASPBERRYPI_FIRMWARE_RESET_NUM_IDS	1
+
+#endif