diff options
author | Jean-Francois Moine <moinejf@free.fr> | 2014-01-25 12:14:37 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-02-13 14:41:53 -0500 |
commit | 7c82e064ea7b64b986104260c300b370feef403a (patch) | |
tree | c0bff9dd57d87eaac49e6c4aaabc268735e25422 /Documentation | |
parent | 0d44ea190387e21a7e6f6d7c9dd44df2e85d007a (diff) |
drm/i2c: tda998x: add DT documentation
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/drm/i2c/tda998x.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/drm/i2c/tda998x.txt b/Documentation/devicetree/bindings/drm/i2c/tda998x.txt new file mode 100644 index 000000000000..d7df01c5bb3a --- /dev/null +++ b/Documentation/devicetree/bindings/drm/i2c/tda998x.txt | |||
@@ -0,0 +1,27 @@ | |||
1 | Device-Tree bindings for the NXP TDA998x HDMI transmitter | ||
2 | |||
3 | Required properties; | ||
4 | - compatible: must be "nxp,tda998x" | ||
5 | |||
6 | Optional properties: | ||
7 | - interrupts: interrupt number and trigger type | ||
8 | default: polling | ||
9 | |||
10 | - pinctrl-0: pin control group to be used for | ||
11 | screen plug/unplug interrupt. | ||
12 | |||
13 | - pinctrl-names: must contain a "default" entry. | ||
14 | |||
15 | - video-ports: 24 bits value which defines how the video controller | ||
16 | output is wired to the TDA998x input - default: <0x230145> | ||
17 | |||
18 | Example: | ||
19 | |||
20 | tda998x: hdmi-encoder { | ||
21 | compatible = "nxp,tda998x"; | ||
22 | reg = <0x70>; | ||
23 | interrupt-parent = <&gpio0>; | ||
24 | interrupts = <27 2>; /* falling edge */ | ||
25 | pinctrl-0 = <&pmx_camera>; | ||
26 | pinctrl-names = "default"; | ||
27 | }; | ||