Re: Add PCI ID for VirtualBox NVMe

2018-10-25 Thread Mike Larkin
On Thu, Jul 19, 2018 at 07:19:55PM -0500, Andrew Daugherity wrote:
> This is strictly a cosmetic change, as it already gets bound to
> nvme(4) and works properly, but is currently identified as an unknown
> product.
> 
> 
> diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs
> index f9ab4d1c535..e50b8d1a1a7 100644
> --- a/sys/dev/pci/pcidevs
> +++ b/sys/dev/pci/pcidevs
> @@ -2912,6 +2912,7 @@ product INITIO INIC941 0x9401 INIC-941
>  product INITIO INIC950 0x9500 INIC-950
> 
>  /* InnoTek Systemberatung GmbH */
> +product INNOTEK VBNVME 0x4e56 VirtualBox NVMe
>  product INNOTEK VBGA 0xbeef VirtualBox Graphics Adapter
>  product INNOTEK VBGS 0xcafe VirtualBox Guest Service
> 
> 
> 
> Change in dmesg:
> -nvme0 at pci0 dev 14 function 0 vendor "InnoTek", unknown product
> 0x4e56 rev 0x00: apic 2 int 22, NVMe 1.2
> +nvme0 at pci0 dev 14 function 0 "InnoTek VirtualBox NVMe" rev 0x00:
> apic 2 int 22, NVMe 1.2
>  nvme0: ORCL-VBOX-NVME-VER12, firmware 1.0, serial VB1234-56789
>  scsibus1 at nvme0: 1 targets
>  sd0 at scsibus1 targ 0 lun 0:  SCSI4
> 0/direct fixed
> 
> 
> -Andrew
> 

Sorry this took so long, I was cleaning out my inbox and saw this. Committed,
thanks!

-ml



Add PCI ID for VirtualBox NVMe

2018-07-19 Thread Andrew Daugherity
This is strictly a cosmetic change, as it already gets bound to
nvme(4) and works properly, but is currently identified as an unknown
product.


diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs
index f9ab4d1c535..e50b8d1a1a7 100644
--- a/sys/dev/pci/pcidevs
+++ b/sys/dev/pci/pcidevs
@@ -2912,6 +2912,7 @@ product INITIO INIC941 0x9401 INIC-941
 product INITIO INIC950 0x9500 INIC-950

 /* InnoTek Systemberatung GmbH */
+product INNOTEK VBNVME 0x4e56 VirtualBox NVMe
 product INNOTEK VBGA 0xbeef VirtualBox Graphics Adapter
 product INNOTEK VBGS 0xcafe VirtualBox Guest Service



Change in dmesg:
-nvme0 at pci0 dev 14 function 0 vendor "InnoTek", unknown product
0x4e56 rev 0x00: apic 2 int 22, NVMe 1.2
+nvme0 at pci0 dev 14 function 0 "InnoTek VirtualBox NVMe" rev 0x00:
apic 2 int 22, NVMe 1.2
 nvme0: ORCL-VBOX-NVME-VER12, firmware 1.0, serial VB1234-56789
 scsibus1 at nvme0: 1 targets
 sd0 at scsibus1 targ 0 lun 0:  SCSI4
0/direct fixed


-Andrew