From: JinGoo Han <jg1.han@samsung.com>
To: AJAY KUMAR RAMAKRISHNA SHYMALAMMA <ajaykumar.rs@samsung.com>,
"linux-samsung-soc@vger.kernel.org"
<linux-samsung-soc@vger.kernel.org>,
"linux-fbdev@vger.kernel.org" <linux-fbdev@vger>
Cc: "FlorianSchandinat@gmx.de" <FlorianSchandinat@gmx.de>,
"lethal@linux-sh.org" <lethal@linux-sh.org>,
Marek Szyprowski <m.szyprowski@samsung.com>,
"ben-linux@fluff.org" <ben-linux@fluff.org>,
BANAJIT GOSWAMI <banajit.g@samsung.com>
Subject: RE: [PATCH 2/2] video: s3c-fb: Modify s3c-fb driver to support window
Date: Fri, 26 Aug 2011 00:44:09 +0000 [thread overview]
Message-ID: <14401983.184721314319448396.JavaMail.weblogic@epv6ml01> (raw)
In-Reply-To: <1314301917-9938-3-git-send-email-ajaykumar.rs@samsung.com>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="windows-1254", Size: 4182 bytes --]
Hi, Ajay.
> -----Original Message-----
> From: Ajay Kumar [mailto:ajaykumar.rs@samsung.com]
> Sent: Friday, August 26, 2011 4:52 AM
> To: linux-samsung-soc@vger.kernel.org; linux-fbdev@vger.kernel.org; linux-
> arm-kernel@lists.infradead.org
> Cc: FlorianSchandinat@gmx.de; lethal@linux-sh.org; jg1.han@samsung.com;
> m.szyprowski@samsung.com; ben-linux@fluff.org; banajit.g@samsung.com
> Subject: [PATCH 2/2] video: s3c-fb: Modify s3c-fb driver to support window
> positioning
>
> This patch modifies the existing s3c-fb driver to provide
> flexibility to the user to reposition the framebuffer windows.
>
> Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com>
> Signed-off-by: Banajit Goswami <banajit.g@samsung.com>
> ---
> drivers/video/s3c-fb.c | 37 ++++++++++++++++++++++++++++++++-----
> 1 files changed, 32 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c
> index 0fda252..41179d7 100644
> --- a/drivers/video/s3c-fb.c
> +++ b/drivers/video/s3c-fb.c
> @@ -442,6 +442,7 @@ static int s3c_fb_set_par(struct fb_info *info)
> struct fb_var_screeninfo *var = &info->var;
> struct s3c_fb_win *win = info->par;
> struct s3c_fb *sfb = win->parent;
> + struct s3cfb_window_pos *winpos = &win->windata->winpos;
> void __iomem *regs = sfb->regs;
> void __iomem *buf = regs;
> int win_no = win->index;
> @@ -539,12 +540,13 @@ static int s3c_fb_set_par(struct fb_info *info)
>
> /* write 'OSD' registers to control position of framebuffer */
>
> - data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0);
> + data = VIDOSDxA_TOPLEFT_X(winpos->win_pos_x) |
> + VIDOSDxA_TOPLEFT_Y(winpos->win_pos_y);
> writel(data, regs + VIDOSD_A(win_no, sfb->variant));
>
> - data = VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var->bits_per_pixel,
> - var->xres - 1)) |
> - VIDOSDxB_BOTRIGHT_Y(var->yres - 1);
> + data = VIDOSDxB_BOTRIGHT_X((s3c_fb_align_word(var->bits_per_pixel,
> + (winpos->win_pos_x + var->xres - 1)))) |
> + VIDOSDxB_BOTRIGHT_Y((winpos->win_pos_y + var->yres - 1));
>
> writel(data, regs + VIDOSD_B(win_no, sfb->variant));
>
> @@ -999,8 +1001,10 @@ static int s3c_fb_ioctl(struct fb_info *info,
> unsigned int cmd,
> {
> struct s3c_fb_win *win = info->par;
> struct s3c_fb *sfb = win->parent;
> - int ret;
> + struct s3cfb_window_pos *winpos = &win->windata->winpos;
> + int ret = 0;
> u32 crtc;
> + u32 data;
>
> switch (cmd) {
> case FBIO_WAITFORVSYNC:
> @@ -1011,6 +1015,29 @@ static int s3c_fb_ioctl(struct fb_info *info,
> unsigned int cmd,
>
> ret = s3c_fb_wait_for_vsync(sfb, crtc);
> break;
> + case S3CFB_WIN_POSITION:
> + if (copy_from_user(winpos, (u32 __user *)arg,
> + sizeof(struct s3cfb_window_pos))) {
> + ret = -EFAULT;
> + break;
> + }
> +
> + shadow_protect_win(win, 1);
> +
> + /* write 'OSD' registers to set position of the window */
> + data = VIDOSDxA_TOPLEFT_X(winpos->win_pos_x) |
> + VIDOSDxA_TOPLEFT_Y(winpos->win_pos_y);
> + writel(data, sfb->regs + VIDOSD_A(win->index, sfb->variant));
> +
> + data = VIDOSDxB_BOTRIGHT_X(
> + s3c_fb_align_word(info->var.bits_per_pixel,
> + (winpos->win_pos_x + info->var.xres - 1)));
> + data |= VIDOSDxB_BOTRIGHT_Y(winpos->win_pos_y +
> + info->var.yres - 1);
> + writel(data, sfb->regs + VIDOSD_B(win->index, sfb->variant));
> +
> + shadow_protect_win(win, 0);
> + break;
Can you move this to separate function?
In my opinion, it would be better for readability and consistency.
Also, FBIO_WAITFORVSYNC has been implemented in this way.
ret = s3c_fb_wait_for_vsync(sfb, crtc);
How about adding a function 's3c_fb_set_window_position' for this as belows?
+int s3c_fb_set_window_position(struct fb_info *info,
+ struct s3cfb_window_pos winpos)
........
+ case S3CFB_WIN_POSITION:
+ if (copy_from_user(winpos, (u32 __user *)arg,
+ sizeof(struct s3cfb_window_pos))) {
+ ret = -EFAULT;
+ break;
+ }
+ ret = s3c_fb_set_window_position(info, winpos);
+ break;
> default:
> ret = -ENOTTY;
> }
> --
> 1.7.0.4
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±ýöÝzÿâØ^nr¡ö¦zË\x1aëh¨èÚ&£ûàz¿äz¹Þú+Ê+zf£¢·h§~Ûiÿÿïêÿêçz_è®\x0fæj:+v¨þ)ߣøm
next prev parent reply other threads:[~2011-08-26 0:44 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-25 13:54 [PATCH 0/2] video: s3c-fb: Add window positioning support Ajay Kumar
2011-08-25 13:54 ` [PATCH 1/2] ARM: SAMSUNG: Add Window Positioning Support for s3c-fb Ajay Kumar
2011-08-26 5:56 ` [PATCH 1/2] ARM: SAMSUNG: Add Window Positioning Support for Jingoo Han
2011-08-25 13:54 ` [PATCH 2/2] video: s3c-fb: Modify s3c-fb driver to support window Ajay Kumar
2011-08-26 0:44 ` JinGoo Han [this message]
2011-08-26 5:33 ` [PATCH 2/2] video: s3c-fb: Modify s3c-fb driver to support window positioning Ajay kumar
2011-09-01 16:45 ` [PATCH 0/2] video: s3c-fb: Add window positioning support Florian Tobias Schandinat
2011-09-02 9:58 ` Tomi Valkeinen
2011-09-06 14:28 ` Ajay kumar
2011-09-07 15:31 ` Laurent Pinchart
2011-09-18 19:29 ` Florian Tobias Schandinat
2011-09-18 20:39 ` Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=14401983.184721314319448396.JavaMail.weblogic@epv6ml01 \
--to=jg1.han@samsung.com \
--cc=FlorianSchandinat@gmx.de \
--cc=ajaykumar.rs@samsung.com \
--cc=banajit.g@samsung.com \
--cc=ben-linux@fluff.org \
--cc=lethal@linux-sh.org \
--cc=linux-fbdev@vger \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).