diff options
author | Sebastian Reichel <sre@kernel.org> | 2014-11-10 15:34:42 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-11-14 15:10:46 -0500 |
commit | 5325d844fdae416993c41271a6460fd1c81c6172 (patch) | |
tree | a56cc15e19bd9da51cd03c4cd6039be94b338f66 | |
parent | 98bea620c7ff301f9a7a6c31b2aca30964aa2fab (diff) |
[media] si4713: add DT binding documentation
This patch adds the DT bindings documentation for Silicon Labs Si4713 FM
radio transmitter.
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r-- | Documentation/devicetree/bindings/media/si4713.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/media/si4713.txt b/Documentation/devicetree/bindings/media/si4713.txt new file mode 100644 index 000000000000..5ee5552d3465 --- /dev/null +++ b/Documentation/devicetree/bindings/media/si4713.txt | |||
@@ -0,0 +1,30 @@ | |||
1 | * Silicon Labs FM Radio transmitter | ||
2 | |||
3 | The Silicon Labs Si4713 is an FM radio transmitter with receive power scan | ||
4 | supporting 76-108 MHz. It includes an RDS encoder and has both, a stereo-analog | ||
5 | and a digital interface, which supports I2S, left-justified and a custom | ||
6 | DSP-mode format. It is programmable through an I2C interface. | ||
7 | |||
8 | Required Properties: | ||
9 | - compatible: Should contain "silabs,si4713" | ||
10 | - reg: the I2C address of the device | ||
11 | |||
12 | Optional Properties: | ||
13 | - interrupts-extended: Interrupt specifier for the chips interrupt | ||
14 | - reset-gpios: GPIO specifier for the chips reset line | ||
15 | - vdd-supply: phandle for Vdd regulator | ||
16 | - vio-supply: phandle for Vio regulator | ||
17 | |||
18 | Example: | ||
19 | |||
20 | &i2c2 { | ||
21 | fmtx: si4713@63 { | ||
22 | compatible = "silabs,si4713"; | ||
23 | reg = <0x63>; | ||
24 | |||
25 | interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */ | ||
26 | reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */ | ||
27 | vio-supply = <&vio>; | ||
28 | vdd-supply = <&vaux1>; | ||
29 | }; | ||
30 | }; | ||