mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
ARM: dts: am437x-sk-evm.dts: fix LCD timings
The lcd0 node for am437x-sk-evm.dts contains bad LCD timings, and while they seem to work with a quick test, doing for example blank/unblank will give you a black display. This patch updates the timings to the 'typical' values from the LCD spec sheet. Also, the compatible string is completely bogus, as "osddisplays,osd057T0559-34ts" is _not_ a 480x272 panel. The panel on the board is a newhaven one. Update the compatible string to reflect this. Note that this hasn't caused any issues, as the "panel-dpi" matches the driver. Cc: <stable@vger.kernel.org> # v3.17+ Tested-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
70fcaf921c
commit
d73f825e6e
1 changed files with 6 additions and 6 deletions
|
@ -100,7 +100,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
lcd0: display {
|
lcd0: display {
|
||||||
compatible = "osddisplays,osd057T0559-34ts", "panel-dpi";
|
compatible = "newhaven,nhd-4.3-480272ef-atxl", "panel-dpi";
|
||||||
label = "lcd";
|
label = "lcd";
|
||||||
|
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
|
@ -112,11 +112,11 @@
|
||||||
clock-frequency = <9000000>;
|
clock-frequency = <9000000>;
|
||||||
hactive = <480>;
|
hactive = <480>;
|
||||||
vactive = <272>;
|
vactive = <272>;
|
||||||
hfront-porch = <8>;
|
hfront-porch = <2>;
|
||||||
hback-porch = <43>;
|
hback-porch = <2>;
|
||||||
hsync-len = <4>;
|
hsync-len = <41>;
|
||||||
vback-porch = <12>;
|
vfront-porch = <2>;
|
||||||
vfront-porch = <4>;
|
vback-porch = <2>;
|
||||||
vsync-len = <10>;
|
vsync-len = <10>;
|
||||||
hsync-active = <0>;
|
hsync-active = <0>;
|
||||||
vsync-active = <0>;
|
vsync-active = <0>;
|
||||||
|
|
Loading…
Add table
Reference in a new issue