xref: /freebsd/sys/contrib/device-tree/Bindings/clock/axs10x-i2s-pll-clock.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel VadotBinding for the AXS10X I2S PLL clock
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotThis binding uses the common clock binding[1].
4*c66ec88fSEmmanuel Vadot
5*c66ec88fSEmmanuel Vadot[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
6*c66ec88fSEmmanuel Vadot
7*c66ec88fSEmmanuel VadotRequired properties:
8*c66ec88fSEmmanuel Vadot- compatible: shall be "snps,axs10x-i2s-pll-clock"
9*c66ec88fSEmmanuel Vadot- reg : address and length of the I2S PLL register set.
10*c66ec88fSEmmanuel Vadot- clocks: shall be the input parent clock phandle for the PLL.
11*c66ec88fSEmmanuel Vadot- #clock-cells: from common clock binding; Should always be set to 0.
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel VadotExample:
14*c66ec88fSEmmanuel Vadot	pll_clock: pll_clock {
15*c66ec88fSEmmanuel Vadot		compatible = "fixed-clock";
16*c66ec88fSEmmanuel Vadot		clock-frequency = <27000000>;
17*c66ec88fSEmmanuel Vadot		#clock-cells = <0>;
18*c66ec88fSEmmanuel Vadot	};
19*c66ec88fSEmmanuel Vadot
20*c66ec88fSEmmanuel Vadot	i2s_clock@100a0 {
21*c66ec88fSEmmanuel Vadot		compatible = "snps,axs10x-i2s-pll-clock";
22*c66ec88fSEmmanuel Vadot		reg = <0x100a0 0x10>;
23*c66ec88fSEmmanuel Vadot		clocks = <&pll_clock>;
24*c66ec88fSEmmanuel Vadot		#clock-cells = <0>;
25*c66ec88fSEmmanuel Vadot	};
26