Home
last modified time | relevance | path

Searched refs:txd_base (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/ae/
H A Dif_ae.c578 bzero(sc->txd_base, AE_TXD_BUFSIZE_DEFAULT); in ae_init_locked()
1144 error = bus_dmamem_alloc(sc->dma_txd_tag, (void **)&sc->txd_base, in ae_alloc_rings()
1152 error = bus_dmamap_load(sc->dma_txd_tag, sc->dma_txd_map, sc->txd_base, in ae_alloc_rings()
1213 if (sc->txd_base != NULL) in ae_dma_free()
1214 bus_dmamem_free(sc->dma_txd_tag, sc->txd_base, in ae_dma_free()
1218 sc->txd_base = NULL; in ae_dma_free()
1441 hdr = (ae_txd_t *)(sc->txd_base + sc->txd_cur); in ae_encap()
1448 m_copydata(m0, 0, len, (caddr_t)(sc->txd_base + sc->txd_cur)); in ae_encap()
1450 m_copydata(m0, 0, to_end, (caddr_t)(sc->txd_base + in ae_encap()
1452 m_copydata(m0, to_end, len - to_end, (caddr_t)sc->txd_base); in ae_encap()
[all …]
H A Dif_aevar.h140 char *txd_base; /* Start of TxD ring. */ member