Skip to content
Snippets Groups Projects
Commit 2302fd32 authored by Dirk Eibach's avatar Dirk Eibach Committed by Tom Rini
Browse files

board: gdsys: Increase DP501 I2C retry interval


With Club 3D dual link adapter there are AUX-channel timeouts
when EDID is read. Increasing retry interval time to max (400us)
fixes this.

Signed-off-by: default avatarDirk Eibach <dirk.eibach@gdsys.cc>
Reviewed-by: default avatarHeiko Schocher <hs@denx.de>
parent 0caad193
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,8 @@ void dp501_powerup(u8 addr)
dp501_setbits(addr, 0x78, 0x03); /* clear all interrupt */
i2c_reg_write(addr, 0x75, 0xf8); /* aux channel reset */
i2c_reg_write(addr, 0x75, 0x00); /* clear aux channel reset */
i2c_reg_write(addr, 0x87, 0x70); /* set retry counter as 7 */
i2c_reg_write(addr, 0x87, 0x7f); /* set retry counter as 7
retry interval 400us */
if (dp501_detect_cable_adapter(addr)) {
printf("DVI/HDMI cable adapter detected\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment