All of lore.kernel.org
 help / color / mirror / Atom feed
From: wens@csie.org (Chen-Yu Tsai)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 4/8] arm: dts: sun4i: rename clock node names to clk@N
Date: Wed, 8 Jan 2014 09:38:52 +0800	[thread overview]
Message-ID: <CAGb2v657=0Z+5e9zUYq5Tq9CB7XAGEwR1=2iw3L86s3SXnrU-Q@mail.gmail.com> (raw)
In-Reply-To: <20140107223823.GH3103@lukather>

On Wed, Jan 8, 2014 at 6:38 AM, Maxime Ripard
<maxime.ripard@free-electrons.com> wrote:
> On Mon, Jan 06, 2014 at 01:58:08PM +0800, Chen-Yu Tsai wrote:
>> Device tree naming conventions state that node names should match
>> node function. Change fully functioning clock nodes to match.
>>
>> Also add the output name for pll5 to use as the clock name.
>>
>> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
>> ---
>>  arch/arm/boot/dts/sun4i-a10.dtsi | 26 +++++++++++++++-----------
>>  1 file changed, 15 insertions(+), 11 deletions(-)
>>
>> diff --git a/arch/arm/boot/dts/sun4i-a10.dtsi b/arch/arm/boot/dts/sun4i-a10.dtsi
>> index 3ba2b46..45d5283 100644
>> --- a/arch/arm/boot/dts/sun4i-a10.dtsi
>> +++ b/arch/arm/boot/dts/sun4i-a10.dtsi
>> @@ -50,42 +50,46 @@
>>                       clock-frequency = <0>;
>>               };
>>
>> -             osc24M: osc24M at 01c20050 {
>> +             osc24M: clk at 01c20050 {
>>                       #clock-cells = <0>;
>>                       compatible = "allwinner,sun4i-osc-clk";
>>                       reg = <0x01c20050 0x4>;
>>                       clock-frequency = <24000000>;
>> +                     clock-output-names = "osc24M";
>>               };
>>
>> -             osc32k: osc32k {
>> +             osc32k: clk at 0 {
>>                       #clock-cells = <0>;
>>                       compatible = "fixed-clock";
>>                       clock-frequency = <32768>;
>> +                     clock-output-names = "osc32k";
>>               };
>>
>> -             pll1: pll1 at 01c20000 {
>> +             pll1: clk at 01c20000 {
>>                       #clock-cells = <0>;
>>                       compatible = "allwinner,sun4i-pll1-clk";
>>                       reg = <0x01c20000 0x4>;
>>                       clocks = <&osc24M>;
>> +                     clock-output-names = "pll1";
>>               };
>>
>> -             pll4: pll4 at 01c20018 {
>> +             pll4: clk at 01c20018 {
>>                       #clock-cells = <0>;
>>                       compatible = "allwinner,sun4i-pll1-clk";
>>                       reg = <0x01c20018 0x4>;
>>                       clocks = <&osc24M>;
>> +                     clock-output-names = "pll4";
>>               };
>>
>> -             pll5: pll5 at 01c20020 {
>> +             pll5: clk at 01c20020 {
>>                       #clock-cells = <1>;
>>                       compatible = "allwinner,sun4i-pll5-clk";
>>                       reg = <0x01c20020 0x4>;
>>                       clocks = <&osc24M>;
>> -                     clock-output-names = "pll5_ddr", "pll5_other";
>> +                     clock-output-names = "pll5_ddr", "pll5_other", "pll5";
>
> Hmmm, I don't really like that bit too much.
>
> This "pll5" clock doesn't actually exist at the hardware point of
> view, which is not really what the DT is used for.

You are right. pll5 only has 2 outputs. I was matching the format of
pll6, which I'd like to include in this discussion.

Does pll6 actually have 3 outputs? or are we just using the third
output as a shortcut for mbus input of pll6*2 ?

> I can think of two ways to do what you want withouth this:
>   - either hardcode the name, since we have a compatible of our own here

Since we have seperate compatibles for pll5 and pll6, I would prefer
to add a .name to clk_factors_config, instead of adding it in the code.
Emilio, is that okay with you?

>   - or use strchr to take anyhing until '_' and use that as a name

Thanks
ChenYu

  reply	other threads:[~2014-01-08  1:38 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-06  5:58 [PATCH v2 0/8] arm: sunxi: rename DT clock node names to clk@N Chen-Yu Tsai
2014-01-06  5:58 ` [PATCH v2 1/8] clk: sunxi: add clock-output-names dt property support Chen-Yu Tsai
2014-01-07 22:14   ` Maxime Ripard
2014-01-08  1:44     ` [linux-sunxi] " Chen-Yu Tsai
2014-01-06  5:58 ` [PATCH v2 2/8] clk: sunxi: choose correct name for multiple output factor clocks Chen-Yu Tsai
2014-01-07 22:16   ` Maxime Ripard
2014-01-07 22:41     ` Maxime Ripard
2014-01-06  5:58 ` [PATCH v2 3/8] clk: sunxi: get divs parent clock name from parent factor clock Chen-Yu Tsai
2014-01-07 22:17   ` Maxime Ripard
2014-01-06  5:58 ` [PATCH v2 4/8] arm: dts: sun4i: rename clock node names to clk@N Chen-Yu Tsai
2014-01-07 22:38   ` Maxime Ripard
2014-01-08  1:38     ` Chen-Yu Tsai [this message]
2014-01-09  8:53       ` Maxime Ripard
2014-01-09 15:47         ` Emilio López
2014-01-09 16:02           ` [linux-sunxi] " Chen-Yu Tsai
2014-01-06  5:58 ` [PATCH v2 5/8] arm: dts: sun5i: " Chen-Yu Tsai
2014-01-06  5:58 ` [PATCH v2 6/8] arm: dts: sun6i: " Chen-Yu Tsai
2014-01-06  5:58 ` [PATCH v2 7/8] arm: dts: sun7i: " Chen-Yu Tsai
2014-01-06  5:58 ` [PATCH v2 8/8] arm: sun7i: cubietruck: Enable the i2c controllers Chen-Yu Tsai
2014-01-07 22:40   ` Maxime Ripard

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='CAGb2v657=0Z+5e9zUYq5Tq9CB7XAGEwR1=2iw3L86s3SXnrU-Q@mail.gmail.com' \
    --to=wens@csie.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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.