cs2000-cp.txt 517 B

12345678910111213141516171819202122
  1. CIRRUS LOGIC Fractional-N Clock Synthesizer & Clock Multiplier
  2. Required properties:
  3. - compatible: "cirrus,cs2000-cp"
  4. - reg: The chip select number on the I2C bus
  5. - clocks: common clock binding for CLK_IN, XTI/REF_CLK
  6. - clock-names: CLK_IN : clk_in, XTI/REF_CLK : ref_clk
  7. - #clock-cells: must be <0>
  8. Example:
  9. &i2c2 {
  10. ...
  11. cs2000: clk_multiplier@4f {
  12. #clock-cells = <0>;
  13. compatible = "cirrus,cs2000-cp";
  14. reg = <0x4f>;
  15. clocks = <&rcar_sound 0>, <&x12_clk>;
  16. clock-names = "clk_in", "ref_clk";
  17. };
  18. };