aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/media/si470x.txt
diff options
context:
space:
mode:
authorPawe? Chmiel <pawel.mikolaj.chmiel@gmail.com>2018-12-07 11:58:12 -0200
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-01-21 15:36:53 -0200
commit9b4fce216f538f848a46183650f29603c1ecf4e6 (patch)
tree7cbdd59fbdfa01e28558b0d3a4d7a0632f6b82f9 /Documentation/devicetree/bindings/media/si470x.txt
parentmedia: si470x-i2c: Add optional reset-gpio support (diff)
downloadlinux-dev-9b4fce216f538f848a46183650f29603c1ecf4e6.tar.xz
linux-dev-9b4fce216f538f848a46183650f29603c1ecf4e6.zip
media: dt-bindings: Add binding for si470x radio
Add device tree bindings for si470x family radio receiver driver. Signed-off-by: Pawe? Chmiel <pawel.mikolaj.chmiel@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/media/si470x.txt')
-rw-r--r--Documentation/devicetree/bindings/media/si470x.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/media/si470x.txt b/Documentation/devicetree/bindings/media/si470x.txt
new file mode 100644
index 000000000000..a9403558362e
--- /dev/null
+++ b/Documentation/devicetree/bindings/media/si470x.txt
@@ -0,0 +1,26 @@
+* Silicon Labs FM Radio receiver
+
+The Silicon Labs Si470x is family of FM radio receivers with receive power scan
+supporting 76-108 MHz, programmable through an I2C interface.
+Some of them includes an RDS encoder.
+
+Required Properties:
+- compatible: Should contain "silabs,si470x"
+- reg: the I2C address of the device
+
+Optional Properties:
+- interrupts : The interrupt number
+- reset-gpios: GPIO specifier for the chips reset line
+
+Example:
+
+&i2c2 {
+ si470x@63 {
+ compatible = "silabs,si470x";
+ reg = <0x63>;
+
+ interrupt-parent = <&gpj2>;
+ interrupts = <4 IRQ_TYPE_EDGE_FALLING>;
+ reset-gpios = <&gpj2 5 GPIO_ACTIVE_HIGH>;
+ };
+};