axs10x-i2s-pll-clock.txt 672 B

12345678910111213141516171819202122232425
  1. Binding for the AXS10X I2S PLL clock
  2. This binding uses the common clock binding[1].
  3. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  4. Required properties:
  5. - compatible: shall be "snps,axs10x-i2s-pll-clock"
  6. - reg : address and length of the I2S PLL register set.
  7. - clocks: shall be the input parent clock phandle for the PLL.
  8. - #clock-cells: from common clock binding; Should always be set to 0.
  9. Example:
  10. pll_clock: pll_clock {
  11. compatible = "fixed-clock";
  12. clock-frequency = <27000000>;
  13. #clock-cells = <0>;
  14. };
  15. i2s_clock@100a0 {
  16. compatible = "snps,axs10x-i2s-pll-clock";
  17. reg = <0x100a0 0x10>;
  18. clocks = <&pll_clock>;
  19. #clock-cells = <0>;
  20. };