devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND v4 0/9] clk: cs2000-cp: add dynamic mode and more features
@ 2022-01-25  9:33 Daniel Mack
  2022-01-25  9:33 ` [PATCH RESEND v4 1/9] dt-bindings: clock: convert cs2000-cp bindings to yaml Daniel Mack
                   ` (8 more replies)
  0 siblings, 9 replies; 21+ messages in thread
From: Daniel Mack @ 2022-01-25  9:33 UTC (permalink / raw)
  To: mturquette, sboyd
  Cc: linux-clk, robh+dt, devicetree, kuninori.morimoto.gx, Daniel Mack

Mike, Stephen,

This patch series adds support for dynamic mode, configurable clock
skip settings and a tranisition to regmap.

As Kuninori Morimoto is not responding, would you kindly do me the
favor and take this series directly? I don't know what else to do
than resending the set over and over again.

The patches still apply cleanly to 5.17-rc1, and we're using them
in production since a while.

All DT patches are Acked-by already by Rob; what left is a review of
the implementation bits.


Thanks,
Daniel

Daniel Mack (9):
  dt-bindings: clock: convert cs2000-cp bindings to yaml
  dt-bindings: clock: cs2000-cp: document aux-output-source
  dt-bindings: clock: cs2000-cp: document cirrus,clock-skip flag
  dt-bindings: clock: cs2000-cp: document cirrus,dynamic-mode
  clk: cs2000-cp: Make aux output function controllable
  clk: cs2000-cp: add support for dynamic mode
  clk: cs2000-cp: make clock skip setting configurable
  clk: cs2000-cp: freeze config during register fiddling
  clk: cs2000-cp: convert driver to regmap

 .../bindings/clock/cirrus,cs2000-cp.yaml      |  91 +++++++
 .../devicetree/bindings/clock/cs2000-cp.txt   |  22 --
 drivers/clk/Kconfig                           |   1 +
 drivers/clk/clk-cs2000-cp.c                   | 243 ++++++++++++------
 include/dt-bindings/clock/cirrus,cs2000-cp.h  |  14 +
 5 files changed, 264 insertions(+), 107 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/cirrus,cs2000-cp.yaml
 delete mode 100644 Documentation/devicetree/bindings/clock/cs2000-cp.txt
 create mode 100644 include/dt-bindings/clock/cirrus,cs2000-cp.h

-- 
2.31.1


^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PATCH RESEND v4 0/9] clk: cs2000-cp: add dynamic mode and more features
@ 2021-12-14 12:09 Daniel Mack
  2021-12-14 12:09 ` [PATCH RESEND v4 6/9] clk: cs2000-cp: add support for dynamic mode Daniel Mack
  0 siblings, 1 reply; 21+ messages in thread
From: Daniel Mack @ 2021-12-14 12:09 UTC (permalink / raw)
  To: mturquette, sboyd
  Cc: linux-clk, robh+dt, devicetree, kuninori.morimoto.gx, Daniel Mack

[Resending this series which still applies cleanly to both clk/clk-next
 and 5.16-rc5. We're using these patches in production for a while.
 All DT patches are Acked-by already by Rob; what left is a review of
 the implementaion bits.]

This patch series adds support for dynamic mode, configurable clock
skip settings and a tranisition to regmap.

The most significant change is the additional support for dynamic mode.
Currently, the driver only supports static mode in which the (currently
mandatory) CLK_IN clock input is not used by the hardware.

Unlike v3 of this series, the patch stack now maintains full
compatibility with existing bindings. Rather than infering the mode of
operation through the presence of an optional clock, the driver now
parses a new DT property to enable the dynamic mode.

Rob, I left your Reviewed-by in 1/9 as that is untouched since v2. I'd
much appreciate a review of the other 3 patches that concern
dt-bindings.


Thanks,
Daniel

Daniel Mack (9):
  dt-bindings: clock: convert cs2000-cp bindings to yaml
  dt-bindings: clock: cs2000-cp: document aux-output-source
  dt-bindings: clock: cs2000-cp: document cirrus,clock-skip flag
  dt-bindings: clock: cs2000-cp: document cirrus,dynamic-mode
  clk: cs2000-cp: Make aux output function controllable
  clk: cs2000-cp: add support for dynamic mode
  clk: cs2000-cp: make clock skip setting configurable
  clk: cs2000-cp: freeze config during register fiddling
  clk: cs2000-cp: convert driver to regmap

 .../bindings/clock/cirrus,cs2000-cp.yaml      |  91 +++++++
 .../devicetree/bindings/clock/cs2000-cp.txt   |  22 --
 drivers/clk/Kconfig                           |   1 +
 drivers/clk/clk-cs2000-cp.c                   | 243 ++++++++++++------
 include/dt-bindings/clock/cirrus,cs2000-cp.h  |  14 +
 5 files changed, 264 insertions(+), 107 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/cirrus,cs2000-cp.yaml
 delete mode 100644 Documentation/devicetree/bindings/clock/cs2000-cp.txt
 create mode 100644 include/dt-bindings/clock/cirrus,cs2000-cp.h

-- 
2.31.1


^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PATCH RESEND v4 0/9] clk: cs2000-cp: add dynamic mode and more features
@ 2021-10-15 14:53 Daniel Mack
  2021-10-15 14:53 ` [PATCH RESEND v4 6/9] clk: cs2000-cp: add support for dynamic mode Daniel Mack
  0 siblings, 1 reply; 21+ messages in thread
