Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / bridge / tda998x.txt
blobe178e6b9f9ee1ace419d5c9ccd4bf27a64799116
1 Device-Tree bindings for the NXP TDA998x HDMI transmitter
3 Required properties;
4   - compatible: must be "nxp,tda998x"
6   - reg: I2C address
8 Required node:
9   - port: Input port node with endpoint definition, as described
10         in Documentation/devicetree/bindings/graph.txt
12 Optional properties:
13   - interrupts: interrupt number and trigger type
14         default: polling
16   - pinctrl-0: pin control group to be used for
17         screen plug/unplug interrupt.
19   - pinctrl-names: must contain a "default" entry.
21   - video-ports: 24 bits value which defines how the video controller
22         output is wired to the TDA998x input - default: <0x230145>
24 Example:
26         tda998x: hdmi-encoder {
27                 compatible = "nxp,tda998x";
28                 reg = <0x70>;
29                 interrupt-parent = <&gpio0>;
30                 interrupts = <27 2>;            /* falling edge */
31                 pinctrl-0 = <&pmx_camera>;
32                 pinctrl-names = "default";
33         };