gvt.c 7.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
22 23 24 25 26 27 28 29 30
 *
 * Authors:
 *    Kevin Tian <kevin.tian@intel.com>
 *    Eddie Dong <eddie.dong@intel.com>
 *
 * Contributors:
 *    Niu Bing <bing.niu@intel.com>
 *    Zhi Wang <zhi.a.wang@intel.com>
 *
31 32 33 34
 */

#include <linux/types.h>
#include <xen/xen.h>
35
#include <linux/kthread.h>
36 37

#include "i915_drv.h"
38
#include "gvt.h"
39 40 41 42 43 44 45 46

struct intel_gvt_host intel_gvt_host;

static const char * const supported_hypervisors[] = {
	[INTEL_GVT_HYPERVISOR_XEN] = "XEN",
	[INTEL_GVT_HYPERVISOR_KVM] = "KVM",
};

47 48 49
struct intel_gvt_io_emulation_ops intel_gvt_io_emulation_ops = {
	.emulate_cfg_read = intel_vgpu_emulate_cfg_read,
	.emulate_cfg_write = intel_vgpu_emulate_cfg_write,
Z
Zhi Wang 已提交
50 51
	.emulate_mmio_read = intel_vgpu_emulate_mmio_read,
	.emulate_mmio_write = intel_vgpu_emulate_mmio_write,
52 53
};

54 55 56 57 58 59 60 61 62 63 64 65 66 67
/**
 * intel_gvt_init_host - Load MPT modules and detect if we're running in host
 * @gvt: intel gvt device
 *
 * This function is called at the driver loading stage. If failed to find a
 * loadable MPT module or detect currently we're running in a VM, then GVT-g
 * will be disabled
 *
 * Returns:
 * Zero on success, negative error code if failed.
 *
 */
int intel_gvt_init_host(void)
{
68 69
	int ret;

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
	if (intel_gvt_host.initialized)
		return 0;

	/* Xen DOM U */
	if (xen_domain() && !xen_initial_domain())
		return -ENODEV;

	/* Try to load MPT modules for hypervisors */
	if (xen_initial_domain()) {
		/* In Xen dom0 */
		intel_gvt_host.mpt = try_then_request_module(
				symbol_get(xengt_mpt), "xengt");
		intel_gvt_host.hypervisor_type = INTEL_GVT_HYPERVISOR_XEN;
	} else {
		/* not in Xen. Try KVMGT */
		intel_gvt_host.mpt = try_then_request_module(
				symbol_get(kvmgt_mpt), "kvm");
		intel_gvt_host.hypervisor_type = INTEL_GVT_HYPERVISOR_KVM;
	}

	/* Fail to load MPT modules - bail out */
	if (!intel_gvt_host.mpt)
		return -EINVAL;

	/* Try to detect if we're running in host instead of VM. */
95 96
	ret = intel_gvt_hypervisor_detect_host();
	if (ret)
97 98 99 100 101 102 103 104 105 106 107
		return -ENODEV;

	gvt_dbg_core("Running with hypervisor %s in host mode\n",
			supported_hypervisors[intel_gvt_host.hypervisor_type]);

	intel_gvt_host.initialized = true;
	return 0;
}

static void init_device_info(struct intel_gvt *gvt)
{
108
	struct intel_gvt_device_info *info = &gvt->device_info;
109
	struct pci_dev *pdev = gvt->dev_priv->drm.pdev;
110 111 112

	if (IS_BROADWELL(gvt->dev_priv) || IS_SKYLAKE(gvt->dev_priv)) {
		info->max_support_vgpus = 8;
113
		info->cfg_space_size = 256;
114
		info->mmio_size = 2 * 1024 * 1024;
115
		info->mmio_bar = 0;
116 117 118
		info->gtt_start_offset = 8 * 1024 * 1024;
		info->gtt_entry_size = 8;
		info->gtt_entry_size_shift = 3;
Z
Zhi Wang 已提交
119 120
		info->gmadr_bytes_in_cmd = 8;
		info->max_surface_size = 36 * 1024 * 1024;
121
	}
122
	info->msi_cap_offset = pdev->msi_cap;
123 124
}

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
static int gvt_service_thread(void *data)
{
	struct intel_gvt *gvt = (struct intel_gvt *)data;
	int ret;

	gvt_dbg_core("service thread start\n");

	while (!kthread_should_stop()) {
		ret = wait_event_interruptible(gvt->service_thread_wq,
				kthread_should_stop() || gvt->service_request);

		if (kthread_should_stop())
			break;

		if (WARN_ONCE(ret, "service thread is waken up by signal.\n"))
			continue;

		if (test_and_clear_bit(INTEL_GVT_REQUEST_EMULATE_VBLANK,
					(void *)&gvt->service_request)) {
			mutex_lock(&gvt->lock);
			intel_gvt_emulate_vblank(gvt);
			mutex_unlock(&gvt->lock);
		}
	}

	return 0;
}

static void clean_service_thread(struct intel_gvt *gvt)
{
	kthread_stop(gvt->service_thread);
}

