diff options
author | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2019-07-29 00:40:50 +0000 |
---|---|---|
committer | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2019-07-29 00:40:50 +0000 |
commit | 80ca41df275af01360f25a16cd6928f8a87aee4b (patch) | |
tree | 889ec7507c7ce2814a8c0cbfa87aa74aee244bb9 /sys/dev/pci/files.pci | |
parent | ee24c0e680ddd0d24832905ccace2a781deb88e9 (diff) |
Add iavf(4), a driver for Intel Ethernet Adaptive Virtual Functions.
This should work with SR-IOV virtual functions of Intel 700 series and
newer ethernet controllers. Written based on ixl(4) and the AVF
Hardware Architecture Specification released by Intel.
ok dlg@ deraadt@
Diffstat (limited to 'sys/dev/pci/files.pci')
-rw-r--r-- | sys/dev/pci/files.pci | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/pci/files.pci b/sys/dev/pci/files.pci index 6ca7e0218d1..254be5fcf99 100644 --- a/sys/dev/pci/files.pci +++ b/sys/dev/pci/files.pci @@ -1,4 +1,4 @@ -# $OpenBSD: files.pci,v 1.336 2019/05/04 06:40:33 jmatthew Exp $ +# $OpenBSD: files.pci,v 1.337 2019/07/29 00:40:49 jmatthew Exp $ # $NetBSD: files.pci,v 1.20 1996/09/24 17:47:15 christos Exp $ # # Config file and device description for machine-independent PCI code. @@ -833,5 +833,10 @@ device mcx: ether, ifnet, ifmedia attach mcx at pci file dev/pci/if_mcx.c mcx +# Intel Adaptive Virtual Function +device iavf: ether, ifnet, ifmedia +attach iavf at pci +file dev/pci/if_iavf.c iavf + include "dev/pci/files.agp" include "dev/pci/drm/files.drm" |