mirror of
https://github.com/torvalds/linux.git
synced 2026-04-24 17:42:27 -04:00
Some examples were missing the unit names triggering Warning (unit_address_vs_reg): .../panel: node has a reg or ranges property, but no unit name warnings when used verbatim in DTs and running dtc with W=1. Signed-off-by: Guido Günther <agx@sigxcpu.org> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://patchwork.freedesktop.org/patch/msgid/901e836ea06889a9d91a799102b2a6b836d93dcd.1553529797.git.agx@sigxcpu.org
23 lines
547 B
Plaintext
23 lines
547 B
Plaintext
Innolux P079ZCA 7.85" 768x1024 TFT LCD panel
|
|
|
|
Required properties:
|
|
- compatible: should be "innolux,p079zca"
|
|
- reg: DSI virtual channel of the peripheral
|
|
- power-supply: phandle of the regulator that provides the supply voltage
|
|
- enable-gpios: panel enable gpio
|
|
|
|
Optional properties:
|
|
- backlight: phandle of the backlight device attached to the panel
|
|
|
|
Example:
|
|
|
|
&mipi_dsi {
|
|
panel@0 {
|
|
compatible = "innolux,p079zca";
|
|
reg = <0>;
|
|
power-supply = <...>;
|
|
backlight = <&backlight>;
|
|
enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|