summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2006-06-14 21:52:21 +0000
committerIan Romanick <idr@us.ibm.com>2006-06-14 21:52:21 +0000
commitfe23ada5cc8c13fa30aa210df9968a4042593ea2 (patch)
tree3f47065df180e6b9ed835162464298d8a2a02480
parent72667a14fa330ef3b08dd72ab84ff09b164ff5ed (diff)
Refactor AccelFlags setting and some other feature settings for various MGA
hardware. Eventually AccelFlags will be set from a table look-up, but that will come after the PCI rework is merged.
-rw-r--r--src/mga_storm.c110
1 files changed, 28 insertions, 82 deletions
diff --git a/src/mga_storm.c b/src/mga_storm.c
index f4c9284..40742c3 100644
--- a/src/mga_storm.c
+++ b/src/mga_storm.c
@@ -202,64 +202,20 @@ common_replicate_colors_and_mask( unsigned int fg, unsigned int bg,
#ifdef RENDER
-extern Bool
-MGASetupForCPUToScreenAlphaTexture (
- ScrnInfoPtr pScrn,
- int op,
- CARD16 red,
- CARD16 green,
- CARD16 blue,
- CARD16 alpha,
- int alphaType,
- CARD8 *alphaPtr,
- int alphaPitch,
- int width,
- int height,
- int flags
-);
-
-extern Bool
-MGASetupForCPUToScreenAlphaTextureFaked (
- ScrnInfoPtr pScrn,
- int op,
- CARD16 red,
- CARD16 green,
- CARD16 blue,
- CARD16 alpha,
- int alphaType,
- CARD8 *alphaPtr,
- int alphaPitch,
- int width,
- int height,
- int flags
-);
-
-
-extern Bool
-MGASetupForCPUToScreenTexture (
- ScrnInfoPtr pScrn,
- int op,
- int texType,
- CARD8 *texPtr,
- int texPitch,
- int width,
- int height,
- int flags
-);
-
-extern void
-MGASubsequentCPUToScreenTexture (
- ScrnInfoPtr pScrn,
- int dstx,
- int dsty,
- int srcx,
- int srcy,
- int width,
- int height
-);
-
-extern CARD32 MGAAlphaTextureFormats[2];
-extern CARD32 MGATextureFormats[2];
+static Bool MGASetupForCPUToScreenAlphaTexture(ScrnInfoPtr pScrn, int op,
+ CARD16 red, CARD16 green, CARD16 blue, CARD16 alpha, int alphaType,
+ CARD8 *alphaPtr, int alphaPitch, int width, int height, int flags);
+
+static Bool MGASetupForCPUToScreenAlphaTextureFaked(ScrnInfoPtr Scrn, int op,
+ CARD16 red, CARD16 green, CARD16 blue, CARD16 alpha, int alphaType,
+ CARD8 *alphaPtr, int alphaPitch, int width, int height, int flags);
+
+static Bool MGASetupForCPUToScreenTexture(ScrnInfoPtr pScrn, int op,
+ int texType, CARD8 *texPtr, int texPitch, int width, int height,
+ int flags);
+
+static void MGASubsequentCPUToScreenTexture(ScrnInfoPtr pScrn, int dstx,
+ int dsty, int srcx, int srcy, int width, int height);
#include "mipict.h"
#include "dixstruct.h"
@@ -621,6 +577,7 @@ Bool mgaAccelInit( ScreenPtr pScreen )
int maxFastBlitMem, maxlines;
Bool doRender = FALSE;
BoxRec AvailFBArea;
+ int i;
pMga->ScratchBuffer = xalloc(((pScrn->displayWidth * pMga->CurrentLayout.bitsPerPixel) + 127) >> 3);
if(!pMga->ScratchBuffer) return FALSE;
@@ -646,26 +603,12 @@ Bool mgaAccelInit( ScreenPtr pScreen )
break;
case PCI_CHIP_MGAG200_SE_A_PCI:
case PCI_CHIP_MGAG200_SE_B_PCI:
- doRender = FALSE;
- pMga->AccelFlags = TRANSC_SOLID_FILL | TWO_PASS_COLOR_EXPAND;
- break;
case PCI_CHIP_MGAG400:
case PCI_CHIP_MGAG550:
- if(pMga->SecondCrtc == TRUE) {
- pMga->HasFBitBlt = FALSE;
- }
- pMga->MaxBlitDWORDS = 0x400000 >> 5;
- /* fallthrough */
case PCI_CHIP_MGAG200:
case PCI_CHIP_MGAG200_PCI:
- doRender = FALSE;
pMga->AccelFlags = TRANSC_SOLID_FILL |
TWO_PASS_COLOR_EXPAND;
-
-#if 1
- if((pMga->FbMapSize > 8*1024*1024) && (pScrn->depth == 8))
- pMga->AccelFlags |= LARGE_ADDRESSES;
-#endif
break;
case PCI_CHIP_MGA1064:
pMga->AccelFlags = 0;
@@ -680,10 +623,18 @@ Bool mgaAccelInit( ScreenPtr pScreen )
/* all should be able to use this now with the bug fixes */
pMga->AccelFlags |= USE_LINEAR_EXPANSION;
- if ( pMga->CurrentLayout.bitsPerPixel == 24 ) {
+ if ((pMga->FbMapSize > 8*1024*1024) && (pScrn->depth == 8)) {
+ pMga->AccelFlags |= LARGE_ADDRESSES;
+ }
+
+ if (pMga->CurrentLayout.bitsPerPixel == 24) {
pMga->AccelFlags |= MGA_NO_PLANEMASK;
}
+ if (pMga->SecondCrtc) {
+ pMga->HasFBitBlt = FALSE;
+ }
+
if(pMga->HasSDRAM) {
pMga->Atype = pMga->AtypeNoBLK = MGAAtypeNoBLK;
pMga->AccelFlags &= ~TWO_PASS_COLOR_EXPAND;
@@ -992,16 +943,11 @@ Bool mgaAccelInit( ScreenPtr pScreen )
}
- {
- Bool shared_accel = FALSE;
- int i;
-
- for(i = 0; i < pScrn->numEntities; i++) {
- if(xf86IsEntityShared(pScrn->entityList[i]))
- shared_accel = TRUE;
- }
- if(shared_accel == TRUE)
+ for (i = 0; i < pScrn->numEntities; i++) {
+ if (xf86IsEntityShared(pScrn->entityList[i])) {
infoPtr->RestoreAccelState = mgaRestoreAccelState;
+ break;
+ }
}
#ifdef RENDER