Date: Tue, 15 Jul 2003 04:57:24 -0700 (PDT) From: Hartmut Brandt <harti@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf NOTES files src/sys/modules Makefile src/sys/dev/patm idt77252reg.h if_patm.c if_patm_attach.c if_patm_intr.c if_patm_ioctl.c if_patm_rtables.c if_patm_rx.c if_patm_tx.c if_patmvar.h src/sys/dev/patm/genrtab Makefile ... Message-ID: <200307151157.h6FBvOxE070668@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
harti 2003/07/15 04:57:24 PDT FreeBSD src repository Modified files: sys/conf files NOTES sys/modules Makefile Added files: sys/dev/patm idt77252reg.h if_patm.c if_patm_attach.c if_patm_intr.c if_patm_ioctl.c if_patm_rtables.c if_patm_rx.c if_patm_tx.c if_patmvar.h sys/dev/patm/genrtab Makefile genrtab.c sys/modules/patm Makefile Log: This is a driver for IDT77252 based ATM interfaces. It has been tested with a ProATM-155 and an IDT evaluation board and should also work with a ProATM-25 (it seems to work at least, I cannot really measure what the card emits). The driver has been tested on i386 and sparc64, but should work an other archs also. It supports UBR, CBR, ABR and VBR; AAL0, AAL5 and AALraw. As an additional feature VCI/VPI 0/0 can be opened for receiving in AALraw mode and receives all cells not claimed by other open VCs (even cells with invalid GFC, VPI and VCI fields and OAM cells). Thanks to Christian Bucari from ProSum for lending two cards and answering my questions. Revision Changes Path 1.1163 +4 -0 src/sys/conf/NOTES 1.806 +7 -0 src/sys/conf/files 1.1 +14 -0 src/sys/dev/patm/genrtab/Makefile (new) 1.1 +458 -0 src/sys/dev/patm/genrtab/genrtab.c (new) 1.1 +476 -0 src/sys/dev/patm/idt77252reg.h (new) 1.1 +499 -0 src/sys/dev/patm/if_patm.c (new) 1.1 +1067 -0 src/sys/dev/patm/if_patm_attach.c (new) 1.1 +552 -0 src/sys/dev/patm/if_patm_intr.c (new) 1.1 +450 -0 src/sys/dev/patm/if_patm_ioctl.c (new) 1.1 +9079 -0 src/sys/dev/patm/if_patm_rtables.c (new) 1.1 +529 -0 src/sys/dev/patm/if_patm_rx.c (new) 1.1 +1273 -0 src/sys/dev/patm/if_patm_tx.c (new) 1.1 +517 -0 src/sys/dev/patm/if_patmvar.h (new) 1.340 +1 -0 src/sys/modules/Makefile 1.1 +22 -0 src/sys/modules/patm/Makefile (new)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200307151157.h6FBvOxE070668>