How to eliminate MIPI DSI UI transition flicker on MX6?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

How to eliminate MIPI DSI UI transition flicker on MX6?

跳至解决方案
1,979 次查看
raymondwang
Senior Contributor I

Recently I am debugging a MIPI DSI panel based on OTM9605A, Everything seems ok in uboot and kernel stage. But a little

problem annoyed me several days that flick when UI transition from bootloader to linux kernel.

I know I have enabled MIPI clock in clock.c

   ccgr3 |= 3 << MXC_CCM_CCGRx_CG8_OFFSET;

Any one encountered similar issue?

标签 (4)
标记 (1)
0 项奖励
回复
1 解答
1,422 次查看
raymondwang
Senior Contributor I

Issue resolved.

in clock.c pll3_pdf_540M and ipu1 clock was changed. Just comment out following lines for MX6DL

clk_set_rate(&pll3_pfd_540M, 540000000);

clk_set_parent(&ipu1_clk, &pll3_pfd_540M);

  Because in bootloader these clocks are enabled and used by MIPI panel. Re-enable or change will

cause panel flicking.

在原帖中查看解决方案

0 项奖励
回复
1 回复
1,423 次查看
raymondwang
Senior Contributor I

Issue resolved.

in clock.c pll3_pdf_540M and ipu1 clock was changed. Just comment out following lines for MX6DL

clk_set_rate(&pll3_pfd_540M, 540000000);

clk_set_parent(&ipu1_clk, &pll3_pfd_540M);

  Because in bootloader these clocks are enabled and used by MIPI panel. Re-enable or change will

cause panel flicking.

0 项奖励
回复