blob: 142bac976919f6966d2ca26935950a34be96533a [file] [log] [blame]
Yu Zhangcf9d2892015-02-10 19:05:47 +08001/*
2 * Copyright(c) 2011-2015 Intel Corporation. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24#include "intel_drv.h"
25#include "i915_vgpu.h"
26
27/**
28 * DOC: Intel GVT-g guest support
29 *
30 * Intel GVT-g is a graphics virtualization technology which shares the
31 * GPU among multiple virtual machines on a time-sharing basis. Each
32 * virtual machine is presented a virtual GPU (vGPU), which has equivalent
33 * features as the underlying physical GPU (pGPU), so i915 driver can run
34 * seamlessly in a virtual machine. This file provides vGPU specific
35 * optimizations when running in a virtual machine, to reduce the complexity
36 * of vGPU emulation and to improve the overall performance.
37 *
38 * A primary function introduced here is so-called "address space ballooning"
39 * technique. Intel GVT-g partitions global graphics memory among multiple VMs,
40 * so each VM can directly access a portion of the memory without hypervisor's
41 * intervention, e.g. filling textures or queuing commands. However with the
42 * partitioning an unmodified i915 driver would assume a smaller graphics
43 * memory starting from address ZERO, then requires vGPU emulation module to
44 * translate the graphics address between 'guest view' and 'host view', for
45 * all registers and command opcodes which contain a graphics memory address.
46 * To reduce the complexity, Intel GVT-g introduces "address space ballooning",
47 * by telling the exact partitioning knowledge to each guest i915 driver, which
48 * then reserves and prevents non-allocated portions from allocation. Thus vGPU
49 * emulation module only needs to scan and validate graphics addresses without
50 * complexity of address translation.
51 *
52 */
53
54/**
55 * i915_check_vgpu - detect virtual GPU
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +010056 * @dev_priv: i915 device private
Yu Zhangcf9d2892015-02-10 19:05:47 +080057 *
58 * This function is called at the initialization stage, to detect whether
59 * running on a vGPU.
60 */
Chris Wilsondc979972016-05-10 14:10:04 +010061void i915_check_vgpu(struct drm_i915_private *dev_priv)
Yu Zhangcf9d2892015-02-10 19:05:47 +080062{
Yu Zhangcf9d2892015-02-10 19:05:47 +080063 uint64_t magic;
64 uint32_t version;
65
66 BUILD_BUG_ON(sizeof(struct vgt_if) != VGT_PVINFO_SIZE);
67
Chris Wilsondc979972016-05-10 14:10:04 +010068 if (!IS_HASWELL(dev_priv))
Yu Zhangcf9d2892015-02-10 19:05:47 +080069 return;
70
Ville Syrjälä75aa3f62015-10-22 15:34:56 +030071 magic = __raw_i915_read64(dev_priv, vgtif_reg(magic));
Yu Zhangcf9d2892015-02-10 19:05:47 +080072 if (magic != VGT_MAGIC)
73 return;
74
75 version = INTEL_VGT_IF_VERSION_ENCODE(
Ville Syrjälä75aa3f62015-10-22 15:34:56 +030076 __raw_i915_read16(dev_priv, vgtif_reg(version_major)),
77 __raw_i915_read16(dev_priv, vgtif_reg(version_minor)));
Yu Zhangcf9d2892015-02-10 19:05:47 +080078 if (version != INTEL_VGT_IF_VERSION) {
79 DRM_INFO("VGT interface version mismatch!\n");
80 return;
81 }
82
83 dev_priv->vgpu.active = true;
84 DRM_INFO("Virtual GPU for Intel GVT-g detected.\n");
85}
Yu Zhang5dda8fa2015-02-10 19:05:48 +080086
87struct _balloon_info_ {
88 /*
89 * There are up to 2 regions per mappable/unmappable graphic
90 * memory that might be ballooned. Here, index 0/1 is for mappable
91 * graphic memory, 2/3 for unmappable graphic memory.
92 */
93 struct drm_mm_node space[4];
94};
95
96static struct _balloon_info_ bl_info;
97
98/**
99 * intel_vgt_deballoon - deballoon reserved graphics address trunks
Daniel Vetter62f90b32016-07-15 21:48:07 +0200100 * @dev_priv: i915 device private data
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800101 *
102 * This function is called to deallocate the ballooned-out graphic memory, when
103 * driver is unloaded or when ballooning fails.
104 */
Zhi Wangb02d22a2016-06-16 08:06:59 -0400105void intel_vgt_deballoon(struct drm_i915_private *dev_priv)
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800106{
107 int i;
108
Zhi Wangb02d22a2016-06-16 08:06:59 -0400109 if (!intel_vgpu_active(dev_priv))
110 return;
111
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800112 DRM_DEBUG("VGT deballoon.\n");
113
114 for (i = 0; i < 4; i++) {
115 if (bl_info.space[i].allocated)
116 drm_mm_remove_node(&bl_info.space[i]);
117 }
118
119 memset(&bl_info, 0, sizeof(bl_info));
120}
121
122static int vgt_balloon_space(struct drm_mm *mm,
123 struct drm_mm_node *node,
124 unsigned long start, unsigned long end)
125{
126 unsigned long size = end - start;
127
128 if (start == end)
129 return -EINVAL;
130
131 DRM_INFO("balloon space: range [ 0x%lx - 0x%lx ] %lu KiB.\n",
132 start, end, size / 1024);
133
134 node->start = start;
135 node->size = size;
136
137 return drm_mm_reserve_node(mm, node);
138}
139
140/**
141 * intel_vgt_balloon - balloon out reserved graphics address trunks
Daniel Vetter62f90b32016-07-15 21:48:07 +0200142 * @dev_priv: i915 device private data
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800143 *
144 * This function is called at the initialization stage, to balloon out the
145 * graphic address space allocated to other vGPUs, by marking these spaces as
146 * reserved. The ballooning related knowledge(starting address and size of
147 * the mappable/unmappable graphic memory) is described in the vgt_if structure
148 * in a reserved mmio range.
149 *
150 * To give an example, the drawing below depicts one typical scenario after
151 * ballooning. Here the vGPU1 has 2 pieces of graphic address spaces ballooned
152 * out each for the mappable and the non-mappable part. From the vGPU1 point of
153 * view, the total size is the same as the physical one, with the start address
154 * of its graphic space being zero. Yet there are some portions ballooned out(
155 * the shadow part, which are marked as reserved by drm allocator). From the
156 * host point of view, the graphic address space is partitioned by multiple
Daniel Vetterda5335b2016-05-31 22:55:13 +0200157 * vGPUs in different VMs. ::
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800158 *
159 * vGPU1 view Host view
160 * 0 ------> +-----------+ +-----------+
Daniel Vetterda5335b2016-05-31 22:55:13 +0200161 * ^ |###########| | vGPU3 |
162 * | |###########| +-----------+
163 * | |###########| | vGPU2 |
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800164 * | +-----------+ +-----------+
165 * mappable GM | available | ==> | vGPU1 |
166 * | +-----------+ +-----------+
Daniel Vetterda5335b2016-05-31 22:55:13 +0200167 * | |###########| | |
168 * v |###########| | Host |
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800169 * +=======+===========+ +===========+
Daniel Vetterda5335b2016-05-31 22:55:13 +0200170 * ^ |###########| | vGPU3 |
171 * | |###########| +-----------+
172 * | |###########| | vGPU2 |
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800173 * | +-----------+ +-----------+
174 * unmappable GM | available | ==> | vGPU1 |
175 * | +-----------+ +-----------+
Daniel Vetterda5335b2016-05-31 22:55:13 +0200176 * | |###########| | |
177 * | |###########| | Host |
178 * v |###########| | |
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800179 * total GM size ------> +-----------+ +-----------+
180 *
181 * Returns:
182 * zero on success, non-zero if configuration invalid or ballooning failed
183 */
Zhi Wangb02d22a2016-06-16 08:06:59 -0400184int intel_vgt_balloon(struct drm_i915_private *dev_priv)
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800185{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300186 struct i915_ggtt *ggtt = &dev_priv->ggtt;
187 unsigned long ggtt_end = ggtt->base.start + ggtt->base.total;
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800188
189 unsigned long mappable_base, mappable_size, mappable_end;
190 unsigned long unmappable_base, unmappable_size, unmappable_end;
191 int ret;
192
Zhi Wangb02d22a2016-06-16 08:06:59 -0400193 if (!intel_vgpu_active(dev_priv))
194 return 0;
195
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800196 mappable_base = I915_READ(vgtif_reg(avail_rs.mappable_gmadr.base));
197 mappable_size = I915_READ(vgtif_reg(avail_rs.mappable_gmadr.size));
198 unmappable_base = I915_READ(vgtif_reg(avail_rs.nonmappable_gmadr.base));
199 unmappable_size = I915_READ(vgtif_reg(avail_rs.nonmappable_gmadr.size));
200
201 mappable_end = mappable_base + mappable_size;
202 unmappable_end = unmappable_base + unmappable_size;
203
204 DRM_INFO("VGT ballooning configuration:\n");
205 DRM_INFO("Mappable graphic memory: base 0x%lx size %ldKiB\n",
206 mappable_base, mappable_size / 1024);
207 DRM_INFO("Unmappable graphic memory: base 0x%lx size %ldKiB\n",
208 unmappable_base, unmappable_size / 1024);
209
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300210 if (mappable_base < ggtt->base.start ||
211 mappable_end > ggtt->mappable_end ||
212 unmappable_base < ggtt->mappable_end ||
213 unmappable_end > ggtt_end) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800214 DRM_ERROR("Invalid ballooning configuration!\n");
215 return -EINVAL;
216 }
217
218 /* Unmappable graphic memory ballooning */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300219 if (unmappable_base > ggtt->mappable_end) {
220 ret = vgt_balloon_space(&ggtt->base.mm,
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800221 &bl_info.space[2],
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300222 ggtt->mappable_end,
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800223 unmappable_base);
224
225 if (ret)
226 goto err;
227 }
228
229 /*
230 * No need to partition out the last physical page,
231 * because it is reserved to the guard page.
232 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300233 if (unmappable_end < ggtt_end - PAGE_SIZE) {
234 ret = vgt_balloon_space(&ggtt->base.mm,
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800235 &bl_info.space[3],
236 unmappable_end,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300237 ggtt_end - PAGE_SIZE);
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800238 if (ret)
239 goto err;
240 }
241
242 /* Mappable graphic memory ballooning */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300243 if (mappable_base > ggtt->base.start) {
244 ret = vgt_balloon_space(&ggtt->base.mm,
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800245 &bl_info.space[0],
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300246 ggtt->base.start, mappable_base);
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800247
248 if (ret)
249 goto err;
250 }
251
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300252 if (mappable_end < ggtt->mappable_end) {
253 ret = vgt_balloon_space(&ggtt->base.mm,
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800254 &bl_info.space[1],
255 mappable_end,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300256 ggtt->mappable_end);
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800257
258 if (ret)
259 goto err;
260 }
261
262 DRM_INFO("VGT balloon successfully\n");
263 return 0;
264
265err:
266 DRM_ERROR("VGT balloon fail\n");
Zhi Wangb02d22a2016-06-16 08:06:59 -0400267 intel_vgt_deballoon(dev_priv);
Yu Zhang5dda8fa2015-02-10 19:05:48 +0800268 return ret;
269}