Merge tag 'tegra-for-4.8-i2c' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra...
[cascardo/linux.git] / Documentation / devicetree / bindings / clock / cs2000-cp.txt
1 CIRRUS LOGIC Fractional-N Clock Synthesizer & Clock Multiplier
2
3 Required properties:
4
5 - compatible:           "cirrus,cs2000-cp"
6 - reg:                  The chip select number on the I2C bus
7 - clocks:               common clock binding for CLK_IN, XTI/REF_CLK
8 - clock-names:          CLK_IN : clk_in, XTI/REF_CLK : ref_clk
9 - #clock-cells:         must be <0>
10
11 Example:
12
13 &i2c2 {
14         ...
15         cs2000: clk_multiplier@4f {
16                 #clock-cells = <0>;
17                 compatible = "cirrus,cs2000-cp";
18                 reg = <0x4f>;
19                 clocks = <&rcar_sound 0>, <&x12_clk>;
20                 clock-names = "clk_in", "ref_clk";
21         };
22 };