All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v0 00/15] clk: st: Add new driver
@ 2014-02-27 15:24 ` Gabriel FERNANDEZ
  0 siblings, 0 replies; 49+ messages in thread
From: Gabriel FERNANDEZ @ 2014-02-27 15:24 UTC (permalink / raw)
  To: mturquette, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
	galak, rob, linux, devicetree, linux-doc, linux-kernel,
	linux-arm-kernel
  Cc: Lee Jones, Gabriel Fernandez

The goal of this series is to add Clocks support to ST SoCs.
The DT definition is added for STiH415 and STiH416 SoCs on
B2000 and B2020 boards.

The series has been tested working on STiH416-B2020 board.
It applies on top of v3.14-rc3.

Gabriel Fernandez (15):
  drivers: clk: st: Support for DIVMUX and PreDiv Clocks
  drivers: clk: st: Support for PLLs inside ClockGenA(s)
  drivers: clk: st: Support for VCC-mux and MUX clocks
  drivers: clk: st: Support for QUADFS inside ClockGenB/C/D/E/F
  drivers: clk: st: Support for ClockGenA9/DDR/GPU
  drivers: clk: st: Support for A9 MUX clocks
  clk: st: Adds divmux and prediv clock binding
  clk: st: Adds clockgen clock binding
  clk: st: Adds clockgen-vcc and clockgen-mux clock binding
  clk: st: Adds quadfs clock binding
  ARM: STi: DT: STiH416: 416 DT Entry for clockgen A0/1/10/11/12
  ARM: STi: DT: STiH416: 416 DT Entry for clockgen B/C/D/E/F
  ARM: STi: DT: STiH416: 416 DT Entry for clockgen A9/DDR/GPU
  ARM: STi: DT: STiH415: 415 DT Entry for clockgen A0/1/10/11/12
  ARM: STi: DT: STiH415: 415 DT Entry for clockgen A9

 .../bindings/clock/st/st,clkgen-divmux.txt         |   49 +
 .../devicetree/bindings/clock/st/st,clkgen-mux.txt |   36 +
 .../devicetree/bindings/clock/st/st,clkgen-pll.txt |   48 +
 .../bindings/clock/st/st,clkgen-prediv.txt         |   36 +
 .../devicetree/bindings/clock/st/st,clkgen-vcc.txt |   53 +
 .../devicetree/bindings/clock/st/st,clkgen.txt     |   83 ++
 .../devicetree/bindings/clock/st/st,quadfs.txt     |   45 +
 arch/arm/boot/dts/stih415-clks.h                   |   11 +
 arch/arm/boot/dts/stih415-clock.dtsi               |  530 +++++++++-
 arch/arm/boot/dts/stih415.dtsi                     |    6 +-
 arch/arm/boot/dts/stih416-clks.h                   |   11 +
 arch/arm/boot/dts/stih416-clock.dtsi               |  717 +++++++++++++-
 arch/arm/boot/dts/stih416.dtsi                     |    6 +-
 drivers/clk/Makefile                               |    1 +
 drivers/clk/st/Makefile                            |    1 +
 drivers/clk/st/clkgen-fsyn.c                       | 1039 ++++++++++++++++++++
 drivers/clk/st/clkgen-mux.c                        |  820 +++++++++++++++
 drivers/clk/st/clkgen-pll.c                        |  698 +++++++++++++
 drivers/clk/st/clkgen.h                            |   48 +
 19 files changed, 4214 insertions(+), 24 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,clkgen-divmux.txt
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,clkgen-mux.txt
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,clkgen-pll.txt
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,clkgen-prediv.txt
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,clkgen-vcc.txt
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,clkgen.txt
 create mode 100644 Documentation/devicetree/bindings/clock/st/st,quadfs.txt
 create mode 100644 arch/arm/boot/dts/stih415-clks.h
 create mode 100644 arch/arm/boot/dts/stih416-clks.h
 create mode 100644 drivers/clk/st/Makefile
 create mode 100644 drivers/clk/st/clkgen-fsyn.c
 create mode 100644 drivers/clk/st/clkgen-mux.c
 create mode 100644 drivers/clk/st/clkgen-pll.c
 create mode 100644 drivers/clk/st/clkgen.h

-- 
1.9.0


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

end of thread, other threads:[~2014-03-25 23:00 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-27 15:24 [PATCH v0 00/15] clk: st: Add new driver Gabriel FERNANDEZ
2014-02-27 15:24 ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 01/15] drivers: clk: st: Support for DIVMUX and PreDiv Clocks Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-03-25  5:27   ` Mike Turquette
2014-03-25  5:27     ` Mike Turquette
2014-03-25  5:27     ` Mike Turquette
2014-03-25  8:28     ` Gabriel Fernandez
2014-03-25  8:28       ` Gabriel Fernandez
2014-03-25  8:28       ` Gabriel Fernandez
2014-03-25 22:59       ` Mike Turquette
2014-03-25 22:59         ` Mike Turquette
2014-02-27 15:24 ` [PATCH v0 02/15] drivers: clk: st: Support for PLLs inside ClockGenA(s) Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 03/15] drivers: clk: st: Support for VCC-mux and MUX clocks Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 04/15] drivers: clk: st: Support for QUADFS inside ClockGenB/C/D/E/F Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 05/15] drivers: clk: st: Support for ClockGenA9/DDR/GPU Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 06/15] drivers: clk: st: Support for A9 MUX clocks Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 07/15] clk: st: Adds divmux and prediv clock binding Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 08/15] clk: st: Adds clockgen " Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 09/15] clk: st: Adds clockgen-vcc and clockgen-mux " Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 10/15] clk: st: Adds quadfs " Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 11/15] ARM: STi: DT: STiH416: 416 DT Entry for clockgen A0/1/10/11/12 Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 12/15] ARM: STi: DT: STiH416: 416 DT Entry for clockgen B/C/D/E/F Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 16:36   ` Lee Jones
2014-02-27 16:36     ` Lee Jones
2014-02-28 13:53     ` Gabriel Fernandez
2014-02-27 15:24 ` [PATCH v0 13/15] ARM: STi: DT: STiH416: 416 DT Entry for clockgen A9/DDR/GPU Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 14/15] ARM: STi: DT: STiH415: 415 DT Entry for clockgen A0/1/10/11/12 Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ
2014-02-27 15:24 ` [PATCH v0 15/15] ARM: STi: DT: STiH415: 415 DT Entry for clockgen A9 Gabriel FERNANDEZ
2014-02-27 15:24   ` Gabriel FERNANDEZ

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.