forked from Minki/linux
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
504 B
Plaintext
30 lines
504 B
Plaintext
Generic MIPI DSI Command Mode Panel
|
|
===================================
|
|
|
|
Required properties:
|
|
- compatible: "panel-dsi-cm"
|
|
|
|
Optional properties:
|
|
- label: a symbolic name for the panel
|
|
- reset-gpios: panel reset gpio
|
|
- te-gpios: panel TE gpio
|
|
|
|
Required nodes:
|
|
- Video port for DSI input
|
|
|
|
Example
|
|
-------
|
|
|
|
lcd0: display {
|
|
compatible = "tpo,taal", "panel-dsi-cm";
|
|
label = "lcd0";
|
|
|
|
reset-gpios = <&gpio4 6 GPIO_ACTIVE_HIGH>;
|
|
|
|
port {
|
|
lcd0_in: endpoint {
|
|
remote-endpoint = <&dsi1_out_ep>;
|
|
};
|
|
};
|
|
};
|