0001 Binding for the AXS10X I2S PLL clock
0002
0003 This binding uses the common clock binding[1].
0004
0005 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
0006
0007 Required properties:
0008 - compatible: shall be "snps,axs10x-i2s-pll-clock"
0009 - reg : address and length of the I2S PLL register set.
0010 - clocks: shall be the input parent clock phandle for the PLL.
0011 - #clock-cells: from common clock binding; Should always be set to 0.
0012
0013 Example:
0014 pll_clock: pll_clock {
0015 compatible = "fixed-clock";
0016 clock-frequency = <27000000>;
0017 #clock-cells = <0>;
0018 };
0019
0020 i2s_clock@100a0 {
0021 compatible = "snps,axs10x-i2s-pll-clock";
0022 reg = <0x100a0 0x10>;
0023 clocks = <&pll_clock>;
0024 #clock-cells = <0>;
0025 };