2010-02-16 05:59:00 +00:00
|
|
|
From 05c3ac7e882e0f46f908cc165f87d0e81399431d Mon Sep 17 00:00:00 2001
|
2009-06-23 04:02:10 +00:00
|
|
|
From: Fedora X Ninjas <x@fedoraproject.org>
|
2010-02-16 05:59:00 +00:00
|
|
|
Date: Tue, 16 Feb 2010 11:38:17 +1000
|
2009-06-23 04:02:10 +00:00
|
|
|
Subject: [PATCH] autoconfig: select nouveau by default for NVIDIA GPUs
|
|
|
|
|
|
|
|
Also, don't treat DRI setup failure as an error for nouveau.
|
|
|
|
---
|
|
|
|
glx/glxdri.c | 7 +++++--
|
|
|
|
glx/glxdri2.c | 7 +++++--
|
2010-02-16 05:59:00 +00:00
|
|
|
hw/xfree86/common/xf86AutoConfig.c | 18 +++++++++++++++++-
|
|
|
|
3 files changed, 27 insertions(+), 5 deletions(-)
|
2009-06-23 04:02:10 +00:00
|
|
|
|
|
|
|
diff --git a/glx/glxdri.c b/glx/glxdri.c
|
2010-02-16 05:59:00 +00:00
|
|
|
index 21e44d1..30b820c 100644
|
2009-06-23 04:02:10 +00:00
|
|
|
--- a/glx/glxdri.c
|
|
|
|
+++ b/glx/glxdri.c
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -968,6 +968,7 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
|
2009-06-23 04:02:10 +00:00
|
|
|
const __DRIconfig **driConfigs;
|
|
|
|
const __DRIextension **extensions;
|
|
|
|
int i;
|
|
|
|
+ int from = X_ERROR;
|
|
|
|
|
|
|
|
if (!xf86LoaderCheckSymbol("DRIQueryDirectRenderingCapable") ||
|
|
|
|
!DRIQueryDirectRenderingCapable(pScreen, &isCapable) ||
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -1047,7 +1048,9 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
|
2009-06-23 04:02:10 +00:00
|
|
|
|
|
|
|
screen->driver = dlopen(filename, RTLD_LAZY | RTLD_LOCAL);
|
|
|
|
if (screen->driver == NULL) {
|
|
|
|
- LogMessage(X_ERROR, "AIGLX error: dlopen of %s failed (%s)\n",
|
|
|
|
+ if (!strcmp(driverName, "nouveau"))
|
|
|
|
+ from = X_INFO;
|
|
|
|
+ LogMessage(from, "AIGLX error: dlopen of %s failed (%s)\n",
|
|
|
|
filename, dlerror());
|
|
|
|
goto handle_error;
|
|
|
|
}
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -1184,7 +1187,7 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
|
2009-06-23 04:02:10 +00:00
|
|
|
|
|
|
|
xfree(screen);
|
|
|
|
|
|
|
|
- LogMessage(X_ERROR, "AIGLX: reverting to software rendering\n");
|
|
|
|
+ LogMessage(from, "AIGLX: reverting to software rendering\n");
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
diff --git a/glx/glxdri2.c b/glx/glxdri2.c
|
2010-02-16 05:59:00 +00:00
|
|
|
index 0f998de..a244809 100644
|
2009-06-23 04:02:10 +00:00
|
|
|
--- a/glx/glxdri2.c
|
|
|
|
+++ b/glx/glxdri2.c
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -676,6 +676,7 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
|
2009-06-23 04:02:10 +00:00
|
|
|
const __DRIextension **extensions;
|
|
|
|
const __DRIconfig **driConfigs;
|
|
|
|
int i;
|
|
|
|
+ int from = X_ERROR;
|
|
|
|
|
|
|
|
screen = xcalloc(1, sizeof *screen);
|
|
|
|
if (screen == NULL)
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -702,7 +703,9 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
|
2009-06-23 04:02:10 +00:00
|
|
|
|
|
|
|
screen->driver = dlopen(filename, RTLD_LAZY | RTLD_LOCAL);
|
|
|
|
if (screen->driver == NULL) {
|
|
|
|
- LogMessage(X_ERROR, "AIGLX error: dlopen of %s failed (%s)\n",
|
|
|
|
+ if (!strcmp(driverName, "nouveau"))
|
|
|
|
+ from = X_INFO;
|
|
|
|
+ LogMessage(from, "AIGLX error: dlopen of %s failed (%s)\n",
|
|
|
|
filename, dlerror());
|
|
|
|
goto handle_error;
|
|
|
|
}
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -793,7 +796,7 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
|
2009-06-23 04:02:10 +00:00
|
|
|
|
|
|
|
xfree(screen);
|
|
|
|
|
|
|
|
- LogMessage(X_ERROR, "AIGLX: reverting to software rendering\n");
|
|
|
|
+ LogMessage(from, "AIGLX: reverting to software rendering\n");
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
diff --git a/hw/xfree86/common/xf86AutoConfig.c b/hw/xfree86/common/xf86AutoConfig.c
|
2010-02-16 05:59:00 +00:00
|
|
|
index 7f4ada8..369101c 100644
|
2009-06-23 04:02:10 +00:00
|
|
|
--- a/hw/xfree86/common/xf86AutoConfig.c
|
|
|
|
+++ b/hw/xfree86/common/xf86AutoConfig.c
|
2010-02-16 05:59:00 +00:00
|
|
|
@@ -192,7 +192,23 @@ videoPtrToDriverList(struct pci_device *dev,
|
2009-06-23 04:02:10 +00:00
|
|
|
break;
|
|
|
|
case 0x102b: driverList[0] = "mga"; break;
|
|
|
|
case 0x10c8: driverList[0] = "neomagic"; break;
|
|
|
|
- case 0x10de: case 0x12d2: driverList[0] = "nv"; break;
|
|
|
|
+ case 0x10de: case 0x12d2:
|
|
|
|
+ switch (dev->device_id) {
|
|
|
|
+ /* NV1 */
|
|
|
|
+ case 0x0008:
|
|
|
|
+ case 0x0009:
|
|
|
|
+ driverList[0] = "vesa";
|
|
|
|
+ break;
|
|
|
|
+ /* NV3 */
|
|
|
|
+ case 0x0018:
|
|
|
|
+ case 0x0019:
|
|
|
|
+ driverList[0] = "nv";
|
|
|
|
+ break;
|
|
|
|
+ default:
|
2009-08-24 05:05:49 +00:00
|
|
|
+ driverList[0] = "nouveau";
|
2009-06-23 04:02:10 +00:00
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
case 0x1106: driverList[0] = "openchrome"; break;
|
2010-02-16 05:59:00 +00:00
|
|
|
case 0x1b36: driverList[0] = "qxl"; break;
|
2009-06-23 04:02:10 +00:00
|
|
|
case 0x1163: driverList[0] = "rendition"; break;
|
|
|
|
--
|
2010-02-16 05:59:00 +00:00
|
|
|
1.6.6.1
|
2009-06-23 04:02:10 +00:00
|
|
|
|