xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/dac/vf610-dac.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunFreescale vf610 Digital to Analog Converter bindings
2*4882a593Smuzhiyun
3*4882a593SmuzhiyunThe devicetree bindings are for the new DAC driver written for
4*4882a593Smuzhiyunvf610 SoCs from Freescale.
5*4882a593Smuzhiyun
6*4882a593SmuzhiyunRequired properties:
7*4882a593Smuzhiyun- compatible: Should contain "fsl,vf610-dac"
8*4882a593Smuzhiyun- reg: Offset and length of the register set for the device
9*4882a593Smuzhiyun- interrupts: Should contain the interrupt for the device
10*4882a593Smuzhiyun- clocks: The clock is needed by the DAC controller
11*4882a593Smuzhiyun- clock-names: Must contain "dac" matching entry in the clocks property.
12*4882a593Smuzhiyun
13*4882a593SmuzhiyunExample:
14*4882a593Smuzhiyundac0: dac@400cc000 {
15*4882a593Smuzhiyun	compatible = "fsl,vf610-dac";
16*4882a593Smuzhiyun	reg = <0x400cc000 0x1000>;
17*4882a593Smuzhiyun	interrupts = <55 IRQ_TYPE_LEVEL_HIGH>;
18*4882a593Smuzhiyun	clock-names = "dac";
19*4882a593Smuzhiyun	clocks = <&clks VF610_CLK_DAC0>;
20*4882a593Smuzhiyun};
21