From: Tomasz Figa <t.figa@samsung.com>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Marek Szyprowski <m.szyprowski@samsung.com>,
Mike Turquette <mturquette@linaro.org>,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Pankaj Dubey <pankaj.dubey@samsung.com>,
Rahul Sharma <rahul.sharma@samsung.com>,
Mark Brown <broonie@kernel.org>,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
Daniel Drake <drake@endlessm.com>,
Tomasz Figa <tomasz.figa@gmail.com>
Subject: Re: [PATCH v2 0/4] Add support for Exynos clock output configuration
Date: Wed, 09 Jul 2014 18:53:27 +0200 [thread overview]
Message-ID: <53BD7387.8040200@samsung.com> (raw)
In-Reply-To: <1403626107-12073-1-git-send-email-t.figa@samsung.com>
Kukjin,
On 24.06.2014 18:08, Tomasz Figa wrote:
> On all Exynos SoCs there is a dedicated CLKOUT pin that allows many of
> internal SoC clocks to be output from the SoC. The hardware structure
> of CLKOUT related clocks looks as follows:
>
> CMU |---> clock0 ---------> | PMU |
> | | |
> several |---> clock1 ---------> | mux |
> muxes | | + |---> CLKOUT
> dividers | ... | gate |
> and gates | | |
> |---> clockN ---------> | |
>
> Since the block responsible for handling the pin is PMU, not CMU,
> a separate driver, that binds to PMU node is required and acquires
> all input clocks by standard DT clock look-up. This way we don't need
> any cross-IP block drivers and cross-driver register sharing or
> nodes for fake devices.
>
> To represent the PMU mux/gate clock, generic composite clock is registered.
>
> Tested on Odroid U3, with HSIC/USB hub using CLKOUT as reference clock,
> with some additional patches.
>
> Changes since v1:
> (http://www.spinics.net/lists/arm-kernel/msg333276.html)
> - rebased onto next-20140624,
> - fixed #clock-cells values in exynos5250.dtsi and exynos5420.dtsi,
> - temporarily removed ISP CLKOUT clocks on Exynos4x12, until ISP clock
> domain handling gets fixed in Exynos4 clock driver.
> Changes since RFC v1:
> (https://lkml.org/lkml/2014/5/15/506)
> - rebased onto v5 of "Enable usbphy and hsotg for exynos4" series and
> current HEAD of samsung-clk tree,
> - added handling of suspend/resume in the driver,
> - added missing CPU clocks on Exynos4,
> - added CLK_SET_RATE_PARENT to CMU CLKOUT gates on Exynos4,
> - fixed bit field width on Exynos4,
> - added CLKOUT CMU registers of Exynos4 to save/restore list,
> - added CLK_SET_RATE_PARENT and CLK_SET_RATE_NO_REPARENT to clkout clock,
> - changed the binding to use 1-cell clock specifier to allow extension
> with further PMU clocks in future, if needed.
>
> Tomasz Figa (4):
> clk: samsung: exynos4: Add missing CPU/DMC clock hierarchy
> clk: samsung: exynos4: Add CLKOUT clock hierarchy
> clk: samsung: Add driver to control CLKOUT line on Exynos SoCs
> ARM: dts: exynos: Update PMU node with CLKOUT related data
>
> .../devicetree/bindings/arm/samsung/pmu.txt | 30 ++++
> arch/arm/boot/dts/exynos4210.dtsi | 10 ++
> arch/arm/boot/dts/exynos4x12.dtsi | 7 +
> arch/arm/boot/dts/exynos5250.dtsi | 3 +
> arch/arm/boot/dts/exynos5420.dtsi | 3 +
> drivers/clk/samsung/Makefile | 1 +
> drivers/clk/samsung/clk-exynos-clkout.c | 153 +++++++++++++++++++
> drivers/clk/samsung/clk-exynos4.c | 166 ++++++++++++++++++++-
> include/dt-bindings/clock/exynos4.h | 5 +
> 9 files changed, 374 insertions(+), 4 deletions(-)
> create mode 100644 drivers/clk/samsung/clk-exynos-clkout.c
>
Is there any progress with consulting this with hardware guys? Could I
have your Ack for this series, so I could put it in my tree and let
other patches base on it (especially on patches 1 and 2)? Thanks in advance.
Best regards,
Tomasz
WARNING: multiple messages have this Message-ID (diff)
From: t.figa@samsung.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/4] Add support for Exynos clock output configuration
Date: Wed, 09 Jul 2014 18:53:27 +0200 [thread overview]
Message-ID: <53BD7387.8040200@samsung.com> (raw)
In-Reply-To: <1403626107-12073-1-git-send-email-t.figa@samsung.com>
Kukjin,
On 24.06.2014 18:08, Tomasz Figa wrote:
> On all Exynos SoCs there is a dedicated CLKOUT pin that allows many of
> internal SoC clocks to be output from the SoC. The hardware structure
> of CLKOUT related clocks looks as follows:
>
> CMU |---> clock0 ---------> | PMU |
> | | |
> several |---> clock1 ---------> | mux |
> muxes | | + |---> CLKOUT
> dividers | ... | gate |
> and gates | | |
> |---> clockN ---------> | |
>
> Since the block responsible for handling the pin is PMU, not CMU,
> a separate driver, that binds to PMU node is required and acquires
> all input clocks by standard DT clock look-up. This way we don't need
> any cross-IP block drivers and cross-driver register sharing or
> nodes for fake devices.
>
> To represent the PMU mux/gate clock, generic composite clock is registered.
>
> Tested on Odroid U3, with HSIC/USB hub using CLKOUT as reference clock,
> with some additional patches.
>
> Changes since v1:
> (http://www.spinics.net/lists/arm-kernel/msg333276.html)
> - rebased onto next-20140624,
> - fixed #clock-cells values in exynos5250.dtsi and exynos5420.dtsi,
> - temporarily removed ISP CLKOUT clocks on Exynos4x12, until ISP clock
> domain handling gets fixed in Exynos4 clock driver.
> Changes since RFC v1:
> (https://lkml.org/lkml/2014/5/15/506)
> - rebased onto v5 of "Enable usbphy and hsotg for exynos4" series and
> current HEAD of samsung-clk tree,
> - added handling of suspend/resume in the driver,
> - added missing CPU clocks on Exynos4,
> - added CLK_SET_RATE_PARENT to CMU CLKOUT gates on Exynos4,
> - fixed bit field width on Exynos4,
> - added CLKOUT CMU registers of Exynos4 to save/restore list,
> - added CLK_SET_RATE_PARENT and CLK_SET_RATE_NO_REPARENT to clkout clock,
> - changed the binding to use 1-cell clock specifier to allow extension
> with further PMU clocks in future, if needed.
>
> Tomasz Figa (4):
> clk: samsung: exynos4: Add missing CPU/DMC clock hierarchy
> clk: samsung: exynos4: Add CLKOUT clock hierarchy
> clk: samsung: Add driver to control CLKOUT line on Exynos SoCs
> ARM: dts: exynos: Update PMU node with CLKOUT related data
>
> .../devicetree/bindings/arm/samsung/pmu.txt | 30 ++++
> arch/arm/boot/dts/exynos4210.dtsi | 10 ++
> arch/arm/boot/dts/exynos4x12.dtsi | 7 +
> arch/arm/boot/dts/exynos5250.dtsi | 3 +
> arch/arm/boot/dts/exynos5420.dtsi | 3 +
> drivers/clk/samsung/Makefile | 1 +
> drivers/clk/samsung/clk-exynos-clkout.c | 153 +++++++++++++++++++
> drivers/clk/samsung/clk-exynos4.c | 166 ++++++++++++++++++++-
> include/dt-bindings/clock/exynos4.h | 5 +
> 9 files changed, 374 insertions(+), 4 deletions(-)
> create mode 100644 drivers/clk/samsung/clk-exynos-clkout.c
>
Is there any progress with consulting this with hardware guys? Could I
have your Ack for this series, so I could put it in my tree and let
other patches base on it (especially on patches 1 and 2)? Thanks in advance.
Best regards,
Tomasz
next prev parent reply other threads:[~2014-07-09 16:53 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-24 16:08 [PATCH v2 0/4] Add support for Exynos clock output configuration Tomasz Figa
2014-06-24 16:08 ` Tomasz Figa
2014-06-24 16:08 ` [PATCH v2 1/4] clk: samsung: exynos4: Add missing CPU/DMC clock hierarchy Tomasz Figa
2014-06-24 16:08 ` Tomasz Figa
2014-06-24 16:08 ` [PATCH v2 2/4] clk: samsung: exynos4: Add CLKOUT " Tomasz Figa
2014-06-24 16:08 ` Tomasz Figa
2014-06-24 16:08 ` Tomasz Figa
2014-06-24 16:08 ` [PATCH v2 3/4] clk: samsung: Add driver to control CLKOUT line on Exynos SoCs Tomasz Figa
2014-06-24 16:08 ` Tomasz Figa
2014-06-24 16:08 ` [PATCH v2 4/4] ARM: dts: exynos: Update PMU node with CLKOUT related data Tomasz Figa
2014-06-24 16:08 ` Tomasz Figa
2014-06-25 8:56 ` [PATCH v2 0/4] Add support for Exynos clock output configuration Daniel Drake
2014-06-25 8:56 ` Daniel Drake
2014-06-25 10:36 ` Kukjin Kim
2014-06-25 10:36 ` Kukjin Kim
2014-06-25 10:50 ` Tomasz Figa
2014-06-25 10:50 ` Tomasz Figa
2014-07-03 0:14 ` Mike Turquette
2014-07-03 0:14 ` Mike Turquette
2014-07-08 14:04 ` Tomasz Figa
2014-07-08 14:04 ` Tomasz Figa
2014-07-09 16:53 ` Tomasz Figa [this message]
2014-07-09 16:53 ` Tomasz Figa
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=53BD7387.8040200@samsung.com \
--to=t.figa@samsung.com \
--cc=broonie@kernel.org \
--cc=drake@endlessm.com \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=mark.rutland@arm.com \
--cc=mturquette@linaro.org \
--cc=pankaj.dubey@samsung.com \
--cc=rahul.sharma@samsung.com \
--cc=robh+dt@kernel.org \
--cc=s.nawrocki@samsung.com \
--cc=tomasz.figa@gmail.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.