summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alex@botch2.com>2007-03-11 18:49:48 -0400
committerAlex Deucher <alex@botch2.com>2007-03-13 00:17:30 -0400
commit493c93de288437501fd898800bce45300379ebc3 (patch)
tree2512e534f2d686af873e8b46b7a4fe694d1ab680
parentc1d6373624428c8c52e4d1d295b1d77ed75391a0 (diff)
more exa fixups, disable UTS for now.
-rw-r--r--src/smi_exa.c34
1 files changed, 22 insertions, 12 deletions
diff --git a/src/smi_exa.c b/src/smi_exa.c
index 2f13983..09d1de5 100644
--- a/src/smi_exa.c
+++ b/src/smi_exa.c
@@ -112,8 +112,10 @@ SMI_EXAInit(ScreenPtr pScreen)
pSmi->EXADriverPtr->DoneSolid = SMI_DoneSolid;
/* DFS & UTS */
+#if 0
pSmi->EXADriverPtr->UploadToScreen = SMI_UploadToScreen;
pSmi->EXADriverPtr->DownloadFromScreen = SMI_DownloadFromScreen;
+#endif
if(!exaDriverInit(pScreen, pSmi->EXADriverPtr)) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "exaDriverInit failed.\n");
@@ -216,7 +218,7 @@ SMI_PrepareCopy(PixmapPtr pSrcPixmap, PixmapPtr pDstPixmap, int xdir, int ydir,
pSmi->AccelCmd |= SMI_RIGHT_TO_LEFT;
}
- WaitQueue(1);
+ WaitQueue(6);
/* Destination and Source Window Widths */
WRITE_DPR(pSmi, 0x3C, (dst_pitch << 16) | (src_pitch & 0xFFFF));
@@ -224,11 +226,15 @@ SMI_PrepareCopy(PixmapPtr pSrcPixmap, PixmapPtr pDstPixmap, int xdir, int ydir,
src_pitch *= 3;
dst_pitch *= 3;
WaitQueue(3);
- } else {
- WaitQueue(4);
- /* Bit Mask (planemask) - 16 bit only */
+ }
+
+ /* Bit Mask (planemask) - 16 bit only */
+ if (pSrcPixmap->drawable.bitsPerPixel == 16) {
WRITE_DPR(pSmi, 0x28, planemask | 0xFFFF0000);
+ } else {
+ WRITE_DPR(pSmi, 0x28, 0xFFFFFFFF);
}
+
/* Destination and Source Row Pitch */
WRITE_DPR(pSmi, 0x10, (dst_pitch << 16) | (src_pitch & 0xFFFF));
/* Drawing engine data format */
@@ -341,23 +347,27 @@ SMI_PrepareSolid(PixmapPtr pPixmap, int alu, Pixel planemask, Pixel fg)
| SMI_BITBLT
| SMI_START_ENGINE;
- WaitQueue(1);
+ WaitQueue(8);
/* Destination Window Width */
- WRITE_DPR(pSmi, 0x3C, (dst_pitch << 16));
+ WRITE_DPR(pSmi, 0x3C, (dst_pitch << 16) | (dst_pitch & 0xFFFF));
if (pPixmap->drawable.bitsPerPixel == 24) {
dst_pitch *= 3;
- WaitQueue(5);
- } else {
- WaitQueue(6);
- /* Bit Mask (planemask) - 16 bit only */
+ }
+
+ /* Bit Mask (planemask) - 16 bit only */
+ if (pPixmap->drawable.bitsPerPixel == 16) {
WRITE_DPR(pSmi, 0x28, planemask | 0xFFFF0000);
+ } else {
+ WRITE_DPR(pSmi, 0x28, 0xFFFFFFFF);
}
+
/* Destination Row Pitch */
- WRITE_DPR(pSmi, 0x10, (dst_pitch << 16));
+ WRITE_DPR(pSmi, 0x10, (dst_pitch << 16) | (dst_pitch & 0xFFFF));
/* Drawing engine data format */
WRITE_DPR(pSmi, 0x1C, SMI_DEDataFormat(pPixmap));
- /* Destination Base Address (offset) */
+ /* Source and Destination Base Address (offset) */
+ WRITE_DPR(pSmi, 0x40, dst_offset);
WRITE_DPR(pSmi, 0x44, dst_offset);
/* Foreground Color */
WRITE_DPR(pSmi, 0x14, fg);