summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorAlison Wang <b18965@freescale.com>2012-12-11 15:36:08 +0800
committerEd Nash <enash@enash-desktop.(none)>2012-12-12 14:46:31 -0500
commit97bb163197f3dc3405af90b5159e0f6b8a302586 (patch)
tree2d4238dbfebf53162357551d46f43da5c6402e7d /drivers
parentefe491be15ead3bbcf7e715337fdee7dfa41f699 (diff)
ENGR00216076-2: DCU: Update DCU driver for PM and blending issue
Fix layers blending and reinitialization issue for DCU driver. Update power management part for DCU driver. Signed-off-by: Alison Wang <b18965@freescale.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/mvf_dcu.c47
1 files changed, 34 insertions, 13 deletions
diff --git a/drivers/video/mvf_dcu.c b/drivers/video/mvf_dcu.c
index 719e465b77e6..d9fc6fa664c7 100644
--- a/drivers/video/mvf_dcu.c
+++ b/drivers/video/mvf_dcu.c
@@ -138,6 +138,8 @@ static struct mfb_info mfb_template[] = {
},
};
+static int total_open_layers = 0;
+
static int mvf_dcu_enable_panel(struct fb_info *info)
{
@@ -422,11 +424,6 @@ static void update_lcdc(struct fb_info *info)
writel(DCU_THRESHOLD_LS_BF_VS(0x3) | DCU_THRESHOLD_OUT_BUF_HIGH(0x78) |
DCU_THRESHOLD_OUT_BUF_LOW(0), dcu->base + DCU_THRESHOLD);
- writel(0, dcu->base + DCU_INT_STATUS);
- writel(0, dcu->base + DCU_PARR_ERR_STA_1);
- writel(0, dcu->base + DCU_PARR_ERR_STA_2);
- writel(0, dcu->base + DCU_PARR_ERR_STA_3);
-
/* Enable the DCU */
enable_lcdc(info);
}
@@ -718,10 +715,34 @@ static int mvf_dcu_ioctl(struct fb_info *info, unsigned int cmd,
static int mvf_dcu_open(struct fb_info *info, int user)
{
struct mfb_info *mfbi = info->par;
+ struct mvf_dcu_fb_data *dcu = mfbi->parent;
+ int i;
int ret = 0;
mfbi->index = info->node;
spin_lock(&dcu_lock);
+
+ /* if first time any layer open (e.g., at boot time) reset all */
+ if (total_open_layers == 0) {
+
+ writel(0, dcu->base + DCU_INT_STATUS);
+ writel(0, dcu->base + DCU_PARR_ERR_STA_1);
+ writel(0, dcu->base + DCU_PARR_ERR_STA_2);
+ writel(0, dcu->base + DCU_PARR_ERR_STA_3);
+
+ for (i = 0; i < 64; i++) {
+ writel(0, dcu->base + DCU_CTRLDESCLN_0(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_1(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_2(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_3(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_4(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_5(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_6(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_7(i));
+ writel(0, dcu->base + DCU_CTRLDESCLN_8(i));
+ }
+ }
+
mfbi->count++;
if (mfbi->count == 1) {
pr_debug("open layer index %d\n", mfbi->index);
@@ -729,6 +750,8 @@ static int mvf_dcu_open(struct fb_info *info, int user)
ret = mvf_dcu_set_par(info);
if (ret < 0)
mfbi->count--;
+ else
+ total_open_layers++;
}
spin_unlock(&dcu_lock);
@@ -747,6 +770,8 @@ static int mvf_dcu_release(struct fb_info *info, int user)
ret = mvf_dcu_disable_panel(info);
if (ret < 0)
mfbi->count++;
+ else
+ total_open_layers--;
}
spin_unlock(&dcu_lock);
@@ -895,21 +920,17 @@ static void free_irq_local(int irq, struct mvf_dcu_fb_data *dcu)
static int mvf_dcu_suspend(struct platform_device *pdev,
pm_message_t state)
{
- struct mvf_dcu_fb_data *dcu;
-
- dcu = dev_get_drvdata(&pdev->dev);
- disable_lcdc(dcu->mvf_dcu_info[0]);
+ struct mvf_dcu_fb_data *dcu = dev_get_drvdata(&pdev->dev);
+ clk_disable(dcu->clk);
return 0;
}
static int mvf_dcu_resume(struct platform_device *pdev)
{
- struct mvf_dcu_fb_data *dcu;
-
- dcu = dev_get_drvdata(&pdev->dev);
- enable_lcdc(dcu->mvf_dcu_info[0]);
+ struct mvf_dcu_fb_data *dcu = dev_get_drvdata(&pdev->dev);
+ clk_enable(dcu->clk);
return 0;
}
#else