Linux 4.1.18
[linux/fpc-iii.git] / Documentation / devicetree / bindings / iio / adc / vf610-adc.txt
blob1a4a43d5c9ea5a80b1676e61c45f2ae1fe783bae
1 Freescale vf610 Analog to Digital Converter bindings
3 The devicetree bindings are for the new ADC driver written for
4 vf610/i.MX6slx and upward SoCs from Freescale.
6 Required properties:
7 - compatible: Should contain "fsl,vf610-adc"
8 - reg: Offset and length of the register set for the device
9 - interrupts: Should contain the interrupt for the device
10 - clocks: The clock is needed by the ADC controller, ADC clock source is ipg clock.
11 - clock-names: Must contain "adc", matching entry in the clocks property.
12 - vref-supply: The regulator supply ADC reference voltage.
14 Example:
15 adc0: adc@4003b000 {
16         compatible = "fsl,vf610-adc";
17         reg = <0x4003b000 0x1000>;
18         interrupts = <0 53 0x04>;
19         clocks = <&clks VF610_CLK_ADC0>;
20         clock-names = "adc";
21         vref-supply = <&reg_vcc_3v3_mcu>;