e5a9fd5435
the Davicom DM9100 and DM9102 chipsets, including the Jaton Corporation XPressNet. Datasheet is available from www.davicom8.com. The DM910x chips are still more tulip clones. The API is reproduced pretty faithfully, unfortunately the performance is pretty bad. The transmitter seems to have a lot of problems DMAing multi-fragment packets. The only way to make it work reliably is to coalesce transmitted packets into a single contiguous buffer. The Linux driver (written by Davicom) actually does something similar to this. I can't recomment this NIC as anything more than a "connectivity solution." This driver uses newbus and miibus and is supported on both i386 and alpha platforms.
16 lines
462 B
Makefile
16 lines
462 B
Makefile
# $FreeBSD$
|
|
|
|
# XXX present but broken: atapi ip_mroute_mod joy pcic
|
|
|
|
SUBDIR= ax ccd cd9660 coda dm fdesc fxp if_disc if_ppp if_sl if_tun ipfw \
|
|
kernfs mfs mii msdos mx nfs ntfs nullfs pn portal procfs sf \
|
|
sis sk ste ti tl umapfs union vn vr wb xl
|
|
|
|
# XXX some of these can move to the general case when de-i386'ed
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=bktr coff fpu gnufpu ibcs2 linux splash streams \
|
|
svr4 syscons vesa vinum
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|