summaryrefslogtreecommitdiffstats
path: root/sys/modules/ste
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1999-08-21 18:34:58 +0000
committerwpaul <wpaul@FreeBSD.org>1999-08-21 18:34:58 +0000
commitdb4fdbd041e22acdba198dd37ef7bcee12c2ac19 (patch)
treeff9ca0e10f95cee69324a33e193716046c3ecc8c /sys/modules/ste
parenta978a32098bf6ccd9c16b09e3d922613a6372e25 (diff)
downloadFreeBSD-src-db4fdbd041e22acdba198dd37ef7bcee12c2ac19.zip
FreeBSD-src-db4fdbd041e22acdba198dd37ef7bcee12c2ac19.tar.gz
This commit adds device driver support for the Sundance Technologies ST201
PCI fast ethernet controller. Currently, the only card I know that uses this chip is the D-Link DFE-550TX. (Don't ask me where to buy these: the only cards I have are samples sent to me by D-Link.) This driver is the first to make use of the miibus code once I'm sure it all works together nicely, I'll start converting the other drivers. The Sundance chip is a clone of the 3Com 3c90x Etherlink XL design only with its own register layout. Support is provided for ifmedia, hardware multicast filtering, bridging and promiscuous mode.
Diffstat (limited to 'sys/modules/ste')
-rw-r--r--sys/modules/ste/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/sys/modules/ste/Makefile b/sys/modules/ste/Makefile
new file mode 100644
index 0000000..423e2ad
--- /dev/null
+++ b/sys/modules/ste/Makefile
@@ -0,0 +1,33 @@
+# $Id: Makefile,v 1.1 1999/07/24 20:55:04 wpaul Exp $
+
+S = ${.CURDIR}/../..
+.PATH: $S/pci
+KMOD = ste
+SRCS = if_ste.c ste.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
+SRCS += miibus_if.h
+CLEANFILES += ste.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
+CLEANFILES += miibus_if.h
+CFLAGS += ${DEBUG_FLAGS}
+
+ste.h:
+ echo "#define NSTE 1" > ste.h
+
+bpf.h:
+ echo "#define NBPF 1" > bpf.h
+
+opt_bdg.h:
+ touch opt_bdg.h
+
+device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
+ perl $S/kern/makedevops.pl -h $S/kern/device_if.m
+
+bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
+ perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
+
+pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
+ perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
+
+miibus_if.h: $S/kern/makedevops.pl $S/dev/mii/miibus_if.m
+ perl $S/kern/makedevops.pl -h $S/dev/mii/miibus_if.m
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud