linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] video: s3c-fb: add shadow register protect
@ 2011-12-08  9:08 Jingoo Han
  2011-12-19 23:13 ` Florian Tobias Schandinat
  0 siblings, 1 reply; 2+ messages in thread
From: Jingoo Han @ 2011-12-08  9:08 UTC (permalink / raw)
  To: linux-fbdev

Shadow registers should be protectd whenever the registers are
updated. Shadow registers are updated after SHADOWCON shadow
register is cleared.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
---
 drivers/video/s3c-fb.c |   16 +++++++++++++++-
 1 files changed, 15 insertions(+), 1 deletions(-)

diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c
index e84677e..e04c2ab 100644
--- a/drivers/video/s3c-fb.c
+++ b/drivers/video/s3c-fb.c
@@ -811,12 +811,16 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
 
 	case FB_BLANK_NORMAL:
 		/* disable the DMA and display 0x0 (black) */
+		shadow_protect_win(win, 1);
 		writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
 		       sfb->regs + sfb->variant.winmap + (index * 4));
+		shadow_protect_win(win, 0);
 		break;
 
 	case FB_BLANK_UNBLANK:
+		shadow_protect_win(win, 1);
 		writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
+		shadow_protect_win(win, 0);
 		wincon |= WINCONx_ENWIN;
 		sfb->enabled |= (1 << index);
 		break;
@@ -827,7 +831,9 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
 		return 1;
 	}
 
+	shadow_protect_win(win, 1);
 	writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
+	shadow_protect_win(win, 0);
 
 	/* Check the enabled state to see if we need to be running the
 	 * main LCD interface, as if there are no active windows then
@@ -846,8 +852,11 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
 	/* we're stuck with this until we can do something about overriding
 	 * the power control using the blanking event for a single fb.
 	 */
-	if (index = sfb->pdata->default_win)
+	if (index = sfb->pdata->default_win) {
+		shadow_protect_win(win, 1);
 		s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
+		shadow_protect_win(win, 0);
+	}
 
 	return 0;
 }
@@ -1572,10 +1581,15 @@ static int s3c_fb_resume(struct device *dev)
 
 	for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
 		void __iomem *regs = sfb->regs + sfb->variant.keycon;
+		win = sfb->windows[win_no];
+		if (!win)
+			continue;
 
+		shadow_protect_win(win, 1);
 		regs += (win_no * 8);
 		writel(0xffffff, regs + WKEYCON0);
 		writel(0xffffff, regs + WKEYCON1);
+		shadow_protect_win(win, 0);
 	}
 
 	/* restore framebuffers */
-- 
1.7.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] video: s3c-fb: add shadow register protect
  2011-12-08  9:08 [PATCH] video: s3c-fb: add shadow register protect Jingoo Han
@ 2011-12-19 23:13 ` Florian Tobias Schandinat
  0 siblings, 0 replies; 2+ messages in thread
From: Florian Tobias Schandinat @ 2011-12-19 23:13 UTC (permalink / raw)
  To: linux-fbdev

On 12/08/2011 09:08 AM, Jingoo Han wrote:
> Shadow registers should be protectd whenever the registers are
> updated. Shadow registers are updated after SHADOWCON shadow
> register is cleared.
> 
> Signed-off-by: Jingoo Han <jg1.han@samsung.com>

Applied.


Thanks,

Florian Tobias Schandinat

> ---
>  drivers/video/s3c-fb.c |   16 +++++++++++++++-
>  1 files changed, 15 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c
> index e84677e..e04c2ab 100644
> --- a/drivers/video/s3c-fb.c
> +++ b/drivers/video/s3c-fb.c
> @@ -811,12 +811,16 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
>  
>  	case FB_BLANK_NORMAL:
>  		/* disable the DMA and display 0x0 (black) */
> +		shadow_protect_win(win, 1);
>  		writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
>  		       sfb->regs + sfb->variant.winmap + (index * 4));
> +		shadow_protect_win(win, 0);
>  		break;
>  
>  	case FB_BLANK_UNBLANK:
> +		shadow_protect_win(win, 1);
>  		writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
> +		shadow_protect_win(win, 0);
>  		wincon |= WINCONx_ENWIN;
>  		sfb->enabled |= (1 << index);
>  		break;
> @@ -827,7 +831,9 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
>  		return 1;
>  	}
>  
> +	shadow_protect_win(win, 1);
>  	writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
> +	shadow_protect_win(win, 0);
>  
>  	/* Check the enabled state to see if we need to be running the
>  	 * main LCD interface, as if there are no active windows then
> @@ -846,8 +852,11 @@ static int s3c_fb_blank(int blank_mode, struct fb_info *info)
>  	/* we're stuck with this until we can do something about overriding
>  	 * the power control using the blanking event for a single fb.
>  	 */
> -	if (index = sfb->pdata->default_win)
> +	if (index = sfb->pdata->default_win) {
> +		shadow_protect_win(win, 1);
>  		s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
> +		shadow_protect_win(win, 0);
> +	}
>  
>  	return 0;
>  }
> @@ -1572,10 +1581,15 @@ static int s3c_fb_resume(struct device *dev)
>  
>  	for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
>  		void __iomem *regs = sfb->regs + sfb->variant.keycon;
> +		win = sfb->windows[win_no];
> +		if (!win)
> +			continue;
>  
> +		shadow_protect_win(win, 1);
>  		regs += (win_no * 8);
>  		writel(0xffffff, regs + WKEYCON0);
>  		writel(0xffffff, regs + WKEYCON1);
> +		shadow_protect_win(win, 0);
>  	}
>  
>  	/* restore framebuffers */


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-19 23:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-08  9:08 [PATCH] video: s3c-fb: add shadow register protect Jingoo Han
2011-12-19 23:13 ` Florian Tobias Schandinat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).