[PATCH] pm2fb: fb_sync added

STALE7057d

4 messages, 2 authors, 2007-05-08 · open the first message on its own page

[PATCH] pm2fb: fb_sync added

From: Krzysztof Helt <hidden>
Date: 2007-05-08 07:26:14

From: Krzysztof Helt <redacted>

This patch converts internal wait_pm2() function to fb API
fb_sync() method.

Signed-off-by: Krzysztof Helt <redacted>

---
The change of arguments in acceleration function allows use of
fb_sync by them. Current testing shows that fb_sync is not
required, but I left new arguments in case it may be needed. I am
working on speeding scrolling now.

Regards,
Krzysztof
--- linux.orig/drivers/video/pm2fb.c	2007-05-08
09:21:08.000000000 +0200
+++ linux-2.6.21/drivers/video/pm2fb.c	2007-05-08
09:22:08.000000000 +0200
@@ -204,17 +204,6 @@ static inline void WAIT_FIFO(struct pm2f
 }
 #endif
 
-static void wait_pm2(struct pm2fb_par* par) {
-
-	WAIT_FIFO(par, 1);
-	pm2_WR(par, PM2R_SYNC, 0);
-	mb();
-	do {
-		while (pm2_RD(par, PM2R_OUT_FIFO_WORDS) == 0);
-		rmb();
-	} while (pm2_RD(par, PM2R_OUT_FIFO) != PM2TAG(PM2R_SYNC));
-}
-
 /*
  * partial products for the supported horizontal resolutions.
  */
@@ -1050,13 +1039,30 @@ static int pm2fb_blank(int blank_mode, s
 	return 0;
 }
 
+static int pm2fb_sync(struct fb_info *info)
+{
+	struct pm2fb_par *par = info->par;
+
+	WAIT_FIFO(par, 1);
+	pm2_WR(par, PM2R_SYNC, 0);
+	mb();
+	do {
+		while (pm2_RD(par, PM2R_OUT_FIFO_WORDS) == 0)
+			udelay(10);
+		rmb();
+	} while (pm2_RD(par, PM2R_OUT_FIFO) != PM2TAG(PM2R_SYNC));
+
+	return 0;
+}
+
 /*
  * block operation. copy=0: rectangle fill, copy=1: rectangle copy.
  */
