summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kochmanski <dkochmanski@antmicro.com>2014-08-27 09:18:42 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2014-09-03 20:40:13 +0200
commitc01abf867b046ef141d670bb815c6b73376625d4 (patch)
tree77299e33cd784ef8c324df4c4c29c3ff4121cd84
parenta046fb00aa2b3611c571034dbb03ab39f186f982 (diff)
mxc_hdmi: skip unnecessary mxc_hdmi_setup calls
-rw-r--r--drivers/video/mxc/mxc_hdmi.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/video/mxc/mxc_hdmi.c b/drivers/video/mxc/mxc_hdmi.c
index cefff2f7a1d1..75825092b731 100644
--- a/drivers/video/mxc/mxc_hdmi.c
+++ b/drivers/video/mxc/mxc_hdmi.c
@@ -177,6 +177,7 @@ struct mxc_hdmi {
spinlock_t irq_lock;
bool phy_enabled;
struct fb_videomode default_mode;
+ struct fb_videomode previous_mode;
struct fb_videomode previous_non_vga_mode;
bool requesting_vga_for_initialization;
@@ -2140,6 +2141,9 @@ static void mxc_hdmi_setup(struct mxc_hdmi *hdmi, unsigned long event)
dev_dbg(&hdmi->pdev->dev, "%s - video mode changed\n", __func__);
+ /* Save mode as 'previous_mode' so that we can know if mode changed. */
+ memcpy(&hdmi->previous_mode, &m, sizeof(struct fb_videomode));
+
hdmi->vic = 0;
if (!hdmi->requesting_vga_for_initialization) {
/* Save mode if this isn't the result of requesting
@@ -2279,6 +2283,7 @@ static int mxc_hdmi_fb_event(struct notifier_block *nb,
{
struct fb_event *event = v;
struct mxc_hdmi *hdmi = container_of(nb, struct mxc_hdmi, nb);
+ struct fb_videomode *mode;
if (strcmp(event->info->fix.id, hdmi->fbi->fix.id))
return 0;
@@ -2298,7 +2303,10 @@ static int mxc_hdmi_fb_event(struct notifier_block *nb,
case FB_EVENT_MODE_CHANGE:
dev_dbg(&hdmi->pdev->dev, "event=FB_EVENT_MODE_CHANGE\n");
- if (hdmi->fb_reg)
+ mode = (struct fb_videomode *)event->data;
+ if ((hdmi->fb_reg) &&
+ (mode != NULL) &&
+ !fb_mode_is_equal(&hdmi->previous_mode, mode))
mxc_hdmi_setup(hdmi, val);
break;