summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1998-03-08 16:31:24 +0000
committerpeter <peter@FreeBSD.org>1998-03-08 16:31:24 +0000
commit8789e5ed683148069ab717948d2db349815f3184 (patch)
treea7114063dcf405ee6e45b50000367eb0985c6375
parent4093d193b6d8d3e06ee377e3dcad6b2e17d8bbf2 (diff)
downloadFreeBSD-src-8789e5ed683148069ab717948d2db349815f3184.zip
FreeBSD-src-8789e5ed683148069ab717948d2db349815f3184.tar.gz
Import de driver from netbsd as of a short while ago. Most of the
changes are irrelevant (to us), but there is a change that looks like it might affect the detection of older cards with BNC ports.
-rw-r--r--sys/pci/dc21040reg.h13
-rw-r--r--sys/pci/if_de.c420
-rw-r--r--sys/pci/if_devar.h87
3 files changed, 480 insertions, 40 deletions
diff --git a/sys/pci/dc21040reg.h b/sys/pci/dc21040reg.h
index 8ac2761..a009cb0 100644
--- a/sys/pci/dc21040reg.h
+++ b/sys/pci/dc21040reg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dc21040reg.h,v 1.13 1997/10/17 09:26:58 matt Exp $ */
+/* $NetBSD: dc21040reg.h,v 1.14 1998/02/27 13:17:25 mycroft Exp $ */
/*-
* Copyright (c) 1994, 1995, 1996 Matt Thomas <matt@3am-software.com>
@@ -518,17 +518,6 @@ typedef struct {
#define PHYCTL_AUTONEG_RESTART 0x0200
#define PHYCTL_FULL_DUPLEX 0x0100
-
-#define MII_RD 0x00040000
-#define MII_WR 0x00000000
-#define MII_DIN 0x00080000
-#define MII_DOUT 0x00020000
-#define MII_DOUTON MII_DOUT
-#define MII_DOUTOFF MII_DOUT
-#define MII_CLK 0x00010000
-#define MII_CLKON MII_CLK
-#define MII_CLKOFF MII_CLK
-
/*
* Definitions for the DE425.
*/
diff --git a/sys/pci/if_de.c b/sys/pci/if_de.c
index b4fbe53..a377242 100644
--- a/sys/pci/if_de.c
+++ b/sys/pci/if_de.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_de.c,v 1.56 1997/10/20 14:32:46 matt Exp $ */
+/* $NetBSD: if_de.c,v 1.62 1998/02/11 01:28:22 thorpej Exp $ */
/*-
* Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com)
@@ -437,8 +437,8 @@ tulip_linkup(
* No reason to change media if we have the right media.
*/
tulip_reset(sc);
- tulip_init(sc);
}
+ tulip_init(sc);
}
static void
@@ -2242,8 +2242,13 @@ tulip_identify_cogent_nic(
strcpy(sc->tulip_boardid, "Cogent ");
if (sc->tulip_chipid == TULIP_21140 || sc->tulip_chipid == TULIP_21140A) {
if (sc->tulip_rombuf[32] == TULIP_COGENT_EM100TX_ID) {
- strcat(sc->tulip_boardid, "EM100FX ");
+ strcat(sc->tulip_boardid, "EM100TX ");
sc->tulip_boardsw = &tulip_21140_cogent_em100_boardsw;
+#if defined(TULIP_COGENT_EM110TX_ID)
+ } else if (sc->tulip_rombuf[32] == TULIP_COGENT_EM110TX_ID) {
+ strcat(sc->tulip_boardid, "EM110TX ");
+ sc->tulip_boardsw = &tulip_21140_cogent_em100_boardsw;
+#endif
} else if (sc->tulip_rombuf[32] == TULIP_COGENT_EM100FX_ID) {
strcat(sc->tulip_boardid, "EM100FX ");
sc->tulip_boardsw = &tulip_21140_cogent_em100_boardsw;
@@ -3160,8 +3165,16 @@ tulip_reset(
sc->tulip_if.if_flags &= ~IFF_OACTIVE;
}
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ TULIP_CSR_WRITE(sc, csr_txlist, sc->tulip_txdescmap->dm_segs[0].ds_addr);
+#else
TULIP_CSR_WRITE(sc, csr_txlist, TULIP_KVATOPHYS(sc, &sc->tulip_txinfo.ri_first[0]));
+#endif
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ TULIP_CSR_WRITE(sc, csr_rxlist, sc->tulip_rxdescmap->dm_segs[0].ds_addr);
+#else
TULIP_CSR_WRITE(sc, csr_rxlist, TULIP_KVATOPHYS(sc, &sc->tulip_rxinfo.ri_first[0]));
+#endif
TULIP_CSR_WRITE(sc, csr_busmode,
(1 << (TULIP_BURSTSIZE(sc->tulip_unit) + 8))
|TULIP_BUSMODE_CACHE_ALIGN8
@@ -3174,10 +3187,18 @@ tulip_reset(
* Free all the mbufs that were on the transmit ring.
*/
for (;;) {
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ bus_dmamap_t map;
+#endif
struct mbuf *m;
IF_DEQUEUE(&sc->tulip_txq, m);
if (m == NULL)
break;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ map = M_GETCTX(m, bus_dmamap_t);
+ bus_dmamap_unload(sc->tulip_dmatag, map);
+ sc->tulip_txmaps[sc->tulip_txmaps_free++] = map;
+#endif
m_freem(m);
}
@@ -3186,6 +3207,11 @@ tulip_reset(
ri->ri_free = ri->ri_max;
for (di = ri->ri_first; di < ri->ri_last; di++)
di->d_status = 0;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ bus_dmamap_sync(sc->tulip_dmatag, sc->tulip_txdescmap,
+ 0, sc->tulip_txdescmap->dm_mapsize,
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
+#endif
/*
* We need to collect all the mbufs were on the
@@ -3201,11 +3227,24 @@ tulip_reset(
di->d_length1 = 0; di->d_addr1 = 0;
di->d_length2 = 0; di->d_addr2 = 0;
}
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ bus_dmamap_sync(sc->tulip_dmatag, sc->tulip_rxdescmap,
+ 0, sc->tulip_rxdescmap->dm_mapsize,
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
+#endif
for (;;) {
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ bus_dmamap_t map;
+#endif
struct mbuf *m;
IF_DEQUEUE(&sc->tulip_rxq, m);
if (m == NULL)
break;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ map = M_GETCTX(m, bus_dmamap_t);
+ bus_dmamap_unload(sc->tulip_dmatag, map);
+ sc->tulip_rxmaps[sc->tulip_rxmaps_free++] = map;
+#endif
m_freem(m);
}
@@ -3300,6 +3339,10 @@ tulip_rx_intr(
int total_len = 0, last_offset = 0;
struct mbuf *ms = NULL, *me = NULL;
int accept = 0;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ bus_dmamap_t map;
+ int error;
+#endif
if (fillok && sc->tulip_rxq.ifq_len < TULIP_RXQ_TARGET)
goto queue_mbuf;
@@ -3314,11 +3357,12 @@ tulip_rx_intr(
*/
if (eop == ri->ri_nextout)
break;
-
+
/*
* 90% of the packets will fit in one descriptor. So we optimize
* for that case.
*/
+ TULIP_RXDESC_POSTSYNC(sc, eop, sizeof(*eop));
if ((((volatile tulip_desc_t *) eop)->d_status & (TULIP_DSTS_OWNER|TULIP_DSTS_RxFIRSTDESC|TULIP_DSTS_RxLASTDESC)) == (TULIP_DSTS_RxFIRSTDESC|TULIP_DSTS_RxLASTDESC)) {
IF_DEQUEUE(&sc->tulip_rxq, ms);
me = ms;
@@ -3337,6 +3381,7 @@ tulip_rx_intr(
while ((((volatile tulip_desc_t *) eop)->d_status & TULIP_DSTS_RxLASTDESC) == 0) {
if (++eop == ri->ri_last)
eop = ri->ri_first;
+ TULIP_RXDESC_POSTSYNC(sc, eop, sizeof(*eop));
if (eop == ri->ri_nextout || ((((volatile tulip_desc_t *) eop)->d_status & TULIP_DSTS_OWNER))) {
#if defined(TULIP_DEBUG)
sc->tulip_dbg.dbg_rxintrs++;
@@ -3361,6 +3406,15 @@ tulip_rx_intr(
*/
IF_DEQUEUE(&sc->tulip_rxq, ms);
for (me = ms; total_len > 0; total_len--) {
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ map = M_GETCTX(me, bus_dmamap_t);
+ TULIP_RXMAP_POSTSYNC(sc, map);
+ bus_dmamap_unload(sc->tulip_dmatag, map);
+ sc->tulip_rxmaps[sc->tulip_rxmaps_free++] = map;
+#if defined(DIAGNOSTIC)
+ M_SETCTX(me, NULL);
+#endif
+#endif /* TULIP_BUS_DMA */
me->m_len = TULIP_RX_BUFLEN;
last_offset += TULIP_RX_BUFLEN;
IF_DEQUEUE(&sc->tulip_rxq, me->m_next);
@@ -3382,6 +3436,18 @@ tulip_rx_intr(
#endif
)) {
me->m_len = total_len - last_offset;
+
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ map = M_GETCTX(me, bus_dmamap_t);
+ bus_dmamap_sync(sc->tulip_dmatag, map, 0, me->m_len,
+ BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
+ bus_dmamap_unload(sc->tulip_dmatag, map);
+ sc->tulip_rxmaps[sc->tulip_rxmaps_free++] = map;
+#if defined(DIAGNOSTIC)
+ M_SETCTX(me, NULL);
+#endif
+#endif /* TULIP_BUS_DMA */
+
eh = *mtod(ms, struct ether_header *);
#if NBPFILTER > 0
if (sc->tulip_bpf != NULL)
@@ -3402,20 +3468,29 @@ tulip_rx_intr(
if (eop->d_status & (TULIP_DSTS_RxBADLENGTH|TULIP_DSTS_RxOVERFLOW|TULIP_DSTS_RxWATCHDOG)) {
sc->tulip_dot3stats.dot3StatsInternalMacReceiveErrors++;
} else {
+#if defined(TULIP_VERBOSE)
const char *error = NULL;
+#endif
if (eop->d_status & TULIP_DSTS_RxTOOLONG) {
sc->tulip_dot3stats.dot3StatsFrameTooLongs++;
+#if defined(TULIP_VERBOSE)
error = "frame too long";
+#endif
}
if (eop->d_status & TULIP_DSTS_RxBADCRC) {
if (eop->d_status & TULIP_DSTS_RxDRBBLBIT) {
sc->tulip_dot3stats.dot3StatsAlignmentErrors++;
+#if defined(TULIP_VERBOSE)
error = "alignment error";
+#endif
} else {
sc->tulip_dot3stats.dot3StatsFCSErrors++;
+#if defined(TULIP_VERBOSE)
error = "bad crc";
+#endif
}
}
+#if defined(TULIP_VERBOSE)
if (error != NULL && (sc->tulip_flags & TULIP_NOMESSAGES) == 0) {
printf(TULIP_PRINTF_FMT ": receive: " TULIP_EADDR_FMT ": %s\n",
TULIP_PRINTF_ARGS,
@@ -3423,6 +3498,7 @@ tulip_rx_intr(
error);
sc->tulip_flags |= TULIP_NOMESSAGES;
}
+#endif
}
}
next:
@@ -3512,9 +3588,42 @@ tulip_rx_intr(
* receive queue.
*/
do {
- ri->ri_nextout->d_length1 = TULIP_RX_BUFLEN;
- ri->ri_nextout->d_addr1 = TULIP_KVATOPHYS(sc, mtod(ms, caddr_t));
- ri->ri_nextout->d_status = TULIP_DSTS_OWNER;
+ tulip_desc_t * const nextout = ri->ri_nextout;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+ if (sc->tulip_rxmaps_free > 0) {
+ map = sc->tulip_rxmaps[--sc->tulip_rxmaps_free];
+ } else {
+ m_freem(ms);
+ sc->tulip_flags |= TULIP_RXBUFSLOW;
+#if defined(TULIP_DEBUG)
+ sc->tulip_dbg.dbg_rxlowbufs++;
+#endif
+ break;
+ }
+ M_SETCTX(ms, map);
+ error = bus_dmamap_load(sc->tulip_dmatag, map, mtod(ms, void *),
+ TULIP_RX_BUFLEN, NULL, BUS_DMA_NOWAIT);
+ if (error) {
+ printf(TULIP_PRINTF_FMT ": unable to load rx map, "
+ "error = %d\n", TULIP_PRINTF_ARGS, error);
+ panic("tulip_rx_intr"); /* XXX */
+ }
+ nextout->d_addr1 = map->dm_segs[0].ds_addr;
+ nextout->d_length1 = map->dm_segs[0].ds_len;
+ if (map->dm_nsegs == 2) {
+ nextout->d_addr2 = map->dm_segs[1].ds_addr;
+ nextout->d_length2 = map->dm_segs[1].ds_len;
+ } else {
+ nextout->d_addr2 = 0;
+ nextout->d_length2 = 0;
+ }
+ TULIP_RXDESC_POSTSYNC(sc, nextout, sizeof(*nextout));
+#else /* TULIP_BUS_DMA */
+ nextout->d_addr1 = TULIP_KVATOPHYS(sc, mtod(ms, caddr_t));
+ nextout->d_length1 = TULIP_RX_BUFLEN;
+#endif /* TULIP_BUS_DMA */
+ nextout->d_status = TULIP_DSTS_OWNER;
+ TULIP_RXDESC_POSTSYNC(sc, nextout, sizeof(u_int32_t));
if (++ri->ri_nextout == ri->ri_last)
ri->ri_nextout = ri->ri_first;
me = ms->m_next;
@@ -3546,6 +3655,8 @@ tulip_tx_intr(
while (ri->ri_free < ri->ri_max) {
u_int32_t d_flag;
+
+ TULIP_TXDESC_POSTSYNC(sc, ri->ri_nextin, sizeof(*ri->ri_nextin));
if (((volatile tulip_desc_t *) ri->ri_nextin)->d_status & TULIP_DSTS_OWNER)
break;
@@ -3559,6 +3670,7 @@ tulip_tx_intr(
* Make sure we ack the RXSTOPPED so we won't get
* an abormal interrupt indication.
*/
+ TULIP_TXMAP_POSTSYNC(sc, sc->tulip_setupmap);
sc->tulip_flags &= ~(TULIP_DOINGSETUP|TULIP_HASHONLY);
if (ri->ri_nextin->d_flag & TULIP_DFLAG_TxINVRSFILT)
sc->tulip_flags |= TULIP_HASHONLY;
@@ -3574,6 +3686,11 @@ tulip_tx_intr(
const u_int32_t d_status = ri->ri_nextin->d_status;
IF_DEQUEUE(&sc->tulip_txq, m);
if (m != NULL) {
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ bus_dmamap_t map = M_GETCTX(m, bus_dmamap_t);
+ TULIP_TXMAP_POSTSYNC(sc, map);
+ sc->tulip_txmaps[sc->tulip_txmaps_free++] = map;
+#endif /* TULIP_BUS_DMA */
#if NBPFILTER > 0
if (sc->tulip_bpf != NULL)
TULIP_BPF_MTAP(sc, m);
@@ -4025,7 +4142,12 @@ tulip_txput(
tulip_desc_t *eop, *nextout;
int segcnt, free;
u_int32_t d_status;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ bus_dmamap_t map;
+ int error;
+#else
struct mbuf *m0;
+#endif
#if defined(TULIP_DEBUG)
if ((sc->tulip_cmdmode & TULIP_CMD_TXRUN) == 0) {
@@ -4054,12 +4176,90 @@ tulip_txput(
* case we will just wait for the ring to empty. In the
* latter case we have to recopy.
*/
+#if !defined(TULIP_BUS_DMA) || defined(TULIP_BUS_DMA_NOTX)
+ m0 = m;
again:
+#endif
d_status = 0;
eop = nextout = ri->ri_nextout;
- m0 = m;
segcnt = 0;
free = ri->ri_free;
+
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ if (sc->tulip_txmaps_free > 0) {
+ map = sc->tulip_txmaps[--sc->tulip_txmaps_free];
+ } else {
+ sc->tulip_flags |= TULIP_WANTTXSTART;
+ goto finish;
+ }
+ error = bus_dmamap_load_mbuf(sc->tulip_dmatag, map, m, BUS_DMA_NOWAIT);
+ if (error == EFBIG) {
+ /*
+ * The packet exceeds the number of transmit buffer
+ * entries that we can use for one packet, so we have
+ * to recopy it into one mbuf and then try again.
+ */
+ m = tulip_mbuf_compress(m);
+ if (m == NULL)
+ goto finish;
+ error = bus_dmamap_load_mbuf(sc->tulip_dmatag, map, m, BUS_DMA_NOWAIT);
+ if (error) {
+ printf(TULIP_PRINTF_FMT ": unable to load tx map, "
+ "error = %d\n", TULIP_PRINTF_ARGS, error);
+ goto finish;
+ }
+ } else if (error != 0) {
+ /*
+ * Some other error (possibly resource shortage?) has ocurred.
+ * Report it.
+ */
+ printf(TULIP_PRINTF_FMT ": unable to load tx map, error = %d\n",
+ TULIP_PRINTF_ARGS, error);
+ goto finish;
+ }
+ if ((free -= (map->dm_nsegs + 1) / 2) <= 0
+ /*
+ * See if there's any unclaimed space in the transmit ring.
+ */
+ || (free += tulip_tx_intr(sc)) <= 0) {
+ /*
+ * There's no more room but since nothing
+ * has been committed at this point, just
+ * show output is active, put back the
+ * mbuf and return.
+ */
+ sc->tulip_flags |= TULIP_WANTTXSTART;
+ goto finish;
+ }
+ for (; map->dm_nsegs - segcnt > 1; segcnt += 2) {
+ eop = nextout;
+ eop->d_flag &= TULIP_DFLAG_ENDRING|TULIP_DFLAG_CHAIN;
+ eop->d_status = d_status;
+ eop->d_addr1 = map->dm_segs[segcnt].ds_addr;
+ eop->d_length1 = map->dm_segs[segcnt].ds_len;
+ eop->d_addr2 = map->dm_segs[segcnt+1].ds_addr;
+ eop->d_length2 = map->dm_segs[segcnt+1].ds_len;
+ d_status = TULIP_DSTS_OWNER;
+ if (++nextout == ri->ri_last)
+ nextout = ri->ri_first;
+ }
+ if (segcnt < map->dm_nsegs) {
+ eop = nextout;
+ eop->d_flag &= TULIP_DFLAG_ENDRING|TULIP_DFLAG_CHAIN;
+ eop->d_status = d_status;
+ eop->d_addr1 = map->dm_segs[segcnt].ds_addr;
+ eop->d_length1 = map->dm_segs[segcnt].ds_len;
+ eop->d_addr2 = 0;
+ eop->d_length2 = 0;
+ if (++nextout == ri->ri_last)
+ nextout = ri->ri_first;
+ }
+ TULIP_TXMAP_PRESYNC(sc, map);
+ M_SETCTX(m, map);
+ map = NULL;
+
+#else /* !TULIP_BUS_DMA */
+
do {
int len = m0->m_len;
caddr_t addr = mtod(m0, caddr_t);
@@ -4125,7 +4325,7 @@ tulip_txput(
clsize = CLBYTES;
}
} while ((m0 = m0->m_next) != NULL);
-
+#endif /* TULIP_BUS_DMA */
/*
* The descriptors have been filled in. Now get ready
@@ -4140,7 +4340,9 @@ tulip_txput(
* of room in the ring.
*/
nextout->d_status = 0;
+ TULIP_TXDESC_PRESYNC(sc, nextout, sizeof(u_int32_t));
+#if !defined(TULIP_BUS_DMA) || defined(TULIP_BUS_DMA_NOTX)
/*
* If we only used the first segment of the last descriptor,
* make sure the second segment will not be used.
@@ -4149,6 +4351,7 @@ tulip_txput(
eop->d_addr2 = 0;
eop->d_length2 = 0;
}
+#endif /* TULIP_BUS_DMA */
/*
* Mark the last and first segments, indicate we want a transmit
@@ -4162,7 +4365,19 @@ tulip_txput(
* everything we have done.
*/
ri->ri_nextout->d_flag |= TULIP_DFLAG_TxFIRSTSEG;
+#if defined(TULIP_BUS_MAP) && !defined(TULIP_BUS_DMA_NOTX)
+ if (eop < ri->ri_nextout) {
+ TULIP_TXDESC_PRESYNC(sc, ri->ri_nextout,
+ (caddr_t) ri->ri_last - (caddr_t) ri->ri_nextout);
+ TULIP_TXDESC_PRESYNC(sc, ri->ri_first,
+ (caddr_t) (eop + 1) - (caddr_t) ri->ri_first);
+ } else {
+ TULIP_TXDESC_PRESYNC(sc, ri->ri_nextout,
+ (caddr_t) (eop + 1) - (caddr_t) ri->ri_nextout);
+ }
+#endif
ri->ri_nextout->d_status = TULIP_DSTS_OWNER;
+ TULIP_TXDESC_PRESYNC(sc, ri->ri_nextout, sizeof(u_int32_t));
TULIP_CSR_WRITE(sc, csr_txpoll, 1);
@@ -4262,10 +4477,21 @@ tulip_txput_setup(
else if (sc->tulip_flags & TULIP_WANTHASHONLY)
nextout->d_flag |= TULIP_DFLAG_TxHASHFILT|TULIP_DFLAG_TxINVRSFILT;
- nextout->d_length1 = sizeof(sc->tulip_setupbuf);
- nextout->d_addr1 = TULIP_KVATOPHYS(sc, sc->tulip_setupbuf);
nextout->d_length2 = 0;
nextout->d_addr2 = 0;
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+ nextout->d_length1 = sc->tulip_setupmap->dm_segs[0].ds_len;
+ nextout->d_addr1 = sc->tulip_setupmap->dm_segs[0].ds_addr;
+ if (sc->tulip_setupmap->dm_nsegs == 2) {
+ nextout->d_length2 = sc->tulip_setupmap->dm_segs[1].ds_len;
+ nextout->d_addr2 = sc->tulip_setupmap->dm_segs[1].ds_addr;
+ }
+ TULIP_TXMAP_PRESYNC(sc, sc->tulip_setupmap);
+ TULIP_TXDESC_PRESYNC(sc, nextout, sizeof(*nextout));
+#else
+ nextout->d_length1 = sizeof(sc->tulip_setupbuf);
+ nextout->d_addr1 = TULIP_KVATOPHYS(sc, sc->tulip_setupbuf);
+#endif
/*
* Advance the ring for the next transmit packet.
@@ -4279,7 +4505,12 @@ tulip_txput_setup(
* ring.
*/
ri->ri_nextout->d_status = 0;
+ TULIP_TXDESC_PRESYNC(sc, ri->ri_nextout, sizeof(u_int32_t));
nextout->d_status = TULIP_DSTS_OWNER;
+ /*
+ * Flush the ownwership of the current descriptor
+ */
+ TULIP_TXDESC_PRESYNC(sc, nextout, sizeof(u_int32_t));
TULIP_CSR_WRITE(sc, csr_txpoll, 1);
if ((sc->tulip_intrmask & TULIP_STS_TXINTR) == 0) {
sc->tulip_intrmask |= TULIP_STS_TXINTR;
@@ -4721,6 +4952,135 @@ tulip_attach(
#endif
}
+#if defined(TULIP_BUS_DMA)
+#if !defined(TULIP_BUS_DMA_NOTX) || !defined(TULIP_BUS_DMA_NORX)
+static int
+tulip_busdma_allocmem(
+ tulip_softc_t * const sc,
+ size_t size,
+ bus_dmamap_t *map_p,
+ tulip_desc_t **desc_p)
+{
+ bus_dma_segment_t segs[1];
+ int nsegs, error;
+ error = bus_dmamem_alloc(sc->tulip_dmatag, size, 1, CLBYTES,
+ segs, sizeof(segs)/sizeof(segs[0]),
+ &nsegs, BUS_DMA_NOWAIT);
+ if (error == 0) {
+ void *desc;
+ error = bus_dmamem_map(sc->tulip_dmatag, segs, nsegs, size,
+ (void *) &desc, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
+ if (error == 0) {
+ bus_dmamap_t map;
+ error = bus_dmamap_create(sc->tulip_dmatag, size, 1, size, 0,
+ BUS_DMA_NOWAIT, &map);
+ if (error == 0) {
+ error = bus_dmamap_load(sc->tulip_dmatag, map, desc,
+ size, NULL, BUS_DMA_NOWAIT);
+ if (error)
+ bus_dmamap_destroy(sc->tulip_dmatag, map);
+ else
+ *map_p = map;
+ }
+ if (error)
+ bus_dmamem_unmap(sc->tulip_dmatag, desc, size);
+ }
+ if (error)
+ bus_dmamem_free(sc->tulip_dmatag, segs, nsegs);
+ else
+ *desc_p = desc;
+ }
+ return error;
+}
+#endif
+
+static int
+tulip_busdma_init(
+ tulip_softc_t * const sc)
+{
+ int error = 0;
+
+#if !defined(TULIP_BUS_DMA_NOTX)
+ /*
+ * Allocate dmamap for setup descriptor
+ */
+ error = bus_dmamap_create(sc->tulip_dmatag, sizeof(sc->tulip_setupbuf), 2,
+ sizeof(sc->tulip_setupbuf), 0, BUS_DMA_NOWAIT,
+ &sc->tulip_setupmap);
+ if (error == 0) {
+ error = bus_dmamap_load(sc->tulip_dmatag, sc->tulip_setupmap,
+ sc->tulip_setupbuf, sizeof(sc->tulip_setupbuf),
+ NULL, BUS_DMA_NOWAIT);
+ if (error)
+ bus_dmamap_destroy(sc->tulip_dmatag, sc->tulip_setupmap);
+ }
+ /*
+ * Allocate space and dmamap for transmit ring
+ */
+ if (error == 0) {
+ error = tulip_busdma_allocmem(sc, sizeof(tulip_desc_t) * TULIP_TXDESCS,
+ &sc->tulip_txdescmap,
+ &sc->tulip_txdescs);
+ }
+
+ /*
+ * Allocate dmamaps for each transmit descriptors
+ */
+ if (error == 0) {
+ while (error == 0 && sc->tulip_txmaps_free < TULIP_TXDESCS) {
+ bus_dmamap_t map;
+ if ((error = TULIP_TXMAP_CREATE(sc, &map)) == 0)
+ sc->tulip_txmaps[sc->tulip_txmaps_free++] = map;
+ }
+ if (error) {
+ while (sc->tulip_txmaps_free > 0)
+ bus_dmamap_destroy(sc->tulip_dmatag,
+ sc->tulip_txmaps[--sc->tulip_txmaps_free]);
+ }
+ }
+#else
+ if (error == 0) {
+ sc->tulip_txdescs = (tulip_desc_t *) malloc(TULIP_TXDESCS * sizeof(tulip_desc_t), M_DEVBUF, M_NOWAIT);
+ if (sc->tulip_txdescs == NULL)
+ error = ENOMEM;
+ }
+#endif
+#if !defined(TULIP_BUS_DMA_NORX)
+ /*
+ * Allocate space and dmamap for receive ring
+ */
+ if (error == 0) {
+ error = tulip_busdma_allocmem(sc, sizeof(tulip_desc_t) * TULIP_RXDESCS,
+ &sc->tulip_rxdescmap,
+ &sc->tulip_rxdescs);
+ }
+
+ /*
+ * Allocate dmamaps for each receive descriptors
+ */
+ if (error == 0) {
+ while (error == 0 && sc->tulip_rxmaps_free < TULIP_RXDESCS) {
+ bus_dmamap_t map;
+ if ((error = TULIP_RXMAP_CREATE(sc, &map)) == 0)
+ sc->tulip_rxmaps[sc->tulip_rxmaps_free++] = map;
+ }
+ if (error) {
+ while (sc->tulip_rxmaps_free > 0)
+ bus_dmamap_destroy(sc->tulip_dmatag,
+ sc->tulip_rxmaps[--sc->tulip_rxmaps_free]);
+ }
+ }
+#else
+ if (error == 0) {
+ sc->tulip_rxdescs = (tulip_desc_t *) malloc(TULIP_RXDESCS * sizeof(tulip_desc_t), M_DEVBUF, M_NOWAIT);
+ if (sc->tulip_rxdescs == NULL)
+ error = ENOMEM;
+ }
+#endif
+ return error;
+}
+#endif /* TULIP_BUS_DMA */
+
static void
tulip_initcsrs(
tulip_softc_t * const sc,
@@ -5025,10 +5385,6 @@ struct cfattach de_ca = {
sizeof(tulip_softc_t), tulip_pci_probe, tulip_pci_attach
};
-struct cfdriver de_cd = {
- 0, "de", DV_IFNET
-};
-
#endif /* __NetBSD__ */
static void
@@ -5202,6 +5558,9 @@ tulip_pci_attach(
bcopy(self->dv_xname, sc->tulip_if.if_xname, IFNAMSIZ);
sc->tulip_if.if_softc = sc;
sc->tulip_pc = pa->pa_pc;
+#if defined(TULIP_BUS_DMA)
+ sc->tulip_dmatag = pa->pa_dmat;
+#endif
#else
sc->tulip_unit = unit;
sc->tulip_name = "de";
@@ -5259,6 +5618,17 @@ tulip_pci_attach(
#endif /* __NetBSD__ */
tulip_initcsrs(sc, csr_base + csroffset, csrsize);
+
+#if defined(TULIP_BUS_DMA)
+ if ((retval = tulip_busdma_init(sc)) != 0) {
+ printf("error initing bus_dma: %d\n", retval);
+ return;
+ }
+#else
+ sc->tulip_txdescs = (tulip_desc_t *) malloc((TULIP_TXDESCS+TULIP_RXDESCS)*sizeof(tulip_desc_t), M_DEVBUF, M_WAITOK);
+ sc->tulip_rxdescs = sc->tulip_txdescs + TULIP_TXDESCS;
+#endif
+
tulip_initring(sc, &sc->tulip_rxinfo, sc->tulip_rxdescs, TULIP_RXDESCS);
tulip_initring(sc, &sc->tulip_txinfo, sc->tulip_txdescs, TULIP_TXDESCS);
@@ -5295,25 +5665,29 @@ tulip_pci_attach(
pci_intr_handle_t intrhandle;
const char *intrstr;
+ printf("\n");
+
if (pci_intr_map(pa->pa_pc, pa->pa_intrtag, pa->pa_intrpin,
pa->pa_intrline, &intrhandle)) {
- printf(": couldn't map interrupt\n");
+ printf("%s: couldn't map interrupt\n", sc->tulip_dev.dv_xname);
return;
}
intrstr = pci_intr_string(pa->pa_pc, intrhandle);
sc->tulip_ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_NET,
intr_rtn, sc);
- if (sc->tulip_ih == NULL)
- printf(": couldn't establish interrupt");
- if (intrstr != NULL)
- printf(" at %s", intrstr);
- printf("\n");
- if (sc->tulip_ih == NULL)
+ if (sc->tulip_ih == NULL) {
+ printf("%s: couldn't establish interrupt",
+ sc->tulip_dev.dv_xname);
+ if (intrstr != NULL)
+ printf(" at %s", intrstr);
+ printf("\n");
return;
+ }
+ printf("%s: interrupting at %s\n", sc->tulip_dev.dv_xname, intrstr);
}
sc->tulip_ats = shutdownhook_establish(tulip_shutdown, sc);
if (sc->tulip_ats == NULL)
- printf("\n%s: warning: couldn't establish shutdown hook\n",
+ printf("%s: warning: couldn't establish shutdown hook\n",
sc->tulip_xname);
#endif
#if defined(__FreeBSD__)
diff --git a/sys/pci/if_devar.h b/sys/pci/if_devar.h
index c9dd032..e0b61e8 100644
--- a/sys/pci/if_devar.h
+++ b/sys/pci/if_devar.h
@@ -1,4 +1,4 @@
-/* $NetBSD: if_devar.h,v 1.22 1997/10/20 14:33:01 matt Exp $ */
+/* $NetBSD: if_devar.h,v 1.26 1998/02/11 01:28:29 thorpej Exp $ */
/*-
* Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com)
@@ -36,6 +36,12 @@
#include <sys/rnd.h>
#endif
+#if NetBSD >= 199803
+#define TULIP_BUS_DMA 1
+/* #define TULIP_BUS_DMA_NORX 1 */
+/* #define TULIP_BUS_DMA_NOTX 1 */
+#endif
+
typedef bus_addr_t tulip_csrptr_t;
#define TULIP_CSR_READ(sc, csr) \
@@ -164,6 +170,7 @@ typedef struct {
#define TULIP_COPY_RXDATA 1
#endif
+#define TULIP_DATA_PER_DESC 2032
#define TULIP_TXTIMER 4
#define TULIP_RXDESCS 48
#define TULIP_TXDESCS 32
@@ -495,6 +502,20 @@ struct _tulip_softc_t {
#if !defined(tulip_ifmedia) && defined(IFM_ETHER)
struct ifmedia tulip_ifmedia;
#endif
+#if defined(TULIP_BUS_DMA)
+ bus_dma_tag_t tulip_dmatag; /* bus DMA tag */
+#if !defined(TULIP_BUS_DMA_NOTX)
+ bus_dmamap_t tulip_setupmap;
+ bus_dmamap_t tulip_txdescmap;
+ bus_dmamap_t tulip_txmaps[TULIP_TXDESCS];
+ unsigned tulip_txmaps_free;
+#endif
+#if !defined(TULIP_BUS_DMA_NORX)
+ bus_dmamap_t tulip_rxdescmap;
+ bus_dmamap_t tulip_rxmaps[TULIP_RXDESCS];
+ unsigned tulip_rxmaps_free;
+#endif
+#endif
#if !defined(__NetBSD__)
struct arpcom tulip_ac;
#endif
@@ -667,8 +688,8 @@ struct _tulip_softc_t {
u_int8_t tulip_pci_devno; /* needed for multiport boards */
u_int8_t tulip_connidx;
tulip_srom_connection_t tulip_conntype;
- tulip_desc_t tulip_rxdescs[TULIP_RXDESCS];
- tulip_desc_t tulip_txdescs[TULIP_TXDESCS];
+ tulip_desc_t *tulip_rxdescs;
+ tulip_desc_t *tulip_txdescs;
#if defined(__NetBSD__) && NRND > 0
rndsource_element_t tulip_rndsource;
#endif
@@ -830,6 +851,60 @@ static int tulip_softintr_max_unit;
static void tulip_softintr(void);
#endif
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NORX)
+#define TULIP_RXDESC_PRESYNC(sc, di, s) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (sc)->tulip_rxdescmap, \
+ (caddr_t) di - (caddr_t) (sc)->tulip_rxdescs, \
+ (s), BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)
+#define TULIP_RXDESC_POSTSYNC(sc, di, s) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (sc)->tulip_rxdescmap, \
+ (caddr_t) di - (caddr_t) (sc)->tulip_rxdescs, \
+ (s), BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)
+#define TULIP_RXMAP_PRESYNC(sc, map) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (map), 0, (map)->dm_mapsize, \
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)
+#define TULIP_RXMAP_POSTSYNC(sc, map) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (map), 0, (map)->dm_mapsize, \
+ BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)
+#define TULIP_RXMAP_CREATE(sc, mapp) \
+ bus_dmamap_create((sc)->tulip_dmatag, TULIP_RX_BUFLEN, 2, \
+ TULIP_DATA_PER_DESC, 0, \
+ BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW, (mapp))
+#else
+#define TULIP_RXDESC_PRESYNC(sc, di, s) do { } while (0)
+#define TULIP_RXDESC_POSTSYNC(sc, di, s) do { } while (0)
+#define TULIP_RXMAP_PRESYNC(sc, map) do { } while (0)
+#define TULIP_RXMAP_POSTSYNC(sc, map) do { } while (0)
+#define TULIP_RXMAP_CREATE(sc, mapp) do { } while (0)
+#endif
+
+#if defined(TULIP_BUS_DMA) && !defined(TULIP_BUS_DMA_NOTX)
+#define TULIP_TXDESC_PRESYNC(sc, di, s) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (sc)->tulip_txdescmap, \
+ (caddr_t) di - (caddr_t) (sc)->tulip_txdescs, \
+ (s), BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)
+#define TULIP_TXDESC_POSTSYNC(sc, di, s) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (sc)->tulip_txdescmap, \
+ (caddr_t) di - (caddr_t) (sc)->tulip_txdescs, \
+ (s), BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)
+#define TULIP_TXMAP_PRESYNC(sc, map) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (map), 0, (map)->dm_mapsize, \
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)
+#define TULIP_TXMAP_POSTSYNC(sc, map) \
+ bus_dmamap_sync((sc)->tulip_dmatag, (map), 0, (map)->dm_mapsize, \
+ BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)
+#define TULIP_TXMAP_CREATE(sc, mapp) \
+ bus_dmamap_create((sc)->tulip_dmatag, TULIP_DATA_PER_DESC, \
+ TULIP_MAX_TXSEG, TULIP_DATA_PER_DESC, \
+ 0, BUS_DMA_NOWAIT, (mapp))
+#else
+#define TULIP_TXDESC_PRESYNC(sc, di, s) do { } while (0)
+#define TULIP_TXDESC_POSTSYNC(sc, di, s) do { } while (0)
+#define TULIP_TXMAP_PRESYNC(sc, map) do { } while (0)
+#define TULIP_TXMAP_POSTSYNC(sc, map) do { } while (0)
+#define TULIP_TXMAP_CREATE(sc, mapp) do { } while (0)
+#endif
+
#ifdef notyet
#define SIOCGADDRROM _IOW('i', 240, struct ifreq) /* get 128 bytes of ROM */
#define SIOCGCHIPID _IOWR('i', 241, struct ifreq) /* get chipid */
@@ -920,10 +995,12 @@ extern struct cfdriver de_cd;
#define loudprintf printf
#define TULIP_PRINTF_FMT "%s"
#define TULIP_PRINTF_ARGS sc->tulip_xname
+#if !defined(TULIP_BUS_DMA) || defined(TULIP_BUS_DMA_NORX) || defined(TULIP_BUS_DMA_NOTX)
#if defined(__alpha__)
/* XXX XXX NEED REAL DMA MAPPING SUPPORT XXX XXX */
#define TULIP_KVATOPHYS(sc, va) alpha_XXX_dmamap((vm_offset_t)(va))
#endif
+#endif
#endif /* __NetBSD__ */
#ifndef TULIP_PRINTF_FMT
@@ -971,8 +1048,8 @@ extern struct cfdriver de_cd;
#define tulip_intrfunc_t int
#endif
-#if !defined(TULIP_KVATOPHYS)
-#define TULIP_KVATOPHYS(sc, va) vtophys(va)
+#if !defined(TULIP_KVATOPHYS) && (!defined(TULIP_BUS_DMA) || defined(TULIP_BUS_DMA_NORX) || defined(TULIP_BUS_DMA_NOTX))
+#define TULIP_KVATOPHYS(sc, va) vtophys(va)
#endif
#ifndef TULIP_RAISESPL
OpenPOWER on IntegriCloud