Commit 122b5f45 authored by Fabrice Gasnier's avatar Fabrice Gasnier Committed by Jonathan Cameron

Documentation: dt: iio: stm32-adc: optional dma support

STM32 ADC can use dma. Add dt documentation for optional dma support.
Signed-off-by: default avatarFabrice Gasnier <fabrice.gasnier@st.com>
Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 732f2dc4
...@@ -53,6 +53,11 @@ Required properties: ...@@ -53,6 +53,11 @@ Required properties:
- #io-channel-cells = <1>: See the IIO bindings section "IIO consumers" in - #io-channel-cells = <1>: See the IIO bindings section "IIO consumers" in
Documentation/devicetree/bindings/iio/iio-bindings.txt Documentation/devicetree/bindings/iio/iio-bindings.txt
Optional properties:
- dmas: Phandle to dma channel for this ADC instance.
See ../../dma/dma.txt for details.
- dma-names: Must be "rx" when dmas property is being used.
Example: Example:
adc: adc@40012000 { adc: adc@40012000 {
compatible = "st,stm32f4-adc-core"; compatible = "st,stm32f4-adc-core";
...@@ -77,6 +82,8 @@ Example: ...@@ -77,6 +82,8 @@ Example:
interrupt-parent = <&adc>; interrupt-parent = <&adc>;
interrupts = <0>; interrupts = <0>;
st,adc-channels = <8>; st,adc-channels = <8>;
dmas = <&dma2 0 0 0x400 0x0>;
dma-names = "rx";
}; };
... ...
other adc child nodes follow... other adc child nodes follow...
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment