dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
Commit Message
Convert Broadcom Kona family reset manager bindings to DT schema.
Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
---
.../power/reset/brcm,bcm21664-resetmgr.txt | 14 ---------
.../power/reset/brcm,bcm21664-resetmgr.yaml | 31 +++++++++++++++++++
2 files changed, 31 insertions(+), 14 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.txt
create mode 100644 Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.yaml
Comments
On Sat, May 27, 2023 at 04:12:22PM +0200, Stanislav Jakubek wrote:
> Convert Broadcom Kona family reset manager bindings to DT schema.
>
> Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Thanks,
Conor.
On 27/05/2023 16:12, Stanislav Jakubek wrote:
> Convert Broadcom Kona family reset manager bindings to DT schema.
>
> Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
> ---
> .../power/reset/brcm,bcm21664-resetmgr.txt | 14 ---------
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
On 5/27/23 07:12, Stanislav Jakubek wrote:
> Convert Broadcom Kona family reset manager bindings to DT schema.
>
> Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
Sebastian, do you want me to pick this up in the Broadcom ARM SoC tree?
Hi,
On Mon, Jun 05, 2023 at 11:15:59AM -0700, Florian Fainelli wrote:
> On 5/27/23 07:12, Stanislav Jakubek wrote:
> > Convert Broadcom Kona family reset manager bindings to DT schema.
> >
> > Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
>
> Sebastian, do you want me to pick this up in the Broadcom ARM SoC tree?
Fine with me,
Acked-by: Sebastian Reichel <sebastian.reichel@collabora.com>
-- Sebastian
From: Florian Fainelli <f.fainelli@gmail.com>
On Sat, 27 May 2023 16:12:22 +0200, Stanislav Jakubek <stano.jakubek@gmail.com> wrote:
> Convert Broadcom Kona family reset manager bindings to DT schema.
>
> Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
> ---
Applied to https://github.com/Broadcom/stblinux/commits/devicetree/next, thanks!
--
Florian
deleted file mode 100644
@@ -1,14 +0,0 @@
-Broadcom Kona Family Reset Manager
-----------------------------------
-
-The reset manager is used on the Broadcom BCM21664 SoC.
-
-Required properties:
- - compatible: brcm,bcm21664-resetmgr
- - reg: memory address & range
-
-Example:
- brcm,resetmgr@35001f00 {
- compatible = "brcm,bcm21664-resetmgr";
- reg = <0x35001f00 0x24>;
- };
new file mode 100644
@@ -0,0 +1,31 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/power/reset/brcm,bcm21664-resetmgr.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Broadcom Kona family reset manager
+
+maintainers:
+ - Florian Fainelli <f.fainelli@gmail.com>
+
+properties:
+ compatible:
+ const: brcm,bcm21664-resetmgr
+
+ reg:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+
+additionalProperties: false
+
+examples:
+ - |
+ reset-controller@35001f00 {
+ compatible = "brcm,bcm21664-resetmgr";
+ reg = <0x35001f00 0x24>;
+ };
+...