diff options
author | Sebastian Reichel <sre@debian.org> | 2014-03-15 21:43:30 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-03-18 04:16:03 -0400 |
commit | 1e1bce3956ab888d1627080eb85c5019f2adf955 (patch) | |
tree | 075f7bcc6afd5ca6a07788b7a4b346235364a32b /Documentation/devicetree/bindings/iio | |
parent | 168ae30802368deadccaa8a8e85057efbae22975 (diff) |
Documentation: DT: Document twl4030-madc binding
Add devicetree binding documentation for twl4030-madc
analog digital converter.
Signed-off-by: Sebastian Reichel <sre@debian.org>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/iio')
-rw-r--r-- | Documentation/devicetree/bindings/iio/adc/twl4030-madc.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/adc/twl4030-madc.txt b/Documentation/devicetree/bindings/iio/adc/twl4030-madc.txt new file mode 100644 index 000000000000..6bdd21404b57 --- /dev/null +++ b/Documentation/devicetree/bindings/iio/adc/twl4030-madc.txt | |||
@@ -0,0 +1,24 @@ | |||
1 | * TWL4030 Monitoring Analog to Digital Converter (MADC) | ||
2 | |||
3 | The MADC subsystem in the TWL4030 consists of a 10-bit ADC | ||
4 | combined with a 16-input analog multiplexer. | ||
5 | |||
6 | Required properties: | ||
7 | - compatible: Should contain "ti,twl4030-madc". | ||
8 | - interrupts: IRQ line for the MADC submodule. | ||
9 | - #io-channel-cells: Should be set to <1>. | ||
10 | |||
11 | Optional properties: | ||
12 | - ti,system-uses-second-madc-irq: boolean, set if the second madc irq register | ||
13 | should be used, which is intended to be used | ||
14 | by Co-Processors (e.g. a modem). | ||
15 | |||
16 | Example: | ||
17 | |||
18 | &twl { | ||
19 | madc { | ||
20 | compatible = "ti,twl4030-madc"; | ||
21 | interrupts = <3>; | ||
22 | #io-channel-cells = <1>; | ||
23 | }; | ||
24 | }; | ||