From: Sandor Yu Date: Mon, 27 Aug 2012 02:25:02 +0000 (+0800) Subject: ENGR00221444 HDMI: video mode wrong when bootup without HDMI cable X-Git-Tag: v3.0.35-fsl_4.1.0~696 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b6e8b9f36f044ac5e4713448dc8ade4a2d66d6a8;p=karo-tx-linux.git ENGR00221444 HDMI: video mode wrong when bootup without HDMI cable Bootup Android without HDMI cable plugin, then plugin HDMI cable, video mode in /sys/class/graphics/fb0/mode not same as actually HDMI work video mode. The root cause is in video mode point to one of video mode in original video modelist, but the modelist will be updated when HDMI cable plug to new monitor. If HDMI original worked video mode can work on new monitor, the HDMI and framebuffer will not updated, so HDMI actually work mode not same as /sys/class/graphics/fb0/mode Updated fbi mode pointer even if video mode no changed in case moselist is updated, the issue will fixed. Signed-off-by: Sandor Yu --- diff --git a/drivers/video/mxc_hdmi.c b/drivers/video/mxc_hdmi.c index d5f3b5dc3096..0144f7f2cc69 100644 --- a/drivers/video/mxc_hdmi.c +++ b/drivers/video/mxc_hdmi.c @@ -1655,6 +1655,8 @@ static void mxc_hdmi_set_mode(struct mxc_hdmi *hdmi) if (fb_mode_is_equal(&hdmi->previous_non_vga_mode, mode)) { dev_dbg(&hdmi->pdev->dev, "%s: Video mode same as previous\n", __func__); + /* update fbi mode in case modelist is updated */ + hdmi->fbi->mode = mode; mxc_hdmi_phy_init(hdmi); } else { dev_dbg(&hdmi->pdev->dev, "%s: New video mode\n", __func__);