-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc/DT: Add DT binding documentation for SHARP LS037V7DW01
Add DT binding documentation for SHARP LS037V7DW01 panel. Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: devicetree@vger.kernel.org
- Loading branch information
Tony Lindgren
authored and
Tomi Valkeinen
committed
May 20, 2014
1 parent
be88c16
commit 8a46558
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
Documentation/devicetree/bindings/video/sharp,ls037v7dw01.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
SHARP LS037V7DW01 TFT-LCD panel | ||
=================================== | ||
|
||
Required properties: | ||
- compatible: "sharp,ls037v7dw01" | ||
|
||
Optional properties: | ||
- label: a symbolic name for the panel | ||
- enable-gpios: a GPIO spec for the optional enable pin. | ||
This pin is the INI pin as specified in the LS037V7DW01.pdf file. | ||
- reset-gpios: a GPIO spec for the optional reset pin. | ||
This pin is the RESB pin as specified in the LS037V7DW01.pdf file. | ||
- mode-gpios: a GPIO | ||
ordered MO, LR, and UD as specified in the LS037V7DW01.pdf file. | ||
|
||
Required nodes: | ||
- Video port for DPI input | ||
|
||
This panel can have zero to five GPIOs to configure to change configuration | ||
between QVGA and VGA mode and the scan direction. As these pins can be also | ||
configured with external pulls, all the GPIOs are considered optional with holes | ||
in the array. | ||
|
||
Example | ||
------- | ||
|
||
Example when connected to a omap2+ based device: | ||
|
||
lcd0: display { | ||
compatible = "sharp,ls037v7dw01"; | ||
power-supply = <&lcd_3v3>; | ||
enable-gpios = <&gpio5 24 GPIO_ACTIVE_HIGH>; /* gpio152, lcd INI */ | ||
reset-gpios = <&gpio5 27 GPIO_ACTIVE_HIGH>; /* gpio155, lcd RESB */ | ||
mode-gpios = <&gpio5 26 GPIO_ACTIVE_HIGH /* gpio154, lcd MO */ | ||
&gpio1 2 GPIO_ACTIVE_HIGH /* gpio2, lcd LR */ | ||
&gpio1 3 GPIO_ACTIVE_HIGH>; /* gpio3, lcd UD */ | ||
|
||
port { | ||
lcd_in: endpoint { | ||
remote-endpoint = <&dpi_out>; | ||
}; | ||
}; | ||
}; |