forked from Hello_User/mirror-test
Compare commits
4 Commits
5384f085d0
...
bb8d654f2a
Author | SHA1 | Date | |
---|---|---|---|
bb8d654f2a | |||
403646a1e5 | |||
|
fb3539bef0 | ||
|
4e8c399052 |
53
.SRCINFO
Normal file
53
.SRCINFO
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
pkgbase = linux-vfio
|
||||||
|
pkgdesc = Linux
|
||||||
|
pkgver = 5.16.15.arch1
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/archlinux/linux/commits/v5.16.15-arch1
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL2
|
||||||
|
makedepends = bc
|
||||||
|
makedepends = kmod
|
||||||
|
makedepends = libelf
|
||||||
|
makedepends = pahole
|
||||||
|
makedepends = cpio
|
||||||
|
makedepends = perl
|
||||||
|
makedepends = tar
|
||||||
|
makedepends = xz
|
||||||
|
makedepends = xmlto
|
||||||
|
makedepends = python-sphinx
|
||||||
|
makedepends = python-sphinx_rtd_theme
|
||||||
|
makedepends = graphviz
|
||||||
|
makedepends = imagemagick
|
||||||
|
makedepends = git
|
||||||
|
options = !strip
|
||||||
|
source = archlinux-linux::git+https://github.com/archlinux/linux?signed#tag=v5.16.15-arch1
|
||||||
|
source = config
|
||||||
|
source = add-acs-overrides.patch
|
||||||
|
source = i915-vga-arbiter.patch
|
||||||
|
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
|
||||||
|
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
|
||||||
|
validpgpkeys = A2FF3A36AAA56654109064AB19802F8B0D70FC30
|
||||||
|
validpgpkeys = C7E7849466FE2358343588377258734B41C31549
|
||||||
|
sha256sums = SKIP
|
||||||
|
sha256sums = 937b8c12653d7b18be9b5673e9fa7fba9512c2b5c947e5d489a5e0749a0a8253
|
||||||
|
sha256sums = b90be7b79652be61f7d50691000f6a8c75a240dc2eee2667b68d984f67583f77
|
||||||
|
sha256sums = 856230cfbdc2bb53a4920dfbcb6fb2d58427b7b184e5f94e21f08011d0a2fcc6
|
||||||
|
|
||||||
|
pkgname = linux-vfio
|
||||||
|
pkgdesc = The Linux kernel and modules
|
||||||
|
depends = coreutils
|
||||||
|
depends = kmod
|
||||||
|
depends = initramfs
|
||||||
|
optdepends = crda: to set the correct wireless channels of your country
|
||||||
|
optdepends = linux-firmware: firmware images needed for some devices
|
||||||
|
provides = VIRTUALBOX-GUEST-MODULES
|
||||||
|
provides = WIREGUARD-MODULE
|
||||||
|
replaces = virtualbox-guest-modules-arch
|
||||||
|
replaces = wireguard-arch
|
||||||
|
|
||||||
|
pkgname = linux-vfio-headers
|
||||||
|
pkgdesc = Headers and scripts for building modules for the Linux kernel
|
||||||
|
depends = pahole
|
||||||
|
|
||||||
|
pkgname = linux-vfio-docs
|
||||||
|
pkgdesc = Documentation for the Linux kernel
|
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
pkg
|
||||||
|
src
|
||||||
|
linux.install.pkg
|
||||||
|
*.xz
|
||||||
|
*.zst
|
||||||
|
*.sign
|
||||||
|
*.src.tar.gz
|
||||||
|
*.log
|
||||||
|
*.part
|
||||||
|
*.sig
|
||||||
|
archlinux-linux/
|
211
PKGBUILD
Normal file
211
PKGBUILD
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
# Maintainer: Mark Weiman (markzz) <mark.weiman@markzz.com>
|
||||||
|
# Maintainer: Katelyn Schiesser (slowbro) <katelyn.schiesser@gmail.com>
|
||||||
|
# Contributor: Dan Ziemba <zman0900@gmail.com>
|
||||||
|
# Upstream: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
||||||
|
|
||||||
|
pkgbase=linux-vfio
|
||||||
|
pkgver=5.16.15.arch1
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Linux'
|
||||||
|
_srctag=v${pkgver%.*}-${pkgver##*.}
|
||||||
|
url="https://github.com/archlinux/linux/commits/$_srctag"
|
||||||
|
arch=(x86_64)
|
||||||
|
license=(GPL2)
|
||||||
|
makedepends=(
|
||||||
|
bc kmod libelf pahole cpio perl tar xz
|
||||||
|
xmlto python-sphinx python-sphinx_rtd_theme graphviz imagemagick
|
||||||
|
git
|
||||||
|
)
|
||||||
|
options=('!strip')
|
||||||
|
_srcname=archlinux-linux
|
||||||
|
source=(
|
||||||
|
"$_srcname::git+https://github.com/archlinux/linux?signed#tag=$_srctag"
|
||||||
|
config # the main kernel config file
|
||||||
|
add-acs-overrides.patch
|
||||||
|
i915-vga-arbiter.patch
|
||||||
|
)
|
||||||
|
validpgpkeys=(
|
||||||
|
'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
|
||||||
|
'647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman
|
||||||
|
'A2FF3A36AAA56654109064AB19802F8B0D70FC30' # Jan Alexander Steffens (heftig)
|
||||||
|
'C7E7849466FE2358343588377258734B41C31549' # David Runge <dvzrv@archlinux.org>
|
||||||
|
)
|
||||||
|
sha256sums=('SKIP'
|
||||||
|
'937b8c12653d7b18be9b5673e9fa7fba9512c2b5c947e5d489a5e0749a0a8253'
|
||||||
|
'b90be7b79652be61f7d50691000f6a8c75a240dc2eee2667b68d984f67583f77'
|
||||||
|
'856230cfbdc2bb53a4920dfbcb6fb2d58427b7b184e5f94e21f08011d0a2fcc6')
|
||||||
|
|
||||||
|
export KBUILD_BUILD_HOST=archlinux
|
||||||
|
export KBUILD_BUILD_USER=$pkgbase
|
||||||
|
export KBUILD_BUILD_TIMESTAMP="$(date -Ru${SOURCE_DATE_EPOCH:+d @$SOURCE_DATE_EPOCH})"
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd $_srcname
|
||||||
|
|
||||||
|
echo "Setting version..."
|
||||||
|
scripts/setlocalversion --save-scmversion
|
||||||
|
echo "-$pkgrel" > localversion.10-pkgrel
|
||||||
|
echo "${pkgbase#linux}" > localversion.20-pkgname
|
||||||
|
|
||||||
|
local src
|
||||||
|
for src in "${source[@]}"; do
|
||||||
|
src="${src%%::*}"
|
||||||
|
src="${src##*/}"
|
||||||
|
[[ $src = *.patch ]] || continue
|
||||||
|
echo "Applying patch $src..."
|
||||||
|
patch -Np1 < "../$src"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Setting config..."
|
||||||
|
cp ../config .config
|
||||||
|
make olddefconfig
|
||||||
|
diff -u ../config .config || :
|
||||||
|
|
||||||
|
make -s kernelrelease > version
|
||||||
|
echo "Prepared $pkgbase version $(<version)"
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $_srcname
|
||||||
|
make all
|
||||||
|
make htmldocs
|
||||||
|
}
|
||||||
|
|
||||||
|
_package() {
|
||||||
|
pkgdesc="The $pkgdesc kernel and modules"
|
||||||
|
depends=(coreutils kmod initramfs)
|
||||||
|
optdepends=('crda: to set the correct wireless channels of your country'
|
||||||
|
'linux-firmware: firmware images needed for some devices')
|
||||||
|
provides=(VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE)
|
||||||
|
replaces=(virtualbox-guest-modules-arch wireguard-arch)
|
||||||
|
|
||||||
|
cd $_srcname
|
||||||
|
local kernver="$(<version)"
|
||||||
|
local modulesdir="$pkgdir/usr/lib/modules/$kernver"
|
||||||
|
|
||||||
|
echo "Installing boot image..."
|
||||||
|
# systemd expects to find the kernel here to allow hibernation
|
||||||
|
# https://github.com/systemd/systemd/commit/edda44605f06a41fb86b7ab8128dcf99161d2344
|
||||||
|
install -Dm644 "$(make -s image_name)" "$modulesdir/vmlinuz"
|
||||||
|
|
||||||
|
# Used by mkinitcpio to name the kernel
|
||||||
|
echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase"
|
||||||
|
|
||||||
|
echo "Installing modules..."
|
||||||
|
make INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 modules_install
|
||||||
|
|
||||||
|
# remove build and source links
|
||||||
|
rm "$modulesdir"/{source,build}
|
||||||
|
}
|
||||||
|
|
||||||
|
_package-headers() {
|
||||||
|
pkgdesc="Headers and scripts for building modules for the $pkgdesc kernel"
|
||||||
|
depends=(pahole)
|
||||||
|
|
||||||
|
cd $_srcname
|
||||||
|
local builddir="$pkgdir/usr/lib/modules/$(<version)/build"
|
||||||
|
|
||||||
|
echo "Installing build files..."
|
||||||
|
install -Dt "$builddir" -m644 .config Makefile Module.symvers System.map \
|
||||||
|
localversion.* version vmlinux
|
||||||
|
install -Dt "$builddir/kernel" -m644 kernel/Makefile
|
||||||
|
install -Dt "$builddir/arch/x86" -m644 arch/x86/Makefile
|
||||||
|
cp -t "$builddir" -a scripts
|
||||||
|
|
||||||
|
# required when STACK_VALIDATION is enabled
|
||||||
|
install -Dt "$builddir/tools/objtool" tools/objtool/objtool
|
||||||
|
|
||||||
|
# required when DEBUG_INFO_BTF_MODULES is enabled
|
||||||
|
install -Dt "$builddir/tools/bpf/resolve_btfids" tools/bpf/resolve_btfids/resolve_btfids
|
||||||
|
|
||||||
|
echo "Installing headers..."
|
||||||
|
cp -t "$builddir" -a include
|
||||||
|
cp -t "$builddir/arch/x86" -a arch/x86/include
|
||||||
|
install -Dt "$builddir/arch/x86/kernel" -m644 arch/x86/kernel/asm-offsets.s
|
||||||
|
|
||||||
|
install -Dt "$builddir/drivers/md" -m644 drivers/md/*.h
|
||||||
|
install -Dt "$builddir/net/mac80211" -m644 net/mac80211/*.h
|
||||||
|
|
||||||
|
# https://bugs.archlinux.org/task/13146
|
||||||
|
install -Dt "$builddir/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
|
||||||
|
|
||||||
|
# https://bugs.archlinux.org/task/20402
|
||||||
|
install -Dt "$builddir/drivers/media/usb/dvb-usb" -m644 drivers/media/usb/dvb-usb/*.h
|
||||||
|
install -Dt "$builddir/drivers/media/dvb-frontends" -m644 drivers/media/dvb-frontends/*.h
|
||||||
|
install -Dt "$builddir/drivers/media/tuners" -m644 drivers/media/tuners/*.h
|
||||||
|
|
||||||
|
# https://bugs.archlinux.org/task/71392
|
||||||
|
install -Dt "$builddir/drivers/iio/common/hid-sensors" -m644 drivers/iio/common/hid-sensors/*.h
|
||||||
|
|
||||||
|
echo "Installing KConfig files..."
|
||||||
|
find . -name 'Kconfig*' -exec install -Dm644 {} "$builddir/{}" \;
|
||||||
|
|
||||||
|
echo "Removing unneeded architectures..."
|
||||||
|
local arch
|
||||||
|
for arch in "$builddir"/arch/*/; do
|
||||||
|
[[ $arch = */x86/ ]] && continue
|
||||||
|
echo "Removing $(basename "$arch")"
|
||||||
|
rm -r "$arch"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Removing documentation..."
|
||||||
|
rm -r "$builddir/Documentation"
|
||||||
|
|
||||||
|
echo "Removing broken symlinks..."
|
||||||
|
find -L "$builddir" -type l -printf 'Removing %P\n' -delete
|
||||||
|
|
||||||
|
echo "Removing loose objects..."
|
||||||
|
find "$builddir" -type f -name '*.o' -printf 'Removing %P\n' -delete
|
||||||
|
|
||||||
|
echo "Stripping build tools..."
|
||||||
|
local file
|
||||||
|
while read -rd '' file; do
|
||||||
|
case "$(file -bi "$file")" in
|
||||||
|
application/x-sharedlib\;*) # Libraries (.so)
|
||||||
|
strip -v $STRIP_SHARED "$file" ;;
|
||||||
|
application/x-archive\;*) # Libraries (.a)
|
||||||
|
strip -v $STRIP_STATIC "$file" ;;
|
||||||
|
application/x-executable\;*) # Binaries
|
||||||
|
strip -v $STRIP_BINARIES "$file" ;;
|
||||||
|
application/x-pie-executable\;*) # Relocatable binaries
|
||||||
|
strip -v $STRIP_SHARED "$file" ;;
|
||||||
|
esac
|
||||||
|
done < <(find "$builddir" -type f -perm -u+x ! -name vmlinux -print0)
|
||||||
|
|
||||||
|
echo "Stripping vmlinux..."
|
||||||
|
strip -v $STRIP_STATIC "$builddir/vmlinux"
|
||||||
|
|
||||||
|
echo "Adding symlink..."
|
||||||
|
mkdir -p "$pkgdir/usr/src"
|
||||||
|
ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase"
|
||||||
|
}
|
||||||
|
|
||||||
|
_package-docs() {
|
||||||
|
pkgdesc="Documentation for the $pkgdesc kernel"
|
||||||
|
|
||||||
|
cd $_srcname
|
||||||
|
local builddir="$pkgdir/usr/lib/modules/$(<version)/build"
|
||||||
|
|
||||||
|
echo "Installing documentation..."
|
||||||
|
local src dst
|
||||||
|
while read -rd '' src; do
|
||||||
|
dst="${src#Documentation/}"
|
||||||
|
dst="$builddir/Documentation/${dst#output/}"
|
||||||
|
install -Dm644 "$src" "$dst"
|
||||||
|
done < <(find Documentation -name '.*' -prune -o ! -type d -print0)
|
||||||
|
|
||||||
|
echo "Adding symlink..."
|
||||||
|
mkdir -p "$pkgdir/usr/share/doc"
|
||||||
|
ln -sr "$builddir/Documentation" "$pkgdir/usr/share/doc/$pkgbase"
|
||||||
|
}
|
||||||
|
|
||||||
|
pkgname=("$pkgbase" "$pkgbase-headers" "$pkgbase-docs")
|
||||||
|
for _p in "${pkgname[@]}"; do
|
||||||
|
eval "package_$_p() {
|
||||||
|
$(declare -f "_package${_p#$pkgbase}")
|
||||||
|
_package${_p#$pkgbase}
|
||||||
|
}"
|
||||||
|
done
|
||||||
|
|
||||||
|
# vim:set ts=8 sts=2 sw=2 et:
|
||||||
|
|
17
README.md
Normal file
17
README.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# linux-vfio
|
||||||
|
|
||||||
|
## What is this?
|
||||||
|
|
||||||
|
linux-vfio is the kernel for Arch linux, with the ACS Override and i915 VGA Arbiter patches applied. These patches, originally written by Alex Williamson and updated by Mark Weiman, allow certain motherboards to split PCIe IOMMU groups where it would not otherwise be possible. This is often used to allow a specific PCIe card (often a video card) to be assigned to the `vfio` driver, and attached to a virtual machine.
|
||||||
|
|
||||||
|
## Using this repository
|
||||||
|
|
||||||
|
This repository is used to track the AUR [linux-vfio](https://aur.archlinux.org/pkgbase/linux-vfio/) package, along with (hopeful) automation thereof. The official AUR repository is still hosted by Arch: https://aur.archlinux.org/cgit/aur.git/log/?h=linux-vfio
|
||||||
|
|
||||||
|
## See Also
|
||||||
|
|
||||||
|
https://aur.archlinux.org/pkgbase/linux-vfio/
|
||||||
|
|
||||||
|
https://wiki.archlinux.org/title/PCI_passthrough_via_OVMF
|
||||||
|
|
||||||
|
https://www.kernel.org/doc/Documentation/vfio.txt
|
192
add-acs-overrides.patch
Normal file
192
add-acs-overrides.patch
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
From 578d958c59002358abdeeb294c25ac28027b9f7a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mark Weiman <mark.weiman@markzz.com>
|
||||||
|
Date: Wed, 27 Jan 2021 13:28:09 -0500
|
||||||
|
Subject: [PATCH] pci: Enable overrides for missing ACS capabilities (5.10.11+)
|
||||||
|
|
||||||
|
This an updated version of Alex Williamson's patch from:
|
||||||
|
https://lkml.org/lkml/2013/5/30/513
|
||||||
|
|
||||||
|
Original commit message follows:
|
||||||
|
---
|
||||||
|
PCIe ACS (Access Control Services) is the PCIe 2.0+ feature that
|
||||||
|
allows us to control whether transactions are allowed to be redirected
|
||||||
|
in various subnodes of a PCIe topology. For instance, if two
|
||||||
|
endpoints are below a root port or downsteam switch port, the
|
||||||
|
downstream port may optionally redirect transactions between the
|
||||||
|
devices, bypassing upstream devices. The same can happen internally
|
||||||
|
on multifunction devices. The transaction may never be visible to the
|
||||||
|
upstream devices.
|
||||||
|
|
||||||
|
One upstream device that we particularly care about is the IOMMU. If
|
||||||
|
a redirection occurs in the topology below the IOMMU, then the IOMMU
|
||||||
|
cannot provide isolation between devices. This is why the PCIe spec
|
||||||
|
encourages topologies to include ACS support. Without it, we have to
|
||||||
|
assume peer-to-peer DMA within a hierarchy can bypass IOMMU isolation.
|
||||||
|
|
||||||
|
Unfortunately, far too many topologies do not support ACS to make this
|
||||||
|
a steadfast requirement. Even the latest chipsets from Intel are only
|
||||||
|
sporadically supporting ACS. We have trouble getting interconnect
|
||||||
|
vendors to include the PCIe spec required PCIe capability, let alone
|
||||||
|
suggested features.
|
||||||
|
|
||||||
|
Therefore, we need to add some flexibility. The pcie_acs_override=
|
||||||
|
boot option lets users opt-in specific devices or sets of devices to
|
||||||
|
assume ACS support. The "downstream" option assumes full ACS support
|
||||||
|
on root ports and downstream switch ports. The "multifunction"
|
||||||
|
option assumes the subset of ACS features available on multifunction
|
||||||
|
endpoints and upstream switch ports are supported. The "id:nnnn:nnnn"
|
||||||
|
option enables ACS support on devices matching the provided vendor
|
||||||
|
and device IDs, allowing more strategic ACS overrides. These options
|
||||||
|
may be combined in any order. A maximum of 16 id specific overrides
|
||||||
|
are available. It's suggested to use the most limited set of options
|
||||||
|
necessary to avoid completely disabling ACS across the topology.
|
||||||
|
Note to hardware vendors, we have facilities to permanently quirk
|
||||||
|
specific devices which enforce isolation but not provide an ACS
|
||||||
|
capability. Please contact me to have your devicstarting
|
||||||
|
---
|
||||||
|
.../admin-guide/kernel-parameters.txt | 8 ++
|
||||||
|
drivers/pci/quirks.c | 102 ++++++++++++++++++
|
||||||
|
2 files changed, 110 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
|
||||||
|
index 26bfe7ae711b..7babcf646686 100644
|
||||||
|
--- a/Documentation/admin-guide/kernel-parameters.txt
|
||||||
|
+++ b/Documentation/admin-guide/kernel-parameters.txt
|
||||||
|
@@ -3629,6 +3629,14 @@
|
||||||
|
nomsi [MSI] If the PCI_MSI kernel config parameter is
|
||||||
|
enabled, this kernel boot option can be used to
|
||||||
|
disable the use of MSI interrupts system-wide.
|
||||||
|
+ pci_acs_override [PCIE] Override missing PCIe ACS support for:
|
||||||
|
+ downstream
|
||||||
|
+ All downstream ports - full ACS capabilities
|
||||||
|
+ multifunction
|
||||||
|
+ Add multifunction devices - multifunction ACS subset
|
||||||
|
+ id:nnnn:nnnn
|
||||||
|
+ Specific device - full ACS capabilities
|
||||||
|
+ Specified as vid:did (vendor/device ID) in hex
|
||||||
|
noioapicquirk [APIC] Disable all boot interrupt quirks.
|
||||||
|
Safety option to keep boot IRQs enabled. This
|
||||||
|
should never be necessary.
|
||||||
|
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
|
||||||
|
index fb1dc11e7cc5..8748df0fe1e1 100644
|
||||||
|
--- a/drivers/pci/quirks.c
|
||||||
|
+++ b/drivers/pci/quirks.c
|
||||||
|
@@ -192,6 +192,106 @@ static int __init pci_apply_final_quirks(void)
|
||||||
|
}
|
||||||
|
fs_initcall_sync(pci_apply_final_quirks);
|
||||||
|
|
||||||
|
+static bool acs_on_downstream;
|
||||||
|
+static bool acs_on_multifunction;
|
||||||
|
+
|
||||||
|
+#define NUM_ACS_IDS 16
|
||||||
|
+struct acs_on_id {
|
||||||
|
+ unsigned short vendor;
|
||||||
|
+ unsigned short device;
|
||||||
|
+};
|
||||||
|
+static struct acs_on_id acs_on_ids[NUM_ACS_IDS];
|
||||||
|
+static u8 max_acs_id;
|
||||||
|
+
|
||||||
|
+static __init int pcie_acs_override_setup(char *p)
|
||||||
|
+{
|
||||||
|
+ if (!p)
|
||||||
|
+ return -EINVAL;
|
||||||
|
+
|
||||||
|
+ while (*p) {
|
||||||
|
+ if (!strncmp(p, "downstream", 10))
|
||||||
|
+ acs_on_downstream = true;
|
||||||
|
+ if (!strncmp(p, "multifunction", 13))
|
||||||
|
+ acs_on_multifunction = true;
|
||||||
|
+ if (!strncmp(p, "id:", 3)) {
|
||||||
|
+ char opt[5];
|
||||||
|
+ int ret;
|
||||||
|
+ long val;
|
||||||
|
+
|
||||||
|
+ if (max_acs_id >= NUM_ACS_IDS - 1) {
|
||||||
|
+ pr_warn("Out of PCIe ACS override slots (%d)\n",
|
||||||
|
+ NUM_ACS_IDS);
|
||||||
|
+ goto next;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ p += 3;
|
||||||
|
+ snprintf(opt, 5, "%s", p);
|
||||||
|
+ ret = kstrtol(opt, 16, &val);
|
||||||
|
+ if (ret) {
|
||||||
|
+ pr_warn("PCIe ACS ID parse error %d\n", ret);
|
||||||
|
+ goto next;
|
||||||
|
+ }
|
||||||
|
+ acs_on_ids[max_acs_id].vendor = val;
|
||||||
|
+ p += strcspn(p, ":");
|
||||||
|
+ if (*p != ':') {
|
||||||
|
+ pr_warn("PCIe ACS invalid ID\n");
|
||||||
|
+ goto next;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ p++;
|
||||||
|
+ snprintf(opt, 5, "%s", p);
|
||||||
|
+ ret = kstrtol(opt, 16, &val);
|
||||||
|
+ if (ret) {
|
||||||
|
+ pr_warn("PCIe ACS ID parse error %d\n", ret);
|
||||||
|
+ goto next;
|
||||||
|
+ }
|
||||||
|
+ acs_on_ids[max_acs_id].device = val;
|
||||||
|
+ max_acs_id++;
|
||||||
|
+ }
|
||||||
|
+next:
|
||||||
|
+ p += strcspn(p, ",");
|
||||||
|
+ if (*p == ',')
|
||||||
|
+ p++;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (acs_on_downstream || acs_on_multifunction || max_acs_id)
|
||||||
|
+ pr_warn("Warning: PCIe ACS overrides enabled; This may allow non-IOMMU protected peer-to-peer DMA\n");
|
||||||
|
+
|
||||||
|
+ return 0;
|
||||||
|
+}
|
||||||
|
+early_param("pcie_acs_override", pcie_acs_override_setup);
|
||||||
|
+
|
||||||
|
+static int pcie_acs_overrides(struct pci_dev *dev, u16 acs_flags)
|
||||||
|
+{
|
||||||
|
+ int i;
|
||||||
|
+
|
||||||
|
+ /* Never override ACS for legacy devices or devices with ACS caps */
|
||||||
|
+ if (!pci_is_pcie(dev) ||
|
||||||
|
+ pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS))
|
||||||
|
+ return -ENOTTY;
|
||||||
|
+
|
||||||
|
+ for (i = 0; i < max_acs_id; i++)
|
||||||
|
+ if (acs_on_ids[i].vendor == dev->vendor &&
|
||||||
|
+ acs_on_ids[i].device == dev->device)
|
||||||
|
+ return 1;
|
||||||
|
+
|
||||||
|
+switch (pci_pcie_type(dev)) {
|
||||||
|
+ case PCI_EXP_TYPE_DOWNSTREAM:
|
||||||
|
+ case PCI_EXP_TYPE_ROOT_PORT:
|
||||||
|
+ if (acs_on_downstream)
|
||||||
|
+ return 1;
|
||||||
|
+ break;
|
||||||
|
+ case PCI_EXP_TYPE_ENDPOINT:
|
||||||
|
+ case PCI_EXP_TYPE_UPSTREAM:
|
||||||
|
+ case PCI_EXP_TYPE_LEG_END:
|
||||||
|
+ case PCI_EXP_TYPE_RC_END:
|
||||||
|
+ if (acs_on_multifunction && dev->multifunction)
|
||||||
|
+ return 1;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ return -ENOTTY;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
/*
|
||||||
|
* Decoding should be disabled for a PCI device during BAR sizing to avoid
|
||||||
|
* conflict. But doing so may cause problems on host bridge and perhaps other
|
||||||
|
@@ -4769,6 +4869,8 @@ static const struct pci_dev_acs_enabled {
|
||||||
|
{ PCI_VENDOR_ID_ZHAOXIN, 0x9083, pci_quirk_mf_endpoint_acs },
|
||||||
|
/* Zhaoxin Root/Downstream Ports */
|
||||||
|
{ PCI_VENDOR_ID_ZHAOXIN, PCI_ANY_ID, pci_quirk_zhaoxin_pcie_ports_acs },
|
||||||
|
+ /* allow acs for any */
|
||||||
|
+ { PCI_ANY_ID, PCI_ANY_ID, pcie_acs_overrides },
|
||||||
|
{ 0 }
|
||||||
|
};
|
||||||
|
|
||||||
|
--
|
||||||
|
2.30.0
|
||||||
|
|
193
i915-vga-arbiter.patch
Normal file
193
i915-vga-arbiter.patch
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
From a59b6ecac96eab5e80fa5ee918ddbc8e2fad3a7a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mark Weiman <mark.weiman@markzz.com>
|
||||||
|
Date: Wed, 27 Jan 2021 13:28:46 -0500
|
||||||
|
Subject: [PATCH] i915: Add module option to support VGA arbiter on HD devices
|
||||||
|
(5.14)
|
||||||
|
|
||||||
|
Updated version of Mark Weiman's i915 patch for 5.14.
|
||||||
|
|
||||||
|
Original patch messages follow.
|
||||||
|
---
|
||||||
|
This is an updated version of Alex Williamson's patch from:
|
||||||
|
https://lkml.org/lkml/2014/5/9/517
|
||||||
|
|
||||||
|
I don't have i915 graphics, so this is completely untested.
|
||||||
|
|
||||||
|
Original commit message follows:
|
||||||
|
---
|
||||||
|
Commit 81b5c7bc found that the current VGA arbiter support in i915
|
||||||
|
only works for ancient GMCH-based IGD devices and attempted to update
|
||||||
|
support for newer HD devices. Unfortunately newer devices cannot
|
||||||
|
completely opt-out of VGA arbitration like the old devices could.
|
||||||
|
The VGA I/O space cannot be disabled internally. The only way to
|
||||||
|
route VGA I/O elsewhere is by disabling I/O at the device PCI command
|
||||||
|
register. This means that with commit 81b5c7bc and multiple VGA
|
||||||
|
adapters, the VGA arbiter will report that multiple VGA devices are
|
||||||
|
participating in arbitration, Xorg will notice this and disable DRI.
|
||||||
|
Therefore, 81b5c7bc was reverted because DRI is more important than
|
||||||
|
being correct.
|
||||||
|
|
||||||
|
There is however an actual need for i915 to correctly participate in
|
||||||
|
VGA arbitration; VGA device assignment. If we want to use VFIO to
|
||||||
|
assign a VGA device to a virtual machine, we need to be able to
|
||||||
|
access the VGA resources of that device. By adding an i915 module
|
||||||
|
option we can allow i915 to continue with its charade by default, but
|
||||||
|
also allow an easy path for users who require working VGA arbitration.
|
||||||
|
Hopefully Xorg can someday be taught to behave better with multiple
|
||||||
|
VGA devices.
|
||||||
|
|
||||||
|
This also rolls in reverted commit 6e1b4fda, which corrected an
|
||||||
|
ordering issue with 81b5c7bc by delaying the disabling of VGA memory
|
||||||
|
until after vgacon->fbcon handoff.
|
||||||
|
---
|
||||||
|
drivers/gpu/drm/i915/display/intel_display.c | 15 +++++++--
|
||||||
|
drivers/gpu/drm/i915/display/intel_display.h | 1 +
|
||||||
|
drivers/gpu/drm/i915/display/intel_vga.c | 32 ++++++++++++++++++++
|
||||||
|
drivers/gpu/drm/i915/display/intel_vga.h | 4 +++
|
||||||
|
drivers/gpu/drm/i915/i915_params.c | 3 ++
|
||||||
|
drivers/gpu/drm/i915/i915_params.h | 1 +
|
||||||
|
6 files changed, 53 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
|
||||||
|
index aabf09f89cad..528c6886a0b5 100644
|
||||||
|
--- a/drivers/gpu/drm/i915/display/intel_display.c
|
||||||
|
+++ b/drivers/gpu/drm/i915/display/intel_display.c
|
||||||
|
@@ -12304,9 +12304,11 @@
|
||||||
|
|
||||||
|
intel_bios_init(i915);
|
||||||
|
|
||||||
|
- ret = intel_vga_register(i915);
|
||||||
|
- if (ret)
|
||||||
|
+ if (!i915_modparams.enable_hd_vgaarb || !HAS_PCH_SPLIT(i915)) {
|
||||||
|
+ ret = intel_vga_register(i915);
|
||||||
|
+ if (ret)
|
||||||
|
goto cleanup_bios;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
/* FIXME: completely on the wrong abstraction layer */
|
||||||
|
intel_power_domains_init_hw(i915, false);
|
||||||
|
@@ -12476,6 +12478,12 @@
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
+ /*
|
||||||
|
+ * Must do this after fbcon init so that
|
||||||
|
+ * vgacon_save_screen() works during the handover.
|
||||||
|
+ */
|
||||||
|
+ intel_vga_disable_mem(i915);
|
||||||
|
+
|
||||||
|
/* Only enable hotplug handling once the fbdev is fully set up. */
|
||||||
|
intel_hpd_init(i915);
|
||||||
|
intel_hpd_poll_disable(i915);
|
||||||
|
@@ -13375,6 +13383,7 @@
|
||||||
|
if (!HAS_DISPLAY(i915))
|
||||||
|
return;
|
||||||
|
|
||||||
|
+ intel_vga_enable_mem(i915);
|
||||||
|
flush_workqueue(i915->flip_wq);
|
||||||
|
flush_workqueue(i915->modeset_wq);
|
||||||
|
|
||||||
|
diff --git a/drivers/gpu/drm/i915/display/intel_display.h b/drivers/gpu/drm/i915/display/intel_display.h
|
||||||
|
index d10b7c8cde3f..3daaa0bd3b60 100644
|
||||||
|
--- a/drivers/gpu/drm/i915/display/intel_display.h
|
||||||
|
+++ b/drivers/gpu/drm/i915/display/intel_display.h
|
||||||
|
@@ -514,6 +514,7 @@ int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
|
||||||
|
void lpt_pch_enable(const struct intel_crtc_state *crtc_state);
|
||||||
|
void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv);
|
||||||
|
void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
|
||||||
|
+extern void intel_vga_disable_mem(struct drm_i915_private *dev_priv);
|
||||||
|
void intel_init_display_hooks(struct drm_i915_private *dev_priv);
|
||||||
|
unsigned int intel_fb_xy_to_linear(int x, int y,
|
||||||
|
const struct intel_plane_state *state,
|
||||||
|
diff --git a/drivers/gpu/drm/i915/display/intel_vga.c b/drivers/gpu/drm/i915/display/intel_vga.c
|
||||||
|
index be333699c515..a76aa52cde76 100644
|
||||||
|
--- a/drivers/gpu/drm/i915/display/intel_vga.c
|
||||||
|
+++ b/drivers/gpu/drm/i915/display/intel_vga.c
|
||||||
|
@@ -41,6 +41,37 @@ void intel_vga_disable(struct drm_i915_private *dev_priv)
|
||||||
|
intel_de_posting_read(dev_priv, vga_reg);
|
||||||
|
}
|
||||||
|
|
||||||
|
+
|
||||||
|
+void intel_vga_enable_mem(struct drm_i915_private *dev_priv)
|
||||||
|
+{
|
||||||
|
+ struct pci_dev *pdev = to_pci_dev(dev_priv->drm.dev);
|
||||||
|
+
|
||||||
|
+ /* Enable VGA memory on Intel HD */
|
||||||
|
+ if (i915_modparams.enable_hd_vgaarb && HAS_PCH_SPLIT(dev_priv)) {
|
||||||
|
+ vga_get_uninterruptible(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
|
+ outb(inb(VGA_MSR_READ) | VGA_MSR_MEM_EN, VGA_MSR_WRITE);
|
||||||
|
+ vga_set_legacy_decoding(pdev, VGA_RSRC_LEGACY_IO |
|
||||||
|
+ VGA_RSRC_LEGACY_MEM |
|
||||||
|
+ VGA_RSRC_NORMAL_IO |
|
||||||
|
+ VGA_RSRC_NORMAL_MEM);
|
||||||
|
+ vga_put(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+void intel_vga_disable_mem(struct drm_i915_private *dev_priv)
|
||||||
|
+{
|
||||||
|
+ struct pci_dev *pdev = to_pci_dev(dev_priv->drm.dev);
|
||||||
|
+ /* Disable VGA memory on Intel HD */
|
||||||
|
+ if (i915_modparams.enable_hd_vgaarb && HAS_PCH_SPLIT(dev_priv)) {
|
||||||
|
+ vga_get_uninterruptible(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
|
+ outb(inb(VGA_MSR_READ) & ~VGA_MSR_MEM_EN, VGA_MSR_WRITE);
|
||||||
|
+ vga_set_legacy_decoding(pdev, VGA_RSRC_LEGACY_IO |
|
||||||
|
+ VGA_RSRC_NORMAL_IO |
|
||||||
|
+ VGA_RSRC_NORMAL_MEM);
|
||||||
|
+ vga_put(pdev, VGA_RSRC_LEGACY_IO);
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void intel_vga_redisable_power_on(struct drm_i915_private *dev_priv)
|
||||||
|
{
|
||||||
|
i915_reg_t vga_reg = intel_vga_cntrl_reg(dev_priv);
|
||||||
|
@@ -49,6 +80,7 @@ void intel_vga_redisable_power_on(struct drm_i915_private *dev_priv)
|
||||||
|
drm_dbg_kms(&dev_priv->drm,
|
||||||
|
"Something enabled VGA plane, disabling it\n");
|
||||||
|
intel_vga_disable(dev_priv);
|
||||||
|
+ intel_vga_disable_mem(dev_priv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/drivers/gpu/drm/i915/display/intel_vga.h b/drivers/gpu/drm/i915/display/intel_vga.h
|
||||||
|
index ba5b55b917f0..7e2af7924e99 100644
|
||||||
|
--- a/drivers/gpu/drm/i915/display/intel_vga.h
|
||||||
|
+++ b/drivers/gpu/drm/i915/display/intel_vga.h
|
||||||
|
@@ -15,4 +15,8 @@ void intel_vga_redisable_power_on(struct drm_i915_private *i915);
|
||||||
|
int intel_vga_register(struct drm_i915_private *i915);
|
||||||
|
void intel_vga_unregister(struct drm_i915_private *i915);
|
||||||
|
|
||||||
|
+/* i915 vga arb patch */
|
||||||
|
+void intel_vga_enable_mem(struct drm_i915_private *i915);
|
||||||
|
+void intel_vga_disable_mem(struct drm_i915_private *i915);
|
||||||
|
+
|
||||||
|
#endif /* __INTEL_VGA_H__ */
|
||||||
|
diff --git a/drivers/gpu/drm/i915/i915_params.c b/drivers/gpu/drm/i915/i915_params.c
|
||||||
|
index 7f139ea4a90b..f23476551569 100644
|
||||||
|
--- a/drivers/gpu/drm/i915/i915_params.c
|
||||||
|
+++ b/drivers/gpu/drm/i915/i915_params.c
|
||||||
|
@@ -140,6 +140,9 @@ i915_param_named_unsafe(invert_brightness, int, 0400,
|
||||||
|
i915_param_named(disable_display, bool, 0400,
|
||||||
|
"Disable display (default: false)");
|
||||||
|
|
||||||
|
+i915_param_named(enable_hd_vgaarb, bool, 0444,
|
||||||
|
+ "Enable support for VGA arbitration on Intel HD IGD. (default: false)");
|
||||||
|
+
|
||||||
|
i915_param_named(mmio_debug, int, 0400,
|
||||||
|
"Enable the MMIO debug code for the first N failures (default: off). "
|
||||||
|
"This may negatively affect performance.");
|
||||||
|
diff --git a/drivers/gpu/drm/i915/i915_params.h b/drivers/gpu/drm/i915/i915_params.h
|
||||||
|
index 330c03e2b4f7..b44a4b7dba4d 100644
|
||||||
|
--- a/drivers/gpu/drm/i915/i915_params.h
|
||||||
|
+++ b/drivers/gpu/drm/i915/i915_params.h
|
||||||
|
@@ -72,6 +72,7 @@ struct drm_printer;
|
||||||
|
param(char *, force_probe, CONFIG_DRM_I915_FORCE_PROBE, 0400) \
|
||||||
|
param(unsigned long, fake_lmem_start, 0, 0400) \
|
||||||
|
/* leave bools at the end to not create holes */ \
|
||||||
|
+ param(bool, enable_hd_vgaarb, false, 0600) \
|
||||||
|
param(bool, enable_hangcheck, true, 0600) \
|
||||||
|
param(bool, load_detect_test, false, 0600) \
|
||||||
|
param(bool, force_reset_modeset_test, false, 0600) \
|
||||||
|
--
|
||||||
|
2.30.0
|
||||||
|
|
@ -1 +1 @@
|
|||||||
hahaha
|
hahahaha
|
Loading…
Reference in New Issue
Block a user