mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 08:44:02 -04:00
In preparation for a new subnode section in a follow-on patch, add explicit headings to the existings sections for simple-panel. Changes in v2: - Added Changes in v3: - None Cc: Doug Anderson <dianders@chromium.org> Cc: Eric Anholt <eric@anholt.net> Cc: Heiko Stuebner <heiko@sntech.de> Cc: Jeffy Chen <jeffy.chen@rock-chips.com> Cc: Rob Herring <robh+dt@kernel.org> Cc: Stéphane Marchesin <marcheu@chromium.org> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: devicetree@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Cc: linux-rockchip@lists.infradead.org Signed-off-by: Sean Paul <seanpaul@chromium.org> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180208174855.55620-3-seanpaul@chromium.org
26 lines
528 B
Plaintext
26 lines
528 B
Plaintext
Simple display panel
|
|
====================
|
|
|
|
panel node
|
|
----------
|
|
|
|
Required properties:
|
|
- power-supply: See panel-common.txt
|
|
|
|
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>;
|
|
};
|