This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SN65DSI86 DP_PLL is not locked

Other Parts Discussed in Thread: SN65DSI86

SN65DSI86,sn65dsi86 DP_PLL is not locked,

HDMI_WriteI2C_Byte( 0x0A, 0x07);//set REFCLK_FREQ
HDMI_WriteI2C_Byte( 0x10, 0x26);//Single 4 DSI lanes
HDMI_WriteI2C_Byte( 0x12, 0x59);//set CHA_DSI_CLK_RANGE
//HDMI_WriteI2C_Byte( 0x5C, 0x01);//disable HPD input
HDMI_WriteI2C_Byte( 0x5A, 0x05);//enhanced framing and ASSR
HDMI_WriteI2C_Byte( 0x93, 0x20);//2 DP lanes no SSC
HDMI_WriteI2C_Byte( 0x94, 0x80);//HBR (2.7Gbps)
HDMI_WriteI2C_Byte( 0x0D, 0x01);//PLL ENABLE
value=HDMI_ReadI2C_Byte( 0x0D);
printf("\nvalue_0D......=%x\n",value);
mdelay(100);

//Verify PLL is locked
value=HDMI_ReadI2C_Byte( 0x0A);
printf("\nvalue_0A......=%x\n",value);
mdelay(100);
if((value & 0x80) != 0x80)
{
printf("mipi2edp: sn65dsi86 DP_PLL is not locked!\n");
continue;
}