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

dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description

This commit adds documentation entry description for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190515160428.6114-1-lukma@denx.de

authored by

Lukasz Majewski and committed by
Sam Ravnborg
acfb0b85 c479450f

+42
+42
Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
··· 1 + Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x 240) TFT LCD panel 2 + 3 + Required properties: 4 + - compatible: should be "koe,tx14d24vm1bpa" 5 + - backlight: phandle of the backlight device attached to the panel 6 + - power-supply: single regulator to provide the supply voltage 7 + 8 + Required nodes: 9 + - port: Parallel port mapping to connect this display 10 + 11 + This panel needs single power supply voltage. Its backlight is conntrolled 12 + via PWM signal. 13 + 14 + Example: 15 + -------- 16 + 17 + Example device-tree definition when connected to iMX53 based board 18 + 19 + lcd_panel: lcd-panel { 20 + compatible = "koe,tx14d24vm1bpa"; 21 + backlight = <&backlight_lcd>; 22 + power-supply = <&reg_3v3>; 23 + 24 + port { 25 + lcd_panel_in: endpoint { 26 + remote-endpoint = <&lcd_display_out>; 27 + }; 28 + }; 29 + }; 30 + 31 + Then one needs to extend the dispX node: 32 + 33 + lcd_display: disp1 { 34 + 35 + port@1 { 36 + reg = <1>; 37 + 38 + lcd_display_out: endpoint { 39 + remote-endpoint = <&lcd_panel_in>; 40 + }; 41 + }; 42 + };