Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1466589

Re: [PATCH v6 2/2] clk: uniphier: add clock data for UniPhier SoCs

Path csiph.com!aioe.org!bofh.it!news.nic.it!robomod
From Masahiro Yamada <yamada.masahiro@socionext.com>
Newsgroups linux.kernel
Subject Re: [PATCH v6 2/2] clk: uniphier: add clock data for UniPhier SoCs
Date Fri, 19 Aug 2016 20:00:01 +0200
Message-ID <s7Wff-e9-7@gated-at.bofh.it> (permalink)
References <s1zv3-7Qw-7@gated-at.bofh.it> <s1zv3-7Qw-5@gated-at.bofh.it> <s7GtQ-7go-37@gated-at.bofh.it>
X-Original-To Stephen Boyd <sboyd@codeaurora.org>
Dkim-Filter OpenDKIM Filter v2.10.3 conssluserg-04.nifty.com u7JHtDjH011888
Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1471629314; bh=+sWOEse545Oi8ARqSRigFJc5wzscbH7N/upuloqp+8w=; h=In-Reply-To:References:From:Date:Subject:To:Cc:From; b=KoGCf5/2i7/HfzhEeCWgLzoubwlrP3sesb6ETxvzAppiTs0xNU6NZKuzNllyi0J0d EovEIudBgrNGrMhmAaANm2k2+N4+MWAl+o2hASg+z86Z1zkU8nlgUumaIZRdYPVO5x QCq6wS+FhFZQvE9V8KZ2gYSRUCIrZbYvPygZRpl78+RjoM20YiUxJXS57bT/Szxt0O KwdxOxbmQefryVcah5rfxLQRJh7J1y4B3GvaTRh/SWBv02E/BuEaiMdgiW/UZ17ESn wzbVZ++D7QjcDt6cYsdbRIqBPrSv2smPLEC0bMg+/1tZWq2wIe8RfWWGCYXY/gJKBY 0nxDWXr5LYvKA==
X-Nifty-Srcip [209.85.161.177]
X-Gm-Message-State AEkooutVtZo7Zt4fuaPeycfeeRlEos65swJbDhw43v6C+LX0TRH3CFjV/IGA/PPEs3+3M8r4rKtbjCi//jD+kg==
X-Received by 10.129.2.65 with SMTP id 62mr7343169ywc.240.1471629313387; Fri, 19 Aug 2016 10:55:13 -0700 (PDT)
MIME-Version 1.0
X-Gmail-Original-Message-ID <CAK7LNAROCdE4tomp6jg4p5Ep-koPjWSchNEXH01Qn0Wn3q-f2g@mail.gmail.com>
Content-Type text/plain; charset=UTF-8
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 52
Organization linux.* mail to news gateway
X-Original-Cc Mark Rutland <mark.rutland@arm.com>, devicetree@vger.kernel.org, Michael Turquette <mturquette@baylibre.com>, Linux Kernel Mailing List <linux-kernel@vger.kernel.org>, Rob Herring <robh+dt@kernel.org>, linux-clk <linux-clk@vger.kernel.org>, linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
X-Original-Date Sat, 20 Aug 2016 02:55:12 +0900
X-Original-Message-ID <CAK7LNAROCdE4tomp6jg4p5Ep-koPjWSchNEXH01Qn0Wn3q-f2g@mail.gmail.com>
X-Original-References <1470112223-24835-1-git-send-email-yamada.masahiro@socionext.com> <1470112223-24835-3-git-send-email-yamada.masahiro@socionext.com> <20160819002826.GT361@codeaurora.org>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref csiph.com linux.kernel:1466589

Show key headers only | View raw


Hi Stephen,


2016-08-19 9:28 GMT+09:00 Stephen Boyd <sboyd@codeaurora.org>:

>> +
>> +
>> +System clock
>> +------------
>> +
>> +Required properties:
>> +- compatible: should be one of the following:
>> +    "socionext,uniphier-sld3-clock" - for PH1-sLD3 SoC.
>> +    "socionext,uniphier-ld4-clock"  - for PH1-LD4 SoC.
>> +    "socionext,uniphier-pro4-clock" - for PH1-Pro4 SoC.
>> +    "socionext,uniphier-sld8-clock" - for PH1-sLD8 SoC.
>> +    "socionext,uniphier-pro5-clock" - for PH1-Pro5 SoC.
>> +    "socionext,uniphier-pxs2-clock" - for ProXstream2/PH1-LD6b SoC.
>> +    "socionext,uniphier-ld11-clock" - for PH1-LD11 SoC.
>> +    "socionext,uniphier-ld20-clock" - for PH1-LD20 SoC.
>> +- #clock-cells: should be 1.
>> +
>> +Example:
>> +
>> +     sysctrl@61840000 {
>> +             compatible = "socionext,uniphier-ld20-sysctrl",
>> +                          "simple-mfd", "syscon";
>> +             reg = <0x61840000 0x4000>;
>> +
>> +             clock {
>> +                     compatible = "socionext,uniphier-ld20-clock";
>> +                     #clock-cells = <1>;
>> +             };
>> +
>> +             other nodes ...
>
> What are the other nodes? Is there a document for the rest of the
> MFD?

At lease there are "clock" and "reset" in this MFD at this point.
Perhaps, I may want to add more in the future.

That's why I do not want to list all of the sibling nodes.

The reset node is documented in its binding document,
added by the following patch:
https://patchwork.kernel.org/patch/9255101/


-- 
Best Regards
Masahiro Yamada

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Re: [PATCH v6 2/2] clk: uniphier: add clock data for UniPhier SoCs Stephen Boyd <sboyd@codeaurora.org> - 2016-08-19 03:10 +0200
  Re: [PATCH v6 2/2] clk: uniphier: add clock data for UniPhier SoCs Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-08-19 20:00 +0200

csiph-web