mirror of
https://github.com/torvalds/linux.git
synced 2024-12-23 11:21:33 +00:00
bccfaffb76
This commit adds support for AUO's 7.0" display. Signed-off-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180514190849.18723-1-lukma@denx.de
30 lines
719 B
Plaintext
30 lines
719 B
Plaintext
AU Optronics Corporation 7.0" FHD (800 x 480) TFT LCD panel
|
|
|
|
Required properties:
|
|
- compatible: should be "auo,g070vvn01"
|
|
- backlight: phandle of the backlight device attached to the panel
|
|
- power-supply: single regulator to provide the supply voltage
|
|
|
|
Required nodes:
|
|
- port: Parallel port mapping to connect this display
|
|
|
|
This panel needs single power supply voltage. Its backlight is conntrolled
|
|
via PWM signal.
|
|
|
|
Example:
|
|
--------
|
|
|
|
Example device-tree definition when connected to iMX6Q based board
|
|
|
|
lcd_panel: lcd-panel {
|
|
compatible = "auo,g070vvn01";
|
|
backlight = <&backlight_lcd>;
|
|
power-supply = <®_display>;
|
|
|
|
port {
|
|
lcd_panel_in: endpoint {
|
|
remote-endpoint = <&lcd_display_out>;
|
|
};
|
|
};
|
|
};
|