summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2017-08-05 21:31:13 +0700
committerAaron Plattner <aplattner@nvidia.com>2017-08-05 16:46:24 -0700
commit87249af5faf85c8d093e910c069faa4db0aee843 (patch)
tree5ede5f857a72933e2b4472f4f7cf0ba1365c2eb1
parent7c3b090e80a9b364434120262f9bef5686cd2e2e (diff)
Remove DGA support
DGA was so 2004. Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Bob Terek <xorg@esoterek.com> Tested-by: Antoine Martin <antoine@nagafix.co.uk>
-rw-r--r--configure.ac8
-rw-r--r--src/Makefile.am5
-rw-r--r--src/dummy.h7
-rw-r--r--src/dummy_dga.c175
-rw-r--r--src/dummy_driver.c8
5 files changed, 0 insertions, 203 deletions
diff --git a/configure.ac b/configure.ac
index 45d61d0..d44f21d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -46,7 +46,6 @@ AC_PROG_LIBTOOL
AH_TOP([#include "xorg-server.h"])
# Define a configure option for an alternate module directory
-AC_ARG_ENABLE(dga, AS_HELP_STRING([--disable-dga], [Build DGA extension (default: yes)]), [DGA=$enableval], [DGA=yes])
AC_ARG_WITH(xorg-module-dir, [ --with-xorg-module-dir=DIR ],
[ moduledir="$withval" ],
[ moduledir="$libdir/xorg/modules" ])
@@ -57,13 +56,6 @@ AC_SUBST(moduledir)
XORG_DRIVER_CHECK_EXT(RANDR, randrproto)
XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
-if test "x$DGA" = xyes; then
- XORG_DRIVER_CHECK_EXT(XFreeXDGA, xf86dgaproto)
- AC_DEFINE(USE_DGA, 1, [Support DGA extension])
-fi
-AC_SUBST([DGA])
-AM_CONDITIONAL([DGA], [test "x$DGA" = xyes])
-
# Obtain compiler/linker options for the driver dependencies
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.4.99.901] xproto fontsproto $REQUIRED_MODULES)
diff --git a/src/Makefile.am b/src/Makefile.am
index da1dd9a..c0d82e0 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -37,8 +37,3 @@ dummy_drv_la_SOURCES = \
dummy_cursor.c \
dummy_driver.c \
dummy.h
-
-if DGA
-dummy_drv_la_SOURCES += \
- dummy_dga.c
-endif
diff --git a/src/dummy.h b/src/dummy.h
index 705b9e5..f902fa6 100644
--- a/src/dummy.h
+++ b/src/dummy.h
@@ -28,9 +28,6 @@ extern Bool DUMMYCursorInit(ScreenPtr pScrn);
extern void DUMMYShowCursor(ScrnInfoPtr pScrn);
extern void DUMMYHideCursor(ScrnInfoPtr pScrn);
-/* in dummy_dga.c */
-Bool DUMMYDGAInit(ScreenPtr pScreen);
-
/* globals */
typedef struct _color
{
@@ -41,10 +38,6 @@ typedef struct _color
typedef struct dummyRec
{
- DGAModePtr DGAModes;
- int numDGAModes;
- Bool DGAactive;
- int DGAViewportStatus;
/* options */
OptionInfoPtr Options;
Bool swCursor;
diff --git a/src/dummy_dga.c b/src/dummy_dga.c
deleted file mode 100644
index d16d09f..0000000
--- a/src/dummy_dga.c
+++ /dev/null
@@ -1,175 +0,0 @@
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "xf86.h"
-#include "xf86_OSproc.h"
-#include "dgaproc.h"
-#include "dummy.h"
-
-static Bool DUMMY_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **,
- int *, int *, int *);
-static Bool DUMMY_SetMode(ScrnInfoPtr, DGAModePtr);
-static int DUMMY_GetViewport(ScrnInfoPtr);
-static void DUMMY_SetViewport(ScrnInfoPtr, int, int, int);
-
-static
-DGAFunctionRec DUMMYDGAFuncs = {
- DUMMY_OpenFramebuffer,
- NULL,
- DUMMY_SetMode,
- DUMMY_SetViewport,
- DUMMY_GetViewport,
- NULL,
- NULL,
- NULL,
-#if 0
- DUMMY_BlitTransRect
-#else
- NULL
-#endif
-};
-
-Bool
-DUMMYDGAInit(ScreenPtr pScreen)
-{
- ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
- DUMMYPtr pDUMMY = DUMMYPTR(pScrn);
- DGAModePtr modes = NULL, newmodes = NULL, currentMode;
- DisplayModePtr pMode, firstMode;
- int Bpp = pScrn->bitsPerPixel >> 3;
- int num = 0, imlines, pixlines;
-
- imlines = (pScrn->videoRam * 1024) /
- (pScrn->displayWidth * (pScrn->bitsPerPixel >> 3));
-
- pixlines = imlines;
-
- pMode = firstMode = pScrn->modes;
-
- while(pMode) {
-
- newmodes = realloc(modes, (num + 1) * sizeof(DGAModeRec));
-
- if(!newmodes) {
- free(modes);
- return FALSE;
- }
- modes = newmodes;
-
- currentMode = modes + num;
- num++;
-
- currentMode->mode = pMode;
- currentMode->flags = DGA_CONCURRENT_ACCESS | DGA_PIXMAP_AVAILABLE;
- if(pMode->Flags & V_DBLSCAN)
- currentMode->flags |= DGA_DOUBLESCAN;
- if(pMode->Flags & V_INTERLACE)
- currentMode->flags |= DGA_INTERLACED;
- currentMode->byteOrder = pScrn->imageByteOrder;
- currentMode->depth = pScrn->depth;
- currentMode->bitsPerPixel = pScrn->bitsPerPixel;
- currentMode->red_mask = pScrn->mask.red;
- currentMode->green_mask = pScrn->mask.green;
- currentMode->blue_mask = pScrn->mask.blue;
- currentMode->visualClass = (Bpp == 1) ? PseudoColor : TrueColor;
- currentMode->viewportWidth = pMode->HDisplay;
- currentMode->viewportHeight = pMode->VDisplay;
- currentMode->xViewportStep = 1;
- currentMode->yViewportStep = 1;
- currentMode->viewportFlags = DGA_FLIP_RETRACE;
- currentMode->offset = 0;
- currentMode->address = (unsigned char *)pDUMMY->FBBase;
-
- currentMode->bytesPerScanline =
- ((pScrn->displayWidth * Bpp) + 3) & ~3L;
- currentMode->imageWidth = pScrn->displayWidth;
- currentMode->imageHeight = imlines;
- currentMode->pixmapWidth = currentMode->imageWidth;
- currentMode->pixmapHeight = pixlines;
- currentMode->maxViewportX = currentMode->imageWidth -
- currentMode->viewportWidth;
- currentMode->maxViewportY = currentMode->imageHeight -
- currentMode->viewportHeight;
-
- pMode = pMode->next;
- if(pMode == firstMode)
- break;
- }
-
- pDUMMY->numDGAModes = num;
- pDUMMY->DGAModes = modes;
-
- return DGAInit(pScreen, &DUMMYDGAFuncs, modes, num);
-}
-
-static DisplayModePtr DUMMYSavedDGAModes[MAXSCREENS];
-
-static Bool
-DUMMY_SetMode(
- ScrnInfoPtr pScrn,
- DGAModePtr pMode
-){
- int index = pScrn->pScreen->myNum;
- DUMMYPtr pDUMMY = DUMMYPTR(pScrn);
-
- if(!pMode) { /* restore the original mode */
- if(pDUMMY->DGAactive) {
- pScrn->currentMode = DUMMYSavedDGAModes[index];
- DUMMYSwitchMode(SWITCH_MODE_ARGS(pScrn, pScrn->currentMode));
- DUMMYAdjustFrame(ADJUST_FRAME_ARGS(pScrn, 0, 0));
- pDUMMY->DGAactive = FALSE;
- }
- } else {
- if(!pDUMMY->DGAactive) { /* save the old parameters */
- DUMMYSavedDGAModes[index] = pScrn->currentMode;
- pDUMMY->DGAactive = TRUE;
- }
-
- DUMMYSwitchMode(SWITCH_MODE_ARGS(pScrn, pMode->mode));
- }
-
- return TRUE;
-}
-
-static int
-DUMMY_GetViewport(
- ScrnInfoPtr pScrn
-){
- DUMMYPtr pDUMMY = DUMMYPTR(pScrn);
-
- return pDUMMY->DGAViewportStatus;
-}
-
-static void
-DUMMY_SetViewport(
- ScrnInfoPtr pScrn,
- int x, int y,
- int flags
-){
- DUMMYPtr pDUMMY = DUMMYPTR(pScrn);
-
- DUMMYAdjustFrame(ADJUST_FRAME_ARGS(pScrn, x, y));
- pDUMMY->DGAViewportStatus = 0;
-}
-
-
-static Bool
-DUMMY_OpenFramebuffer(
- ScrnInfoPtr pScrn,
- char **name,
- unsigned char **mem,
- int *size,
- int *offset,
- int *flags
-){
- DUMMYPtr pDUMMY = DUMMYPTR(pScrn);
-
- *name = NULL; /* no special device */
- *mem = (unsigned char*)pDUMMY->FBBase;
- *size = pScrn->videoRam * 1024;
- *offset = 0;
- *flags = DGA_NEED_ROOT;
-
- return TRUE;
-}
diff --git a/src/dummy_driver.c b/src/dummy_driver.c
index 24f2f28..6653883 100644
--- a/src/dummy_driver.c
+++ b/src/dummy_driver.c
@@ -39,10 +39,6 @@
#include <X11/Xproto.h>
#include "scrnintstr.h"
#include "servermd.h"
-#ifdef USE_DGA
-#define _XF86DGA_SERVER_
-#include <X11/extensions/xf86dgaproto.h>
-#endif
/* Mandatory functions */
static const OptionInfoRec * DUMMYAvailableOptions(int chipid, int busid);
@@ -563,10 +559,6 @@ DUMMYScreenInit(SCREEN_INIT_ARGS_DECL)
xf86SetBlackWhitePixels(pScreen);
-#ifdef USE_DGA
- DUMMYDGAInit(pScreen);
-#endif
-
if (dPtr->swCursor)
xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, "Using Software Cursor.\n");