summaryrefslogtreecommitdiffstats
path: root/sys/modules/sis
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1999-09-05 21:01:03 +0000
committerwpaul <wpaul@FreeBSD.org>1999-09-05 21:01:03 +0000
commit3489469f10c91236e7880ef77abd48ccc435503a (patch)
tree515b7a1e3972c4b27e913b91d377578841394b49 /sys/modules/sis
parent3bf1b4473ae66ac0e7a7c053ec9c38057781a5c5 (diff)
downloadFreeBSD-src-3489469f10c91236e7880ef77abd48ccc435503a.zip
FreeBSD-src-3489469f10c91236e7880ef77abd48ccc435503a.tar.gz
This commit adds driver support for the Silicon Integrated Systems
SiS 900 and SiS 7016 PCI fast ethernet chipsets. Full manuals for the SiS chips can be found at www.sis.com.tw. This is a fairly simple chipset. The receiver uses a 128-bit multicast hash table and single perfect entry for the station address. Transmit and receive DMA and FIFO thresholds are easily tuneable. Documentation is pretty decent and performance is not bad, even on my crufty 486. This driver uses newbus and miibus and is supported on both the i386 and alpha architectures.
Diffstat (limited to 'sys/modules/sis')
-rw-r--r--sys/modules/sis/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/sys/modules/sis/Makefile b/sys/modules/sis/Makefile
new file mode 100644
index 0000000..50d8c3f
--- /dev/null
+++ b/sys/modules/sis/Makefile
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+S = ${.CURDIR}/../..
+.PATH: $S/pci
+KMOD = sis
+SRCS = if_sis.c sis.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
+SRCS += miibus_if.h
+CLEANFILES += sis.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
+CLEANFILES += miibus_if.h
+CFLAGS += ${DEBUG_FLAGS}
+
+sis.h:
+ echo "#define NSIS 1" > sis.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