From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Boris BREZILLON <brezillonboris@gmail.com>,
Mike Turquette <mturquette@linaro.org>,
Alexandre Belloni <alexandre.belloni@free-electrons.com>,
Jean-Jacques Hiblot <jjhiblot@traphandler.com>,
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Boris BREZILLON <b.brezillon.dev@gmail.com>
Subject: Re: [PATCH v2 04/11] clk: at91: add slow clk documentation
Date: Fri, 18 Apr 2014 15:09:01 +0200 [thread overview]
Message-ID: <535123ED.9070303@atmel.com> (raw)
In-Reply-To: <1395649643-9146-5-git-send-email-b.brezillon.dev@gmail.com>
On 24/03/2014 09:27, Boris BREZILLON :
> Add slow clk, and slow oscillators documentation.
>
> Signed-off-by: Boris BREZILLON <b.brezillon.dev@gmail.com>
> ---
> .../devicetree/bindings/clock/at91-clock.txt | 72 ++++++++++++++++++++
> 1 file changed, 72 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/clock/at91-clock.txt b/Documentation/devicetree/bindings/clock/at91-clock.txt
> index 9a7025b..820061c 100644
> --- a/Documentation/devicetree/bindings/clock/at91-clock.txt
> +++ b/Documentation/devicetree/bindings/clock/at91-clock.txt
> @@ -6,6 +6,16 @@ This binding uses the common clock binding[1].
>
> Required properties:
> - compatible : shall be one of the following:
> + "atmel,at91sam9x5-sckc":
> + at91 SCKC (Slow Clock Controller)
> + This node contains the slow clock definitions.
> +
> + "atmel,at91sam9x5-clk-slow-osc":
> + at91 slow oscillator
> +
> + "atmel,at91sam9x5-clk-slow-rc-osc":
> + at91 internal slow RC oscillator
> +
> "atmel,at91rm9200-pmc" or
> "atmel,at91sam9g45-pmc" or
> "atmel,at91sam9n12-pmc" or
> @@ -15,6 +25,11 @@ Required properties:
> All at91 specific clocks (clocks defined below) must be child
> node of the PMC node.
>
> + "atmel,at91sam9x5-clk-slow" (under sckc node)
> + or
> + "atmel,at91sam9260-clk-slow" (under pmc node):
> + at91 slow clk
> +
> "atmel,at91rm9200-clk-main-osc"
> "atmel,at91sam9x5-clk-main-rc-osc"
> at91 main clk sources
> @@ -59,6 +74,63 @@ Required properties:
> "atmel,at91sam9x5-clk-utmi":
> at91 utmi clock
>
> +Required properties for SCKC node:
> +- reg : defines the IO memory reserved for the SCKC.
> +- #size-cells : shall be 0 (reg is used to encode clk id).
> +- #address-cells : shall be 1 (reg is used to encode clk id).
> +
> +
> +For example:
> + ckc: sckc@fffffe50 {
s/ckc/sckc/ ?
> + compatible = "atmel,sama5d3-pmc";
> + reg = <0xfffffe50 0x4>
> + #size-cells = <0>;
> + #address-cells = <1>;
> +
> + /* put at91 slow clocks here */
> + };
> +
> +
> +Required properties for internal slow RC oscillator:
> +- #clock-cells : from common clock binding; shall be set to 0.
> +- clock-frequency : define the internal RC oscillator frequency.
> +
> +Optional properties:
> +- clock-accuracy : define the internal RC oscillator accuracy.
> +
> +For example:
> + slow_rc_osc: slow_rc_osc {
> + compatible = "atmel,at91sam9x5-clk-slow-rc-osc";
> + clock-frequency = <32768>;
> + clock-accuracy = <50000000>;
> + };
> +
> +Required properties for slow oscillator:
> +- #clock-cells : from common clock binding; shall be set to 0.
> +- clocks : shall encode the main osc source clk sources (see atmel datasheet).
> +
> +Optional properties:
> +- atmel,osc-bypass : boolean property. Set this when a clock signal is directly
> + provided on XIN.
> +
> +For example:
> + slow_osc: slow_osc {
> + compatible = "atmel,at91rm9200-clk-slow-osc";
> + #clock-cells = <0>;
> + clocks = <&slow_xtal>;
> + };
> +
> +Required properties for slow clock:
> +- #clock-cells : from common clock binding; shall be set to 0.
> +- clocks : shall encode the slow clk sources (see atmel datasheet).
> +
> +For example:
> + clk32k: slck {
> + compatible = "atmel,at91sam9x5-clk-slow";
> + #clock-cells = <0>;
> + clocks = <&slow_rc_osc &slow_osc>;
> + };
> +
> Required properties for PMC node:
> - reg : defines the IO memory reserved for the PMC.
> - #size-cells : shall be 0 (reg is used to encode clk id).
>
--
Nicolas Ferre
next prev parent reply other threads:[~2014-04-18 13:09 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-24 8:27 [PATCH v2 00/11] ARM: at91: rework main and slow clk implementation Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 01/11] clk: at91: rework main " Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 02/11] clk: at91: update main clk documentation Boris BREZILLON
2014-04-18 12:49 ` Nicolas Ferre
2014-04-18 13:00 ` Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 03/11] clk: at91: add slow clks driver Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 04/11] clk: at91: add slow clk documentation Boris BREZILLON
2014-04-18 13:09 ` Nicolas Ferre [this message]
2014-03-24 8:27 ` [PATCH v2 05/11] ARM: at91/dt: move sama5d3 SoC to the new main/slow clk model Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 06/11] ARM: at91/dt: add xtal frequencies to sama5d3xcm boards Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 07/11] ARM: at91/dt: add xtal frequencies to sama5d3 xplained board Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 08/11] ARM: at91/dt: move at91sam9261 SoC to the new main clock model Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 09/11] ARM: at91/dt: define main xtal frequency of the at91sam9261ek board Boris BREZILLON
2014-03-24 8:27 ` [PATCH v2 10/11] ARM: at91/dt: move at91sam9rl SoC to the new slow/main clock models Boris BREZILLON
[not found] ` <1395649643-9146-11-git-send-email-b.brezillon.dev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-03-24 9:27 ` Alexandre Belloni
2014-03-24 8:27 ` [PATCH v2 11/11] ARM: at91/dt: define sam9rlek crystal frequencies Boris BREZILLON
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=535123ED.9070303@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=alexandre.belloni@free-electrons.com \
--cc=b.brezillon.dev@gmail.com \
--cc=brezillonboris@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=jjhiblot@traphandler.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=plagnioj@jcrosoft.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;
as well as URLs for NNTP newsgroup(s).