Is PRIME offloading dGPU between PCIe passthrough sessions possible?

Hi, I’ve been lurking in the VFIO threads without account for a long time and finally got the necessary hardware to try it out myself.
I am running a 7900X (so I have an iGPU) and an RX 5700XT (yeah, reset bug… I know).

I have KVM/Qemu with PCIe passthrough up and running and it works great since I got the Windows 11 guest to disable VBS (only ~60% bare metal performance while it was enabled). The VFIO passthrough and Looking Glass related threads together with the ArchWiki helped tremendously with the setup so far. So thanks to the community!

As long as the Software is supported natively or via Wine/Proton, I prefer to run everything on Linux. So my plan in the long run was always, to have a setup where I can run GPU intensive tasks natively on my dGPU, then, when no process uses the dGPU anymore, switch to the VM with passthrough without rebooting or even restarting the X server.
I thought this would be possible using PRIME offloading, but maybe I am wrong.

Currently, I have the dGPU bound to vfio-pci on boot, so the X server only knows about the iGPU when it starts.
Then I unbind vfio-pci from the dGPU and amdgpu:

echo '0000:03:00.0' > '/sys/bus/pci/devices/0000:03:00.0/driver/unbind'
echo '0000:03:00.1' > '/sys/bus/pci/devices/0000:03:00.1/driver/unbind'
echo '0000:03:00.0' > /sys/bus/pci/drivers/vfio-pci/bind
echo '0000:03:00.1' > /sys/bus/pci/drivers/vfio-pci/bind

When I call xrandr --listproviders after this, the dGPU shows up instantly (without restarting Xorg):

[~] xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x56 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 4 outputs: 4 associated providers: 1 name:AMD Radeon Graphics @ pci:0000:0e:00.0
Provider 1: id: 0x5ef cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 4 associated providers: 1 name:modesetting

the dGPU shows up in DRI_PRIME=1 glxinfo:

OpenGL renderer string: AMD Radeon RX 5700 XT (radeonsi, navi10, LLVM 17.0.6, DRM 3.57, 6.8.2-arch2-1)

and at least DRI_PRIME=1 glxgears seems to work fine (steam does not seem to start though…).

While steam not starting with DRI_PRIME=1 steam-native is A problem, it is not THE problem:
I unbind amdgpu and bind vfio-pci again:

echo '0000:03:00.0' > '/sys/bus/pci/devices/0000:03:00.0/driver/unbind'
echo '0000:03:00.1' > '/sys/bus/pci/devices/0000:03:00.1/driver/unbind'
echo '0000:03:00.0' > /sys/bus/pci/drivers/vfio-pci/bind
echo '0000:03:00.1' > /sys/bus/pci/drivers/vfio-pci/bind

And the X server crashes:

