From 85b4ae065435c8b4c4696b75e95f897130ee8bdf Mon Sep 17 00:00:00 2001 From: Thomas Hellström Date: Mon, 10 Jul 2006 12:20:24 +0000 Subject: The SiS and Unichrome drivers assume that the handle to the AGP map is equivalent to the AGP physical address. Fix this. --- src/mesa/drivers/dri/sis/sis_screen.c | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) (limited to 'src/mesa/drivers/dri/sis/sis_screen.c') diff --git a/src/mesa/drivers/dri/sis/sis_screen.c b/src/mesa/drivers/dri/sis/sis_screen.c index d4395a9cdd..a721a724ac 100644 --- a/src/mesa/drivers/dri/sis/sis_screen.c +++ b/src/mesa/drivers/dri/sis/sis_screen.c @@ -163,6 +163,7 @@ sisCreateScreen( __DRIscreenPrivate *sPriv ) if (sisDRIPriv->agp.size) { sisScreen->agp.handle = sisDRIPriv->agp.handle; + sisScreen->agpBaseOffset = drmAgpBase(sPriv->fd); sisScreen->agp.size = sisDRIPriv->agp.size; if ( drmMap( sPriv->fd, sisScreen->agp.handle, sisScreen->agp.size, &sisScreen->agp.map ) ) @@ -349,15 +350,37 @@ void * __driCreateNewScreen_20050727( __DRInativeDisplay *dpy, int scrn, static const __DRIversion ddx_expected = {0, 8, 0}; static const __DRIversion dri_expected = {4, 0, 0}; static const __DRIversion drm_expected = {1, 0, 0}; - + static const __DRIversion drm_compat = {2, 0, 0}; + static const char *driver_name = "SiS"; dri_interface = interface; - if (!driCheckDriDdxDrmVersions2("SiS", dri_version, &dri_expected, + /* + * Check ddx and dri only. + */ + + if (!driCheckDriDdxDrmVersions2(driver_name, dri_version, &dri_expected, ddx_version, &ddx_expected, - drm_version, &drm_expected)) { + drm_version, drm_version)) { + return NULL; + } + + /* + * Check drm version with major versioning span. + */ + + if (((drm_version->major < drm_expected.major) || + (drm_version->major > drm_compat.major)) || + ((drm_version->major == drm_expected.major) && + (drm_version->minor < drm_expected.minor))) { + + fprintf(stderr, "%s DRI driver expected DRM version %d.%d.x - %d.x.x " + "but got version %d.%d.%d\n", driver_name, + drm_expected.major, drm_expected.minor, drm_compat.major, + drm_version->major, drm_version->minor, drm_version->patch); return NULL; } + psp = __driUtilCreateNewScreen(dpy, scrn, psc, NULL, ddx_version, dri_version, drm_version, frame_buffer, pSAREA, fd, -- cgit v1.2.3