All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 00/12] Add clock driver for Actions S900 SoC
@ 2018-03-17 10:09 ` Manivannan Sadhasivam
  0 siblings, 0 replies; 80+ messages in thread
From: Manivannan Sadhasivam @ 2018-03-17 10:09 UTC (permalink / raw)
  To: mturquette, sboyd, afaerber, robh+dt, mark.rutland
  Cc: liuwei, mp-cs, 96boards, devicetree, davem, mchehab,
	daniel.thompson, amit.kucheria, viresh.kumar, hzhang, bdong,
	linux-kernel, linux-clk, linux-arm-kernel, manivannanece23,
	Manivannan Sadhasivam

This patchset adds clock support for Actions Semi OWL series
S900 SoC with relevant clock bindings and device tree info.

Driver has been validated on Bubblegum-96 board.

Thanks,
Mani

Changes in V5:

* Changed I2C clocks to fixed factor clocks
* Fixed minor issue in S900 PLL clock names
* Fixed S900 Kconfig
* Rebased on top of 4.16-rc5

Changes in V4:

* Moved to SPDX license tag for dt-bindings
* Fixed a warning in owl-common.h
* Rebased on top of 4.16-rc3

Changes in V3:

* Completely refactored the clock driver based on sunxi-ng
  clock structure
* Removed all owl_ prefixed functions for registering the
  clock driver and used the registration functions directly
* Moved to SPDX based license tag
* Removed module dependencies from the driver
* Made I2C clocks as simple gate clocks due to the lack of
  information about factor rates
* Added Ack from Rob for DT bindings
* Sourced CMU clock for UART5

Changes in V2: (https://lkml.org/lkml/2017/11/6/840)

* Changed the directory structure to actions/ and used owl- prefix
  for sources.
* Fixed MAINTAINERS and added Andreas as Designated Reviewer (R:).
* Introduced new Kconfig for S900 code part (CONFIG_CLK_OWL_S900).
* Changed the license from GPLv2 to GPLv2+.
* Moved fixed clock sources to DT
* Changed clock-controller node name to cmu in DT
* Added clocks property to cmu node in DT
* Changed compatible property value to "actions,s900-cmu"
* Fixed example UART controller node in documentation
* Fixed tab vs space issue

Changes in V1: (https://lkml.org/lkml/2017/10/31/808)

* Addressed last year's review comments from Stephen
* https://patchwork.kernel.org/patch/9254471/

Manivannan Sadhasivam (12):
  dt-bindings: clock: Add Actions S900 clock bindings
  arm64: dts: actions: Add S900 clock management unit nodes
  arm64: dts: actions: Source CMU clock for UART5
  clk: actions: Add common clock driver support
  clk: actions: Add gate clock support
  clk: actions: Add mux clock support
  clk: actions: Add divider clock support
  clk: actions: Add factor clock support
  clk: actions: Add fixed factor clock support
  clk: actions: Add composite clock support
  clk: actions: Add pll clock support
  clk: actions: Add S900 SoC clock support

 .../devicetree/bindings/clock/actions,s900-cmu.txt |  47 ++
 arch/arm64/boot/dts/actions/s900-bubblegum-96.dts  |   8 +-
 arch/arm64/boot/dts/actions/s900.dtsi              |  20 +
 drivers/clk/Kconfig                                |   1 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/actions/Kconfig                        |  14 +
 drivers/clk/actions/Makefile                       |  13 +
 drivers/clk/actions/owl-common.c                   |  84 +++
 drivers/clk/actions/owl-common.h                   |  41 ++
 drivers/clk/actions/owl-composite.c                | 200 ++++++
 drivers/clk/actions/owl-composite.h                | 118 ++++
 drivers/clk/actions/owl-divider.c                  |  94 +++
 drivers/clk/actions/owl-divider.h                  |  75 +++
 drivers/clk/actions/owl-factor.c                   | 222 +++++++
 drivers/clk/actions/owl-factor.h                   |  83 +++
 drivers/clk/actions/owl-fixed-factor.c             |  81 +++
 drivers/clk/actions/owl-fixed-factor.h             |  62 ++
 drivers/clk/actions/owl-gate.c                     |  77 +++
 drivers/clk/actions/owl-gate.h                     |  73 +++
 drivers/clk/actions/owl-mux.c                      |  60 ++
 drivers/clk/actions/owl-mux.h                      |  61 ++
 drivers/clk/actions/owl-pll.c                      | 194 ++++++
 drivers/clk/actions/owl-pll.h                      |  92 +++
 drivers/clk/actions/owl-s900.c                     | 690 +++++++++++++++++++++
 drivers/clk/actions/owl-s900.h                     |  61 ++
 include/dt-bindings/clock/actions,s900-cmu.h       | 129 ++++
 26 files changed, 2594 insertions(+), 7 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/actions,s900-cmu.txt
 create mode 100644 drivers/clk/actions/Kconfig
 create mode 100644 drivers/clk/actions/Makefile
 create mode 100644 drivers/clk/actions/owl-common.c
 create mode 100644 drivers/clk/actions/owl-common.h
 create mode 100644 drivers/clk/actions/owl-composite.c
 create mode 100644 drivers/clk/actions/owl-composite.h
 create mode 100644 drivers/clk/actions/owl-divider.c
 create mode 100644 drivers/clk/actions/owl-divider.h
 create mode 100644 drivers/clk/actions/owl-factor.c
 create mode 100644 drivers/clk/actions/owl-factor.h
 create mode 100644 drivers/clk/actions/owl-fixed-factor.c
 create mode 100644 drivers/clk/actions/owl-fixed-factor.h
 create mode 100644 drivers/clk/actions/owl-gate.c
 create mode 100644 drivers/clk/actions/owl-gate.h
 create mode 100644 drivers/clk/actions/owl-mux.c
 create mode 100644 drivers/clk/actions/owl-mux.h
 create mode 100644 drivers/clk/actions/owl-pll.c
 create mode 100644 drivers/clk/actions/owl-pll.h
 create mode 100644 drivers/clk/actions/owl-s900.c
 create mode 100644 drivers/clk/actions/owl-s900.h
 create mode 100644 include/dt-bindings/clock/actions,s900-cmu.h

-- 
2.14.1

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

end of thread, other threads:[~2018-03-20 17:15 UTC | newest]

Thread overview: 80+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-17 10:09 [PATCH v5 00/12] Add clock driver for Actions S900 SoC Manivannan Sadhasivam
2018-03-17 10:09 ` Manivannan Sadhasivam
2018-03-17 10:09 ` [PATCH v5 01/12] dt-bindings: clock: Add Actions S900 clock bindings Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-20  0:59   ` Stephen Boyd
2018-03-20  0:59     ` Stephen Boyd
2018-03-20  0:59     ` Stephen Boyd
2018-03-20  0:59     ` Stephen Boyd
2018-03-17 10:09 ` [PATCH v5 02/12] arm64: dts: actions: Add S900 clock management unit nodes Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-17 10:09 ` [PATCH v5 03/12] arm64: dts: actions: Source CMU clock for UART5 Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-17 10:09 ` [PATCH v5 04/12] clk: actions: Add common clock driver support Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-20  1:02   ` Stephen Boyd
2018-03-20  1:02     ` Stephen Boyd
2018-03-20  1:02     ` Stephen Boyd
2018-03-20  1:02     ` Stephen Boyd
2018-03-17 10:09 ` [PATCH v5 05/12] clk: actions: Add gate clock support Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-20  1:04   ` Stephen Boyd
2018-03-20  1:04     ` Stephen Boyd
2018-03-20  1:04     ` Stephen Boyd
2018-03-20  1:04     ` Stephen Boyd
2018-03-17 10:09 ` [PATCH v5 06/12] clk: actions: Add mux " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-20  1:05   ` Stephen Boyd
2018-03-20  1:05     ` Stephen Boyd
2018-03-20  1:05     ` Stephen Boyd
2018-03-20  1:05     ` Stephen Boyd
2018-03-17 10:09 ` [PATCH v5 07/12] clk: actions: Add divider " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-20  1:06   ` Stephen Boyd
2018-03-20  1:06     ` Stephen Boyd
2018-03-20  1:06     ` Stephen Boyd
2018-03-20  1:06     ` Stephen Boyd
2018-03-17 10:09 ` [PATCH v5 08/12] clk: actions: Add factor " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-18 20:31   ` kbuild test robot
2018-03-18 20:31     ` kbuild test robot
2018-03-18 20:31     ` kbuild test robot
2018-03-20  1:08   ` Stephen Boyd
2018-03-20  1:08     ` Stephen Boyd
2018-03-20  1:08     ` Stephen Boyd
2018-03-20  1:08     ` Stephen Boyd
2018-03-20  1:11   ` Stephen Boyd
2018-03-20  1:11     ` Stephen Boyd
2018-03-20  1:11     ` Stephen Boyd
2018-03-20  1:11     ` Stephen Boyd
2018-03-20  1:41   ` kbuild test robot
2018-03-20  1:41     ` kbuild test robot
2018-03-20  1:41     ` kbuild test robot
2018-03-17 10:09 ` [PATCH v5 09/12] clk: actions: Add fixed " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-20  1:10   ` Stephen Boyd
2018-03-20  1:10     ` Stephen Boyd
2018-03-20  1:10     ` Stephen Boyd
2018-03-20  1:10     ` Stephen Boyd
2018-03-20  9:04     ` Manivannan Sadhasivam
2018-03-20  9:04       ` Manivannan Sadhasivam
2018-03-20 17:15       ` Stephen Boyd
2018-03-20 17:15         ` Stephen Boyd
2018-03-20 17:15         ` Stephen Boyd
2018-03-17 10:09 ` [PATCH v5 10/12] clk: actions: Add composite " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-17 10:09 ` [PATCH v5 11/12] clk: actions: Add pll " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-17 10:09 ` [PATCH v5 12/12] clk: actions: Add S900 SoC " Manivannan Sadhasivam
2018-03-17 10:09   ` Manivannan Sadhasivam
2018-03-18 20:38   ` kbuild test robot
2018-03-18 20:38     ` kbuild test robot
2018-03-18 20:38     ` kbuild test robot
2018-03-18 21:28   ` kbuild test robot
2018-03-18 21:28     ` kbuild test robot
2018-03-18 21:28     ` kbuild test robot
2018-03-20  7:16   ` Stephen Boyd
2018-03-20  7:16     ` Stephen Boyd
2018-03-20  7:16     ` Stephen Boyd
2018-03-20  7:16     ` Stephen Boyd

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.