]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/display/panel/simple-panel.txt
e2308c3414d9e213059a19d00e84d4ae33a6aa02
[karo-tx-linux.git] / Documentation / devicetree / bindings / display / panel / simple-panel.txt
1 Simple display panel
2
3 Required properties:
4 - power-supply: regulator to provide the supply voltage
5
6 Optional properties:
7 - ddc-i2c-bus: phandle of an I2C controller used for DDC EDID probing
8 - enable-gpios: GPIO pin to enable or disable the panel
9 - backlight: phandle of the backlight device attached to the panel
10 - bus-format-override: override the bus_format setting of the panel's
11   display_mode settings
12
13 Example:
14
15         panel: panel {
16                 compatible = "cptt,claa101wb01";
17                 ddc-i2c-bus = <&panelddc>;
18
19                 power-supply = <&vdd_pnl_reg>;
20                 enable-gpios = <&gpio 90 0>;
21
22                 backlight = <&backlight>;
23         };