Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Oct 2023 17:05:59 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 7786911ffd1f - main - dwc: Rewrite part of the descriptors setup functions
Message-ID:  <202310061705.396H5xjI060652@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=7786911ffd1f7c6eec0334a06bf9ec1bc14540d3

commit 7786911ffd1f7c6eec0334a06bf9ec1bc14540d3
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2023-10-05 17:10:00 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2023-10-06 17:05:37 +0000

    dwc: Rewrite part of the descriptors setup functions
    
     - Add a txdesc_clear which clears the tx desc instead of doing that in
       dwc_setup_txdesc based on arguments.
     - Remove dwc_set_owner, in the end we always set the owner of the desc
       as we do it for id > 0 and then for the first one.
     - Remove dwc_ prefix
    
    No functional changes intended.
---
 sys/dev/dwc/dwc1000_dma.c | 68 +++++++++++++++++++++--------------------------
 1 file changed, 30 insertions(+), 38 deletions(-)

diff --git a/sys/dev/dwc/dwc1000_dma.c b/sys/dev/dwc/dwc1000_dma.c
index 7c5924296894..f6baa0bd3e45 100644
--- a/sys/dev/dwc/dwc1000_dma.c
+++ b/sys/dev/dwc/dwc1000_dma.c
@@ -182,50 +182,47 @@ dwc_get1paddr(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
 }
 
 inline static void
-dwc_set_owner(struct dwc_softc *sc, int idx)
+txdesc_clear(struct dwc_softc *sc, int idx)
 {
-	wmb();
-	sc->txdesc_ring[idx].desc0 |= TDESC0_OWN;
-	wmb();
+
+	sc->tx_desccount--;
+	sc->txdesc_ring[idx].addr1 = (uint32_t)(0);
+	sc->txdesc_ring[idx].desc0 = 0;
+	sc->txdesc_ring[idx].desc1 = 0;
 }
 
 inline static void
-dwc_setup_txdesc(struct dwc_softc *sc, int idx, bus_addr_t paddr,
+txdesc_setup(struct dwc_softc *sc, int idx, bus_addr_t paddr,
   uint32_t len, uint32_t flags, bool first, bool last)
 {
 	uint32_t desc0, desc1;
 
-	/* Addr/len 0 means we're clearing the descriptor after xmit done. */
-	if (paddr == 0 || len == 0) {
+	if (!sc->dma_ext_desc) {
 		desc0 = 0;
-		desc1 = 0;
-		--sc->tx_desccount;
+		desc1 = NTDESC1_TCH | len | flags;
+		if (first)
+			desc1 |=  NTDESC1_FS;
+		if (last)
+			desc1 |= NTDESC1_LS | NTDESC1_IC;
 	} else {
-		if (!sc->dma_ext_desc) {
-			desc0 = 0;
-			desc1 = NTDESC1_TCH | len | flags;
-			if (first)
-				desc1 |=  NTDESC1_FS;
-			if (last)
-				desc1 |= NTDESC1_LS | NTDESC1_IC;
-		} else {
-			desc0 = ETDESC0_TCH | flags;
-			if (first)
-				desc0 |= ETDESC0_FS;
-			if (last)
-				desc0 |= ETDESC0_LS | ETDESC0_IC;
-			desc1 = len;
-		}
-		++sc->tx_desccount;
-	}
-
+		desc0 = ETDESC0_TCH | flags;
+		if (first)
+			desc0 |= ETDESC0_FS;
+		if (last)
+			desc0 |= ETDESC0_LS | ETDESC0_IC;
+		desc1 = len;
+	}
+	++sc->tx_desccount;
 	sc->txdesc_ring[idx].addr1 = (uint32_t)(paddr);
 	sc->txdesc_ring[idx].desc0 = desc0;
 	sc->txdesc_ring[idx].desc1 = desc1;
+	wmb();
+	sc->txdesc_ring[idx].desc0 |= TDESC0_OWN;
+	wmb();
 }
 
 inline static uint32_t
-dwc_setup_rxdesc(struct dwc_softc *sc, int idx, bus_addr_t paddr)
+rxdesc_setup(struct dwc_softc *sc, int idx, bus_addr_t paddr)
 {
 	uint32_t nidx;
 
@@ -254,7 +251,7 @@ dma1000_setup_txbuf(struct dwc_softc *sc, int idx, struct mbuf **mp)
 	struct mbuf * m;
 	uint32_t flags = 0;
 	int i;
-	int first, last;
+	int last;
 
 	error = bus_dmamap_load_mbuf_sg(sc->txbuf_tag, sc->txbuf_map[idx].map,
 	    *mp, segs, &nsegs, 0);
@@ -299,23 +296,18 @@ dma1000_setup_txbuf(struct dwc_softc *sc, int idx, struct mbuf **mp)
 
 	sc->txbuf_map[idx].mbuf = m;
 
-	first = sc->tx_desc_head;
 	for (i = 0; i < nsegs; i++) {
-		dwc_setup_txdesc(sc, sc->tx_desc_head,
+		txdesc_setup(sc, sc->tx_desc_head,
 		    segs[i].ds_addr, segs[i].ds_len,
 		    (i == 0) ? flags : 0, /* only first desc needs flags */
 		    (i == 0),
 		    (i == nsegs - 1));
-		if (i > 0)
-			dwc_set_owner(sc, sc->tx_desc_head);
 		last = sc->tx_desc_head;
 		sc->tx_desc_head = next_txidx(sc, sc->tx_desc_head);
 	}
 
 	sc->txbuf_map[idx].last_desc_idx = last;
 
-	dwc_set_owner(sc, first);
-
 	return (0);
 }
 
@@ -338,7 +330,7 @@ dma1000_setup_rxbuf(struct dwc_softc *sc, int idx, struct mbuf *m)
 	    BUS_DMASYNC_PREREAD);
 
 	sc->rxbuf_map[idx].mbuf = m;
-	dwc_setup_rxdesc(sc, idx, seg.ds_addr);
+	rxdesc_setup(sc, idx, seg.ds_addr);
 
 	return (0);
 }
@@ -463,7 +455,7 @@ dma1000_txfinish_locked(struct dwc_softc *sc)
 		bmap->mbuf = NULL;
 		sc->tx_mapcount--;
 		while (sc->tx_desc_tail != last_idx) {
-			dwc_setup_txdesc(sc, sc->tx_desc_tail, 0, 0, 0, false, false);
+			txdesc_clear(sc, sc->tx_desc_tail);
 			sc->tx_desc_tail = next_txidx(sc, sc->tx_desc_tail);
 		}
 		sc->tx_map_tail = next_txidx(sc, sc->tx_map_tail);
@@ -730,7 +722,7 @@ dma1000_init(struct dwc_softc *sc)
 	}
 
 	for (idx = 0; idx < TX_DESC_COUNT; idx++)
-		dwc_setup_txdesc(sc, idx, 0, 0, 0, false, false);
+		txdesc_clear(sc, idx);
 
 	WRITE4(sc, TX_DESCR_LIST_ADDR, sc->txdesc_ring_paddr);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202310061705.396H5xjI060652>