1 /* $NetBSD: midway.c,v 1.87 2009/03/15 15:52:12 cegger Exp $ */
2 /* (sync'd to midway.c 1.68) */
6 * Copyright (c) 1996 Charles D. Cranor and Washington University.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by Charles D. Cranor and
20 * Washington University.
21 * 4. The name of the author may not be used to endorse or promote products
22 * derived from this software without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 * m i d w a y . c e n i 1 5 5 d r i v e r
40 * author: Chuck Cranor <chuck@ccrc.wustl.edu>
41 * started: spring, 1996 (written from scratch).
43 * notes from the author:
44 * Extra special thanks go to Werner Almesberger, EPFL LRC. Werner's
45 * ENI driver was especially useful in figuring out how this card works.
46 * I would also like to thank Werner for promptly answering email and being
50 * 1997/12/02, major update on 1999/04/06 kjc
52 * - BPF support (link type is DLT_ATM_RFC1483)
53 * BPF understands only LLC/SNAP!! (because bpf can't
54 * handle variable link header length.)
55 * (bpfwrite should work if atm_pseudohdr and LLC/SNAP are prepended.)
56 * - support vc shaping
57 * - integrate IPv6 support.
58 * - support pvc sub interface
60 * initial work on per-pvc-interface for ipv6 was done
61 * by Katsushi Kobayashi <ikob@cc.uec.ac.jp> of the WIDE Project.
62 * some of the extensions for pvc subinterfaces are merged from
63 * the CAIRN project written by Suresh Bhogavilli (suresh@isi.edu).
66 * - remove WMAYBE related code. ENI WMAYBE DMA doesn't work.
67 * - remove updating if_lastchange for every packet.
70 #include <sys/cdefs.h>
71 __KERNEL_RCSID(0, "$NetBSD: midway.c,v 1.87 2009/03/15 15:52:12 cegger Exp $");
76 #undef EN_DEBUG_RANGE /* check ranges on en_read/en_write's? */
77 #define EN_MBUF_OPT /* try and put more stuff in mbuf? */
81 #define EN_DMA 1 /* use DMA? */
83 #define EN_NOTXDMA 0 /* hook to disable tx DMA only */
84 #define EN_NORXDMA 0 /* hook to disable rx DMA only */
85 #define EN_NOWMAYBE 1 /* hook to disable word maybe DMA */
86 /* XXX: WMAYBE doesn't work, needs debugging */
87 #define EN_DDBHOOK 1 /* compile in ddb functions */
88 #if defined(MIDWAY_ADPONLY)
89 #define EN_ENIDMAFIX 0 /* no ENI cards to worry about */
91 #define EN_ENIDMAFIX 1 /* avoid byte DMA on the ENI card (see below) */
95 * note on EN_ENIDMAFIX: the byte aligner on the ENI version of the card
96 * appears to be broken. it works just fine if there is no load... however
97 * when the card is loaded the data get corrupted. to see this, one only
98 * has to use "telnet" over ATM. do the following command in "telnet":
99 * cat /usr/share/misc/termcap
100 * "telnet" seems to generate lots of 1023 byte mbufs (which make great
101 * use of the byte aligner). watch "netstat -s" for checksum errors.
103 * I further tested this by adding a function that compared the transmit
104 * data on the card's SRAM with the data in the mbuf chain _after_ the
105 * "transmit DMA complete" interrupt. using the "telnet" test I got data
106 * mismatches where the byte-aligned data should have been. using ddb
107 * and en_dumpmem() I verified that the DTQs fed into the card were
108 * absolutely correct. thus, we are forced to concluded that the ENI
109 * hardware is buggy. note that the Adaptec version of the card works
110 * just fine with byte DMA.
112 * bottom line: we set EN_ENIDMAFIX to 1 to avoid byte DMAs on the ENI
116 #if defined(DIAGNOSTIC) && !defined(EN_DIAG)
117 #define EN_DIAG /* link in with master DIAG option */
120 #define EN_COUNT(X) (X)++
122 #define EN_COUNT(X) /* nothing */
128 #define STATIC /* nothing */
129 #define INLINE /* nothing */
131 #define STATIC static
132 #define INLINE inline
133 #endif /* EN_DEBUG */
141 #include "opt_inet.h"
143 #define snprintb((q), (f), "%b", q,f,b,l) snprintf((b), (l))
146 #if NEN > 0 || !defined(__FreeBSD__)
148 #include <sys/param.h>
149 #include <sys/systm.h>
150 #if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
151 #include <sys/device.h>
153 #if defined(__FreeBSD__)
154 #include <sys/sockio.h>
156 #include <sys/ioctl.h>
158 #include <sys/mbuf.h>
159 #include <sys/socket.h>
160 #include <sys/socketvar.h>
161 #include <sys/queue.h>
162 #include <sys/proc.h>
163 #include <sys/kauth.h>
166 #include <net/if_ether.h>
167 #include <net/if_atm.h>
170 #include <uvm/uvm_extern.h>
175 #if defined(INET) || defined(INET6)
176 #include <netinet/in.h>
177 #include <netinet/if_atm.h>
179 #include <netinet6/in6_var.h>
184 #if !(defined(INET) || defined(INET6))
185 #include <netinet/in.h>
187 #include <netnatm/natm.h>
191 #if !defined(__FreeBSD__)
196 #if defined(__NetBSD__) || defined(__OpenBSD__)
197 #include <dev/ic/midwayreg.h>
198 #include <dev/ic/midwayvar.h>
199 #if defined(__alpha__)
200 /* XXX XXX NEED REAL DMA MAPPING SUPPORT XXX XXX */
202 #define vtophys(va) alpha_XXX_dmamap((vaddr_t)(va))
204 #elif defined(__FreeBSD__)
205 #include <machine/cpufunc.h> /* for rdtsc proto for clock.h below */
206 #include <machine/clock.h> /* for DELAY */
207 #include <dev/en/midwayreg.h>
208 #include <dev/en/midwayvar.h>
209 #include <vm/pmap.h> /* for vtophys proto */
212 * 2.1.x does not have if_softc. detect this by seeing if IFF_NOTRAILERS
213 * is defined, as per kjc.
215 #ifdef IFF_NOTRAILERS
216 #define MISSING_IF_SOFTC
218 #define IFF_NOTRAILERS 0
221 #endif /* __FreeBSD__ */
225 /* this is for for __KAME__ */
226 # include <netinet/in.h>
228 # if defined (__KAME__) && defined(INET6)
229 # include <netinet6/in6_ifattach.h>
231 #endif /*ATM_PVCEXT*/
233 #include "bpfilter.h"
237 #define BPFATTACH(ifp, dlt, hlen) bpfattach((ifp), (dlt), (hlen))
238 #define BPF_MTAP(ifp, m) bpf_mtap((ifp), (m))
240 #define BPFATTACH(ifp, dlt, hlen) bpfattach(&(ifp)->if_bpf, (ifp), (dlt), (hlen))
241 #define BPF_MTAP(ifp, m) bpf_mtap((ifp)->if_bpf, (m))
243 #endif /* NBPFILTER > 0 */
250 #define EN_TXHIWAT (64*1024) /* max 64 KB waiting to be DMAd out */
254 #define EN_MINDMA 32 /* don't DMA anything less than this (bytes) */
257 #define RX_NONE 0xffff /* recv VC not in use */
259 #define EN_OBHDR ATM_PH_DRIVER7 /* TBD in first mbuf ! */
260 #define EN_OBTRL ATM_PH_DRIVER8 /* PDU trailer in last mbuf ! */
262 #define ENOTHER_FREE 0x01 /* free rxslot */
263 #define ENOTHER_DRAIN 0x02 /* almost free (drain DRQ DMA) */
264 #define ENOTHER_RAW 0x04 /* 'raw' access (aka boodi mode) */
265 #define ENOTHER_SWSL 0x08 /* in software service list */
267 int en_dma
= EN_DMA
; /* use DMA (switch off for dbg) */
270 * autoconfig attachments
273 extern struct cfdriver en_cd
;
280 * params to en_txlaunch() function
284 u_int32_t tbd1
; /* TBD 1 */
285 u_int32_t tbd2
; /* TBD 2 */
286 u_int32_t pdu1
; /* PDU 1 (aal5) */
287 int nodma
; /* don't use DMA */
288 int need
; /* total space we need (pad out if less data) */
289 int mlen
; /* length of mbuf (for dtq) */
290 struct mbuf
*t
; /* data */
291 u_int32_t aal
; /* aal code */
292 u_int32_t atm_vci
; /* vci */
293 u_int8_t atm_flags
; /* flags */
298 * DMA table (index by # of words)
301 * plan B: avoid WMAYBE
305 u_int8_t bcode
; /* code */
306 u_int8_t divshift
; /* byte divisor */
309 static struct en_dmatab en_dma_planA
[] = {
310 { 0, 0 }, /* 0 */ { MIDDMA_WORD
, 2 }, /* 1 */
311 { MIDDMA_2WORD
, 3}, /* 2 */ { MIDDMA_4WMAYBE
, 2}, /* 3 */
312 { MIDDMA_4WORD
, 4}, /* 4 */ { MIDDMA_8WMAYBE
, 2}, /* 5 */
313 { MIDDMA_8WMAYBE
, 2}, /* 6 */ { MIDDMA_8WMAYBE
, 2}, /* 7 */
314 { MIDDMA_8WORD
, 5}, /* 8 */ { MIDDMA_16WMAYBE
, 2}, /* 9 */
315 { MIDDMA_16WMAYBE
,2}, /* 10 */ { MIDDMA_16WMAYBE
, 2}, /* 11 */
316 { MIDDMA_16WMAYBE
,2}, /* 12 */ { MIDDMA_16WMAYBE
, 2}, /* 13 */
317 { MIDDMA_16WMAYBE
,2}, /* 14 */ { MIDDMA_16WMAYBE
, 2}, /* 15 */
318 { MIDDMA_16WORD
, 6}, /* 16 */
321 static struct en_dmatab en_dma_planB
[] = {
322 { 0, 0 }, /* 0 */ { MIDDMA_WORD
, 2}, /* 1 */
323 { MIDDMA_2WORD
, 3}, /* 2 */ { MIDDMA_WORD
, 2}, /* 3 */
324 { MIDDMA_4WORD
, 4}, /* 4 */ { MIDDMA_WORD
, 2}, /* 5 */
325 { MIDDMA_2WORD
, 3}, /* 6 */ { MIDDMA_WORD
, 2}, /* 7 */
326 { MIDDMA_8WORD
, 5}, /* 8 */ { MIDDMA_WORD
, 2}, /* 9 */
327 { MIDDMA_2WORD
, 3}, /* 10 */ { MIDDMA_WORD
, 2}, /* 11 */
328 { MIDDMA_4WORD
, 4}, /* 12 */ { MIDDMA_WORD
, 2}, /* 13 */
329 { MIDDMA_2WORD
, 3}, /* 14 */ { MIDDMA_WORD
, 2}, /* 15 */
330 { MIDDMA_16WORD
, 6}, /* 16 */
333 static struct en_dmatab
*en_dmaplan
= en_dma_planA
;
339 STATIC INLINE
int en_b2sz(int) __unused
;
341 int en_dump(int,int);
342 int en_dumpmem(int,int,int);
344 STATIC
void en_dmaprobe(struct en_softc
*);
345 STATIC
int en_dmaprobe_doit(struct en_softc
*, u_int8_t
*,
347 STATIC INLINE
int en_dqneed(struct en_softc
*, void *, u_int
,
349 STATIC
void en_init(struct en_softc
*);
350 STATIC
int en_ioctl(struct ifnet
*, EN_IOCTL_CMDT
, void *);
351 STATIC INLINE
int en_k2sz(int) __unused
;
352 STATIC
void en_loadvc(struct en_softc
*, int);
353 STATIC
int en_mfix(struct en_softc
*, struct mbuf
**,
355 STATIC INLINE
struct mbuf
*en_mget(struct en_softc
*, u_int
,
357 STATIC INLINE u_int32_t
en_read(struct en_softc
*,
359 STATIC
int en_rxctl(struct en_softc
*, struct atm_pseudoioctl
*, int);
360 STATIC
void en_txdma(struct en_softc
*, int);
361 STATIC
void en_txlaunch(struct en_softc
*, int, struct en_launch
*);
362 STATIC
void en_service(struct en_softc
*);
363 STATIC
void en_start(struct ifnet
*);
364 STATIC INLINE
int en_sz2b(int) __unused
;
365 STATIC INLINE
void en_write(struct en_softc
*, u_int32_t
,
369 static void rrp_add(struct en_softc
*, struct ifnet
*);
370 static struct ifnet
*en_pvcattach(struct ifnet
*);
371 static int en_txctl(struct en_softc
*, int, int, int);
372 static int en_pvctx(struct en_softc
*, struct pvctxreq
*);
373 static int en_pvctxget(struct en_softc
*, struct pvctxreq
*);
374 static int en_pcr2txspeed(int);
375 static int en_txspeed2pcr(int);
376 static struct ifnet
*en_vci2ifp(struct en_softc
*, int);
384 * raw read/write macros
387 #define EN_READDAT(SC,R) en_read(SC,R)
388 #define EN_WRITEDAT(SC,R,V) en_write(SC,R,V)
391 * cooked read/write macros
394 #define EN_READ(SC,R) ntohl(en_read(SC,R))
395 #define EN_WRITE(SC,R,V) en_write(SC,R, htonl(V))
397 #define EN_WRAPADD(START,STOP,CUR,VAL) { \
398 (CUR) = (CUR) + (VAL); \
399 if ((CUR) >= (STOP)) \
400 (CUR) = (START) + ((CUR) - (STOP)); \
403 #define WORD_IDX(START, X) (((X) - (START)) / sizeof(u_int32_t))
405 /* we store sc->dtq and sc->drq data in the following format... */
406 #define EN_DQ_MK(SLOT,LEN) (((SLOT) << 20)|(LEN)|(0x80000))
407 /* the 0x80000 ensures we != 0 */
408 #define EN_DQ_SLOT(X) ((X) >> 20)
409 #define EN_DQ_LEN(X) ((X) & 0x3ffff)
411 /* format of DTQ/DRQ word 1 differs between ENI and ADP */
412 #if defined(MIDWAY_ENIONLY)
414 #define MID_MK_TXQ(SC,CNT,CHAN,END,BCODE) \
415 EN_WRITE((SC), (SC)->dtq_us, \
416 MID_MK_TXQ_ENI((CNT), (CHAN), (END), (BCODE)));
418 #define MID_MK_RXQ(SC,CNT,VCI,END,BCODE) \
419 EN_WRITE((SC), (SC)->drq_us, \
420 MID_MK_RXQ_ENI((CNT), (VCI), (END), (BCODE)));
422 #elif defined(MIDWAY_ADPONLY)
424 #define MID_MK_TXQ(SC,CNT,CHAN,END,JK) \
425 EN_WRITE((SC), (SC)->dtq_us, \
426 MID_MK_TXQ_ADP((CNT), (CHAN), (END), (JK)));
428 #define MID_MK_RXQ(SC,CNT,VCI,END,JK) \
429 EN_WRITE((SC), (SC)->drq_us, \
430 MID_MK_RXQ_ADP((CNT), (VCI), (END), (JK)));
434 #define MID_MK_TXQ(SC,CNT,CHAN,END,JK_OR_BCODE) { \
435 if ((SC)->is_adaptec) \
436 EN_WRITE((SC), (SC)->dtq_us, \
437 MID_MK_TXQ_ADP((CNT), (CHAN), (END), (JK_OR_BCODE))); \
439 EN_WRITE((SC), (SC)->dtq_us, \
440 MID_MK_TXQ_ENI((CNT), (CHAN), (END), (JK_OR_BCODE))); \
443 #define MID_MK_RXQ(SC,CNT,VCI,END,JK_OR_BCODE) { \
444 if ((SC)->is_adaptec) \
445 EN_WRITE((SC), (SC)->drq_us, \
446 MID_MK_RXQ_ADP((CNT), (VCI), (END), (JK_OR_BCODE))); \
448 EN_WRITE((SC), (SC)->drq_us, \
449 MID_MK_RXQ_ENI((CNT), (VCI), (END), (JK_OR_BCODE))); \
454 /* add an item to the DTQ */
455 #define EN_DTQADD(SC,CNT,CHAN,JK_OR_BCODE,ADDR,LEN,END) { \
457 (SC)->dtq[MID_DTQ_A2REG((SC)->dtq_us)] = EN_DQ_MK(CHAN,LEN); \
458 MID_MK_TXQ(SC,CNT,CHAN,END,JK_OR_BCODE); \
460 EN_WRITE((SC), (SC)->dtq_us, (ADDR)); \
461 EN_WRAPADD(MID_DTQOFF, MID_DTQEND, (SC)->dtq_us, 4); \
464 EN_WRITE((SC), MID_DMA_WRTX, MID_DTQ_A2REG((SC)->dtq_us)); \
468 #define EN_DRQADD(SC,CNT,VCI,JK_OR_BCODE,ADDR,LEN,SLOT,END) { \
470 (SC)->drq[MID_DRQ_A2REG((SC)->drq_us)] = EN_DQ_MK(SLOT,LEN); \
471 MID_MK_RXQ(SC,CNT,VCI,END,JK_OR_BCODE); \
473 EN_WRITE((SC), (SC)->drq_us, (ADDR)); \
474 EN_WRAPADD(MID_DRQOFF, MID_DRQEND, (SC)->drq_us, 4); \
477 EN_WRITE((SC), MID_DMA_WRRX, MID_DRQ_A2REG((SC)->drq_us)); \
483 * the code is arranged in a specific way:
484 * [1] short/inline functions
485 * [2] autoconfig stuff
487 * [4] reset -> init -> transmit -> intr -> receive functions
491 /***********************************************************************/
494 * en_read: read a word from the card. this is the only function
495 * that reads from the card.
498 STATIC INLINE u_int32_t
en_read(struct en_softc
*sc
, uint32_t r
)
501 #ifdef EN_DEBUG_RANGE
502 if (r
> MID_MAXOFF
|| (r
% 4))
503 panic("en_read out of range, r=0x%x", r
);
506 return(bus_space_read_4(sc
->en_memt
, sc
->en_base
, r
));
510 * en_write: write a word to the card. this is the only function that
511 * writes to the card.
514 STATIC INLINE
void en_write(struct en_softc
*sc
, uint32_t r
, uint32_t v
)
516 #ifdef EN_DEBUG_RANGE
517 if (r
> MID_MAXOFF
|| (r
% 4))
518 panic("en_write out of range, r=0x%x", r
);
521 bus_space_write_4(sc
->en_memt
, sc
->en_base
, r
, v
);
525 * en_k2sz: convert KBytes to a size parameter (a log2)
528 STATIC INLINE
int en_k2sz(int k
)
539 default: panic("en_k2sz");
543 #define en_log2(X) en_k2sz(X)
547 * en_b2sz: convert a DMA burst code to its byte size
550 STATIC INLINE
int en_b2sz(int b
)
553 case MIDDMA_WORD
: return(1*4);
555 case MIDDMA_2WORD
: return(2*4);
557 case MIDDMA_4WORD
: return(4*4);
559 case MIDDMA_8WORD
: return(8*4);
560 case MIDDMA_16WMAYBE
:
561 case MIDDMA_16WORD
: return(16*4);
562 default: panic("en_b2sz");
569 * en_sz2b: convert a burst size (bytes) to DMA burst code
572 STATIC INLINE
int en_sz2b(int sz
)
575 case 1*4: return(MIDDMA_WORD
);
576 case 2*4: return(MIDDMA_2WORD
);
577 case 4*4: return(MIDDMA_4WORD
);
578 case 8*4: return(MIDDMA_8WORD
);
579 case 16*4: return(MIDDMA_16WORD
);
580 default: panic("en_sz2b");
587 * en_dqneed: calculate number of DTQ/DRQ's needed for a buffer
590 STATIC INLINE
int en_dqneed(struct en_softc
*sc
, void *data
, u_int len
, u_int tx
)
592 int result
, needalign
, sz
;
594 #if !defined(MIDWAY_ENIONLY)
595 #if !defined(MIDWAY_ADPONLY)
597 #endif /* !MIDWAY_ADPONLY */
598 return(1); /* adaptec can DMA anything in one go */
601 #if !defined(MIDWAY_ADPONLY)
603 if (len
< EN_MINDMA
) {
604 if (!tx
) /* XXX: conservative */
605 return(1); /* will copy/DMA_JK */
608 if (tx
) { /* byte burst? */
609 needalign
= (((unsigned long) data
) % sizeof(u_int32_t
));
612 sz
= min(len
, sizeof(u_int32_t
) - needalign
);
614 data
= (char *)data
+ sz
;
618 if (sc
->alburst
&& len
) {
619 needalign
= (((unsigned long) data
) & sc
->bestburstmask
);
621 result
++; /* alburst */
622 sz
= min(len
, sc
->bestburstlen
- needalign
);
627 if (len
>= sc
->bestburstlen
) {
628 sz
= len
/ sc
->bestburstlen
;
629 sz
= sz
* sc
->bestburstlen
;
631 result
++; /* best shot */
635 result
++; /* clean up */
636 if (tx
&& (len
% sizeof(u_int32_t
)) != 0)
637 result
++; /* byte cleanup */
641 #endif /* !MIDWAY_ADPONLY */
646 * en_mget: get an mbuf chain that can hold totlen bytes and return it
647 * (for recv) [based on am7990_get from if_le and ieget from if_ie]
648 * after this call the sum of all the m_len's in the chain will be totlen.
651 STATIC INLINE
struct mbuf
*en_mget(struct en_softc
*sc
, u_int totlen
, u_int
*drqneed
)
654 struct mbuf
*top
, **mp
;
657 MGETHDR(m
, M_DONTWAIT
, MT_DATA
);
660 m
->m_pkthdr
.rcvif
= &sc
->enif
;
661 m
->m_pkthdr
.len
= totlen
;
666 /* if (top != NULL) then we've already got 1 mbuf on the chain */
669 MGET(m
, M_DONTWAIT
, MT_DATA
);
672 return(NULL
); /* out of mbufs */
676 if (totlen
>= MINCLSIZE
) {
677 MCLGET(m
, M_DONTWAIT
);
678 if ((m
->m_flags
& M_EXT
) == 0) {
681 return(NULL
); /* out of mbuf clusters */
685 m
->m_len
= min(totlen
, m
->m_len
);
690 *drqneed
+= en_dqneed(sc
, m
->m_data
, m
->m_len
, 0);
696 /***********************************************************************/
702 void en_attach(struct en_softc
*sc
)
704 struct ifnet
*ifp
= &sc
->enif
;
706 u_int32_t reg
, lcv
, check
, ptr
, sav
, midvloc
;
709 * probe card to determine memory size. the stupid ENI card always
710 * reports to PCI that it needs 4MB of space (2MB regs and 2MB RAM).
711 * if it has less than 2MB RAM the addresses wrap in the RAM address space.
712 * (i.e. on a 512KB card addresses 0x3ffffc, 0x37fffc, and 0x2ffffc
713 * are aliases for 0x27fffc [note that RAM starts at offset 0x200000]).
718 EN_WRITE(sc
, MID_RESID
, 0x0); /* reset card before touching RAM */
719 for (lcv
= MID_PROBEOFF
; lcv
<= MID_MAXOFF
; lcv
+= MID_PROBSIZE
) {
720 EN_WRITE(sc
, lcv
, lcv
); /* data[address] = address */
721 for (check
= MID_PROBEOFF
; check
< lcv
; check
+= MID_PROBSIZE
) {
722 reg
= EN_READ(sc
, check
);
723 if (reg
!= check
) { /* found an alias! */
724 goto done_probe
; /* and quit */
729 lcv
-= MID_PROBSIZE
; /* take one step back */
730 sc
->en_obmemsz
= (lcv
+ 4) - MID_RAMOFF
;
733 * determine the largest DMA burst supported
744 EN_WRITE(sc
, MID_RESID
, 0x0); /* reset */
745 for (lcv
= MID_RAMOFF
; lcv
< MID_RAMOFF
+ sc
->en_obmemsz
; lcv
+= 4)
746 EN_WRITE(sc
, lcv
, 0); /* zero memory */
748 reg
= EN_READ(sc
, MID_RESID
);
750 aprint_normal_dev(&sc
->sc_dev
,
751 "ATM midway v%d, board IDs %d.%d, %s%s%s, %ldKB on-board RAM\n",
752 MID_VER(reg
), MID_MID(reg
), MID_DID(reg
),
753 (MID_IS_SABRE(reg
)) ? "sabre controller, " : "",
754 (MID_IS_SUNI(reg
)) ? "SUNI" : "Utopia",
755 (!MID_IS_SUNI(reg
) && MID_IS_UPIPE(reg
)) ? " (pipelined)" : "",
756 (u_long
)sc
->en_obmemsz
/ 1024);
758 if (sc
->is_adaptec
) {
759 if (sc
->bestburstlen
== 64 && sc
->alburst
== 0)
760 aprint_normal_dev(&sc
->sc_dev
, "passed 64 byte DMA test\n");
762 aprint_error_dev(&sc
->sc_dev
, "FAILED DMA TEST: burst=%d, alburst=%d\n",
763 sc
->bestburstlen
, sc
->alburst
);
765 aprint_normal_dev(&sc
->sc_dev
, "maximum DMA burst length = %d bytes%s\n",
766 sc
->bestburstlen
, (sc
->alburst
) ? " (must align)" : "");
769 #if 0 /* WMAYBE doesn't work, don't complain about it */
770 /* check if en_dmaprobe disabled wmaybe */
771 if (en_dmaplan
== en_dma_planB
)
772 aprint_normal_dev(&sc
->sc_dev
, "note: WMAYBE DMA has been disabled\n");
776 * link into network subsystem and prepare card
779 #if defined(__NetBSD__) || defined(__OpenBSD__)
780 strlcpy(sc
->enif
.if_xname
, device_xname(&sc
->sc_dev
), IFNAMSIZ
);
782 #if !defined(MISSING_IF_SOFTC)
783 sc
->enif
.if_softc
= sc
;
785 ifp
->if_flags
= IFF_SIMPLEX
|IFF_NOTRAILERS
;
786 ifp
->if_ioctl
= en_ioctl
;
787 ifp
->if_output
= atm_output
;
788 ifp
->if_start
= en_start
;
789 IFQ_SET_READY(&ifp
->if_snd
);
795 for (lcv
= 0 ; lcv
< MID_N_VC
; lcv
++) {
796 sc
->rxvc2slot
[lcv
] = RX_NONE
;
797 sc
->txspeed
[lcv
] = 0; /* full */
798 sc
->txvc2slot
[lcv
] = 0; /* full speed == slot 0 */
801 sz
= sc
->en_obmemsz
- (MID_BUFOFF
- MID_RAMOFF
);
802 ptr
= sav
= MID_BUFOFF
;
803 ptr
= roundup(ptr
, EN_TXSZ
* 1024); /* align */
804 sz
= sz
- (ptr
- sav
);
805 if (EN_TXSZ
*1024 * EN_NTX
> sz
) {
806 aprint_error_dev(&sc
->sc_dev
, "EN_NTX/EN_TXSZ too big\n");
809 for (lcv
= 0 ; lcv
< EN_NTX
; lcv
++) {
810 sc
->txslot
[lcv
].mbsize
= 0;
811 sc
->txslot
[lcv
].start
= ptr
;
812 ptr
+= (EN_TXSZ
* 1024);
813 sz
-= (EN_TXSZ
* 1024);
814 sc
->txslot
[lcv
].stop
= ptr
;
815 sc
->txslot
[lcv
].nref
= 0;
819 memset(&sc
->txslot
[lcv
].indma
, 0, sizeof(sc
->txslot
[lcv
].indma
));
820 memset(&sc
->txslot
[lcv
].q
, 0, sizeof(sc
->txslot
[lcv
].q
));
822 aprint_debug_dev(&sc
->sc_dev
, "tx%d: start 0x%x, stop 0x%x\n", lcv
,
823 sc
->txslot
[lcv
].start
, sc
->txslot
[lcv
].stop
);
828 ptr
= roundup(ptr
, EN_RXSZ
* 1024); /* align */
829 sz
= sz
- (ptr
- sav
);
830 sc
->en_nrx
= sz
/ (EN_RXSZ
* 1024);
831 if (sc
->en_nrx
<= 0) {
832 aprint_error_dev(&sc
->sc_dev
, "EN_NTX/EN_TXSZ/EN_RXSZ too big\n");
837 * ensure that there is always one VC slot on the service list free
838 * so that we can tell the difference between a full and empty list.
840 if (sc
->en_nrx
>= MID_N_VC
)
841 sc
->en_nrx
= MID_N_VC
- 1;
843 for (lcv
= 0 ; lcv
< sc
->en_nrx
; lcv
++) {
844 sc
->rxslot
[lcv
].rxhand
= NULL
;
845 sc
->rxslot
[lcv
].oth_flags
= ENOTHER_FREE
;
846 memset(&sc
->rxslot
[lcv
].indma
, 0, sizeof(sc
->rxslot
[lcv
].indma
));
847 memset(&sc
->rxslot
[lcv
].q
, 0, sizeof(sc
->rxslot
[lcv
].q
));
848 midvloc
= sc
->rxslot
[lcv
].start
= ptr
;
849 ptr
+= (EN_RXSZ
* 1024);
850 sz
-= (EN_RXSZ
* 1024);
851 sc
->rxslot
[lcv
].stop
= ptr
;
852 midvloc
= midvloc
- MID_RAMOFF
;
853 midvloc
= (midvloc
& ~((EN_RXSZ
*1024) - 1)) >> 2; /* mask, cvt to words */
854 midvloc
= midvloc
>> MIDV_LOCTOPSHFT
; /* we only want the top 11 bits */
855 midvloc
= (midvloc
& MIDV_LOCMASK
) << MIDV_LOCSHIFT
;
856 sc
->rxslot
[lcv
].mode
= midvloc
|
857 (en_k2sz(EN_RXSZ
) << MIDV_SZSHIFT
) | MIDV_TRASH
;
860 aprint_debug_dev(&sc
->sc_dev
, "rx%d: start 0x%x, stop 0x%x, mode 0x%x\n",
861 lcv
, sc
->rxslot
[lcv
].start
, sc
->rxslot
[lcv
].stop
, sc
->rxslot
[lcv
].mode
);
866 sc
->vtrash
= sc
->otrash
= sc
->mfix
= sc
->txmbovr
= sc
->dmaovr
= 0;
867 sc
->txoutspace
= sc
->txdtqout
= sc
->launch
= sc
->lheader
= sc
->ltail
= 0;
868 sc
->hwpull
= sc
->swadd
= sc
->rxqnotus
= sc
->rxqus
= sc
->rxoutboth
= 0;
869 sc
->rxdrqout
= sc
->ttrash
= sc
->rxmbufout
= sc
->mfixfail
= 0;
870 sc
->headbyte
= sc
->tailbyte
= sc
->tailflush
= 0;
872 sc
->need_drqs
= sc
->need_dtqs
= 0;
874 aprint_normal_dev(&sc
->sc_dev
,
875 "%d %dKB receive buffers, %d %dKB transmit buffers allocated\n",
876 sc
->en_nrx
, EN_RXSZ
, EN_NTX
, EN_TXSZ
);
878 aprint_normal_dev(&sc
->sc_dev
, "End Station Identifier (mac address) %s\n",
879 ether_sprintf(sc
->macaddr
));
895 * en_dmaprobe: helper function for en_attach.
897 * see how the card handles DMA by running a few DMA tests. we need
898 * to figure out the largest number of bytes we can DMA in one burst
899 * ("bestburstlen"), and if the starting address for a burst needs to
900 * be aligned on any sort of boundary or not ("alburst").
903 * sparc1: bestburstlen=4, alburst=0 (ick, broken DMA!)
904 * sparc2: bestburstlen=64, alburst=1
905 * p166: bestburstlen=64, alburst=0
908 STATIC
void en_dmaprobe(struct en_softc
*sc
)
910 u_int32_t srcbuf
[64], dstbuf
[64];
912 int bestalgn
, bestnotalgn
, lcv
, try, fail
;
916 sp
= (u_int8_t
*) srcbuf
;
917 while ((((unsigned long) sp
) % MIDDMA_MAXBURST
) != 0)
919 dp
= (u_int8_t
*) dstbuf
;
920 while ((((unsigned long) dp
) % MIDDMA_MAXBURST
) != 0)
923 bestalgn
= bestnotalgn
= en_dmaprobe_doit(sc
, sp
, dp
, 0);
925 for (lcv
= 4 ; lcv
< MIDDMA_MAXBURST
; lcv
+= 4) {
926 try = en_dmaprobe_doit(sc
, sp
+lcv
, dp
+lcv
, 0);
927 if (try < bestnotalgn
)
931 if (bestalgn
!= bestnotalgn
) /* need bursts aligned */
934 sc
->bestburstlen
= bestalgn
;
935 sc
->bestburstshift
= en_log2(bestalgn
);
936 sc
->bestburstmask
= sc
->bestburstlen
- 1; /* must be power of 2 */
937 sc
->bestburstcode
= en_sz2b(bestalgn
);
939 if (sc
->bestburstlen
<= 2*sizeof(u_int32_t
))
940 return; /* won't be using WMAYBE */
943 * adaptec does not have (or need) wmaybe. do not bother testing
946 if (sc
->is_adaptec
) {
947 /* XXX, actually don't need a DMA plan: adaptec is smarter than that */
948 en_dmaplan
= en_dma_planB
;
953 * test that WMAYBE DMA works like we think it should
954 * (i.e. no alignment restrictions on host address other than alburst)
957 try = sc
->bestburstlen
- 4;
959 fail
+= en_dmaprobe_doit(sc
, sp
, dp
, try);
960 for (lcv
= 4 ; lcv
< sc
->bestburstlen
; lcv
+= 4) {
961 fail
+= en_dmaprobe_doit(sc
, sp
+lcv
, dp
+lcv
, try);
965 if (EN_NOWMAYBE
|| fail
) {
967 aprint_error_dev(&sc
->sc_dev
, "WARNING: WMAYBE DMA test failed %d time(s)\n",
969 en_dmaplan
= en_dma_planB
; /* fall back to plan B */
976 * en_dmaprobe_doit: do actual testing
980 en_dmaprobe_doit(struct en_softc
*sc
, uint8_t *sp
, uint8_t *dp
, int wmtry
)
982 int lcv
, retval
= 4, cnt
, count
;
983 u_int32_t reg
, bcode
, midvloc
;
986 * set up a 1k buffer at MID_BUFOFF
991 EN_WRITE(sc
, MID_RESID
, 0x0); /* reset card before touching RAM */
993 midvloc
= ((MID_BUFOFF
- MID_RAMOFF
) / sizeof(u_int32_t
)) >> MIDV_LOCTOPSHFT
;
994 EN_WRITE(sc
, MIDX_PLACE(0), MIDX_MKPLACE(en_k2sz(1), midvloc
));
995 EN_WRITE(sc
, MID_VC(0), (midvloc
<< MIDV_LOCSHIFT
)
996 | (en_k2sz(1) << MIDV_SZSHIFT
) | MIDV_TRASH
);
997 EN_WRITE(sc
, MID_DST_RP(0), 0);
998 EN_WRITE(sc
, MID_WP_ST_CNT(0), 0);
1000 for (lcv
= 0 ; lcv
< 68 ; lcv
++) /* set up sample data */
1002 EN_WRITE(sc
, MID_MAST_CSR
, MID_MCSR_ENDMA
); /* enable DMA (only) */
1004 sc
->drq_chip
= MID_DRQ_REG2A(EN_READ(sc
, MID_DMA_RDRX
));
1005 sc
->dtq_chip
= MID_DTQ_REG2A(EN_READ(sc
, MID_DMA_RDTX
));
1008 * try it now . . . DMA it out, then DMA it back in and compare
1010 * note: in order to get the DMA stuff to reverse directions it wants
1011 * the "end" flag set! since we are not DMA'ing valid data we may
1012 * get an ident mismatch interrupt (which we will ignore).
1014 * note: we've got two different tests rolled up in the same loop
1016 * then we are doing a wmaybe test and wmtry is a byte count
1017 * else we are doing a burst test
1020 for (lcv
= 8 ; lcv
<= MIDDMA_MAXBURST
; lcv
= lcv
* 2) {
1022 /* zero SRAM and dest buffer */
1023 for (cnt
= 0 ; cnt
< 1024; cnt
+= 4)
1024 EN_WRITE(sc
, MID_BUFOFF
+cnt
, 0); /* zero memory */
1025 for (cnt
= 0 ; cnt
< 68 ; cnt
++)
1029 count
= (sc
->bestburstlen
- sizeof(u_int32_t
)) / sizeof(u_int32_t
);
1030 bcode
= en_dmaplan
[count
].bcode
;
1031 count
= wmtry
>> en_dmaplan
[count
].divshift
;
1033 bcode
= en_sz2b(lcv
);
1037 EN_WRITE(sc
, sc
->dtq_chip
, MID_MK_TXQ_ADP(lcv
, 0, MID_DMA_END
, 0));
1039 EN_WRITE(sc
, sc
->dtq_chip
, MID_MK_TXQ_ENI(count
, 0, MID_DMA_END
, bcode
));
1040 EN_WRITE(sc
, sc
->dtq_chip
+4, vtophys((vaddr_t
)sp
));
1041 EN_WRITE(sc
, MID_DMA_WRTX
, MID_DTQ_A2REG(sc
->dtq_chip
+8));
1043 while (EN_READ(sc
, MID_DMA_RDTX
) == MID_DTQ_A2REG(sc
->dtq_chip
)) {
1047 aprint_error_dev(&sc
->sc_dev
, "unexpected timeout in tx DMA test\n");
1048 return(retval
); /* timeout, give up */
1051 EN_WRAPADD(MID_DTQOFF
, MID_DTQEND
, sc
->dtq_chip
, 8);
1052 reg
= EN_READ(sc
, MID_INTACK
);
1053 if ((reg
& MID_INT_DMA_TX
) != MID_INT_DMA_TX
) {
1054 aprint_error_dev(&sc
->sc_dev
, "unexpected status in tx DMA test: 0x%x\n",
1058 EN_WRITE(sc
, MID_MAST_CSR
, MID_MCSR_ENDMA
); /* re-enable DMA (only) */
1060 /* "return to sender..." address is known ... */
1063 EN_WRITE(sc
, sc
->drq_chip
, MID_MK_RXQ_ADP(lcv
, 0, MID_DMA_END
, 0));
1065 EN_WRITE(sc
, sc
->drq_chip
, MID_MK_RXQ_ENI(count
, 0, MID_DMA_END
, bcode
));
1066 EN_WRITE(sc
, sc
->drq_chip
+4, vtophys((vaddr_t
)dp
));
1067 EN_WRITE(sc
, MID_DMA_WRRX
, MID_DRQ_A2REG(sc
->drq_chip
+8));
1069 while (EN_READ(sc
, MID_DMA_RDRX
) == MID_DRQ_A2REG(sc
->drq_chip
)) {
1073 aprint_error_dev(&sc
->sc_dev
, "unexpected timeout in rx DMA test\n");
1074 return(retval
); /* timeout, give up */
1077 EN_WRAPADD(MID_DRQOFF
, MID_DRQEND
, sc
->drq_chip
, 8);
1078 reg
= EN_READ(sc
, MID_INTACK
);
1079 if ((reg
& MID_INT_DMA_RX
) != MID_INT_DMA_RX
) {
1080 aprint_error_dev(&sc
->sc_dev
, "unexpected status in rx DMA test: 0x%x\n",
1084 EN_WRITE(sc
, MID_MAST_CSR
, MID_MCSR_ENDMA
); /* re-enable DMA (only) */
1087 return(memcmp(sp
, dp
, wmtry
)); /* wmtry always exits here, no looping */
1090 if (memcmp(sp
, dp
, lcv
))
1091 return(retval
); /* failed, use last value */
1096 return(retval
); /* studly 64 byte DMA present! oh baby!! */
1099 /***********************************************************************/
1102 * en_ioctl: handle ioctl requests
1104 * NOTE: if you add an ioctl to set txspeed, you should choose a new
1105 * TX channel/slot. Choose the one with the lowest sc->txslot[slot].nref
1106 * value, subtract one from sc->txslot[0].nref, add one to the
1107 * sc->txslot[slot].nref, set sc->txvc2slot[vci] = slot, and then set
1111 STATIC
int en_ioctl(struct ifnet
*ifp
, EN_IOCTL_CMDT cmd
, void *data
)
1113 #ifdef MISSING_IF_SOFTC
1114 struct en_softc
*sc
= (struct en_softc
*)device_lookup_private(&en_cd
, ifp
->if_unit
);
1116 struct en_softc
*sc
= (struct en_softc
*) ifp
->if_softc
;
1118 struct ifaddr
*ifa
= (struct ifaddr
*) data
;
1119 struct ifreq
*ifr
= (struct ifreq
*) data
;
1120 struct atm_pseudoioctl
*api
= (struct atm_pseudoioctl
*)data
;
1122 struct atm_rawioctl
*ario
= (struct atm_rawioctl
*)data
;
1130 case SIOCATMENA
: /* enable circuit for recv */
1131 error
= en_rxctl(sc
, api
, 1);
1134 case SIOCATMDIS
: /* disable circuit for recv */
1135 error
= en_rxctl(sc
, api
, 0);
1140 if ((slot
= sc
->rxvc2slot
[ario
->npcb
->npcb_vci
]) == RX_NONE
) {
1144 if (ario
->rawvalue
> EN_RXSZ
*1024)
1145 ario
->rawvalue
= EN_RXSZ
*1024;
1146 if (ario
->rawvalue
) {
1147 sc
->rxslot
[slot
].oth_flags
|= ENOTHER_RAW
;
1148 sc
->rxslot
[slot
].raw_threshold
= ario
->rawvalue
;
1150 sc
->rxslot
[slot
].oth_flags
&= (~ENOTHER_RAW
);
1151 sc
->rxslot
[slot
].raw_threshold
= 0;
1154 printf("%s: rxvci%d: turn %s raw (boodi) mode\n",
1155 device_xname(&sc
->sc_dev
), ario
->npcb
->npcb_vci
,
1156 (ario
->rawvalue
) ? "on" : "off");
1160 case SIOCINITIFADDR
:
1161 ifp
->if_flags
|= IFF_UP
;
1164 switch (ifa
->ifa_addr
->sa_family
) {
1167 ifa
->ifa_rtrequest
= atm_rtrequest
; /* ??? */
1172 ifa
->ifa_rtrequest
= atm_rtrequest
; /* ??? */
1176 /* what to do if not INET? */
1182 if ((error
= ifioctl_common(ifp
, cmd
, data
)) != 0)
1185 /* point-2-point pvc is allowed to change if_flags */
1186 if (((ifp
->if_flags
& IFF_UP
) && !(ifp
->if_flags
& IFF_RUNNING
))
1187 || (!(ifp
->if_flags
& IFF_UP
) && (ifp
->if_flags
& IFF_RUNNING
))) {
1196 #if defined(SIOCSIFMTU) /* ??? copied from if_de */
1197 #if !defined(ifr_mtu)
1198 #define ifr_mtu ifr_metric
1202 * Set the interface MTU.
1205 if (ifr
->ifr_mtu
> ATMMTU
) {
1210 if ((error
= ifioctl_common(ifp
, cmd
, data
)) == ENETRESET
) {
1212 /* XXXCDC: do we really need to reset on MTU size change? */
1217 #endif /* SIOCSIFMTU */
1222 if (ifp
== &sc
->enif
|| ifr
== 0) {
1223 error
= EAFNOSUPPORT
; /* XXX */
1226 switch (ifreq_getaddr(cmd
, ifr
)->sa_family
) {
1236 error
= EAFNOSUPPORT
;
1242 if (ifp
!= &sc
->enif
) {
1244 strlcpy(ifr
->ifr_name
, sc
->enif
.if_xname
,
1245 sizeof(ifr
->ifr_name
));
1247 snprintf(ifr
->ifr_name
, sizeof(ifr
->ifr_name
), "%s%d",
1248 sc
->enif
.if_name
, sc
->enif
.if_unit
);
1256 if (ifp
== &sc
->enif
) {
1259 if ((error
= kauth_authorize_generic(curlwp
->l_cred
,
1260 KAUTH_GENERIC_ISSUSER
, NULL
)) != 0)
1263 if ((sifp
= en_pvcattach(ifp
)) != NULL
) {
1265 strlcpy(ifr
->ifr_name
, sifp
->if_xname
,
1266 sizeof(ifr
->ifr_name
));
1268 snprintf(ifr
->ifr_name
, sizeof(ifr
->ifr_name
), "%s%d",
1269 sifp
->if_name
, sifp
->if_unit
);
1271 #if defined(__KAME__) && defined(INET6)
1272 /* get EUI64 for PVC, from ATM hardware interface */
1273 in6_ifattach(sifp
, ifp
);
1284 error
= en_pvctxget(sc
, (struct pvctxreq
*)data
);
1288 if ((error
= kauth_authorize_network(curlwp
->l_cred
,
1289 KAUTH_NETWORK_INTERFACE
,
1290 KAUTH_REQ_NETWORK_INTERFACE_SETPRIV
, ifp
, KAUTH_ARG(cmd
),
1292 error
= en_pvctx(sc
, (struct pvctxreq
*)data
);
1295 #endif /* ATM_PVCEXT */
1298 error
= ifioctl_common(ifp
, cmd
, data
);
1307 * en_rxctl: turn on and off VCs for recv.
1310 STATIC
int en_rxctl(struct en_softc
*sc
, struct atm_pseudoioctl
*pi
, int on
)
1312 u_int s
, vci
, flags
, slot
;
1313 u_int32_t oldmode
, newmode
;
1315 vci
= ATM_PH_VCI(&pi
->aph
);
1316 flags
= ATM_PH_FLAGS(&pi
->aph
);
1319 printf("%s: %s vpi=%d, vci=%d, flags=%d\n", device_xname(&sc
->sc_dev
),
1320 (on
) ? "enable" : "disable", ATM_PH_VPI(&pi
->aph
), vci
, flags
);
1323 if (ATM_PH_VPI(&pi
->aph
) || vci
>= MID_N_VC
)
1331 if (sc
->rxvc2slot
[vci
] != RX_NONE
)
1333 for (slot
= 0 ; slot
< sc
->en_nrx
; slot
++)
1334 if (sc
->rxslot
[slot
].oth_flags
& ENOTHER_FREE
)
1336 if (slot
== sc
->en_nrx
)
1338 sc
->rxvc2slot
[vci
] = slot
;
1339 sc
->rxslot
[slot
].rxhand
= NULL
;
1340 oldmode
= sc
->rxslot
[slot
].mode
;
1341 newmode
= (flags
& ATM_PH_AAL5
) ? MIDV_AAL5
: MIDV_NOAAL
;
1342 sc
->rxslot
[slot
].mode
= MIDV_SETMODE(oldmode
, newmode
);
1343 sc
->rxslot
[slot
].atm_vci
= vci
;
1344 sc
->rxslot
[slot
].atm_flags
= flags
;
1345 sc
->rxslot
[slot
].oth_flags
= 0;
1346 sc
->rxslot
[slot
].rxhand
= pi
->rxhand
;
1347 if (sc
->rxslot
[slot
].indma
.ifq_head
|| sc
->rxslot
[slot
].q
.ifq_head
)
1348 panic("en_rxctl: left over mbufs on enable");
1349 sc
->txspeed
[vci
] = 0; /* full speed to start */
1350 sc
->txvc2slot
[vci
] = 0; /* init value */
1351 sc
->txslot
[0].nref
++; /* bump reference count */
1352 en_loadvc(sc
, vci
); /* does debug printf for us */
1360 if (sc
->rxvc2slot
[vci
] == RX_NONE
)
1362 slot
= sc
->rxvc2slot
[vci
];
1363 if ((sc
->rxslot
[slot
].oth_flags
& (ENOTHER_FREE
|ENOTHER_DRAIN
)) != 0)
1365 s
= splnet(); /* block out enintr() */
1366 oldmode
= EN_READ(sc
, MID_VC(vci
));
1367 newmode
= MIDV_SETMODE(oldmode
, MIDV_TRASH
) & ~MIDV_INSERVICE
;
1368 EN_WRITE(sc
, MID_VC(vci
), (newmode
| (oldmode
& MIDV_INSERVICE
)));
1369 /* halt in tracks, be careful to preserve inserivce bit */
1371 sc
->rxslot
[slot
].rxhand
= NULL
;
1372 sc
->rxslot
[slot
].mode
= newmode
;
1374 sc
->txslot
[sc
->txvc2slot
[vci
]].nref
--;
1375 sc
->txspeed
[vci
] = 0;
1376 sc
->txvc2slot
[vci
] = 0;
1378 /* if stuff is still going on we are going to have to drain it out */
1379 if (sc
->rxslot
[slot
].indma
.ifq_head
||
1380 sc
->rxslot
[slot
].q
.ifq_head
||
1381 (sc
->rxslot
[slot
].oth_flags
& ENOTHER_SWSL
) != 0) {
1382 sc
->rxslot
[slot
].oth_flags
|= ENOTHER_DRAIN
;
1384 sc
->rxslot
[slot
].oth_flags
= ENOTHER_FREE
;
1385 sc
->rxslot
[slot
].atm_vci
= RX_NONE
;
1386 sc
->rxvc2slot
[vci
] = RX_NONE
;
1388 splx(s
); /* enable enintr() */
1390 printf("%s: rx%d: VCI %d is now %s\n", device_xname(&sc
->sc_dev
), slot
, vci
,
1391 (sc
->rxslot
[slot
].oth_flags
& ENOTHER_DRAIN
) ? "draining" : "free");
1396 /***********************************************************************/
1399 * en_reset: reset the board, throw away work in progress.
1400 * must en_init to recover.
1403 void en_reset(struct en_softc
*sc
)
1409 printf("%s: reset\n", device_xname(&sc
->sc_dev
));
1412 if (sc
->en_busreset
)
1413 sc
->en_busreset(sc
);
1414 EN_WRITE(sc
, MID_RESID
, 0x0); /* reset hardware */
1417 * recv: dump any mbufs we are DMA'ing into, if DRAINing, then a reset
1421 for (lcv
= 0 ; lcv
< MID_N_VC
; lcv
++) {
1422 if (sc
->rxvc2slot
[lcv
] == RX_NONE
)
1424 slot
= sc
->rxvc2slot
[lcv
];
1426 IF_DEQUEUE(&sc
->rxslot
[slot
].indma
, m
);
1428 break; /* >>> exit 'while(1)' here <<< */
1432 IF_DEQUEUE(&sc
->rxslot
[slot
].q
, m
);
1434 break; /* >>> exit 'while(1)' here <<< */
1437 sc
->rxslot
[slot
].oth_flags
&= ~ENOTHER_SWSL
;
1438 if (sc
->rxslot
[slot
].oth_flags
& ENOTHER_DRAIN
) {
1439 sc
->rxslot
[slot
].oth_flags
= ENOTHER_FREE
;
1440 sc
->rxvc2slot
[lcv
] = RX_NONE
;
1442 printf("%s: rx%d: VCI %d is now free\n", device_xname(&sc
->sc_dev
), slot
, lcv
);
1448 * xmit: dump everything
1451 for (lcv
= 0 ; lcv
< EN_NTX
; lcv
++) {
1453 IF_DEQUEUE(&sc
->txslot
[lcv
].indma
, m
);
1455 break; /* >>> exit 'while(1)' here <<< */
1459 IF_DEQUEUE(&sc
->txslot
[lcv
].q
, m
);
1461 break; /* >>> exit 'while(1)' here <<< */
1464 sc
->txslot
[lcv
].mbsize
= 0;
1472 * en_init: init board and sync the card with the data in the softc.
1475 STATIC
void en_init(struct en_softc
*sc
)
1480 struct pvcsif
*pvcsif
;
1483 if ((sc
->enif
.if_flags
& IFF_UP
) == 0) {
1485 LIST_FOREACH(pvcsif
, &sc
->sif_list
, sif_links
) {
1486 if (pvcsif
->sif_if
.if_flags
& IFF_UP
) {
1488 * down the device only when there is no active pvc subinterface.
1489 * if there is, we have to go through the init sequence to reflect
1490 * the software states to the device.
1497 printf("%s: going down\n", device_xname(&sc
->sc_dev
));
1499 en_reset(sc
); /* to be safe */
1500 sc
->enif
.if_flags
&= ~IFF_RUNNING
; /* disable */
1508 printf("%s: going up\n", device_xname(&sc
->sc_dev
));
1510 sc
->enif
.if_flags
|= IFF_RUNNING
; /* enable */
1512 LIST_FOREACH(pvcsif
, &sc
->sif_list
, sif_links
) {
1513 pvcsif
->sif_if
.if_flags
|= IFF_RUNNING
;
1517 if (sc
->en_busreset
)
1518 sc
->en_busreset(sc
);
1519 EN_WRITE(sc
, MID_RESID
, 0x0); /* reset */
1522 * init obmem data structures: vc tab, DMA q's, slist.
1524 * note that we set drq_free/dtq_free to one less than the total number
1525 * of DTQ/DRQs present. we do this because the card uses the condition
1526 * (drq_chip == drq_us) to mean "list is empty"... but if you allow the
1527 * circular list to be completely full then (drq_chip == drq_us) [i.e.
1528 * the drq_us pointer will wrap all the way around]. by restricting
1529 * the number of active requests to (N - 1) we prevent the list from
1530 * becoming completely full. note that the card will sometimes give
1531 * us an interrupt for a DTQ/DRQ we have already processes... this helps
1532 * keep that interrupt from messing us up.
1535 for (vc
= 0 ; vc
< MID_N_VC
; vc
++)
1538 memset(&sc
->drq
, 0, sizeof(sc
->drq
));
1539 sc
->drq_free
= MID_DRQ_N
- 1; /* N - 1 */
1540 sc
->drq_chip
= MID_DRQ_REG2A(EN_READ(sc
, MID_DMA_RDRX
));
1541 EN_WRITE(sc
, MID_DMA_WRRX
, MID_DRQ_A2REG(sc
->drq_chip
));
1542 /* ensure zero queue */
1543 sc
->drq_us
= sc
->drq_chip
;
1545 memset(&sc
->dtq
, 0, sizeof(sc
->dtq
));
1546 sc
->dtq_free
= MID_DTQ_N
- 1; /* N - 1 */
1547 sc
->dtq_chip
= MID_DTQ_REG2A(EN_READ(sc
, MID_DMA_RDTX
));
1548 EN_WRITE(sc
, MID_DMA_WRTX
, MID_DRQ_A2REG(sc
->dtq_chip
));
1549 /* ensure zero queue */
1550 sc
->dtq_us
= sc
->dtq_chip
;
1552 sc
->hwslistp
= MID_SL_REG2A(EN_READ(sc
, MID_SERV_WRITE
));
1553 sc
->swsl_size
= sc
->swsl_head
= sc
->swsl_tail
= 0;
1556 printf("%s: drq free/chip: %d/0x%x, dtq free/chip: %d/0x%x, hwslist: 0x%x\n",
1557 device_xname(&sc
->sc_dev
), sc
->drq_free
, sc
->drq_chip
,
1558 sc
->dtq_free
, sc
->dtq_chip
, sc
->hwslistp
);
1561 for (slot
= 0 ; slot
< EN_NTX
; slot
++) {
1562 sc
->txslot
[slot
].bfree
= EN_TXSZ
* 1024;
1563 EN_WRITE(sc
, MIDX_READPTR(slot
), 0);
1564 EN_WRITE(sc
, MIDX_DESCSTART(slot
), 0);
1565 loc
= sc
->txslot
[slot
].cur
= sc
->txslot
[slot
].start
;
1566 loc
= loc
- MID_RAMOFF
;
1567 loc
= (loc
& ~((EN_TXSZ
*1024) - 1)) >> 2; /* mask, cvt to words */
1568 loc
= loc
>> MIDV_LOCTOPSHFT
; /* top 11 bits */
1569 EN_WRITE(sc
, MIDX_PLACE(slot
), MIDX_MKPLACE(en_k2sz(EN_TXSZ
), loc
));
1571 printf("%s: tx%d: place 0x%x\n", device_xname(&sc
->sc_dev
), slot
,
1572 EN_READ(sc
, MIDX_PLACE(slot
)));
1580 EN_WRITE(sc
, MID_INTENA
, MID_INT_TX
|MID_INT_DMA_OVR
|MID_INT_IDENT
|
1581 MID_INT_LERR
|MID_INT_DMA_ERR
|MID_INT_DMA_RX
|MID_INT_DMA_TX
|
1582 MID_INT_SERVICE
| /* >>> MID_INT_SUNI| XXXCDC<<< */ MID_INT_STATS
);
1583 EN_WRITE(sc
, MID_MAST_CSR
, MID_SETIPL(sc
->ipl
)|MID_MCSR_ENDMA
|
1584 MID_MCSR_ENTX
|MID_MCSR_ENRX
);
1590 * en_loadvc: load a vc tab entry from a slot
1593 STATIC
void en_loadvc(struct en_softc
*sc
, int vc
)
1596 u_int32_t reg
= EN_READ(sc
, MID_VC(vc
));
1598 reg
= MIDV_SETMODE(reg
, MIDV_TRASH
);
1599 EN_WRITE(sc
, MID_VC(vc
), reg
);
1602 if ((slot
= sc
->rxvc2slot
[vc
]) == RX_NONE
)
1605 /* no need to set CRC */
1606 EN_WRITE(sc
, MID_DST_RP(vc
), 0); /* read pointer = 0, desc. start = 0 */
1607 EN_WRITE(sc
, MID_WP_ST_CNT(vc
), 0); /* write pointer = 0 */
1608 EN_WRITE(sc
, MID_VC(vc
), sc
->rxslot
[slot
].mode
); /* set mode, size, loc */
1609 sc
->rxslot
[slot
].cur
= sc
->rxslot
[slot
].start
;
1612 printf("%s: rx%d: assigned to VCI %d\n", device_xname(&sc
->sc_dev
), slot
, vc
);
1618 * en_start: start transmitting the next packet that needs to go out
1619 * if there is one. note that atm_output() has already splnet()'d us.
1622 STATIC
void en_start(struct ifnet
*ifp
)
1624 #ifdef MISSING_IF_SOFTC
1625 struct en_softc
*sc
= (struct en_softc
*)device_lookup_private(&en_cd
, ifp
->if_unit
);
1627 struct en_softc
*sc
= (struct en_softc
*) ifp
->if_softc
;
1629 struct mbuf
*m
, *lastm
, *prev
;
1630 struct atm_pseudohdr
*ap
, *new_ap
;
1631 int txchan
, mlen
, got
, need
, toadd
, cellcnt
, first
;
1632 u_int32_t atm_vpi
, atm_vci
, atm_flags
, *dat
, aal
;
1635 if ((ifp
->if_flags
& IFF_RUNNING
) == 0)
1639 * remove everything from interface queue since we handle all queueing
1645 IFQ_DEQUEUE(&ifp
->if_snd
, m
);
1647 return; /* EMPTY: >>> exit here <<< */
1650 * calculate size of packet (in bytes)
1651 * also, if we are not doing transmit DMA we eliminate all stupid
1652 * (non-word) alignments here using en_mfix(). calls to en_mfix()
1653 * seem to be due to tcp retransmits for the most part.
1655 * after this loop mlen total length of mbuf chain (including atm_ph),
1656 * and lastm is a pointer to the last mbuf on the chain.
1664 if ((!sc
->is_adaptec
&& EN_ENIDMAFIX
) || EN_NOTXDMA
|| !en_dma
) {
1665 if ( (mtod(lastm
, unsigned long) % sizeof(u_int32_t
)) != 0 ||
1666 ((lastm
->m_len
% sizeof(u_int32_t
)) != 0 && lastm
->m_next
)) {
1667 first
= (lastm
== m
);
1668 if (en_mfix(sc
, &lastm
, prev
) == 0) { /* failed? */
1674 m
= lastm
; /* update */
1678 mlen
+= lastm
->m_len
;
1679 if (lastm
->m_next
== NULL
)
1681 lastm
= lastm
->m_next
;
1684 if (m
== NULL
) /* happens only if mfix fails */
1687 ap
= mtod(m
, struct atm_pseudohdr
*);
1689 atm_vpi
= ATM_PH_VPI(ap
);
1690 atm_vci
= ATM_PH_VCI(ap
);
1691 atm_flags
= ATM_PH_FLAGS(ap
) & ~(EN_OBHDR
|EN_OBTRL
);
1692 aal
= ((atm_flags
& ATM_PH_AAL5
) != 0)
1693 ? MID_TBD_AAL5
: MID_TBD_NOAAL5
;
1696 * check that vpi/vci is one we can use
1699 if (atm_vpi
|| atm_vci
>= MID_N_VC
) {
1700 printf("%s: output vpi=%d, vci=%d out of card range, dropping...\n",
1701 device_xname(&sc
->sc_dev
), atm_vpi
, atm_vci
);
1707 * computing how much padding we need on the end of the mbuf, then
1708 * see if we can put the TBD at the front of the mbuf where the
1709 * link header goes (well behaved protocols will reserve room for us).
1710 * last, check if room for PDU tail.
1712 * got = number of bytes of data we have
1713 * cellcnt = number of cells in this mbuf
1714 * need = number of bytes of data + padding we need (excludes TBD)
1715 * toadd = number of bytes of data we need to add to end of mbuf,
1716 * [including AAL5 PDU, if AAL5]
1719 got
= mlen
- sizeof(struct atm_pseudohdr
);
1720 toadd
= (aal
== MID_TBD_AAL5
) ? MID_PDU_SIZE
: 0; /* PDU */
1721 cellcnt
= (got
+ toadd
+ (MID_ATMDATASZ
- 1)) / MID_ATMDATASZ
;
1722 need
= cellcnt
* MID_ATMDATASZ
;
1723 toadd
= need
- got
; /* recompute, including zero padding */
1726 printf("%s: txvci%d: mlen=%d, got=%d, need=%d, toadd=%d, cell#=%d\n",
1727 device_xname(&sc
->sc_dev
), atm_vci
, mlen
, got
, need
, toadd
, cellcnt
);
1728 printf(" leading_space=%d, trailing_space=%d\n",
1729 M_LEADINGSPACE(m
), M_TRAILINGSPACE(lastm
));
1735 * note: external storage (M_EXT) can be shared between mbufs
1736 * to avoid copying (see m_copym()). this means that the same
1737 * data buffer could be shared by several mbufs, and thus it isn't
1738 * a good idea to try and write TBDs or PDUs to M_EXT data areas.
1741 if (M_LEADINGSPACE(m
) >= MID_TBD_SIZE
&& (m
->m_flags
& M_EXT
) == 0) {
1742 m
->m_data
-= MID_TBD_SIZE
;
1743 m
->m_len
+= MID_TBD_SIZE
;
1744 mlen
+= MID_TBD_SIZE
;
1745 new_ap
= mtod(m
, struct atm_pseudohdr
*);
1746 *new_ap
= *ap
; /* move it back */
1748 dat
= ((u_int32_t
*) ap
) + 1;
1749 /* make sure the TBD is in proper byte order */
1750 *dat
++ = htonl(MID_TBD_MK1(aal
, sc
->txspeed
[atm_vci
], cellcnt
));
1751 *dat
= htonl(MID_TBD_MK2(atm_vci
, 0, 0));
1752 atm_flags
|= EN_OBHDR
;
1755 if (toadd
&& (lastm
->m_flags
& M_EXT
) == 0 &&
1756 M_TRAILINGSPACE(lastm
) >= toadd
) {
1757 cp
= mtod(lastm
, u_int8_t
*) + lastm
->m_len
;
1758 lastm
->m_len
+= toadd
;
1760 if (aal
== MID_TBD_AAL5
) {
1761 memset(cp
, 0, toadd
- MID_PDU_SIZE
);
1762 dat
= (u_int32_t
*)(cp
+ toadd
- MID_PDU_SIZE
);
1763 /* make sure the PDU is in proper byte order */
1764 *dat
= htonl(MID_PDU_MK1(0, 0, got
));
1766 memset(cp
, 0, toadd
);
1768 atm_flags
|= EN_OBTRL
;
1770 ATM_PH_FLAGS(ap
) = atm_flags
; /* update EN_OBHDR/EN_OBTRL bits */
1771 #endif /* EN_MBUF_OPT */
1774 * get assigned channel (will be zero unless txspeed[atm_vci] is set)
1777 txchan
= sc
->txvc2slot
[atm_vci
];
1779 if (sc
->txslot
[txchan
].mbsize
> EN_TXHIWAT
) {
1780 EN_COUNT(sc
->txmbovr
);
1783 printf("%s: tx%d: buffer space shortage\n", device_xname(&sc
->sc_dev
),
1789 sc
->txslot
[txchan
].mbsize
+= mlen
;
1792 printf("%s: tx%d: VPI=%d, VCI=%d, FLAGS=0x%x, speed=0x%x\n",
1793 device_xname(&sc
->sc_dev
), txchan
, atm_vpi
, atm_vci
, atm_flags
,
1794 sc
->txspeed
[atm_vci
]);
1795 printf(" adjusted mlen=%d, mbsize=%d\n", mlen
,
1796 sc
->txslot
[txchan
].mbsize
);
1799 IF_ENQUEUE(&sc
->txslot
[txchan
].q
, m
);
1800 en_txdma(sc
, txchan
);
1808 * en_mfix: fix a stupid mbuf
1813 STATIC
int en_mfix(struct en_softc
*sc
, struct mbuf
**mm
, struct mbuf
*prev
)
1815 struct mbuf
*m
, *new;
1822 EN_COUNT(sc
->mfix
); /* count # of calls */
1824 printf("%s: mfix mbuf m_data=%p, m_len=%d\n", device_xname(&sc
->sc_dev
),
1825 m
->m_data
, m
->m_len
);
1828 d
= mtod(m
, u_char
*);
1829 off
= ((unsigned long) d
) % sizeof(u_int32_t
);
1832 if ((m
->m_flags
& M_EXT
) == 0) {
1833 memmove(d
- off
, d
, m
->m_len
); /* ALIGN! (with costly data copy...) */
1835 m
->m_data
= (void *)d
;
1837 /* can't write to an M_EXT mbuf since it may be shared */
1838 MGET(new, M_DONTWAIT
, MT_DATA
);
1840 EN_COUNT(sc
->mfixfail
);
1843 MCLGET(new, M_DONTWAIT
);
1844 if ((new->m_flags
& M_EXT
) == 0) {
1846 EN_COUNT(sc
->mfixfail
);
1849 memcpy(new->m_data
, d
, m
->m_len
); /* ALIGN! (with costly data copy...) */
1850 new->m_len
= m
->m_len
;
1851 new->m_next
= m
->m_next
;
1855 *mm
= m
= new; /* note: 'd' now invalid */
1859 off
= m
->m_len
% sizeof(u_int32_t
);
1863 d
= mtod(m
, u_char
*) + m
->m_len
;
1864 off
= sizeof(u_int32_t
) - off
;
1868 for ( ; nxt
!= NULL
&& nxt
->m_len
== 0 ; nxt
= nxt
->m_next
)
1870 if (nxt
== NULL
) { /* out of data, zero fill */
1872 continue; /* next "off" */
1874 cp
= mtod(nxt
, u_char
*);
1878 nxt
->m_data
= (void *)cp
;
1883 #else /* __FreeBSD__ */
1885 STATIC
int en_makeexclusive(struct en_softc
*, struct mbuf
**, struct mbuf
*);
1887 STATIC
int en_makeexclusive(sc
, mm
, prev
)
1888 struct en_softc
*sc
;
1889 struct mbuf
**mm
, *prev
;
1891 struct mbuf
*m
, *new;
1895 if (m
->m_flags
& M_EXT
) {
1896 if (m
->m_ext
.ext_free
) {
1897 /* external buffer isn't an ordinary mbuf cluster! */
1898 aprint_error_dev(&sc
->sc_dev
, "mfix: special buffer! can't make a copy!\n");
1902 if (mclrefcnt
[mtocl(m
->m_ext
.ext_buf
)] > 1) {
1903 /* make a real copy of the M_EXT mbuf since it is shared */
1904 MGET(new, M_DONTWAIT
, MT_DATA
);
1906 EN_COUNT(sc
->mfixfail
);
1909 if (m
->m_flags
& M_PKTHDR
)
1910 M_COPY_PKTHDR(new, m
);
1911 MCLGET(new, M_DONTWAIT
);
1912 if ((new->m_flags
& M_EXT
) == 0) {
1914 EN_COUNT(sc
->mfixfail
);
1917 memcpy(new->m_data
, m
->m_data
, m
->m_len
);
1918 new->m_len
= m
->m_len
;
1919 new->m_next
= m
->m_next
;
1926 /* the buffer is not shared, align the data offset using
1928 u_char
*d
= mtod(m
, u_char
*);
1929 int off
= ((u_long
)d
) % sizeof(u_int32_t
);
1932 memmove(d
- off
, d
, m
->m_len
);
1933 m
->m_data
= (void *)d
- off
;
1940 STATIC
int en_mfix(sc
, mm
, prev
)
1942 struct en_softc
*sc
;
1943 struct mbuf
**mm
, *prev
;
1953 EN_COUNT(sc
->mfix
); /* count # of calls */
1955 printf("%s: mfix mbuf m_data=0x%x, m_len=%d\n", device_xname(&sc
->sc_dev
),
1956 m
->m_data
, m
->m_len
);
1959 d
= mtod(m
, u_char
*);
1960 off
= ((unsigned long) d
) % sizeof(u_int32_t
);
1963 if ((m
->m_flags
& M_EXT
) == 0) {
1964 memmove(d
- off
, d
, m
->m_len
); /* ALIGN! (with costly data copy...) */
1966 m
->m_data
= (void *)d
;
1968 /* can't write to an M_EXT mbuf since it may be shared */
1969 if (en_makeexclusive(sc
, &m
, prev
) == 0)
1971 *mm
= m
; /* note: 'd' now invalid */
1975 off
= m
->m_len
% sizeof(u_int32_t
);
1979 if (m
->m_flags
& M_EXT
) {
1980 /* can't write to an M_EXT mbuf since it may be shared */
1981 if (en_makeexclusive(sc
, &m
, prev
) == 0)
1983 *mm
= m
; /* note: 'd' now invalid */
1986 d
= mtod(m
, u_char
*) + m
->m_len
;
1987 off
= sizeof(u_int32_t
) - off
;
1991 if (nxt
!= NULL
&& nxt
->m_len
== 0) {
1992 /* remove an empty mbuf. this avoids odd byte padding to an empty
1994 m
->m_next
= nxt
= m_free(nxt
);
1996 if (nxt
== NULL
) { /* out of data, zero fill */
1998 continue; /* next "off" */
2000 cp
= mtod(nxt
, u_char
*);
2004 nxt
->m_data
= (void *)cp
;
2006 if (nxt
!= NULL
&& nxt
->m_len
== 0)
2007 m
->m_next
= m_free(nxt
);
2011 #endif /* __FreeBSD__ */
2014 * en_txdma: start transmit DMA, if possible
2017 STATIC
void en_txdma(struct en_softc
*sc
, int chan
)
2020 struct atm_pseudohdr
*ap
;
2021 struct en_launch launch
;
2022 int datalen
= 0, dtqneed
, len
, ncells
;
2026 memset(&launch
, 0, sizeof launch
); /* XXX gcc */
2029 printf("%s: tx%d: starting...\n", device_xname(&sc
->sc_dev
), chan
);
2033 * note: now that txlaunch handles non-word aligned/sized requests
2034 * the only time you can safely set launch.nodma is if you've en_mfix()'d
2035 * the mbuf chain. this happens only if EN_NOTXDMA || !en_dma.
2038 launch
.nodma
= (EN_NOTXDMA
|| !en_dma
);
2043 * get an mbuf waiting for DMA
2046 launch
.t
= sc
->txslot
[chan
].q
.ifq_head
; /* peek at head of queue */
2048 if (launch
.t
== NULL
) {
2050 printf("%s: tx%d: ...done!\n", device_xname(&sc
->sc_dev
), chan
);
2052 return; /* >>> exit here if no data waiting for DMA <<< */
2058 * note: launch.need = # bytes we need to get on the card
2059 * dtqneed = # of DTQs we need for this packet
2060 * launch.mlen = # of bytes in in mbuf chain (<= launch.need)
2063 ap
= mtod(launch
.t
, struct atm_pseudohdr
*);
2064 launch
.atm_vci
= ATM_PH_VCI(ap
);
2065 launch
.atm_flags
= ATM_PH_FLAGS(ap
);
2066 launch
.aal
= ((launch
.atm_flags
& ATM_PH_AAL5
) != 0) ?
2067 MID_TBD_AAL5
: MID_TBD_NOAAL5
;
2070 * XXX: have to recompute the length again, even though we already did
2071 * it in en_start(). might as well compute dtqneed here as well, so
2072 * this isn't that bad.
2075 if ((launch
.atm_flags
& EN_OBHDR
) == 0) {
2076 dtqneed
= 1; /* header still needs to be added */
2077 launch
.need
= MID_TBD_SIZE
; /* not included with mbuf */
2079 dtqneed
= 0; /* header on-board, DMA with mbuf */
2084 for (tmp
= launch
.t
; tmp
!= NULL
; tmp
= tmp
->m_next
) {
2087 cp
= mtod(tmp
, u_int8_t
*);
2088 if (tmp
== launch
.t
) {
2089 len
-= sizeof(struct atm_pseudohdr
); /* don't count this! */
2090 cp
+= sizeof(struct atm_pseudohdr
);
2094 continue; /* atm_pseudohdr alone in first mbuf */
2096 dtqneed
+= en_dqneed(sc
, (void *) cp
, len
, 1);
2099 if ((launch
.need
% sizeof(u_int32_t
)) != 0)
2100 dtqneed
++; /* need DTQ to FLUSH internal buffer */
2102 if ((launch
.atm_flags
& EN_OBTRL
) == 0) {
2103 if (launch
.aal
== MID_TBD_AAL5
) {
2104 datalen
= launch
.need
- MID_TBD_SIZE
;
2105 launch
.need
+= MID_PDU_SIZE
; /* AAL5: need PDU tail */
2107 dtqneed
++; /* need to work on the end a bit */
2111 * finish calculation of launch.need (need to figure out how much padding
2112 * we will need). launch.need includes MID_TBD_SIZE, but we need to
2113 * remove that to so we can round off properly. we have to add
2114 * MID_TBD_SIZE back in after calculating ncells.
2117 launch
.need
= roundup(launch
.need
- MID_TBD_SIZE
, MID_ATMDATASZ
);
2118 ncells
= launch
.need
/ MID_ATMDATASZ
;
2119 launch
.need
+= MID_TBD_SIZE
;
2121 if (launch
.need
> EN_TXSZ
* 1024) {
2122 printf("%s: tx%d: packet larger than xmit buffer (%d > %d)\n",
2123 device_xname(&sc
->sc_dev
), chan
, launch
.need
, EN_TXSZ
* 1024);
2128 * note: note that we cannot totally fill the circular buffer (i.e.
2129 * we can't use up all of the remaining sc->txslot[chan].bfree free
2130 * bytes) because that would cause the circular buffer read pointer
2131 * to become equal to the write pointer, thus signaling 'empty buffer'
2132 * to the hardware and stopping the transmitter.
2134 if (launch
.need
>= sc
->txslot
[chan
].bfree
) {
2135 EN_COUNT(sc
->txoutspace
);
2137 printf("%s: tx%d: out of transmit space\n", device_xname(&sc
->sc_dev
), chan
);
2139 return; /* >>> exit here if out of obmem buffer space <<< */
2143 * ensure we have enough dtqs to go, if not, wait for more.
2149 if (dtqneed
> sc
->dtq_free
) {
2151 EN_COUNT(sc
->txdtqout
);
2153 printf("%s: tx%d: out of transmit DTQs\n", device_xname(&sc
->sc_dev
), chan
);
2155 return; /* >>> exit here if out of dtqs <<< */
2159 * it is a go, commit! dequeue mbuf start working on the xfer.
2162 IF_DEQUEUE(&sc
->txslot
[chan
].q
, tmp
);
2164 if (launch
.t
!= tmp
)
2165 panic("en dequeue");
2166 #endif /* EN_DIAG */
2172 EN_COUNT(sc
->launch
);
2174 /* if there's a subinterface for this vci, override ifp. */
2175 ifp
= en_vci2ifp(sc
, launch
.atm_vci
);
2181 if ((launch
.atm_flags
& EN_OBHDR
) == 0) {
2182 EN_COUNT(sc
->lheader
);
2183 /* store tbd1/tbd2 in host byte order */
2184 launch
.tbd1
= MID_TBD_MK1(launch
.aal
, sc
->txspeed
[launch
.atm_vci
], ncells
);
2185 launch
.tbd2
= MID_TBD_MK2(launch
.atm_vci
, 0, 0);
2187 if ((launch
.atm_flags
& EN_OBTRL
) == 0 && launch
.aal
== MID_TBD_AAL5
) {
2188 EN_COUNT(sc
->ltail
);
2189 launch
.pdu1
= MID_PDU_MK1(0, 0, datalen
); /* host byte order */
2192 en_txlaunch(sc
, chan
, &launch
);
2197 * adjust the top of the mbuf to skip the pseudo atm header
2198 * (and TBD, if present) before passing the packet to bpf,
2199 * restore it afterwards.
2201 int size
= sizeof(struct atm_pseudohdr
);
2202 if (launch
.atm_flags
& EN_OBHDR
)
2203 size
+= MID_TBD_SIZE
;
2205 launch
.t
->m_data
+= size
;
2206 launch
.t
->m_len
-= size
;
2208 BPF_MTAP(ifp
, launch
.t
);
2210 launch
.t
->m_data
-= size
;
2211 launch
.t
->m_len
+= size
;
2213 #endif /* NBPFILTER > 0 */
2215 * do some housekeeping and get the next packet
2218 sc
->txslot
[chan
].bfree
-= launch
.need
;
2219 IF_ENQUEUE(&sc
->txslot
[chan
].indma
, launch
.t
);
2223 * END of txdma loop!
2231 IF_DEQUEUE(&sc
->txslot
[chan
].q
, tmp
);
2232 if (launch
.t
!= tmp
)
2233 panic("en dequeue drop");
2235 sc
->txslot
[chan
].mbsize
-= launch
.mlen
;
2241 * en_txlaunch: launch an mbuf into the DMA pool!
2244 STATIC
void en_txlaunch(struct en_softc
*sc
, int chan
, struct en_launch
*l
)
2247 u_int32_t cur
= sc
->txslot
[chan
].cur
,
2248 start
= sc
->txslot
[chan
].start
,
2249 stop
= sc
->txslot
[chan
].stop
,
2250 dma
, *data
, *datastop
, count
, bcode
;
2251 int pad
, addtail
, need
, len
, needalign
, cnt
, end
, mx
;
2256 * need = # bytes card still needs (decr. to zero)
2257 * len = # of bytes left in current mbuf
2258 * cur = our current pointer
2259 * dma = last place we programmed into the DMA
2260 * data = pointer into data area of mbuf that needs to go next
2261 * cnt = # of bytes to transfer in this DTQ
2262 * bcode/count = DMA burst code, and chip's version of cnt
2264 * a single buffer can require up to 5 DTQs depending on its size
2265 * and alignment requirements. the 5 possible requests are:
2266 * [1] 1, 2, or 3 byte DMA to align src data pointer to word boundary
2267 * [2] alburst DMA to align src data pointer to bestburstlen
2268 * [3] 1 or more bestburstlen DMAs
2269 * [4] clean up burst (to last word boundary)
2270 * [5] 1, 2, or 3 byte final clean up DMA
2275 addtail
= (l
->atm_flags
& EN_OBTRL
) == 0; /* add a tail? */
2278 if ((need
- MID_TBD_SIZE
) % MID_ATMDATASZ
)
2279 printf("%s: tx%d: bogus transmit needs (%d)\n", device_xname(&sc
->sc_dev
), chan
,
2283 printf("%s: tx%d: launch mbuf %p! cur=0x%x[%d], need=%d, addtail=%d\n",
2284 device_xname(&sc
->sc_dev
), chan
, l
->t
, cur
, (cur
-start
)/4, need
, addtail
);
2285 count
= EN_READ(sc
, MIDX_PLACE(chan
));
2286 printf(" HW: base_address=0x%x, size=%d, read=%d, descstart=%d\n",
2287 MIDX_BASE(count
), MIDX_SZ(count
), EN_READ(sc
, MIDX_READPTR(chan
)),
2288 EN_READ(sc
, MIDX_DESCSTART(chan
)));
2292 * do we need to insert the TBD by hand?
2293 * note that tbd1/tbd2/pdu1 are in host byte order.
2296 if ((l
->atm_flags
& EN_OBHDR
) == 0) {
2298 printf("%s: tx%d: insert header 0x%x 0x%x\n", device_xname(&sc
->sc_dev
),
2299 chan
, l
->tbd1
, l
->tbd2
);
2301 EN_WRITE(sc
, cur
, l
->tbd1
);
2302 EN_WRAPADD(start
, stop
, cur
, 4);
2303 EN_WRITE(sc
, cur
, l
->tbd2
);
2304 EN_WRAPADD(start
, stop
, cur
, 4);
2309 * now do the mbufs...
2312 for (tmp
= l
->t
; tmp
!= NULL
; tmp
= tmp
->m_next
) {
2314 /* get pointer to data and length */
2315 data
= mtod(tmp
, u_int32_t
*);
2318 data
+= sizeof(struct atm_pseudohdr
)/sizeof(u_int32_t
);
2319 len
-= sizeof(struct atm_pseudohdr
);
2322 /* now, determine if we should copy it */
2323 if (l
->nodma
|| (len
< EN_MINDMA
&&
2324 (len
% 4) == 0 && ((unsigned long) data
% 4) == 0 && (cur
% 4) == 0)) {
2327 * roundup len: the only time this will change the value of len
2328 * is when l->nodma is true, tmp is the last mbuf, and there is
2329 * a non-word number of bytes to transmit. in this case it is
2330 * safe to round up because we've en_mfix'd the mbuf (so the first
2331 * byte is word aligned there must be enough free bytes at the end
2332 * to round off to the next word boundary)...
2334 len
= roundup(len
, sizeof(u_int32_t
));
2335 datastop
= data
+ (len
/ sizeof(u_int32_t
));
2336 /* copy loop: preserve byte order!!! use WRITEDAT */
2337 while (data
!= datastop
) {
2338 EN_WRITEDAT(sc
, cur
, *data
);
2340 EN_WRAPADD(start
, stop
, cur
, 4);
2344 printf("%s: tx%d: copied %d bytes (%d left, cur now 0x%x)\n",
2345 device_xname(&sc
->sc_dev
), chan
, len
, need
, cur
);
2347 continue; /* continue on to next mbuf */
2350 /* going to do DMA, first make sure the dtq is in sync. */
2352 EN_DTQADD(sc
, WORD_IDX(start
,cur
), chan
, MIDDMA_JK
, 0, 0, 0);
2354 printf("%s: tx%d: dtq_sync: advance pointer to %d\n",
2355 device_xname(&sc
->sc_dev
), chan
, cur
);
2360 * if this is the last buffer, and it looks like we are going to need to
2361 * flush the internal buffer, can we extend the length of this mbuf to
2365 if (tmp
->m_next
== NULL
) {
2366 cnt
= (need
- len
) % sizeof(u_int32_t
);
2367 if (cnt
&& M_TRAILINGSPACE(tmp
) >= cnt
)
2368 len
+= cnt
; /* pad for FLUSH */
2371 #if !defined(MIDWAY_ENIONLY)
2374 * the adaptec DMA engine is smart and handles everything for us.
2377 if (sc
->is_adaptec
) {
2378 /* need to DMA "len" bytes out to card */
2380 EN_WRAPADD(start
, stop
, cur
, len
);
2382 printf("%s: tx%d: adp_dma %d bytes (%d left, cur now 0x%x)\n",
2383 device_xname(&sc
->sc_dev
), chan
, len
, need
, cur
);
2385 end
= (need
== 0) ? MID_DMA_END
: 0;
2386 EN_DTQADD(sc
, len
, chan
, 0, vtophys((vaddr_t
)data
), l
->mlen
, end
);
2389 dma
= cur
; /* update DMA pointer */
2392 #endif /* !MIDWAY_ENIONLY */
2394 #if !defined(MIDWAY_ADPONLY)
2397 * the ENI DMA engine is not so smart and need more help from us
2400 /* do we need to do a DMA op to align to word boundary? */
2401 needalign
= (unsigned long) data
% sizeof(u_int32_t
);
2403 EN_COUNT(sc
->headbyte
);
2404 cnt
= sizeof(u_int32_t
) - needalign
;
2405 if (cnt
== 2 && len
>= cnt
) {
2407 bcode
= MIDDMA_2BYTE
;
2409 cnt
= min(cnt
, len
); /* prevent overflow */
2411 bcode
= MIDDMA_BYTE
;
2414 EN_WRAPADD(start
, stop
, cur
, cnt
);
2416 printf("%s: tx%d: small al_dma %d bytes (%d left, cur now 0x%x)\n",
2417 device_xname(&sc
->sc_dev
), chan
, cnt
, need
, cur
);
2420 end
= (need
== 0) ? MID_DMA_END
: 0;
2421 EN_DTQADD(sc
, count
, chan
, bcode
, vtophys((vaddr_t
)data
), l
->mlen
, end
);
2424 data
= (u_int32_t
*) ((u_char
*)data
+ cnt
);
2427 /* do we need to do a DMA op to align? */
2429 (needalign
= (((unsigned long) data
) & sc
->bestburstmask
)) != 0
2430 && len
>= sizeof(u_int32_t
)) {
2431 cnt
= sc
->bestburstlen
- needalign
;
2432 mx
= len
& ~(sizeof(u_int32_t
)-1); /* don't go past end */
2435 count
= cnt
/ sizeof(u_int32_t
);
2436 bcode
= MIDDMA_WORD
;
2438 count
= cnt
/ sizeof(u_int32_t
);
2439 bcode
= en_dmaplan
[count
].bcode
;
2440 count
= cnt
>> en_dmaplan
[count
].divshift
;
2443 EN_WRAPADD(start
, stop
, cur
, cnt
);
2445 printf("%s: tx%d: al_dma %d bytes (%d left, cur now 0x%x)\n",
2446 device_xname(&sc
->sc_dev
), chan
, cnt
, need
, cur
);
2449 end
= (need
== 0) ? MID_DMA_END
: 0;
2450 EN_DTQADD(sc
, count
, chan
, bcode
, vtophys((vaddr_t
)data
), l
->mlen
, end
);
2453 data
= (u_int32_t
*) ((u_char
*)data
+ cnt
);
2456 /* do we need to do a max-sized burst? */
2457 if (len
>= sc
->bestburstlen
) {
2458 count
= len
>> sc
->bestburstshift
;
2459 cnt
= count
<< sc
->bestburstshift
;
2460 bcode
= sc
->bestburstcode
;
2462 EN_WRAPADD(start
, stop
, cur
, cnt
);
2464 printf("%s: tx%d: best_dma %d bytes (%d left, cur now 0x%x)\n",
2465 device_xname(&sc
->sc_dev
), chan
, cnt
, need
, cur
);
2468 end
= (need
== 0) ? MID_DMA_END
: 0;
2469 EN_DTQADD(sc
, count
, chan
, bcode
, vtophys((vaddr_t
)data
), l
->mlen
, end
);
2472 data
= (u_int32_t
*) ((u_char
*)data
+ cnt
);
2475 /* do we need to do a cleanup burst? */
2476 cnt
= len
& ~(sizeof(u_int32_t
)-1);
2478 count
= cnt
/ sizeof(u_int32_t
);
2479 bcode
= en_dmaplan
[count
].bcode
;
2480 count
= cnt
>> en_dmaplan
[count
].divshift
;
2482 EN_WRAPADD(start
, stop
, cur
, cnt
);
2484 printf("%s: tx%d: cleanup_dma %d bytes (%d left, cur now 0x%x)\n",
2485 device_xname(&sc
->sc_dev
), chan
, cnt
, need
, cur
);
2488 end
= (need
== 0) ? MID_DMA_END
: 0;
2489 EN_DTQADD(sc
, count
, chan
, bcode
, vtophys((vaddr_t
)data
), l
->mlen
, end
);
2492 data
= (u_int32_t
*) ((u_char
*)data
+ cnt
);
2495 /* any word fragments left? */
2497 EN_COUNT(sc
->tailbyte
);
2500 bcode
= MIDDMA_2BYTE
; /* use 2byte mode */
2503 bcode
= MIDDMA_BYTE
; /* use 1 byte mode */
2506 EN_WRAPADD(start
, stop
, cur
, len
);
2508 printf("%s: tx%d: byte cleanup_dma %d bytes (%d left, cur now 0x%x)\n",
2509 device_xname(&sc
->sc_dev
), chan
, len
, need
, cur
);
2511 end
= (need
== 0) ? MID_DMA_END
: 0;
2512 EN_DTQADD(sc
, count
, chan
, bcode
, vtophys((vaddr_t
)data
), l
->mlen
, end
);
2517 dma
= cur
; /* update DMA pointer */
2518 #endif /* !MIDWAY_ADPONLY */
2520 } /* next mbuf, please */
2523 * all mbuf data has been copied out to the obmem (or set up to be DMAd).
2524 * if the trailer or padding needs to be put in, do it now.
2526 * NOTE: experimental results reveal the following fact:
2527 * if you DMA "X" bytes to the card, where X is not a multiple of 4,
2528 * then the card will internally buffer the last (X % 4) bytes (in
2529 * hopes of getting (4 - (X % 4)) more bytes to make a complete word).
2530 * it is imporant to make sure we don't leave any important data in
2531 * this internal buffer because it is discarded on the last (end) DTQ.
2532 * one way to do this is to DMA in (4 - (X % 4)) more bytes to flush
2533 * the darn thing out.
2538 pad
= need
% sizeof(u_int32_t
);
2541 * FLUSH internal data buffer. pad out with random data from the front
2542 * of the mbuf chain...
2544 bcode
= (sc
->is_adaptec
) ? 0 : MIDDMA_BYTE
;
2545 EN_COUNT(sc
->tailflush
);
2546 EN_WRAPADD(start
, stop
, cur
, pad
);
2547 EN_DTQADD(sc
, pad
, chan
, bcode
, vtophys((vaddr_t
)l
->t
->m_data
), 0, 0);
2550 printf("%s: tx%d: pad/FLUSH DMA %d bytes (%d left, cur now 0x%x)\n",
2551 device_xname(&sc
->sc_dev
), chan
, pad
, need
, cur
);
2556 pad
= need
/ sizeof(u_int32_t
); /* round *down* */
2557 if (l
->aal
== MID_TBD_AAL5
)
2560 printf("%s: tx%d: padding %d bytes (cur now 0x%x)\n",
2561 device_xname(&sc
->sc_dev
), chan
, pad
* sizeof(u_int32_t
), cur
);
2564 EN_WRITEDAT(sc
, cur
, 0); /* no byte order issues with zero */
2565 EN_WRAPADD(start
, stop
, cur
, 4);
2567 if (l
->aal
== MID_TBD_AAL5
) {
2568 EN_WRITE(sc
, cur
, l
->pdu1
); /* in host byte order */
2569 EN_WRAPADD(start
, stop
, cur
, 8);
2573 if (addtail
|| dma
!= cur
) {
2574 /* write final descriptor */
2575 EN_DTQADD(sc
, WORD_IDX(start
,cur
), chan
, MIDDMA_JK
, 0,
2576 l
->mlen
, MID_DMA_END
);
2577 /* dma = cur; */ /* not necessary since we are done */
2581 /* update current pointer */
2582 sc
->txslot
[chan
].cur
= cur
;
2584 printf("%s: tx%d: DONE! cur now = 0x%x\n",
2585 device_xname(&sc
->sc_dev
), chan
, cur
);
2596 EN_INTR_TYPE
en_intr(void *arg
)
2598 struct en_softc
*sc
= (struct en_softc
*) arg
;
2600 struct atm_pseudohdr ah
;
2602 u_int32_t reg
, kick
, val
, mask
, chip
, vci
, slot
, dtq
, drq
;
2603 int lcv
, idx
, need_softserv
= 0;
2605 reg
= EN_READ(sc
, MID_INTACK
);
2607 if ((reg
& MID_INT_ANY
) == 0)
2608 EN_INTR_RET(0); /* not us */
2614 snprintb(sbuf
, sizeof(sbuf
), MID_INTBITS
, reg
);
2615 printf("%s: interrupt=0x%s\n", device_xname(&sc
->sc_dev
), sbuf
);
2620 * unexpected errors that need a reset
2623 if ((reg
& (MID_INT_IDENT
|MID_INT_LERR
|MID_INT_DMA_ERR
|MID_INT_SUNI
)) != 0) {
2626 snprintb(sbuf
, sizeof(sbuf
), MID_INTBITS
, reg
);
2627 printf("%s: unexpected interrupt=0x%s, resetting card\n",
2628 device_xname(&sc
->sc_dev
), sbuf
);
2632 Debugger("en: unexpected error");
2637 sc
->enif
.if_flags
&= ~IFF_RUNNING
; /* FREEZE! */
2642 EN_INTR_RET(1); /* for us */
2645 /*******************
2649 kick
= 0; /* bitmask of channels to kick */
2650 if (reg
& MID_INT_TX
) { /* TX done! */
2653 * check for tx complete, if detected then this means that some space
2654 * has come free on the card. we must account for it and arrange to
2655 * kick the channel to life (in case it is stalled waiting on the card).
2657 for (mask
= 1, lcv
= 0 ; lcv
< EN_NTX
; lcv
++, mask
= mask
* 2) {
2658 if (reg
& MID_TXCHAN(lcv
)) {
2659 kick
= kick
| mask
; /* want to kick later */
2660 val
= EN_READ(sc
, MIDX_READPTR(lcv
)); /* current read pointer */
2661 val
= (val
* sizeof(u_int32_t
)) + sc
->txslot
[lcv
].start
;
2662 /* convert to offset */
2663 if (val
> sc
->txslot
[lcv
].cur
)
2664 sc
->txslot
[lcv
].bfree
= val
- sc
->txslot
[lcv
].cur
;
2666 sc
->txslot
[lcv
].bfree
= (val
+ (EN_TXSZ
*1024)) - sc
->txslot
[lcv
].cur
;
2668 printf("%s: tx%d: transmit done. %d bytes now free in buffer\n",
2669 device_xname(&sc
->sc_dev
), lcv
, sc
->txslot
[lcv
].bfree
);
2675 if (reg
& MID_INT_DMA_TX
) { /* TX DMA done! */
2678 * check for TX DMA complete, if detected then this means that some DTQs
2679 * are now free. it also means some indma mbufs can be freed.
2680 * if we needed DTQs, kick all channels.
2682 val
= EN_READ(sc
, MID_DMA_RDTX
); /* chip's current location */
2683 idx
= MID_DTQ_A2REG(sc
->dtq_chip
);/* where we last saw chip */
2684 if (sc
->need_dtqs
) {
2685 kick
= MID_NTX_CH
- 1; /* assume power of 2, kick all! */
2686 sc
->need_dtqs
= 0; /* recalculated in "kick" loop below */
2688 printf("%s: cleared need DTQ condition\n", device_xname(&sc
->sc_dev
));
2691 while (idx
!= val
) {
2693 if ((dtq
= sc
->dtq
[idx
]) != 0) {
2694 sc
->dtq
[idx
] = 0; /* don't forget to zero it out when done */
2695 slot
= EN_DQ_SLOT(dtq
);
2696 IF_DEQUEUE(&sc
->txslot
[slot
].indma
, m
);
2697 if (!m
) panic("enintr: dtqsync");
2698 sc
->txslot
[slot
].mbsize
-= EN_DQ_LEN(dtq
);
2700 printf("%s: tx%d: free %d DMA bytes, mbsize now %d\n",
2701 device_xname(&sc
->sc_dev
), slot
, EN_DQ_LEN(dtq
),
2702 sc
->txslot
[slot
].mbsize
);
2706 EN_WRAPADD(0, MID_DTQ_N
, idx
, 1);
2708 sc
->dtq_chip
= MID_DTQ_REG2A(val
); /* sync softc */
2713 * kick xmit channels as needed
2718 printf("%s: tx kick mask = 0x%x\n", device_xname(&sc
->sc_dev
), kick
);
2720 for (mask
= 1, lcv
= 0 ; lcv
< EN_NTX
; lcv
++, mask
= mask
* 2) {
2721 if ((kick
& mask
) && sc
->txslot
[lcv
].q
.ifq_head
) {
2722 en_txdma(sc
, lcv
); /* kick it! */
2724 } /* for each slot */
2728 /*******************
2733 * check for RX DMA complete, and pass the data "upstairs"
2736 if (reg
& MID_INT_DMA_RX
) {
2737 val
= EN_READ(sc
, MID_DMA_RDRX
); /* chip's current location */
2738 idx
= MID_DRQ_A2REG(sc
->drq_chip
);/* where we last saw chip */
2739 while (idx
!= val
) {
2741 if ((drq
= sc
->drq
[idx
]) != 0) {
2742 sc
->drq
[idx
] = 0; /* don't forget to zero it out when done */
2743 slot
= EN_DQ_SLOT(drq
);
2744 if (EN_DQ_LEN(drq
) == 0) { /* "JK" trash DMA? */
2747 IF_DEQUEUE(&sc
->rxslot
[slot
].indma
, m
);
2749 panic("enintr: drqsync: %s: lost mbuf in slot %d!",
2750 device_xname(&sc
->sc_dev
), slot
);
2752 /* do something with this mbuf */
2753 if (sc
->rxslot
[slot
].oth_flags
& ENOTHER_DRAIN
) { /* drain? */
2756 vci
= sc
->rxslot
[slot
].atm_vci
;
2757 if (sc
->rxslot
[slot
].indma
.ifq_head
== NULL
&&
2758 sc
->rxslot
[slot
].q
.ifq_head
== NULL
&&
2759 (EN_READ(sc
, MID_VC(vci
)) & MIDV_INSERVICE
) == 0 &&
2760 (sc
->rxslot
[slot
].oth_flags
& ENOTHER_SWSL
) == 0) {
2761 sc
->rxslot
[slot
].oth_flags
= ENOTHER_FREE
; /* done drain */
2762 sc
->rxslot
[slot
].atm_vci
= RX_NONE
;
2763 sc
->rxvc2slot
[vci
] = RX_NONE
;
2765 printf("%s: rx%d: VCI %d now free\n", device_xname(&sc
->sc_dev
),
2769 } else if (m
!= NULL
) {
2770 ATM_PH_FLAGS(&ah
) = sc
->rxslot
[slot
].atm_flags
;
2771 ATM_PH_VPI(&ah
) = 0;
2772 ATM_PH_SETVCI(&ah
, sc
->rxslot
[slot
].atm_vci
);
2774 printf("%s: rx%d: rxvci%d: atm_input, mbuf %p, len %d, hand %p\n",
2775 device_xname(&sc
->sc_dev
), slot
, sc
->rxslot
[slot
].atm_vci
, m
,
2776 EN_DQ_LEN(drq
), sc
->rxslot
[slot
].rxhand
);
2780 /* if there's a subinterface for this vci, override ifp. */
2781 ifp
= en_vci2ifp(sc
, sc
->rxslot
[slot
].atm_vci
);
2783 m
->m_pkthdr
.rcvif
= ifp
; /* XXX */
2794 atm_input(ifp
, &ah
, m
, sc
->rxslot
[slot
].rxhand
);
2798 EN_WRAPADD(0, MID_DRQ_N
, idx
, 1);
2800 sc
->drq_chip
= MID_DRQ_REG2A(val
); /* sync softc */
2802 if (sc
->need_drqs
) { /* true if we had a DRQ shortage */
2806 printf("%s: cleared need DRQ condition\n", device_xname(&sc
->sc_dev
));
2812 * handle service interrupts
2815 if (reg
& MID_INT_SERVICE
) {
2816 chip
= MID_SL_REG2A(EN_READ(sc
, MID_SERV_WRITE
));
2818 while (sc
->hwslistp
!= chip
) {
2820 /* fetch and remove it from hardware service list */
2821 vci
= EN_READ(sc
, sc
->hwslistp
);
2822 EN_WRAPADD(MID_SLOFF
, MID_SLEND
, sc
->hwslistp
, 4);/* advance hw ptr */
2823 slot
= sc
->rxvc2slot
[vci
];
2824 if (slot
== RX_NONE
) {
2826 printf("%s: unexpected rx interrupt on VCI %d\n",
2827 device_xname(&sc
->sc_dev
), vci
);
2829 EN_WRITE(sc
, MID_VC(vci
), MIDV_TRASH
); /* rx off, damn it! */
2830 continue; /* next */
2832 EN_WRITE(sc
, MID_VC(vci
), sc
->rxslot
[slot
].mode
); /* remove from hwsl */
2833 EN_COUNT(sc
->hwpull
);
2836 printf("%s: pulled VCI %d off hwslist\n", device_xname(&sc
->sc_dev
), vci
);
2839 /* add it to the software service list (if needed) */
2840 if ((sc
->rxslot
[slot
].oth_flags
& ENOTHER_SWSL
) == 0) {
2841 EN_COUNT(sc
->swadd
);
2843 sc
->rxslot
[slot
].oth_flags
|= ENOTHER_SWSL
;
2844 sc
->swslist
[sc
->swsl_tail
] = slot
;
2845 EN_WRAPADD(0, MID_SL_N
, sc
->swsl_tail
, 1);
2848 printf("%s: added VCI %d to swslist\n", device_xname(&sc
->sc_dev
), vci
);
2855 * now service (function too big to include here)
2865 if (reg
& MID_INT_DMA_OVR
) {
2866 EN_COUNT(sc
->dmaovr
);
2868 printf("%s: MID_INT_DMA_OVR\n", device_xname(&sc
->sc_dev
));
2871 reg
= EN_READ(sc
, MID_STAT
);
2873 sc
->otrash
+= MID_OTRASH(reg
);
2874 sc
->vtrash
+= MID_VTRASH(reg
);
2877 EN_INTR_RET(1); /* for us */
2882 * en_service: handle a service interrupt
2884 * Q: why do we need a software service list?
2886 * A: if we remove a VCI from the hardware list and we find that we are
2887 * out of DRQs we must defer processing until some DRQs become free.
2888 * so we must remember to look at this RX VCI/slot later, but we can't
2889 * put it back on the hardware service list (since that isn't allowed).
2890 * so we instead save it on the software service list. it would be nice
2891 * if we could peek at the VCI on top of the hwservice list without removing
2892 * it, however this leads to a race condition: if we peek at it and
2893 * decide we are done with it new data could come in before we have a
2894 * chance to remove it from the hwslist. by the time we get it out of
2895 * the list the interrupt for the new data will be lost. oops!
2899 STATIC
void en_service(struct en_softc
*sc
)
2901 struct mbuf
*m
, *tmp
;
2902 u_int32_t cur
, dstart
, rbd
, pdu
, *sav
, dma
, bcode
, count
, *data
, *datastop
;
2903 u_int32_t start
, stop
, cnt
, needalign
;
2904 int slot
, raw
, aal5
, vci
, fill
, mlen
, tlen
, drqneed
, need
, needfill
, end
;
2906 aal5
= 0; /* Silence gcc */
2908 if (sc
->swsl_size
== 0) {
2910 printf("%s: en_service done\n", device_xname(&sc
->sc_dev
));
2912 return; /* >>> exit here if swsl now empty <<< */
2916 * get slot/vci to service
2919 slot
= sc
->swslist
[sc
->swsl_head
];
2920 vci
= sc
->rxslot
[slot
].atm_vci
;
2922 if (sc
->rxvc2slot
[vci
] != slot
) panic("en_service rx slot/vci sync");
2926 * determine our mode and if we've got any work to do
2929 raw
= sc
->rxslot
[slot
].oth_flags
& ENOTHER_RAW
;
2930 start
= sc
->rxslot
[slot
].start
;
2931 stop
= sc
->rxslot
[slot
].stop
;
2932 cur
= sc
->rxslot
[slot
].cur
;
2935 printf("%s: rx%d: service vci=%d raw=%d start/stop/cur=0x%x 0x%x 0x%x\n",
2936 device_xname(&sc
->sc_dev
), slot
, vci
, raw
, start
, stop
, cur
);
2940 dstart
= MIDV_DSTART(EN_READ(sc
, MID_DST_RP(vci
)));
2941 dstart
= (dstart
* sizeof(u_int32_t
)) + start
;
2943 /* check to see if there is any data at all */
2944 if (dstart
== cur
) {
2945 defer
: /* defer processing */
2946 EN_WRAPADD(0, MID_SL_N
, sc
->swsl_head
, 1);
2947 sc
->rxslot
[slot
].oth_flags
&= ~ENOTHER_SWSL
;
2949 /* >>> remove from swslist <<< */
2951 printf("%s: rx%d: remove vci %d from swslist\n",
2952 device_xname(&sc
->sc_dev
), slot
, vci
);
2958 * figure out how many bytes we need
2959 * [mlen = # bytes to go in mbufs, fill = # bytes to dump (MIDDMA_JK)]
2964 /* raw mode (aka boodi mode) */
2967 mlen
= dstart
- cur
;
2969 mlen
= (dstart
+ (EN_RXSZ
*1024)) - cur
;
2971 if (mlen
< sc
->rxslot
[slot
].raw_threshold
)
2972 goto defer
; /* too little data to deal with */
2977 aal5
= (sc
->rxslot
[slot
].atm_flags
& ATM_PH_AAL5
);
2978 rbd
= EN_READ(sc
, cur
);
2979 if (MID_RBD_ID(rbd
) != MID_RBD_STDID
)
2980 panic("en_service: id mismatch");
2982 if (rbd
& MID_RBD_T
) {
2983 mlen
= 0; /* we've got trash */
2984 fill
= MID_RBD_SIZE
;
2985 EN_COUNT(sc
->ttrash
);
2987 printf("RX overflow lost %d cells!\n", MID_RBD_CNT(rbd
));
2990 mlen
= MID_RBD_SIZE
+ MID_CHDR_SIZE
+ MID_ATMDATASZ
; /* 1 cell (ick!) */
2995 tlen
= (MID_RBD_CNT(rbd
) * MID_ATMDATASZ
) + MID_RBD_SIZE
;
2996 pdu
= cur
+ tlen
- MID_PDU_SIZE
;
2998 pdu
-= (EN_RXSZ
*1024);
2999 pdu
= EN_READ(sc
, pdu
); /* get PDU in correct byte order */
3000 fill
= tlen
- MID_RBD_SIZE
- MID_PDU_LEN(pdu
);
3001 if (fill
< 0 || (rbd
& MID_RBD_CRCERR
) != 0) {
3002 static int first
= 1;
3005 printf("%s: %s, dropping frame\n", device_xname(&sc
->sc_dev
),
3006 (rbd
& MID_RBD_CRCERR
) ?
3007 "CRC error" : "invalid AAL5 PDU length");
3008 printf("%s: got %d cells (%d bytes), AAL5 len is %d bytes (pdu=0x%x)\n",
3009 device_xname(&sc
->sc_dev
), MID_RBD_CNT(rbd
),
3010 tlen
- MID_RBD_SIZE
, MID_PDU_LEN(pdu
), pdu
);
3012 printf("CRC error report disabled from now on!\n");
3019 ifp
= en_vci2ifp(sc
, vci
);
3032 * now allocate mbufs for mlen bytes of data, if out of mbufs, trash all
3035 * 1. it is possible that we've already allocated an mbuf for this pkt
3036 * but ran out of DRQs, in which case we saved the allocated mbuf on
3038 * 2. if we save an mbuf in "q" we store the "cur" (pointer) in the front
3039 * of the mbuf as an identity (that we can check later), and we also
3040 * store drqneed (so we don't have to recompute it).
3041 * 3. after this block of code, if m is still NULL then we ran out of mbufs
3044 m
= sc
->rxslot
[slot
].q
.ifq_head
;
3047 sav
= mtod(m
, u_int32_t
*);
3048 if (sav
[0] != cur
) {
3050 printf("%s: rx%d: q'ed mbuf %p not ours\n",
3051 device_xname(&sc
->sc_dev
), slot
, m
);
3053 m
= NULL
; /* wasn't ours */
3054 EN_COUNT(sc
->rxqnotus
);
3056 EN_COUNT(sc
->rxqus
);
3057 IF_DEQUEUE(&sc
->rxslot
[slot
].q
, m
);
3060 printf("%s: rx%d: recovered q'ed mbuf %p (drqneed=%d)\n",
3061 device_xname(&sc
->sc_dev
), slot
, m
, drqneed
);
3066 if (mlen
!= 0 && m
== NULL
) {
3067 m
= en_mget(sc
, mlen
, &drqneed
); /* allocate! */
3071 EN_COUNT(sc
->rxmbufout
);
3073 printf("%s: rx%d: out of mbufs\n", device_xname(&sc
->sc_dev
), slot
);
3077 printf("%s: rx%d: allocate mbuf %p, mlen=%d, drqneed=%d\n",
3078 device_xname(&sc
->sc_dev
), slot
, m
, mlen
, drqneed
);
3083 printf("%s: rx%d: VCI %d, mbuf_chain %p, mlen %d, fill %d\n",
3084 device_xname(&sc
->sc_dev
), slot
, vci
, m
, mlen
, fill
);
3088 * now check to see if we've got the DRQs needed. if we are out of
3089 * DRQs we must quit (saving our mbuf, if we've got one).
3092 needfill
= (fill
) ? 1 : 0;
3093 if (drqneed
+ needfill
> sc
->drq_free
) {
3094 sc
->need_drqs
= 1; /* flag condition */
3096 EN_COUNT(sc
->rxoutboth
);
3098 printf("%s: rx%d: out of DRQs *and* mbufs!\n", device_xname(&sc
->sc_dev
), slot
);
3100 return; /* >>> exit here if out of both mbufs and DRQs <<< */
3102 sav
= mtod(m
, u_int32_t
*);
3105 IF_ENQUEUE(&sc
->rxslot
[slot
].q
, m
);
3106 EN_COUNT(sc
->rxdrqout
);
3108 printf("%s: rx%d: out of DRQs\n", device_xname(&sc
->sc_dev
), slot
);
3110 return; /* >>> exit here if out of DRQs <<< */
3114 * at this point all resources have been allocated and we are commited
3115 * to servicing this slot.
3117 * dma = last location we told chip about
3118 * cur = current location
3119 * mlen = space in the mbuf we want
3120 * need = bytes to xfer in (decrs to zero)
3121 * fill = how much fill we need
3122 * tlen = how much data to transfer to this mbuf
3123 * cnt/bcode/count = <same as xmit>
3125 * 'needfill' not used after this point
3128 dma
= cur
; /* dma = last location we told chip about */
3129 need
= roundup(mlen
, sizeof(u_int32_t
));
3130 fill
= fill
- (need
- mlen
); /* note: may invalidate 'needfill' */
3132 for (tmp
= m
; tmp
!= NULL
&& need
> 0 ; tmp
= tmp
->m_next
) {
3133 tlen
= roundup(tmp
->m_len
, sizeof(u_int32_t
)); /* m_len set by en_mget */
3134 data
= mtod(tmp
, u_int32_t
*);
3137 printf("%s: rx%d: load mbuf %p, m_len=%d, m_data=%p, tlen=%d\n",
3138 device_xname(&sc
->sc_dev
), slot
, tmp
, tmp
->m_len
, tmp
->m_data
, tlen
);
3142 if (EN_NORXDMA
|| !en_dma
|| tlen
< EN_MINDMA
) {
3143 datastop
= (u_int32_t
*)((u_char
*) data
+ tlen
);
3144 /* copy loop: preserve byte order!!! use READDAT */
3145 while (data
!= datastop
) {
3146 *data
= EN_READDAT(sc
, cur
);
3148 EN_WRAPADD(start
, stop
, cur
, 4);
3152 printf("%s: rx%d: vci%d: copied %d bytes (%d left)\n",
3153 device_xname(&sc
->sc_dev
), slot
, vci
, tlen
, need
);
3158 /* DMA data (check to see if we need to sync DRQ first) */
3160 EN_DRQADD(sc
, WORD_IDX(start
,cur
), vci
, MIDDMA_JK
, 0, 0, 0, 0);
3162 printf("%s: rx%d: vci%d: drq_sync: advance pointer to %d\n",
3163 device_xname(&sc
->sc_dev
), slot
, vci
, cur
);
3167 #if !defined(MIDWAY_ENIONLY)
3170 * the adaptec DMA engine is smart and handles everything for us.
3173 if (sc
->is_adaptec
) {
3175 EN_WRAPADD(start
, stop
, cur
, tlen
);
3177 printf("%s: rx%d: vci%d: adp_dma %d bytes (%d left)\n",
3178 device_xname(&sc
->sc_dev
), slot
, vci
, tlen
, need
);
3180 end
= (need
== 0 && !fill
) ? MID_DMA_END
: 0;
3181 EN_DRQADD(sc
, tlen
, vci
, 0, vtophys((vaddr_t
)data
), mlen
, slot
, end
);
3184 dma
= cur
; /* update DMA pointer */
3187 #endif /* !MIDWAY_ENIONLY */
3190 #if !defined(MIDWAY_ADPONLY)
3193 * the ENI DMA engine is not so smart and need more help from us
3196 /* do we need to do a DMA op to align? */
3198 (needalign
= (((unsigned long) data
) & sc
->bestburstmask
)) != 0) {
3199 cnt
= sc
->bestburstlen
- needalign
;
3202 count
= cnt
/ sizeof(u_int32_t
);
3203 bcode
= MIDDMA_WORD
;
3205 count
= cnt
/ sizeof(u_int32_t
);
3206 bcode
= en_dmaplan
[count
].bcode
;
3207 count
= cnt
>> en_dmaplan
[count
].divshift
;
3210 EN_WRAPADD(start
, stop
, cur
, cnt
);
3212 printf("%s: rx%d: vci%d: al_dma %d bytes (%d left)\n",
3213 device_xname(&sc
->sc_dev
), slot
, vci
, cnt
, need
);
3216 end
= (need
== 0 && !fill
) ? MID_DMA_END
: 0;
3217 EN_DRQADD(sc
, count
, vci
, bcode
, vtophys((vaddr_t
)data
), mlen
, slot
, end
);
3220 data
= (u_int32_t
*)((u_char
*) data
+ cnt
);
3223 /* do we need a max-sized burst? */
3224 if (tlen
>= sc
->bestburstlen
) {
3225 count
= tlen
>> sc
->bestburstshift
;
3226 cnt
= count
<< sc
->bestburstshift
;
3227 bcode
= sc
->bestburstcode
;
3229 EN_WRAPADD(start
, stop
, cur
, cnt
);
3231 printf("%s: rx%d: vci%d: best_dma %d bytes (%d left)\n",
3232 device_xname(&sc
->sc_dev
), slot
, vci
, cnt
, need
);
3235 end
= (need
== 0 && !fill
) ? MID_DMA_END
: 0;
3236 EN_DRQADD(sc
, count
, vci
, bcode
, vtophys((vaddr_t
)data
), mlen
, slot
, end
);
3239 data
= (u_int32_t
*)((u_char
*) data
+ cnt
);
3242 /* do we need to do a cleanup burst? */
3244 count
= tlen
/ sizeof(u_int32_t
);
3245 bcode
= en_dmaplan
[count
].bcode
;
3246 count
= tlen
>> en_dmaplan
[count
].divshift
;
3248 EN_WRAPADD(start
, stop
, cur
, tlen
);
3250 printf("%s: rx%d: vci%d: cleanup_dma %d bytes (%d left)\n",
3251 device_xname(&sc
->sc_dev
), slot
, vci
, tlen
, need
);
3253 end
= (need
== 0 && !fill
) ? MID_DMA_END
: 0;
3254 EN_DRQADD(sc
, count
, vci
, bcode
, vtophys((vaddr_t
)data
), mlen
, slot
, end
);
3259 dma
= cur
; /* update DMA pointer */
3261 #endif /* !MIDWAY_ADPONLY */
3266 if (fill
|| dma
!= cur
) {
3269 printf("%s: rx%d: vci%d: skipping %d bytes of fill\n",
3270 device_xname(&sc
->sc_dev
), slot
, vci
, fill
);
3272 printf("%s: rx%d: vci%d: syncing chip from 0x%x to 0x%x [cur]\n",
3273 device_xname(&sc
->sc_dev
), slot
, vci
, dma
, cur
);
3275 EN_WRAPADD(start
, stop
, cur
, fill
);
3276 EN_DRQADD(sc
, WORD_IDX(start
,cur
), vci
, MIDDMA_JK
, 0, mlen
,
3278 /* dma = cur; */ /* not necessary since we are done */
3282 * done, remove stuff we don't want to pass up:
3283 * raw mode (boodi mode): pass everything up for later processing
3285 * aal0: remove RBD + cell header
3292 if (!aal5
) cnt
+= MID_CHDR_SIZE
;
3293 m
->m_len
-= cnt
; /* chop! */
3294 m
->m_pkthdr
.len
-= cnt
;
3297 IF_ENQUEUE(&sc
->rxslot
[slot
].indma
, m
);
3299 sc
->rxslot
[slot
].cur
= cur
; /* update master copy of 'cur' */
3302 printf("%s: rx%d: vci%d: DONE! cur now =0x%x\n",
3303 device_xname(&sc
->sc_dev
), slot
, vci
, cur
);
3306 goto same_vci
; /* get next packet in this slot */
3312 * functions we can call from ddb
3316 * en_dump: dump the state
3319 #define END_SWSL 0x00000040 /* swsl state */
3320 #define END_DRQ 0x00000020 /* drq state */
3321 #define END_DTQ 0x00000010 /* dtq state */
3322 #define END_RX 0x00000008 /* rx state */
3323 #define END_TX 0x00000004 /* tx state */
3324 #define END_MREGS 0x00000002 /* registers */
3325 #define END_STATS 0x00000001 /* dump stats */
3327 #define END_BITS "\20\7SWSL\6DRQ\5DTQ\4RX\3TX\2MREGS\1STATS"
3329 int en_dump(int unit
, int level
)
3331 struct en_softc
*sc
;
3335 for (lcv
= 0 ; lcv
< en_cd
.cd_ndevs
; lcv
++) {
3338 sc
= device_lookup_private(&en_cd
, lcv
);
3339 if (sc
== NULL
) continue;
3340 if (unit
!= -1 && unit
!= lcv
)
3343 snprintb(sbuf
, sizeof(sbuf
), END_BITS
, level
);
3344 printf("dumping device %s at level 0x%s\n", device_xname(&sc
->sc_dev
), sbuf
);
3346 if (sc
->dtq_us
== 0) {
3347 printf("<hasn't been en_init'd yet>\n");
3351 if (level
& END_STATS
) {
3352 printf(" en_stats:\n");
3353 printf(" %d mfix (%d failed); %d/%d head/tail byte DMAs, %d flushes\n",
3354 sc
->mfix
, sc
->mfixfail
, sc
->headbyte
, sc
->tailbyte
, sc
->tailflush
);
3355 printf(" %d rx DMA overflow interrupts\n", sc
->dmaovr
);
3356 printf(" %d times we ran out of TX space and stalled\n",
3358 printf(" %d times we ran out of DTQs\n", sc
->txdtqout
);
3359 printf(" %d times we launched a packet\n", sc
->launch
);
3360 printf(" %d times we launched without on-board header\n", sc
->lheader
);
3361 printf(" %d times we launched without on-board tail\n", sc
->ltail
);
3362 printf(" %d times we pulled the hw service list\n", sc
->hwpull
);
3363 printf(" %d times we pushed a vci on the sw service list\n",
3365 printf(" %d times RX pulled an mbuf from Q that wasn't ours\n",
3367 printf(" %d times RX pulled a good mbuf from Q\n", sc
->rxqus
);
3368 printf(" %d times we ran out of mbufs *and* DRQs\n", sc
->rxoutboth
);
3369 printf(" %d times we ran out of DRQs\n", sc
->rxdrqout
);
3371 printf(" %d transmit packets dropped due to mbsize\n", sc
->txmbovr
);
3372 printf(" %d cells trashed due to turned off rxvc\n", sc
->vtrash
);
3373 printf(" %d cells trashed due to totally full buffer\n", sc
->otrash
);
3374 printf(" %d cells trashed due almost full buffer\n", sc
->ttrash
);
3375 printf(" %d rx mbuf allocation failures\n", sc
->rxmbufout
);
3377 printf(" %d drops at natmintrq\n", natmintrq
.ifq_drops
);
3379 printf(" natmintr so_rcv: ok/drop cnt: %d/%d, ok/drop bytes: %d/%d\n",
3380 natm_sookcnt
, natm_sodropcnt
, natm_sookbytes
, natm_sodropbytes
);
3385 if (level
& END_MREGS
) {
3389 printf("resid = 0x%x\n", EN_READ(sc
, MID_RESID
));
3391 snprintb(ybuf
, sizeof(ybuf
), MID_INTBITS
, EN_READ(sc
, MID_INTSTAT
));
3392 printf("interrupt status = 0x%s\n", ybuf
);
3394 snprintb(ybuf
, sizeof(ybuf
), MID_INTBITS
, EN_READ(sc
, MID_INTENA
));
3395 printf("interrupt enable = 0x%s\n", ybuf
);
3397 snprintb(ybuf
, sizeof(ybuf
), MID_MCSRBITS
, EN_READ(sc
, MID_MAST_CSR
));
3398 printf("mcsr = 0x%s\n", ybuf
);
3400 printf("serv_write = [chip=%d] [us=%d]\n", EN_READ(sc
, MID_SERV_WRITE
),
3401 MID_SL_A2REG(sc
->hwslistp
));
3402 printf("DMA addr = 0x%x\n", EN_READ(sc
, MID_DMA_ADDR
));
3403 printf("DRQ: chip[rd=0x%x,wr=0x%x], sc[chip=0x%x,us=0x%x]\n",
3404 MID_DRQ_REG2A(EN_READ(sc
, MID_DMA_RDRX
)),
3405 MID_DRQ_REG2A(EN_READ(sc
, MID_DMA_WRRX
)), sc
->drq_chip
, sc
->drq_us
);
3406 printf("DTQ: chip[rd=0x%x,wr=0x%x], sc[chip=0x%x,us=0x%x]\n",
3407 MID_DTQ_REG2A(EN_READ(sc
, MID_DMA_RDTX
)),
3408 MID_DTQ_REG2A(EN_READ(sc
, MID_DMA_WRTX
)), sc
->dtq_chip
, sc
->dtq_us
);
3410 printf(" unusal txspeeds: ");
3411 for (cnt
= 0 ; cnt
< MID_N_VC
; cnt
++)
3412 if (sc
->txspeed
[cnt
])
3413 printf(" vci%d=0x%x", cnt
, sc
->txspeed
[cnt
]);
3416 printf(" rxvc slot mappings: ");
3417 for (cnt
= 0 ; cnt
< MID_N_VC
; cnt
++)
3418 if (sc
->rxvc2slot
[cnt
] != RX_NONE
)
3419 printf(" %d->%d", cnt
, sc
->rxvc2slot
[cnt
]);
3424 if (level
& END_TX
) {
3426 for (slot
= 0 ; slot
< EN_NTX
; slot
++) {
3427 printf("tx%d: start/stop/cur=0x%x/0x%x/0x%x [%d] ", slot
,
3428 sc
->txslot
[slot
].start
, sc
->txslot
[slot
].stop
, sc
->txslot
[slot
].cur
,
3429 (sc
->txslot
[slot
].cur
- sc
->txslot
[slot
].start
)/4);
3430 printf("mbsize=%d, bfree=%d\n", sc
->txslot
[slot
].mbsize
,
3431 sc
->txslot
[slot
].bfree
);
3432 printf("txhw: base_address=0x%lx, size=%d, read=%d, descstart=%d\n",
3433 (u_long
)MIDX_BASE(EN_READ(sc
, MIDX_PLACE(slot
))),
3434 MIDX_SZ(EN_READ(sc
, MIDX_PLACE(slot
))),
3435 EN_READ(sc
, MIDX_READPTR(slot
)), EN_READ(sc
, MIDX_DESCSTART(slot
)));
3439 if (level
& END_RX
) {
3440 printf(" recv slots:\n");
3441 for (slot
= 0 ; slot
< sc
->en_nrx
; slot
++) {
3442 printf("rx%d: vci=%d: start/stop/cur=0x%x/0x%x/0x%x ", slot
,
3443 sc
->rxslot
[slot
].atm_vci
, sc
->rxslot
[slot
].start
,
3444 sc
->rxslot
[slot
].stop
, sc
->rxslot
[slot
].cur
);
3445 printf("mode=0x%x, atm_flags=0x%x, oth_flags=0x%x\n",
3446 sc
->rxslot
[slot
].mode
, sc
->rxslot
[slot
].atm_flags
,
3447 sc
->rxslot
[slot
].oth_flags
);
3448 printf("RXHW: mode=0x%x, DST_RP=0x%x, WP_ST_CNT=0x%x\n",
3449 EN_READ(sc
, MID_VC(sc
->rxslot
[slot
].atm_vci
)),
3450 EN_READ(sc
, MID_DST_RP(sc
->rxslot
[slot
].atm_vci
)),
3451 EN_READ(sc
, MID_WP_ST_CNT(sc
->rxslot
[slot
].atm_vci
)));
3455 if (level
& END_DTQ
) {
3456 printf(" dtq [need_dtqs=%d,dtq_free=%d]:\n",
3457 sc
->need_dtqs
, sc
->dtq_free
);
3459 while (ptr
!= sc
->dtq_us
) {
3460 reg
= EN_READ(sc
, ptr
);
3461 printf("\t0x%x=[cnt=%d, chan=%d, end=%d, type=%d @ 0x%x]\n",
3462 sc
->dtq
[MID_DTQ_A2REG(ptr
)], MID_DMA_CNT(reg
), MID_DMA_TXCHAN(reg
),
3463 (reg
& MID_DMA_END
) != 0, MID_DMA_TYPE(reg
), EN_READ(sc
, ptr
+4));
3464 EN_WRAPADD(MID_DTQOFF
, MID_DTQEND
, ptr
, 8);
3468 if (level
& END_DRQ
) {
3469 printf(" drq [need_drqs=%d,drq_free=%d]:\n",
3470 sc
->need_drqs
, sc
->drq_free
);
3472 while (ptr
!= sc
->drq_us
) {
3473 reg
= EN_READ(sc
, ptr
);
3474 printf("\t0x%x=[cnt=%d, chan=%d, end=%d, type=%d @ 0x%x]\n",
3475 sc
->drq
[MID_DRQ_A2REG(ptr
)], MID_DMA_CNT(reg
), MID_DMA_RXVCI(reg
),
3476 (reg
& MID_DMA_END
) != 0, MID_DMA_TYPE(reg
), EN_READ(sc
, ptr
+4));
3477 EN_WRAPADD(MID_DRQOFF
, MID_DRQEND
, ptr
, 8);
3481 if (level
& END_SWSL
) {
3482 printf(" swslist [size=%d]: ", sc
->swsl_size
);
3483 for (cnt
= sc
->swsl_head
; cnt
!= sc
->swsl_tail
;
3484 cnt
= (cnt
+ 1) % MID_SL_N
)
3485 printf("0x%x ", sc
->swslist
[cnt
]);
3493 * en_dumpmem: dump the memory
3496 int en_dumpmem(int unit
, int addr
, int len
)
3498 struct en_softc
*sc
;
3501 sc
= device_lookup_private(&en_cd
, unit
);
3503 printf("invalid unit number: %d\n", unit
);
3507 if (addr
< MID_RAMOFF
|| addr
+ len
*4 > MID_MAXOFF
|| len
<= 0) {
3508 printf("invalid addr/len number: %d, %d\n", addr
, len
);
3511 printf("dumping %d words starting at offset 0x%x\n", len
, addr
);
3513 reg
= EN_READ(sc
, addr
);
3514 printf("mem[0x%x] = 0x%x\n", addr
, reg
);
3523 * ATM PVC extension: shaper control and pvc subinterfaces
3527 * the list of the interfaces sharing the physical device.
3528 * in order to avoid starvation, the interfaces are scheduled in
3529 * a round-robin fashion when en_start is called from tx complete
3532 static void rrp_add(struct en_softc
*sc
, struct ifnet
*ifp
)
3534 struct rrp
*head
, *p
, *new;
3537 if ((p
= head
) != NULL
) {
3539 if (p
->ifp
== ifp
) {
3540 /* an entry for this ifp already exits */
3544 if (p
->next
== head
)
3550 /* create a new entry */
3551 new = malloc(sizeof(struct rrp
), M_DEVBUF
, M_WAITOK
);
3553 printf("en_rrp_add: malloc failed!\n");
3561 /* this is the only one in the list */
3566 /* add the new entry at the tail of the list */
3567 new->next
= p
->next
;
3572 #if 0 /* not used */
3573 static void rrp_delete(struct en_softc
*sc
, struct ifnet
*ifp
)
3575 struct rrp
*head
, *p
, *prev
;
3581 printf("rrp_delete: no list!\n");
3587 if (p
->ifp
== ifp
) {
3591 /* remove this entry */
3593 /* this is the only entry in the list */
3597 prev
->next
= p
->next
;
3599 sc
->txrrp
= p
->next
;
3606 printf("rrp_delete: no matching entry!\n");
3613 static struct ifnet
*
3614 en_vci2ifp(struct en_softc
*sc
, int vci
)
3616 struct pvcsif
*pvcsif
;
3618 LIST_FOREACH(pvcsif
, &sc
->sif_list
, sif_links
) {
3619 if (vci
== pvcsif
->sif_vci
)
3620 return (&pvcsif
->sif_if
);
3626 * create and attach per pvc subinterface
3627 * (currently detach is not supported)
3629 static struct ifnet
*
3630 en_pvcattach(struct ifnet
*ifp
)
3632 struct en_softc
*sc
= (struct en_softc
*) ifp
->if_softc
;
3633 struct ifnet
*pvc_ifp
;
3636 if ((pvc_ifp
= pvcsif_alloc()) == NULL
)
3639 pvc_ifp
->if_softc
= sc
;
3640 pvc_ifp
->if_ioctl
= en_ioctl
;
3641 pvc_ifp
->if_start
= en_start
;
3642 pvc_ifp
->if_flags
= (IFF_POINTOPOINT
|IFF_MULTICAST
) |
3643 (ifp
->if_flags
& (IFF_RUNNING
|IFF_SIMPLEX
|IFF_NOTRAILERS
));
3646 LIST_INSERT_HEAD(&sc
->sif_list
, (struct pvcsif
*)pvc_ifp
, sif_links
);
3648 atm_ifattach(pvc_ifp
);
3651 rrp_add(sc
, pvc_ifp
);
3659 /* txspeed conversion derived from linux drivers/atm/eni.c
3660 by Werner Almesberger, EPFL LRC */
3661 static const int pre_div
[] = { 4,16,128,2048 };
3663 static int en_pcr2txspeed(int pcr
)
3667 if (pcr
== 0 || pcr
> 347222)
3668 pre
= res
= 0; /* max rate */
3670 for (pre
= 0; pre
< 3; pre
++)
3671 if (25000000/pre_div
[pre
]/64 <= pcr
)
3673 div
= pre_div
[pre
]*(pcr
);
3676 * the shaper value should be rounded down,
3677 * instead of rounded up.
3678 * (which means "res" should be rounded up.)
3680 res
= (25000000 + div
-1)/div
- 1;
3682 res
= 25000000/div
-1;
3689 return ((pre
<< 6) + res
);
3692 static int en_txspeed2pcr(int txspeed
)
3696 pre
= (txspeed
>> 6) & 0x3;
3697 res
= txspeed
& 0x3f;
3698 pcr
= 25000000 / pre_div
[pre
] / (res
+1);
3703 * en_txctl selects a hardware transmit channel and sets the shaper value.
3704 * en_txctl should be called after enabling the vc by en_rxctl
3705 * since it assumes a transmit channel is already assigned by en_rxctl
3708 static int en_txctl(struct en_softc
*sc
, int vci
, int joint_vci
, int pcr
)
3710 int txspeed
, txchan
, s
;
3713 txspeed
= en_pcr2txspeed(pcr
);
3718 txchan
= sc
->txvc2slot
[vci
];
3719 sc
->txslot
[txchan
].nref
--;
3723 /* use the same channel */
3724 txchan
= sc
->txvc2slot
[joint_vci
];
3728 for (txchan
= 1; txchan
< EN_NTX
; txchan
++) {
3729 if (sc
->txslot
[txchan
].nref
== 0)
3733 if (txchan
== EN_NTX
) {
3740 * to allow multiple vc's to share a slot,
3741 * use a slot with the smallest reference count
3745 for (slot
= 2; slot
< EN_NTX
; slot
++)
3746 if (sc
->txslot
[slot
].nref
< sc
->txslot
[txchan
].nref
)
3751 sc
->txvc2slot
[vci
] = txchan
;
3752 sc
->txslot
[txchan
].nref
++;
3754 /* set the shaper parameter */
3755 sc
->txspeed
[vci
] = (u_int8_t
)txspeed
;
3759 printf("VCI:%d PCR set to %d, tx channel %d\n", vci
, pcr
, txchan
);
3761 printf(" slot shared with VCI:%d\n", joint_vci
);
3766 static int en_pvctx(struct en_softc
*sc
, struct pvctxreq
*pvcreq
)
3769 struct atm_pseudoioctl api
;
3770 struct atm_pseudohdr
*pvc_aph
, *pvc_joint
;
3771 int vci
, joint_vci
, pcr
;
3774 /* check vpi:vci values */
3775 pvc_aph
= &pvcreq
->pvc_aph
;
3776 pvc_joint
= &pvcreq
->pvc_joint
;
3778 vci
= ATM_PH_VCI(pvc_aph
);
3779 joint_vci
= ATM_PH_VCI(pvc_joint
);
3780 pcr
= pvcreq
->pvc_pcr
;
3782 if (ATM_PH_VPI(pvc_aph
) != 0 || vci
>= MID_N_VC
||
3783 ATM_PH_VPI(pvc_joint
) != 0 || joint_vci
>= MID_N_VC
)
3784 return (EADDRNOTAVAIL
);
3786 if ((ifp
= ifunit(pvcreq
->pvc_ifname
)) == NULL
)
3790 /* negative pcr means disable the vc. */
3791 if (sc
->rxvc2slot
[vci
] == RX_NONE
)
3792 /* already disabled */
3795 ATM_PH_FLAGS(&api
.aph
) = 0;
3796 ATM_PH_VPI(&api
.aph
) = 0;
3797 ATM_PH_SETVCI(&api
.aph
, vci
);
3800 error
= en_rxctl(sc
, &api
, 0);
3802 if (error
== 0 && &sc
->enif
!= ifp
) {
3803 /* clear vc info of this subinterface */
3804 struct pvcsif
*pvcsif
= (struct pvcsif
*)ifp
;
3806 ATM_PH_SETVCI(&api
.aph
, 0);
3807 pvcsif
->sif_aph
= api
.aph
;
3808 pvcsif
->sif_vci
= 0;
3813 if (&sc
->enif
== ifp
) {
3814 /* called for an en interface */
3815 if (sc
->rxvc2slot
[vci
] == RX_NONE
) {
3816 /* vc is not active */
3818 printf("%s: en_pvctx: rx not active! vci=%d\n",
3819 ifp
->if_xname
, vci
);
3821 printf("%s%d: en_pvctx: rx not active! vci=%d\n",
3822 ifp
->if_name
, ifp
->if_unit
, vci
);
3828 /* called for a pvc subinterface */
3829 struct pvcsif
*pvcsif
= (struct pvcsif
*)ifp
;
3832 strlcpy(pvcreq
->pvc_ifname
, sc
->enif
.if_xname
,
3833 sizeof(pvcreq
->pvc_ifname
));
3835 snprintf(pvcreq
->pvc_ifname
, sizeof(pvcreq
->pvc_ifname
), "%s%d",
3836 sc
->enif
.if_name
, sc
->enif
.if_unit
);
3838 ATM_PH_FLAGS(&api
.aph
) =
3839 (ATM_PH_FLAGS(pvc_aph
) & (ATM_PH_AAL5
|ATM_PH_LLCSNAP
));
3840 ATM_PH_VPI(&api
.aph
) = 0;
3841 ATM_PH_SETVCI(&api
.aph
, vci
);
3843 pvcsif
->sif_aph
= api
.aph
;
3844 pvcsif
->sif_vci
= ATM_PH_VCI(&api
.aph
);
3846 if (sc
->rxvc2slot
[vci
] == RX_NONE
) {
3847 /* vc is not active, enable rx */
3848 error
= en_rxctl(sc
, &api
, 1);
3853 /* vc is already active, update aph in softc */
3854 sc
->rxslot
[sc
->rxvc2slot
[vci
]].atm_flags
=
3855 ATM_PH_FLAGS(&api
.aph
);
3859 error
= en_txctl(sc
, vci
, joint_vci
, pcr
);
3862 if (sc
->txspeed
[vci
] != 0)
3863 pvcreq
->pvc_pcr
= en_txspeed2pcr(sc
->txspeed
[vci
]);
3865 pvcreq
->pvc_pcr
= 0;
3871 static int en_pvctxget(struct en_softc
*sc
, struct pvctxreq
*pvcreq
)
3873 struct pvcsif
*pvcsif
;
3877 if ((ifp
= ifunit(pvcreq
->pvc_ifname
)) == NULL
)
3880 if (ifp
== &sc
->enif
) {
3881 /* physical interface: assume vci is specified */
3882 struct atm_pseudohdr
*pvc_aph
;
3884 pvc_aph
= &pvcreq
->pvc_aph
;
3885 vci
= ATM_PH_VCI(pvc_aph
);
3886 if ((slot
= sc
->rxvc2slot
[vci
]) == RX_NONE
)
3887 ATM_PH_FLAGS(pvc_aph
) = 0;
3889 ATM_PH_FLAGS(pvc_aph
) = sc
->rxslot
[slot
].atm_flags
;
3890 ATM_PH_VPI(pvc_aph
) = 0;
3893 /* pvc subinterface */
3895 strlcpy(pvcreq
->pvc_ifname
, sc
->enif
.if_xname
,
3896 sizeof(pvcreq
->pvc_ifname
));
3898 snprintf(pvcreq
->pvc_ifname
, sizeof(pvcreq
->pvc_ifname
), "%s%d",
3899 sc
->enif
.if_name
, sc
->enif
.if_unit
);
3902 pvcsif
= (struct pvcsif
*)ifp
;
3903 pvcreq
->pvc_aph
= pvcsif
->sif_aph
;
3904 vci
= pvcsif
->sif_vci
;
3907 if ((slot
= sc
->rxvc2slot
[vci
]) == RX_NONE
) {
3908 /* vc is not active */
3909 ATM_PH_FLAGS(&pvcreq
->pvc_aph
) = 0;
3910 pvcreq
->pvc_pcr
= -1;
3912 else if (sc
->txspeed
[vci
])
3913 pvcreq
->pvc_pcr
= en_txspeed2pcr(sc
->txspeed
[vci
]);
3915 pvcreq
->pvc_pcr
= 0;
3920 #endif /* ATM_PVCEXT */
3922 #endif /* NEN > 0 || !defined(__FreeBSD__) */