-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for a Hyper-V based vGPU implementation that exposes the DirectX API to Linux userspace. Signed-off-by: Sasha Levin <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Nathan Chancellor <[email protected]> Signed-off-by: Diab Neiroukh <[email protected]>
- Loading branch information
Showing
14 changed files
with
15,678 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# dxgkrnl configuration | ||
# | ||
|
||
config DXGKRNL | ||
tristate "Microsoft virtual GPU support" | ||
depends on HYPERV | ||
help | ||
This driver supports Microsoft virtual GPU. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Makefile for the Linux video drivers. | ||
# 5 Aug 1999, James Simmons, <mailto:[email protected]> | ||
# Rewritten to use lists instead of if-statements. | ||
|
||
# Each configuration option enables a list of files. | ||
|
||
# Uncomment to enable printing debug messages by default | ||
#ccflags-y := -DDEBUG | ||
|
||
obj-$(CONFIG_DXGKRNL) += dxgkrnl.o | ||
dxgkrnl-y := dxgmodule.o hmgr.o misc.o dxgadapter.o ioctl.o dxgvmbus.o dxgprocess.o |
Oops, something went wrong.