mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 14:43:58 +08:00
efdbd7345f
This is a quite large renaming to consolidate display related bindings into a single "display" directory from various scattered locations of video, drm, gpu, fb, mipi, and panel. The prior location was somewhat based on the Linux driver location, but bindings should be independent of that. Signed-off-by: Rob Herring <robh@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Kumar Gala <galak@codeaurora.org>
30 lines
711 B
Plaintext
30 lines
711 B
Plaintext
Device-Tree bindings for the NXP TDA998x HDMI transmitter
|
|
|
|
Required properties;
|
|
- compatible: must be "nxp,tda998x"
|
|
|
|
- reg: I2C address
|
|
|
|
Optional properties:
|
|
- interrupts: interrupt number and trigger type
|
|
default: polling
|
|
|
|
- pinctrl-0: pin control group to be used for
|
|
screen plug/unplug interrupt.
|
|
|
|
- pinctrl-names: must contain a "default" entry.
|
|
|
|
- video-ports: 24 bits value which defines how the video controller
|
|
output is wired to the TDA998x input - default: <0x230145>
|
|
|
|
Example:
|
|
|
|
tda998x: hdmi-encoder {
|
|
compatible = "nxp,tda998x";
|
|
reg = <0x70>;
|
|
interrupt-parent = <&gpio0>;
|
|
interrupts = <27 2>; /* falling edge */
|
|
pinctrl-0 = <&pmx_camera>;
|
|
pinctrl-names = "default";
|
|
};
|