diff options
author | Beniamino Galvani | 2014-11-18 17:22:33 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab | 2014-11-26 13:28:43 -0200 |
commit | 36cdfa76635b502c8c7bb7df695d7d5117eca7de (patch) | |
tree | dd43108cbadc0df91b20fb523d3d8e4de72dd323 | |
parent | d7c5925487d6352240be7ef1c4f3a02886688b4b (diff) |
[media] media: rc: meson: document device tree bindings
This adds binding documentation for the infrared remote control
receiver available in Amlogic Meson SoCs.
Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r-- | Documentation/devicetree/bindings/media/meson-ir.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/media/meson-ir.txt b/Documentation/devicetree/bindings/media/meson-ir.txt new file mode 100644 index 000000000000..407848e85f31 --- /dev/null +++ b/Documentation/devicetree/bindings/media/meson-ir.txt @@ -0,0 +1,14 @@ +* Amlogic Meson IR remote control receiver + +Required properties: + - compatible : should be "amlogic,meson6-ir" + - reg : physical base address and length of the device registers + - interrupts : a single specifier for the interrupt from the device + +Example: + + ir-receiver@c8100480 { + compatible= "amlogic,meson6-ir"; + reg = <0xc8100480 0x20>; + interrupts = <0 15 1>; + }; |