mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
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>
22 lines
503 B
Plaintext
22 lines
503 B
Plaintext
Simple display panel
|
|
|
|
Required properties:
|
|
- power-supply: regulator to provide the supply voltage
|
|
|
|
Optional properties:
|
|
- ddc-i2c-bus: phandle of an I2C controller used for DDC EDID probing
|
|
- enable-gpios: GPIO pin to enable or disable the panel
|
|
- backlight: phandle of the backlight device attached to the panel
|
|
|
|
Example:
|
|
|
|
panel: panel {
|
|
compatible = "cptt,claa101wb01";
|
|
ddc-i2c-bus = <&panelddc>;
|
|
|
|
power-supply = <&vdd_pnl_reg>;
|
|
enable-gpios = <&gpio 90 0>;
|
|
|
|
backlight = <&backlight>;
|
|
};
|