summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1999-01-09 18:12:08 +0000
committerwpaul <wpaul@FreeBSD.org>1999-01-09 18:12:08 +0000
commit84a9b3dd33ba985fa51a793f60e1f6d20874ed63 (patch)
tree0253c12d76b8b92fe6fafdbf2a3c630bc71e4cd5 /sys/i386
parentf956b7cd12238844824278a57b019ddcbf0525a3 (diff)
downloadFreeBSD-src-84a9b3dd33ba985fa51a793f60e1f6d20874ed63.zip
FreeBSD-src-84a9b3dd33ba985fa51a793f60e1f6d20874ed63.tar.gz
Add driver support (and man page) for PCI fast ethernet cards based
on the ASIX AX88140A chip. Update /sys/conf/files, RELNOTES.TXT, /sys/i388/i386/userconfig.c, sysinstall/devices.c, GENERIC and LINT accordingly. For now, the only board that I know of that uses this chip is the Alfa Inc. GFC2204. (Its predecessor, the GFC2202, was a DEC tulip card.) Thanks again to Ulf for obtaining the board for me. If anyone runs across another, please feel free to update the man page and/or the release notes. (The same applies for the other drivers.) FreeBSD should now have support for all of the DEC tulip workalike chipsets currently on the market (Macronix, Lite-On, Winbond, ASIX). And unless I'm mistaken, it should also have support for all PCI fast ethernet chipsets in general (except maybe the SMC FEAST chip, which nobody seems to ever use, including SMC). Now if only we could convince 3Com, Intel or whoever to cough up some documentation for gigabit ethernet hardware. Also updated RELNOTEX.TXT to mention that the SVEC PN102TX is supported by the Macronix driver (assuming you actually have an SVEC PN102TX with a Macronix chip on it; I tried to order a PN102TX once and got a box labeled 'Hawking Technology PN102TX' that had a VIA Rhine board inside it).
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/conf/GENERIC3
-rw-r--r--sys/i386/conf/LINT7
-rw-r--r--sys/i386/conf/NOTES7
-rw-r--r--sys/i386/i386/userconfig.c5
4 files changed, 17 insertions, 5 deletions
diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC
index ef57d0a..88943bb 100644
--- a/sys/i386/conf/GENERIC
+++ b/sys/i386/conf/GENERIC
@@ -11,7 +11,7 @@
# device lines is present in the ./LINT configuration file. If you are
# in doubt as to the purpose or necessity of a line, check first in LINT.
#
-# $Id: GENERIC,v 1.140 1998/12/27 13:55:47 sos Exp $
+# $Id: GENERIC,v 1.141 1999/01/01 08:09:57 peter Exp $
machine "i386"
cpu "I386_CPU"
@@ -142,6 +142,7 @@ device psm0 at isa? port IO_KBD conflicts tty irq 12
# this list of network interfaces until the probes have been fixed.
# Right now it appears that the ie0 must be probed before ep0. See
# revision 1.20 of this file.
+device ax0
device de0
device fxp0
device mx0
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index 27f1cea..fbeb207 100644
--- a/sys/i386/conf/LINT
+++ b/sys/i386/conf/LINT
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.527 1999/01/08 16:04:18 eivind Exp $
+# $Id: LINT,v 1.528 1999/01/08 17:31:07 eivind Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -1448,6 +1448,10 @@ options "EISA_SLOTS=12"
# nd 1040B PCI SCSI host adapters, as well as the Qlogic ISP 2100
# FC/AL Host Adapter.
#
+# The `ax' device provides support for PCI fast ethernet adapters
+# based on the ASIX Electronics AX88140A chip, including the Alfa
+# Inc. GFC2204.
+#
# The `de' device provides support for the Digital Equipment DC21040
# self-contained Ethernet adapter.
#
@@ -1535,6 +1539,7 @@ controller pci0
controller ahc1
controller ncr0
controller isp0
+device ax0
device de0
device fxp0
device mx0
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index 27f1cea..fbeb207 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.527 1999/01/08 16:04:18 eivind Exp $
+# $Id: LINT,v 1.528 1999/01/08 17:31:07 eivind Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -1448,6 +1448,10 @@ options "EISA_SLOTS=12"
# nd 1040B PCI SCSI host adapters, as well as the Qlogic ISP 2100
# FC/AL Host Adapter.
#
+# The `ax' device provides support for PCI fast ethernet adapters
+# based on the ASIX Electronics AX88140A chip, including the Alfa
+# Inc. GFC2204.
+#
# The `de' device provides support for the Digital Equipment DC21040
# self-contained Ethernet adapter.
#
@@ -1535,6 +1539,7 @@ controller pci0
controller ahc1
controller ncr0
controller isp0
+device ax0
device de0
device fxp0
device mx0
diff --git a/sys/i386/i386/userconfig.c b/sys/i386/i386/userconfig.c
index a822f86..884b1cb 100644
--- a/sys/i386/i386/userconfig.c
+++ b/sys/i386/i386/userconfig.c
@@ -46,7 +46,7 @@
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
- ** $Id: userconfig.c,v 1.120 1999/01/07 09:49:28 abial Exp $
+ ** $Id: userconfig.c,v 1.121 1999/01/08 21:00:26 abial Exp $
**/
/**
@@ -392,6 +392,7 @@ static DEV_INFO device_info[] = {
{"vx", "3COM 3C590/3C595 Ethernet adapters", 0, CLS_NETWORK},
{"ze", "IBM/National Semiconductor PCMCIA Ethernet adapter",0, CLS_NETWORK},
{"zp", "3COM PCMCIA Etherlink III Ethernet adapter", 0, CLS_NETWORK},
+{"ax", "ASIC AX88140A ethernet adapter", FLG_FIXED, CLS_NETWORK},
{"de", "DEC DC21040 Ethernet adapter", FLG_FIXED, CLS_NETWORK},
{"fpa", "DEC DEFPA PCI FDDI adapter", FLG_FIXED, CLS_NETWORK},
{"rl", "RealTek 8129/8139 ethernet adapter", FLG_FIXED, CLS_NETWORK},
@@ -2515,7 +2516,7 @@ visuserconfig(void)
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: userconfig.c,v 1.120 1999/01/07 09:49:28 abial Exp $
+ * $Id: userconfig.c,v 1.121 1999/01/08 21:00:26 abial Exp $
*/
#include "scbus.h"
OpenPOWER on IntegriCloud