devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V6 0/6] clk: Samsung: audss: Register audio subsytem clocks using common clk framework
@ 2013-06-12  8:07 Padmavathi Venna
  2013-06-12  8:07 ` [PATCH V6 1/6] ARM: samsung: use #include for all device trees Padmavathi Venna
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Padmavathi Venna @ 2013-06-12  8:07 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss, linux-arm-kernel,
	alsa-devel, padma.v, padma.kvr
  Cc: sbkim73, broonie, kgene.kim, mturquette

Samsung S5PV210 and Exynos SoC has a separate subsystem for audio. This subsystem
has a internal clock controller which controls i2s0 and pcm0 clocks. This patch
series adds the Samsung audio subsytem clock to the common clock framework and
provides the I2S controllers clock information in the dtsi file.

This patch series is made based on Kukjin Kim for-next branch

Changes since V5:
	- Added i2s_opclk0 entry for i2s1 and i2s2 nodes
	- Added Acked-by: Mike Turquette <mturquette@linaro.org>
	- Added Reviewed-by: Doug Anderson <dianders@chromium.org>

Changes since V4:
        - Reworked on the nits given by Doug.
        - Removed mout_audss and mout_i2s from i2s nodes as we are not
          getting these clocks in the i2s driver.
        - Modified the I2S binding documentation for clocks and pinmux.

Changes since V3:
        - Replaced samsung with exynos in the macro prefixes and function names
          as this driver supports mainly exynos and s5p family.
        - Added Reviewed-by:Sylwester Nawrocki <s.nawrocki@samsung.com>

Changes since V2:
        - Removed s5pv210 compatible name from driver as it is
          not yet supported which is different from Exynos series
          audio subsystem clock conroller.
        - Removed clkdev lookup support and added alias names in
          the i2s0 controller node.
Changes since V1:
        - Reworked on all review comments by Sylwester Nawrocki
        - Added a header file for all clock indexes as requested by Sylwester
        - Added different compatible names for s5pv210, exynos4 and exynos5
        - Registered the pcm clocks with common clock framework

Padmavathi Venna (6):
  ARM: samsung: use #include for all device trees
  clk: samsung: register audio subsystem clocks using common clock
    framework
  ARM: dts: add Exynos audio subsystem clock controller node
  ARM: dts: add clock provider information for i2s controllers in
    Exynos5250
  ARM: dts: Update Samsung I2S documentation
  clk: exynos5250: Add enum entries for divider clock of i2s1 and i2s2

 .../devicetree/bindings/clock/clk-exynos-audss.txt |   64 ++++++++++
 .../devicetree/bindings/sound/samsung-i2s.txt      |   46 +++----
 arch/arm/boot/dts/exynos4.dtsi                     |    2 +-
 arch/arm/boot/dts/exynos4210-origen.dts            |    2 +-
 arch/arm/boot/dts/exynos4210-smdkv310.dts          |    2 +-
 arch/arm/boot/dts/exynos4210-trats.dts             |    2 +-
 arch/arm/boot/dts/exynos4210-universal_c210.dts    |    2 +-
 arch/arm/boot/dts/exynos4210.dtsi                  |    4 +-
 arch/arm/boot/dts/exynos4212.dtsi                  |    2 +-
 arch/arm/boot/dts/exynos4412-odroidx.dts           |    2 +-
 arch/arm/boot/dts/exynos4412-origen.dts            |    2 +-
 arch/arm/boot/dts/exynos4412-smdk4412.dts          |    2 +-
 arch/arm/boot/dts/exynos4412.dtsi                  |    2 +-
 arch/arm/boot/dts/exynos4x12.dtsi                  |    4 +-
 arch/arm/boot/dts/exynos5250-arndale.dts           |    2 +-
 arch/arm/boot/dts/exynos5250-smdk5250.dts          |    2 +-
 arch/arm/boot/dts/exynos5250-snow.dts              |    4 +-
 arch/arm/boot/dts/exynos5250.dtsi                  |   20 +++-
 arch/arm/boot/dts/exynos5440-sd5v1.dts             |    2 +-
 arch/arm/boot/dts/exynos5440-ssdk5440.dts          |    2 +-
 arch/arm/boot/dts/exynos5440.dtsi                  |    2 +-
 arch/arm/boot/dts/s3c2416-smdk2416.dts             |    2 +-
 arch/arm/boot/dts/s3c2416.dtsi                     |    4 +-
 arch/arm/boot/dts/s3c24xx.dtsi                     |    2 +-
 drivers/clk/samsung/Makefile                       |    1 +
 drivers/clk/samsung/clk-exynos-audss.c             |  133 ++++++++++++++++++++
 drivers/clk/samsung/clk-exynos5250.c               |    5 +-
 include/dt-bindings/clk/exynos-audss-clk.h         |   25 ++++
 28 files changed, 288 insertions(+), 56 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/clk-exynos-audss.txt
 create mode 100644 drivers/clk/samsung/clk-exynos-audss.c
 create mode 100644 include/dt-bindings/clk/exynos-audss-clk.h

-- 
1.7.4.4

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

end of thread, other threads:[~2013-06-21  6:54 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-12  8:07 [PATCH V6 0/6] clk: Samsung: audss: Register audio subsytem clocks using common clk framework Padmavathi Venna
2013-06-12  8:07 ` [PATCH V6 1/6] ARM: samsung: use #include for all device trees Padmavathi Venna
2013-06-12  8:07 ` [PATCH V6 2/6] clk: samsung: register audio subsystem clocks using common clock framework Padmavathi Venna
2013-06-12  8:07 ` [PATCH V6 3/6] ARM: dts: add Exynos audio subsystem clock controller node Padmavathi Venna
2013-06-12  8:07 ` [PATCH V6 4/6] ARM: dts: add clock provider information for i2s controllers in Exynos5250 Padmavathi Venna
2013-06-12  8:07 ` [PATCH V6 5/6] ARM: dts: Update Samsung I2S documentation Padmavathi Venna
2013-06-12  8:07 ` [PATCH V6 6/6] clk: exynos5250: Add enum entries for divider clock of i2s1 and i2s2 Padmavathi Venna
2013-06-12 16:45   ` Mike Turquette
2013-06-13  3:02     ` Padma Venkat
2013-06-17  4:59       ` Padma Venkat
2013-06-17 10:15         ` Kukjin Kim
2013-06-21  6:54           ` Mike Turquette

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