2023-05-12 18:12:33 +07:00
|
|
|
{ config
|
2023-12-18 08:48:49 +07:00
|
|
|
, options
|
2023-05-12 18:12:33 +07:00
|
|
|
, lib
|
|
|
|
, pkgs
|
|
|
|
, ... }:
|
|
|
|
|
2023-04-11 00:58:02 +07:00
|
|
|
let
|
|
|
|
cfg = config.vfio;
|
2023-12-18 08:48:49 +07:00
|
|
|
enableIvshmem = cfg.lookingGlass.enable && (builtins.length cfg.lookingGlass.ivshmem) > 0;
|
2023-04-11 00:58:02 +07:00
|
|
|
in {
|
2023-12-18 08:48:49 +07:00
|
|
|
options.vfio = with lib; {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable GPU passthrough + VM config (probably no intel/nvidia support since I can't test it)";
|
|
|
|
};
|
|
|
|
libvirtdGroup = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
default = [ ];
|
|
|
|
description = "Users to add to libvirtd group";
|
|
|
|
};
|
|
|
|
intelCpu = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether the CPU is Intel (untested)";
|
|
|
|
};
|
|
|
|
nvidiaGpu = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether the GPU is Nvidia (disables AMD-specific workarounds)";
|
|
|
|
};
|
|
|
|
passGpuAtBoot = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to pass the GPU at boot (can be more stable). If false, a bootloader entry to do it will still be available.";
|
|
|
|
};
|
|
|
|
pciIDs = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
default = [ ];
|
|
|
|
description = "PCI passthrough IDs";
|
|
|
|
};
|
|
|
|
lookingGlass = mkOption {
|
|
|
|
default = { };
|
|
|
|
type = types.submodule {
|
|
|
|
options = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = "Enable Looking Glass integration";
|
|
|
|
};
|
|
|
|
ivshmem = mkOption {
|
|
|
|
type = with types; listOf (submodule {
|
|
|
|
options = {
|
|
|
|
size = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 32;
|
|
|
|
description = "IVSHMEM size in MB: https://looking-glass.io/docs/B6/install/#determining-memory";
|
|
|
|
};
|
|
|
|
owner = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "IVSHMEM device owner";
|
|
|
|
};
|
2023-01-24 02:24:40 +07:00
|
|
|
};
|
2023-12-18 08:48:49 +07:00
|
|
|
});
|
|
|
|
default = if builtins.length cfg.libvirtdGroup == 1 then [
|
|
|
|
{ owner = builtins.head cfg.libvirtdGroup; }
|
|
|
|
] else [ ];
|
|
|
|
example = [ { size = 32; owner = "user"; } ];
|
|
|
|
description = "IVSHMEM/kvmfr config (multiple devices can be created: /dev/kvmfr0, /dev/kvmfr1, and so on)";
|
2023-01-24 02:24:40 +07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-12-18 08:48:49 +07:00
|
|
|
description = "Looking glass config";
|
2023-01-24 02:24:40 +07:00
|
|
|
};
|
|
|
|
};
|
2023-12-18 08:48:49 +07:00
|
|
|
config = lib.mkIf cfg.enable {
|
2023-04-11 00:58:02 +07:00
|
|
|
# add a custom kernel param for early loading vfio drivers
|
|
|
|
# because if we change boot.initrd options in a specialization, two initrds will be built
|
|
|
|
# and we don't want to build two initrds
|
2023-02-11 23:30:19 +07:00
|
|
|
specialisation.vfio.configuration = lib.mkIf (!cfg.passGpuAtBoot) {
|
|
|
|
boot.kernelParams = [ "early_load_vfio" ];
|
2023-04-11 00:58:02 +07:00
|
|
|
|
|
|
|
# I can't enable early KMS with VFIO, so this will have to do
|
|
|
|
# (amdgpu resets the font upon being loaded)
|
|
|
|
systemd.services."systemd-vconsole-setup2" = lib.mkIf (!cfg.nvidiaGpu) {
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
|
|
|
RemainAfterExit = true;
|
|
|
|
ExecStart = "${pkgs.systemd}/lib/systemd/systemd-vconsole-setup";
|
|
|
|
};
|
|
|
|
wantedBy = [ "graphical.target" ];
|
|
|
|
wants = [ "multi-user.target" ];
|
|
|
|
after = [ "multi-user.target" ];
|
|
|
|
};
|
2023-02-11 23:30:19 +07:00
|
|
|
};
|
2023-01-24 02:24:40 +07:00
|
|
|
boot = {
|
2023-02-11 23:30:19 +07:00
|
|
|
initrd.postDeviceCommands = lib.mkIf (!cfg.passGpuAtBoot) ''
|
|
|
|
for o in $(cat /proc/cmdline); do
|
|
|
|
case $o in
|
|
|
|
early_load_vfio)
|
|
|
|
loadVfio=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
if [[ -n "$loadVfio" ]]; then
|
|
|
|
modprobe vfio
|
|
|
|
modprobe vfio_iommu_type1
|
|
|
|
modprobe vfio_pci
|
2023-04-11 00:58:02 +07:00
|
|
|
${if cfg.nvidiaGpu then "" else ''
|
|
|
|
else
|
|
|
|
modprobe amdgpu''}
|
2023-02-11 23:30:19 +07:00
|
|
|
fi
|
|
|
|
'';
|
2023-01-24 02:24:40 +07:00
|
|
|
initrd.kernelModules = [
|
|
|
|
(if cfg.intelCpu then "kvm-intel" else "kvm-amd")
|
2023-12-18 08:48:49 +07:00
|
|
|
] ++ lib.optionals cfg.passGpuAtBoot [
|
2023-01-24 02:24:40 +07:00
|
|
|
"vfio"
|
|
|
|
"vfio_iommu_type1"
|
|
|
|
"vfio_pci"
|
2023-12-18 08:48:49 +07:00
|
|
|
];
|
2023-02-11 23:30:19 +07:00
|
|
|
initrd.availableKernelModules = lib.mkIf (!cfg.passGpuAtBoot) [
|
|
|
|
"vfio"
|
|
|
|
"vfio_iommu_type1"
|
|
|
|
"vfio_pci"
|
|
|
|
];
|
2023-07-12 14:59:52 +07:00
|
|
|
# kvmfrOverlay is defined in pkgs/default.nix
|
|
|
|
# I use it to keep looking-glass and kvmfr's version pinned
|
2023-01-24 02:24:40 +07:00
|
|
|
extraModulePackages =
|
2023-07-12 14:59:52 +07:00
|
|
|
lib.mkIf enableIvshmem [ ((pkgs.kvmfrOverlay or lib.id) config.boot.kernelPackages.kvmfr) ];
|
2023-04-11 00:58:02 +07:00
|
|
|
extraModprobeConfig = ''
|
2023-04-12 16:04:07 +07:00
|
|
|
options vfio-pci ids=${builtins.concatStringsSep "," cfg.pciIDs} disable_idle_d3=1
|
2023-01-24 02:24:40 +07:00
|
|
|
options kvm ignore_msrs=1
|
2023-12-18 08:48:49 +07:00
|
|
|
${lib.optionalString enableIvshmem ''
|
|
|
|
options kvmfr static_size_mb=${builtins.concatStringsSep "," (map (x: toString x.size) cfg.lookingGlass.ivshmem)}
|
|
|
|
''}
|
2023-01-24 02:24:40 +07:00
|
|
|
'';
|
|
|
|
kernelParams = [
|
|
|
|
(if cfg.intelCpu then "intel_iommu=on" else "amd_iommu=on")
|
|
|
|
"iommu=pt"
|
|
|
|
];
|
|
|
|
kernelModules = [
|
|
|
|
"vhost-net"
|
2023-12-18 08:48:49 +07:00
|
|
|
] ++ lib.optional enableIvshmem "kvmfr";
|
2023-01-24 02:24:40 +07:00
|
|
|
};
|
|
|
|
services.udev.extraRules = lib.mkIf enableIvshmem
|
2023-04-11 00:58:02 +07:00
|
|
|
(builtins.concatStringsSep
|
2023-04-12 16:04:07 +07:00
|
|
|
""
|
2023-01-24 02:24:40 +07:00
|
|
|
(lib.imap0
|
|
|
|
(i: ivshmem: ''
|
|
|
|
SUBSYSTEM=="kvmfr", KERNEL=="kvmfr${toString i}", OWNER="${ivshmem.owner}", GROUP="kvm", MODE="0660"
|
|
|
|
'')
|
|
|
|
cfg.lookingGlass.ivshmem));
|
2023-05-11 05:33:08 +07:00
|
|
|
hardware = {
|
|
|
|
opengl.enable = true;
|
2023-12-18 08:48:49 +07:00
|
|
|
} // lib.optionalAttrs (cfg.enable && !cfg.nvidiaGpu && options?hardware.amdgpu.loadInInitrd) {
|
2023-05-11 05:33:08 +07:00
|
|
|
# disable early KMS so GPU can be properly unbound
|
|
|
|
# can't use mkif because the option may not even exist
|
|
|
|
amdgpu.loadInInitrd = false;
|
2023-12-18 08:48:49 +07:00
|
|
|
};
|
2023-01-24 02:24:40 +07:00
|
|
|
# needed for virt-manager
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
virtualisation.libvirtd = {
|
|
|
|
enable = true;
|
|
|
|
onBoot = "ignore";
|
|
|
|
onShutdown = "shutdown";
|
|
|
|
qemu = {
|
2023-05-12 18:12:33 +07:00
|
|
|
package = pkgs.qemu_kvm;
|
2023-01-24 02:24:40 +07:00
|
|
|
ovmf.enable = true;
|
|
|
|
# Full is needed for TPM and secure boot emulation
|
2023-02-11 23:30:19 +07:00
|
|
|
ovmf.packages = [ pkgs.OVMFFull.fd ];
|
2023-01-24 02:24:40 +07:00
|
|
|
# TPM emulation
|
|
|
|
swtpm.enable = true;
|
|
|
|
verbatimConfig = ''
|
|
|
|
cgroup_device_acl = [
|
|
|
|
"/dev/kvmfr0",
|
|
|
|
"/dev/vfio/vfio", "/dev/vfio/11", "/dev/vfio/12",
|
|
|
|
"/dev/null", "/dev/full", "/dev/zero",
|
|
|
|
"/dev/random", "/dev/urandom",
|
|
|
|
"/dev/ptmx", "/dev/kvm"
|
|
|
|
]
|
|
|
|
'';
|
|
|
|
# might disable this later
|
|
|
|
runAsRoot = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
|
|
users.groups.libvirtd.members = [ "root" ] ++ cfg.libvirtdGroup;
|
2023-10-19 02:02:47 +07:00
|
|
|
environment.systemPackages = [ (pkgs.virtiofsd_ccache or pkgs.virtiofsd) ];
|
2023-04-12 16:04:07 +07:00
|
|
|
};
|
2023-01-24 02:24:40 +07:00
|
|
|
}
|