mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
video: s3c-fb: Hold runtime PM references when touching registers
Take a runtime PM reference whenever updating registers in preparation for suspending the device when the framebuffer is blanked. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
This commit is contained in:
parent
f4f514734e
commit
5751b23efb
1 changed files with 22 additions and 0 deletions
|
@ -496,6 +496,8 @@ static int s3c_fb_set_par(struct fb_info *info)
|
||||||
|
|
||||||
dev_dbg(sfb->dev, "setting framebuffer parameters\n");
|
dev_dbg(sfb->dev, "setting framebuffer parameters\n");
|
||||||
|
|
||||||
|
pm_runtime_get_sync(sfb->dev);
|
||||||
|
|
||||||
shadow_protect_win(win, 1);
|
shadow_protect_win(win, 1);
|
||||||
|
|
||||||
switch (var->bits_per_pixel) {
|
switch (var->bits_per_pixel) {
|
||||||
|
@ -692,6 +694,8 @@ static int s3c_fb_set_par(struct fb_info *info)
|
||||||
|
|
||||||
shadow_protect_win(win, 0);
|
shadow_protect_win(win, 0);
|
||||||
|
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -763,6 +767,8 @@ static int s3c_fb_setcolreg(unsigned regno,
|
||||||
dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
|
dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
|
||||||
__func__, win->index, regno, red, green, blue);
|
__func__, win->index, regno, red, green, blue);
|
||||||
|
|
||||||
|
pm_runtime_get_sync(sfb->dev);
|
||||||
|
|
||||||
switch (info->fix.visual) {
|
switch (info->fix.visual) {
|
||||||
case FB_VISUAL_TRUECOLOR:
|
case FB_VISUAL_TRUECOLOR:
|
||||||
/* true-colour, use pseudo-palette */
|
/* true-colour, use pseudo-palette */
|
||||||
|
@ -790,9 +796,11 @@ static int s3c_fb_setcolreg(unsigned regno,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
return 1; /* unknown type */
|
return 1; /* unknown type */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -812,6 +820,8 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
|
||||||
|
|
||||||
dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
|
dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
|
||||||
|
|
||||||
|
pm_runtime_get_sync(sfb->dev);
|
||||||
|
|
||||||
wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
|
wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
|
||||||
|
|
||||||
switch (blank_mode) {
|
switch (blank_mode) {
|
||||||
|
@ -839,6 +849,7 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
|
||||||
case FB_BLANK_VSYNC_SUSPEND:
|
case FB_BLANK_VSYNC_SUSPEND:
|
||||||
case FB_BLANK_HSYNC_SUSPEND:
|
case FB_BLANK_HSYNC_SUSPEND:
|
||||||
default:
|
default:
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -869,6 +880,8 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
|
||||||
shadow_protect_win(win, 0);
|
shadow_protect_win(win, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -891,6 +904,8 @@ static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
|
||||||
void __iomem *buf = sfb->regs + win->index * 8;
|
void __iomem *buf = sfb->regs + win->index * 8;
|
||||||
unsigned int start_boff, end_boff;
|
unsigned int start_boff, end_boff;
|
||||||
|
|
||||||
|
pm_runtime_get_sync(sfb->dev);
|
||||||
|
|
||||||
/* Offset in bytes to the start of the displayed area */
|
/* Offset in bytes to the start of the displayed area */
|
||||||
start_boff = var->yoffset * info->fix.line_length;
|
start_boff = var->yoffset * info->fix.line_length;
|
||||||
/* X offset depends on the current bpp */
|
/* X offset depends on the current bpp */
|
||||||
|
@ -909,6 +924,7 @@ static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
dev_err(sfb->dev, "invalid bpp\n");
|
dev_err(sfb->dev, "invalid bpp\n");
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -924,6 +940,7 @@ static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
|
||||||
|
|
||||||
shadow_protect_win(win, 0);
|
shadow_protect_win(win, 0);
|
||||||
|
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1013,11 +1030,16 @@ static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
|
||||||
if (crtc != 0)
|
if (crtc != 0)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
pm_runtime_get_sync(sfb->dev);
|
||||||
|
|
||||||
count = sfb->vsync_info.count;
|
count = sfb->vsync_info.count;
|
||||||
s3c_fb_enable_irq(sfb);
|
s3c_fb_enable_irq(sfb);
|
||||||
ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
|
ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
|
||||||
count != sfb->vsync_info.count,
|
count != sfb->vsync_info.count,
|
||||||
msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
|
msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
|
||||||
|
|
||||||
|
pm_runtime_put_sync(sfb->dev);
|
||||||
|
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
return -ETIMEDOUT;
|
return -ETIMEDOUT;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue