2019-10-25 19:50:47

by Chunyan Zhang

[permalink] [raw]
Subject: [PATCH 0/5] Add clocks for Unisoc's SC9863A


Add SC9863A specific clock driver and devicetree bindings for it.

Also this patchset added support gate clock for pll which need to
wait a certain time for stable after being switched on.

Chunyan Zhang (4):
dt-bindings: clk: sprd: rename the common file name sprd.txt to SoC
specific
dt-bindings: clk: sprd: add bindings for sc9863a clock controller
clk: sprd: Add dt-bindings include file for SC9863A
clk: sprd: add clocks support for SC9863A

Xiaolong Zhang (1):
clk: sprd: add gate for pll clocks

.../clock/{sprd.txt => sprd,sc9860-clk.txt} | 2 +-
.../bindings/clock/sprd,sc9863a-clk.txt | 59 +
drivers/clk/sprd/Kconfig | 8 +
drivers/clk/sprd/Makefile | 1 +
drivers/clk/sprd/gate.c | 19 +
drivers/clk/sprd/gate.h | 21 +-
drivers/clk/sprd/sc9863a-clk.c | 1711 +++++++++++++++++
include/dt-bindings/clock/sprd,sc9863a-clk.h | 353 ++++
8 files changed, 2171 insertions(+), 3 deletions(-)
rename Documentation/devicetree/bindings/clock/{sprd.txt => sprd,sc9860-clk.txt} (98%)
create mode 100644 Documentation/devicetree/bindings/clock/sprd,sc9863a-clk.txt
create mode 100644 drivers/clk/sprd/sc9863a-clk.c
create mode 100644 include/dt-bindings/clock/sprd,sc9863a-clk.h

--
2.20.1



2019-10-25 19:51:17

by Chunyan Zhang

[permalink] [raw]
Subject: [PATCH 2/5] dt-bindings: clk: sprd: rename the common file name sprd.txt to SoC specific


Only SC9860 clocks were described in sprd.txt, rename it with a SoC
specific name, so that we can add more SoC support.

Signed-off-by: Chunyan Zhang <[email protected]>
---
.../devicetree/bindings/clock/{sprd.txt => sprd,sc9860-clk.txt} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename Documentation/devicetree/bindings/clock/{sprd.txt => sprd,sc9860-clk.txt} (98%)

diff --git a/Documentation/devicetree/bindings/clock/sprd.txt b/Documentation/devicetree/bindings/clock/sprd,sc9860-clk.txt
similarity index 98%
rename from Documentation/devicetree/bindings/clock/sprd.txt
rename to Documentation/devicetree/bindings/clock/sprd,sc9860-clk.txt
index e9d179e882d9..aaaf02ca2a6a 100644
--- a/Documentation/devicetree/bindings/clock/sprd.txt
+++ b/Documentation/devicetree/bindings/clock/sprd,sc9860-clk.txt
@@ -1,4 +1,4 @@
-Spreadtrum Clock Binding
+Spreadtrum SC9860 Clock Binding
------------------------

Required properties:
--
2.20.1


2019-10-29 21:48:20

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH 2/5] dt-bindings: clk: sprd: rename the common file name sprd.txt to SoC specific

On Fri, 25 Oct 2019 19:13:35 +0800, Chunyan Zhang wrote:
>
> Only SC9860 clocks were described in sprd.txt, rename it with a SoC
> specific name, so that we can add more SoC support.
>
> Signed-off-by: Chunyan Zhang <[email protected]>
> ---
> .../devicetree/bindings/clock/{sprd.txt => sprd,sc9860-clk.txt} | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> rename Documentation/devicetree/bindings/clock/{sprd.txt => sprd,sc9860-clk.txt} (98%)
>

Acked-by: Rob Herring <[email protected]>