ti,cdce9xx.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Binding for TI CDCE913/925/937/949 programmable I2C clock synthesizers.
  2. Reference
  3. This binding uses the common clock binding[1].
  4. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  5. [2] http://www.ti.com/product/cdce913
  6. [3] http://www.ti.com/product/cdce925
  7. [4] http://www.ti.com/product/cdce937
  8. [5] http://www.ti.com/product/cdce949
  9. The driver provides clock sources for each output Y1 through Y5.
  10. Required properties:
  11. - compatible: Shall be one of the following:
  12. - "ti,cdce913": 1-PLL, 3 Outputs
  13. - "ti,cdce925": 2-PLL, 5 Outputs
  14. - "ti,cdce937": 3-PLL, 7 Outputs
  15. - "ti,cdce949": 4-PLL, 9 Outputs
  16. - reg: I2C device address.
  17. - clocks: Points to a fixed parent clock that provides the input frequency.
  18. - #clock-cells: From common clock bindings: Shall be 1.
  19. Optional properties:
  20. - xtal-load-pf: Crystal load-capacitor value to fine-tune performance on a
  21. board, or to compensate for external influences.
  22. For all PLL1, PLL2, ... an optional child node can be used to specify spread
  23. spectrum clocking parameters for a board.
  24. - spread-spectrum: SSC mode as defined in the data sheet.
  25. - spread-spectrum-center: Use "centered" mode instead of "max" mode. When
  26. present, the clock runs at the requested frequency on average. Otherwise
  27. the requested frequency is the maximum value of the SCC range.
  28. Example:
  29. clockgen: cdce925pw@64 {
  30. compatible = "cdce925";
  31. reg = <0x64>;
  32. clocks = <&xtal_27Mhz>;
  33. #clock-cells = <1>;
  34. xtal-load-pf = <5>;
  35. /* PLL options to get SSC 1% centered */
  36. PLL2 {
  37. spread-spectrum = <4>;
  38. spread-spectrum-center;
  39. };
  40. };