]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - Documentation/devicetree/bindings/display/panel/simple-panel.txt
Merge tag 'drm-next-2018-11-02' of git://anongit.freedesktop.org/drm/drm
[mirror_ubuntu-eoan-kernel.git] / Documentation / devicetree / bindings / display / panel / simple-panel.txt
CommitLineData
d95f95eb 1Simple display panel
98ccf400
SP
2====================
3
4panel node
5----------
d95f95eb
TR
6
7Required properties:
2e7e2ebc 8- power-supply: See panel-common.txt
d95f95eb
TR
9
10Optional properties:
11- ddc-i2c-bus: phandle of an I2C controller used for DDC EDID probing
12- enable-gpios: GPIO pin to enable or disable the panel
13- backlight: phandle of the backlight device attached to the panel
cb028e49
DA
14- no-hpd: This panel is supposed to communicate that it's ready via HPD
15 (hot plug detect) signal, but the signal isn't hooked up so we should
16 hardcode the max delay from the panel spec when powering up the panel.
d95f95eb
TR
17
18Example:
19
20 panel: panel {
21 compatible = "cptt,claa101wb01";
22 ddc-i2c-bus = <&panelddc>;
23
24 power-supply = <&vdd_pnl_reg>;
25 enable-gpios = <&gpio 90 0>;
26
27 backlight = <&backlight>;
28 };