From 66a9685e9fa6a8f647f4e59527d056aeb4942fb6 Mon Sep 17 00:00:00 2001 From: wpaul Date: Thu, 31 May 2001 21:44:26 +0000 Subject: Add device driver support for the Level 1 LXT1001 NetCellerator gigabit ethernet controller chip. This device is used on some fiber optic gigE cards from SMC, D-Link and Addtron. Jumbograms and TCP/IP checksum offload on receive are supported. Hardware VLAN filtering is not, because it doesn't play well with our existing VLAN code. Also add manual page. There is a 4.x version of this driver available at http://www.freebsd.org/~wpaul/Level1/4.x if anyone feels adventurous and wants to test it. I still need to do performance testing and tuning with this device. (For my next trick, I will make the 3Com 3cR990 sit up and beg.) --- sys/conf/NOTES | 4 ++++ sys/conf/files | 1 + 2 files changed, 5 insertions(+) (limited to 'sys/conf') diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 744bed2..fae6298 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1633,6 +1633,9 @@ device miibus # DE101, DE200, DE201, DE202, DE203, DE204, DE205, DE422) # lnc: Lance/PCnet cards (Isolan, Novell NE2100, NE32-VL, AMD Am7990 and # Am79C960) +# lge: Support for PCI gigabit ethernet adapters based on the Level 1 +# LXT1001 NetCellerator chipset. This includes the D-Link DGE-500SX, +# SMC TigerCard 1000 (SMC9462SX), and some Addtron cards. # nge: Support for PCI gigabit ethernet adapters based on the National # Semiconductor DP83820 and DP83821 chipset. This includes the # SMC EZ Card 1000 (SMC9462TX), D-Link DGE-500T, Asante FriendlyNet @@ -1806,6 +1809,7 @@ device de # DEC/Intel DC21x4x (``Tulip'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Gigabit & FDDI NICs. +device lge device nge device sk device ti diff --git a/sys/conf/files b/sys/conf/files index b8d9989..e8b49df 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -363,6 +363,7 @@ dev/isp/isp_freebsd.c optional isp dev/isp/isp_target.c optional isp dev/isp/isp_pci.c optional isp dev/ispfw/ispfw.c optional ispfw +dev/lge/if_lge.c optional lge dev/lmc/if_lmc.c optional lmc dev/lnc/if_lnc.c optional lnc dev/lnc/if_lnc_isa.c optional lnc isa -- cgit v1.1