-static void pm2fb_block_op(struct pm2fb_par* par, int copy,
+static void pm2fb_block_op(struct fb_info* info, int copy,
 				s32 xsrc, s32 ysrc,
 				s32 x, s32 y, s32 w, s32 h,
 				u32 color) {
+	struct pm2fb_par *par = info->par;
 
 	if (!w || !h)
 		return;
@@ -1076,13 +1082,11 @@ static void pm2fb_block_op(struct pm2fb_
 				(x<xsrc ? PM2F_INCREASE_X : 0) |
 				(y<ysrc ? PM2F_INCREASE_Y : 0) |
 				(copy ? 0 : PM2F_RENDER_FASTFILL));
-	wait_pm2(par);
 }
 
 static void pm2fb_fillrect (struct fb_info *info, 
 				const struct fb_fillrect *region)
 {
-	struct pm2fb_par *par = info->par;
 	struct fb_fillrect modded;
 	int vxres, vyres;
 	u32 color = (info->fix.visual == FB_VISUAL_TRUECOLOR) ?
@@ -1116,7 +1120,7 @@ static void pm2fb_fillrect (struct fb_in
 		color |= color << 16;
 
 	if(info->var.bits_per_pixel != 24)
-		pm2fb_block_op(par, 0, 0, 0,
+		pm2fb_block_op(info, 0, 0, 0,
 				modded.dx, modded.dy,
 				modded.width, modded.height, color);
 	else
@@ -1126,7 +1130,6 @@ static void pm2fb_fillrect (struct fb_in
 static void pm2fb_copyarea(struct fb_info *info,
 				const struct fb_copyarea *area)
 {
-	struct pm2fb_par *par = info->par;
 	struct fb_copyarea modded;
 	u32 vxres, vyres;
 
@@ -1156,7 +1159,7 @@ static void pm2fb_copyarea(struct fb_inf
 	if(modded.dy + modded.height > vyres)
 		modded.height = vyres - modded.dy;
 
-	pm2fb_block_op(par, 1, modded.sx, modded.sy,
+	pm2fb_block_op(info, 1, modded.sx, modded.sy,
 			modded.dx, modded.dy,
 			modded.width, modded.height, 0);
 }
@@ -1177,6 +1180,7 @@ static struct fb_ops pm2fb_ops = {
 	.fb_fillrect	= pm2fb_fillrect,
 	.fb_copyarea	= pm2fb_copyarea,
 	.fb_imageblit	= cfb_imageblit,
+	.fb_sync	= pm2fb_sync,
 };
 
 /*


----------------------------------------------------
Morderstwa i krew ofiar na ścianach. Mroczne miasto 
pogrążone w chaosie. Sprawdź kto jest Przybywającym!
Przybywający - thriller metafizyczny już w księgarniach.
http://klik.wp.pl/?adr=http%3A%2F%2Fksiazki.wp.pl%2Fkatalog%2Fksiazki%2Fksiazka.html%3Fkw%3D10414&sid=1128

Re: [PATCH] pm2fb: fb_sync added

From: "Antonino A. Daplas" <adaplas@gmail.com>
Date: 2007-05-08 12:32:41

On Tue, 2007-05-08 at 09:26 +0200, Krzysztof Helt wrote:
From: Krzysztof Helt <redacted>

This patch converts internal wait_pm2() function to fb API
fb_sync() method.

Signed-off-by: Krzysztof Helt <redacted>

---
The change of arguments in acceleration function allows use of
fb_sync by them. Current testing shows that fb_sync is not
required, but I left new arguments in case it may be needed. I am
working on speeding scrolling now.
Actually, creating an fb_sync() method would be better in terms of
maximizing the thoroughput of the GPU in comparison with indiscriminate
calls to sync waits. It would have been better if imageblit is also
hardware assisted.

Tony



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

Re: [PATCH] pm2fb: fb_sync added

From: Krzysztof Helt <hidden>
Date: 2007-05-08 13:05:23

Dnia 8-05-2007 o godz. 14:32 Antonino A. Daplas napisa³(a):
On Tue, 2007-05-08 at 09:26 +0200, Krzysztof Helt wrote:
quoted
Current testing shows that fb_sync is not
required
Actually, creating an fb_sync() method would be better in terms of
maximizing the thoroughput of the GPU in comparison with
indiscriminate
calls to sync waits. 

I was not clear in the first email. The pm2fb_sync is required to
avoid corruption of display (to define it as fb_sync) during
scrolling. It is not required to be called inside the
pm2fb_block_op() explicitly.

The change is to remove the sync call from the pm2fb_block_op().
It would have been better if imageblit is also
hardware assisted.
I know, but I have only as much time as my work and family allow
 (there was plenty of it last week = holiday).

I see a major problem with using copyarea acceleration comparing
to redraw function. The copyarea always moves the whole
framebuffer (milions of pixels) while the redraw works very smart
to redraw only things which has to be redrawn. I am working to
use something smarter for copyarea. No success yet.

Regards,
Krzysztof

----------------------------------------------------
Zobacz, jak± walkê stoczy superbohater, by ocaliæ siebie
i swych bliskich. A najwiêksza bitwa rozegra siê w jego duszy.
SPIDER-MAN 3 w kinach od 4 maja.
http://klik.wp.pl/?adr=http%3A%2F%2Fadv.reklama.wp.pl%2Fas%2Fspiderman3.html&sid=1122



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

Re: [PATCH] pm2fb: fb_sync added

From: "Antonino A. Daplas" <adaplas@gmail.com>
Date: 2007-05-08 13:34:22

On Tue, 2007-05-08 at 15:05 +0200, Krzysztof Helt wrote:
Dnia 8-05-2007 o godz. 14:32 Antonino A. Daplas napisał(a):
quoted
On Tue, 2007-05-08 at 09:26 +0200, Krzysztof Helt wrote:
I see a major problem with using copyarea acceleration comparing
to redraw function. The copyarea always moves the whole
framebuffer (milions of pixels) while the redraw works very smart
to redraw only things which has to be redrawn. I am working to
use something smarter for copyarea. No success yet.
Are you using just plain move and redraw?  How about trying pan + move,
or pan + redraw.  If you can set var->yres_virtual to be at least 2x
var->yres, it might improve scrolling speed a lot.

Tony



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Linux-fbdev-devel mailing list
Linux-fbdev-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-fbdev-devel
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help