Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: display: Add Sitronix ST7701 panel documentation

Techstar TS8550B MIPI DSI panel is 480x854, 2-lane MIPI DSI LCD panel
with inbuilt ST7701 chip.

The default regulator names in ST7701 chip is renamed in Techstar TS8550B
so, add specific binding names for them.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190124215131.17452-1-jagan@amarulasolutions.com

authored by

Jagan Teki and committed by
Thierry Reding
24de022b b5f030b7

+30
+30
Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
··· 1 + Sitronix ST7701 based LCD panels 2 + 3 + ST7701 designed for small and medium sizes of TFT LCD display, is 4 + capable of supporting up to 480RGBX864 in resolution. It provides 5 + several system interfaces like MIPI/RGB/SPI. 6 + 7 + Techstar TS8550B is 480x854, 2-lane MIPI DSI LCD panel which has 8 + inbuilt ST7701 chip. 9 + 10 + Required properties: 11 + - compatible: must be "sitronix,st7701" and one of 12 + * "techstar,ts8550b" 13 + - reset-gpios: a GPIO phandle for the reset pin 14 + 15 + Required properties for techstar,ts8550b: 16 + - reg: DSI virtual channel used by that screen 17 + - VCC-supply: analog regulator for MIPI circuit 18 + - IOVCC-supply: I/O system regulator 19 + 20 + Optional properties: 21 + - backlight: phandle for the backlight control. 22 + 23 + panel@0 { 24 + compatible = "techstar,ts8550b", "sitronix,st7701"; 25 + reg = <0>; 26 + VCC-supply = <&reg_dldo2>; 27 + IOVCC-supply = <&reg_dldo2>; 28 + reset-gpios = <&pio 3 24 GPIO_ACTIVE_HIGH>; /* LCD-RST: PD24 */ 29 + backlight = <&backlight>; 30 + };