blob: 537b73a9a99be93f5d8d4a82400cde82dfd0114a [file] [log] [blame]
Andreas Bollecd5c7c2012-06-12 09:05:03 +02001<!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">
Erik Faye-Lund6e0e5502019-05-06 13:13:11 +02005 <title>VMware SVGA3D Guest Driver</title>
Andreas Bollecd5c7c2012-06-12 09:05:03 +02006 <link rel="stylesheet" type="text/css" href="mesa.css">
7</head>
Brian Paul27915702012-01-13 10:54:22 -07008<body>
9
Andreas Bollb5da52a2012-09-18 18:57:02 +020010<div class="header">
11 <h1>The Mesa 3D Graphics Library</h1>
12</div>
13
14<iframe src="contents.html"></iframe>
15<div class="content">
16
Erik Faye-Lund6e0e5502019-05-06 13:13:11 +020017<h1>VMware SVGA3D Guest Driver</h1>
Brian Paul27915702012-01-13 10:54:22 -070018
19<p>
Brian Paul7028e6d2012-02-09 18:06:06 -070020This page describes how to build, install and use the
Eric Engestrom30cf9ff2017-02-09 02:10:17 +000021<a href="https://www.vmware.com/">VMware</a> guest GL driver
Brian Paul27915702012-01-13 10:54:22 -070022(aka the SVGA or SVGA3D driver) for Linux using the latest source code.
23This driver gives a Linux virtual machine access to the host's GPU for
24hardware-accelerated 3D.
25VMware Workstation running on Linux or Windows and VMware Fusion running on
26MacOS are all supported.
27</p>
28
29<p>
Brian Paul4fd31482015-08-13 13:50:13 -070030With the August 2015 Workstation 12 / Fusion 8 releases, OpenGL 3.3
31is supported in the guest.
32This requires:
Erik Faye-Lund92917e82019-04-18 15:38:01 +020033</p>
Brian Paul4fd31482015-08-13 13:50:13 -070034<ul>
35<li>The VM is configured for virtual hardware version 12.
36<li>The host OS, GPU and graphics driver supports DX11 (Windows) or
37 OpenGL 4.0 (Linux, Mac)
38<li>On Linux, the vmwgfx kernel module must be version 2.9.0 or later.
39<li>A recent version of Mesa with the updated svga gallium driver.
40</ul>
Brian Paul4fd31482015-08-13 13:50:13 -070041
42<p>
43Otherwise, OpenGL 2.1 is supported.
44</p>
45
46<p>
Brian Paul51627352018-09-10 11:29:12 -060047With the Fall 2018 Workstation 15 / Fusion 11 releases, additional
48features are supported in the driver:
49<ul>
50<li>Multisample antialiasing (2x, 4x)
51<li>GL_ARB/AMD_draw_buffers_blend
52<li>GL_ARB_sample_shading
53<li>GL_ARB_texture_cube_map_array
54<li>GL_ARB_texture_gather
55<li>GL_ARB_texture_query_lod
56<li>GL_EXT/OES_draw_buffers_indexed
57</ul>
58<p>
59This requires version 2.15.0 or later of the vmwgfx kernel module and
60the VM must be configured for hardware version 16 or later.
61</p>
62
63<p>
Brian Paul4fd31482015-08-13 13:50:13 -070064OpenGL 3.3 support can be disabled by setting the environment variable
65SVGA_VGPU10=0.
66You will then have OpenGL 2.1 support.
67This may be useful to work around application bugs (such as incorrect use
68of the OpenGL 3.x core profile).
69</p>
70
71<p>
Brian Paulc47207d2014-01-07 10:50:21 -070072Most modern Linux distros include the SVGA3D driver so end users shouldn't
73be concerned with this information.
74But if your distro lacks the driver or you want to update to the latest code
75these instructions explain what to do.
Brian Paul27915702012-01-13 10:54:22 -070076</p>
77
Brian Paul548526f2012-01-13 13:45:58 -070078<p>
79For more information about the X components see these wiki pages at x.org:
80</p>
81<ul>
Eric Engestrom30cf9ff2017-02-09 02:10:17 +000082<li><a href="https://wiki.x.org/wiki/vmware">
Brian Paul548526f2012-01-13 13:45:58 -070083Driver Overview</a>
Eric Engestrom30cf9ff2017-02-09 02:10:17 +000084<li><a href="https://wiki.x.org/wiki/vmware/vmware3D">
Brian Paul548526f2012-01-13 13:45:58 -070085xf86-video-vmware Details</a>
86</ul>
Brian Paul27915702012-01-13 10:54:22 -070087
88
89<h2>Components</h2>
90
91The components involved in this include:
92<ul>
93<li>Linux kernel module: vmwgfx
94<li>X server 2D driver: xf86-video-vmware
95<li>User-space libdrm library
96<li>Mesa/gallium OpenGL driver: "svga"
97</ul>
98
Brian Paulc47207d2014-01-07 10:50:21 -070099<p>
100All of these components reside in the guest Linux virtual machine.
101On the host, all you're doing is running VMware
Eric Engestrom30cf9ff2017-02-09 02:10:17 +0000102<a href="https://www.vmware.com/products/workstation/">Workstation</a> or
103<a href="https://www.vmware.com/products/fusion/">Fusion</a>.
Brian Paulc47207d2014-01-07 10:50:21 -0700104</p>
105
Brian Paul27915702012-01-13 10:54:22 -0700106
107<h2>Prerequisites</h2>
108
109<ul>
110<li>Kernel version at least 2.6.25
111<li>Xserver version at least 1.7
112<li>Ubuntu: For ubuntu you need to install a number of build dependencies.
113 <pre>
114 sudo apt-get install git-core
115 sudo apt-get install automake libtool libpthread-stubs0-dev
Brian Paul481011f2012-01-16 09:59:20 -0700116 sudo apt-get install xserver-xorg-dev x11proto-xinerama-dev libx11-xcb-dev
117 sudo apt-get install libxcb-glx0-dev libxrender-dev
Brian Paul27915702012-01-13 10:54:22 -0700118 sudo apt-get build-dep libgl1-mesa-dri libxcb-glx0-dev
119 </pre>
120<li>Fedora: For Fedora you also need to install a number of build dependencies.
121 <pre>
122 sudo yum install mesa-libGL-devel xorg-x11-server-devel xorg-x11-util-macros
Brian Paul481011f2012-01-16 09:59:20 -0700123 sudo yum install libXrender-devel.i686
Brian Paul27915702012-01-13 10:54:22 -0700124 sudo yum install automake gcc libtool expat-devel kernel-devel git-core
Brian Paul481011f2012-01-16 09:59:20 -0700125 sudo yum install makedepend flex bison
Brian Paul27915702012-01-13 10:54:22 -0700126 </pre>
127</ul>
128
129<p>
130Depending on your Linux distro, other packages may be needed.
131The configure scripts should tell you what's missing.
132</p>
133
134
135
136<h2>Getting the Latest Source Code</h2>
137
138Begin by saving your current directory location:
139 <pre>
140 export TOP=$PWD
141 </pre>
142
143<ul>
144<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.
145 <pre>
Eric Engestromae2694e2018-09-21 14:39:53 +0100146 git clone https://gitlab.freedesktop.org/mesa/mesa.git
Brian Paul27915702012-01-13 10:54:22 -0700147 </pre>
148<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.
149 <pre>
150 git clone git://anongit.freedesktop.org/git/mesa/vmwgfx
151 </pre>
Brian Paul133383f2013-01-15 13:00:09 -0700152<li>libdrm, a user-space library that interfaces with drm.
153Most distros ship with this but it's safest to install a newer version.
154To get the latest code from git:
Brian Paul27915702012-01-13 10:54:22 -0700155 <pre>
Eric Engestromae2694e2018-09-21 14:39:53 +0100156 git clone https://gitlab.freedesktop.org/mesa/drm.git
Brian Paul27915702012-01-13 10:54:22 -0700157 </pre>
158<li>xf86-video-vmware. The chainloading driver, vmware_drv.so, the legacy driver vmwlegacy_drv.so, and the vmwgfx driver vmwgfx_drv.so.
159 <pre>
160 git clone git://anongit.freedesktop.org/git/xorg/driver/xf86-video-vmware
161 </pre>
162</ul>
163
164
165<h2>Building the Code</h2>
166
167<ul>
Brian Paul00046392015-11-13 07:59:42 -0700168<li>
169Determine where the GL-related libraries reside on your system and set
170the LIBDIR environment variable accordingly.
171<br><br>
172For 32-bit Ubuntu systems:
173<pre>
174 export LIBDIR=/usr/lib/i386-linux-gnu
175</pre>
176For 64-bit Ubuntu systems:
177<pre>
178 export LIBDIR=/usr/lib/x86_64-linux-gnu
179</pre>
180For 32-bit Fedora systems:
181<pre>
182 export LIBDIR=/usr/lib
183</pre>
184For 64-bit Fedora systems:
185<pre>
186 export LIBDIR=/usr/lib64
187</pre>
188
189</li>
190
191<li>Build libdrm:
Brian Paul27915702012-01-13 10:54:22 -0700192 <pre>
193 cd $TOP/drm
Dylan Bakerb165ac92019-04-08 12:56:51 -0700194 meson builddir --prefix=/usr --libdir=${LIBDIR}
195 ninja -C builddir
196 sudo ninja -C builddir install
Brian Paul27915702012-01-13 10:54:22 -0700197 </pre>
198<li>Build Mesa and the vmwgfx_dri.so driver, the vmwgfx_drv.so xorg driver, the X acceleration library libxatracker.
199The vmwgfx_dri.so is used by the OpenGL libraries during direct rendering,
200and by the Xorg server during accelerated indirect GL rendering.
201The libxatracker library is used exclusively by the X server to do render,
202copy and video acceleration:
203<br>
204The following configure options doesn't build the EGL system.
Brian Paul27915702012-01-13 10:54:22 -0700205 <pre>
206 cd $TOP/mesa
Dylan Bakerb165ac92019-04-08 12:56:51 -0700207 meson builddir --prefix=/usr --libdir=${LIBDIR} -Dgallium-drivers=svga -Ddri-drivers=swrast -Dgallium-xa=true -Ddri3=false
208 ninja -C builddir
209 sudo ninja -C builddir install
Brian Paul27915702012-01-13 10:54:22 -0700210 </pre>
211
212Note that you may have to install other packages that Mesa depends upon
213if they're not installed in your system. You should be told what's missing.
214<br>
215<br>
216
Brian Paul00046392015-11-13 07:59:42 -0700217<li>xf86-video-vmware: Now, once libxatracker is installed, we proceed with
218building and replacing the current Xorg driver.
219First check if your system is 32- or 64-bit.
Brian Paul27915702012-01-13 10:54:22 -0700220 <pre>
221 cd $TOP/xf86-video-vmware
Brian Paul00046392015-11-13 07:59:42 -0700222 ./autogen.sh --prefix=/usr --libdir=${LIBDIR}
Brian Paul27915702012-01-13 10:54:22 -0700223 make
224 sudo make install
225 </pre>
Brian Paul00046392015-11-13 07:59:42 -0700226
Brian Paul27915702012-01-13 10:54:22 -0700227<li>vmwgfx kernel module. First make sure that any old version of this kernel module is removed from the system by issuing
Brian Paul00046392015-11-13 07:59:42 -0700228<pre>
Brian Paul27915702012-01-13 10:54:22 -0700229 sudo rm /lib/modules/`uname -r`/kernel/drivers/gpu/drm/vmwgfx.ko*
Brian Paul00046392015-11-13 07:59:42 -0700230</pre>
231Build and install:
232<pre>
Brian Paul27915702012-01-13 10:54:22 -0700233 cd $TOP/vmwgfx
234 make
235 sudo make install
Brian Paul00046392015-11-13 07:59:42 -0700236 sudo depmod -a
237</pre>
238If you're using a Ubuntu OS:
239<pre>
240 sudo update-initramfs -u
241</pre>
242If you're using a Fedora OS:
243<pre>
244 sudo dracut --force
245</pre>
246Add 'vmwgfx' to the /etc/modules file:
247<pre>
248 echo vmwgfx | sudo tee -a /etc/modules
249</pre>
Brian Pauld83336c2013-01-28 17:44:46 -0700250
251Note: some distros put DRM kernel drivers in different directories.
252For example, sometimes vmwgfx.ko might be found in
253<code>/lib/modules/{version}/extra/vmwgfx.ko</code> or in
254<code>/lib/modules/{version}/kernel/drivers/gpu/drm/vmwgfx/vmwgfx.ko</code>.
255<p>
256After installing vmwgfx.ko you might want to run the following command to
257check that the new kernel module is in the expected place:
258<pre>
259 find /lib/modules -name vmwgfx.ko -exec ls -l '{}' \;
260</pre>
261If you see the kernel module listed in more than one place, you may need to
262move things around.
263<p>
264Finally, if you update your kernel you'll probably have to rebuild and
265reinstall the vmwgfx.ko module again.
Brian Paul27915702012-01-13 10:54:22 -0700266</ul>
267
268
269Now try to load the kernel module by issuing
270 <pre>
271 sudo modprobe vmwgfx</pre>
272Then type
273 <pre>
274 dmesg</pre>
275to watch the debug output. It should contain a number of lines prefixed with "[vmwgfx]".
276
277<p>
278Then restart the Xserver (or reboot).
279The lines starting with "vmwlegacy" or "VMWARE" in the file /var/log/Xorg.0.log
280should now have been replaced with lines starting with "vmwgfx", indicating that
281the new Xorg driver is in use.
282</p>
283
284
285<h2>Running OpenGL Programs</h2>
286
287<p>
288In a shell, run 'glxinfo' and look for the following to verify that the
289driver is working:
290</p>
291
292<pre>
293OpenGL vendor string: VMware, Inc.
294OpenGL renderer string: Gallium 0.4 on SVGA3D; build: RELEASE;
295OpenGL version string: 2.1 Mesa 8.0
296</pre>
297
Andreas Bolldf2be222012-06-12 09:05:22 +0200298<p>
Brian Paul27915702012-01-13 10:54:22 -0700299If you don't see this, try setting this environment variable:
300 <pre>
301 export LIBGL_DEBUG=verbose</pre>
Andreas Bolldf2be222012-06-12 09:05:22 +0200302<p>
Brian Paul27915702012-01-13 10:54:22 -0700303then rerun glxinfo and examine the output for error messages.
304</p>
305
Brian Paul4fd31482015-08-13 13:50:13 -0700306<p>
307If OpenGL 3.3 is not working (you only get OpenGL 2.1):
308</p>
309<ul>
310<li>Make sure the VM uses hardware version 12.
311<li>Make sure the vmwgfx kernel module is version 2.9.0 or later.
312<li>Check the vmware.log file for errors.
313<li>Run 'dmesg | grep vmwgfx' and look for "DX: yes".
Erik Faye-Lund3bda82b2019-04-18 15:39:35 +0200314</ul>
Brian Paul4fd31482015-08-13 13:50:13 -0700315
Andreas Bollb5da52a2012-09-18 18:57:02 +0200316</div>
Brian Paul27915702012-01-13 10:54:22 -0700317</body>
318</html>