* [PATCH atyfb] fix hw cursor in doublescan modes
@ 2004-11-10 18:25 Alexander Kern
0 siblings, 0 replies; only message in thread
From: Alexander Kern @ 2004-11-10 18:25 UTC (permalink / raw)
To: Antonino A. Daplas; +Cc: linux-fbdev-devel
[-- Attachment #1: Type: text/plain, Size: 86 bytes --]
fix hw cursor in doublescan modes
Signed-off-by: Alexander Kern <alex.kern@gmx.de>
[-- Attachment #2: atyfb_fix_cursor_in_doublescanmode.patch --]
[-- Type: text/x-diff, Size: 1083 bytes --]
--- linux-2.6.head/drivers/video/aty/mach64_cursor.c.orig 2004-11-07 17:14:57.000000000 +0100
+++ linux-2.6.head/drivers/video/aty/mach64_cursor.c 2004-11-09 15:04:56.000000000 +0100
@@ -75,7 +75,7 @@
{
struct atyfb_par *par = (struct atyfb_par *) info->par;
u16 xoff, yoff;
- int x, y;
+ int x, y, h;
#ifdef __sparc__
if (par->mmaped)
@@ -106,17 +106,20 @@
yoff = 0;
}
+ h = cursor->image.height;
+
/*
- * In doublescan mode, the cursor location also needs to be
- * doubled.
+ * In doublescan mode, the cursor location
+ * and heigh also needs to be doubled.
*/
- if (par->crtc.gen_cntl & CRTC_DBL_SCAN_EN)
+ if (par->crtc.gen_cntl & CRTC_DBL_SCAN_EN) {
y<<=1;
+ h<<=1;
+ }
wait_for_fifo(4, par);
aty_st_le32(CUR_OFFSET, (info->fix.smem_len >> 3) + (yoff << 1), par);
aty_st_le32(CUR_HORZ_VERT_OFF,
- ((u32) (64 - cursor->image.height + yoff) << 16) | xoff,
- par);
+ ((u32) (64 - h + yoff) << 16) | xoff, par);
aty_st_le32(CUR_HORZ_VERT_POSN, ((u32) y << 16) | x, par);
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-11-10 18:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-10 18:25 [PATCH atyfb] fix hw cursor in doublescan modes Alexander Kern
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).