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

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: Add binding for Samsung S6E63J0X03 panel

The Samsung S6E63J0X03 is a 1.63" 320x320 AMOLED panel connected using
MIPI-DSI interfaces.

Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1499912443-3671-2-git-send-email-hoegeun.kwon@samsung.com

authored by

Hoegeun Kwon and committed by
Thierry Reding
a4e6f1c4 0e8841ec

+24
+24
Documentation/devicetree/bindings/display/panel/samsung,s6e63j0x03.txt
··· 1 + Samsung S6E63J0X03 1.63" 320x320 AMOLED panel (interface: MIPI-DSI command mode) 2 + 3 + Required properties: 4 + - compatible: "samsung,s6e63j0x03" 5 + - reg: the virtual channel number of a DSI peripheral 6 + - vdd3-supply: I/O voltage supply 7 + - vci-supply: voltage supply for analog circuits 8 + - reset-gpios: a GPIO spec for the reset pin (active low) 9 + - te-gpios: a GPIO spec for the tearing effect synchronization signal 10 + gpio pin (active high) 11 + 12 + Example: 13 + &dsi { 14 + ... 15 + 16 + panel@0 { 17 + compatible = "samsung,s6e63j0x03"; 18 + reg = <0>; 19 + vdd3-supply = <&ldo16_reg>; 20 + vci-supply = <&ldo20_reg>; 21 + reset-gpios = <&gpe0 1 GPIO_ACTIVE_LOW>; 22 + te-gpios = <&gpx0 6 GPIO_ACTIVE_HIGH>; 23 + }; 24 + };