summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/iio/adc/adc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dts/Bindings/iio/adc/adc.txt')
-rw-r--r--dts/Bindings/iio/adc/adc.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/dts/Bindings/iio/adc/adc.txt b/dts/Bindings/iio/adc/adc.txt
new file mode 100644
index 0000000000..5bbaa330a2
--- /dev/null
+++ b/dts/Bindings/iio/adc/adc.txt
@@ -0,0 +1,23 @@
+Common ADCs properties
+
+Optional properties for child nodes:
+- bipolar : Boolean, if set the channel is used in bipolar mode.
+- diff-channels : Differential channels muxed for this ADC. The first value
+ specifies the positive input pin, the second value the negative
+ input pin.
+
+Example:
+ adc@0 {
+ compatible = "some,adc";
+ ...
+ channel@0 {
+ bipolar;
+ diff-channels = <0 1>;
+ ...
+ };
+
+ channel@1 {
+ diff-channels = <2 3>;
+ ...
+ };
+ };