From: Tero Kristo <t-kristo@ti.com>
To: Peter Ujfalusi <peter.ujfalusi@ti.com>, <mturquette@linaro.org>,
<grant.likely@linaro.org>, <tony@atomide.com>
Cc: <devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-omap@vger.kernel.org>, <linux-doc@vger.kernel.org>,
<robh+dt@kernel.org>, <bcousson@baylibre.com>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2 4/4] ARM: DTS: dra7/dra7xx-clocks: ATL related changes
Date: Mon, 16 Jun 2014 17:01:42 +0300 [thread overview]
Message-ID: <539EF8C6.1080207@ti.com> (raw)
In-Reply-To: <1399458048-28213-5-git-send-email-peter.ujfalusi@ti.com>
On 05/07/2014 01:20 PM, Peter Ujfalusi wrote:
> Modify the clock nodes for the ATL clocks to use the ATL clock driver to
> handle them.
>
> Add the ATL device node at the same time for DRA7.
>
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
This patch missed the merge window due to long dependency chain, however
Tony promised to pull this with rc-fixes. So, for that purpose:
Acked-by: Tero Kristo <t-kristo@ti.com>
> ---
> arch/arm/boot/dts/dra7.dtsi | 11 +++++++++++
> arch/arm/boot/dts/dra7xx-clocks.dtsi | 16 ++++++++--------
> 2 files changed, 19 insertions(+), 8 deletions(-)
>
> diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
> index 149b55099935..84071423016e 100644
> --- a/arch/arm/boot/dts/dra7.dtsi
> +++ b/arch/arm/boot/dts/dra7.dtsi
> @@ -789,6 +789,17 @@
> dma-names = "tx0", "rx0";
> status = "disabled";
> };
> +
> + atl: atl@4843c000 {
> + compatible = "ti,dra7-atl";
> + reg = <0x4843c000 0x3ff>;
> + ti,hwmods = "atl";
> + ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
> + <&atl_clkin2_ck>, <&atl_clkin3_ck>;
> + clocks = <&atl_gfclk_mux>;
> + clock-names = "fck";
> + status = "disabled";
> + };
> };
> };
>
> diff --git a/arch/arm/boot/dts/dra7xx-clocks.dtsi b/arch/arm/boot/dts/dra7xx-clocks.dtsi
> index 30160348934c..789e92cd5595 100644
> --- a/arch/arm/boot/dts/dra7xx-clocks.dtsi
> +++ b/arch/arm/boot/dts/dra7xx-clocks.dtsi
> @@ -10,26 +10,26 @@
> &cm_core_aon_clocks {
> atl_clkin0_ck: atl_clkin0_ck {
> #clock-cells = <0>;
> - compatible = "fixed-clock";
> - clock-frequency = <0>;
> + compatible = "ti,dra7-atl-clock";
> + clocks = <&atl_gfclk_mux>;
> };
>
> atl_clkin1_ck: atl_clkin1_ck {
> #clock-cells = <0>;
> - compatible = "fixed-clock";
> - clock-frequency = <0>;
> + compatible = "ti,dra7-atl-clock";
> + clocks = <&atl_gfclk_mux>;
> };
>
> atl_clkin2_ck: atl_clkin2_ck {
> #clock-cells = <0>;
> - compatible = "fixed-clock";
> - clock-frequency = <0>;
> + compatible = "ti,dra7-atl-clock";
> + clocks = <&atl_gfclk_mux>;
> };
>
> atl_clkin3_ck: atl_clkin3_ck {
> #clock-cells = <0>;
> - compatible = "fixed-clock";
> - clock-frequency = <0>;
> + compatible = "ti,dra7-atl-clock";
> + clocks = <&atl_gfclk_mux>;
> };
>
> hdmi_clkin_ck: hdmi_clkin_ck {
>
next prev parent reply other threads:[~2014-06-16 14:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-07 10:20 [PATCH v2 0/4] clk: Add clock driver for DRA7 ATL (Audio Tracking Logic) Peter Ujfalusi
2014-05-07 10:20 ` [PATCH v2 1/4] ARM: dts: dra7xx-clocks: Correct name for atl clkin3 clock Peter Ujfalusi
2014-05-07 10:20 ` [PATCH v2 2/4] dt:/bindings: DRA7 ATL (Audio Tracking Logic) clock bindings Peter Ujfalusi
2014-05-07 10:20 ` [PATCH v2 3/4] clk: ti: Driver for DRA7 ATL (Audio Tracking Logic) Peter Ujfalusi
2014-05-20 17:45 ` Mike Turquette
2014-05-07 10:20 ` [PATCH v2 4/4] ARM: DTS: dra7/dra7xx-clocks: ATL related changes Peter Ujfalusi
2014-06-16 14:01 ` Tero Kristo [this message]
2014-06-16 14:13 ` Tony Lindgren
2014-05-19 13:47 ` [PATCH v2 0/4] clk: Add clock driver for DRA7 ATL (Audio Tracking Logic) Tero Kristo
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=539EF8C6.1080207@ti.com \
--to=t-kristo@ti.com \
--cc=bcousson@baylibre.com \
--cc=devicetree@vger.kernel.org \
--cc=grant.likely@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=peter.ujfalusi@ti.com \
--cc=robh+dt@kernel.org \
--cc=tony@atomide.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox