diff options
author | Michael Turquette <mturquette@baylibre.com> | 2016-03-01 16:23:40 -0800 |
---|---|---|
committer | Michael Turquette <mturquette@baylibre.com> | 2016-03-01 16:23:40 -0800 |
commit | 3b0f4ae3e9f101ecfd918efd2a82fca0ae0b6c95 (patch) | |
tree | aa530b9801bd3acdb77cd10c15e6e344115acc84 /Documentation | |
parent | 811a498e5e9ab802cbd23a8ef9c844ec92450fa4 (diff) | |
parent | 8a8b6eb7a87f12804f44128d6e4c59b19f224308 (diff) | |
download | linux-3b0f4ae3e9f101ecfd918efd2a82fca0ae0b6c95.tar.gz linux-3b0f4ae3e9f101ecfd918efd2a82fca0ae0b6c95.tar.bz2 linux-3b0f4ae3e9f101ecfd918efd2a82fca0ae0b6c95.zip |
Merge branch 'clk-ti' into clk-next
Conflicts:
drivers/clk/Kconfig
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/clock/ti/adpll.txt | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/ti/adpll.txt b/Documentation/devicetree/bindings/clock/ti/adpll.txt new file mode 100644 index 000000000000..4c8a2ce2cd70 --- /dev/null +++ b/Documentation/devicetree/bindings/clock/ti/adpll.txt @@ -0,0 +1,41 @@ +Binding for Texas Instruments ADPLL clock. + +Binding status: Unstable - ABI compatibility may be broken in the future + +This binding uses the common clock binding[1]. It assumes a +register-mapped ADPLL with two to three selectable input clocks +and three to four children. + +[1] Documentation/devicetree/bindings/clock/clock-bindings.txt + +Required properties: +- compatible : shall be one of "ti,dm814-adpll-s-clock" or + "ti,dm814-adpll-lj-clock" depending on the type of the ADPLL +- #clock-cells : from common clock binding; shall be set to 1. +- clocks : link phandles of parent clocks clkinp and clkinpulow, note + that the adpll-s-clock also has an optional clkinphif +- reg : address and length of the register set for controlling the ADPLL. + +Examples: + 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-output-names = "481c5040.adpll.dcoclkldo", + "481c5040.adpll.clkout", + "481c5040.adpll.clkoutx2", + "481c5040.adpll.clkouthif"; + }; + + adpll_dsp_ck: adpll@80 { + #clock-cells = <1>; + compatible = "ti,dm814-adpll-lj-clock"; + reg = <0x80 0x30>; + clocks = <&devosc_ck &devosc_ck>; + clock-names = "clkinp", "clkinpulow"; + clock-output-names = "481c5080.adpll.dcoclkldo", + "481c5080.adpll.clkout", + "481c5080.adpll.clkoutldo"; + }; |