static int init_service_thread(struct intel_gvt *gvt)
{
	init_waitqueue_head(&gvt->service_thread_wq);

	gvt->service_thread = kthread_run(gvt_service_thread,
			gvt, "gvt_service_thread");
	if (IS_ERR(gvt->service_thread)) {
		gvt_err("fail to start service thread.\n");
		return PTR_ERR(gvt->service_thread);
	}
	return 0;
}

171 172 173 174 175 176 177 178 179 180
/**
 * intel_gvt_clean_device - clean a GVT device
 * @gvt: intel gvt device
 *
 * This function is called at the driver unloading stage, to free the
 * resources owned by a GVT device.
 *
 */
void intel_gvt_clean_device(struct drm_i915_private *dev_priv)
{
181
	struct intel_gvt *gvt = to_gvt(dev_priv);
182

183
	if (WARN_ON(!gvt))
184 185
		return;

186
	clean_service_thread(gvt);
Z
Zhi Wang 已提交
187
	intel_gvt_clean_cmd_parser(gvt);
188
	intel_gvt_clean_sched_policy(gvt);
Z
Zhi Wang 已提交
189
	intel_gvt_clean_workload_scheduler(gvt);
190
	intel_gvt_clean_opregion(gvt);
191
	intel_gvt_clean_gtt(gvt);
192
	intel_gvt_clean_irq(gvt);
193
	intel_gvt_clean_mmio_info(gvt);
194
	intel_gvt_free_firmware(gvt);
195

196 197
	intel_gvt_clean_vgpu_types(gvt);

198 199
	kfree(dev_priv->gvt);
	dev_priv->gvt = NULL;
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
}

/**
 * intel_gvt_init_device - initialize a GVT device
 * @dev_priv: drm i915 private data
 *
 * This function is called at the initialization stage, to initialize
 * necessary GVT components.
 *
 * Returns:
 * Zero on success, negative error code if failed.
 *
 */
int intel_gvt_init_device(struct drm_i915_private *dev_priv)
{
215
	struct intel_gvt *gvt;
216 217
	int ret;

218 219 220 221 222 223 224
	/*
	 * Cannot initialize GVT device without intel_gvt_host gets
	 * initialized first.
	 */
	if (WARN_ON(!intel_gvt_host.initialized))
		return -EINVAL;

225
	if (WARN_ON(dev_priv->gvt))
226 227
		return -EEXIST;

228 229 230 231
	gvt = kzalloc(sizeof(struct intel_gvt), GFP_KERNEL);
	if (!gvt)
		return -ENOMEM;

232 233
	gvt_dbg_core("init gvt device\n");

234 235 236
	mutex_init(&gvt->lock);
	gvt->dev_priv = dev_priv;

237
	init_device_info(gvt);
238 239 240 241 242

	ret = intel_gvt_setup_mmio_info(gvt);
	if (ret)
		return ret;

243 244 245 246
	ret = intel_gvt_load_firmware(gvt);
	if (ret)
		goto out_clean_mmio_info;

247 248 249 250
	ret = intel_gvt_init_irq(gvt);
	if (ret)
		goto out_free_firmware;

251 252 253 254
	ret = intel_gvt_init_gtt(gvt);
	if (ret)
		goto out_clean_irq;

255 256 257 258
	ret = intel_gvt_init_opregion(gvt);
	if (ret)
		goto out_clean_gtt;

Z
Zhi Wang 已提交
259
	ret = intel_gvt_init_workload_scheduler(gvt);
260 261 262
	if (ret)
		goto out_clean_opregion;

263
	ret = intel_gvt_init_sched_policy(gvt);
Z
Zhi Wang 已提交
264 265 266
	if (ret)
		goto out_clean_workload_scheduler;

Z
Zhi Wang 已提交
267
	ret = intel_gvt_init_cmd_parser(gvt);
268 269 270
	if (ret)
		goto out_clean_sched_policy;

Z
Zhi Wang 已提交
271 272 273 274
	ret = init_service_thread(gvt);
	if (ret)
		goto out_clean_cmd_parser;

275 276 277 278 279 280
	ret = intel_gvt_init_vgpu_types(gvt);
	if (ret)
		goto out_clean_thread;


	gvt_dbg_core("gvt device initialization is done\n");
281
	dev_priv->gvt = gvt;
282
	return 0;
283

284 285
out_clean_thread:
	clean_service_thread(gvt);
Z
Zhi Wang 已提交
286 287
out_clean_cmd_parser:
	intel_gvt_clean_cmd_parser(gvt);
288 289
out_clean_sched_policy:
	intel_gvt_clean_sched_policy(gvt);
Z
Zhi Wang 已提交
290 291
out_clean_workload_scheduler:
	intel_gvt_clean_workload_scheduler(gvt);
292 293
out_clean_opregion:
	intel_gvt_clean_opregion(gvt);
294 295
out_clean_gtt:
	intel_gvt_clean_gtt(gvt);
296 297
out_clean_irq:
	intel_gvt_clean_irq(gvt);
298 299
out_free_firmware:
	intel_gvt_free_firmware(gvt);
300 301
out_clean_mmio_info:
	intel_gvt_clean_mmio_info(gvt);
302
	kfree(gvt);
303
	return ret;
304
}