diff options
Diffstat (limited to 'Documentation/devicetree/bindings/display/bridge/tda998x.txt')
-rw-r--r-- | Documentation/devicetree/bindings/display/bridge/tda998x.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/bridge/tda998x.txt b/Documentation/devicetree/bindings/display/bridge/tda998x.txt new file mode 100644 index 000000000000..e9e4bce40760 --- /dev/null +++ b/Documentation/devicetree/bindings/display/bridge/tda998x.txt | |||
@@ -0,0 +1,29 @@ | |||
1 | Device-Tree bindings for the NXP TDA998x HDMI transmitter | ||
2 | |||
3 | Required properties; | ||
4 | - compatible: must be "nxp,tda998x" | ||
5 | |||
6 | - reg: I2C address | ||
7 | |||
8 | Optional properties: | ||
9 | - interrupts: interrupt number and trigger type | ||
10 | default: polling | ||
11 | |||
12 | - pinctrl-0: pin control group to be used for | ||
13 | screen plug/unplug interrupt. | ||
14 | |||
15 | - pinctrl-names: must contain a "default" entry. | ||
16 | |||
17 | - video-ports: 24 bits value which defines how the video controller | ||
18 | output is wired to the TDA998x input - default: <0x230145> | ||
19 | |||
20 | Example: | ||
21 | |||
22 | tda998x: hdmi-encoder { | ||
23 | compatible = "nxp,tda998x"; | ||
24 | reg = <0x70>; | ||
25 | interrupt-parent = <&gpio0>; | ||
26 | interrupts = <27 2>; /* falling edge */ | ||
27 | pinctrl-0 = <&pmx_camera>; | ||
28 | pinctrl-names = "default"; | ||
29 | }; | ||