linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
@ 2023-05-27 14:12 Stanislav Jakubek
  2023-05-27 22:28 ` Conor Dooley
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Stanislav Jakubek @ 2023-05-27 14:12 UTC (permalink / raw)
  To: Sebastian Reichel, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Florian Fainelli, Ray Jui, Scott Branden
  Cc: bcm-kernel-feedback-list, linux-pm, devicetree, linux-kernel

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

diff --git a/Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.txt b/Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.txt
deleted file mode 100644
index 93f31ca1ef4b..000000000000
--- a/Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.txt
+++ /dev/null
@@ -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>;
-	};
diff --git a/Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.yaml b/Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.yaml
new file mode 100644
index 000000000000..3e28a59d718f
--- /dev/null
+++ b/Documentation/devicetree/bindings/power/reset/brcm,bcm21664-resetmgr.yaml
@@ -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>;
+    };
+...
-- 
2.25.1


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

* Re: [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
  2023-05-27 14:12 [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML Stanislav Jakubek
@ 2023-05-27 22:28 ` Conor Dooley
  2023-05-30 15:03 ` Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Conor Dooley @ 2023-05-27 22:28 UTC (permalink / raw)
  To: Stanislav Jakubek
  Cc: Sebastian Reichel, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, linux-pm, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 280 bytes --]

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.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
  2023-05-27 14:12 [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML Stanislav Jakubek
  2023-05-27 22:28 ` Conor Dooley
@ 2023-05-30 15:03 ` Krzysztof Kozlowski
  2023-06-05 18:15 ` Florian Fainelli
  2023-06-08 22:11 ` Florian Fainelli
  3 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-05-30 15:03 UTC (permalink / raw)
  To: Stanislav Jakubek, Sebastian Reichel, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Florian Fainelli, Ray Jui,
	Scott Branden
  Cc: bcm-kernel-feedback-list, linux-pm, devicetree, linux-kernel

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


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

* Re: [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
  2023-05-27 14:12 [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML Stanislav Jakubek
  2023-05-27 22:28 ` Conor Dooley
  2023-05-30 15:03 ` Krzysztof Kozlowski
@ 2023-06-05 18:15 ` Florian Fainelli
  2023-06-08 21:56   ` Sebastian Reichel
  2023-06-08 22:11 ` Florian Fainelli
  3 siblings, 1 reply; 6+ messages in thread
From: Florian Fainelli @ 2023-06-05 18:15 UTC (permalink / raw)
  To: Stanislav Jakubek, Sebastian Reichel, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Florian Fainelli, Ray Jui,
	Scott Branden
  Cc: bcm-kernel-feedback-list, linux-pm, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 261 bytes --]

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?
-- 
Florian


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4221 bytes --]

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

* Re: [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
  2023-06-05 18:15 ` Florian Fainelli
@ 2023-06-08 21:56   ` Sebastian Reichel
  0 siblings, 0 replies; 6+ messages in thread
From: Sebastian Reichel @ 2023-06-08 21:56 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: Stanislav Jakubek, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, linux-pm, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 438 bytes --]

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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML
  2023-05-27 14:12 [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML Stanislav Jakubek
                   ` (2 preceding siblings ...)
  2023-06-05 18:15 ` Florian Fainelli
@ 2023-06-08 22:11 ` Florian Fainelli
  3 siblings, 0 replies; 6+ messages in thread
From: Florian Fainelli @ 2023-06-08 22:11 UTC (permalink / raw)
  To: bcm-kernel-feedback-list, Stanislav Jakubek, Sebastian Reichel,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Ray Jui,
	Scott Branden
  Cc: Florian Fainelli, linux-pm, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 365 bytes --]

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

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4221 bytes --]

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

end of thread, other threads:[~2023-06-08 22:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-27 14:12 [PATCH] dt-bindings: power: reset: bcm21664-resetmgr: convert to YAML Stanislav Jakubek
2023-05-27 22:28 ` Conor Dooley
2023-05-30 15:03 ` Krzysztof Kozlowski
2023-06-05 18:15 ` Florian Fainelli
2023-06-08 21:56   ` Sebastian Reichel
2023-06-08 22:11 ` Florian Fainelli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).