]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/i915/gvt/kvmgt.c
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / i915 / gvt / kvmgt.c
CommitLineData
f30437c5
JS
1/*
2 * KVMGT - the implementation of Intel mediated pass-through framework for KVM
3 *
4 * Copyright(c) 2014-2016 Intel Corporation. All rights reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Kevin Tian <kevin.tian@intel.com>
27 * Jike Song <jike.song@intel.com>
28 * Xiaoguang Chen <xiaoguang.chen@intel.com>
29 */
30
31#include <linux/init.h>
32#include <linux/device.h>
33#include <linux/mm.h>
f440c8a5 34#include <linux/mmu_context.h>
f30437c5
JS
35#include <linux/types.h>
36#include <linux/list.h>
37#include <linux/rbtree.h>
38#include <linux/spinlock.h>
39#include <linux/eventfd.h>
40#include <linux/uuid.h>
41#include <linux/kvm_host.h>
42#include <linux/vfio.h>
659643f7 43#include <linux/mdev.h>
f30437c5
JS
44
45#include "i915_drv.h"
46#include "gvt.h"
47
f30437c5
JS
48static const struct intel_gvt_ops *intel_gvt_ops;
49
f30437c5
JS
50/* helper macros copied from vfio-pci */
51#define VFIO_PCI_OFFSET_SHIFT 40
52#define VFIO_PCI_OFFSET_TO_INDEX(off) (off >> VFIO_PCI_OFFSET_SHIFT)
53#define VFIO_PCI_INDEX_TO_OFFSET(index) ((u64)(index) << VFIO_PCI_OFFSET_SHIFT)
54#define VFIO_PCI_OFFSET_MASK (((u64)(1) << VFIO_PCI_OFFSET_SHIFT) - 1)
55
56struct vfio_region {
57 u32 type;
58 u32 subtype;
59 size_t size;
60 u32 flags;
61};
62
63struct kvmgt_pgfn {
64 gfn_t gfn;
65 struct hlist_node hnode;
66};
67
68struct kvmgt_guest_info {
69 struct kvm *kvm;
70 struct intel_vgpu *vgpu;
71 struct kvm_page_track_notifier_node track_node;
72#define NR_BKT (1 << 18)
73 struct hlist_head ptable[NR_BKT];
74#undef NR_BKT
75};
76
77struct gvt_dma {
78 struct rb_node node;
79 gfn_t gfn;
b86dc6ed 80 unsigned long iova;
f30437c5
JS
81};
82
659643f7
JS
83static inline bool handle_valid(unsigned long handle)
84{
85 return !!(handle & ~0xff);
86}
87
88static int kvmgt_guest_init(struct mdev_device *mdev);
89static void intel_vgpu_release_work(struct work_struct *work);
90static bool kvmgt_guest_exit(struct kvmgt_guest_info *info);
91
b86dc6ed
CD
92static int gvt_dma_map_iova(struct intel_vgpu *vgpu, kvm_pfn_t pfn,
93 unsigned long *iova)
94{
95 struct page *page;
96 struct device *dev = &vgpu->gvt->dev_priv->drm.pdev->dev;
97 dma_addr_t daddr;
98
b6b6fbc8 99 if (unlikely(!pfn_valid(pfn)))
b86dc6ed
CD
100 return -EFAULT;
101
b6b6fbc8 102 page = pfn_to_page(pfn);
b86dc6ed
CD
103 daddr = dma_map_page(dev, page, 0, PAGE_SIZE,
104 PCI_DMA_BIDIRECTIONAL);
105 if (dma_mapping_error(dev, daddr))
106 return -ENOMEM;
107
108 *iova = (unsigned long)(daddr >> PAGE_SHIFT);
109 return 0;
110}
111
112static void gvt_dma_unmap_iova(struct intel_vgpu *vgpu, unsigned long iova)
113{
114 struct device *dev = &vgpu->gvt->dev_priv->drm.pdev->dev;
115 dma_addr_t daddr;
116
117 daddr = (dma_addr_t)(iova << PAGE_SHIFT);
118 dma_unmap_page(dev, daddr, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
119}
120
f30437c5
JS
121static struct gvt_dma *__gvt_cache_find(struct intel_vgpu *vgpu, gfn_t gfn)
122{
123 struct rb_node *node = vgpu->vdev.cache.rb_node;
124 struct gvt_dma *ret = NULL;
125
126 while (node) {
127 struct gvt_dma *itr = rb_entry(node, struct gvt_dma, node);
128
129 if (gfn < itr->gfn)
130 node = node->rb_left;
131 else if (gfn > itr->gfn)
132 node = node->rb_right;
133 else {
134 ret = itr;
135 goto out;
136 }
137 }
138
139out:
140 return ret;
141}
142
b86dc6ed 143static unsigned long gvt_cache_find(struct intel_vgpu *vgpu, gfn_t gfn)
f30437c5
JS
144{
145 struct gvt_dma *entry;
b86dc6ed 146 unsigned long iova;
f30437c5
JS
147
148 mutex_lock(&vgpu->vdev.cache_lock);
bfeca3e5 149
f30437c5 150 entry = __gvt_cache_find(vgpu, gfn);
b86dc6ed 151 iova = (entry == NULL) ? INTEL_GVT_INVALID_ADDR : entry->iova;
f30437c5 152
bfeca3e5 153 mutex_unlock(&vgpu->vdev.cache_lock);
b86dc6ed 154 return iova;
f30437c5
JS
155}
156
b86dc6ed
CD
157static void gvt_cache_add(struct intel_vgpu *vgpu, gfn_t gfn,
158 unsigned long iova)
f30437c5
JS
159{
160 struct gvt_dma *new, *itr;
161 struct rb_node **link = &vgpu->vdev.cache.rb_node, *parent = NULL;
162
163 new = kzalloc(sizeof(struct gvt_dma), GFP_KERNEL);
164 if (!new)
165 return;
166
167 new->gfn = gfn;
b86dc6ed 168 new->iova = iova;
f30437c5
JS
169
170 mutex_lock(&vgpu->vdev.cache_lock);
171 while (*link) {
172 parent = *link;
173 itr = rb_entry(parent, struct gvt_dma, node);
174
175 if (gfn == itr->gfn)
176 goto out;
177 else if (gfn < itr->gfn)
178 link = &parent->rb_left;
179 else
180 link = &parent->rb_right;
181 }
182
183 rb_link_node(&new->node, parent, link);
184 rb_insert_color(&new->node, &vgpu->vdev.cache);
185 mutex_unlock(&vgpu->vdev.cache_lock);
186 return;
187
188out:
189 mutex_unlock(&vgpu->vdev.cache_lock);
190 kfree(new);
191}
192
193static void __gvt_cache_remove_entry(struct intel_vgpu *vgpu,
194 struct gvt_dma *entry)
195{
196 rb_erase(&entry->node, &vgpu->vdev.cache);
197 kfree(entry);
198}
199
08673c3e 200static void gvt_cache_remove(struct intel_vgpu *vgpu, gfn_t gfn)
f30437c5 201{
99e3123e 202 struct device *dev = mdev_dev(vgpu->vdev.mdev);
f30437c5 203 struct gvt_dma *this;
08673c3e
CD
204 unsigned long g1;
205 int rc;
f30437c5
JS
206
207 mutex_lock(&vgpu->vdev.cache_lock);
208 this = __gvt_cache_find(vgpu, gfn);
209 if (!this) {
210 mutex_unlock(&vgpu->vdev.cache_lock);
08673c3e 211 return;
f30437c5 212 }
08673c3e
CD
213
214 g1 = gfn;
b86dc6ed 215 gvt_dma_unmap_iova(vgpu, this->iova);
08673c3e
CD
216 rc = vfio_unpin_pages(dev, &g1, 1);
217 WARN_ON(rc != 1);
218 __gvt_cache_remove_entry(vgpu, this);
f30437c5
JS
219 mutex_unlock(&vgpu->vdev.cache_lock);
220}
221
222static void gvt_cache_init(struct intel_vgpu *vgpu)
223{
224 vgpu->vdev.cache = RB_ROOT;
225 mutex_init(&vgpu->vdev.cache_lock);
226}
227
228static void gvt_cache_destroy(struct intel_vgpu *vgpu)
229{
230 struct gvt_dma *dma;
231 struct rb_node *node = NULL;
99e3123e 232 struct device *dev = mdev_dev(vgpu->vdev.mdev);
659643f7 233 unsigned long gfn;
f30437c5 234
f16bd3dd
CD
235 for (;;) {
236 mutex_lock(&vgpu->vdev.cache_lock);
237 node = rb_first(&vgpu->vdev.cache);
238 if (!node) {
239 mutex_unlock(&vgpu->vdev.cache_lock);
240 break;
241 }
f30437c5 242 dma = rb_entry(node, struct gvt_dma, node);
b86dc6ed 243 gvt_dma_unmap_iova(vgpu, dma->iova);
659643f7 244 gfn = dma->gfn;
f30437c5 245 __gvt_cache_remove_entry(vgpu, dma);
f16bd3dd
CD
246 mutex_unlock(&vgpu->vdev.cache_lock);
247 vfio_unpin_pages(dev, &gfn, 1);
f30437c5 248 }
f30437c5
JS
249}
250
251static struct intel_vgpu_type *intel_gvt_find_vgpu_type(struct intel_gvt *gvt,
252 const char *name)
253{
254 int i;
255 struct intel_vgpu_type *t;
256 const char *driver_name = dev_driver_string(
257 &gvt->dev_priv->drm.pdev->dev);
258
259 for (i = 0; i < gvt->num_types; i++) {
260 t = &gvt->types[i];
261 if (!strncmp(t->name, name + strlen(driver_name) + 1,
262 sizeof(t->name)))
263 return t;
264 }
265
266 return NULL;
267}
268
bdbfd519
AW
269static ssize_t available_instances_show(struct kobject *kobj,
270 struct device *dev, char *buf)
659643f7
JS
271{
272 struct intel_vgpu_type *type;
273 unsigned int num = 0;
274 void *gvt = kdev_to_i915(dev)->gvt;
275
276 type = intel_gvt_find_vgpu_type(gvt, kobject_name(kobj));
277 if (!type)
278 num = 0;
279 else
280 num = type->avail_instance;
281
282 return sprintf(buf, "%u\n", num);
283}
284
285static ssize_t device_api_show(struct kobject *kobj, struct device *dev,
286 char *buf)
287{
288 return sprintf(buf, "%s\n", VFIO_DEVICE_API_PCI_STRING);
289}
290
291static ssize_t description_show(struct kobject *kobj, struct device *dev,
292 char *buf)
293{
294 struct intel_vgpu_type *type;
295 void *gvt = kdev_to_i915(dev)->gvt;
296
297 type = intel_gvt_find_vgpu_type(gvt, kobject_name(kobj));
298 if (!type)
299 return 0;
300
301 return sprintf(buf, "low_gm_size: %dMB\nhigh_gm_size: %dMB\n"
bc90d097
PG
302 "fence: %d\nresolution: %s\n"
303 "weight: %d\n",
d1a513be
ZW
304 BYTES_TO_MB(type->low_gm_size),
305 BYTES_TO_MB(type->high_gm_size),
bc90d097
PG
306 type->fence, vgpu_edid_str(type->resolution),
307 type->weight);
659643f7
JS
308}
309
bdbfd519 310static MDEV_TYPE_ATTR_RO(available_instances);
659643f7
JS
311static MDEV_TYPE_ATTR_RO(device_api);
312static MDEV_TYPE_ATTR_RO(description);
313
f30437c5 314static struct attribute *type_attrs[] = {
bdbfd519 315 &mdev_type_attr_available_instances.attr,
659643f7
JS
316 &mdev_type_attr_device_api.attr,
317 &mdev_type_attr_description.attr,
f30437c5
JS
318 NULL,
319};
320
321static struct attribute_group *intel_vgpu_type_groups[] = {
322 [0 ... NR_MAX_INTEL_VGPU_TYPES - 1] = NULL,
323};
324
325static bool intel_gvt_init_vgpu_type_groups(struct intel_gvt *gvt)
326{
327 int i, j;
328 struct intel_vgpu_type *type;
329 struct attribute_group *group;
330
331 for (i = 0; i < gvt->num_types; i++) {
332 type = &gvt->types[i];
333
334 group = kzalloc(sizeof(struct attribute_group), GFP_KERNEL);
335 if (WARN_ON(!group))
336 goto unwind;
337
338 group->name = type->name;
339 group->attrs = type_attrs;
340 intel_vgpu_type_groups[i] = group;
341 }
342
343 return true;
344
345unwind:
346 for (j = 0; j < i; j++) {
347 group = intel_vgpu_type_groups[j];
348 kfree(group);
349 }
350
351 return false;
352}
353
354static void intel_gvt_cleanup_vgpu_type_groups(struct intel_gvt *gvt)
355{
356 int i;
357 struct attribute_group *group;
358
359 for (i = 0; i < gvt->num_types; i++) {
360 group = intel_vgpu_type_groups[i];
361 kfree(group);
362 }
363}
364
365static void kvmgt_protect_table_init(struct kvmgt_guest_info *info)
366{
367 hash_init(info->ptable);
368}
369
370static void kvmgt_protect_table_destroy(struct kvmgt_guest_info *info)
371{
372 struct kvmgt_pgfn *p;
373 struct hlist_node *tmp;
374 int i;
375
376 hash_for_each_safe(info->ptable, i, tmp, p, hnode) {
377 hash_del(&p->hnode);
378 kfree(p);
379 }
380}
381
382static struct kvmgt_pgfn *
383__kvmgt_protect_table_find(struct kvmgt_guest_info *info, gfn_t gfn)
384{
385 struct kvmgt_pgfn *p, *res = NULL;
386
387 hash_for_each_possible(info->ptable, p, hnode, gfn) {
388 if (gfn == p->gfn) {
389 res = p;
390 break;
391 }
392 }
393
394 return res;
395}
396
397static bool kvmgt_gfn_is_write_protected(struct kvmgt_guest_info *info,
398 gfn_t gfn)
399{
400 struct kvmgt_pgfn *p;
401
402 p = __kvmgt_protect_table_find(info, gfn);
403 return !!p;
404}
405
406static void kvmgt_protect_table_add(struct kvmgt_guest_info *info, gfn_t gfn)
407{
408 struct kvmgt_pgfn *p;
409
410 if (kvmgt_gfn_is_write_protected(info, gfn))
411 return;
412
c55b1de0 413 p = kzalloc(sizeof(struct kvmgt_pgfn), GFP_ATOMIC);
f30437c5
JS
414 if (WARN(!p, "gfn: 0x%llx\n", gfn))
415 return;
416
417 p->gfn = gfn;
418 hash_add(info->ptable, &p->hnode, gfn);
419}
420
421static void kvmgt_protect_table_del(struct kvmgt_guest_info *info,
422 gfn_t gfn)
423{
424 struct kvmgt_pgfn *p;
425
426 p = __kvmgt_protect_table_find(info, gfn);
427 if (p) {
428 hash_del(&p->hnode);
429 kfree(p);
430 }
431}
432
659643f7
JS
433static int intel_vgpu_create(struct kobject *kobj, struct mdev_device *mdev)
434{
695fbc08 435 struct intel_vgpu *vgpu = NULL;
659643f7
JS
436 struct intel_vgpu_type *type;
437 struct device *pdev;
438 void *gvt;
5753394b 439 int ret;
659643f7 440
9372e6fe 441 pdev = mdev_parent_dev(mdev);
659643f7
JS
442 gvt = kdev_to_i915(pdev)->gvt;
443
444 type = intel_gvt_find_vgpu_type(gvt, kobject_name(kobj));
445 if (!type) {
695fbc08 446 gvt_vgpu_err("failed to find type %s to create\n",
659643f7 447 kobject_name(kobj));
5753394b
JS
448 ret = -EINVAL;
449 goto out;
659643f7
JS
450 }
451
452 vgpu = intel_gvt_ops->vgpu_create(gvt, type);
453 if (IS_ERR_OR_NULL(vgpu)) {
5753394b 454 ret = vgpu == NULL ? -EFAULT : PTR_ERR(vgpu);
695fbc08 455 gvt_vgpu_err("failed to create intel vgpu: %d\n", ret);
5753394b 456 goto out;
659643f7
JS
457 }
458
459 INIT_WORK(&vgpu->vdev.release_work, intel_vgpu_release_work);
460
461 vgpu->vdev.mdev = mdev;
462 mdev_set_drvdata(mdev, vgpu);
463
464 gvt_dbg_core("intel_vgpu_create succeeded for mdev: %s\n",
99e3123e 465 dev_name(mdev_dev(mdev)));
5753394b
JS
466 ret = 0;
467
468out:
469 return ret;
659643f7
JS
470}
471
472static int intel_vgpu_remove(struct mdev_device *mdev)
473{
474 struct intel_vgpu *vgpu = mdev_get_drvdata(mdev);
475
476 if (handle_valid(vgpu->handle))
477 return -EBUSY;
478
479 intel_gvt_ops->vgpu_destroy(vgpu);
480 return 0;
481}
482
483static int intel_vgpu_iommu_notifier(struct notifier_block *nb,
484 unsigned long action, void *data)
485{
486 struct intel_vgpu *vgpu = container_of(nb,
487 struct intel_vgpu,
488 vdev.iommu_notifier);
489
490 if (action == VFIO_IOMMU_NOTIFY_DMA_UNMAP) {
491 struct vfio_iommu_type1_dma_unmap *unmap = data;
492 unsigned long gfn, end_gfn;
493
494 gfn = unmap->iova >> PAGE_SHIFT;
495 end_gfn = gfn + unmap->size / PAGE_SIZE;
496
497 while (gfn < end_gfn)
08673c3e 498 gvt_cache_remove(vgpu, gfn++);
659643f7
JS
499 }
500
501 return NOTIFY_OK;
502}
503
504static int intel_vgpu_group_notifier(struct notifier_block *nb,
505 unsigned long action, void *data)
506{
507 struct intel_vgpu *vgpu = container_of(nb,
508 struct intel_vgpu,
509 vdev.group_notifier);
510
511 /* the only action we care about */
512 if (action == VFIO_GROUP_NOTIFY_SET_KVM) {
513 vgpu->vdev.kvm = data;
514
515 if (!data)
516 schedule_work(&vgpu->vdev.release_work);
517 }
518
519 return NOTIFY_OK;
520}
521
522static int intel_vgpu_open(struct mdev_device *mdev)
523{
524 struct intel_vgpu *vgpu = mdev_get_drvdata(mdev);
525 unsigned long events;
526 int ret;
527
528 vgpu->vdev.iommu_notifier.notifier_call = intel_vgpu_iommu_notifier;
529 vgpu->vdev.group_notifier.notifier_call = intel_vgpu_group_notifier;
530
531 events = VFIO_IOMMU_NOTIFY_DMA_UNMAP;
99e3123e 532 ret = vfio_register_notifier(mdev_dev(mdev), VFIO_IOMMU_NOTIFY, &events,
659643f7
JS
533 &vgpu->vdev.iommu_notifier);
534 if (ret != 0) {
695fbc08
TZ
535 gvt_vgpu_err("vfio_register_notifier for iommu failed: %d\n",
536 ret);
659643f7
JS
537 goto out;
538 }
539
540 events = VFIO_GROUP_NOTIFY_SET_KVM;
99e3123e 541 ret = vfio_register_notifier(mdev_dev(mdev), VFIO_GROUP_NOTIFY, &events,
659643f7
JS
542 &vgpu->vdev.group_notifier);
543 if (ret != 0) {
695fbc08
TZ
544 gvt_vgpu_err("vfio_register_notifier for group failed: %d\n",
545 ret);
659643f7
JS
546 goto undo_iommu;
547 }
548
364fb6b7
JS
549 ret = kvmgt_guest_init(mdev);
550 if (ret)
551 goto undo_group;
552
b79c52ae
ZW
553 intel_gvt_ops->vgpu_activate(vgpu);
554
364fb6b7
JS
555 atomic_set(&vgpu->vdev.released, 0);
556 return ret;
557
558undo_group:
5824f924 559 vfio_unregister_notifier(mdev_dev(mdev), VFIO_GROUP_NOTIFY,
364fb6b7 560 &vgpu->vdev.group_notifier);
659643f7
JS
561
562undo_iommu:
99e3123e 563 vfio_unregister_notifier(mdev_dev(mdev), VFIO_IOMMU_NOTIFY,
659643f7
JS
564 &vgpu->vdev.iommu_notifier);
565out:
566 return ret;
567}
568
569static void __intel_vgpu_release(struct intel_vgpu *vgpu)
570{
571 struct kvmgt_guest_info *info;
364fb6b7 572 int ret;
659643f7
JS
573
574 if (!handle_valid(vgpu->handle))
575 return;
576
364fb6b7
JS
577 if (atomic_cmpxchg(&vgpu->vdev.released, 0, 1))
578 return;
579
b79c52ae
ZW
580 intel_gvt_ops->vgpu_deactivate(vgpu);
581
5824f924 582 ret = vfio_unregister_notifier(mdev_dev(vgpu->vdev.mdev), VFIO_IOMMU_NOTIFY,
659643f7 583 &vgpu->vdev.iommu_notifier);
364fb6b7
JS
584 WARN(ret, "vfio_unregister_notifier for iommu failed: %d\n", ret);
585
5824f924 586 ret = vfio_unregister_notifier(mdev_dev(vgpu->vdev.mdev), VFIO_GROUP_NOTIFY,
659643f7 587 &vgpu->vdev.group_notifier);
364fb6b7 588 WARN(ret, "vfio_unregister_notifier for group failed: %d\n", ret);
659643f7
JS
589
590 info = (struct kvmgt_guest_info *)vgpu->handle;
591 kvmgt_guest_exit(info);
364fb6b7
JS
592
593 vgpu->vdev.kvm = NULL;
659643f7
JS
594 vgpu->handle = 0;
595}
596
597static void intel_vgpu_release(struct mdev_device *mdev)
598{
599 struct intel_vgpu *vgpu = mdev_get_drvdata(mdev);
600
601 __intel_vgpu_release(vgpu);
602}
603
604static void intel_vgpu_release_work(struct work_struct *work)
605{
606 struct intel_vgpu *vgpu = container_of(work, struct intel_vgpu,
607 vdev.release_work);
8ff842fd 608
659643f7
JS
609 __intel_vgpu_release(vgpu);
610}
611
612static uint64_t intel_vgpu_get_bar0_addr(struct intel_vgpu *vgpu)
613{
614 u32 start_lo, start_hi;
615 u32 mem_type;
616 int pos = PCI_BASE_ADDRESS_0;
617
618 start_lo = (*(u32 *)(vgpu->cfg_space.virtual_cfg_space + pos)) &
619 PCI_BASE_ADDRESS_MEM_MASK;
620 mem_type = (*(u32 *)(vgpu->cfg_space.virtual_cfg_space + pos)) &
621 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
622
623 switch (mem_type) {
624 case PCI_BASE_ADDRESS_MEM_TYPE_64:
625 start_hi = (*(u32 *)(vgpu->cfg_space.virtual_cfg_space
626 + pos + 4));
627 break;
628 case PCI_BASE_ADDRESS_MEM_TYPE_32:
629 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
630 /* 1M mem BAR treated as 32-bit BAR */
631 default:
632 /* mem unknown type treated as 32-bit BAR */
633 start_hi = 0;
634 break;
635 }
636
637 return ((u64)start_hi << 32) | start_lo;
638}
639
640static ssize_t intel_vgpu_rw(struct mdev_device *mdev, char *buf,
641 size_t count, loff_t *ppos, bool is_write)
642{
643 struct intel_vgpu *vgpu = mdev_get_drvdata(mdev);
644 unsigned int index = VFIO_PCI_OFFSET_TO_INDEX(*ppos);
645 uint64_t pos = *ppos & VFIO_PCI_OFFSET_MASK;
646 int ret = -EINVAL;
647
648
649 if (index >= VFIO_PCI_NUM_REGIONS) {
695fbc08 650 gvt_vgpu_err("invalid index: %u\n", index);
659643f7
JS
651 return -EINVAL;
652 }
653
654 switch (index) {
655 case VFIO_PCI_CONFIG_REGION_INDEX:
656 if (is_write)
657 ret = intel_gvt_ops->emulate_cfg_write(vgpu, pos,
658 buf, count);
659 else
660 ret = intel_gvt_ops->emulate_cfg_read(vgpu, pos,
661 buf, count);
662 break;
663 case VFIO_PCI_BAR0_REGION_INDEX:
664 case VFIO_PCI_BAR1_REGION_INDEX:
665 if (is_write) {
666 uint64_t bar0_start = intel_vgpu_get_bar0_addr(vgpu);
667
668 ret = intel_gvt_ops->emulate_mmio_write(vgpu,
669 bar0_start + pos, buf, count);
670 } else {
671 uint64_t bar0_start = intel_vgpu_get_bar0_addr(vgpu);
672
673 ret = intel_gvt_ops->emulate_mmio_read(vgpu,
674 bar0_start + pos, buf, count);
675 }
676 break;
677 case VFIO_PCI_BAR2_REGION_INDEX:
678 case VFIO_PCI_BAR3_REGION_INDEX:
679 case VFIO_PCI_BAR4_REGION_INDEX:
680 case VFIO_PCI_BAR5_REGION_INDEX:
681 case VFIO_PCI_VGA_REGION_INDEX:
682 case VFIO_PCI_ROM_REGION_INDEX:
683 default:
695fbc08 684 gvt_vgpu_err("unsupported region: %u\n", index);
659643f7
JS
685 }
686
687 return ret == 0 ? count : ret;
688}
689
690static ssize_t intel_vgpu_read(struct mdev_device *mdev, char __user *buf,
691 size_t count, loff_t *ppos)
692{
693 unsigned int done = 0;
694 int ret;
695
696 while (count) {
697 size_t filled;
698
699 if (count >= 4 && !(*ppos % 4)) {
700 u32 val;
701
702 ret = intel_vgpu_rw(mdev, (char *)&val, sizeof(val),
703 ppos, false);
704 if (ret <= 0)
705 goto read_err;
706
707 if (copy_to_user(buf, &val, sizeof(val)))
708 goto read_err;
709
710 filled = 4;
711 } else if (count >= 2 && !(*ppos % 2)) {
712 u16 val;
713
714 ret = intel_vgpu_rw(mdev, (char *)&val, sizeof(val),
715 ppos, false);
716 if (ret <= 0)
717 goto read_err;
718
719 if (copy_to_user(buf, &val, sizeof(val)))
720 goto read_err;
721
722 filled = 2;
723 } else {
724 u8 val;
725
726 ret = intel_vgpu_rw(mdev, &val, sizeof(val), ppos,
727 false);
728 if (ret <= 0)
729 goto read_err;
730
731 if (copy_to_user(buf, &val, sizeof(val)))
732 goto read_err;
733
734 filled = 1;
735 }
736
737 count -= filled;
738 done += filled;
739 *ppos += filled;
740 buf += filled;
741 }
742
743 return done;
744
745read_err:
746 return -EFAULT;
747}
748
749static ssize_t intel_vgpu_write(struct mdev_device *mdev,
750 const char __user *buf,
751 size_t count, loff_t *ppos)
752{
753 unsigned int done = 0;
754 int ret;
755
756 while (count) {
757 size_t filled;
758
759 if (count >= 4 && !(*ppos % 4)) {
760 u32 val;
761
762 if (copy_from_user(&val, buf, sizeof(val)))
763 goto write_err;
764
765 ret = intel_vgpu_rw(mdev, (char *)&val, sizeof(val),
766 ppos, true);
767 if (ret <= 0)
768 goto write_err;
769
770 filled = 4;
771 } else if (count >= 2 && !(*ppos % 2)) {
772 u16 val;
773
774 if (copy_from_user(&val, buf, sizeof(val)))
775 goto write_err;
776
777 ret = intel_vgpu_rw(mdev, (char *)&val,
778 sizeof(val), ppos, true);
779 if (ret <= 0)
780 goto write_err;
781
782 filled = 2;
783 } else {
784 u8 val;
785
786 if (copy_from_user(&val, buf, sizeof(val)))
787 goto write_err;
788
789 ret = intel_vgpu_rw(mdev, &val, sizeof(val),
790 ppos, true);
791 if (ret <= 0)
792 goto write_err;
793
794 filled = 1;
795 }
796
797 count -= filled;
798 done += filled;
799 *ppos += filled;
800 buf += filled;
801 }
802
803 return done;
804write_err:
805 return -EFAULT;
806}
807
808static int intel_vgpu_mmap(struct mdev_device *mdev, struct vm_area_struct *vma)
809{
810 unsigned int index;
811 u64 virtaddr;
812 unsigned long req_size, pgoff = 0;
813 pgprot_t pg_prot;
814 struct intel_vgpu *vgpu = mdev_get_drvdata(mdev);
815
816 index = vma->vm_pgoff >> (VFIO_PCI_OFFSET_SHIFT - PAGE_SHIFT);
817 if (index >= VFIO_PCI_ROM_REGION_INDEX)
818 return -EINVAL;
819
820 if (vma->vm_end < vma->vm_start)
821 return -EINVAL;
822 if ((vma->vm_flags & VM_SHARED) == 0)
823 return -EINVAL;
824 if (index != VFIO_PCI_BAR2_REGION_INDEX)
825 return -EINVAL;
826
827 pg_prot = vma->vm_page_prot;
828 virtaddr = vma->vm_start;
829 req_size = vma->vm_end - vma->vm_start;
830 pgoff = vgpu_aperture_pa_base(vgpu) >> PAGE_SHIFT;
831
832 return remap_pfn_range(vma, virtaddr, pgoff, req_size, pg_prot);
833}
834
835static int intel_vgpu_get_irq_count(struct intel_vgpu *vgpu, int type)
836{
837 if (type == VFIO_PCI_INTX_IRQ_INDEX || type == VFIO_PCI_MSI_IRQ_INDEX)
838 return 1;
839
840 return 0;
841}
842
843static int intel_vgpu_set_intx_mask(struct intel_vgpu *vgpu,
844 unsigned int index, unsigned int start,
845 unsigned int count, uint32_t flags,
846 void *data)
847{
848 return 0;
849}
850
851static int intel_vgpu_set_intx_unmask(struct intel_vgpu *vgpu,
852 unsigned int index, unsigned int start,
853 unsigned int count, uint32_t flags, void *data)
854{
855 return 0;
856}
857
858static int intel_vgpu_set_intx_trigger(struct intel_vgpu *vgpu,
859 unsigned int index, unsigned int start, unsigned int count,
860 uint32_t flags, void *data)
861{
862 return 0;
863}
864
865static int intel_vgpu_set_msi_trigger(struct intel_vgpu *vgpu,
866 unsigned int index, unsigned int start, unsigned int count,
867 uint32_t flags, void *data)
868{
869 struct eventfd_ctx *trigger;
870
871 if (flags & VFIO_IRQ_SET_DATA_EVENTFD) {
872 int fd = *(int *)data;
873
874 trigger = eventfd_ctx_fdget(fd);
875 if (IS_ERR(trigger)) {
695fbc08 876 gvt_vgpu_err("eventfd_ctx_fdget failed\n");
659643f7
JS
877 return PTR_ERR(trigger);
878 }
879 vgpu->vdev.msi_trigger = trigger;
880 }
881
882 return 0;
883}
884
885static int intel_vgpu_set_irqs(struct intel_vgpu *vgpu, uint32_t flags,
886 unsigned int index, unsigned int start, unsigned int count,
887 void *data)
888{
889 int (*func)(struct intel_vgpu *vgpu, unsigned int index,
890 unsigned int start, unsigned int count, uint32_t flags,
891 void *data) = NULL;
892
893 switch (index) {
894 case VFIO_PCI_INTX_IRQ_INDEX:
895 switch (flags & VFIO_IRQ_SET_ACTION_TYPE_MASK) {
896 case VFIO_IRQ_SET_ACTION_MASK:
897 func = intel_vgpu_set_intx_mask;
898 break;
899 case VFIO_IRQ_SET_ACTION_UNMASK:
900 func = intel_vgpu_set_intx_unmask;
901 break;
902 case VFIO_IRQ_SET_ACTION_TRIGGER:
903 func = intel_vgpu_set_intx_trigger;
904 break;
905 }
906 break;
907 case VFIO_PCI_MSI_IRQ_INDEX:
908 switch (flags & VFIO_IRQ_SET_ACTION_TYPE_MASK) {
909 case VFIO_IRQ_SET_ACTION_MASK:
910 case VFIO_IRQ_SET_ACTION_UNMASK:
911 /* XXX Need masking support exported */
912 break;
913 case VFIO_IRQ_SET_ACTION_TRIGGER:
914 func = intel_vgpu_set_msi_trigger;
915 break;
916 }
917 break;
918 }
919
920 if (!func)
921 return -ENOTTY;
922
923 return func(vgpu, index, start, count, flags, data);
924}
925
926static long intel_vgpu_ioctl(struct mdev_device *mdev, unsigned int cmd,
927 unsigned long arg)
928{
929 struct intel_vgpu *vgpu = mdev_get_drvdata(mdev);
930 unsigned long minsz;
931
932 gvt_dbg_core("vgpu%d ioctl, cmd: %d\n", vgpu->id, cmd);
933
934 if (cmd == VFIO_DEVICE_GET_INFO) {
935 struct vfio_device_info info;
936
937 minsz = offsetofend(struct vfio_device_info, num_irqs);
938
939 if (copy_from_user(&info, (void __user *)arg, minsz))
940 return -EFAULT;
941
942 if (info.argsz < minsz)
943 return -EINVAL;
944
945 info.flags = VFIO_DEVICE_FLAGS_PCI;
946 info.flags |= VFIO_DEVICE_FLAGS_RESET;
947 info.num_regions = VFIO_PCI_NUM_REGIONS;
948 info.num_irqs = VFIO_PCI_NUM_IRQS;
949
950 return copy_to_user((void __user *)arg, &info, minsz) ?
951 -EFAULT : 0;
952
953 } else if (cmd == VFIO_DEVICE_GET_REGION_INFO) {
954 struct vfio_region_info info;
955 struct vfio_info_cap caps = { .buf = NULL, .size = 0 };
956 int i, ret;
957 struct vfio_region_info_cap_sparse_mmap *sparse = NULL;
958 size_t size;
959 int nr_areas = 1;
960 int cap_type_id;
961
962 minsz = offsetofend(struct vfio_region_info, offset);
963
964 if (copy_from_user(&info, (void __user *)arg, minsz))
965 return -EFAULT;
966
967 if (info.argsz < minsz)
968 return -EINVAL;
969
970 switch (info.index) {
971 case VFIO_PCI_CONFIG_REGION_INDEX:
972 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
973 info.size = INTEL_GVT_MAX_CFG_SPACE_SZ;
974 info.flags = VFIO_REGION_INFO_FLAG_READ |
975 VFIO_REGION_INFO_FLAG_WRITE;
976 break;
977 case VFIO_PCI_BAR0_REGION_INDEX:
978 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
979 info.size = vgpu->cfg_space.bar[info.index].size;
980 if (!info.size) {
981 info.flags = 0;
982 break;
983 }
984
985 info.flags = VFIO_REGION_INFO_FLAG_READ |
986 VFIO_REGION_INFO_FLAG_WRITE;
987 break;
988 case VFIO_PCI_BAR1_REGION_INDEX:
989 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
990 info.size = 0;
991 info.flags = 0;
992 break;
993 case VFIO_PCI_BAR2_REGION_INDEX:
994 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
995 info.flags = VFIO_REGION_INFO_FLAG_CAPS |
996 VFIO_REGION_INFO_FLAG_MMAP |
997 VFIO_REGION_INFO_FLAG_READ |
998 VFIO_REGION_INFO_FLAG_WRITE;
999 info.size = gvt_aperture_sz(vgpu->gvt);
1000
1001 size = sizeof(*sparse) +
1002 (nr_areas * sizeof(*sparse->areas));
1003 sparse = kzalloc(size, GFP_KERNEL);
1004 if (!sparse)
1005 return -ENOMEM;
1006
1007 sparse->nr_areas = nr_areas;
1008 cap_type_id = VFIO_REGION_INFO_CAP_SPARSE_MMAP;
1009 sparse->areas[0].offset =
1010 PAGE_ALIGN(vgpu_aperture_offset(vgpu));
1011 sparse->areas[0].size = vgpu_aperture_sz(vgpu);
659643f7
JS
1012 break;
1013
1014 case VFIO_PCI_BAR3_REGION_INDEX ... VFIO_PCI_BAR5_REGION_INDEX:
1015 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
1016 info.size = 0;
1017
1018 info.flags = 0;
1019 gvt_dbg_core("get region info bar:%d\n", info.index);
1020 break;
1021
1022 case VFIO_PCI_ROM_REGION_INDEX:
1023 case VFIO_PCI_VGA_REGION_INDEX:
1024 gvt_dbg_core("get region info index:%d\n", info.index);
1025 break;
1026 default:
1027 {
1028 struct vfio_region_info_cap_type cap_type;
1029
1030 if (info.index >= VFIO_PCI_NUM_REGIONS +
1031 vgpu->vdev.num_regions)
1032 return -EINVAL;
1033
1034 i = info.index - VFIO_PCI_NUM_REGIONS;
1035
1036 info.offset =
1037 VFIO_PCI_INDEX_TO_OFFSET(info.index);
1038 info.size = vgpu->vdev.region[i].size;
1039 info.flags = vgpu->vdev.region[i].flags;
1040
1041 cap_type.type = vgpu->vdev.region[i].type;
1042 cap_type.subtype = vgpu->vdev.region[i].subtype;
1043
1044 ret = vfio_info_add_capability(&caps,
1045 VFIO_REGION_INFO_CAP_TYPE,
1046 &cap_type);
1047 if (ret)
1048 return ret;
1049 }
1050 }
1051
1052 if ((info.flags & VFIO_REGION_INFO_FLAG_CAPS) && sparse) {
1053 switch (cap_type_id) {
1054 case VFIO_REGION_INFO_CAP_SPARSE_MMAP:
1055 ret = vfio_info_add_capability(&caps,
1056 VFIO_REGION_INFO_CAP_SPARSE_MMAP,
1057 sparse);
1058 kfree(sparse);
1059 if (ret)
1060 return ret;
1061 break;
1062 default:
1063 return -EINVAL;
1064 }
1065 }
1066
1067 if (caps.size) {
1068 if (info.argsz < sizeof(info) + caps.size) {
1069 info.argsz = sizeof(info) + caps.size;
1070 info.cap_offset = 0;
1071 } else {
1072 vfio_info_cap_shift(&caps, sizeof(info));
1073 if (copy_to_user((void __user *)arg +
1074 sizeof(info), caps.buf,
1075 caps.size)) {
1076 kfree(caps.buf);
1077 return -EFAULT;
1078 }
1079 info.cap_offset = sizeof(info);
1080 }
1081
1082 kfree(caps.buf);
1083 }
1084
1085 return copy_to_user((void __user *)arg, &info, minsz) ?
1086 -EFAULT : 0;
1087 } else if (cmd == VFIO_DEVICE_GET_IRQ_INFO) {
1088 struct vfio_irq_info info;
1089
1090 minsz = offsetofend(struct vfio_irq_info, count);
1091
1092 if (copy_from_user(&info, (void __user *)arg, minsz))
1093 return -EFAULT;
1094
1095 if (info.argsz < minsz || info.index >= VFIO_PCI_NUM_IRQS)
1096 return -EINVAL;
1097
1098 switch (info.index) {
1099 case VFIO_PCI_INTX_IRQ_INDEX:
1100 case VFIO_PCI_MSI_IRQ_INDEX:
1101 break;
1102 default:
1103 return -EINVAL;
1104 }
1105
1106 info.flags = VFIO_IRQ_INFO_EVENTFD;
1107
1108 info.count = intel_vgpu_get_irq_count(vgpu, info.index);
1109
1110 if (info.index == VFIO_PCI_INTX_IRQ_INDEX)
1111 info.flags |= (VFIO_IRQ_INFO_MASKABLE |
1112 VFIO_IRQ_INFO_AUTOMASKED);
1113 else
1114 info.flags |= VFIO_IRQ_INFO_NORESIZE;
1115
1116 return copy_to_user((void __user *)arg, &info, minsz) ?
1117 -EFAULT : 0;
1118 } else if (cmd == VFIO_DEVICE_SET_IRQS) {
1119 struct vfio_irq_set hdr;
1120 u8 *data = NULL;
1121 int ret = 0;
1122 size_t data_size = 0;
1123
1124 minsz = offsetofend(struct vfio_irq_set, count);
1125
1126 if (copy_from_user(&hdr, (void __user *)arg, minsz))
1127 return -EFAULT;
1128
1129 if (!(hdr.flags & VFIO_IRQ_SET_DATA_NONE)) {
1130 int max = intel_vgpu_get_irq_count(vgpu, hdr.index);
1131
1132 ret = vfio_set_irqs_validate_and_prepare(&hdr, max,
1133 VFIO_PCI_NUM_IRQS, &data_size);
1134 if (ret) {
695fbc08 1135 gvt_vgpu_err("intel:vfio_set_irqs_validate_and_prepare failed\n");
659643f7
JS
1136 return -EINVAL;
1137 }
1138 if (data_size) {
1139 data = memdup_user((void __user *)(arg + minsz),
1140 data_size);
1141 if (IS_ERR(data))
1142 return PTR_ERR(data);
1143 }
1144 }
1145
1146 ret = intel_vgpu_set_irqs(vgpu, hdr.flags, hdr.index,
1147 hdr.start, hdr.count, data);
1148 kfree(data);
1149
1150 return ret;
1151 } else if (cmd == VFIO_DEVICE_RESET) {
1152 intel_gvt_ops->vgpu_reset(vgpu);
1153 return 0;
1154 }
1155
1156 return 0;
1157}
1158
7a7a6561
ZW
1159static ssize_t
1160vgpu_id_show(struct device *dev, struct device_attribute *attr,
1161 char *buf)
1162{
1163 struct mdev_device *mdev = mdev_from_dev(dev);
1164
1165 if (mdev) {
1166 struct intel_vgpu *vgpu = (struct intel_vgpu *)
1167 mdev_get_drvdata(mdev);
1168 return sprintf(buf, "%d\n", vgpu->id);
1169 }
1170 return sprintf(buf, "\n");
1171}
1172
1173static DEVICE_ATTR_RO(vgpu_id);
1174
1175static struct attribute *intel_vgpu_attrs[] = {
1176 &dev_attr_vgpu_id.attr,
1177 NULL
1178};
1179
1180static const struct attribute_group intel_vgpu_group = {
1181 .name = "intel_vgpu",
1182 .attrs = intel_vgpu_attrs,
1183};
1184
1185static const struct attribute_group *intel_vgpu_groups[] = {
1186 &intel_vgpu_group,
1187 NULL,
1188};
1189
42930553 1190static const struct mdev_parent_ops intel_vgpu_ops = {
659643f7 1191 .supported_type_groups = intel_vgpu_type_groups,
7a7a6561 1192 .mdev_attr_groups = intel_vgpu_groups,
659643f7
JS
1193 .create = intel_vgpu_create,
1194 .remove = intel_vgpu_remove,
1195
1196 .open = intel_vgpu_open,
1197 .release = intel_vgpu_release,
1198
1199 .read = intel_vgpu_read,
1200 .write = intel_vgpu_write,
1201 .mmap = intel_vgpu_mmap,
1202 .ioctl = intel_vgpu_ioctl,
1203};
1204
f30437c5
JS
1205static int kvmgt_host_init(struct device *dev, void *gvt, const void *ops)
1206{
1207 if (!intel_gvt_init_vgpu_type_groups(gvt))
1208 return -EFAULT;
1209
1210 intel_gvt_ops = ops;
1211
659643f7 1212 return mdev_register_device(dev, &intel_vgpu_ops);
f30437c5
JS
1213}
1214
1215static void kvmgt_host_exit(struct device *dev, void *gvt)
1216{
1217 intel_gvt_cleanup_vgpu_type_groups(gvt);
659643f7 1218 mdev_unregister_device(dev);
f30437c5
JS
1219}
1220
1221static int kvmgt_write_protect_add(unsigned long handle, u64 gfn)
1222{
659643f7
JS
1223 struct kvmgt_guest_info *info;
1224 struct kvm *kvm;
f30437c5
JS
1225 struct kvm_memory_slot *slot;
1226 int idx;
1227
659643f7
JS
1228 if (!handle_valid(handle))
1229 return -ESRCH;
1230
1231 info = (struct kvmgt_guest_info *)handle;
1232 kvm = info->kvm;
1233
f30437c5
JS
1234 idx = srcu_read_lock(&kvm->srcu);
1235 slot = gfn_to_memslot(kvm, gfn);
faaaa53b
JS
1236 if (!slot) {
1237 srcu_read_unlock(&kvm->srcu, idx);
1238 return -EINVAL;
1239 }
f30437c5
JS
1240
1241 spin_lock(&kvm->mmu_lock);
1242
1243 if (kvmgt_gfn_is_write_protected(info, gfn))
1244 goto out;
1245
1246 kvm_slot_page_track_add_page(kvm, slot, gfn, KVM_PAGE_TRACK_WRITE);
1247 kvmgt_protect_table_add(info, gfn);
1248
1249out:
1250 spin_unlock(&kvm->mmu_lock);
1251 srcu_read_unlock(&kvm->srcu, idx);
1252 return 0;
1253}
1254
1255static int kvmgt_write_protect_remove(unsigned long handle, u64 gfn)
1256{
659643f7
JS
1257 struct kvmgt_guest_info *info;
1258 struct kvm *kvm;
f30437c5
JS
1259 struct kvm_memory_slot *slot;
1260 int idx;
1261
659643f7
JS
1262 if (!handle_valid(handle))
1263 return 0;
1264
1265 info = (struct kvmgt_guest_info *)handle;
1266 kvm = info->kvm;
1267
f30437c5
JS
1268 idx = srcu_read_lock(&kvm->srcu);
1269 slot = gfn_to_memslot(kvm, gfn);
faaaa53b
JS
1270 if (!slot) {
1271 srcu_read_unlock(&kvm->srcu, idx);
1272 return -EINVAL;
1273 }
f30437c5
JS
1274
1275 spin_lock(&kvm->mmu_lock);
1276
1277 if (!kvmgt_gfn_is_write_protected(info, gfn))
1278 goto out;
1279
1280 kvm_slot_page_track_remove_page(kvm, slot, gfn, KVM_PAGE_TRACK_WRITE);
1281 kvmgt_protect_table_del(info, gfn);
1282
1283out:
1284 spin_unlock(&kvm->mmu_lock);
1285 srcu_read_unlock(&kvm->srcu, idx);
1286 return 0;
1287}
1288
1289static void kvmgt_page_track_write(struct kvm_vcpu *vcpu, gpa_t gpa,
1290 const u8 *val, int len,
1291 struct kvm_page_track_notifier_node *node)
1292{
1293 struct kvmgt_guest_info *info = container_of(node,
1294 struct kvmgt_guest_info, track_node);
1295
1296 if (kvmgt_gfn_is_write_protected(info, gpa_to_gfn(gpa)))
1297 intel_gvt_ops->emulate_mmio_write(info->vgpu, gpa,
1298 (void *)val, len);
1299}
1300
1301static void kvmgt_page_track_flush_slot(struct kvm *kvm,
1302 struct kvm_memory_slot *slot,
1303 struct kvm_page_track_notifier_node *node)
1304{
1305 int i;
1306 gfn_t gfn;
1307 struct kvmgt_guest_info *info = container_of(node,
1308 struct kvmgt_guest_info, track_node);
1309
1310 spin_lock(&kvm->mmu_lock);
1311 for (i = 0; i < slot->npages; i++) {
1312 gfn = slot->base_gfn + i;
1313 if (kvmgt_gfn_is_write_protected(info, gfn)) {
1314 kvm_slot_page_track_remove_page(kvm, slot, gfn,
1315 KVM_PAGE_TRACK_WRITE);
1316 kvmgt_protect_table_del(info, gfn);
1317 }
1318 }
1319 spin_unlock(&kvm->mmu_lock);
1320}
1321
659643f7
JS
1322static bool __kvmgt_vgpu_exist(struct intel_vgpu *vgpu, struct kvm *kvm)
1323{
1324 struct intel_vgpu *itr;
1325 struct kvmgt_guest_info *info;
1326 int id;
1327 bool ret = false;
1328
1329 mutex_lock(&vgpu->gvt->lock);
1330 for_each_active_vgpu(vgpu->gvt, itr, id) {
1331 if (!handle_valid(itr->handle))
1332 continue;
1333
1334 info = (struct kvmgt_guest_info *)itr->handle;
1335 if (kvm && kvm == info->kvm) {
1336 ret = true;
1337 goto out;
1338 }
1339 }
1340out:
1341 mutex_unlock(&vgpu->gvt->lock);
1342 return ret;
1343}
1344
1345static int kvmgt_guest_init(struct mdev_device *mdev)
1346{
1347 struct kvmgt_guest_info *info;
1348 struct intel_vgpu *vgpu;
1349 struct kvm *kvm;
1350
1351 vgpu = mdev_get_drvdata(mdev);
1352 if (handle_valid(vgpu->handle))
1353 return -EEXIST;
1354
1355 kvm = vgpu->vdev.kvm;
1356 if (!kvm || kvm->mm != current->mm) {
695fbc08 1357 gvt_vgpu_err("KVM is required to use Intel vGPU\n");
659643f7
JS
1358 return -ESRCH;
1359 }
1360
1361 if (__kvmgt_vgpu_exist(vgpu, kvm))
1362 return -EEXIST;
1363
1364 info = vzalloc(sizeof(struct kvmgt_guest_info));
1365 if (!info)
1366 return -ENOMEM;
1367
1368 vgpu->handle = (unsigned long)info;
1369 info->vgpu = vgpu;
1370 info->kvm = kvm;
93a15b58 1371 kvm_get_kvm(info->kvm);
659643f7
JS
1372
1373 kvmgt_protect_table_init(info);
1374 gvt_cache_init(vgpu);
1375
1376 info->track_node.track_write = kvmgt_page_track_write;
1377 info->track_node.track_flush_slot = kvmgt_page_track_flush_slot;
1378 kvm_page_track_register_notifier(kvm, &info->track_node);
1379
1380 return 0;
1381}
1382
1383static bool kvmgt_guest_exit(struct kvmgt_guest_info *info)
1384{
659643f7 1385 kvm_page_track_unregister_notifier(info->kvm, &info->track_node);
93a15b58 1386 kvm_put_kvm(info->kvm);
659643f7 1387 kvmgt_protect_table_destroy(info);
8ff842fd 1388 gvt_cache_destroy(info->vgpu);
659643f7
JS
1389 vfree(info);
1390
1391 return true;
1392}
1393
f30437c5
JS
1394static int kvmgt_attach_vgpu(void *vgpu, unsigned long *handle)
1395{
1396 /* nothing to do here */
1397 return 0;
1398}
1399
1400static void kvmgt_detach_vgpu(unsigned long handle)
1401{
1402 /* nothing to do here */
1403}
1404
1405static int kvmgt_inject_msi(unsigned long handle, u32 addr, u16 data)
1406{
659643f7
JS
1407 struct kvmgt_guest_info *info;
1408 struct intel_vgpu *vgpu;
f30437c5 1409
659643f7
JS
1410 if (!handle_valid(handle))
1411 return -ESRCH;
f30437c5 1412
659643f7
JS
1413 info = (struct kvmgt_guest_info *)handle;
1414 vgpu = info->vgpu;
1415
1416 if (eventfd_signal(vgpu->vdev.msi_trigger, 1) == 1)
1417 return 0;
1418
1419 return -EFAULT;
f30437c5
JS
1420}
1421
1422static unsigned long kvmgt_gfn_to_pfn(unsigned long handle, unsigned long gfn)
1423{
b86dc6ed 1424 unsigned long iova, pfn;
659643f7
JS
1425 struct kvmgt_guest_info *info;
1426 struct device *dev;
695fbc08 1427 struct intel_vgpu *vgpu;
f30437c5
JS
1428 int rc;
1429
659643f7
JS
1430 if (!handle_valid(handle))
1431 return INTEL_GVT_INVALID_ADDR;
1432
1433 info = (struct kvmgt_guest_info *)handle;
695fbc08 1434 vgpu = info->vgpu;
b86dc6ed
CD
1435 iova = gvt_cache_find(info->vgpu, gfn);
1436 if (iova != INTEL_GVT_INVALID_ADDR)
1437 return iova;
f30437c5 1438
659643f7 1439 pfn = INTEL_GVT_INVALID_ADDR;
99e3123e 1440 dev = mdev_dev(info->vgpu->vdev.mdev);
659643f7 1441 rc = vfio_pin_pages(dev, &gfn, 1, IOMMU_READ | IOMMU_WRITE, &pfn);
f30437c5 1442 if (rc != 1) {
695fbc08
TZ
1443 gvt_vgpu_err("vfio_pin_pages failed for gfn 0x%lx: %d\n",
1444 gfn, rc);
659643f7 1445 return INTEL_GVT_INVALID_ADDR;
f30437c5 1446 }
b86dc6ed
CD
1447 /* transfer to host iova for GFX to use DMA */
1448 rc = gvt_dma_map_iova(info->vgpu, pfn, &iova);
4a0b3444 1449 if (rc) {
695fbc08 1450 gvt_vgpu_err("gvt_dma_map_iova failed for gfn: 0x%lx\n", gfn);
4a0b3444
CD
1451 vfio_unpin_pages(dev, &gfn, 1);
1452 return INTEL_GVT_INVALID_ADDR;
1453 }
f30437c5 1454
b86dc6ed
CD
1455 gvt_cache_add(info->vgpu, gfn, iova);
1456 return iova;
f30437c5
JS
1457}
1458
f30437c5
JS
1459static int kvmgt_rw_gpa(unsigned long handle, unsigned long gpa,
1460 void *buf, unsigned long len, bool write)
1461{
f440c8a5
JS
1462 struct kvmgt_guest_info *info;
1463 struct kvm *kvm;
5180edc2 1464 int idx, ret;
f440c8a5 1465 bool kthread = current->mm == NULL;
f30437c5 1466
659643f7
JS
1467 if (!handle_valid(handle))
1468 return -ESRCH;
1469
f440c8a5
JS
1470 info = (struct kvmgt_guest_info *)handle;
1471 kvm = info->kvm;
f30437c5 1472
f440c8a5
JS
1473 if (kthread)
1474 use_mm(kvm->mm);
f30437c5 1475
5180edc2 1476 idx = srcu_read_lock(&kvm->srcu);
f440c8a5
JS
1477 ret = write ? kvm_write_guest(kvm, gpa, buf, len) :
1478 kvm_read_guest(kvm, gpa, buf, len);
5180edc2 1479 srcu_read_unlock(&kvm->srcu, idx);
f440c8a5
JS
1480
1481 if (kthread)
1482 unuse_mm(kvm->mm);
1483
1484 return ret;
f30437c5
JS
1485}
1486
1487static int kvmgt_read_gpa(unsigned long handle, unsigned long gpa,
1488 void *buf, unsigned long len)
1489{
1490 return kvmgt_rw_gpa(handle, gpa, buf, len, false);
1491}
1492
1493static int kvmgt_write_gpa(unsigned long handle, unsigned long gpa,
1494 void *buf, unsigned long len)
1495{
1496 return kvmgt_rw_gpa(handle, gpa, buf, len, true);
1497}
1498
1499static unsigned long kvmgt_virt_to_pfn(void *addr)
1500{
1501 return PFN_DOWN(__pa(addr));
1502}
1503
1504struct intel_gvt_mpt kvmgt_mpt = {
f30437c5
JS
1505 .host_init = kvmgt_host_init,
1506 .host_exit = kvmgt_host_exit,
1507 .attach_vgpu = kvmgt_attach_vgpu,
1508 .detach_vgpu = kvmgt_detach_vgpu,
1509 .inject_msi = kvmgt_inject_msi,
1510 .from_virt_to_mfn = kvmgt_virt_to_pfn,
1511 .set_wp_page = kvmgt_write_protect_add,
1512 .unset_wp_page = kvmgt_write_protect_remove,
1513 .read_gpa = kvmgt_read_gpa,
1514 .write_gpa = kvmgt_write_gpa,
1515 .gfn_to_mfn = kvmgt_gfn_to_pfn,
1516};
1517EXPORT_SYMBOL_GPL(kvmgt_mpt);
1518
1519static int __init kvmgt_init(void)
1520{
1521 return 0;
1522}
1523
1524static void __exit kvmgt_exit(void)
1525{
1526}
1527
1528module_init(kvmgt_init);
1529module_exit(kvmgt_exit);
1530
1531MODULE_LICENSE("GPL and additional rights");
1532MODULE_AUTHOR("Intel Corporation");