From a6f72edcca16dbed1e345fe472df32f08f5548ca Mon Sep 17 00:00:00 2001 From: Chandan Uddaraju Date: Fri, 2 Mar 2012 16:51:57 -0800 Subject: [PATCH] msm_fb: Display: Change the VCO frequency range for 8960. The DSI PHY PLL is not stable for VCO frequency between 500 MHz to 600 MHz on 8960. Fix this issue by changing the VCO range from 500 Mhz - 1 GHz range to 600 MHz - 1.2 GHz range. CRs-fixed: 340956 Change-Id: If09ac96455e16c5c2ca219c74e7ee0c758d55851 Signed-off-by: Chandan Uddaraju --- drivers/video/msm/msm_dss_io_8960.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/msm/msm_dss_io_8960.c b/drivers/video/msm/msm_dss_io_8960.c index 0f40c771c3b..cb18ede13d8 100644 --- a/drivers/video/msm/msm_dss_io_8960.c +++ b/drivers/video/msm/msm_dss_io_8960.c @@ -329,7 +329,7 @@ int mipi_dsi_clk_div_config(uint8 bpp, uint8 lanes, } else if (rate < 250) { vco = rate * 4; div_ratio = 4; - } else if (rate < 500) { + } else if (rate < 600) { vco = rate * 2; div_ratio = 2; } else {