aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorDirk Eibach <eibach@gdsys.de>2011-03-21 12:59:36 -0400
committerJean Delvare <khali@endymion.delvare>2011-03-21 12:59:36 -0400
commit8c22a8f57516275afcd81c84f3724ac08cf6aa7b (patch)
tree9b3e0770466cf7edcb2d48f483cae79fa82bdfce /Documentation/devicetree
parenta98d506c08ffe754fa013c7f70c4d578b991fb4b (diff)
hwmon: Add support for Texas Instruments ADS1015
Signed-off-by: Dirk Eibach <eibach@gdsys.de> Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/hwmon/ads1015.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/hwmon/ads1015.txt b/Documentation/devicetree/bindings/hwmon/ads1015.txt
new file mode 100644
index 000000000000..0f30616384c5
--- /dev/null
+++ b/Documentation/devicetree/bindings/hwmon/ads1015.txt
@@ -0,0 +1,29 @@
1ADS1015 (I2C)
2
3This device is a 12-bit A-D converter with 4 inputs.
4
5The inputs can be used single ended or in certain differential combinations.
6
7For configuration all possible combinations are mapped to 8 channels:
80: Voltage over AIN0 and AIN1.
91: Voltage over AIN0 and AIN3.
102: Voltage over AIN1 and AIN3.
113: Voltage over AIN2 and AIN3.
124: Voltage over AIN0 and GND.
135: Voltage over AIN1 and GND.
146: Voltage over AIN2 and GND.
157: Voltage over AIN3 and GND.
16
17Optional properties:
18
19 - exported-channels : exported_channels is a bitmask that specifies which
20 channels should be accessable by the user.
21
22Example:
23ads1015@49 {
24 compatible = "ti,ads1015";
25 reg = <0x49>;
26 exported-channels = <0x14>;
27};
28
29In this example only channel 2 and 4 would be accessable by the user.