Clone of mesa.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vmware-guest.html 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  5. <title>VMware guest GL driver</title>
  6. <link rel="stylesheet" type="text/css" href="mesa.css">
  7. </head>
  8. <body>
  9. <div class="header">
  10. <h1>The Mesa 3D Graphics Library</h1>
  11. </div>
  12. <iframe src="contents.html"></iframe>
  13. <div class="content">
  14. <h1>VMware guest GL driver</h1>
  15. <p>
  16. This page describes how to build, install and use the
  17. <a href="http://www.vmware.com/">VMware</a> guest GL driver
  18. (aka the SVGA or SVGA3D driver) for Linux using the latest source code.
  19. This driver gives a Linux virtual machine access to the host's GPU for
  20. hardware-accelerated 3D.
  21. VMware Workstation running on Linux or Windows and VMware Fusion running on
  22. MacOS are all supported.
  23. </p>
  24. <p>
  25. End users shouldn't have to go through all these steps once the driver is
  26. included in newer Linux distributions.
  27. </p>
  28. <p>
  29. For more information about the X components see these wiki pages at x.org:
  30. </p>
  31. <ul>
  32. <li><a href="http://wiki.x.org/wiki/vmware">
  33. Driver Overview</a>
  34. <li><a href="http://wiki.x.org/wiki/vmware/vmware3D">
  35. xf86-video-vmware Details</a>
  36. </ul>
  37. <h2>Components</h2>
  38. The components involved in this include:
  39. <ul>
  40. <li>Linux kernel module: vmwgfx
  41. <li>X server 2D driver: xf86-video-vmware
  42. <li>User-space libdrm library
  43. <li>Mesa/gallium OpenGL driver: "svga"
  44. </ul>
  45. <h2>Prerequisites</h2>
  46. <ul>
  47. <li>Kernel version at least 2.6.25
  48. <li>Xserver version at least 1.7
  49. <li>Ubuntu: For ubuntu you need to install a number of build dependencies.
  50. <pre>
  51. sudo apt-get install git-core
  52. sudo apt-get install automake libtool libpthread-stubs0-dev
  53. sudo apt-get install xserver-xorg-dev x11proto-xinerama-dev libx11-xcb-dev
  54. sudo apt-get install libxcb-glx0-dev libxrender-dev
  55. sudo apt-get build-dep libgl1-mesa-dri libxcb-glx0-dev
  56. </pre>
  57. <li>Fedora: For Fedora you also need to install a number of build dependencies.
  58. <pre>
  59. sudo yum install mesa-libGL-devel xorg-x11-server-devel xorg-x11-util-macros
  60. sudo yum install libXrender-devel.i686
  61. sudo yum install automake gcc libtool expat-devel kernel-devel git-core
  62. sudo yum install makedepend flex bison
  63. </pre>
  64. </ul>
  65. <p>
  66. Depending on your Linux distro, other packages may be needed.
  67. The configure scripts should tell you what's missing.
  68. </p>
  69. <h2>Getting the Latest Source Code</h2>
  70. Begin by saving your current directory location:
  71. <pre>
  72. export TOP=$PWD
  73. </pre>
  74. <ul>
  75. <li>Mesa/Gallium master branch. This code is used to build libGL, and the direct rendering svga driver for libGL, vmwgfx_dri.so, and the X acceleration library libxatracker.so.x.x.x.
  76. <pre>
  77. git clone git://anongit.freedesktop.org/git/mesa/mesa
  78. </pre>
  79. <li>VMware Linux guest kernel module. Note that this repo contains the complete DRM and TTM code. The vmware-specific driver is really only the files prefixed with vmwgfx.
  80. <pre>
  81. git clone git://anongit.freedesktop.org/git/mesa/vmwgfx
  82. </pre>
  83. <li>libdrm, A user-space library that interfaces with drm. Most distros ship with this driver. Safest bet is really to replace the system one. Optionally you can point LIBDRM_CFLAGS and LIBDRM_LIBS to the libdrm-2.4.22 package in toolchain. But here, we replace:
  84. <pre>
  85. git clone git://anongit.freedesktop.org/git/mesa/drm
  86. </pre>
  87. <li>xf86-video-vmware. The chainloading driver, vmware_drv.so, the legacy driver vmwlegacy_drv.so, and the vmwgfx driver vmwgfx_drv.so.
  88. <pre>
  89. git clone git://anongit.freedesktop.org/git/xorg/driver/xf86-video-vmware
  90. </pre>
  91. </ul>
  92. <h2>Building the Code</h2>
  93. <ul>
  94. <li>Build libdrm: If you're on a 32-bit system, you should skip the --libdir configure option. Note also the comment about toolchain libdrm above.
  95. <pre>
  96. cd $TOP/drm
  97. ./autogen.sh --prefix=/usr --enable-vmwgfx-experimental-api --libdir=/usr/lib64
  98. make
  99. sudo make install
  100. </pre>
  101. <li>Build Mesa and the vmwgfx_dri.so driver, the vmwgfx_drv.so xorg driver, the X acceleration library libxatracker.
  102. The vmwgfx_dri.so is used by the OpenGL libraries during direct rendering,
  103. and by the Xorg server during accelerated indirect GL rendering.
  104. The libxatracker library is used exclusively by the X server to do render,
  105. copy and video acceleration:
  106. <br>
  107. The following configure options doesn't build the EGL system.
  108. <br>
  109. As before, if you're on a 32-bit system, you should skip the --libdir
  110. configure option.
  111. <pre>
  112. cd $TOP/mesa
  113. ./autogen.sh --prefix=/usr --libdir=/usr/lib64 --with-gallium-drivers=svga --with-dri-drivers= --enable-xa
  114. make
  115. sudo make install
  116. </pre>
  117. Note that you may have to install other packages that Mesa depends upon
  118. if they're not installed in your system. You should be told what's missing.
  119. <br>
  120. <br>
  121. <li>xf86-video-vmware: Now, once libxatracker is installed, we proceed with building and replacing the current Xorg driver. First check if your system is 32- or 64-bit. If you're building for a 32-bit system, you will not be needing the --libdir=/usr/lib64 option to autogen.
  122. <pre>
  123. cd $TOP/xf86-video-vmware
  124. ./autogen.sh --prefix=/usr --libdir=/usr/lib64
  125. make
  126. sudo make install
  127. </pre>
  128. <li>vmwgfx kernel module. First make sure that any old version of this kernel module is removed from the system by issuing
  129. <pre>
  130. sudo rm /lib/modules/`uname -r`/kernel/drivers/gpu/drm/vmwgfx.ko*
  131. </pre>
  132. Then
  133. <pre>
  134. cd $TOP/vmwgfx
  135. make
  136. sudo make install
  137. sudo cp 00-vmwgfx.rules /etc/udev/rules.d
  138. sudo depmod -ae
  139. </pre>
  140. </ul>
  141. Now try to load the kernel module by issuing
  142. <pre>
  143. sudo modprobe vmwgfx</pre>
  144. Then type
  145. <pre>
  146. dmesg</pre>
  147. to watch the debug output. It should contain a number of lines prefixed with "[vmwgfx]".
  148. <p>
  149. Then restart the Xserver (or reboot).
  150. The lines starting with "vmwlegacy" or "VMWARE" in the file /var/log/Xorg.0.log
  151. should now have been replaced with lines starting with "vmwgfx", indicating that
  152. the new Xorg driver is in use.
  153. </p>
  154. <h2>Running OpenGL Programs</h2>
  155. <p>
  156. In a shell, run 'glxinfo' and look for the following to verify that the
  157. driver is working:
  158. </p>
  159. <pre>
  160. OpenGL vendor string: VMware, Inc.
  161. OpenGL renderer string: Gallium 0.4 on SVGA3D; build: RELEASE;
  162. OpenGL version string: 2.1 Mesa 8.0
  163. </pre>
  164. <p>
  165. If you don't see this, try setting this environment variable:
  166. <pre>
  167. export LIBGL_DEBUG=verbose</pre>
  168. <p>
  169. then rerun glxinfo and examine the output for error messages.
  170. </p>
  171. </div>
  172. </body>
  173. </html>