| 1 |
peesh |
1.1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
neysx |
1.14 |
<!-- $Header: /home/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.13 2004/04/11 10:52:16 cam Exp $ --> |
| 3 |
peesh |
1.1 |
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
| 4 |
|
|
|
| 5 |
|
|
<guide link="/doc/en/dri-howto.xml"> |
| 6 |
|
|
<title>Hardware 3D Acceleration Guide</title> |
| 7 |
|
|
<author title="Author"> |
| 8 |
swift |
1.8 |
<mail link="spyderous@gentoo.org">Donnie Berkholz</mail> |
| 9 |
peesh |
1.1 |
</author> |
| 10 |
|
|
<author title="Editor"> |
| 11 |
swift |
1.8 |
<mail link="peesh@gentoo.org">Jorge Paulo</mail> |
| 12 |
peesh |
1.1 |
</author> |
| 13 |
|
|
|
| 14 |
swift |
1.8 |
<abstract> |
| 15 |
|
|
This document is a guide to getting 3D acceleration working using XFree-DRM |
| 16 |
|
|
with XFree86 in Gentoo Linux. |
| 17 |
|
|
</abstract> |
| 18 |
peesh |
1.1 |
|
| 19 |
swift |
1.12 |
<license/> |
| 20 |
|
|
|
| 21 |
neysx |
1.14 |
<version>1.0.3</version> |
| 22 |
|
|
<date>June 21st, 2004</date> |
| 23 |
peesh |
1.1 |
|
| 24 |
|
|
<chapter> |
| 25 |
swift |
1.8 |
<title>Introduction</title> |
| 26 |
|
|
<section> |
| 27 |
|
|
<title>What is hardware 3D acceleration and why do I want it?</title> |
| 28 |
|
|
<body> |
| 29 |
|
|
|
| 30 |
|
|
<p> |
| 31 |
|
|
With hardware 3D acceleration, three-dimensional rendering uses the graphics |
| 32 |
|
|
processor on your video card instead of taking up valuable CPU resources |
| 33 |
|
|
drawing 3D images. It's also referred to as "hardware acceleration" instead of |
| 34 |
|
|
"software acceleration" because without this 3D acceleration your CPU is forced |
| 35 |
|
|
to draw everything itself using the Mesa software rendering libraries, which |
| 36 |
|
|
takes up quite a bit of processing power. While XFree86 typically supports 2D |
| 37 |
|
|
hardware acceleration, it often lacks hardware 3D acceleration. |
| 38 |
|
|
Three-dimensional hardware acceleration is valuable in situations requiring |
| 39 |
|
|
rendering of 3D objects such as games, 3D CAD and modeling. |
| 40 |
|
|
</p> |
| 41 |
|
|
|
| 42 |
|
|
</body> |
| 43 |
|
|
</section> |
| 44 |
|
|
<section> |
| 45 |
|
|
<title>How do I get hardware 3D acceleration?</title> |
| 46 |
|
|
<body> |
| 47 |
|
|
|
| 48 |
|
|
<p> |
| 49 |
|
|
In many cases, both binary and open-source drivers exist. Open-source drivers |
| 50 |
|
|
are preferable since we're using Linux and open source is one of its underlying |
| 51 |
|
|
principles. Sometimes, binary drivers are the only option, like with nVidia's |
| 52 |
|
|
cards. Binary drivers include media-video/nvidia-kernel and |
| 53 |
|
|
media-video/nvidia-glx for nVidia cards, media-video/mgavideo for Matrox cards |
| 54 |
|
|
and media-video/ati-drivers for ATI cards. Other open-source drivers include |
| 55 |
|
|
media-video/kyro-kernel for KyroII cards and media-video/ati-gatos for ATI |
| 56 |
|
|
cards, which aim to support ATI's video capabilities more fully. |
| 57 |
|
|
</p> |
| 58 |
|
|
|
| 59 |
|
|
</body> |
| 60 |
|
|
</section> |
| 61 |
|
|
<section> |
| 62 |
|
|
<title>What is DRI?</title> |
| 63 |
|
|
<body> |
| 64 |
|
|
|
| 65 |
|
|
<p> |
| 66 |
|
|
The Direct Rendering Infrastructure (<uri |
| 67 |
|
|
link="http://dri.sourceforge.net">dri.sourceforge.net</uri>), also known as the |
| 68 |
|
|
DRI, is a framework for allowing direct access to graphics hardware in a safe |
| 69 |
|
|
and efficient manner. It includes changes to the X server, to several client |
| 70 |
|
|
libraries and to the kernel. The first major use for the DRI is to create fast |
| 71 |
|
|
OpenGL implementations. |
| 72 |
|
|
</p> |
| 73 |
|
|
|
| 74 |
|
|
</body> |
| 75 |
|
|
</section> |
| 76 |
|
|
<section> |
| 77 |
|
|
<title>What is XFree-DRM and how does it relate to regular XFree86?</title> |
| 78 |
|
|
<body> |
| 79 |
|
|
|
| 80 |
|
|
<p> |
| 81 |
|
|
XFree-DRM is an <e>enhancement</e> to XFree86 that adds 3D acceleration for |
| 82 |
|
|
cards by adding the kernel module necessary for direct rendering. |
| 83 |
|
|
</p> |
| 84 |
|
|
|
| 85 |
|
|
</body> |
| 86 |
|
|
</section> |
| 87 |
|
|
<section> |
| 88 |
|
|
<title>Purpose</title> |
| 89 |
|
|
<body> |
| 90 |
|
|
|
| 91 |
|
|
<p> |
| 92 |
|
|
This guide is for people who can't get direct rendering working with just |
| 93 |
|
|
XFree. XFree-DRM works for 3dfx, gamma, i8x0, matrox, rage128, radeon, mach64 |
| 94 |
|
|
(as of xfree-drm-4.3.0-r7) and sis300 series drivers. Since the 2.4 kernels' |
| 95 |
|
|
Direct Rendering Manager (DRM) doesn't support XFree 4.3, the xfree-drm package |
| 96 |
|
|
is needed. If you're using a 2.6 kernel, its DRM supports XFree 4.3; Gentoo's |
| 97 |
|
|
XFree-DRM package is not yet working on 2.6 kernels. See the <uri |
| 98 |
|
|
link="http://dri.sourceforge.net">DRI homepage</uri> for more info and |
| 99 |
|
|
documentation. |
| 100 |
|
|
</p> |
| 101 |
|
|
|
| 102 |
|
|
</body> |
| 103 |
|
|
</section> |
| 104 |
|
|
<section> |
| 105 |
|
|
<title>Feedback</title> |
| 106 |
|
|
<body> |
| 107 |
|
|
|
| 108 |
|
|
<p> |
| 109 |
|
|
With suggestions, questions, etc., e-mail <mail |
| 110 |
|
|
link="spyderous@gentoo.org">Donnie Berkholz</mail>. |
| 111 |
|
|
</p> |
| 112 |
|
|
|
| 113 |
|
|
</body> |
| 114 |
|
|
</section> |
| 115 |
peesh |
1.1 |
</chapter> |
| 116 |
|
|
|
| 117 |
swift |
1.8 |
<chapter> |
| 118 |
|
|
<title>Install XFree86 and configure your kernel</title> |
| 119 |
|
|
<section> |
| 120 |
|
|
<title>Install XFree86</title> |
| 121 |
|
|
<body> |
| 122 |
peesh |
1.1 |
|
| 123 |
swift |
1.9 |
<pre caption="Installing XFree86"> |
| 124 |
peesh |
1.1 |
# <i>emerge x11-base/xfree</i> |
| 125 |
swift |
1.8 |
</pre> |
| 126 |
peesh |
1.1 |
|
| 127 |
swift |
1.8 |
</body> |
| 128 |
|
|
</section> |
| 129 |
|
|
<section> |
| 130 |
|
|
<title>Configure your kernel</title> |
| 131 |
|
|
<body> |
| 132 |
|
|
|
| 133 |
|
|
<p> |
| 134 |
|
|
Probe for your chipset and enable just that one. |
| 135 |
|
|
</p> |
| 136 |
peesh |
1.1 |
|
| 137 |
swift |
1.9 |
<pre caption="Checking your AGP chipset"> |
| 138 |
peesh |
1.1 |
# <i>emerge pciutils; lspci | grep AGP</i> |
| 139 |
|
|
# <i>00:01.0 PCI bridge: Intel Corp. 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)</i> |
| 140 |
|
|
<codenote>Your output may not match the above due to different hardware.</codenote> |
| 141 |
swift |
1.8 |
</pre> |
| 142 |
|
|
|
| 143 |
|
|
<p> |
| 144 |
|
|
Most, if not all, kernels should have these options. This was configured using |
| 145 |
|
|
gentoo-sources-2.4.20-r5. |
| 146 |
|
|
</p> |
| 147 |
|
|
|
| 148 |
swift |
1.9 |
<pre caption="Configuring the kernel"> |
| 149 |
peesh |
1.1 |
# <i>ls -l /usr/src/linux </i> |
| 150 |
|
|
lrwxrwxrwx 1 root root 22 May 29 18:20 /usr/src/linux -> linux-2.4.20-gentoo-r5 |
| 151 |
cam |
1.13 |
<codenote>Make sure /usr/src/linux links to your current kernel.</codenote> |
| 152 |
peesh |
1.1 |
# <i>cd /usr/src/linux</i> |
| 153 |
|
|
# <i>make menuconfig</i> |
| 154 |
swift |
1.8 |
</pre> |
| 155 |
|
|
|
| 156 |
swift |
1.9 |
<pre caption="make menuconfig options"> |
| 157 |
peesh |
1.1 |
Processor type and features ---> |
| 158 |
swift |
1.8 |
<*> MTRR (Memory Type Range Register) support |
| 159 |
peesh |
1.1 |
Character devices ---> |
| 160 |
dertobi123 |
1.11 |
<M> /dev/agpgart (AGP Support) |
| 161 |
|
|
[*] Intel 440LX/BX/GX and I815/I820/I830M/I830MP/I840/I845/I850/I860 support |
| 162 |
peesh |
1.1 |
<codenote>Enable your chipset instead of the above.</codenote> |
| 163 |
swift |
1.8 |
[ ] Direct Rendering Manager (XFree86 DRI support) |
| 164 |
|
|
</pre> |
| 165 |
peesh |
1.1 |
|
| 166 |
swift |
1.8 |
<p> |
| 167 |
|
|
Make sure the Direct Rendering Manager (DRM) is <e>off</e>. The XFree-DRM |
| 168 |
|
|
package will provide its own. The 2.4 kernel's version is for XFree 4.2. |
| 169 |
|
|
</p> |
| 170 |
|
|
|
| 171 |
|
|
</body> |
| 172 |
|
|
</section> |
| 173 |
|
|
<section> |
| 174 |
|
|
<title>Compile and install your kernel</title> |
| 175 |
|
|
<body> |
| 176 |
peesh |
1.1 |
|
| 177 |
swift |
1.9 |
<pre caption="Compiling and installing kernel"> |
| 178 |
peesh |
1.1 |
# <i>make dep && make clean bzImage modules modules_install</i> |
| 179 |
|
|
# <i>mount /boot</i> |
| 180 |
|
|
# <i>cp arch/i386/boot/bzImage /boot</i> |
| 181 |
swift |
1.8 |
</pre> |
| 182 |
|
|
|
| 183 |
|
|
<p> |
| 184 |
|
|
If you want your kernel to be named something other than bzImage, be sure to |
| 185 |
|
|
copy to /boot/yourname instead. Don't forget to set up grub.conf or lilo.conf |
| 186 |
|
|
and run /sbin/lilo if you use LILO. |
| 187 |
|
|
</p> |
| 188 |
|
|
|
| 189 |
|
|
</body> |
| 190 |
|
|
</section> |
| 191 |
peesh |
1.1 |
</chapter> |
| 192 |
|
|
|
| 193 |
swift |
1.8 |
<chapter> |
| 194 |
|
|
<title>Install XFree-DRM and configure direct rendering</title> |
| 195 |
|
|
<section> |
| 196 |
|
|
<title>Install XFree-DRM</title> |
| 197 |
|
|
<body> |
| 198 |
peesh |
1.1 |
|
| 199 |
swift |
1.9 |
<pre caption="Installing XFree-DRM"> |
| 200 |
peesh |
1.1 |
# <i>ACCEPT_KEYWORDS="~x86" emerge xfree-drm</i> |
| 201 |
swift |
1.8 |
</pre> |
| 202 |
peesh |
1.1 |
|
| 203 |
swift |
1.8 |
</body> |
| 204 |
|
|
</section> |
| 205 |
|
|
<section> |
| 206 |
|
|
<title>Configure XF86Config</title> |
| 207 |
|
|
<body> |
| 208 |
|
|
|
| 209 |
|
|
<p> |
| 210 |
|
|
Open <path>/etc/X11/XF86Config</path> with your favorite text editor and edit |
| 211 |
|
|
it to enable DRI and GLX. |
| 212 |
|
|
</p> |
| 213 |
peesh |
1.1 |
|
| 214 |
swift |
1.9 |
<pre caption="XF86Config"> |
| 215 |
peesh |
1.1 |
... |
| 216 |
|
|
Section "Module" |
| 217 |
swift |
1.8 |
Load "dri" |
| 218 |
|
|
Load "glx" |
| 219 |
|
|
... |
| 220 |
peesh |
1.1 |
EndSection |
| 221 |
|
|
... |
| 222 |
|
|
Section "Device" |
| 223 |
swift |
1.8 |
Driver "radeon" |
| 224 |
|
|
... |
| 225 |
peesh |
1.1 |
EndSection |
| 226 |
|
|
... |
| 227 |
swift |
1.7 |
Section "dri" |
| 228 |
swift |
1.8 |
Mode 0666 |
| 229 |
peesh |
1.1 |
EndSection |
| 230 |
swift |
1.8 |
</pre> |
| 231 |
|
|
|
| 232 |
|
|
<p> |
| 233 |
|
|
If you are using a different driver, replace "radeon" with yours. |
| 234 |
|
|
</p> |
| 235 |
|
|
|
| 236 |
|
|
</body> |
| 237 |
|
|
</section> |
| 238 |
peesh |
1.1 |
</chapter> |
| 239 |
|
|
|
| 240 |
swift |
1.8 |
<chapter> |
| 241 |
|
|
<title>Test 3D acceleration</title> |
| 242 |
|
|
<section> |
| 243 |
|
|
<title>Reboot to the new kernel</title> |
| 244 |
|
|
<body> |
| 245 |
|
|
|
| 246 |
|
|
<p> |
| 247 |
|
|
Reboot your computer to your new kernel. It's time to see if you have direct |
| 248 |
|
|
rendering and how good it is. |
| 249 |
|
|
</p> |
| 250 |
peesh |
1.1 |
|
| 251 |
swift |
1.9 |
<pre caption="Testing rendering"> |
| 252 |
peesh |
1.1 |
# <i>startx</i> |
| 253 |
|
|
<codenote>No need to load modules for your driver or agpgart, if you compiled agpgart as a module.</codenote> |
| 254 |
|
|
<codenote>They will be loaded automatically.</codenote> |
| 255 |
|
|
# <i>glxinfo | grep rendering</i> |
| 256 |
|
|
direct rendering: Yes |
| 257 |
|
|
<codenote>If it says "No," you don't have 3D acceleration.</codenote> |
| 258 |
|
|
# <i>glxgears</i> |
| 259 |
swift |
1.10 |
<codenote>Test your frames per second (FPS) at the default size. The number should be </codenote> |
| 260 |
|
|
<codenote>significantly higher than before installing xfree-drm. Do this while the CPU is as idle as possible.</codenote> |
| 261 |
swift |
1.8 |
</pre> |
| 262 |
|
|
|
| 263 |
|
|
</body> |
| 264 |
|
|
</section> |
| 265 |
peesh |
1.1 |
</chapter> |
| 266 |
|
|
|
| 267 |
swift |
1.8 |
<chapter> |
| 268 |
|
|
<title>Using the CVS sources</title> |
| 269 |
|
|
<section> |
| 270 |
|
|
<body> |
| 271 |
|
|
|
| 272 |
|
|
<warn> |
| 273 |
|
|
Don't do this if the package worked. |
| 274 |
|
|
</warn> |
| 275 |
|
|
|
| 276 |
|
|
<note> |
| 277 |
|
|
By their nature, CVS sources are always changing. Your configuration may not |
| 278 |
|
|
look exactly like the one below. |
| 279 |
|
|
</note> |
| 280 |
|
|
|
| 281 |
|
|
</body> |
| 282 |
|
|
</section> |
| 283 |
|
|
<section> |
| 284 |
|
|
<title>Do you need the CVS?</title> |
| 285 |
|
|
<body> |
| 286 |
|
|
|
| 287 |
|
|
<p> |
| 288 |
|
|
First you have to check whether the xfree-drm package works. If it doesn't and |
| 289 |
|
|
you have checked your logs to verify it's not a configuration error, you might |
| 290 |
|
|
want to consider the CVS sources. There are also daily driver snapshots |
| 291 |
|
|
available if you do not wish to build the full CVS. |
| 292 |
|
|
</p> |
| 293 |
|
|
|
| 294 |
|
|
</body> |
| 295 |
|
|
</section> |
| 296 |
|
|
<section> |
| 297 |
|
|
<title>Do the CVS sources support your card?</title> |
| 298 |
|
|
<body> |
| 299 |
|
|
|
| 300 |
|
|
<p> |
| 301 |
neysx |
1.14 |
Check the DRI <uri |
| 302 |
|
|
link="http://dri.sourceforge.net/cgi-bin/moin.cgi/Status">supported cards |
| 303 |
|
|
list</uri> to see if the CVS supports your card. Even if it doesn't, but it |
| 304 |
|
|
supports a similar card, try it. |
| 305 |
swift |
1.8 |
</p> |
| 306 |
|
|
|
| 307 |
|
|
<warn> |
| 308 |
|
|
"Linux 2.4 doesn't support agp 8x, so I had to go find a backport. The backport |
| 309 |
|
|
works .... it doesn't patch quite properly, and it requires 2.4.21 (I've only |
| 310 |
|
|
gotten it to work with vanilla, straight from the tarball (not ebuild)). First |
| 311 |
|
|
go get the 2.4.20-2.4.21 patch from kernel.org .... (then get the patch,) It |
| 312 |
|
|
was on a mailing list somewhere. It doesn't patch cleanly -- one file fails, |
| 313 |
|
|
the pci_ids.h file, but if you actually read the file and the reject list, it's |
| 314 |
|
|
very easy to fix. But it does load, and it gives me 1600x1200 with video |
| 315 |
|
|
(although a bit slow b/c of lack of dga) with xfree-drm." (SanityInAnarchy on |
| 316 |
|
|
#gentoo) |
| 317 |
|
|
</warn> |
| 318 |
|
|
|
| 319 |
|
|
<impo> |
| 320 |
|
|
The patch is a little tricky to work with but <uri |
| 321 |
|
|
link="http://www.ussg.iu.edu/hypermail/linux/kernel/0302.2/att-1618/01-agp3.diff.bz2">here's |
| 322 |
|
|
the link</uri>. If you can disable 8X AGP in your BIOS, change it to 4X and you |
| 323 |
|
|
may not need the patch. |
| 324 |
|
|
</impo> |
| 325 |
|
|
|
| 326 |
|
|
</body> |
| 327 |
|
|
</section> |
| 328 |
|
|
<section> |
| 329 |
|
|
<title>Install the CVS sources</title> |
| 330 |
|
|
<body> |
| 331 |
|
|
|
| 332 |
|
|
<p> |
| 333 |
|
|
Follow this guide through "Compile and install your kernel." Then continue with |
| 334 |
neysx |
1.14 |
this guide, which tracks step 6 of the <uri |
| 335 |
|
|
link="http://dri.sourceforge.net/cgi-bin/moin.cgi/Building">DRI compilation |
| 336 |
swift |
1.8 |
guide</uri> and follows it through step 8.3. |
| 337 |
|
|
</p> |
| 338 |
|
|
|
| 339 |
|
|
</body> |
| 340 |
|
|
</section> |
| 341 |
|
|
<section> |
| 342 |
|
|
<title>Anonymous CVS download</title> |
| 343 |
|
|
<body> |
| 344 |
|
|
|
| 345 |
|
|
<p> |
| 346 |
|
|
Create a directory to store the CVS files: |
| 347 |
|
|
</p> |
| 348 |
peesh |
1.1 |
|
| 349 |
swift |
1.9 |
<pre caption="Create a directory for CVS"> |
| 350 |
peesh |
1.1 |
# <i>cd ~</i> |
| 351 |
|
|
# <i>mkdir DRI-CVS</i> |
| 352 |
swift |
1.8 |
</pre> |
| 353 |
|
|
|
| 354 |
|
|
<p> |
| 355 |
|
|
Check out the CVS sources: |
| 356 |
|
|
</p> |
| 357 |
|
|
|
| 358 |
swift |
1.9 |
<pre caption="Check out CVS sources"> |
| 359 |
peesh |
1.1 |
# <i>cd ~/DRI-CVS</i> |
| 360 |
|
|
# <i>cvs -d:pserver:anonymous@cvs.dri.sourceforge.net:/cvsroot/dri login</i> |
| 361 |
|
|
<codenote>(hit ENTER when prompted for a password)</codenote> |
| 362 |
|
|
# <i>cvs -z3 -d:pserver:anonymous@cvs.dri.sourceforge.net:/cvsroot/dri co xc</i> |
| 363 |
swift |
1.7 |
<codenote>The -z3 flag causes compression to be used to reduce the download time.</codenote> |
| 364 |
swift |
1.8 |
</pre> |
| 365 |
peesh |
1.1 |
|
| 366 |
swift |
1.8 |
</body> |
| 367 |
|
|
</section> |
| 368 |
|
|
<section> |
| 369 |
|
|
<title>Updating your CVS sources</title> |
| 370 |
|
|
<body> |
| 371 |
|
|
|
| 372 |
|
|
<p> |
| 373 |
|
|
In the future you'll want to occasionally update your local copy of the DRI |
| 374 |
|
|
source code to get the latest changes. This can be done with: |
| 375 |
|
|
</p> |
| 376 |
peesh |
1.1 |
|
| 377 |
swift |
1.9 |
<pre caption="Update local copy"> |
| 378 |
peesh |
1.1 |
# <i>cd ~/DRI-CVS</i> |
| 379 |
|
|
# <i>cvs -z3 update -dA xc</i> |
| 380 |
|
|
<codenote>The -d flag causes any new subdirectories to be created.</codenote> |
| 381 |
|
|
<codenote>The -A flag causes most recent trunk sources to be fetched, not branch sources.</codenote> |
| 382 |
swift |
1.8 |
</pre> |
| 383 |
peesh |
1.1 |
|
| 384 |
swift |
1.8 |
</body> |
| 385 |
|
|
</section> |
| 386 |
|
|
<section> |
| 387 |
|
|
<title>Make a build tree</title> |
| 388 |
|
|
<body> |
| 389 |
|
|
|
| 390 |
|
|
<p> |
| 391 |
|
|
Rather than placing object files and library files right in the source tree, |
| 392 |
|
|
they're instead put into a parallel <e>build</e> tree. The build tree is made |
| 393 |
|
|
with the <c>lndir</c> command: |
| 394 |
|
|
</p> |
| 395 |
peesh |
1.1 |
|
| 396 |
swift |
1.9 |
<pre caption="Creating a parallel build tree"> |
| 397 |
peesh |
1.1 |
# <i>cd ~/DRI-CVS</i> |
| 398 |
|
|
# <i>ln -s xc XFree40</i> |
| 399 |
|
|
# <i>mkdir build; cd build</i> |
| 400 |
|
|
# <i>lndir -silent -ignorelinks ../XFree40</i> |
| 401 |
swift |
1.8 |
</pre> |
| 402 |
peesh |
1.1 |
|
| 403 |
swift |
1.8 |
<p> |
| 404 |
|
|
The build tree will be populated with symbolic links which point back into the |
| 405 |
|
|
CVS source tree. Advanced users may have several build trees for compiling and |
| 406 |
|
|
testing with different options. |
| 407 |
|
|
</p> |
| 408 |
|
|
|
| 409 |
|
|
</body> |
| 410 |
|
|
</section> |
| 411 |
|
|
<section> |
| 412 |
|
|
<title>Edit the host.def file</title> |
| 413 |
|
|
<body> |
| 414 |
|
|
|
| 415 |
|
|
<p> |
| 416 |
|
|
The <path>~/DRI-CVS/build/xc/config/cf/host.def</path> file is used to |
| 417 |
|
|
configure the XFree86 build process. You can change it to customize your build |
| 418 |
|
|
options or make adjustments for your particular system configuration. The |
| 419 |
|
|
default host.def file will look something like this: |
| 420 |
|
|
</p> |
| 421 |
peesh |
1.1 |
|
| 422 |
swift |
1.9 |
<pre caption="host.def"> |
| 423 |
swift |
1.8 |
#define DefaultCCOptions -Wall |
| 424 |
peesh |
1.1 |
<codenote>For i386:</codenote> |
| 425 |
swift |
1.8 |
#define DefaultGcc2i386Opt -O2 |
| 426 |
peesh |
1.1 |
<codenote>For Alpha:</codenote> |
| 427 |
swift |
1.8 |
#define DefaultGcc2AxpOpt -O2 -mcpu=ev6 (or similar) |
| 428 |
peesh |
1.1 |
<codenote>For all architectures</codenote> |
| 429 |
swift |
1.8 |
#define LibraryCDebugFlags -O2 |
| 430 |
|
|
#define BuildServersOnly YES |
| 431 |
|
|
#define XF86CardDrivers vga tdfx mga ati i810 |
| 432 |
|
|
#define LinuxDistribution LinuxRedHat |
| 433 |
|
|
#define DefaultCCOptions -ansi GccWarningOptions -pipe |
| 434 |
|
|
#define BuildXF86DRI YES |
| 435 |
|
|
/* Optionally turn these on for debugging */ |
| 436 |
|
|
/* #define GlxBuiltInTdfx YES */ |
| 437 |
|
|
/* #define GlxBuiltInMga YES */ |
| 438 |
|
|
/* #define GlxBuiltInR128 YES */ |
| 439 |
|
|
/* #define GlxBuiltInRadeon YES */ |
| 440 |
|
|
/* #define DoLoadableServer NO */ |
| 441 |
|
|
#define SharedLibFont NO |
| 442 |
|
|
</pre> |
| 443 |
|
|
|
| 444 |
swift |
1.9 |
<pre caption="host.def continued"> |
| 445 |
peesh |
1.1 |
<codenote>Note the XF86CardDrivers line to be sure your card's driver is listed.</codenote> |
| 446 |
|
|
<codenote>If you want to enable 3DNow! optimizations in Mesa and the DRI drivers, you should add the following:</codenote> |
| 447 |
|
|
#define MesaUse3DNow YES |
| 448 |
|
|
<codenote>You don't have to be using an AMD processor to enable this option.</codenote> |
| 449 |
|
|
<codenote>The DRI will look for 3DNow! support at runtime and only enable it if applicable.</codenote> |
| 450 |
swift |
1.8 |
</pre> |
| 451 |
|
|
|
| 452 |
|
|
<p> |
| 453 |
|
|
If you want to enable SSE optimizations in Mesa and the DRI drivers, you must |
| 454 |
|
|
upgrade to a Linux 2.4.x kernel. Mesa will verify that SSE is supported by both |
| 455 |
|
|
your processor and your operating system, but to build Mesa inside the DRI you |
| 456 |
|
|
need to have the Linux 2.4.x kernel headers in <path>/usr/src/linux</path>. If |
| 457 |
|
|
you enable SSE optimizations with an earlier version of the Linux kernel in |
| 458 |
|
|
<path>/usr/src/linux</path>, Mesa will not compile. You have been warned. If |
| 459 |
|
|
you do have a 2.4.x kernel, you should add the following: |
| 460 |
|
|
</p> |
| 461 |
|
|
|
| 462 |
swift |
1.9 |
<pre caption="Update on host.def"> |
| 463 |
peesh |
1.1 |
#define MesaUseKatmai YES |
| 464 |
swift |
1.8 |
</pre> |
| 465 |
peesh |
1.1 |
|
| 466 |
swift |
1.8 |
</body> |
| 467 |
|
|
</section> |
| 468 |
|
|
<section> |
| 469 |
|
|
<title>Compile the XFree86/DRI tree</title> |
| 470 |
|
|
<body> |
| 471 |
|
|
|
| 472 |
|
|
<p> |
| 473 |
|
|
To compile the complete DRI tree: |
| 474 |
|
|
</p> |
| 475 |
peesh |
1.1 |
|
| 476 |
swift |
1.9 |
<pre caption="Compile the DRI tree"> |
| 477 |
peesh |
1.1 |
# <i>cd ~/DRI-CVS/build/xc/</i> |
| 478 |
|
|
# <i>make World >& world.log</i> |
| 479 |
swift |
1.8 |
</pre> |
| 480 |
|
|
|
| 481 |
|
|
<p> |
| 482 |
|
|
It may also be necessary to do the following, depending on what you placed in |
| 483 |
|
|
host.def: |
| 484 |
|
|
</p> |
| 485 |
|
|
|
| 486 |
swift |
1.9 |
<pre caption="Further compiling steps"> |
| 487 |
peesh |
1.1 |
# <i>cd ~/DRI-CVS/build/xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel</i> |
| 488 |
|
|
# <i>make -f Makefile.linux radeon.o</i> |
| 489 |
|
|
<codenote>Replace radeon with your driver.</codenote> |
| 490 |
swift |
1.8 |
</pre> |
| 491 |
peesh |
1.1 |
|
| 492 |
swift |
1.8 |
<p> |
| 493 |
|
|
With the default compilation flags it's normal to get a lot of warnings during |
| 494 |
|
|
compilation. Building will take some time so you may want to go check your |
| 495 |
|
|
email or visit slashdot. |
| 496 |
|
|
</p> |
| 497 |
|
|
|
| 498 |
|
|
<warn> |
| 499 |
|
|
Do not use the -j option with make (i.e., do not use distcc). It's reported that |
| 500 |
|
|
it does not work with XFree86/DRI. |
| 501 |
|
|
</warn> |
| 502 |
|
|
|
| 503 |
|
|
<p> |
| 504 |
|
|
Using your text editor, examine world.log for errors by searching for the |
| 505 |
|
|
pattern ***. |
| 506 |
|
|
</p> |
| 507 |
|
|
|
| 508 |
|
|
</body> |
| 509 |
|
|
</section> |
| 510 |
|
|
<section> |
| 511 |
|
|
<title>Install the CVS</title> |
| 512 |
|
|
<body> |
| 513 |
|
|
|
| 514 |
|
|
<p> |
| 515 |
|
|
Verify that the DRI kernel module(s) for your system were built: |
| 516 |
|
|
</p> |
| 517 |
peesh |
1.1 |
|
| 518 |
swift |
1.9 |
<pre caption="Verification"> |
| 519 |
peesh |
1.1 |
# <i>cd ~/DRI-CVS/build/xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel; ls</i> |
| 520 |
swift |
1.8 |
</pre> |
| 521 |
|
|
|
| 522 |
|
|
<p> |
| 523 |
|
|
For the 3dfx Voodoo, you should see <path>tdfx.o</path>. For the Matrox |
| 524 |
|
|
G200/G400, you should see <path>mga.o</path>. For the ATI Rage 128, you should |
| 525 |
|
|
see <path>r128.o</path>. For the ATI Radeon, you should see |
| 526 |
|
|
<path>radeon.o</path>. For the Intel i810, you should see <path>i810.o</path>. |
| 527 |
|
|
If the DRI kernel module(s) failed to build, you should verify that you're |
| 528 |
|
|
using the right version of the Linux kernel. The most recent kernels are not |
| 529 |
|
|
always supported. |
| 530 |
|
|
</p> |
| 531 |
|
|
|
| 532 |
|
|
<p> |
| 533 |
|
|
Install over your XFree86 installation. You may wish to back up xfree. |
| 534 |
|
|
</p> |
| 535 |
|
|
|
| 536 |
swift |
1.9 |
<pre caption="Backing up XFree"> |
| 537 |
swift |
1.7 |
# <i>quickpkg xfree</i> |
| 538 |
|
|
<codenote>This backs up your XFree86 package.</codenote> |
| 539 |
|
|
# <i>make install</i> |
| 540 |
swift |
1.8 |
</pre> |
| 541 |
|
|
|
| 542 |
|
|
<p> |
| 543 |
|
|
Follow the "Configure XF86Config" section above. |
| 544 |
|
|
</p> |
| 545 |
|
|
|
| 546 |
|
|
<p> |
| 547 |
|
|
To load the appropriate DRM module in your running kernel, copy the kernel |
| 548 |
|
|
module to <path>/lib/modules/`uname -r`/kernel/drivers/char/drm/</path> then |
| 549 |
|
|
run <c>modules-update</c> and restart your X server. If you're not running the |
| 550 |
|
|
kernel you'll be using it in, instead of <c>`uname -r`,</c> use that kernel's |
| 551 |
|
|
name. |
| 552 |
|
|
</p> |
| 553 |
|
|
|
| 554 |
|
|
<warn> |
| 555 |
|
|
Make sure you first unload any older DRI kernel modules that might be already |
| 556 |
|
|
loaded. Note that some DRM modules require that the agpgart module be loaded |
| 557 |
|
|
first. |
| 558 |
|
|
</warn> |
| 559 |
|
|
|
| 560 |
|
|
</body> |
| 561 |
|
|
</section> |
| 562 |
peesh |
1.1 |
</chapter> |
| 563 |
|
|
|
| 564 |
swift |
1.8 |
<chapter> |
| 565 |
|
|
<title>Tweak your performance</title> |
| 566 |
|
|
<section> |
| 567 |
|
|
<title>Get the most out of direct rendering</title> |
| 568 |
|
|
<body> |
| 569 |
|
|
|
| 570 |
|
|
<p> |
| 571 |
|
|
A few options may increase performance by up to 30 percent (or more) over the |
| 572 |
|
|
default. Set them in <path>/etc/X11/XF86Config</path>. |
| 573 |
|
|
</p> |
| 574 |
peesh |
1.1 |
|
| 575 |
swift |
1.9 |
<pre caption="XF86Config"> |
| 576 |
peesh |
1.1 |
Section "Device" |
| 577 |
swift |
1.8 |
Option "AGPMode" "4" |
| 578 |
|
|
<codenote>This increased FPS from 609 to 618.</codenote> |
| 579 |
|
|
Option "AGPFastWrite" "True" |
| 580 |
|
|
<codenote>This had no measurable effect, but it may increase instability of your computer.</codenote> |
| 581 |
|
|
<codenote>You may also need to set it in your BIOS.</codenote> |
| 582 |
|
|
Option "EnablePageFlip" "True" |
| 583 |
|
|
<codenote>This improved FPS from 618 to 702. It also is "risky" but few people have reported problems.</codenote> |
| 584 |
|
|
... |
| 585 |
peesh |
1.1 |
EndSection |
| 586 |
swift |
1.8 |
</pre> |
| 587 |
|
|
|
| 588 |
|
|
<p> |
| 589 |
|
|
If you want to set even more features, check out the <uri |
| 590 |
|
|
link="http://dri.sourceforge.net/doc/dri_driver_features.phtml">features |
| 591 |
|
|
listing</uri> on the DRI Web site. |
| 592 |
|
|
</p> |
| 593 |
|
|
|
| 594 |
|
|
</body> |
| 595 |
|
|
</section> |
| 596 |
peesh |
1.1 |
</chapter> |
| 597 |
|
|
|
| 598 |
|
|
<chapter> |
| 599 |
swift |
1.8 |
<title>Troubleshooting</title> |
| 600 |
|
|
<section> |
| 601 |
|
|
<title>It doesn't work. I just recompiled my kernel or switched to a new one.</title> |
| 602 |
|
|
<body> |
| 603 |
|
|
|
| 604 |
|
|
<p> |
| 605 |
|
|
Whenever you rebuild your kernel or switch to another kernel, you'll have to |
| 606 |
|
|
rebuild the kernel module. Note that you don't need to remerge xfree, but you |
| 607 |
|
|
will need to remerge xfree-drm. |
| 608 |
|
|
</p> |
| 609 |
|
|
|
| 610 |
|
|
</body> |
| 611 |
|
|
</section> |
| 612 |
|
|
|
| 613 |
|
|
<section> |
| 614 |
|
|
<title>It doesn't work. I don't have rendering, and I can't tell why.</title> |
| 615 |
|
|
<body> |
| 616 |
|
|
|
| 617 |
|
|
<p> |
| 618 |
|
|
Try <c>insmod radeon</c> before you start the X server. Also, try building |
| 619 |
|
|
agpgart into the kernel instead of as a module. |
| 620 |
|
|
</p> |
| 621 |
|
|
|
| 622 |
|
|
</body> |
| 623 |
|
|
</section> |
| 624 |
|
|
<section> |
| 625 |
cam |
1.13 |
<title>When I startx, I get this error: "[drm] failed to load kernel module agpgart"</title> |
| 626 |
swift |
1.8 |
<body> |
| 627 |
|
|
|
| 628 |
|
|
<p> |
| 629 |
|
|
That's because you compiled agpgart into the kernel instead of as a module. |
| 630 |
|
|
Ignore it unless you're having problems. |
| 631 |
|
|
</p> |
| 632 |
|
|
|
| 633 |
|
|
</body> |
| 634 |
|
|
</section> |
| 635 |
|
|
<section> |
| 636 |
cam |
1.13 |
<title>Direct rendering doesn't work, and in /var/log/XFree86.0.log I have an error about driver version too low.</title> |
| 637 |
swift |
1.8 |
<body> |
| 638 |
|
|
|
| 639 |
|
|
<p> |
| 640 |
|
|
You aren't using the xfree-drm driver. Check if you compiled DRM and the driver |
| 641 |
|
|
into the kernel; you shouldn't have. |
| 642 |
|
|
</p> |
| 643 |
|
|
|
| 644 |
|
|
</body> |
| 645 |
|
|
</section> |
| 646 |
|
|
<section> |
| 647 |
|
|
<title>I have a Radeon, and I want TV-Out.</title> |
| 648 |
|
|
<body> |
| 649 |
|
|
|
| 650 |
|
|
<p> |
| 651 |
|
|
Check out ati-gatos drivers. <c>emerge -s gatos</c>. |
| 652 |
|
|
</p> |
| 653 |
|
|
|
| 654 |
|
|
</body> |
| 655 |
|
|
</section> |
| 656 |
|
|
<section> |
| 657 |
|
|
<title>It doesn't work. My card is so incredibly new and cool that it isn't supported at all.</title> |
| 658 |
|
|
<body> |
| 659 |
|
|
|
| 660 |
|
|
<p> |
| 661 |
|
|
Try out the binary drivers. For ati-drivers, a listing is at |
| 662 |
|
|
<uri>http://www.schneider-digital.de/html/download_ati.html</uri>. If those |
| 663 |
|
|
don't support it, use fbdev. It's slow, but it works. |
| 664 |
|
|
</p> |
| 665 |
|
|
|
| 666 |
|
|
</body> |
| 667 |
|
|
</section> |
| 668 |
|
|
<section> |
| 669 |
|
|
<title>I have a PCI card and it doesn't work. Help!</title> |
| 670 |
|
|
<body> |
| 671 |
|
|
|
| 672 |
|
|
<p> |
| 673 |
|
|
In section "Device" enable ForcePCIMode. |
| 674 |
|
|
</p> |
| 675 |
|
|
|
| 676 |
swift |
1.9 |
<pre caption="Enabling ForcePCIMode"> |
| 677 |
swift |
1.8 |
Option "ForcePCIMode" "True" |
| 678 |
|
|
</pre> |
| 679 |
|
|
|
| 680 |
|
|
</body> |
| 681 |
|
|
</section> |
| 682 |
peesh |
1.1 |
</chapter> |
| 683 |
|
|
|
| 684 |
swift |
1.8 |
<chapter> |
| 685 |
|
|
<title>Acknowledgments</title> |
| 686 |
|
|
<section> |
| 687 |
|
|
<body> |
| 688 |
|
|
|
| 689 |
|
|
<ol> |
| 690 |
|
|
<li> |
| 691 |
|
|
Christopher Webber for suggesting a troubleshooting question about changing |
| 692 |
|
|
or recompiling kernels |
| 693 |
|
|
</li> |
| 694 |
|
|
<li> |
| 695 |
|
|
Steve, for suggesting consistency between the cases of dri and DRI in |
| 696 |
|
|
XF86Config |
| 697 |
|
|
</li> |
| 698 |
|
|
</ol> |
| 699 |
peesh |
1.1 |
|
| 700 |
swift |
1.8 |
</body> |
| 701 |
|
|
</section> |
| 702 |
swift |
1.7 |
</chapter> |
| 703 |
|
|
|
| 704 |
swift |
1.8 |
<chapter> |
| 705 |
|
|
<title>References</title> |
| 706 |
|
|
<section> |
| 707 |
|
|
<body> |
| 708 |
|
|
|
| 709 |
|
|
<ol> |
| 710 |
|
|
<li>http://forums.gentoo.org/viewtopic.php?t=46681</li> |
| 711 |
|
|
<li>http://forums.gentoo.org/viewtopic.php?t=29264</li> |
| 712 |
|
|
<li>http://dri.sourceforge.net/</li> |
| 713 |
|
|
<li>http://www.retinalburn.net/linux/dri_status.html</li> |
| 714 |
|
|
</ol> |
| 715 |
swift |
1.7 |
|
| 716 |
swift |
1.8 |
</body> |
| 717 |
|
|
</section> |
| 718 |
peesh |
1.1 |
</chapter> |
| 719 |
|
|
</guide> |