From: Tony Lindgren <tony@atomide.com>
To: Tero Kristo <t-kristo@ti.com>
Cc: Neil Armstrong <narmstrong@baylibre.com>,
Matthijs van Duin <matthijsvanduin@gmail.com>,
Philipp Rosenberger <ilu@linutronix.de>,
Delio Brignoli <dbrignoli@audioscience.com>,
linux-omap@vger.kernel.org,
Brian Hutchinson <b.hutchman@gmail.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2] ARM: dts: Add clocks for dm814x ADPLL
Date: Tue, 22 Dec 2015 12:29:08 -0800 [thread overview]
Message-ID: <20151222202907.GF2793@atomide.com> (raw)
In-Reply-To: <5679AE41.2080409@ti.com>
* Tero Kristo <t-kristo@ti.com> [151222 12:08]:
> On 12/22/2015 05:53 PM, Tony Lindgren wrote:
> >These use the standard clock bindings and now we can make some
> >of the fixed clocks into real clocks.
> >
> >Cc: Tero Kristo <t-kristo@ti.com>
> >Signed-off-by: Tony Lindgren <tony@atomide.com>
> >---
> >Changes since v1:
> >
> >- Updated for changed clock names for "dcoclkldo"
> >- Merged in the dra62x changes
> >
> >---
> > arch/arm/boot/dts/dm814x-clocks.dtsi | 256 ++++++++++++++++++++++++++++++-----
> > arch/arm/boot/dts/dra62x-clocks.dtsi | 26 ++++
> > 2 files changed, 251 insertions(+), 31 deletions(-)
> >
> >diff --git a/arch/arm/boot/dts/dm814x-clocks.dtsi b/arch/arm/boot/dts/dm814x-clocks.dtsi
> >index e0ea6a9..b75ca91 100644
> >--- a/arch/arm/boot/dts/dm814x-clocks.dtsi
> >+++ b/arch/arm/boot/dts/dm814x-clocks.dtsi
> >@@ -4,6 +4,170 @@
> > * published by the Free Software Foundation.
> > */
> >
> >+&pllss {
> >+ /*
> >+ * See TRM "2.6.10 Connected outputso DPLLS" and
> >+ * "2.6.11 Connected Outputs of DPLLJ". Only clkout is
> >+ * connected except for hdmi and usb.
> >+ */
> >+ adpll_mpu_ck: adpll@40 {
> >+ #clock-cells = <1>;
> >+ compatible = "ti,dm814-adpll-s-clock";
> >+ reg = <0x40 0x40>;
> >+ clocks = <&devosc_ck &devosc_ck &devosc_ck>;
> >+ clock-names = "clkinp", "clkinpulow", "clkinphif";
> >+ clock-indices = <0>, <1>, <2>, <3>;
> >+ clock-output-names = "481c5040.adpll.dcoclkldo",
> >+ "481c5040.adpll.clkout",
> >+ "481c5040.adpll.clkoutx2",
> >+ "481c5040.adpll.clkouthif";
>
> Discussed this offline, but looks like most of the clock output names can
> probably be generated runtime, as they seem duplicate across adplls?
> Including the address component.
Yes the output names could be generated if not separately specified.
Eventually we probably want to use more descriptive names here though.
> Based on the offline discussion though:
>
> Acked-by: Tero Kristo <t-kristo@ti.com>
OK thanks,
Tony
WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] ARM: dts: Add clocks for dm814x ADPLL
Date: Tue, 22 Dec 2015 12:29:08 -0800 [thread overview]
Message-ID: <20151222202907.GF2793@atomide.com> (raw)
In-Reply-To: <5679AE41.2080409@ti.com>
* Tero Kristo <t-kristo@ti.com> [151222 12:08]:
> On 12/22/2015 05:53 PM, Tony Lindgren wrote:
> >These use the standard clock bindings and now we can make some
> >of the fixed clocks into real clocks.
> >
> >Cc: Tero Kristo <t-kristo@ti.com>
> >Signed-off-by: Tony Lindgren <tony@atomide.com>
> >---
> >Changes since v1:
> >
> >- Updated for changed clock names for "dcoclkldo"
> >- Merged in the dra62x changes
> >
> >---
> > arch/arm/boot/dts/dm814x-clocks.dtsi | 256 ++++++++++++++++++++++++++++++-----
> > arch/arm/boot/dts/dra62x-clocks.dtsi | 26 ++++
> > 2 files changed, 251 insertions(+), 31 deletions(-)
> >
> >diff --git a/arch/arm/boot/dts/dm814x-clocks.dtsi b/arch/arm/boot/dts/dm814x-clocks.dtsi
> >index e0ea6a9..b75ca91 100644
> >--- a/arch/arm/boot/dts/dm814x-clocks.dtsi
> >+++ b/arch/arm/boot/dts/dm814x-clocks.dtsi
> >@@ -4,6 +4,170 @@
> > * published by the Free Software Foundation.
> > */
> >
> >+&pllss {
> >+ /*
> >+ * See TRM "2.6.10 Connected outputso DPLLS" and
> >+ * "2.6.11 Connected Outputs of DPLLJ". Only clkout is
> >+ * connected except for hdmi and usb.
> >+ */
> >+ adpll_mpu_ck: adpll at 40 {
> >+ #clock-cells = <1>;
> >+ compatible = "ti,dm814-adpll-s-clock";
> >+ reg = <0x40 0x40>;
> >+ clocks = <&devosc_ck &devosc_ck &devosc_ck>;
> >+ clock-names = "clkinp", "clkinpulow", "clkinphif";
> >+ clock-indices = <0>, <1>, <2>, <3>;
> >+ clock-output-names = "481c5040.adpll.dcoclkldo",
> >+ "481c5040.adpll.clkout",
> >+ "481c5040.adpll.clkoutx2",
> >+ "481c5040.adpll.clkouthif";
>
> Discussed this offline, but looks like most of the clock output names can
> probably be generated runtime, as they seem duplicate across adplls?
> Including the address component.
Yes the output names could be generated if not separately specified.
Eventually we probably want to use more descriptive names here though.
> Based on the offline discussion though:
>
> Acked-by: Tero Kristo <t-kristo@ti.com>
OK thanks,
Tony
next prev parent reply other threads:[~2015-12-22 20:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-22 15:53 [PATCH v2] ARM: dts: Add clocks for dm814x ADPLL Tony Lindgren
2015-12-22 15:53 ` Tony Lindgren
2015-12-22 20:10 ` Tero Kristo
2015-12-22 20:10 ` Tero Kristo
2015-12-22 20:29 ` Tony Lindgren [this message]
2015-12-22 20:29 ` Tony Lindgren
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=20151222202907.GF2793@atomide.com \
--to=tony@atomide.com \
--cc=b.hutchman@gmail.com \
--cc=dbrignoli@audioscience.com \
--cc=ilu@linutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=matthijsvanduin@gmail.com \
--cc=narmstrong@baylibre.com \
--cc=t-kristo@ti.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.