From: Daniel Mack @ 2021-10-15 14:53 UTC (permalink / raw)
  To: mturquette, sboyd
  Cc: linux-clk, robh+dt, devicetree, kuninori.morimoto.gx, Daniel Mack

[Resending the series again with no code changes]

This patch series adds support for dynamic mode, configurable clock
skip settings and a tranisition to regmap.

The most significant change is the additional support for dynamic mode.
Currently, the driver only supports static mode in which the (currently
mandatory) CLK_IN clock input is not used by the hardware.

Unlike v3 of this series, the patch stack now maintains full
compatibility with existing bindings. Rather than infering the mode of
operation through the presence of an optional clock, the driver now
parses a new DT property to enable the dynamic mode.

Rob, I left your Reviewed-by in 1/9 as that is untouched since v2. I'd
much appreciate a review of the other 3 patches that concern
dt-bindings.


Thanks,
Daniel

Daniel Mack (9):
  dt-bindings: clock: convert cs2000-cp bindings to yaml
  dt-bindings: clock: cs2000-cp: document aux-output-source
  dt-bindings: clock: cs2000-cp: document cirrus,clock-skip flag
  dt-bindings: clock: cs2000-cp: document cirrus,dynamic-mode
  clk: cs2000-cp: Make aux output function controllable
  clk: cs2000-cp: add support for dynamic mode
  clk: cs2000-cp: make clock skip setting configurable
  clk: cs2000-cp: freeze config during register fiddling
  clk: cs2000-cp: convert driver to regmap

 .../bindings/clock/cirrus,cs2000-cp.yaml      |  91 +++++++
 .../devicetree/bindings/clock/cs2000-cp.txt   |  22 --
 drivers/clk/Kconfig                           |   1 +
 drivers/clk/clk-cs2000-cp.c                   | 243 ++++++++++++------
 include/dt-bindings/clock/cirrus,cs2000-cp.h  |  14 +
 5 files changed, 264 insertions(+), 107 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/cirrus,cs2000-cp.yaml
 delete mode 100644 Documentation/devicetree/bindings/clock/cs2000-cp.txt
 create mode 100644 include/dt-bindings/clock/cirrus,cs2000-cp.h

-- 
2.31.1


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

end of thread, other threads:[~2022-01-25 22:30 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-25  9:33 [PATCH RESEND v4 0/9] clk: cs2000-cp: add dynamic mode and more features Daniel Mack
2022-01-25  9:33 ` [PATCH RESEND v4 1/9] dt-bindings: clock: convert cs2000-cp bindings to yaml Daniel Mack
2022-01-25 22:29   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 2/9] dt-bindings: clock: cs2000-cp: document aux-output-source Daniel Mack
2022-01-25 22:29   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 3/9] dt-bindings: clock: cs2000-cp: document cirrus,clock-skip flag Daniel Mack
2022-01-25 22:29   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 4/9] dt-bindings: clock: cs2000-cp: document cirrus,dynamic-mode Daniel Mack
2022-01-25 22:29   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 5/9] clk: cs2000-cp: Make aux output function controllable Daniel Mack
2022-01-25 22:29   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 6/9] clk: cs2000-cp: add support for dynamic mode Daniel Mack
2022-01-25 22:30   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 7/9] clk: cs2000-cp: make clock skip setting configurable Daniel Mack
2022-01-25 22:30   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 8/9] clk: cs2000-cp: freeze config during register fiddling Daniel Mack
2022-01-25 22:30   ` Stephen Boyd
2022-01-25  9:33 ` [PATCH RESEND v4 9/9] clk: cs2000-cp: convert driver to regmap Daniel Mack
2022-01-25 22:30   ` Stephen Boyd
  -- strict thread matches above, loose matches on Subject: below --
2021-12-14 12:09 [PATCH RESEND v4 0/9] clk: cs2000-cp: add dynamic mode and more features Daniel Mack
2021-12-14 12:09 ` [PATCH RESEND v4 6/9] clk: cs2000-cp: add support for dynamic mode Daniel Mack
2021-10-15 14:53 [PATCH RESEND v4 0/9] clk: cs2000-cp: add dynamic mode and more features Daniel Mack
2021-10-15 14:53 ` [PATCH RESEND v4 6/9] clk: cs2000-cp: add support for dynamic mode Daniel Mack

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