Tuftuf

Members
  • Posts

    248
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tuftuf

  1. Try the following Also Hyper-V was disabled via the UI prior to making these changes. <!--The Nvidia GPU.--> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x03' slot='0x00' function='0x0'/> </source> <rom file='/path/to/my/bios.file'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x00' slot='0x1b' function='0x0'/> </source> <rom file='/path/to/my/bios.file'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> </hostdev> <hostdev mode='subsystem' type='usb' managed='no'> EDIT - It's worth trying my suggestion, but I have noticed that the Slot and Function lines appear differently on your example. Are you passing through your GPU's audio?
  2. Here is my XML from a working Windows 10 Seabios with Nivida GPU passthrough, I also had to take the bios dump etc. First thing I noticed was the line where you are passing the vbios through, look to be in a different position compared to mine by about 1-2 lines. And I had to pass the vbios through for the onboard audio of the GPU before anything would display. I want to add that this is not my desired configuration, I've also had issues getting OVMF to work but think it related to my windows installer. I'm going to try later with a fresh download from the MS site. <domain type='kvm' id='5'> <name>Windows 10 Gaming</name> <uuid>9bf2954a-016b-0f03-9b62-5053056ec9f9</uuid> <metadata> <vmtemplate xmlns="unraid" name="Windows 10" icon="windows.png" os="windows10"/> </metadata> <memory unit='KiB'>8388608</memory> <currentMemory unit='KiB'>8388608</currentMemory> <memoryBacking> <nosharepages/> </memoryBacking> <vcpu placement='static'>4</vcpu> <cputune> <vcpupin vcpu='0' cpuset='8'/> <vcpupin vcpu='1' cpuset='10'/> <vcpupin vcpu='2' cpuset='12'/> <vcpupin vcpu='3' cpuset='14'/> </cputune> <resource> <partition>/machine</partition> </resource> <os> <type arch='x86_64' machine='pc-i440fx-2.7'>hvm</type> </os> <features> <acpi/> <apic/> </features> <cpu mode='host-passthrough' check='none'> <topology sockets='1' cores='4' threads='1'/> </cpu> <clock offset='localtime'> <timer name='rtc' tickpolicy='catchup'/> <timer name='pit' tickpolicy='delay'/> <timer name='hpet' present='no'/> </clock> <on_poweroff>destroy</on_poweroff> <on_reboot>restart</on_reboot> <on_crash>restart</on_crash> <devices> <emulator>/usr/local/sbin/qemu</emulator> <disk type='file' device='disk'> <driver name='qemu' type='raw' cache='writeback'/> <source file='/mnt/disks/WDC WDS500G1B0A/VM_Cache/Win10.img'/> <backingStore/> <target dev='hdc' bus='virtio'/> <boot order='1'/> <alias name='virtio-disk2'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> </disk> <disk type='file' device='disk'> <driver name='qemu' type='raw' cache='writeback'/> <source file='/mnt/disks/WDC WDS500G1B0A/VM_Cache/WindowsGaming.img'/> <backingStore/> <target dev='hdd' bus='virtio'/> <alias name='virtio-disk3'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> </disk> <disk type='file' device='cdrom'> <driver name='qemu' type='raw'/> <source file='/mnt/user/VM_Cache/virtio-win.iso'/> <backingStore/> <target dev='hdb' bus='ide'/> <readonly/> <alias name='ide0-0-1'/> <address type='drive' controller='0' bus='0' target='0' unit='1'/> </disk> <controller type='usb' index='0' model='ich9-ehci1'> <alias name='usb'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x7'/> </controller> <controller type='usb' index='0' model='ich9-uhci1'> <alias name='usb'/> <master startport='0'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0' multifunction='on'/> </controller> <controller type='usb' index='0' model='ich9-uhci2'> <alias name='usb'/> <master startport='2'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x1'/> </controller> <controller type='usb' index='0' model='ich9-uhci3'> <alias name='usb'/> <master startport='4'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x2'/> </controller> <controller type='pci' index='0' model='pci-root'> <alias name='pci.0'/> </controller> <controller type='ide' index='0'> <alias name='ide'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> </controller> <controller type='virtio-serial' index='0'> <alias name='virtio-serial0'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> </controller> <interface type='bridge'> <mac address='52:54:00:91:a3:2e'/> <source bridge='br0'/> <target dev='vnet2'/> <model type='virtio'/> <alias name='net0'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> </interface> <serial type='pty'> <source path='/dev/pts/4'/> <target port='0'/> <alias name='serial0'/> </serial> <console type='pty' tty='/dev/pts/4'> <source path='/dev/pts/4'/> <target type='serial' port='0'/> <alias name='serial0'/> </console> <channel type='unix'> <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-5-Windows 10 Gaming/org.qemu.guest_agent.0'/> <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/> <alias name='channel0'/> <address type='virtio-serial' controller='0' bus='0' port='1'/> </channel> <input type='mouse' bus='ps2'> <alias name='input0'/> </input> <input type='keyboard' bus='ps2'> <alias name='input1'/> </input> <hostdev mode='subsystem' type='pci' managed='yes' xvga='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x0f' slot='0x00' function='0x0'/> </source> <alias name='hostdev0'/> <rom file='/boot/vbios.rom'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x0f' slot='0x00' function='0x1'/> </source> <alias name='hostdev1'/> <rom file='/boot/vbios.rom'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> </hostdev> <hostdev mode='subsystem' type='usb' managed='no'> <source> <vendor id='0x047f'/> <product id='0x02f7'/> <address bus='1' device='5'/> </source> <alias name='hostdev2'/> <address type='usb' bus='0' port='1'/> </hostdev> <hostdev mode='subsystem' type='usb' managed='no'> <source> <vendor id='0x1532'/> <product id='0x0016'/> <address bus='1' device='3'/> </source> <alias name='hostdev3'/> <address type='usb' bus='0' port='2'/> </hostdev> <hostdev mode='subsystem' type='usb' managed='no'> <source> <vendor id='0x1c4f'/> <product id='0x0002'/> <address bus='1' device='2'/> </source> <alias name='hostdev4'/> <address type='usb' bus='0' port='3'/> </hostdev> <memballoon model='virtio'> <alias name='balloon0'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> </memballoon> </devices> <seclabel type='none' model='none'/> <seclabel type='dynamic' model='dac' relabel='yes'> <label>+0:+100</label> <imagelabel>+0:+100</imagelabel> </seclabel> </domain>
  3. Taken from 6.4 RC2 running TBS OS root@Tower:~# lspci -vnn 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1450] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1450] Flags: fast devsel 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Device [1022:1451] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1451] Flags: bus master, fast devsel, latency 0, IRQ 27 Capabilities: [40] Secure device <?> Capabilities: [64] MSI: Enable+ Count=1/4 Maskable- 64bit+ Capabilities: [74] HyperTransport: MSI Mapping Enable+ Fixed+ 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:01.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 28 Bus: primary=00, secondary=03, subordinate=0e, sec-latency=0 I/O behind bridge: 0000d000-0000efff [size=8K] Memory behind bridge: f7200000-f7afffff [size=9M] Prefetchable memory behind bridge: 00000000e0000000-00000000e03fffff [size=4M] Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot+), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Capabilities: [370] L1 PM Substates Capabilities: [3c4] #23 Kernel driver in use: pcieport 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 29 Bus: primary=00, secondary=0f, subordinate=0f, sec-latency=0 I/O behind bridge: 0000f000-0000ffff [size=4K] Memory behind bridge: f6000000-f70fffff [size=17M] Prefetchable memory behind bridge: 00000000e8000000-00000000f1ffffff [size=160M] Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot+), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Capabilities: [370] L1 PM Substates Capabilities: [3c4] #23 Kernel driver in use: pcieport 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 30 Bus: primary=00, secondary=11, subordinate=11, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7c00000-f7efffff [size=3M] Prefetchable memory behind bridge: None Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot-), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Kernel driver in use: pcieport 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 32 Bus: primary=00, secondary=12, subordinate=12, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7f00000-f7ffffff [size=1M] Prefetchable memory behind bridge: None Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot-), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Kernel driver in use: pcieport 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller [1022:790b] (rev 59) Subsystem: Gigabyte Technology Co., Ltd FCH SMBus Controller [1458:5001] Flags: 66MHz, medium devsel Kernel driver in use: piix4_smbus Kernel modules: i2c_piix4 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge [1022:790e] (rev 51) Subsystem: Gigabyte Technology Co., Ltd FCH LPC Bridge [1458:5001] Flags: bus master, 66MHz, medium devsel, latency 0 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1460] Flags: fast devsel 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1461] Flags: fast devsel 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1462] Flags: fast devsel 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1463] Flags: fast devsel 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1464] Flags: fast devsel 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1465] Flags: fast devsel 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1466] Flags: fast devsel 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1467] Flags: fast devsel 03:00.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b9] (rev 02) (prog-if 30 [XHCI]) Subsystem: ASMedia Technology Inc. Device [1b21:1142] Flags: bus master, fast devsel, latency 0, IRQ 45 Memory at f7aa0000 (64-bit, non-prefetchable) [size=32K] Capabilities: [50] MSI: Enable+ Count=1/8 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Legacy Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [300] Latency Tolerance Reporting Capabilities: [400] L1 PM Substates Kernel driver in use: xhci_hcd 03:00.1 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b5] (rev 02) (prog-if 01 [AHCI 1.0]) Subsystem: ASMedia Technology Inc. Device [1b21:1062] Flags: bus master, fast devsel, latency 0, IRQ 49 Memory at f7a80000 (32-bit, non-prefetchable) [size=128K] Expansion ROM at f7a00000 [disabled] [size=512K] Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Legacy Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Kernel driver in use: ahci Kernel modules: ahci 03:00.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b0] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 33 Bus: primary=03, secondary=04, subordinate=0e, sec-latency=0 I/O behind bridge: 0000d000-0000efff [size=8K] Memory behind bridge: f7200000-f79fffff [size=8M] Prefetchable memory behind bridge: 00000000e0000000-00000000e03fffff [size=4M] Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Upstream Port, MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:0201] Capabilities: [100] Advanced Error Reporting Kernel driver in use: pcieport 04:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 34 Bus: primary=04, secondary=05, subordinate=05, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7900000-f79fffff [size=1M] Prefetchable memory behind bridge: None Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:02.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 35 Bus: primary=04, secondary=06, subordinate=06, sec-latency=0 I/O behind bridge: 0000e000-0000efff [size=4K] Memory behind bridge: f7800000-f78fffff [size=1M] Prefetchable memory behind bridge: 00000000e0000000-00000000e01fffff [size=2M] Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:03.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 37 Bus: primary=04, secondary=07, subordinate=07, sec-latency=0 I/O behind bridge: 0000d000-0000dfff [size=4K] Memory behind bridge: f7700000-f77fffff [size=1M] Prefetchable memory behind bridge: None Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:04.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 38 Bus: primary=04, secondary=08, subordinate=08, sec-latency=0 I/O behind bridge: None Memory behind bridge: None Prefetchable memory behind bridge: None Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:05.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 40 Bus: primary=04, secondary=09, subordinate=0c, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7200000-f75fffff [size=4M] Prefetchable memory behind bridge: None Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:06.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 41 Bus: primary=04, secondary=0d, subordinate=0d, sec-latency=0 I/O behind bridge: None Memory behind bridge: None Prefetchable memory behind bridge: 00000000e0200000-00000000e03fffff [size=2M] Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:07.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 42 Bus: primary=04, secondary=0e, subordinate=0e, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7600000-f76fffff [size=1M] Prefetchable memory behind bridge: None Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 05:00.0 USB controller [0c03]: ASMedia Technology Inc. Device [1b21:1343] (prog-if 30 [XHCI]) Subsystem: Gigabyte Technology Co., Ltd Device [1458:5007] Flags: bus master, fast devsel, latency 0, IRQ 46 Memory at f7900000 (64-bit, non-prefetchable) [size=32K] Capabilities: [50] MSI: Enable+ Count=1/8 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Endpoint, MSI 00 Capabilities: [100] Virtual Channel Capabilities: [200] Advanced Error Reporting Capabilities: [280] #19 Capabilities: [300] Latency Tolerance Reporting Kernel driver in use: xhci_hcd 06:00.0 Ethernet controller [0200]: Intel Corporation I211 Gigabit Network Connection [8086:1539] (rev 03) Subsystem: Gigabyte Technology Co., Ltd I211 Gigabit Network Connection [1458:e000] Flags: bus master, fast devsel, latency 0, IRQ 24 Memory at f7800000 (32-bit, non-prefetchable) [size=128K] I/O ports at e000 [size=32] Memory at f7820000 (32-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+ Capabilities: [70] MSI-X: Enable+ Count=5 Masked- Capabilities: [a0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Device Serial Number 1c-1b-0d-ff-ff-e1-fc-8b Capabilities: [1a0] Transaction Processing Hints Kernel driver in use: igb Kernel modules: igb 07:00.0 Ethernet controller [0200]: Qualcomm Atheros Device [1969:e0b1] (rev 10) Subsystem: Gigabyte Technology Co., Ltd Device [1458:e000] Flags: bus master, fast devsel, latency 0, IRQ 36 Memory at f7700000 (64-bit, non-prefetchable) [size=256K] I/O ports at d000 [size=128] Capabilities: [40] Power Management version 3 Capabilities: [58] Express Endpoint, MSI 00 Capabilities: [c0] MSI: Enable- Count=1/16 Maskable+ 64bit+ Capabilities: [d8] MSI-X: Enable+ Count=16 Masked- Capabilities: [100] Advanced Error Reporting Capabilities: [180] Device Serial Number ff-e1-fc-8d-1c-1b-0d-ff Kernel driver in use: alx Kernel modules: alx 09:00.0 PCI bridge [0604]: Pericom Semiconductor Device [12d8:2304] (rev 05) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0 Bus: primary=09, secondary=0a, subordinate=0c, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7200000-f75fffff [size=4M] Prefetchable memory behind bridge: None Capabilities: [40] Power Management version 3 Capabilities: [5c] Vital Product Data Capabilities: [64] Vendor Specific Information: Len=34 <?> Capabilities: [b0] Subsystem: Device [0000:0000] Capabilities: [c0] Express Upstream Port, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Virtual Channel Capabilities: [20c] Power Budgeting <?> Capabilities: [230] Latency Tolerance Reporting Kernel driver in use: pcieport 0a:01.0 PCI bridge [0604]: Pericom Semiconductor Device [12d8:2304] (rev 05) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 43 Bus: primary=0a, secondary=0b, subordinate=0b, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7400000-f75fffff [size=2M] Prefetchable memory behind bridge: None Capabilities: [40] Power Management version 3 Capabilities: [4c] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [64] Vendor Specific Information: Len=34 <?> Capabilities: [b0] Subsystem: Device [0000:0000] Capabilities: [c0] Express Downstream Port (Slot+), MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Virtual Channel Capabilities: [20c] Power Budgeting <?> Capabilities: [220] Access Control Services Kernel driver in use: pcieport 0a:02.0 PCI bridge [0604]: Pericom Semiconductor Device [12d8:2304] (rev 05) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 44 Bus: primary=0a, secondary=0c, subordinate=0c, sec-latency=0 I/O behind bridge: None Memory behind bridge: f7200000-f73fffff [size=2M] Prefetchable memory behind bridge: None Capabilities: [40] Power Management version 3 Capabilities: [4c] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [64] Vendor Specific Information: Len=34 <?> Capabilities: [b0] Subsystem: Device [0000:0000] Capabilities: [c0] Express Downstream Port (Slot+), MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Virtual Channel Capabilities: [20c] Power Budgeting <?> Capabilities: [220] Access Control Services Kernel driver in use: pcieport 0b:00.0 Multimedia video controller [0400]: Conexant Systems, Inc. CX23885 PCI Video and Audio Decoder [14f1:8852] (rev 04) Subsystem: Hauppauge computer works Inc. CX23885 PCI Video and Audio Decoder [0070:6a28] Flags: bus master, fast devsel, latency 0, IRQ 5 Memory at f7400000 (64-bit, non-prefetchable) [size=2M] Capabilities: [40] Express Endpoint, MSI 00 Capabilities: [80] Power Management version 2 Capabilities: [90] Vital Product Data Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [100] Advanced Error Reporting Capabilities: [200] Virtual Channel Kernel modules: cx23885 0c:00.0 Multimedia video controller [0400]: Conexant Systems, Inc. CX23885 PCI Video and Audio Decoder [14f1:8852] (rev 04) Subsystem: Hauppauge computer works Inc. CX23885 PCI Video and Audio Decoder [0070:6b28] Flags: bus master, fast devsel, latency 0, IRQ 4 Memory at f7200000 (64-bit, non-prefetchable) [size=2M] Capabilities: [40] Express Endpoint, MSI 00 Capabilities: [80] Power Management version 2 Capabilities: [90] Vital Product Data Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [100] Advanced Error Reporting Capabilities: [200] Virtual Channel Kernel modules: cx23885 0e:00.0 Multimedia controller [0480]: TBS Technologies DVB-S2 4 Tuner PCIe Card [544d:6178] Subsystem: Device [6909:0001] Flags: bus master, fast devsel, latency 0, IRQ 67 Memory at f7600000 (32-bit, non-prefetchable) [size=256K] Capabilities: [50] Power Management version 3 Capabilities: [70] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [90] Express Endpoint, MSI 00 Capabilities: [100] Device Serial Number 00-00-00-00-00-00-00-00 Kernel driver in use: TBSECP3 driver Kernel modules: tbsecp3 0f:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK104 [GeForce GTX 670] [10de:1189] (rev a1) (prog-if 00 [VGA controller]) Subsystem: Gigabyte Technology Co., Ltd GK104 [GeForce GTX 670] [1458:3542] Flags: bus master, fast devsel, latency 0, IRQ 11 Memory at f6000000 (32-bit, non-prefetchable) [size=16M] Memory at e8000000 (64-bit, prefetchable) [size=128M] Memory at f0000000 (64-bit, prefetchable) [size=32M] I/O ports at f000 [size=128] Expansion ROM at 000c0000 [disabled] [size=128K] Capabilities: [60] Power Management version 3 Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [78] Express Endpoint, MSI 00 Capabilities: [b4] Vendor Specific Information: Len=14 <?> Capabilities: [100] Virtual Channel Capabilities: [128] Power Budgeting <?> Capabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?> Capabilities: [900] #19 0f:00.1 Audio device [0403]: NVIDIA Corporation GK104 HDMI Audio Controller [10de:0e0a] (rev a1) Subsystem: Gigabyte Technology Co., Ltd GK104 HDMI Audio Controller [1458:3542] Flags: bus master, fast devsel, latency 0, IRQ 10 Memory at f7080000 (32-bit, non-prefetchable) [size=16K] Capabilities: [60] Power Management version 3 Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [78] Express Endpoint, MSI 00 11:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:145a] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145a] Flags: bus master, fast devsel, latency 0 Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 11:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1456] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1456] Flags: bus master, fast devsel, latency 0, IRQ 5 Memory at f7d00000 (32-bit, non-prefetchable) [size=1M] Memory at f7e00000 (32-bit, non-prefetchable) [size=8K] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable- Count=1/2 Maskable- 64bit+ Capabilities: [c0] MSI-X: Enable- Count=2 Masked- Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> 11:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] USB3 Host Controller [1022:145c] (prog-if 30 [XHCI]) Subsystem: Gigabyte Technology Co., Ltd Device [1458:5007] Flags: bus master, fast devsel, latency 0, IRQ 48 Memory at f7c00000 (64-bit, non-prefetchable) [size=1M] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/8 Maskable- 64bit+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Kernel driver in use: xhci_hcd 12:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:1455] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1455] Flags: bus master, fast devsel, latency 0 Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 12:00.2 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51) (prog-if 01 [AHCI 1.0]) Subsystem: Gigabyte Technology Co., Ltd FCH SATA Controller [AHCI mode] [1458:b002] Flags: bus master, fast devsel, latency 0, IRQ 51 Memory at f7f08000 (32-bit, non-prefetchable) [size=4K] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable+ Count=16/16 Maskable- 64bit+ Capabilities: [d0] SATA HBA v1.0 Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Kernel driver in use: ahci Kernel modules: ahci 12:00.3 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Device [1022:1457] Subsystem: Gigabyte Technology Co., Ltd Device [1458:a0b8] Flags: bus master, fast devsel, latency 0, IRQ 4 Memory at f7f00000 (32-bit, non-prefetchable) [size=32K] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> root@Tower:~#
  4. This is from 6.3.5. root@Tower:~# lspci -vnn 00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1450] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1450] Flags: fast devsel 00:00.2 IOMMU [0806]: Advanced Micro Devices, Inc. [AMD] Device [1022:1451] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1451] Flags: bus master, fast devsel, latency 0, IRQ 27 Capabilities: [40] Secure device <?> Capabilities: [64] MSI: Enable+ Count=1/4 Maskable- 64bit+ Capabilities: [74] HyperTransport: MSI Mapping Enable+ Fixed+ 00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:01.3 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 28 Bus: primary=00, secondary=03, subordinate=0e, sec-latency=0 I/O behind bridge: 0000d000-0000efff Memory behind bridge: f7200000-f7afffff Prefetchable memory behind bridge: 00000000e0000000-00000000e03fffff Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot+), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Capabilities: [370] L1 PM Substates Capabilities: [3c4] #23 Kernel driver in use: pcieport 00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:03.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 29 Bus: primary=00, secondary=0f, subordinate=0f, sec-latency=0 I/O behind bridge: 0000f000-0000ffff Memory behind bridge: f6000000-f70fffff Prefetchable memory behind bridge: 00000000e8000000-00000000f1ffffff Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot+), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1453] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Capabilities: [370] L1 PM Substates Capabilities: [3c4] #23 Kernel driver in use: pcieport 00:04.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:07.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:07.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 30 Bus: primary=00, secondary=11, subordinate=11, sec-latency=0 Memory behind bridge: f7c00000-f7efffff Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot-), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Kernel driver in use: pcieport 00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1452] Flags: fast devsel 00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 32 Bus: primary=00, secondary=12, subordinate=12, sec-latency=0 Memory behind bridge: f7f00000-f7ffffff Capabilities: [50] Power Management version 3 Capabilities: [58] Express Root Port (Slot-), MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1454] Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 Kernel driver in use: pcieport 00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller [1022:790b] (rev 59) Subsystem: Gigabyte Technology Co., Ltd FCH SMBus Controller [1458:5001] Flags: 66MHz, medium devsel Kernel driver in use: piix4_smbus Kernel modules: i2c_piix4 00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge [1022:790e] (rev 51) Subsystem: Gigabyte Technology Co., Ltd FCH LPC Bridge [1458:5001] Flags: bus master, 66MHz, medium devsel, latency 0 00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1460] Flags: fast devsel 00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1461] Flags: fast devsel 00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1462] Flags: fast devsel 00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1463] Flags: fast devsel 00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1464] Flags: fast devsel 00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1465] Flags: fast devsel 00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1466] Flags: fast devsel 00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Device [1022:1467] Flags: fast devsel 03:00.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b9] (rev 02) (prog-if 30 [XHCI]) Subsystem: ASMedia Technology Inc. Device [1b21:1142] Flags: bus master, fast devsel, latency 0, IRQ 45 Memory at f7aa0000 (64-bit, non-prefetchable) [size=32K] Capabilities: [50] MSI: Enable+ Count=1/8 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Legacy Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [300] Latency Tolerance Reporting Capabilities: [400] L1 PM Substates Kernel driver in use: xhci_hcd 03:00.1 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b5] (rev 02) (prog-if 01 [AHCI 1.0]) Subsystem: ASMedia Technology Inc. Device [1b21:1062] Flags: bus master, fast devsel, latency 0, IRQ 49 Memory at f7a80000 (32-bit, non-prefetchable) [size=128K] Expansion ROM at f7a00000 [disabled] [size=512K] Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Legacy Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Kernel driver in use: ahci Kernel modules: ahci 03:00.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b0] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 33 Bus: primary=03, secondary=04, subordinate=0e, sec-latency=0 I/O behind bridge: 0000d000-0000efff Memory behind bridge: f7200000-f79fffff Prefetchable memory behind bridge: 00000000e0000000-00000000e03fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Upstream Port, MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:0201] Capabilities: [100] Advanced Error Reporting Kernel driver in use: pcieport 04:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 34 Bus: primary=04, secondary=05, subordinate=05, sec-latency=0 Memory behind bridge: f7900000-f79fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:02.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 35 Bus: primary=04, secondary=06, subordinate=06, sec-latency=0 I/O behind bridge: 0000e000-0000efff Memory behind bridge: f7800000-f78fffff Prefetchable memory behind bridge: 00000000e0000000-00000000e01fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:03.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 37 Bus: primary=04, secondary=07, subordinate=07, sec-latency=0 I/O behind bridge: 0000d000-0000dfff Memory behind bridge: f7700000-f77fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:04.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 38 Bus: primary=04, secondary=08, subordinate=08, sec-latency=0 Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:05.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 40 Bus: primary=04, secondary=09, subordinate=0c, sec-latency=0 Memory behind bridge: f7200000-f75fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:06.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 41 Bus: primary=04, secondary=0d, subordinate=0d, sec-latency=0 Prefetchable memory behind bridge: 00000000e0200000-00000000e03fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 04:07.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Device [1022:43b4] (rev 02) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 42 Bus: primary=04, secondary=0e, subordinate=0e, sec-latency=0 Memory behind bridge: f7600000-f76fffff Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Downstream Port (Slot+), MSI 00 Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device [1b21:3306] Capabilities: [100] Advanced Error Reporting Capabilities: [200] #19 Capabilities: [400] L1 PM Substates Kernel driver in use: pcieport 05:00.0 USB controller [0c03]: ASMedia Technology Inc. Device [1b21:1343] (prog-if 30 [XHCI]) Subsystem: Gigabyte Technology Co., Ltd Device [1458:5007] Flags: bus master, fast devsel, latency 0, IRQ 46 Memory at f7900000 (64-bit, non-prefetchable) [size=32K] Capabilities: [50] MSI: Enable+ Count=1/8 Maskable- 64bit+ Capabilities: [78] Power Management version 3 Capabilities: [80] Express Endpoint, MSI 00 Capabilities: [100] Virtual Channel Capabilities: [200] Advanced Error Reporting Capabilities: [280] #19 Capabilities: [300] Latency Tolerance Reporting Kernel driver in use: xhci_hcd 06:00.0 Ethernet controller [0200]: Intel Corporation I211 Gigabit Network Connection [8086:1539] (rev 03) Subsystem: Gigabyte Technology Co., Ltd I211 Gigabit Network Connection [1458:e000] Flags: bus master, fast devsel, latency 0, IRQ 24 Memory at f7800000 (32-bit, non-prefetchable) [size=128K] I/O ports at e000 [size=32] Memory at f7820000 (32-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+ Capabilities: [70] MSI-X: Enable+ Count=5 Masked- Capabilities: [a0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Device Serial Number 1c-1b-0d-ff-ff-e1-fc-8b Capabilities: [1a0] Transaction Processing Hints Kernel driver in use: igb Kernel modules: igb 07:00.0 Ethernet controller [0200]: Qualcomm Atheros Device [1969:e0b1] (rev 10) Subsystem: Gigabyte Technology Co., Ltd Device [1458:e000] Flags: bus master, fast devsel, latency 0, IRQ 73 Memory at f7700000 (64-bit, non-prefetchable) [size=256K] I/O ports at d000 [size=128] Capabilities: [40] Power Management version 3 Capabilities: [58] Express Endpoint, MSI 00 Capabilities: [c0] MSI: Enable+ Count=1/16 Maskable+ 64bit+ Capabilities: [d8] MSI-X: Enable- Count=16 Masked- Capabilities: [100] Advanced Error Reporting Capabilities: [180] Device Serial Number ff-e1-fc-8d-1c-1b-0d-ff Kernel driver in use: alx Kernel modules: alx 09:00.0 PCI bridge [0604]: Pericom Semiconductor Device [12d8:2304] (rev 05) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0 Bus: primary=09, secondary=0a, subordinate=0c, sec-latency=0 Memory behind bridge: f7200000-f75fffff Capabilities: [40] Power Management version 3 Capabilities: [5c] Vital Product Data Capabilities: [64] Vendor Specific Information: Len=34 <?> Capabilities: [b0] Subsystem: Device [0000:0000] Capabilities: [c0] Express Upstream Port, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Virtual Channel Capabilities: [20c] Power Budgeting <?> Capabilities: [230] Latency Tolerance Reporting Kernel driver in use: pcieport 0a:01.0 PCI bridge [0604]: Pericom Semiconductor Device [12d8:2304] (rev 05) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 43 Bus: primary=0a, secondary=0b, subordinate=0b, sec-latency=0 Memory behind bridge: f7400000-f75fffff Capabilities: [40] Power Management version 3 Capabilities: [4c] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [64] Vendor Specific Information: Len=34 <?> Capabilities: [b0] Subsystem: Device [0000:0000] Capabilities: [c0] Express Downstream Port (Slot+), MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Virtual Channel Capabilities: [20c] Power Budgeting <?> Capabilities: [220] Access Control Services Kernel driver in use: pcieport 0a:02.0 PCI bridge [0604]: Pericom Semiconductor Device [12d8:2304] (rev 05) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0, IRQ 44 Bus: primary=0a, secondary=0c, subordinate=0c, sec-latency=0 Memory behind bridge: f7200000-f73fffff Capabilities: [40] Power Management version 3 Capabilities: [4c] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [64] Vendor Specific Information: Len=34 <?> Capabilities: [b0] Subsystem: Device [0000:0000] Capabilities: [c0] Express Downstream Port (Slot+), MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Virtual Channel Capabilities: [20c] Power Budgeting <?> Capabilities: [220] Access Control Services Kernel driver in use: pcieport 0b:00.0 Multimedia video controller [0400]: Conexant Systems, Inc. CX23885 PCI Video and Audio Decoder [14f1:8852] (rev 04) Subsystem: Hauppauge computer works Inc. CX23885 PCI Video and Audio Decoder [0070:6a28] Flags: bus master, fast devsel, latency 0, IRQ 24 Memory at f7400000 (64-bit, non-prefetchable) [size=2M] Capabilities: [40] Express Endpoint, MSI 00 Capabilities: [80] Power Management version 2 Capabilities: [90] Vital Product Data Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [100] Advanced Error Reporting Capabilities: [200] Virtual Channel Kernel driver in use: cx23885 Kernel modules: cx23885 0c:00.0 Multimedia video controller [0400]: Conexant Systems, Inc. CX23885 PCI Video and Audio Decoder [14f1:8852] (rev 04) Subsystem: Hauppauge computer works Inc. CX23885 PCI Video and Audio Decoder [0070:6b28] Flags: bus master, fast devsel, latency 0, IRQ 36 Memory at f7200000 (64-bit, non-prefetchable) [size=2M] Capabilities: [40] Express Endpoint, MSI 00 Capabilities: [80] Power Management version 2 Capabilities: [90] Vital Product Data Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [100] Advanced Error Reporting Capabilities: [200] Virtual Channel Kernel driver in use: cx23885 Kernel modules: cx23885 0e:00.0 Multimedia controller [0480]: TBS Technologies DVB-S2 4 Tuner PCIe Card [544d:6178] Subsystem: Device [6909:0001] Flags: bus master, fast devsel, latency 0, IRQ 67 Memory at f7600000 (32-bit, non-prefetchable) [size=256K] Capabilities: [50] Power Management version 3 Capabilities: [70] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [90] Express Endpoint, MSI 00 Capabilities: [100] Device Serial Number 00-00-00-00-00-00-00-00 Kernel driver in use: TBSECP3 driver Kernel modules: tbsecp3 0f:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK104 [GeForce GTX 670] [10de:1189] (rev a1) (prog-if 00 [VGA controller]) Subsystem: Gigabyte Technology Co., Ltd GK104 [GeForce GTX 670] [1458:3542] Flags: bus master, fast devsel, latency 0, IRQ 11 Memory at f6000000 (32-bit, non-prefetchable) [size=16M] Memory at e8000000 (64-bit, prefetchable) [size=128M] Memory at f0000000 (64-bit, prefetchable) [size=32M] I/O ports at f000 [size=128] Expansion ROM at 000c0000 [disabled] [size=128K] Capabilities: [60] Power Management version 3 Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [78] Express Endpoint, MSI 00 Capabilities: [b4] Vendor Specific Information: Len=14 <?> Capabilities: [100] Virtual Channel Capabilities: [128] Power Budgeting <?> Capabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?> Capabilities: [900] #19 0f:00.1 Audio device [0403]: NVIDIA Corporation GK104 HDMI Audio Controller [10de:0e0a] (rev a1) Subsystem: Gigabyte Technology Co., Ltd GK104 HDMI Audio Controller [1458:3542] Flags: bus master, fast devsel, latency 0, IRQ 10 Memory at f7080000 (32-bit, non-prefetchable) [size=16K] Capabilities: [60] Power Management version 3 Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [78] Express Endpoint, MSI 00 11:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:145a] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:145a] Flags: bus master, fast devsel, latency 0 Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 11:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Device [1022:1456] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1456] Flags: bus master, fast devsel, latency 0, IRQ 5 Memory at f7d00000 (32-bit, non-prefetchable) [size=1M] Memory at f7e00000 (32-bit, non-prefetchable) [size=8K] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable- Count=1/2 Maskable- 64bit+ Capabilities: [c0] MSI-X: Enable- Count=2 Masked- Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> 11:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Device [1022:145c] (prog-if 30 [XHCI]) Subsystem: Gigabyte Technology Co., Ltd Device [1458:5007] Flags: bus master, fast devsel, latency 0, IRQ 48 Memory at f7c00000 (64-bit, non-prefetchable) [size=1M] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable+ Count=1/8 Maskable- 64bit+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Kernel driver in use: xhci_hcd 12:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device [1022:1455] Subsystem: Advanced Micro Devices, Inc. [AMD] Device [1022:1455] Flags: bus master, fast devsel, latency 0 Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Capabilities: [270] #19 12:00.2 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 51) (prog-if 01 [AHCI 1.0]) Subsystem: Gigabyte Technology Co., Ltd FCH SATA Controller [AHCI mode] [1458:b002] Flags: bus master, fast devsel, latency 0, IRQ 51 Memory at f7f08000 (32-bit, non-prefetchable) [size=4K] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable+ Count=16/16 Maskable- 64bit+ Capabilities: [d0] SATA HBA v1.0 Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> Kernel driver in use: ahci Kernel modules: ahci 12:00.3 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Device [1022:1457] Subsystem: Gigabyte Technology Co., Ltd Device [1458:a0b8] Flags: bus master, fast devsel, latency 0, IRQ 4 Memory at f7f00000 (32-bit, non-prefetchable) [size=32K] Capabilities: [48] Vendor Specific Information: Len=08 <?> Capabilities: [50] Power Management version 3 Capabilities: [64] Express Endpoint, MSI 00 Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?> root@Tower:~# And I had the 6.4 ones.. but have rebooted the laptop. I'll get them soon.
  5. I'm glad you asked because I was starting to think the card had actually died. It is a little strange not seeing them all listed on the plugin. One of the Adapters 3-7 will be a USB one the other is 4 tuners coming from the WinTV Quad. unRAID Version: 6.3.5 DVB Version: Driver Version: DVB Kernel: Detected DVB Adapter Drivers: Detected DVB Adapter 0: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 1: DVB-T DVB Adapter 2: Afatech AF9013 DVB Adapter 3: Silicon Labs Si2168 DVB Adapter 4: Silicon Labs Si2168 DVB Adapter 5: Silicon Labs Si2168 DVB Adapter 6: Silicon Labs Si2168 DVB Adapter 7: Silicon Labs Si2168 In this picture I can say that #3 is the USB tuner. 4-5-6-7 the WinTV Quad.
  6. Please note this is for testing purposes and not an issue that is blocking for myself using the system. TBS OpenSource drivers results. TBS 6909 Detected. 3 out 3 USB tuners are detected. WinTV QuadHD tuner is not detected (This was detected on 6.3.4) unRAID Version: 6.4.0-rc2 DVB Version: TBS (Open Source) & LibreELEC ATSC-C, DVB-C, DVB-S(2) & DVB-T(2) Driver Version: 060617 DVB Kernel: Detected DVB Adapter Drivers: Detected DVB Adapter 0: DVB-T DVB Adapter 1: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 2: Afatech AF9013 DVB Adapter 3: Silicon Labs Si2168 DVB Adapter 4: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 5: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 6: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 7: TurboSight TBS 6909 DVB-S/S2 LibreELEC driver results 3 out of 3 USB tuners are detected. WinTV QuadHD tuner is not detected. (Did not test LibreELEC in 6.3.4 but I did test with TSB OS and CrazyCat and both worked.) TBS 6909 not detected (result OK due to no drivers present for it) unRAID Version: 6.4.0-rc2 DVB Version: LibreELEC Driver Version: 1.2.1 DVB Kernel: Detected DVB Adapter Drivers: Detected DVB Adapter 0: DVB-T DVB Adapter 1: Silicon Labs Si2168 DVB Adapter 2: Afatech AF9013 DVB Adapter0 is detected as Afatech AF9033 in TVHeadend.
  7. I have 3x USB-T2 tuners + the QuadHD card that should be detected with LibreELEC. You can see a couple of them in the list with the TBS OS drivers. Also shouldn't the LibreELEC say DVB Kernel detected even without any TV cards installed? But the actual issue I reported was that the QuadHD is no longer detected with the TBS OS drivers, which it was prior to the upgrade. (I don't need it to work, but it was working) @DMZZ Since I can return the QuadHD card I plan to see how long I can cope with the 1 or 2 USB Tuners for T/T2 and take most of the channels from the TBS S2 card. If I run into problems indeed it'll have to be a TBS card.
  8. Tested the TBS Opensource drivers and lost access to the Hauppauge WinTV QuadHD card, not a massive issue for myself as I intend to return it but there appears to be a problem. It detected 3x USB DVB-T2's and the TBS 6909. This would show 8x TBS 6909 if I unplug the USB. All 11 were detected in TVHeadend. unRAID Version: 6.4.0-rc1 DVB Version: TBS (Open Source) & LibreELEC ATSC-C, DVB-C, DVB-S(2) & DVB-T(2) Driver Version: 040617 DVB Kernel: Detected DVB Adapter Drivers: Detected DVB Adapter 0: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 1: DVB-T DVB Adapter 2: Silicon Labs Si2168 DVB Adapter 3: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 4: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 5: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 6: TurboSight TBS 6909 DVB-S/S2 DVB Adapter 7: TurboSight TBS 6909 DVB-S/S2 Tested the LibreELEC and nothing is detected. unRAID Version: 6.4.0-rc1 DVB Version: LibreELEC Driver Version: 1.2.1 DVB Kernel: Not Detected DVB Adapter Drivers: Not Detected DVB Adapter 0: Not Detected
  9. Strangely the driver shows up the same as my T2 usb tuner that works flawlessly. I will likely end up with a dual or quad TBS. Unless I try to be cheap again and get a DVBSKy card instead. I'll add that I'm looking forward to a 6.4.0-RC1 update as I'm eager to test 6.4.0-RC1
  10. Thank you for this plugin, been using it for about a year I think. So far it's only been with USB tuners mainly as a test. Finally upgraded to TBS 6909 DVB-S2 card, working very well. Also a DVB-T2 Hauppauge WinTV-Quad HD but this is not working so well. Tested with TBS OpenSource and initially very good but then signal issues which I blame on the card including 4way splitter that seems to favour 2 of the 4 tuners. Tried CrazyCat drivers too, similar results although very different signal readings on two cards. This card is likely getting returned.
  11. Hello! I wanted to post incase anyone else had tried this card, I'm not really finding anything interesting when I google the card. Thinking of returning it. Card = Hauppauge WinTV-Quad HD Digital TV Tuner Started using DVB-T &T2 USB tuners to test TVHeadend before moving over to an S2 Octo card and T2 Quad card. The USB tuners were mostly OK on my original aerial, I did have some dropouts but I could relate them to weather. However on the Quad Tuner this was much worse. Few things I've noticed. Generally it works OK on a reboot of the full system. 2 out of 4 Tuners report better signal than the others. -75d/-76db/-83db/-85db for example. ( I know these numbers can't really be trusted but the USB tuner using same chipset reported -55db to -65db) Replaced aerial and now the quad tuner reports between -45db and -60db (I need to check the USB tuner but it was slightly better than this and thats OK because the card has a 4way splitter built in, I expect some loss) However I'm still getting dropouts, I can see the signal reported as been reasonable figures based history of what works/does not work and the SNR looks improved compared to prior to the aerial upgrade. This was all on the DVB Unraid with Open source drivers. Now switched over to Crazycat 2 out of 4 tuners report -50db signal 2 out of 4 tuners report -110db of signal.
  12. I was running with ACS override and two GPU's for a couple of days. Then without ACS Override and 1 GPU. I can't say for certain but when I then enabled ACS Override again with only 1 GPU. It seemed to solve all the GPU slow down issues I was having in games, FPS used to drop for a few seconds then return up to normal. Only recently have I seen GPU usage reach 80-90% before the CPU tops out. I'll edit my first post, but I'm now running two PCI TV Tuners DVB-S2 and T2 in the PCIE 1x slots. Feel free to let me know how you get on with 64GB ram. I bought my current RAM as it appeared to be the same as sold within the 64GB kit, with the goal of adding another two 16GB's at some point.
  13. Skyline..... It's hard to say what compatibility issues you will have other than this chip really hasn't been out long. It's working, but hard to say anything other than its a work in progress. I started my own build thread for Ryzen just because I wanted to document what did and didn't work.
  14. I will check out the Beta bios for Gaming 5 when I get chance. One thing I did notice with my current setup, if I disable ACS override the performance in VM's seems to take a hit. Within games I'll often see slowdowns and FPS drops but with ACS override on this is not an issue.
  15. Main issues C-State needed to be disabled due to stability issues. Cannot boot Ubnutu VM's with CPU Passthrough (Seems to be a known Ubuntu issue) Noticed if you have a second keyboard and mouse on the unraid system when passing through primary GPU, the unraid system is still visible underneath. Each keypress or mouse movement makes unraid UI reappear on the screen. This is easily avoided by not having a second keyboard and mouse connected directly to unraid if using the Primary GPU slot. GPU passthrough required the rom file adding to the XML settings (Would be nice to have a way to keep manual edits) No temperature sensors for this motherboard.
  16. to be added.. https://www.dropbox.com/s/lwpcjrywz99arjh/IMG_1448.JPG
  17. Build details CPU Ryzen 7 1700 Motherboard GIGABYTE GA-AX370-Gaming 5 RAM CMK32GX4M2A2666C16R 32 GB (2 x 16 GB) Vengeance LPX 1x WD Red 4 TB Parity 1x WD Red 4 TB Data 1x WD Black 2TB Data 1x Seagate 2TB Spare 1x Seagate 1.5TB Spare (Unplugged, now moved to old PC) Initially ACS override was enabled, that is now disabled. Currently do not see the need for it. EDIT - Performance improved with ACS Override on even with 1 GPU. Main purpose of the server is to provide Plex, TVHeadend and run some linux VM's for work. Passing through the GPU for games was a bonus. Use-case VM Windows 10 - 8 Cores, (8,10,12,14,15,13,11 & 9) RAM 12GB GPU Passthrough Nvidia 670 (Required .rom Edit) Unfortunately Seabios as I can’t get my windows 10 installer to boot UEFI yet) VM Windows 10 - 2 Cores (4 & 6) RAM 4GB Running Blueiris CCTV VM Ubuntu (QEMU CPU) 2 Core (? & ?) Ryzen HostCPU passthrough, causes Unraid to crash. RAM 4GB Running nginx for TVHeadend/Plex proxy script (HDHomerun) -- Running but not using it anymore. Docker TVHeadend PCIE x1 Quad DVB-T2 x1 PCIE x1 Octo DVB-S2 x1 USB 2x DVB-T (Due to be removed) USB 1x DVB-T2 (Due to be removed) Docker - Plex, MinecraftPE, Unifi Initially was running with an AMD 7950 & Nivida 670. Both were passed through to separate windows VM's but only to the point that drivers were installed. Changes coming within days... Docker TVHeadend - WIP DONE - All three USB DVB adaptors are been replaced with Hauppauge WinTV-Quad HD DONE - Also adding DVB-S2 TBS6909 DVB-S2 8 Tuner PCIe Card - Octo Tuner DONE - WinTV-Quad -- Signal not the best... Replace cooler with H100i V2 - I have the bracket now, but not sure if I see the need to use this cooler anymore.
  18. Unraid doesn't detect any sensors on GA-AX370-GAMING 5 for me at least Running GPU pass through, windows performance is ok but having some slow downs, this might be due to using seabios. VM is failing to passthrough using OVMF at the moment, I am using a Nvidia card and passing through the rom.
  19. You were indeed right(I think), but honestly I could not find the option in my bios at first and I did look for it, only found it a few hours ago and I'm still testing. Reading this thread pretty much pushed me into buying the system even though I'm away all weekend and next week. But I found the option today hidden away, time will tell regarding stability. Now I'm stuck due to having a Nvidia 670 card and needing a second gpu to dump the bios prior to passthrough. Unfortunately the only other GPU in the house is a dead 580 that won't even power on. Looks like I may need to place another order. I have tried GPU passthrough even though it won't work yet based what I've read, at the moment if I start the VM with GPU it just causes the system to hang. EDIT.. Got ahold of a 7950, now I have 2x Win VM with each using a 670 or 7950. Plus 670 works by itself in primary with the rom file edit. So far so good.
  20. I don't have other memory to try at the moment, its all or nothing. I bought the DDR4-2666 memory. Well I wanted to be good and do a preclear on all the drives, but so far its crashed at 65% pre-read and second attempt I skipped pre-read it crashed at 96% preclear(zero stage) Think I'll have to start it without the preclear for now and maybe reset my config at a later stage. My main data is on my old drives, which I've not touched yet. Although I'll just crash while creating parity I expect. If I get further crashes I may have to try Windows for a day or two just to check stability. I've only managed 1 pass on memtest, still haven't got my keyboard working in memtest to test multi threaded.
  21. Well, I've had two crashes so far and I'm only trying to pre clear a disk. First @ 6 hours - Memory was running at 2666 Second @ 8 hours - Memory was running at 2133 I'll leave it running a memtest for now, looked through the bios couldn't really find anything that looked worth changing.
  22. ETA is 9th - Cooler, RAM, SSD and SanDisk Fit 16GB USB. (Arrived) 10th - Case, PSU, Mobo, HDD and CPU 11th - Cooler CPU Bracket...............................................Ordered a few hours before I actually ordered the cooler. Once the free bracket was ordered there was no going back though. I was thinking of using the AMD cooler (I think there is one in the box) but now I know its only for 24hours, I really should wait. Sad part is I'm away all weekend from Friday afternoon and working away 4 days next week. Pretty much have Thursday to get it in a state I can continue with it remotely.
  23. This thread is an interesting read and I decided to place an order. Will see how I get on when it arrives... I already own the GPU and 1x 4TB listed here. What's left of my old system will turn into another PC until I buy another GPU. System will be used for things like Plex, tvheadend etc, but also some linux VM's for testing work related stuff. I'd like to run a windows VM as well and could buy a different GPU for it but will have to see how it effects things like TVHeadend that might be using a PCIe card. But server related tasks are more important. PCPartPicker part list: https://pcpartpicker.com/list/8mhZd6 CPU: AMD - Ryzen 7 1700 3.0GHz 8-Core Processor CPU Cooler: Corsair - H100i v2 70.7 CFM Liquid CPU Cooler Motherboard: Gigabyte - GA-AX370-GAMING 5 ATX AM4 Motherboard Memory: Corsair - Vengeance LPX 32GB (2 x 16GB) DDR4-2666 Memory Storage: Western Digital - Blue 500GB 2.5" Solid State Drive Storage: Western Digital - Red 4TB 3.5" 5400RPM Internal Hard Drive Storage: Western Digital - Red 4TB 3.5" 5400RPM Internal Hard Drive Video Card: Gigabyte - GeForce GTX 670 2GB Video Card Case: be quiet! - Silent Base 800 w/Window (Orange) ATX Mid Tower Case Power Supply: Super Flower - Leadex Gold 650W 80+ Gold Certified Fully-Modular ATX Power Supply