Xorg log
###amdgpu is bound here
Apr 01 00:21:58 [   238.142] (II) AMDGPU(0): EDID vendor "ACI", prod id 10151
Apr 01 00:21:58 [   238.142] (II) AMDGPU(0): Using hsync ranges from config file
Apr 01 00:21:58 [   238.142] (II) AMDGPU(0): Using vrefresh ranges from config file
Apr 01 00:21:58 [   238.142] (II) AMDGPU(0): Printing DDC gathered Modelines:
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz eP)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1440x480"x0.0   54.00  1440 1472 1596 1716  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1440x576"x0.0   54.00  1440 1464 1592 1728  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.8 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 00:21:58 [   238.143] (II) AMDGPU(0): Modeline "1920x1080"x100.0  302.01  1920 2072 2280 2640  1080 1081 1084 1144 -hsync +vsync (114.4 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): EDID vendor "ACI", prod id 10151
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Using hsync ranges from config file
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Using vrefresh ranges from config file
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Printing DDC gathered Modelines:
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz eP)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1440x480"x0.0   54.00  1440 1472 1596 1716  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1440x576"x0.0   54.00  1440 1464 1592 1728  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.8 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 00:21:58 [   238.153] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 00:21:58 [   238.154] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
Apr 01 00:21:58 [   238.154] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Apr 01 00:21:58 [   238.154] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 00:21:58 [   238.154] (II) AMDGPU(0): Modeline "1920x1080"x100.0  302.01  1920 2072 2280 2640  1080 1081 1084 1144 -hsync +vsync (114.4 kHz e)
Apr 01 00:21:58 [   238.154] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.0/drm/card0 /dev/dri/card0
Apr 01 00:21:58 [   238.154] (II) config/udev: Adding drm device (/dev/dri/card0)
Apr 01 00:21:58 [   238.154] (II) xfree86: Adding drm device (/dev/dri/card0)
Apr 01 00:21:58 [   238.154] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.0/drm/card0
Apr 01 00:21:58 [   238.340] (II) LoadModule: "modesetting"
Apr 01 00:21:58 [   238.340] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Apr 01 00:21:58 [   238.341] (II) Module modesetting: vendor="X.Org Foundation"
Apr 01 00:21:58 [   238.341] 	compiled for 1.21.1.11, module version = 1.21.1
Apr 01 00:21:58 [   238.341] 	Module class: X.Org Video Driver
Apr 01 00:21:58 [   238.341] 	ABI class: X.Org Video Driver, version 25.2
Apr 01 00:21:58 [   238.354] (II) modeset(G0): using drv /dev/dri/card0
Apr 01 00:21:58 [   238.354] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
Apr 01 00:21:58 [   238.354] (II) Applying OutputClass "AMDgpu" options to /dev/dri/card0
Apr 01 00:21:58 [   238.355] (==) modeset(G0): RGB weight 888
Apr 01 00:21:58 [   238.355] (==) modeset(G0): Default visual is TrueColor
Apr 01 00:21:58 [   238.355] (II) Loading sub module "glamoregl"
Apr 01 00:21:58 [   238.355] (II) LoadModule: "glamoregl"
Apr 01 00:21:58 [   238.355] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Apr 01 00:21:58 [   238.355] (II) Module glamoregl: vendor="X.Org Foundation"
Apr 01 00:21:58 [   238.355] 	compiled for 1.21.1.11, module version = 1.0.1
Apr 01 00:21:58 [   238.355] 	ABI class: X.Org ANSI C Emulation, version 0.4
Apr 01 00:21:58 [   238.361] (II) modeset(G0): glamor X acceleration enabled on AMD Radeon RX 5700 XT (radeonsi, navi10, LLVM 17.0.6, DRM 3.57, 6.8.2-arch2-1)
Apr 01 00:21:58 [   238.361] (II) modeset(G0): glamor initialized
Apr 01 00:21:58 [   238.364] (II) modeset(G0): Output DP-1-4 has no monitor section
Apr 01 00:21:58 [   238.364] (II) modeset(G0): Output DP-1-5 has no monitor section
Apr 01 00:21:58 [   238.364] (II) modeset(G0): Output HDMI-1-2 has no monitor section
Apr 01 00:21:58 [   238.364] (II) modeset(G0): Output HDMI-1-3 has no monitor section
Apr 01 00:21:58 [   238.367] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
Apr 01 00:21:58 [   238.367] (**) modeset(G0): Display dimensions: (600, 340) mm
Apr 01 00:21:58 [   238.367] (**) modeset(G0): DPI set to (43, 57)
Apr 01 00:21:58 [   238.367] (II) Loading sub module "fb"
Apr 01 00:21:58 [   238.367] (II) LoadModule: "fb"
Apr 01 00:21:58 [   238.367] (II) Module "fb" already built-in
Apr 01 00:21:58 [   238.378] (==) modeset(G0): Backing store enabled
Apr 01 00:21:58 [   238.378] (==) modeset(G0): Silken mouse enabled
Apr 01 00:21:58 [   238.378] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
Apr 01 00:21:58 [   238.378] (==) modeset(G0): DPMS enabled
Apr 01 00:21:58 [   238.378] (WW) modeset(G0): Option "HotplugDriver" is not used
Apr 01 00:21:58 [   238.378] (II) modeset(G0): [DRI2] Setup complete
Apr 01 00:21:58 [   238.378] (II) modeset(G0): [DRI2]   DRI driver: radeonsi
Apr 01 00:21:58 [   238.378] (II) modeset(G0): [DRI2]   VDPAU driver: radeonsi
Apr 01 00:21:58 [   238.466] (II) modeset(G0): Damage tracking initialized
Apr 01 00:21:58 [   238.466] xf86: found device 2
Apr 01 00:21:58 [   238.467] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event15)
Apr 01 00:21:58 [   238.467] (II) No input driver specified, ignoring this device.
Apr 01 00:21:58 [   238.467] (II) This device may have been added with another device file.
Apr 01 00:21:58 [   238.467] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event19)
Apr 01 00:21:58 [   238.467] (II) No input driver specified, ignoring this device.
Apr 01 00:21:58 [   238.467] (II) This device may have been added with another device file.
Apr 01 00:21:58 [   238.468] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event14)
Apr 01 00:21:58 [   238.468] (II) No input driver specified, ignoring this device.
Apr 01 00:21:58 [   238.468] (II) This device may have been added with another device file.
Apr 01 00:21:58 [   238.468] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event11)
Apr 01 00:21:58 [   238.468] (II) No input driver specified, ignoring this device.
Apr 01 00:21:58 [   238.468] (II) This device may have been added with another device file.
Apr 01 00:21:58 [   238.468] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event10)
Apr 01 00:21:58 [   238.468] (II) No input driver specified, ignoring this device.
Apr 01 00:21:58 [   238.468] (II) This device may have been added with another device file.
Apr 01 00:21:58 [   238.468] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event18)
Apr 01 00:21:58 [   238.468] (II) No input driver specified, ignoring this device.
Apr 01 00:21:58 [   238.468] (II) This device may have been added with another device file.
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): EDID vendor "GSM", prod id 23423
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): DDCModeFromDetailedTiming: 2560x1440 Warning: We only handle separate sync.
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Using hsync ranges from config file
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Using vrefresh ranges from config file
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Printing DDC gathered Modelines:
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "2560x1440"x0.0  568.72  2560 2568 2616 2640  1440 1456 1464 1496 +hsync -vsync (215.4 kHz eP)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "2560x1440"x0.0  483.12  2560 2568 2624 2640  1440 1503 1511 1525 +hsync -vsync (183.0 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "2560x1440"x0.0  398.24  2560 2568 2600 2640  1440 1496 1504 1510 -hsync -vsync (150.8 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "(null)"x60.0   81.75  1152 1216 1336 1520  864 867 871 897 -hsync +vsync (53.8 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "(null)"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Apr 01 00:22:12 [   252.392] (II) AMDGPU(0): Modeline "(null)"x74.9  220.75  1920 2064 2264 2608  1080 1083 1088 1130 -hsync +vsync (84.6 kHz e)

###amdgpu is unbound here
Apr 01 00:26:37 [   517.337] (II) AMDGPU(0): EDID vendor "ACI", prod id 10151
Apr 01 00:26:37 [   517.337] (II) AMDGPU(0): Using hsync ranges from config file
Apr 01 00:26:37 [   517.337] (II) AMDGPU(0): Using vrefresh ranges from config file
Apr 01 00:26:37 [   517.337] (II) AMDGPU(0): Printing DDC gathered Modelines:
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz eP)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1440x480"x0.0   54.00  1440 1472 1596 1716  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1440x576"x0.0   54.00  1440 1464 1592 1728  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.8 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 00:26:37 [   517.338] (II) AMDGPU(0): Modeline "1920x1080"x100.0  302.01  1920 2072 2280 2640  1080 1081 1084 1144 -hsync +vsync (114.4 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): EDID vendor "ACI", prod id 10151
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Using hsync ranges from config file
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Using vrefresh ranges from config file
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Printing DDC gathered Modelines:
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz eP)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1440x480"x0.0   54.00  1440 1472 1596 1716  480 489 495 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1440x576"x0.0   54.00  1440 1464 1592 1728  576 581 586 625 -hsync -vsync (31.2 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x0.0   74.25  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.8 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 00:26:37 [   517.348] (II) AMDGPU(0): Modeline "1920x1080"x100.0  302.01  1920 2072 2280 2640  1080 1081 1084 1144 -hsync +vsync (114.4 kHz e)
Apr 01 00:26:37 [   517.348] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.0/drm/card0 /dev/dri/card0
Apr 01 00:26:37 [   517.348] xf86: remove device 1 /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.0/drm/card0
Apr 01 00:26:37 [   517.348] (EE) 
Apr 01 00:26:37 [   517.349] (EE) Backtrace:
Apr 01 00:26:37 [   517.349] (EE) unw_get_proc_name failed: no unwind info found [-10]
Apr 01 00:26:37 [   517.349] (EE) 0: /usr/lib/Xorg (?+0x0) [0x6333a9692c4d]
Apr 01 00:26:37 [   517.349] (EE) unw_get_proc_name failed: no unwind info found [-10]
Apr 01 00:26:37 [   517.349] (EE) 1: /usr/lib/libc.so.6 (?+0x0) [0x727c46a1f770]
Apr 01 00:26:37 [   517.350] (EE) 
Apr 01 00:26:37 [   517.350] (EE) Segmentation fault at address 0x0
Apr 01 00:26:37 [   517.350] (EE) 
Apr 01 00:26:37 Fatal server error:
Apr 01 00:26:37 [   517.350] (EE) Caught signal 11 (Segmentation fault). Server aborting
Apr 01 00:26:37 [   517.350] (EE) 
Apr 01 00:26:37 [   517.350] (EE) 
Apr 01 00:26:37 Please consult the The X.Org Foundation support 
Apr 01 00:26:37 	 at http://wiki.x.org
Apr 01 00:26:37  for help. 
Apr 01 00:26:37 [   517.350] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
Apr 01 00:26:37 [   517.350] (EE) 
Apr 01 00:26:37 [   517.350] (II) AIGLX: Suspending AIGLX clients for VT switch
Apr 01 00:26:37 [   517.529] (EE) Server terminated with error (1). Closing log file.
journal
###amdgpu is bound here
Apr 01 00:21:56 shuttle kernel: vfio-pci 0000:03:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: enabling device (0006 -> 0007)
Apr 01 00:21:56 shuttle kernel: [drm] initializing kernel modesetting (NAVI10 0x1002:0x731F 0x1DA2:0xE409 0xC1).
Apr 01 00:21:56 shuttle kernel: [drm] register mmio base: 0xF6C00000
Apr 01 00:21:56 shuttle kernel: [drm] register mmio size: 524288
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 0 <nv_common>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 1 <gmc_v10_0>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 2 <navi10_ih>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 3 <psp>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 4 <smu>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 5 <dm>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 6 <gfx_v10_0>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 7 <sdma_v5_0>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 8 <vcn_v2_0>
Apr 01 00:21:56 shuttle kernel: [drm] add ip block number 9 <jpeg_v2_0>
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
Apr 01 00:21:56 shuttle kernel: amdgpu: ATOM BIOS: 113-D1990103-O09
Apr 01 00:21:56 shuttle kernel: [drm] VCN decode is enabled in VM mode
Apr 01 00:21:56 shuttle kernel: [drm] VCN encode is enabled in VM mode
Apr 01 00:21:56 shuttle kernel: [drm] JPEG decode is enabled in VM mode
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
Apr 01 00:21:56 shuttle kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
Apr 01 00:21:56 shuttle kernel: [drm] Detected VRAM RAM=8176M, BAR=8192M
Apr 01 00:21:56 shuttle kernel: [drm] RAM width 256bits GDDR6
Apr 01 00:21:56 shuttle kernel: [drm] amdgpu: 8176M of VRAM memory ready
Apr 01 00:21:56 shuttle kernel: [drm] amdgpu: 29941M of GTT memory ready.
Apr 01 00:21:56 shuttle kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
Apr 01 00:21:56 shuttle kernel: [drm] PCIE GART of 512M enabled (table at 0x00000081FEE00000).
Apr 01 00:21:56 shuttle kernel: [drm] Found VCN firmware Version ENC: 1.21 DEC: 7 VEP: 0 Revision: 2
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: Will use PSP to load VCN firmware
Apr 01 00:21:56 shuttle kernel: [drm] reserve 0x900000 from 0x81fd000000 for PSP TMR
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: smc_dpm_info table revision(format.content): 4.5
Apr 01 00:21:56 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
Apr 01 00:21:56 shuttle kernel: [drm] Display Core v3.2.266 initialized on DCN 2.0
Apr 01 00:21:56 shuttle kernel: [drm] DP-HDMI FRL PCON supported
Apr 01 00:21:56 shuttle kernel: [drm] kiq ring mec 2 pipe 1 q 0
Apr 01 00:21:56 shuttle kernel: [drm] VCN decode and encode initialized successfully(under DPG Mode).
Apr 01 00:21:56 shuttle kernel: [drm] JPEG decode initialized successfully.
Apr 01 00:21:57 shuttle kernel: amdgpu: HMM registered 8176MB device memory
Apr 01 00:21:57 shuttle kernel: [drm] Fence fallback timer expired on ring sdma0
Apr 01 00:21:57 shuttle kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Apr 01 00:21:57 shuttle kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
Apr 01 00:21:58 shuttle kernel: [drm] Fence fallback timer expired on ring sdma0
Apr 01 00:21:58 shuttle kernel: amdgpu: Virtual CRAT table created for GPU
Apr 01 00:21:58 shuttle kernel: amdgpu: Topology: Add dGPU node [0x731f:0x1002]
Apr 01 00:21:58 shuttle kernel: kfd kfd: amdgpu: added device 1002:731f
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 10, active_cu_number 40
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 8
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 8
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 8
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
Apr 01 00:21:58 shuttle kernel: [drm] Initialized amdgpu 3.57.0 20150101 for 0000:03:00.0 on minor 0
Apr 01 00:21:58 shuttle sudo[3293]: pam_unix(sudo:session): session closed for user root
Apr 01 00:21:58 shuttle kernel: amdgpu 0000:03:00.0: [drm] fb1: amdgpudrmfb frame buffer device
Apr 01 00:21:58 shuttle kernel: snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
Apr 01 00:21:58 shuttle kernel: snd_hda_intel 0000:03:00.1: Force to non-snoop mode
Apr 01 00:21:58 shuttle kernel: snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
Apr 01 00:21:58 shuttle kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input27
Apr 01 00:21:58 shuttle kernel: input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input28
Apr 01 00:21:58 shuttle kernel: input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input29
Apr 01 00:21:58 shuttle kernel: input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input30
Apr 01 00:21:58 shuttle kernel: input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input31
Apr 01 00:21:58 shuttle kernel: input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card0/input32
Apr 01 00:21:58 shuttle systemd[1048]: Reached target Sound Card.
Apr 01 00:21:58 shuttle pipewire[1329]: spa.alsa: hw:0,8p: Channels doesn't match (requested 8, got 2)
Apr 01 00:21:58 shuttle pipewire[1329]: spa.alsa: hw:0,8p: Channels doesn't match (requested 8, got 2)
Apr 01 00:21:58 shuttle pipewire[1329]: spa.alsa: hw:0,8p: Channels doesn't match (requested 8, got 2)

###amdgpu is unbound here
Apr 01 00:26:37 shuttle kernel: amdgpu 0000:03:00.0: amdgpu: amdgpu: finishing device.
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib confmisc.c:855:(parse_card) cannot find card '1'
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib conf.c:5204:(_snd_config_evaluate) function snd_func_card_inum returned error: No such file or directory
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib confmisc.c:422:(snd_func_concat) error evaluating strings
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib conf.c:5204:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib confmisc.c:1342:(snd_func_refer) error evaluating name
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib conf.c:5204:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib conf.c:5727:(snd_config_expand) Evaluate error: No such file or directory
Apr 01 00:26:37 shuttle pipewire[1329]: ALSA lib pcm.c:2721:(snd_pcm_open_noupdate) Unknown PCM hdmi:1
Apr 01 00:26:37 shuttle pipewire[1329]: spa.alsa: 'hdmi:1': playback open failed: No such file or directory
Apr 01 00:26:37 shuttle systemd[1]: Created slice Slice /system/systemd-coredump.
Apr 01 00:26:37 shuttle systemd[1]: Started Process Core Dump (PID 3599/UID 0).
Apr 01 00:26:37 shuttle kernel: pci 0000:03:00.0: BAR 0 [mem 0xfa00000000-0xfbffffffff 64bit pref]: releasing
Apr 01 00:26:37 shuttle kernel: pci 0000:03:00.0: BAR 2 [mem 0xfc00000000-0xfc0fffffff 64bit pref]: releasing
Apr 01 00:26:37 shuttle kernel: pcieport 0000:02:00.0: bridge window [mem 0xfa00000000-0xfc0fffffff 64bit pref]: releasing
Apr 01 00:26:37 shuttle kernel: pcieport 0000:01:00.0: bridge window [mem 0xfa00000000-0xfc0fffffff 64bit pref]: releasing
Apr 01 00:26:37 shuttle kernel: pcieport 0000:00:01.1: bridge window [mem 0xfa00000000-0xfc0fffffff 64bit pref]: releasing
Apr 01 00:26:37 shuttle kernel: pcieport 0000:00:01.1: bridge window [mem 0x1100000000-0x13ffffffff 64bit pref]: assigned
Apr 01 00:26:37 shuttle kernel: pcieport 0000:01:00.0: bridge window [mem 0x1100000000-0x13ffffffff 64bit pref]: assigned
Apr 01 00:26:37 shuttle kernel: pcieport 0000:02:00.0: bridge window [mem 0x1100000000-0x13ffffffff 64bit pref]: assigned
Apr 01 00:26:37 shuttle kernel: pci 0000:03:00.0: BAR 0 [mem 0x1200000000-0x13ffffffff 64bit pref]: assigned
Apr 01 00:26:37 shuttle kernel: pci 0000:03:00.0: BAR 2 [mem 0x1100000000-0x11007fffff 64bit pref]: assigned
Apr 01 00:26:37 shuttle kernel: pcieport 0000:00:01.1: PCI bridge to [bus 01-03]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:00:01.1:   bridge window [io  0xf000-0xffff]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:00:01.1:   bridge window [mem 0xf6c00000-0xf6dfffff]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:00:01.1:   bridge window [mem 0x1100000000-0x13ffffffff 64bit pref]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:01:00.0: PCI bridge to [bus 02-03]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:01:00.0:   bridge window [io  0xf000-0xffff]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:01:00.0:   bridge window [mem 0xf6c00000-0xf6cfffff]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:01:00.0:   bridge window [mem 0x1100000000-0x13ffffffff 64bit pref]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:02:00.0: PCI bridge to [bus 03]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:02:00.0:   bridge window [io  0xf000-0xffff]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:02:00.0:   bridge window [mem 0xf6c00000-0xf6cfffff]
Apr 01 00:26:37 shuttle kernel: pcieport 0000:02:00.0:   bridge window [mem 0x1100000000-0x13ffffffff 64bit pref]
Apr 01 00:26:37 shuttle sudo[3585]: pam_unix(sudo:session): session closed for user root
Apr 01 00:26:37 shuttle kernel: vfio_pci: add [1002:1478[ffffffff:ffffffff]] class 0x000000/00000000
Apr 01 00:26:37 shuttle kernel: vfio_pci: add [1002:1479[ffffffff:ffffffff]] class 0x000000/00000000
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
Apr 01 00:26:37 shuttle kernel: vfio_pci: add [1002:731f[ffffffff:ffffffff]] class 0x000000/00000000
Apr 01 00:26:37 shuttle kernel: vfio_pci: add [1da2:e409[ffffffff:ffffffff]] class 0x000000/00000000
Apr 01 00:26:37 shuttle systemd-coredump[3600]: Process 1049 (Xorg) of user 0 dumped core.
                                                
                                                Stack trace of thread 1049:
                                                #0  0x0000727c46a7032c n/a (libc.so.6 + 0x8d32c)
                                                #1  0x0000727c46a1f6c8 raise (libc.so.6 + 0x3c6c8)
                                                #2  0x0000727c46a074b8 abort (libc.so.6 + 0x244b8)
                                                #3  0x00006333a969a9f0 OsAbort (Xorg + 0x14a9f0)
                                                #4  0x00006333a969ad2b FatalError (Xorg + 0x14ad2b)
                                                #5  0x00006333a9692ca6 n/a (Xorg + 0x142ca6)
                                                #6  0x0000727c46a1f770 n/a (libc.so.6 + 0x3c770)
                                                
                                                Stack trace of thread 1072:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1078:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1073:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1165:
                                                #0  0x0000727c46aebe66 epoll_wait (libc.so.6 + 0x108e66)
                                                #1  0x00006333a968d7f7 n/a (Xorg + 0x13d7f7)
                                                #2  0x00006333a9691649 n/a (Xorg + 0x141649)
                                                #3  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #4  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1077:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3372:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1074:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3371:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1075:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3369:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3375:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1079:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1071:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1070:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3373:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 1364:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3374:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3376:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3377:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3370:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                
                                                Stack trace of thread 3378:
                                                #0  0x0000727c46a6aebe n/a (libc.so.6 + 0x87ebe)
                                                #1  0x0000727c46a6d750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                                #2  0x0000727c43a4683c n/a (radeonsi_dri.so + 0x8683c)
                                                #3  0x0000727c43a5e7ec n/a (radeonsi_dri.so + 0x9e7ec)
                                                #4  0x0000727c46a6e55a n/a (libc.so.6 + 0x8b55a)
                                                #5  0x0000727c46aeba3c n/a (libc.so.6 + 0x108a3c)
                                                ELF object binary architecture: AMD x86-64
Apr 01 00:26:37 shuttle systemd[1]: [email protected]: Deactivated successfully.
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: failed to clear page tables on GEM object close (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: leaking bo va (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: failed to clear page tables on GEM object close (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: leaking bo va (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: failed to clear page tables on GEM object close (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: leaking bo va (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: failed to clear page tables on GEM object close (-19)
Apr 01 00:26:37 shuttle kernel: vfio-pci 0000:03:00.0: amdgpu: leaking bo va (-19)
Apr 01 00:26:37 shuttle kernel: [drm] amdgpu: ttm finalized
Apr 01 00:26:37 shuttle kernel: polybar[1314]: segfault at c ip 00007c31ef278af4 sp 00007fff1d6d2ed8 error 4
Apr 01 00:26:37 shuttle kernel: polybar[1316]: segfault at c ip 0000708730b02af4 sp 00007ffc11a54a58 error 4
Apr 01 00:26:37 shuttle kernel:  in libxcb-randr.so.0.1.0[7c31ef274000+6000]
Apr 01 00:26:37 shuttle kernel:  in libxcb-randr.so.0.1.0[708730afe000+6000]
Apr 01 00:26:37 shuttle kernel:  likely on CPU 8 (core 10, socket 0)
Apr 01 00:26:37 shuttle kernel:  likely on CPU 13 (core 1, socket 0)
Apr 01 00:26:37 shuttle kernel: 
Apr 01 00:26:37 shuttle kernel: Code: 83 c4 68 c3 ff 15 44 54 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 8b 47 0c c3 0f 1f 84 00 00 00 00 00 f3 0f 1e fa <8b> 57 0c 48 8d 47 20 48 0f ba ea 25 c3 66 66 2e 0f 1f 84 00 00 00
Apr 01 00:26:37 shuttle kernel: Code: 83 c4 68 c3 ff 15 44 54 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 8b 47 0c c3 0f 1f 84 00 00 00 00 00 f3 0f 1e fa <8b> 57 0c 48 8d 47 20 48 0f ba ea 25 c3 66 66 2e 0f 1f 84 00 00 00
Apr 01 00:26:37 shuttle systemd[1048]: dbus-:[email protected]: Main process exited, code=exited, status=1/FAILURE
Apr 01 00:26:37 shuttle at-spi2-registryd[1461]: X connection to :0 broken (explicit kill or server shutdown).
Apr 01 00:26:37 shuttle systemd[1048]: dbus-:[email protected]: Failed with result 'exit-code'.

[ ... ]

Apr 01 00:26:38 shuttle sddm[1012]: Display server stopped.
Apr 01 00:26:38 shuttle sddm[1012]: Running display stop script  QList("/usr/share/sddm/scripts/Xstop")
Apr 01 00:26:38 shuttle kernel: i3[1262]: segfault at 8 ip 00005b98b4133f02 sp 00007ffca2529680 error 4 in i3[5b98b4101000+55000] likely on CPU 16 (core 4, socket 0)
Apr 01 00:26:38 shuttle kernel: Code: 05 a3 4f 04 00 48 8b 15 a4 8f 04 00 48 85 c0 74 19 0f 1f 80 00 00 00 00 48 39 c2 74 04 c6 40 06 01 48 8b 40 28 48 85 c0 75 ee <45> 8b 66 08 4c 89 f7 ff 15 91 2f 04 00 b9 56 02 00 00 48 8d 15 05
Apr 01 00:26:38 shuttle sddm-helper[1258]: Signal received: SIGTERM
Apr 01 00:26:38 shuttle systemd[1]: Started Process Core Dump (PID 3672/UID 0).
Apr 01 00:26:38 shuttle systemd-coredump[3673]: Process 1262 (i3) of user 1000 dumped core.
                                                
                                                Stack trace of thread 1262:
                                                #0  0x00005b98b4133f02 n/a (i3 + 0x43f02)
                                                #1  0x00005b98b411d928 n/a (i3 + 0x2d928)
                                                #2  0x00005b98b41279ab n/a (i3 + 0x379ab)
                                                #3  0x000078ce62a370cb ev_invoke_pending (libev.so.4 + 0x50cb)
                                                #4  0x000078ce62a3b03a ev_run (libev.so.4 + 0x903a)
                                                #5  0x00005b98b410650b n/a (i3 + 0x1650b)
                                                #6  0x000078ce62875cd0 n/a (libc.so.6 + 0x25cd0)
                                                #7  0x000078ce62875d8a __libc_start_main (libc.so.6 + 0x25d8a)
                                                #8  0x00005b98b4107c05 n/a (i3 + 0x17c05)
                                                
                                                Stack trace of thread 1278:
                                                #0  0x000078ce6295688d syscall (libc.so.6 + 0x10688d)
                                                #1  0x000078ce62af7487 g_cond_wait (libglib-2.0.so.0 + 0xb4487)
                                                #2  0x000078ce62a67454 n/a (libglib-2.0.so.0 + 0x24454)
                                                #3  0x000078ce62a674bc g_async_queue_pop (libglib-2.0.so.0 + 0x244bc)
                                                #4  0x000078ce6248bc48 n/a (libpangoft2-1.0.so.0 + 0x8c48)
                                                #5  0x000078ce62acb065 n/a (libglib-2.0.so.0 + 0x88065)
                                                #6  0x000078ce628db55a n/a (libc.so.6 + 0x8b55a)
                                                #7  0x000078ce62958a3c n/a (libc.so.6 + 0x108a3c)
                                                ELF object binary architecture: AMD x86-64
Apr 01 00:26:38 shuttle systemd[1]: [email protected]: Deactivated successfully.
Apr 01 00:26:38 shuttle sddm-helper[1258]: pam_unix(sddm:session): session closed for user eike
Apr 01 00:26:38 shuttle sddm-helper[1258]: [PAM] Closing session
Apr 01 00:26:38 shuttle sddm-helper[1258]: [PAM] Ended.
Apr 01 00:26:38 shuttle systemd-logind[967]: Session 3 logged out. Waiting for processes to exit.
Apr 01 00:26:38 shuttle sddm[1012]: Auth: sddm-helper exited with 255
Apr 01 00:26:38 shuttle sddm[1012]: Socket server stopping...
Apr 01 00:26:38 shuttle sddm[1012]: Socket server stopped.
Apr 01 00:26:38 shuttle sddm[1012]: Removing display SDDM::Display(0x63afafd8b0d0) ...
Apr 01 00:26:38 shuttle sddm[1012]: Adding new display...
Apr 01 00:26:38 shuttle sddm[1012]: Loaded empty theme configuration
Apr 01 00:26:38 shuttle sddm[1012]: Xauthority path: "/run/sddm/xauth_LRShLx"
Apr 01 00:26:38 shuttle sddm[1012]: Using VT 2
Apr 01 00:26:38 shuttle sddm[1012]: Display server starting...
Apr 01 00:26:38 shuttle sddm[1012]: Writing cookie to "/run/sddm/xauth_LRShLx"
Apr 01 00:26:38 shuttle sddm[1012]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_LRShLx -noreset -displayfd 18
Apr 01 00:26:39 shuttle sddm[1012]: Setting default cursor
Apr 01 00:26:39 shuttle sddm[1012]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Apr 01 00:26:39 shuttle sddm[1012]: Display server started.
Apr 01 00:26:39 shuttle sddm[1012]: Socket server starting...
Apr 01 00:26:39 shuttle sddm[1012]: Socket server started.
Apr 01 00:26:39 shuttle sddm[1012]: Loaded empty theme configuration
Apr 01 00:26:39 shuttle sddm[1012]: Greeter starting...
Apr 01 00:26:39 shuttle sddm[1012]: Removing display SDDM::Display(0x63afafd8b0d0) ...
Apr 01 00:26:39 shuttle sddm[1012]: Jumping to VT 2
Apr 01 00:26:39 shuttle sddm[1012]: VT mode didn't need to be fixed
Apr 01 00:26:39 shuttle sddm-helper[3698]: [PAM] Starting...
Apr 01 00:26:39 shuttle sddm-helper[3698]: [PAM] Authenticating...
Apr 01 00:26:39 shuttle sddm-helper[3698]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=966) by (uid=0)
Apr 01 00:26:39 shuttle sddm-helper[3698]: [PAM] returning.
Apr 01 00:26:39 shuttle systemd-logind[967]: New session c2 of user sddm.
Apr 01 00:26:39 shuttle systemd[1]: Created slice User Slice of UID 966.
Apr 01 00:26:39 shuttle systemd[1]: Starting User Runtime Directory /run/user/966...
Apr 01 00:26:39 shuttle systemd[1]: Finished User Runtime Directory /run/user/966.
Apr 01 00:26:39 shuttle systemd[1]: Starting User Manager for UID 966...
Apr 01 00:26:39 shuttle (systemd)[3701]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Apr 01 00:26:39 shuttle (systemd)[3701]: pam_unix(systemd-user:session): session opened for user sddm(uid=966) by sddm(uid=0)
Apr 01 00:26:39 shuttle systemd[3701]: Queued start job for default target Main User Target.
Apr 01 00:26:39 shuttle systemd[3701]: Created slice User Application Slice.
Apr 01 00:26:39 shuttle systemd[3701]: Reached target Paths.
Apr 01 00:26:39 shuttle systemd[3701]: Reached target Timers.
Apr 01 00:26:39 shuttle systemd[3701]: Starting D-Bus User Message Bus Socket...
Apr 01 00:26:39 shuttle systemd[3701]: Listening on GnuPG network certificate management daemon.
Apr 01 00:26:39 shuttle systemd[3701]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Apr 01 00:26:39 shuttle systemd[3701]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Apr 01 00:26:39 shuttle systemd[3701]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Apr 01 00:26:39 shuttle systemd[3701]: Listening on GnuPG cryptographic agent and passphrase cache.
Apr 01 00:26:39 shuttle systemd[3701]: Listening on GnuPG public key management service.
Apr 01 00:26:39 shuttle systemd[3701]: Listening on p11-kit server.
Apr 01 00:26:39 shuttle systemd[3701]: Listening on PipeWire PulseAudio.
Apr 01 00:26:39 shuttle systemd[3701]: Listening on PipeWire Multimedia System Sockets.
Apr 01 00:26:39 shuttle systemd[3701]: Listening on D-Bus User Message Bus Socket.
Apr 01 00:26:39 shuttle systemd[3701]: Reached target Sockets.
Apr 01 00:26:39 shuttle systemd[3701]: Reached target Basic System.
Apr 01 00:26:39 shuttle systemd[1]: Started User Manager for UID 966.
Apr 01 00:26:39 shuttle systemd[3701]: Starting Update XDG user dir configuration...
Apr 01 00:26:39 shuttle systemd[1]: Started Session c2 of User sddm.
Apr 01 00:26:39 shuttle sddm-helper[3698]: Writing cookie to "/tmp/xauth_lTOieG"
Apr 01 00:26:39 shuttle sddm-helper[3698]: Starting X11 session: "" "/usr/bin/sddm-greeter-qt6 --socket /tmp/sddm-:0-uyGZOH"
Apr 01 00:26:39 shuttle sddm[1012]: Greeter session started successfully
Apr 01 00:26:39 shuttle systemd[3701]: Finished Update XDG user dir configuration.
Apr 01 00:26:39 shuttle systemd[3701]: Reached target Main User Target.
Apr 01 00:26:39 shuttle systemd[3701]: Startup finished in 57ms.
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: High-DPI autoscaling Enabled
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Reading from "/usr/local/share/xsessions/i3-with-shmlog.desktop"
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Reading from "/usr/share/xsessions/i3-with-shmlog.desktop"
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Reading from "/usr/local/share/xsessions/i3.desktop"
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Reading from "/usr/share/xsessions/i3.desktop"
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Loading theme configuration from "qrc:/theme/theme.conf"
Apr 01 00:26:39 shuttle systemd[3701]: Created slice User Core Session Slice.
Apr 01 00:26:39 shuttle systemd[3701]: Starting D-Bus User Message Bus...
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Service file '/usr/share/dbus-1/services/org.knopwob.dunst.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
Apr 01 00:26:39 shuttle systemd[3701]: Started D-Bus User Message Bus.
Apr 01 00:26:39 shuttle dbus-broker-launch[3721]: Ready
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Connected to the daemon.
Apr 01 00:26:39 shuttle sddm[1012]: Message received from greeter: Connect
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Loading qrc:/theme/Main.qml...
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/LayoutBox.qml:35:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///usr/lib/qt6/qml/SddmComponents/angle-down.png
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///usr/lib/qt6/qml/SddmComponents/angle-down.png
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: qrc:/theme/Main.qml:41:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Adding view for "DisplayPort-0" QRect(0,0 2560x1440)
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Loading qrc:/theme/Main.qml...
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/LayoutBox.qml:35:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///usr/lib/qt6/qml/SddmComponents/angle-down.png
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///usr/lib/qt6/qml/SddmComponents/angle-down.png
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: qrc:/theme/Main.qml:41:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Adding view for "HDMI-A-0" QRect(2560,0 2560x1440)
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Message received from daemon: Capabilities
Apr 01 00:26:39 shuttle sddm-greeter-qt6[3717]: Message received from daemon: HostName
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such device
Apr 01 00:26:39 shuttle wireplumber[1330]: Failed to find a working mixer device (_ucm0013.hw:U192k).
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such device
Apr 01 00:26:39 shuttle wireplumber[1330]: Failed to find a working mixer device (_ucm0013.hw:U192k).
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such device
Apr 01 00:26:39 shuttle wireplumber[1330]: Failed to find a working mixer device (_ucm0013.hw:U192k).
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such device
Apr 01 00:26:39 shuttle wireplumber[1330]: Failed to find a working mixer device (_ucm0013.default:U192k).
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such device
Apr 01 00:26:39 shuttle wireplumber[1330]: Failed to find a working mixer device (_ucm0013.default:U192k).
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such file or directory
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such file or directory
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such file or directory
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such file or directory
Apr 01 00:26:39 shuttle wireplumber[1330]: Error opening hctl device: No such file or directory
Apr 01 00:26:39 shuttle wireplumber[1330]: Card can't get card_name from card_index 2
Apr 01 00:26:39 shuttle wireplumber[1330]: can't open control for card hw:2: No such file or directory
Apr 01 00:26:39 shuttle wireplumber[1330]: Card can't get card_name from card_index 1
Apr 01 00:26:39 shuttle wireplumber[1330]: can't open control for card hw:1: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:0,3': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b824a20: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:0,7': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:0,8': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:0,9': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:0,10': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:0,11': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 3
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:3,0': playback open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle pipewire[1329]: ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 3
Apr 01 00:26:39 shuttle pipewire[1329]: spa.alsa: 'hw:3,0': capture open failed: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: 0x619f4b799ab0: can't get format: No such file or directory
Apr 01 00:26:39 shuttle pipewire[1329]: mod.adapter: usage: node.name=<string>
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80e1183f0> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80df04130> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80def83f0> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80dff6f10> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80e240b00> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80e25e3d0> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80e067e00> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:39 shuttle wireplumber[1330]: <WpNode:0x5cc80e2d3d60> Object activation aborted: PipeWire proxy destroyed
Apr 01 00:26:44 shuttle sddm-greeter-qt6[3717]: file:///usr/lib/qt6/qml/SddmComponents/PictureBox.qml:106:13 Parameter "event" is not declared. Injection of parameters into signal handlers is deprecated. Use JavaScript functions with formal parameters instead.
Apr 01 00:26:49 shuttle kernel: BUG: kernel NULL pointer dereference, address: 00000000000005c0
Apr 01 00:26:49 shuttle kernel: #PF: supervisor write access in kernel mode
Apr 01 00:26:49 shuttle kernel: #PF: error_code(0x0002) - not-present page
Apr 01 00:26:49 shuttle kernel: PGD 0 P4D 0 
Apr 01 00:26:49 shuttle kernel: Oops: 0002 [#1] PREEMPT SMP NOPTI
Apr 01 00:26:49 shuttle kernel: CPU: 23 PID: 213 Comm: kworker/23:1 Tainted: P        W  OE      6.8.2-arch2-1 #1 a430fb92f7ba43092b62bbe6bac995458d3d442d
Apr 01 00:26:49 shuttle kernel: Hardware name: ASRock B650 LiveMixer/B650 LiveMixer, BIOS 2.08 03/01/2024
Apr 01 00:26:49 shuttle kernel: Workqueue: pm pm_runtime_work
Apr 01 00:26:49 shuttle kernel: RIP: 0010:down_write+0x20/0x60
Apr 01 00:26:49 shuttle kernel: Code: 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 48 89 fb 2e 2e 2e 31 c0 65 ff 05 df d8 e6 58 31 c0 ba 01 00 00 00 <f0> 48 0f b1 13 75 27 65 48 8b 04 25 80 3f 03 00 48 89 43 08 65 ff
Apr 01 00:26:49 shuttle kernel: RSP: 0018:ffffb430808d7d28 EFLAGS: 00010246
Apr 01 00:26:49 shuttle kernel: RAX: 0000000000000000 RBX: 00000000000005c0 RCX: 0000000000000018
Apr 01 00:26:49 shuttle kernel: RDX: 0000000000000001 RSI: ffff8a17c2d2a0c0 RDI: 00000000000005c0
Apr 01 00:26:49 shuttle kernel: RBP: 00000000000005c0 R08: 0000000000000000 R09: ffff8a17cc5d2b00
Apr 01 00:26:49 shuttle kernel: R10: 0000000000000003 R11: 0000000000000000 R12: ffffffffc0c3b700
Apr 01 00:26:49 shuttle kernel: R13: 0000000000000000 R14: 0000000000000000 R15: ffff8a17cc6d0000
Apr 01 00:26:49 shuttle kernel: FS:  0000000000000000(0000) GS:ffff8a25e21c0000(0000) knlGS:0000000000000000
Apr 01 00:26:49 shuttle kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Apr 01 00:26:49 shuttle kernel: CR2: 00000000000005c0 CR3: 000000097f220000 CR4: 0000000000f50ef0
Apr 01 00:26:49 shuttle kernel: PKRU: 55555554
Apr 01 00:26:49 shuttle kernel: Call Trace:
Apr 01 00:26:49 shuttle kernel:  <TASK>
Apr 01 00:26:49 shuttle kernel:  ? __die+0x23/0x70
Apr 01 00:26:49 shuttle kernel:  ? page_fault_oops+0x171/0x4e0
Apr 01 00:26:49 shuttle kernel:  ? exc_page_fault+0x7f/0x180
Apr 01 00:26:49 shuttle kernel:  ? asm_exc_page_fault+0x26/0x30
Apr 01 00:26:49 shuttle kernel:  ? down_write+0x20/0x60
Apr 01 00:26:49 shuttle kernel:  vfio_pci_core_runtime_suspend+0x1e/0x70 [vfio_pci_core f20fecdd73c03e294d6e01ec0251c7001f88f697]
Apr 01 00:26:49 shuttle kernel:  pci_pm_runtime_suspend+0x67/0x1e0
Apr 01 00:26:49 shuttle kernel:  ? __pfx_pci_pm_runtime_suspend+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  __rpm_callback+0x41/0x170
Apr 01 00:26:49 shuttle kernel:  ? __pfx_pci_pm_runtime_suspend+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  rpm_callback+0x5d/0x70
Apr 01 00:26:49 shuttle kernel:  ? __pfx_pci_pm_runtime_suspend+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  rpm_suspend+0x120/0x6a0
Apr 01 00:26:49 shuttle kernel:  ? srso_alias_return_thunk+0x5/0xfbef5
Apr 01 00:26:49 shuttle kernel:  ? __wake_up+0x44/0x60
Apr 01 00:26:49 shuttle kernel:  ? __pfx_pci_pm_runtime_idle+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  pm_runtime_work+0x84/0xb0
Apr 01 00:26:49 shuttle kernel:  process_one_work+0x183/0x370
Apr 01 00:26:49 shuttle kernel:  worker_thread+0x3ab/0x4f0
Apr 01 00:26:49 shuttle kernel:  ? __pfx_worker_thread+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  kthread+0xe5/0x120
Apr 01 00:26:49 shuttle kernel:  ? __pfx_kthread+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  ret_from_fork+0x31/0x50
Apr 01 00:26:49 shuttle kernel:  ? __pfx_kthread+0x10/0x10
Apr 01 00:26:49 shuttle kernel:  ret_from_fork_asm+0x1b/0x30
Apr 01 00:26:49 shuttle kernel:  </TASK>
Apr 01 00:26:49 shuttle kernel: Modules linked in: vfio_pci snd_seq_dummy snd_hrtimer snd_seq xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT nf_reject_ipv4 xt_tcpudp ip6table_mangle ip6table_nat ip6table_filter ip6_tables iptable_mangle iptable_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c crc32c_generic iptable_filter bridge cfg80211 rfkill 8021q garp mrp stp llc snd_usb_audio snd_usbmidi_lib snd_ump snd_rawmidi snd_seq_device mc mousedev hid_corsair intel_rapl_msr intel_rapl_common kvm_amd snd_hda_codec_realtek snd_hda_codec_generic kvm snd_hda_codec_hdmi crct10dif_pclmul crc32_pclmul snd_hda_intel crc32c_intel polyval_clmulni snd_intel_dspcfg snd_intel_sdw_acpi polyval_generic gf128mul snd_hda_codec ghash_clmulni_intel sha512_ssse3 snd_hda_core sha256_ssse3 sha1_ssse3 snd_hwdep aesni_intel snd_pcm vfat crypto_simd cryptd fat snd_timer r8169 sp5100_tco realtek snd wmi_bmof pcspkr rapl mdio_devres soundcore k10temp ccp i2c_piix4 joydev libphy gpio_amdpt gpio_generic mac_hid vendor_reset(OE) i2c_dev fuse loop dm_mod
Apr 01 00:26:49 shuttle kernel:  nfnetlink ip_tables x_tables uas usb_storage hid_generic usbhid amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper nvme drm_buddy nvme_core drm_display_helper xhci_pci nvme_auth xhci_pci_renesas cec video wmi vfio_pci_core irqbypass vfio_iommu_type1 vfio iommufd zfs(POE) spl(OE) [last unloaded: vfio_pci]
Apr 01 00:26:49 shuttle kernel: CR2: 00000000000005c0
Apr 01 00:26:49 shuttle kernel: ---[ end trace 0000000000000000 ]---
Apr 01 00:26:49 shuttle kernel: RIP: 0010:down_write+0x20/0x60
Apr 01 00:26:49 shuttle kernel: Code: 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 48 89 fb 2e 2e 2e 31 c0 65 ff 05 df d8 e6 58 31 c0 ba 01 00 00 00 <f0> 48 0f b1 13 75 27 65 48 8b 04 25 80 3f 03 00 48 89 43 08 65 ff
Apr 01 00:26:49 shuttle kernel: RSP: 0018:ffffb430808d7d28 EFLAGS: 00010246
Apr 01 00:26:49 shuttle kernel: RAX: 0000000000000000 RBX: 00000000000005c0 RCX: 0000000000000018
Apr 01 00:26:49 shuttle kernel: RDX: 0000000000000001 RSI: ffff8a17c2d2a0c0 RDI: 00000000000005c0
Apr 01 00:26:49 shuttle kernel: RBP: 00000000000005c0 R08: 0000000000000000 R09: ffff8a17cc5d2b00
Apr 01 00:26:49 shuttle kernel: R10: 0000000000000003 R11: 0000000000000000 R12: ffffffffc0c3b700
Apr 01 00:26:49 shuttle kernel: R13: 0000000000000000 R14: 0000000000000000 R15: ffff8a17cc6d0000
Apr 01 00:26:49 shuttle kernel: FS:  0000000000000000(0000) GS:ffff8a25e21c0000(0000) knlGS:0000000000000000
Apr 01 00:26:49 shuttle kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Apr 01 00:26:49 shuttle kernel: CR2: 00000000000005c0 CR3: 000000097f220000 CR4: 0000000000f50ef0
Apr 01 00:26:49 shuttle kernel: PKRU: 55555554
Apr 01 00:26:49 shuttle kernel: note: kworker/23:1[213] exited with irqs disabled
Apr 01 00:26:49 shuttle kernel: note: kworker/23:1[213] exited with preempt_count 1
Apr 01 00:26:52 shuttle sddm-greeter-qt6[3717]: Reading from "/usr/share/xsessions/i3.desktop"
Apr 01 00:26:52 shuttle sddm[1012]: Message received from greeter: Login
Apr 01 00:26:52 shuttle sddm[1012]: Reading from "/usr/share/xsessions/i3.desktop"
Apr 01 00:26:52 shuttle sddm[1012]: Session "/usr/share/xsessions/i3.desktop" selected, command: "i3" for VT 2
Apr 01 00:26:52 shuttle sddm-helper[3778]: [PAM] Starting...
Apr 01 00:26:52 shuttle sddm-helper[3778]: [PAM] Authenticating...
Apr 01 00:26:52 shuttle sddm-helper[3778]: [PAM] Preparing to converse...
Apr 01 00:26:52 shuttle sddm-helper[3778]: [PAM] Conversation with 1 messages
Apr 01 00:26:52 shuttle sddm-helper[3778]: [PAM] returning.
Apr 01 00:26:52 shuttle sddm[1012]: Authentication for user  "eike"  successful
Apr 01 00:26:52 shuttle sddm-greeter-qt6[3717]: Message received from daemon: LoginSucceeded
Apr 01 00:26:52 shuttle sddm-helper[3778]: pam_unix(sddm:session): session opened for user eike(uid=1000) by eike(uid=0)
Apr 01 00:26:52 shuttle systemd-logind[967]: New session 6 of user eike.
Apr 01 00:26:52 shuttle sddm-helper[3698]: [PAM] Closing session
Apr 01 00:26:52 shuttle sddm-helper[3698]: pam_unix(sddm-greeter:session): session closed for user sddm
Apr 01 00:26:52 shuttle sddm-helper[3698]: [PAM] Ended.
Apr 01 00:26:52 shuttle sddm[1012]: Auth: sddm-helper exited successfully
Apr 01 00:26:52 shuttle sddm[1012]: Greeter stopped. SDDM::Auth::HELPER_SUCCESS
Apr 01 00:26:52 shuttle systemd[1]: Started Session 6 of User eike.
Apr 01 00:26:52 shuttle systemd[1]: session-c2.scope: Deactivated successfully.
Apr 01 00:26:52 shuttle systemd-logind[967]: Session c2 logged out. Waiting for processes to exit.
Apr 01 00:26:52 shuttle sddm-helper[3778]: Writing cookie to "/tmp/xauth_mecghi"
Apr 01 00:26:52 shuttle sddm-helper[3778]: Starting X11 session: "" "/usr/share/sddm/scripts/Xsession \"i3\""
Apr 01 00:26:52 shuttle systemd-logind[967]: Removed session c2.
Apr 01 00:26:52 shuttle sddm[1012]: Session started true
Apr 01 00:26:53 shuttle systemd[1048]: Started dbus-:[email protected].
Apr 01 00:26:53 shuttle at-spi2-registryd[3923]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Apr 01 00:26:53 shuttle systemd[1]: Starting Time & Date Service...
Apr 01 00:26:53 shuttle systemd[1]: Started Time & Date Service.
Apr 01 00:26:53 shuttle rtkit-daemon[1337]: Supervising 5 threads of 3 processes of 1 users.
Apr 01 00:26:53 shuttle rtkit-daemon[1337]: Supervising 5 threads of 3 processes of 1 users.
Apr 01 00:26:53 shuttle rtkit-daemon[1337]: Supervising 5 threads of 3 processes of 1 users.
Apr 01 00:26:53 shuttle rtkit-daemon[1337]: Supervising 5 threads of 3 processes of 1 users.
Apr 01 00:26:53 shuttle rtkit-daemon[1337]: Successfully made thread 4115 of process 3796 owned by '1000' RT at priority 10.
Apr 01 00:26:53 shuttle rtkit-daemon[1337]: Supervising 6 threads of 4 processes of 1 users.
Apr 01 00:27:02 shuttle systemd[1]: Started Getty on tty3.
Apr 01 00:27:02 shuttle agetty[4140]: failed to open credentials directory
Apr 01 00:27:03 shuttle systemd[1]: Stopping User Manager for UID 966...
Apr 01 00:27:03 shuttle systemd[3701]: Activating special unit Exit the Session...
Apr 01 00:27:03 shuttle systemd[3701]: Stopped target Main User Target.
Apr 01 00:27:03 shuttle systemd[3701]: Stopped target Basic System.
Apr 01 00:27:03 shuttle systemd[3701]: Stopped target Paths.
Apr 01 00:27:03 shuttle systemd[3701]: Stopped target Sockets.
Apr 01 00:27:03 shuttle systemd[3701]: Stopped target Timers.
Apr 01 00:27:03 shuttle systemd[3701]: Closed GnuPG network certificate management daemon.
Apr 01 00:27:03 shuttle systemd[3701]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Apr 01 00:27:03 shuttle systemd[3701]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Apr 01 00:27:03 shuttle systemd[3701]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Apr 01 00:27:03 shuttle systemd[3701]: Closed GnuPG cryptographic agent and passphrase cache.
Apr 01 00:27:03 shuttle systemd[3701]: Closed GnuPG public key management service.
Apr 01 00:27:03 shuttle systemd[3701]: Closed p11-kit server.
Apr 01 00:27:03 shuttle systemd[3701]: Closed PipeWire PulseAudio.
Apr 01 00:27:03 shuttle systemd[3701]: Closed PipeWire Multimedia System Sockets.
Apr 01 00:27:03 shuttle dbus-broker[3722]: Dispatched 128 messages @ 0(±1)μs / message.
Apr 01 00:27:03 shuttle systemd[3701]: Stopping D-Bus User Message Bus...
Apr 01 00:27:03 shuttle systemd[3701]: Stopped D-Bus User Message Bus.
Apr 01 00:27:03 shuttle systemd[3701]: Removed slice User Core Session Slice.
Apr 01 00:27:03 shuttle systemd[3701]: Closed D-Bus User Message Bus Socket.
Apr 01 00:27:03 shuttle systemd[3701]: Removed slice User Application Slice.
Apr 01 00:27:03 shuttle systemd[3701]: Reached target Shutdown.
Apr 01 00:27:03 shuttle systemd[3701]: Finished Exit the Session.
Apr 01 00:27:03 shuttle systemd[3701]: Reached target Exit the Session.
Apr 01 00:27:03 shuttle (sd-pam)[3703]: pam_unix(systemd-user:session): session closed for user sddm
Apr 01 00:27:03 shuttle systemd[1]: [email protected]: Deactivated successfully.
Apr 01 00:27:03 shuttle systemd[1]: Stopped User Manager for UID 966.
Apr 01 00:27:03 shuttle systemd[1]: Stopping User Runtime Directory /run/user/966...
Apr 01 00:27:03 shuttle systemd[1]: run-user-966.mount: Deactivated successfully.
Apr 01 00:27:03 shuttle systemd[1]: [email protected]: Deactivated successfully.
Apr 01 00:27:03 shuttle systemd[1]: Stopped User Runtime Directory /run/user/966.
Apr 01 00:27:03 shuttle systemd[1]: Removed slice User Slice of UID 966.

This leaves my system in a pretty broken state. When the X server starts again, Windows stay invisible for a long time, polybar fails to start, etc. After a reboot everything works fine again.

So now I have a lot of questions:

  • Is it just generally not possible to do this?
  • Are iGPU and dGPU using the same driver a problem? I have seen other setups where the amdgpu or nvidia modules are removed completely (modprobe -r amdgpu) when switching. This of course is not possible if my iGPU is still using the same module.
  • Is this related to the AMD reset bug that’s affecting the RX 5700XT? I have the vendor-reset kernel module installed and loaded and run echo device_specific > '/sys/bus/pci/devices/0000:03:00.0/reset_method' after boot, before doing any of what I described. Do I have to explicitly reset the GPU between unbinding/binding?
  • Can I tell the X server to release my dGPU before unbinding amgpu?
  • Could switching to Wayland help?

I’m thankful for any help. If you need further information I will gladly provide it.
Thank You!

Dynamic attach works, dynamic detach does not. You could try under Wayland, and you might have better luck, but I don’t think it’ll be smooth and easy.