All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
To: Padmavathi Venna <padma.v@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org,
	devicetree-discuss@lists.ozlabs.org,
	linux-arm-kernel@lists.infradead.org,
	alsa-devel@alsa-project.org, padma.kvr@gmail.com,
	sbkim73@samsung.com, broonie@kernel.org, kgene.kim@samsung.com,
	mturquette@linaro.org
Subject: Re: [PATCH V3 0/4] clk: Samsung: audss: Register audio subsytem clocks using common clk framework
Date: Sat, 01 Jun 2013 10:29:05 +0200	[thread overview]
Message-ID: <51A9B0D1.2090408@gmail.com> (raw)
In-Reply-To: <1369735378-10003-1-git-send-email-padma.v@samsung.com>

Padmavathi,

On 05/28/2013 12:02 PM, Padmavathi Venna wrote:
> 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 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

Overall it looks good to me. I'm only a bit uncomfortable with using 
SAMSUNG_
prefix for the clock index definitions. Ideally it should be something more
specific to the SoC family. But I can't think of anything better at the 
moment.
This covers the Exynos and S5P SoCs, hence EXYNOS_ would not be appropriate.

The patch series:
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>

Thanks,
Sylwester

> Padmavathi Venna (4):
>    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
>
>   .../bindings/clock/clk-samsung-audss.txt           |   64 ++++++++++
>   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                  |   23 +++-
>   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-samsung-audss.c            |  133 ++++++++++++++++++++
>   include/dt-bindings/clk/samsung-audss-clk.h        |   25 ++++
>   26 files changed, 269 insertions(+), 27 deletions(-)
>   create mode 100644 Documentation/devicetree/bindings/clock/clk-samsung-audss.txt
>   create mode 100644 drivers/clk/samsung/clk-samsung-audss.c
>   create mode 100644 include/dt-bindings/clk/samsung-audss-clk.h

WARNING: multiple messages have this Message-ID (diff)
From: sylvester.nawrocki@gmail.com (Sylwester Nawrocki)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 0/4] clk: Samsung: audss: Register audio subsytem clocks using common clk framework
Date: Sat, 01 Jun 2013 10:29:05 +0200	[thread overview]
Message-ID: <51A9B0D1.2090408@gmail.com> (raw)
In-Reply-To: <1369735378-10003-1-git-send-email-padma.v@samsung.com>

Padmavathi,

On 05/28/2013 12:02 PM, Padmavathi Venna wrote:
> 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 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

Overall it looks good to me. I'm only a bit uncomfortable with using 
SAMSUNG_
prefix for the clock index definitions. Ideally it should be something more
specific to the SoC family. But I can't think of anything better at the 
moment.
This covers the Exynos and S5P SoCs, hence EXYNOS_ would not be appropriate.

The patch series:
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>

Thanks,
Sylwester

> Padmavathi Venna (4):
>    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
>
>   .../bindings/clock/clk-samsung-audss.txt           |   64 ++++++++++
>   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                  |   23 +++-
>   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-samsung-audss.c            |  133 ++++++++++++++++++++
>   include/dt-bindings/clk/samsung-audss-clk.h        |   25 ++++
>   26 files changed, 269 insertions(+), 27 deletions(-)
>   create mode 100644 Documentation/devicetree/bindings/clock/clk-samsung-audss.txt
>   create mode 100644 drivers/clk/samsung/clk-samsung-audss.c
>   create mode 100644 include/dt-bindings/clk/samsung-audss-clk.h

  parent reply	other threads:[~2013-06-01  8:29 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-28 10:02 [PATCH V3 0/4] clk: Samsung: audss: Register audio subsytem clocks using common clk framework Padmavathi Venna
2013-05-28 10:02 ` Padmavathi Venna
2013-05-28 10:02 ` [PATCH V3 1/4] ARM: samsung: use #include for all device trees Padmavathi Venna
2013-05-28 10:02   ` Padmavathi Venna
2013-05-28 10:02 ` [PATCH V3 2/4] clk: samsung: register audio subsystem clocks using common clock framework Padmavathi Venna
2013-05-28 10:02   ` Padmavathi Venna
2013-05-28 10:02 ` [PATCH V3 3/4] ARM: dts: add Exynos audio subsystem clock controller node Padmavathi Venna
2013-05-28 10:02   ` Padmavathi Venna
2013-05-28 10:02 ` [PATCH V3 4/4] ARM: dts: add clock provider information for i2s controllers in Exynos5250 Padmavathi Venna
2013-05-28 10:02   ` Padmavathi Venna
2013-06-01  8:29 ` Sylwester Nawrocki [this message]
2013-06-01  8:29   ` [PATCH V3 0/4] clk: Samsung: audss: Register audio subsytem clocks using common clk framework Sylwester Nawrocki
2013-06-01  9:06   ` Padma Venkat
2013-06-01  9:06     ` Padma Venkat
2013-06-01  9:20     ` Sylwester Nawrocki
2013-06-01  9:20       ` Sylwester Nawrocki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51A9B0D1.2090408@gmail.com \
    --to=sylvester.nawrocki@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=mturquette@linaro.org \
    --cc=padma.kvr@gmail.com \
    --cc=padma.v@samsung.com \
    --cc=sbkim73@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.