linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes
@ 2023-12-21 12:27 Michal Simek
  2023-12-21 12:27 ` [PATCH v3 3/4] dt-bindings: power: reset: xilinx: Rename node names in examples Michal Simek
  2024-01-22 13:06 ` [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes Michal Simek
  0 siblings, 2 replies; 4+ messages in thread
From: Michal Simek @ 2023-12-21 12:27 UTC (permalink / raw)
  To: linux-kernel, monstr, michal.simek, git
  Cc: Conor Dooley, Damien Le Moal, Krzysztof Kozlowski,
	Laurent Pinchart, Mark Brown, Naman Trivedi Manojbhai,
	Parth Gajjar, Radhey Shyam Pandey, Rob Herring, Sebastian Reichel,
	Wolfram Sang, devicetree, kishore Manne, linux-arm-kernel,
	linux-pm

Hi,

series is converting missing descriptions for child nodes and also
synchronizing name for power-management discussed with Krzysztof in v1
version available here.
https://lore.kernel.org/r/fc7863a2-d3c5-47c8-9484-ef9cd6d7dd5d@linaro.org

Thanks,
Michal

Changes in v3:
- s/power-controller/power-management/g
- extend example
- s/power-controller/power-management/g
- align commit message
- s/power-controller/power-management/g
- update subject and commit message to match sed above

Changes in v2:
- Sort nodes by name
- Rename zynqmp-power to power-controller
- Keep only single patch for easier handling as done in v1
- New patch in series
- New patch is series
- New patch is series

Michal Simek (4):
  dt-bindings: firmware: xilinx: Describe missing child nodes
  dt-bindings: firmware: xilinx: Sort node names (clock-controller)
  dt-bindings: power: reset: xilinx: Rename node names in examples
  arm64: zynqmp: Rename zynqmp-power node to power-management

 .../firmware/xilinx/xlnx,zynqmp-firmware.yaml | 68 ++++++++++++++++---
 .../power/reset/xlnx,zynqmp-power.yaml        |  4 +-
 arch/arm64/boot/dts/xilinx/zynqmp.dtsi        |  2 +-
 3 files changed, 62 insertions(+), 12 deletions(-)

-- 
2.36.1


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

* [PATCH v3 3/4] dt-bindings: power: reset: xilinx: Rename node names in examples
  2023-12-21 12:27 [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes Michal Simek
@ 2023-12-21 12:27 ` Michal Simek
  2023-12-21 20:39   ` Krzysztof Kozlowski
  2024-01-22 13:06 ` [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes Michal Simek
  1 sibling, 1 reply; 4+ messages in thread
From: Michal Simek @ 2023-12-21 12:27 UTC (permalink / raw)
  To: linux-kernel, monstr, michal.simek, git
  Cc: Conor Dooley, Krzysztof Kozlowski, Rob Herring, Sebastian Reichel,
	devicetree, linux-arm-kernel, linux-pm

Rename zynqmp-power node name to power-management which is more aligned
with generic node name recommendation.

Signed-off-by: Michal Simek <michal.simek@amd.com>
---

Changes in v3:
- s/power-controller/power-management/g
- align commit message

Changes in v2:
- New patch is series

 .../devicetree/bindings/power/reset/xlnx,zynqmp-power.yaml    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/power/reset/xlnx,zynqmp-power.yaml b/Documentation/devicetree/bindings/power/reset/xlnx,zynqmp-power.yaml
index 45792e216981..799831636194 100644
--- a/Documentation/devicetree/bindings/power/reset/xlnx,zynqmp-power.yaml
+++ b/Documentation/devicetree/bindings/power/reset/xlnx,zynqmp-power.yaml
@@ -57,7 +57,7 @@ examples:
 
     firmware {
       zynqmp-firmware {
-        zynqmp-power {
+        power-management {
           compatible = "xlnx,zynqmp-power";
           interrupts = <0 35 4>;
         };
@@ -70,7 +70,7 @@ examples:
 
     firmware {
       zynqmp-firmware {
-        zynqmp-power {
+        power-management {
           compatible = "xlnx,zynqmp-power";
           interrupt-parent = <&gic>;
           interrupts = <0 35 4>;
-- 
2.36.1


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

* Re: [PATCH v3 3/4] dt-bindings: power: reset: xilinx: Rename node names in examples
  2023-12-21 12:27 ` [PATCH v3 3/4] dt-bindings: power: reset: xilinx: Rename node names in examples Michal Simek
@ 2023-12-21 20:39   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-21 20:39 UTC (permalink / raw)
  To: Michal Simek, linux-kernel, monstr, michal.simek, git
  Cc: Conor Dooley, Krzysztof Kozlowski, Rob Herring, Sebastian Reichel,
	devicetree, linux-arm-kernel, linux-pm

On 21/12/2023 13:27, Michal Simek wrote:
> Rename zynqmp-power node name to power-management which is more aligned
> with generic node name recommendation.
> 
> Signed-off-by: Michal Simek <michal.simek@amd.com>


Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>


Best regards,
Krzysztof


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

* Re: [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes
  2023-12-21 12:27 [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes Michal Simek
  2023-12-21 12:27 ` [PATCH v3 3/4] dt-bindings: power: reset: xilinx: Rename node names in examples Michal Simek
@ 2024-01-22 13:06 ` Michal Simek
  1 sibling, 0 replies; 4+ messages in thread
From: Michal Simek @ 2024-01-22 13:06 UTC (permalink / raw)
  To: linux-kernel, monstr, michal.simek, git
  Cc: Conor Dooley, Damien Le Moal, Krzysztof Kozlowski,
	Laurent Pinchart, Mark Brown, Naman Trivedi Manojbhai,
	Parth Gajjar, Radhey Shyam Pandey, Rob Herring, Sebastian Reichel,
	Wolfram Sang, devicetree, kishore Manne, linux-arm-kernel,
	linux-pm



On 12/21/23 13:27, Michal Simek wrote:
> Hi,
> 
> series is converting missing descriptions for child nodes and also
> synchronizing name for power-management discussed with Krzysztof in v1
> version available here.
> https://lore.kernel.org/r/fc7863a2-d3c5-47c8-9484-ef9cd6d7dd5d@linaro.org
> 
> Thanks,
> Michal
> 
> Changes in v3:
> - s/power-controller/power-management/g
> - extend example
> - s/power-controller/power-management/g
> - align commit message
> - s/power-controller/power-management/g
> - update subject and commit message to match sed above
> 
> Changes in v2:
> - Sort nodes by name
> - Rename zynqmp-power to power-controller
> - Keep only single patch for easier handling as done in v1
> - New patch in series
> - New patch is series
> - New patch is series
> 
> Michal Simek (4):
>    dt-bindings: firmware: xilinx: Describe missing child nodes
>    dt-bindings: firmware: xilinx: Sort node names (clock-controller)
>    dt-bindings: power: reset: xilinx: Rename node names in examples
>    arm64: zynqmp: Rename zynqmp-power node to power-management
> 
>   .../firmware/xilinx/xlnx,zynqmp-firmware.yaml | 68 ++++++++++++++++---
>   .../power/reset/xlnx,zynqmp-power.yaml        |  4 +-
>   arch/arm64/boot/dts/xilinx/zynqmp.dtsi        |  2 +-
>   3 files changed, 62 insertions(+), 12 deletions(-)
> 

Applied 1,2 and 4.

3 has been applied to v6.8-rc1 already by Sebastian as
97b9b383976e ("dt-bindings: power: reset: xilinx: Rename node names in examples")

Thanks,
Michal

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

end of thread, other threads:[~2024-01-22 13:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-21 12:27 [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes Michal Simek
2023-12-21 12:27 ` [PATCH v3 3/4] dt-bindings: power: reset: xilinx: Rename node names in examples Michal Simek
2023-12-21 20:39   ` Krzysztof Kozlowski
2024-01-22 13:06 ` [PATCH v3 0/4] dt-bindings: xilinx: Add missing firmware child nodes Michal Simek

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).