From 0d78becf4af9282a5db1755207cdcbd574978b82 Mon Sep 17 00:00:00 2001 From: harti Date: Tue, 15 Jul 2003 11:57:24 +0000 Subject: 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. --- sys/modules/patm/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sys/modules/patm/Makefile (limited to 'sys/modules/patm/Makefile') diff --git a/sys/modules/patm/Makefile b/sys/modules/patm/Makefile new file mode 100644 index 0000000..7310c20 --- /dev/null +++ b/sys/modules/patm/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ +# +# Author: Harti Brandt +# +.PATH: ${.CURDIR}/../../dev/patm + +KMOD= if_patm +SRCS= if_patm.c if_patm_attach.c if_patm_ioctl.c if_patm_intr.c \ + if_patm_tx.c if_patm_rx.c if_patm_rtables.c \ + device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h + +CFLAGS+= -DENABLE_BPF +# CFLAGS+= -DPATM_DEBUG=0x0 -DINVARIANT_SUPPORT -DINVARIANTS -g -DDIAGNOSTIC +# LDFLAGS+= -g + +opt_inet.h: + echo "#define INET 1" > opt_inet.h + +opt_natm.h: + echo "#define NATM 1" > opt_natm.h + +.include -- cgit v1.1