summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--src/apm_driver.c60
2 files changed, 18 insertions, 44 deletions
diff --git a/configure.ac b/configure.ac
index 21f75d4..df90ccd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -59,7 +59,7 @@ XORG_DRIVER_CHECK_EXT(XV, videoproto)
XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
# Obtain compiler/linker options for the driver dependencies
-PKG_CHECK_MODULES(XORG, [xorg-server >= 1.0.99.901] xproto fontsproto $REQUIRED_MODULES)
+PKG_CHECK_MODULES(XORG, [xorg-server >= 1.18] xproto fontsproto $REQUIRED_MODULES)
PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
HAVE_XEXTPROTO_71="yes"; AC_DEFINE(HAVE_XEXTPROTO_71, 1, [xextproto 7.1 available]),
HAVE_XEXTPROTO_71="no")
diff --git a/src/apm_driver.c b/src/apm_driver.c
index d6836aa..cdfde87 100644
--- a/src/apm_driver.c
+++ b/src/apm_driver.c
@@ -6,10 +6,6 @@
#include "apm.h"
#include "xf86cmap.h"
#include "shadowfb.h"
-#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6
-#include "xf86Resources.h"
-#include "xf86RAC.h"
-#endif
#include "xf86int10.h"
#include "vbe.h"
@@ -419,12 +415,10 @@ ApmPreInit(ScrnInfoPtr pScrn, int flags)
hwp = VGAHWPTR(pScrn);
vgaHWSetStdFuncs(hwp);
vgaHWGetIOBase(hwp);
-#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 12
-#define PIOOFFSET hwp->PIOOffset
-#else
-/* FIXME reintroduce domain support */
+
+/* FIXME reintroduce domain support
+ was hwp->PIOOffset in ABI_VIDEODRV_VERSION < 12 */
#define PIOOFFSET 0
-#endif
pApm->iobase = PIOOFFSET;
pApm->xport = PIOOFFSET + 0x3C4;
@@ -780,28 +774,23 @@ ApmPreInit(ScrnInfoPtr pScrn, int flags)
xf86DrvMsg(pScrn->scrnIndex, from, "VideoRAM: %d kByte\n",
pScrn->videoRam);
-#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 12
- if (!xf86IsPc98())
-#endif
- {
- hwp->MapSize = 0x10000;
- vgaHWMapMem(pScrn);
- if (pApm->I2C) {
- if (!ApmI2CInit(pScrn)) {
- xf86DrvMsg(pScrn->scrnIndex,X_ERROR,"I2C initialization failed\n");
- }
- else {
- MonInfo = xf86DoEDID_DDC2(XF86_SCRN_ARG(pScrn),pApm->I2CPtr);
- }
+ hwp->MapSize = 0x10000;
+ vgaHWMapMem(pScrn);
+ if (pApm->I2C) {
+ if (!ApmI2CInit(pScrn)) {
+ xf86DrvMsg(pScrn->scrnIndex,X_ERROR,"I2C initialization failed\n");
}
- if (0 && !MonInfo)
- MonInfo = xf86DoEDID_DDC1(XF86_SCRN_ARG(pScrn),vgaHWddc1SetSpeed,ddc1Read);
- if (MonInfo) {
- xf86PrintEDID(MonInfo);
- xf86SetDDCproperties(pScrn, MonInfo);
+ else {
+ MonInfo = xf86DoEDID_DDC2(XF86_SCRN_ARG(pScrn),pApm->I2CPtr);
}
- pScrn->monitor->DDC = MonInfo;
}
+ if (0 && !MonInfo)
+ MonInfo = xf86DoEDID_DDC1(XF86_SCRN_ARG(pScrn),vgaHWddc1SetSpeed,ddc1Read);
+ if (MonInfo) {
+ xf86PrintEDID(MonInfo);
+ xf86SetDDCproperties(pScrn, MonInfo);
+ }
+ pScrn->monitor->DDC = MonInfo;
/* The gamma fields must be initialised when using the new cmap code */
if (pScrn->depth > 1) {
@@ -1398,11 +1387,6 @@ ApmModeInit(ScrnInfoPtr pScrn, DisplayModePtr mode)
hwp->writeMiscOut(hwp, pApm->MiscOut | 0x0F);
-#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 12
- if (xf86IsPc98())
- outb(0xFAC, 0xFF);
-#endif
-
memcpy(ApmReg, &pApm->SavedReg, sizeof pApm->SavedReg);
/*
@@ -1996,11 +1980,6 @@ ApmLeaveVT(VT_FUNC_ARGS_DECL)
WRXB(0xDB, pApm->db);
}
WRXB(0xC9, pApm->c9);
-
-#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 12
- if (xf86IsPc98())
- outb(0xFAC, 0xFE);
-#endif
}
/*
@@ -2036,11 +2015,6 @@ ApmCloseScreen(CLOSE_SCREEN_ARGS_DECL)
pScrn->vtSema = FALSE;
-#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 12
- if (xf86IsPc98())
- outb(0xFAC, 0xFE);
-#endif
-
pScreen->CloseScreen = pApm->CloseScreen;
return (*pScreen->CloseScreen)(CLOSE_SCREEN_ARGS);
}