Merge tag 'tegra-for-4.8-i2c' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra...
[cascardo/linux.git] / Documentation / devicetree / bindings / iio / adc / max1363.txt
1 * Maxim 1x3x/136x/116xx Analog to Digital Converter (ADC)
2
3 The node for this driver must be a child node of a I2C controller, hence
4 all mandatory properties for your controller must be specified. See directory:
5
6         Documentation/devicetree/bindings/i2c
7
8 for more details.
9
10 Required properties:
11   - compatible: Should be one of
12                 "maxim,max1361"
13                 "maxim,max1362"
14                 "maxim,max1363"
15                 "maxim,max1364"
16                 "maxim,max1036"
17                 "maxim,max1037"
18                 "maxim,max1038"
19                 "maxim,max1039"
20                 "maxim,max1136"
21                 "maxim,max1137"
22                 "maxim,max1138"
23                 "maxim,max1139"
24                 "maxim,max1236"
25                 "maxim,max1237"
26                 "maxim,max1238"
27                 "maxim,max1239"
28                 "maxim,max11600"
29                 "maxim,max11601"
30                 "maxim,max11602"
31                 "maxim,max11603"
32                 "maxim,max11604"
33                 "maxim,max11605"
34                 "maxim,max11606"
35                 "maxim,max11607"
36                 "maxim,max11608"
37                 "maxim,max11609"
38                 "maxim,max11610"
39                 "maxim,max11611"
40                 "maxim,max11612"
41                 "maxim,max11613"
42                 "maxim,max11614"
43                 "maxim,max11615"
44                 "maxim,max11616"
45                 "maxim,max11617"
46                 "maxim,max11644"
47                 "maxim,max11645"
48                 "maxim,max11646"
49                 "maxim,max11647"
50   - reg: Should contain the ADC I2C address
51
52 Optional properties:
53   - vcc-supply: phandle to the regulator that provides power to the ADC.
54   - vref-supply: phandle to the regulator for ADC reference voltage.
55   - interrupts: IRQ line for the ADC. If not used the driver will use
56     polling.
57
58 Example:
59 adc: max11644@36 {
60         compatible = "maxim,max11644";
61         reg = <0x36>;
62         vref-supply = <&adc_vref>;
63 };