Skip to content

Commit 24cf232

Browse files
aford173tmlind
authored andcommitted
ARM: dts: am3517-evm: Fix missing video
A previous commit removed the panel-dpi driver, which made the video on the AM3517-evm stop working because it relied on the dpi driver for setting video timings. Now that the simple-panel driver is available in omap2plus, this patch migrates the am3517-evm to use a similar panel and remove the manual timing requirements. Fixes: 8bf4b16 ("drm/omap: Remove panel-dpi driver") Signed-off-by: Adam Ford <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
1 parent f9f5518 commit 24cf232

File tree

1 file changed

+4
-19
lines changed

1 file changed

+4
-19
lines changed

arch/arm/boot/dts/am3517-evm.dts

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,11 @@
124124
};
125125

126126
lcd0: display@0 {
127-
compatible = "panel-dpi";
127+
/* This isn't the exact LCD, but the timings meet spec */
128+
/* To make it work, set CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=4 */
129+
compatible = "newhaven,nhd-4.3-480272ef-atxl";
128130
label = "15";
129-
status = "okay";
130-
pinctrl-names = "default";
131+
backlight = <&bl>;
131132
enable-gpios = <&gpio6 16 GPIO_ACTIVE_HIGH>; /* gpio176, lcd INI */
132133
vcc-supply = <&vdd_io_reg>;
133134

@@ -136,22 +137,6 @@
136137
remote-endpoint = <&dpi_out>;
137138
};
138139
};
139-
140-
panel-timing {
141-
clock-frequency = <9000000>;
142-
hactive = <480>;
143-
vactive = <272>;
144-
hfront-porch = <3>;
145-
hback-porch = <2>;
146-
hsync-len = <42>;
147-
vback-porch = <3>;
148-
vfront-porch = <4>;
149-
vsync-len = <11>;
150-
hsync-active = <0>;
151-
vsync-active = <0>;
152-
de-active = <1>;
153-
pixelclk-active = <1>;
154-
};
155140
};
156141

157142
bl: backlight {

0 commit comments

Comments
 (0)