Add igc(4), a driver for the Intel 2.5Gb Ethernet controllers.
authorpatrick <patrick@openbsd.org>
Sun, 31 Oct 2021 14:52:57 +0000 (14:52 +0000)
committerpatrick <patrick@openbsd.org>
Sun, 31 Oct 2021 14:52:57 +0000 (14:52 +0000)
commit833067921015a0bb30717e533cc97d81b4f386a8
tree090f888ac6b2ecc8168ac5305ba058f6619b8efc
parent12a48f82ca28afb6adf4030867fe4f5718aa3a19
Add igc(4), a driver for the Intel 2.5Gb Ethernet controllers.

Ported by kevlo@
ok jmatthew@
18 files changed:
sys/dev/pci/files.pci
sys/dev/pci/if_igc.c [new file with mode: 0644]
sys/dev/pci/if_igc.h [new file with mode: 0644]
sys/dev/pci/igc_api.c [new file with mode: 0644]
sys/dev/pci/igc_api.h [new file with mode: 0644]
sys/dev/pci/igc_base.c [new file with mode: 0644]
sys/dev/pci/igc_base.h [new file with mode: 0644]
sys/dev/pci/igc_defines.h [new file with mode: 0644]
sys/dev/pci/igc_hw.h [new file with mode: 0644]
sys/dev/pci/igc_i225.c [new file with mode: 0644]
sys/dev/pci/igc_i225.h [new file with mode: 0644]
sys/dev/pci/igc_mac.c [new file with mode: 0644]
sys/dev/pci/igc_mac.h [new file with mode: 0644]
sys/dev/pci/igc_nvm.c [new file with mode: 0644]
sys/dev/pci/igc_nvm.h [new file with mode: 0644]
sys/dev/pci/igc_phy.c [new file with mode: 0644]
sys/dev/pci/igc_phy.h [new file with mode: 0644]
sys/dev/pci/igc_regs.h [new file with mode: 0644]