Merge pull request #40242 from gnidorah/gvt
linux: enable support for iGVT-g VGPU
This commit is contained in:
commit
0135f04d77
@ -787,6 +787,7 @@
|
|||||||
./virtualisation/lxd.nix
|
./virtualisation/lxd.nix
|
||||||
./virtualisation/amazon-options.nix
|
./virtualisation/amazon-options.nix
|
||||||
./virtualisation/hyperv-guest.nix
|
./virtualisation/hyperv-guest.nix
|
||||||
|
./virtualisation/kvmgt.nix
|
||||||
./virtualisation/openvswitch.nix
|
./virtualisation/openvswitch.nix
|
||||||
./virtualisation/parallels-guest.nix
|
./virtualisation/parallels-guest.nix
|
||||||
./virtualisation/qemu-guest-agent.nix
|
./virtualisation/qemu-guest-agent.nix
|
||||||
|
64
nixos/modules/virtualisation/kvmgt.nix
Normal file
64
nixos/modules/virtualisation/kvmgt.nix
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.virtualisation.kvmgt;
|
||||||
|
kernelPackages = config.boot.kernelPackages;
|
||||||
|
vgpuOptions = {
|
||||||
|
uuid = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
description = "UUID of VGPU device. You can generate one with <package>libossp_uuid</package>.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
options = {
|
||||||
|
virtualisation.kvmgt = {
|
||||||
|
enable = mkEnableOption ''
|
||||||
|
KVMGT (iGVT-g) VGPU support. Allows Qemu/KVM guests to share host's Intel integrated graphics card.
|
||||||
|
Currently only one graphical device can be shared
|
||||||
|
'';
|
||||||
|
# multi GPU support is under the question
|
||||||
|
device = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "0000:00:02.0";
|
||||||
|
description = "PCI ID of graphics card. You can figure it with <command>ls /sys/class/mdev_bus</command>.";
|
||||||
|
};
|
||||||
|
vgpus = mkOption {
|
||||||
|
default = {};
|
||||||
|
type = with types; attrsOf (submodule [ { options = vgpuOptions; } ]);
|
||||||
|
description = ''
|
||||||
|
Virtual GPUs to be used in Qemu. You can find devices via <command>ls /sys/bus/pci/devices/*/mdev_supported_types</command>
|
||||||
|
and find info about device via <command>cat /sys/bus/pci/devices/*/mdev_supported_types/i915-GVTg_V5_4/description</command>
|
||||||
|
'';
|
||||||
|
example = {
|
||||||
|
"i915-GVTg_V5_8" = {
|
||||||
|
uuid = "a297db4a-f4c2-11e6-90f6-d3b88d6c9525";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
assertions = singleton {
|
||||||
|
assertion = versionAtLeast kernelPackages.kernel.version "4.16";
|
||||||
|
message = "KVMGT is not properly supported for kernels older than 4.16";
|
||||||
|
};
|
||||||
|
boot.kernelParams = [ "i915.enable_gvt=1" ];
|
||||||
|
systemd.services = mapAttrs' (name: value:
|
||||||
|
nameValuePair "kvmgt-${name}" {
|
||||||
|
description = "KVMGT VGPU ${name}";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "oneshot";
|
||||||
|
RemainAfterExit = true;
|
||||||
|
ExecStart = "${pkgs.runtimeShell} -c 'echo ${value.uuid} > /sys/bus/pci/devices/${cfg.device}/mdev_supported_types/${name}/create'";
|
||||||
|
ExecStop = "${pkgs.runtimeShell} -c 'echo 1 > /sys/bus/pci/devices/${cfg.device}/${value.uuid}/remove'";
|
||||||
|
};
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
}
|
||||||
|
) cfg.vgpus;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta.maintainers = with maintainers; [ gnidorah ];
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtkvnc, gmp
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtkvnc, gmp
|
||||||
, libgcrypt, gnupg, cyrus_sasl, shared-mime-info, libvirt, yajl, xen
|
, libgcrypt, gnupg, cyrus_sasl, shared-mime-info, libvirt, yajl, xen
|
||||||
, gsettings-desktop-schemas, makeWrapper, libvirt-glib, libcap_ng, numactl
|
, gsettings-desktop-schemas, makeWrapper, libvirt-glib, libcap_ng, numactl
|
||||||
, libapparmor
|
, libapparmor, gst_all_1
|
||||||
, spiceSupport ? true
|
, spiceSupport ? true
|
||||||
, spice-gtk ? null, spice-protocol ? null, libcap ? null, gdbm ? null
|
, spice-gtk ? null, spice-protocol ? null, libcap ? null, gdbm ? null
|
||||||
}:
|
}:
|
||||||
@ -30,11 +30,14 @@ stdenv.mkDerivation rec {
|
|||||||
xen
|
xen
|
||||||
] ++ optionals spiceSupport [
|
] ++ optionals spiceSupport [
|
||||||
spice-gtk spice-protocol libcap gdbm
|
spice-gtk spice-protocol libcap gdbm
|
||||||
|
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for f in "$out"/bin/*; do
|
for f in "$out"/bin/*; do
|
||||||
wrapProgram "$f" --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
wrapProgram "$f" \
|
||||||
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
|
||||||
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
|
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
|
||||||
, cyrus_sasl, python2Packages, autoreconfHook, usbredir, libsoup
|
, cyrus_sasl, python2Packages, autoreconfHook, usbredir, libsoup
|
||||||
, withPolkit ? true, polkit, acl, usbutils
|
, withPolkit ? true, polkit, acl, usbutils
|
||||||
, vala, gtk3, epoxy, libdrm }:
|
, vala, gtk3, epoxy, libdrm, gst_all_1, phodav }:
|
||||||
|
|
||||||
# If this package is built with polkit support (withPolkit=true),
|
# If this package is built with polkit support (withPolkit=true),
|
||||||
# usb redirection reqires spice-client-glib-usb-acl-helper to run setuid root.
|
# usb redirection reqires spice-client-glib-usb-acl-helper to run setuid root.
|
||||||
@ -46,8 +46,8 @@ in stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
spice-protocol celt_0_5_1 openssl libpulseaudio pixman
|
spice-protocol celt_0_5_1 openssl libpulseaudio gst_all_1.gst-plugins-base pixman
|
||||||
libjpeg_turbo zlib cyrus_sasl python pygtk usbredir gtk3 epoxy libdrm
|
libjpeg_turbo zlib cyrus_sasl python pygtk usbredir gtk3 epoxy libdrm phodav
|
||||||
] ++ optionals withPolkit [ polkit acl usbutils ] ;
|
] ++ optionals withPolkit [ polkit acl usbutils ] ;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig gettext libsoup autoreconfHook vala gobjectIntrospection ];
|
nativeBuildInputs = [ pkgconfig gettext libsoup autoreconfHook vala gobjectIntrospection ];
|
||||||
|
@ -214,6 +214,11 @@ with stdenv.lib;
|
|||||||
${optionalString (versionOlder version "4.3") ''
|
${optionalString (versionOlder version "4.3") ''
|
||||||
DRM_I915_KMS y
|
DRM_I915_KMS y
|
||||||
''}
|
''}
|
||||||
|
# iGVT-g support
|
||||||
|
${optionalString (versionAtLeast version "4.16") ''
|
||||||
|
DRM_I915_GVT y
|
||||||
|
DRM_I915_GVT_KVMGT m
|
||||||
|
''}
|
||||||
# Allow specifying custom EDID on the kernel command line
|
# Allow specifying custom EDID on the kernel command line
|
||||||
DRM_LOAD_EDID_FIRMWARE y
|
DRM_LOAD_EDID_FIRMWARE y
|
||||||
VGA_SWITCHEROO y # Hybrid graphics support
|
VGA_SWITCHEROO y # Hybrid graphics support
|
||||||
|
25
pkgs/tools/networking/phodav/default.nix
Normal file
25
pkgs/tools/networking/phodav/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchurl
|
||||||
|
, intltool, pkgconfig, glib, libsoup }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "2.2";
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "phodav-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://ftp.gnome.org/pub/GNOME/sources/phodav/${version}/${name}.tar.xz";
|
||||||
|
sha256 = "1hap0lncbcmivnflh0fbx7y58ry78p9wgj7z03r64ic0kvf0a0q8";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ intltool glib libsoup ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "WebDav server implementation and library using libsoup";
|
||||||
|
homepage = https://wiki.gnome.org/phodav;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ gnidorah ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -4398,6 +4398,8 @@ with pkgs;
|
|||||||
|
|
||||||
philter = callPackage ../tools/networking/philter { };
|
philter = callPackage ../tools/networking/philter { };
|
||||||
|
|
||||||
|
phodav = callPackage ../tools/networking/phodav { };
|
||||||
|
|
||||||
pinentry = callPackage ../tools/security/pinentry {
|
pinentry = callPackage ../tools/security/pinentry {
|
||||||
libcap = if stdenv.isDarwin then null else libcap;
|
libcap = if stdenv.isDarwin then null else libcap;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user