GNU Linux-libre 4.19.286-gnu1
[releases.git] / Documentation / devicetree / bindings / display / panel / simple-panel.txt
1 Simple display panel
2 ====================
3
4 panel node
5 ----------
6
7 Required properties:
8 - power-supply: See panel-common.txt
9
10 Optional 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
14
15 Example:
16
17         panel: panel {
18                 compatible = "cptt,claa101wb01";
19                 ddc-i2c-bus = <&panelddc>;
20
21                 power-supply = <&vdd_pnl_reg>;
22                 enable-gpios = <&gpio 90 0>;
23
24                 backlight = <&backlight>;
25         };