-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdxgmodule.c
More file actions
968 lines (801 loc) · 23.6 KB
/
dxgmodule.c
File metadata and controls
968 lines (801 loc) · 23.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2022, Microsoft Corporation.
*
* Author:
* Iouri Tarassov <iourit@linux.microsoft.com>
*
* Dxgkrnl Graphics Driver
* Interface with Linux kernel, PCI driver and the VM bus driver
*
*/
#include <linux/module.h>
#include <linux/eventfd.h>
#include "hyperv.h"
#include <linux/pci.h>
#include "dxgkrnl.h"
#include "dxgsyncfile.h"
#define PCI_VENDOR_ID_MICROSOFT 0x1414
#define PCI_DEVICE_ID_VIRTUAL_RENDER 0x008E
#define PCI_DEVICE_ID_COMPUTE_ACCELERATOR 0x008A
#undef pr_fmt
#define pr_fmt(fmt) "dxgk: " fmt
#undef dev_fmt
#define dev_fmt(fmt) "dxgk: " fmt
/*
* Interface from dxgglobal
*/
struct vmbus_channel *dxgglobal_get_vmbus(void)
{
return dxggbl()->channel.channel;
}
struct dxgvmbuschannel *dxgglobal_get_dxgvmbuschannel(void)
{
return &dxggbl()->channel;
}
int dxgglobal_acquire_channel_lock(void)
{
struct dxgglobal *dxgglobal = dxggbl();
down_read(&dxgglobal->channel_lock);
if (dxgglobal->channel.channel == NULL) {
DXG_ERR("Failed to acquire global channel lock");
return -ENODEV;
} else {
return 0;
}
}
void dxgglobal_release_channel_lock(void)
{
up_read(&dxggbl()->channel_lock);
}
void dxgglobal_acquire_adapter_list_lock(enum dxglockstate state)
{
struct dxgglobal *dxgglobal = dxggbl();
if (state == DXGLOCK_EXCL)
down_write(&dxgglobal->adapter_list_lock);
else
down_read(&dxgglobal->adapter_list_lock);
}
void dxgglobal_release_adapter_list_lock(enum dxglockstate state)
{
struct dxgglobal *dxgglobal = dxggbl();
if (state == DXGLOCK_EXCL)
up_write(&dxgglobal->adapter_list_lock);
else
up_read(&dxgglobal->adapter_list_lock);
}
/*
* Returns a pointer to dxgadapter object, which corresponds to the given PCI
* device, or NULL.
*/
static struct dxgadapter *find_pci_adapter(struct pci_dev *dev)
{
struct dxgadapter *entry;
struct dxgadapter *adapter = NULL;
struct dxgglobal *dxgglobal = dxggbl();
dxgglobal_acquire_adapter_list_lock(DXGLOCK_EXCL);
list_for_each_entry(entry, &dxgglobal->adapter_list_head,
adapter_list_entry) {
if (dev == entry->pci_dev) {
adapter = entry;
break;
}
}
dxgglobal_release_adapter_list_lock(DXGLOCK_EXCL);
return adapter;
}
/*
* Returns a pointer to dxgadapter object, which has the givel LUID
* device, or NULL.
*/
static struct dxgadapter *find_adapter(struct winluid *luid)
{
struct dxgadapter *entry;
struct dxgadapter *adapter = NULL;
struct dxgglobal *dxgglobal = dxggbl();
dxgglobal_acquire_adapter_list_lock(DXGLOCK_EXCL);
list_for_each_entry(entry, &dxgglobal->adapter_list_head,
adapter_list_entry) {
if (memcmp(luid, &entry->luid, sizeof(struct winluid)) == 0) {
adapter = entry;
break;
}
}
dxgglobal_release_adapter_list_lock(DXGLOCK_EXCL);
return adapter;
}
void dxgglobal_add_host_event(struct dxghostevent *event)
{
struct dxgglobal *dxgglobal = dxggbl();
spin_lock_irq(&dxgglobal->host_event_list_mutex);
list_add_tail(&event->host_event_list_entry,
&dxgglobal->host_event_list_head);
spin_unlock_irq(&dxgglobal->host_event_list_mutex);
}
void dxgglobal_remove_host_event(struct dxghostevent *event)
{
struct dxgglobal *dxgglobal = dxggbl();
spin_lock_irq(&dxgglobal->host_event_list_mutex);
if (event->host_event_list_entry.next != NULL) {
list_del(&event->host_event_list_entry);
event->host_event_list_entry.next = NULL;
}
spin_unlock_irq(&dxgglobal->host_event_list_mutex);
}
static void dxg_signal_dma_fence(struct dxghostevent *eventhdr)
{
struct dxgsyncpoint *event = (struct dxgsyncpoint *)eventhdr;
DXG_TRACE("syncpoint: %px, fence: %lld", event, event->fence_value);
event->fence_value++;
list_del(&eventhdr->host_event_list_entry);
dma_fence_signal(&event->base);
}
void signal_host_cpu_event(struct dxghostevent *eventhdr)
{
struct dxghosteventcpu *event = (struct dxghosteventcpu *)eventhdr;
if (event->remove_from_list ||
event->destroy_after_signal) {
list_del(&eventhdr->host_event_list_entry);
eventhdr->host_event_list_entry.next = NULL;
}
if (event->cpu_event) {
DXG_TRACE("signal cpu event");
eventfd_signal(event->cpu_event, 1);
if (event->destroy_after_signal)
eventfd_ctx_put(event->cpu_event);
} else {
DXG_TRACE("signal completion");
complete(event->completion_event);
}
if (event->destroy_after_signal) {
DXG_TRACE("destroying event %p", event);
kfree(event);
}
}
void dxgglobal_signal_host_event(u64 event_id)
{
struct dxghostevent *event;
unsigned long flags;
struct dxgglobal *dxgglobal = dxggbl();
DXG_TRACE("Signaling host event %lld", event_id);
spin_lock_irqsave(&dxgglobal->host_event_list_mutex, flags);
list_for_each_entry(event, &dxgglobal->host_event_list_head,
host_event_list_entry) {
if (event->event_id == event_id) {
DXG_TRACE("found event to signal");
if (event->event_type == dxghostevent_cpu_event)
signal_host_cpu_event(event);
else if (event->event_type == dxghostevent_dma_fence)
dxg_signal_dma_fence(event);
else
DXG_ERR("Unknown host event type");
break;
}
}
spin_unlock_irqrestore(&dxgglobal->host_event_list_mutex, flags);
}
struct dxghostevent *dxgglobal_get_host_event(u64 event_id)
{
struct dxghostevent *entry;
struct dxghostevent *event = NULL;
struct dxgglobal *dxgglobal = dxggbl();
spin_lock_irq(&dxgglobal->host_event_list_mutex);
list_for_each_entry(entry, &dxgglobal->host_event_list_head,
host_event_list_entry) {
if (entry->event_id == event_id) {
list_del(&entry->host_event_list_entry);
entry->host_event_list_entry.next = NULL;
event = entry;
break;
}
}
spin_unlock_irq(&dxgglobal->host_event_list_mutex);
return event;
}
u64 dxgglobal_new_host_event_id(void)
{
struct dxgglobal *dxgglobal = dxggbl();
return atomic64_inc_return(&dxgglobal->host_event_id);
}
void dxgglobal_acquire_process_adapter_lock(void)
{
struct dxgglobal *dxgglobal = dxggbl();
mutex_lock(&dxgglobal->process_adapter_mutex);
}
void dxgglobal_release_process_adapter_lock(void)
{
struct dxgglobal *dxgglobal = dxggbl();
mutex_unlock(&dxgglobal->process_adapter_mutex);
}
/*
* Creates a new dxgadapter object, which represents a virtual GPU, projected
* by the host.
* The adapter is in the waiting state. It will become active when the global
* VM bus channel and the adapter VM bus channel are created.
*/
int dxgglobal_create_adapter(struct pci_dev *dev, guid_t *guid,
struct winluid host_vgpu_luid)
{
struct dxgadapter *adapter;
int ret = 0;
struct dxgglobal *dxgglobal = dxggbl();
adapter = kzalloc(sizeof(struct dxgadapter), GFP_KERNEL);
if (adapter == NULL) {
ret = -ENOMEM;
goto cleanup;
}
adapter->adapter_state = DXGADAPTER_STATE_WAITING_VMBUS;
adapter->host_vgpu_luid = host_vgpu_luid;
if (dev->device == PCI_DEVICE_ID_COMPUTE_ACCELERATOR)
adapter->compute_only = true;
kref_init(&adapter->adapter_kref);
init_rwsem(&adapter->core_lock);
mutex_init(&adapter->device_creation_lock);
INIT_LIST_HEAD(&adapter->adapter_process_list_head);
INIT_LIST_HEAD(&adapter->shared_resource_list_head);
INIT_LIST_HEAD(&adapter->adapter_shared_syncobj_list_head);
INIT_LIST_HEAD(&adapter->syncobj_list_head);
init_rwsem(&adapter->shared_resource_list_lock);
adapter->pci_dev = dev;
guid_to_luid(guid, &adapter->luid);
dxgglobal_acquire_adapter_list_lock(DXGLOCK_EXCL);
list_add_tail(&adapter->adapter_list_entry,
&dxgglobal->adapter_list_head);
dxgglobal->num_adapters++;
dxgglobal_release_adapter_list_lock(DXGLOCK_EXCL);
DXG_TRACE("new adapter added %p %x-%x", adapter,
adapter->luid.a, adapter->luid.b);
cleanup:
return ret;
}
/*
* Attempts to start dxgadapter objects, which are not active yet.
*/
static void dxgglobal_start_adapters(void)
{
struct dxgadapter *adapter;
struct dxgglobal *dxgglobal = dxggbl();
if (dxgglobal->hdev == NULL) {
DXG_TRACE("Global channel is not ready");
return;
}
dxgglobal_acquire_adapter_list_lock(DXGLOCK_EXCL);
list_for_each_entry(adapter, &dxgglobal->adapter_list_head,
adapter_list_entry) {
if (adapter->adapter_state == DXGADAPTER_STATE_WAITING_VMBUS)
dxgadapter_start(adapter);
}
dxgglobal_release_adapter_list_lock(DXGLOCK_EXCL);
}
/*
* Stop the active dxgadapter objects.
*/
static void dxgglobal_stop_adapters(void)
{
struct dxgadapter *adapter;
struct dxgglobal *dxgglobal = dxggbl();
if (dxgglobal->hdev == NULL) {
DXG_TRACE("Global channel is not ready");
return;
}
dxgglobal_acquire_adapter_list_lock(DXGLOCK_EXCL);
list_for_each_entry(adapter, &dxgglobal->adapter_list_head,
adapter_list_entry) {
if (adapter->adapter_state == DXGADAPTER_STATE_ACTIVE)
dxgadapter_stop(adapter);
}
dxgglobal_release_adapter_list_lock(DXGLOCK_EXCL);
}
/*
* Returns dxgprocess for the current executing process.
* Creates dxgprocess if it doesn't exist.
*/
static struct dxgprocess *dxgglobal_get_current_process(void)
{
/*
* Find the DXG process for the current process.
* A new process is created if necessary.
*/
struct dxgprocess *process = NULL;
struct dxgprocess *entry = NULL;
struct dxgglobal *dxgglobal = dxggbl();
mutex_lock(&dxgglobal->plistmutex);
list_for_each_entry(entry, &dxgglobal->plisthead, plistentry) {
/* All threads of a process have the same thread group ID */
if (entry->tgid == current->tgid) {
if (kref_get_unless_zero(&entry->process_kref)) {
process = entry;
kref_get(&entry->process_mem_kref);
DXG_TRACE("found dxgprocess");
} else {
DXG_TRACE("process is destroyed");
}
break;
}
}
mutex_unlock(&dxgglobal->plistmutex);
if (process == NULL)
process = dxgprocess_create();
return process;
}
/*
* File operations for the /dev/dxg device
*/
static int dxgk_open(struct inode *n, struct file *f)
{
int ret = 0;
struct dxgprocess *process;
DXG_TRACE("%p %d %d", f, current->pid, current->tgid);
/* Find/create a dxgprocess structure for this process */
process = dxgglobal_get_current_process();
if (process) {
f->private_data = process;
} else {
DXG_TRACE("cannot create dxgprocess");
ret = -EBADF;
}
return ret;
}
static int dxgk_release(struct inode *n, struct file *f)
{
struct dxgprocess *process;
process = (struct dxgprocess *)f->private_data;
DXG_TRACE("%p, %p", f, process);
if (process == NULL)
return -EINVAL;
kref_put(&process->process_kref, dxgprocess_release);
kref_put(&process->process_mem_kref, dxgprocess_mem_release);
f->private_data = NULL;
return 0;
}
const struct file_operations dxgk_fops = {
.owner = THIS_MODULE,
.open = dxgk_open,
.release = dxgk_release,
.compat_ioctl = dxgk_compat_ioctl,
.unlocked_ioctl = dxgk_unlocked_ioctl,
};
/*
* Interface with the PCI driver
*/
/*
* Part of the PCI config space of the compute device is used for
* configuration data. Reading/writing of the PCI config space is forwarded
* to the host.
*
* Below are offsets in the PCI config spaces for various configuration values.
*/
/* Compute device VM bus channel instance ID */
#define DXGK_VMBUS_CHANNEL_ID_OFFSET 192
/* DXGK_VMBUS_INTERFACE_VERSION (u32) */
#define DXGK_VMBUS_VERSION_OFFSET (DXGK_VMBUS_CHANNEL_ID_OFFSET + \
sizeof(guid_t))
/* Luid of the virtual GPU on the host (struct winluid) */
#define DXGK_VMBUS_VGPU_LUID_OFFSET (DXGK_VMBUS_VERSION_OFFSET + \
sizeof(u32))
/* The host caps (dxgk_vmbus_hostcaps) */
#define DXGK_VMBUS_HOSTCAPS_OFFSET (DXGK_VMBUS_VGPU_LUID_OFFSET + \
sizeof(struct winluid))
/* The guest writes its capabilities to this address */
#define DXGK_VMBUS_GUESTCAPS_OFFSET (DXGK_VMBUS_VERSION_OFFSET + \
sizeof(u32))
/* Capabilities of the guest driver, reported to the host */
struct dxgk_vmbus_guestcaps {
union {
struct {
u32 wsl2 : 1;
u32 reserved : 31;
};
u32 guest_caps;
};
};
/*
* The structure defines features, supported by the host.
*
* map_guest_memory
* Host can map guest memory pages, so the guest can avoid using GPADLs
* to represent existing system memory allocations.
*/
struct dxgk_vmbus_hostcaps {
union {
struct {
u32 map_guest_memory : 1;
u32 reserved : 31;
};
u32 host_caps;
};
};
/*
* A helper function to read PCI config space.
*/
static int dxg_pci_read_dwords(struct pci_dev *dev, int offset, int size,
void *val)
{
int off = offset;
int ret;
int i;
/* Make sure the offset and size are 32 bit aligned */
if (offset & 3 || size & 3)
return -EINVAL;
for (i = 0; i < size / sizeof(int); i++) {
ret = pci_read_config_dword(dev, off, &((int *)val)[i]);
if (ret) {
DXG_ERR("Failed to read PCI config: %d", off);
return ret;
}
off += sizeof(int);
}
return 0;
}
static int dxg_pci_probe_device(struct pci_dev *dev,
const struct pci_device_id *id)
{
int ret;
guid_t guid;
u32 vmbus_interface_ver = DXGK_VMBUS_INTERFACE_VERSION;
struct winluid vgpu_luid = {};
struct dxgk_vmbus_guestcaps guest_caps = {.wsl2 = 1};
struct dxgglobal *dxgglobal = dxggbl();
struct dxgk_vmbus_hostcaps host_caps = {};
mutex_lock(&dxgglobal->device_mutex);
if (dxgglobal->vmbus_ver == 0) {
/* Report capabilities to the host */
ret = pci_write_config_dword(dev, DXGK_VMBUS_GUESTCAPS_OFFSET,
guest_caps.guest_caps);
if (ret)
goto cleanup;
/* Negotiate the VM bus version */
ret = pci_read_config_dword(dev, DXGK_VMBUS_VERSION_OFFSET,
&vmbus_interface_ver);
if (ret == 0 && vmbus_interface_ver != 0)
dxgglobal->vmbus_ver = vmbus_interface_ver;
else
dxgglobal->vmbus_ver = DXGK_VMBUS_INTERFACE_VERSION_OLD;
if (dxgglobal->vmbus_ver < DXGK_VMBUS_INTERFACE_VERSION)
goto read_channel_id;
ret = pci_write_config_dword(dev, DXGK_VMBUS_VERSION_OFFSET,
DXGK_VMBUS_INTERFACE_VERSION);
if (ret)
goto cleanup;
ret = pci_read_config_dword(dev, DXGK_VMBUS_HOSTCAPS_OFFSET,
&host_caps.host_caps);
if (ret == 0) {
if (host_caps.map_guest_memory)
dxgglobal->map_guest_pages_enabled = true;
}
if (dxgglobal->vmbus_ver > DXGK_VMBUS_INTERFACE_VERSION)
dxgglobal->vmbus_ver = DXGK_VMBUS_INTERFACE_VERSION;
}
read_channel_id:
/* Get the VM bus channel ID for the virtual GPU */
ret = dxg_pci_read_dwords(dev, DXGK_VMBUS_CHANNEL_ID_OFFSET,
sizeof(guid), (int *)&guid);
if (ret)
goto cleanup;
if (dxgglobal->vmbus_ver >= DXGK_VMBUS_INTERFACE_VERSION) {
ret = dxg_pci_read_dwords(dev, DXGK_VMBUS_VGPU_LUID_OFFSET,
sizeof(vgpu_luid), &vgpu_luid);
if (ret)
goto cleanup;
}
DXG_TRACE("Adapter channel: %pUb", &guid);
DXG_TRACE("Vmbus interface version: %d", dxgglobal->vmbus_ver);
DXG_TRACE("Host luid: %x-%x", vgpu_luid.b, vgpu_luid.a);
/* Create new virtual GPU adapter */
ret = dxgglobal_create_adapter(dev, &guid, vgpu_luid);
if (ret)
goto cleanup;
/* Attempt to start the adapter in case VM bus channels are created */
dxgglobal_start_adapters();
cleanup:
mutex_unlock(&dxgglobal->device_mutex);
if (ret)
DXG_TRACE("err: %d", ret);
return ret;
}
static void dxg_pci_remove_device(struct pci_dev *dev)
{
struct dxgadapter *adapter;
struct dxgglobal *dxgglobal = dxggbl();
mutex_lock(&dxgglobal->device_mutex);
adapter = find_pci_adapter(dev);
if (adapter) {
dxgglobal_acquire_adapter_list_lock(DXGLOCK_EXCL);
list_del(&adapter->adapter_list_entry);
dxgglobal->num_adapters--;
dxgglobal_release_adapter_list_lock(DXGLOCK_EXCL);
dxgadapter_stop(adapter);
kref_put(&adapter->adapter_kref, dxgadapter_release);
} else {
DXG_ERR("Failed to find dxgadapter for pcidev");
}
mutex_unlock(&dxgglobal->device_mutex);
}
static struct pci_device_id dxg_pci_id_table[] = {
{
.vendor = PCI_VENDOR_ID_MICROSOFT,
.device = PCI_DEVICE_ID_VIRTUAL_RENDER,
.subvendor = PCI_ANY_ID,
.subdevice = PCI_ANY_ID
},
{
.vendor = PCI_VENDOR_ID_MICROSOFT,
.device = PCI_DEVICE_ID_COMPUTE_ACCELERATOR,
.subvendor = PCI_ANY_ID,
.subdevice = PCI_ANY_ID
},
{ 0 }
};
/*
* Interface with the VM bus driver
*/
static int dxgglobal_getiospace(struct dxgglobal *dxgglobal)
{
/* Get mmio space for the global channel */
struct hv_device *hdev = dxgglobal->hdev;
struct vmbus_channel *channel = hdev->channel;
resource_size_t pot_start = 0;
resource_size_t pot_end = -1;
int ret;
dxgglobal->mmiospace_size = channel->offermsg.offer.mmio_megabytes;
if (dxgglobal->mmiospace_size == 0) {
DXG_TRACE("Zero mmio space is offered");
return -ENOMEM;
}
dxgglobal->mmiospace_size <<= 20;
DXG_TRACE("mmio offered: %llx", dxgglobal->mmiospace_size);
ret = vmbus_allocate_mmio(&dxgglobal->mem, hdev, pot_start, pot_end,
dxgglobal->mmiospace_size, 0x10000, false);
if (ret) {
DXG_ERR("Unable to allocate mmio memory: %d", ret);
return ret;
}
dxgglobal->mmiospace_size = dxgglobal->mem->end -
dxgglobal->mem->start + 1;
dxgglobal->mmiospace_base = dxgglobal->mem->start;
DXG_TRACE("mmio allocated %llx %llx %llx %llx",
dxgglobal->mmiospace_base, dxgglobal->mmiospace_size,
dxgglobal->mem->start, dxgglobal->mem->end);
return 0;
}
int dxgglobal_init_global_channel(void)
{
int ret = 0;
struct dxgglobal *dxgglobal = dxggbl();
ret = dxgvmbuschannel_init(&dxgglobal->channel, dxgglobal->hdev);
if (ret) {
DXG_ERR("dxgvmbuschannel_init failed: %d", ret);
goto error;
}
ret = dxgglobal_getiospace(dxgglobal);
if (ret) {
DXG_ERR("getiospace failed: %d", ret);
goto error;
}
ret = dxgvmb_send_set_iospace_region(dxgglobal->mmiospace_base,
dxgglobal->mmiospace_size);
if (ret < 0) {
DXG_ERR("send_set_iospace_region failed");
goto error;
}
hv_set_drvdata(dxgglobal->hdev, dxgglobal);
error:
return ret;
}
void dxgglobal_destroy_global_channel(void)
{
struct dxgglobal *dxgglobal = dxggbl();
down_write(&dxgglobal->channel_lock);
dxgglobal->global_channel_initialized = false;
if (dxgglobal->mem) {
vmbus_free_mmio(dxgglobal->mmiospace_base,
dxgglobal->mmiospace_size);
dxgglobal->mem = NULL;
}
dxgvmbuschannel_destroy(&dxgglobal->channel);
if (dxgglobal->hdev) {
hv_set_drvdata(dxgglobal->hdev, NULL);
dxgglobal->hdev = NULL;
}
up_write(&dxgglobal->channel_lock);
}
static void dxgglobal_stop_adapter_vmbus(struct hv_device *hdev)
{
struct dxgadapter *adapter = NULL;
struct winluid luid;
guid_to_luid(&hdev->channel->offermsg.offer.if_instance, &luid);
DXG_TRACE("Stopping adapter %x:%x", luid.b, luid.a);
adapter = find_adapter(&luid);
if (adapter && adapter->adapter_state == DXGADAPTER_STATE_ACTIVE) {
down_write(&adapter->core_lock);
dxgvmbuschannel_destroy(&adapter->channel);
adapter->adapter_state = DXGADAPTER_STATE_STOPPED;
up_write(&adapter->core_lock);
}
}
static const struct hv_vmbus_device_id dxg_vmbus_id_table[] = {
/* Per GPU Device GUID */
{ HV_GPUP_DXGK_VGPU_GUID },
/* Global Dxgkgnl channel for the virtual machine */
{ HV_GPUP_DXGK_GLOBAL_GUID },
{ }
};
static int dxg_probe_vmbus(struct hv_device *hdev,
const struct hv_vmbus_device_id *dev_id)
{
int ret = 0;
struct winluid luid;
struct dxgvgpuchannel *vgpuch;
struct dxgglobal *dxgglobal = dxggbl();
mutex_lock(&dxgglobal->device_mutex);
if (guid_equal(&hdev->dev_type, &dxg_vmbus_id_table[0].guid)) {
/* This is a new virtual GPU channel */
guid_to_luid(&hdev->channel->offermsg.offer.if_instance, &luid);
DXG_TRACE("vGPU channel: %pUb",
&hdev->channel->offermsg.offer.if_instance);
vgpuch = kzalloc(sizeof(struct dxgvgpuchannel), GFP_KERNEL);
if (vgpuch == NULL) {
ret = -ENOMEM;
goto error;
}
vgpuch->adapter_luid = luid;
vgpuch->hdev = hdev;
list_add_tail(&vgpuch->vgpu_ch_list_entry,
&dxgglobal->vgpu_ch_list_head);
dxgglobal_start_adapters();
} else if (guid_equal(&hdev->dev_type, &dxg_vmbus_id_table[1].guid)) {
/* This is the global Dxgkgnl channel */
DXG_TRACE("Global channel: %pUb",
&hdev->channel->offermsg.offer.if_instance);
if (dxgglobal->hdev) {
/* This device should appear only once */
DXG_ERR("global channel already exists");
ret = -EBADE;
goto error;
}
dxgglobal->hdev = hdev;
dxgglobal_start_adapters();
} else {
/* Unknown device type */
DXG_ERR("Unknown VM bus device type");
ret = -ENODEV;
}
error:
mutex_unlock(&dxgglobal->device_mutex);
return ret;
}
static void dxg_remove_vmbus(struct hv_device *hdev)
{
struct dxgvgpuchannel *vgpu_channel;
struct dxgglobal *dxgglobal = dxggbl();
mutex_lock(&dxgglobal->device_mutex);
if (guid_equal(&hdev->dev_type, &dxg_vmbus_id_table[0].guid)) {
DXG_TRACE("Remove virtual GPU channel");
dxgglobal_stop_adapter_vmbus(hdev);
list_for_each_entry(vgpu_channel,
&dxgglobal->vgpu_ch_list_head,
vgpu_ch_list_entry) {
if (vgpu_channel->hdev == hdev) {
list_del(&vgpu_channel->vgpu_ch_list_entry);
kfree(vgpu_channel);
break;
}
}
} else if (guid_equal(&hdev->dev_type, &dxg_vmbus_id_table[1].guid)) {
DXG_TRACE("Remove global channel device");
dxgglobal_destroy_global_channel();
} else {
/* Unknown device type */
DXG_ERR("Unknown device type");
}
mutex_unlock(&dxgglobal->device_mutex);
}
MODULE_DEVICE_TABLE(vmbus, dxg_vmbus_id_table);
MODULE_DEVICE_TABLE(pci, dxg_pci_id_table);
/*
* Global driver data
*/
struct dxgdriver dxgdrv = {
.vmbus_drv.name = KBUILD_MODNAME,
.vmbus_drv.id_table = dxg_vmbus_id_table,
.vmbus_drv.probe = dxg_probe_vmbus,
.vmbus_drv.remove = dxg_remove_vmbus,
.vmbus_drv.driver = {
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
},
.pci_drv.name = KBUILD_MODNAME,
.pci_drv.id_table = dxg_pci_id_table,
.pci_drv.probe = dxg_pci_probe_device,
.pci_drv.remove = dxg_pci_remove_device
};
static struct dxgglobal *dxgglobal_create(void)
{
struct dxgglobal *dxgglobal;
dxgglobal = kzalloc(sizeof(struct dxgglobal), GFP_KERNEL);
if (!dxgglobal)
return NULL;
INIT_LIST_HEAD(&dxgglobal->plisthead);
mutex_init(&dxgglobal->plistmutex);
mutex_init(&dxgglobal->device_mutex);
mutex_init(&dxgglobal->process_adapter_mutex);
INIT_LIST_HEAD(&dxgglobal->vgpu_ch_list_head);
INIT_LIST_HEAD(&dxgglobal->adapter_list_head);
init_rwsem(&dxgglobal->adapter_list_lock);
init_rwsem(&dxgglobal->channel_lock);
INIT_LIST_HEAD(&dxgglobal->host_event_list_head);
spin_lock_init(&dxgglobal->host_event_list_mutex);
atomic64_set(&dxgglobal->host_event_id, 1);
#ifdef DEBUG
dxgk_validate_ioctls();
#endif
return dxgglobal;
}
static void dxgglobal_destroy(struct dxgglobal *dxgglobal)
{
if (dxgglobal) {
mutex_lock(&dxgglobal->device_mutex);
dxgglobal_stop_adapters();
dxgglobal_destroy_global_channel();
mutex_unlock(&dxgglobal->device_mutex);
if (dxgglobal->vmbus_registered)
vmbus_driver_unregister(&dxgdrv.vmbus_drv);
if (dxgglobal->pci_registered)
pci_unregister_driver(&dxgdrv.pci_drv);
if (dxgglobal->misc_registered)
misc_deregister(&dxgglobal->dxgdevice);
dxgglobal->drvdata->dxgdev = NULL;
kfree(dxgglobal);
dxgglobal = NULL;
}
}
static int __init dxg_drv_init(void)
{
int ret;
struct dxgglobal *dxgglobal = NULL;
dxgglobal = dxgglobal_create();
if (dxgglobal == NULL) {
pr_err("dxgglobal_init failed");
ret = -ENOMEM;
goto error;
}
dxgglobal->drvdata = &dxgdrv;
dxgglobal->dxgdevice.minor = MISC_DYNAMIC_MINOR;
dxgglobal->dxgdevice.name = "dxg";
dxgglobal->dxgdevice.fops = &dxgk_fops;
dxgglobal->dxgdevice.mode = 0666;
ret = misc_register(&dxgglobal->dxgdevice);
if (ret) {
pr_err("misc_register failed: %d", ret);
goto error;
}
dxgglobal->misc_registered = true;
dxgdrv.dxgdev = dxgglobal->dxgdevice.this_device;
dxgdrv.dxgglobal = dxgglobal;
ret = vmbus_driver_register(&dxgdrv.vmbus_drv);
if (ret) {
DXG_ERR("vmbus_driver_register failed: %d", ret);
goto error;
}
dxgglobal->vmbus_registered = true;
ret = pci_register_driver(&dxgdrv.pci_drv);
if (ret) {
DXG_ERR("pci_driver_register failed: %d", ret);
goto error;
}
dxgglobal->pci_registered = true;
return 0;
error:
/* This function does the cleanup */
dxgglobal_destroy(dxgglobal);
dxgdrv.dxgglobal = NULL;
return ret;
}
static void __exit dxg_drv_exit(void)
{
dxgglobal_destroy(dxgdrv.dxgglobal);
}
module_init(dxg_drv_init);
module_exit(dxg_drv_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Microsoft Dxgkrnl virtual compute device Driver");
MODULE_VERSION("2.0.3");